mirror of
https://github.com/torvalds/linux.git
synced 2024-12-16 16:12:52 +00:00
IB/mthca: Handle -ENOMEM in forward_trap()
ib_create_send_mad() can return ERR_PTR(-ENOMEM) here. Signed-off-by: Dan Carpenter <error27@gmail.com> Signed-off-by: Roland Dreier <rolandd@cisco.com>
This commit is contained in:
parent
3c0eee3fe6
commit
d0444f1527
@ -171,6 +171,8 @@ static void forward_trap(struct mthca_dev *dev,
|
||||
if (agent) {
|
||||
send_buf = ib_create_send_mad(agent, qpn, 0, 0, IB_MGMT_MAD_HDR,
|
||||
IB_MGMT_MAD_DATA, GFP_ATOMIC);
|
||||
if (IS_ERR(send_buf))
|
||||
return;
|
||||
/*
|
||||
* We rely here on the fact that MLX QPs don't use the
|
||||
* address handle after the send is posted (this is
|
||||
|
Loading…
Reference in New Issue
Block a user