mirror of
https://github.com/rd-stuffs/msm-4.14.git
synced 2025-02-20 11:45:48 +08:00
qede: Fix gfp flags sent to rdma event node allocation
[ Upstream commit 090477e4acb31c5dd674940c7c01d4f16bd1ac41 ] A previous commit 4609adc27175 ("qede: Fix qedr link update") added a flow that could allocate rdma event objects from an interrupt path (link notification). Therefore the kzalloc call should be done with GFP_ATOMIC. fixes: 4609adc27175 ("qede: Fix qedr link update") Signed-off-by: Michal Kalderon <Michal.Kalderon@cavium.com> Signed-off-by: Sudarsana Kalluru <Sudarsana.Kalluru@cavium.com> Signed-off-by: David S. Miller <davem@davemloft.net> Signed-off-by: Sasha Levin <alexander.levin@microsoft.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
6618d064ba
commit
b5b3188098
@ -238,7 +238,7 @@ qede_rdma_get_free_event_node(struct qede_dev *edev)
|
||||
}
|
||||
|
||||
if (!found) {
|
||||
event_node = kzalloc(sizeof(*event_node), GFP_KERNEL);
|
||||
event_node = kzalloc(sizeof(*event_node), GFP_ATOMIC);
|
||||
if (!event_node) {
|
||||
DP_NOTICE(edev,
|
||||
"qedr: Could not allocate memory for rdma work\n");
|
||||
|
Loading…
x
Reference in New Issue
Block a user