diff options
author | Dick Kennedy <dick.kennedy@broadcom.com> | 2020-07-01 00:49:53 +0300 |
---|---|---|
committer | Martin K. Petersen <martin.petersen@oracle.com> | 2020-07-03 06:06:37 +0300 |
commit | 9dace1fa91ca419d44da29e877fe1e9a59ad4248 (patch) | |
tree | 205e4f4043639a993a848480712b13db286ac9d3 /drivers/usb | |
parent | d91e3abb682b07b04ced3f3d363651abedcb0309 (diff) | |
download | linux-9dace1fa91ca419d44da29e877fe1e9a59ad4248.tar.xz |
scsi: lpfc: Fix stack trace seen while setting rrq active
Call traces have been observed running different tests that involve aborts
and setting the rrq active flag. The lpfc_set_rrq_active routine is doing
a mempool_alloc under the soft_irq processing level. When the mempool needs
to get a new buffer from the free pool and has to wait for memory to become
free it will check the flags passed in on the alloc and dump the stack if
the thread is running in interrupt context.
Replace the GFP_KERNEL flag with GFP_ATOMIC so that the memory allocation
will not attempt to sleep if there is no mem available.
Link: https://lore.kernel.org/r/20200630215001.70793-7-jsmart2021@gmail.com
Signed-off-by: Dick Kennedy <dick.kennedy@broadcom.com>
Signed-off-by: James Smart <jsmart2021@gmail.com>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
Diffstat (limited to 'drivers/usb')
0 files changed, 0 insertions, 0 deletions