Commit 51cff2c6 authored by Bryant G. Ly's avatar Bryant G. Ly Committed by Greg Kroah-Hartman

ibmvscsis: Fix sleeping in interrupt context

commit a5b0e406 upstream.

Currently, dma_alloc_coherent is being called with a GFP_KERNEL
flag which allows it to sleep in an interrupt context, need to
change to GFP_ATOMIC.
Tested-by: default avatarSteven Royer <seroyer@linux.vnet.ibm.com>
Reviewed-by: default avatarMichael Cyr <mikecyr@linux.vnet.ibm.com>
Signed-off-by: default avatarBryant G. Ly <bryantly@linux.vnet.ibm.com>
Signed-off-by: default avatarBart Van Assche <bart.vanassche@sandisk.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent df35a8f5
...@@ -1239,7 +1239,7 @@ static long ibmvscsis_adapter_info(struct scsi_info *vscsi, ...@@ -1239,7 +1239,7 @@ static long ibmvscsis_adapter_info(struct scsi_info *vscsi,
} }
info = dma_alloc_coherent(&vscsi->dma_dev->dev, sizeof(*info), &token, info = dma_alloc_coherent(&vscsi->dma_dev->dev, sizeof(*info), &token,
GFP_KERNEL); GFP_ATOMIC);
if (!info) { if (!info) {
dev_err(&vscsi->dev, "bad dma_alloc_coherent %p\n", dev_err(&vscsi->dev, "bad dma_alloc_coherent %p\n",
iue->target); iue->target);
...@@ -1357,7 +1357,7 @@ static int ibmvscsis_cap_mad(struct scsi_info *vscsi, struct iu_entry *iue) ...@@ -1357,7 +1357,7 @@ static int ibmvscsis_cap_mad(struct scsi_info *vscsi, struct iu_entry *iue)
} }
cap = dma_alloc_coherent(&vscsi->dma_dev->dev, olen, &token, cap = dma_alloc_coherent(&vscsi->dma_dev->dev, olen, &token,
GFP_KERNEL); GFP_ATOMIC);
if (!cap) { if (!cap) {
dev_err(&vscsi->dev, "bad dma_alloc_coherent %p\n", dev_err(&vscsi->dev, "bad dma_alloc_coherent %p\n",
iue->target); iue->target);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment