mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2025-01-21 13:24:15 +08:00
scsi: elx: efct: Don't use GFP_KERNEL under spin lock
GFP_KERNEL/GFP_DMA can't be used under a spin lock. According the comment,
els_ios_lock is used to protect els ios list so we can move down the spin
lock to avoid using this flag under the lock.
Link: https://lore.kernel.org/r/20220111012441.3232527-1-yangyingliang@huawei.com
Fixes: 8f406ef728
("scsi: elx: libefc: Extended link Service I/O handling")
Reported-by: Hulk Robot <hulkci@huawei.com>
Reviewed-by: James Smart <jsmart2021@gmail.com>
Signed-off-by: Yang Yingliang <yangyingliang@huawei.com>
Signed-off-by: Martin K. Petersen <martin.petersen@oracle.com>
This commit is contained in:
parent
e783362eb5
commit
61263b3a11
@ -46,18 +46,14 @@ efc_els_io_alloc_size(struct efc_node *node, u32 reqlen, u32 rsplen)
|
|||||||
|
|
||||||
efc = node->efc;
|
efc = node->efc;
|
||||||
|
|
||||||
spin_lock_irqsave(&node->els_ios_lock, flags);
|
|
||||||
|
|
||||||
if (!node->els_io_enabled) {
|
if (!node->els_io_enabled) {
|
||||||
efc_log_err(efc, "els io alloc disabled\n");
|
efc_log_err(efc, "els io alloc disabled\n");
|
||||||
spin_unlock_irqrestore(&node->els_ios_lock, flags);
|
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
els = mempool_alloc(efc->els_io_pool, GFP_ATOMIC);
|
els = mempool_alloc(efc->els_io_pool, GFP_ATOMIC);
|
||||||
if (!els) {
|
if (!els) {
|
||||||
atomic_add_return(1, &efc->els_io_alloc_failed_count);
|
atomic_add_return(1, &efc->els_io_alloc_failed_count);
|
||||||
spin_unlock_irqrestore(&node->els_ios_lock, flags);
|
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -74,7 +70,6 @@ efc_els_io_alloc_size(struct efc_node *node, u32 reqlen, u32 rsplen)
|
|||||||
&els->io.req.phys, GFP_KERNEL);
|
&els->io.req.phys, GFP_KERNEL);
|
||||||
if (!els->io.req.virt) {
|
if (!els->io.req.virt) {
|
||||||
mempool_free(els, efc->els_io_pool);
|
mempool_free(els, efc->els_io_pool);
|
||||||
spin_unlock_irqrestore(&node->els_ios_lock, flags);
|
|
||||||
return NULL;
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -94,10 +89,11 @@ efc_els_io_alloc_size(struct efc_node *node, u32 reqlen, u32 rsplen)
|
|||||||
|
|
||||||
/* add els structure to ELS IO list */
|
/* add els structure to ELS IO list */
|
||||||
INIT_LIST_HEAD(&els->list_entry);
|
INIT_LIST_HEAD(&els->list_entry);
|
||||||
|
spin_lock_irqsave(&node->els_ios_lock, flags);
|
||||||
list_add_tail(&els->list_entry, &node->els_ios_list);
|
list_add_tail(&els->list_entry, &node->els_ios_list);
|
||||||
|
spin_unlock_irqrestore(&node->els_ios_lock, flags);
|
||||||
}
|
}
|
||||||
|
|
||||||
spin_unlock_irqrestore(&node->els_ios_lock, flags);
|
|
||||||
return els;
|
return els;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user