* [PATCH] Checks for Null return of skb_alloc in function send_flowc
@ 2014-06-17 15:55 Nicholas Krause
2014-06-17 15:56 ` Steve Wise
0 siblings, 1 reply; 2+ messages in thread
From: Nicholas Krause @ 2014-06-17 15:55 UTC (permalink / raw)
To: swise; +Cc: roland, sean.hefty, hal.rosenstock, linux-rdma, linux-kernel
Signed-off-by: Nicholas Krause <xerofoify@gmail.com>
---
drivers/infiniband/hw/cxgb4/cm.c | 6 ++----
1 file changed, 2 insertions(+), 4 deletions(-)
diff --git a/drivers/infiniband/hw/cxgb4/cm.c b/drivers/infiniband/hw/cxgb4/cm.c
index 7e3d663..6c069c2 100644
--- a/drivers/infiniband/hw/cxgb4/cm.c
+++ b/drivers/infiniband/hw/cxgb4/cm.c
@@ -457,10 +457,8 @@ static void send_flowc(struct c4iw_ep *ep, struct sk_buff *skb)
int i;
skb = get_skb(skb, flowclen, GFP_KERNEL);
+ if (!skb)
+ return;
flowc = (struct fw_flowc_wr *)__skb_put(skb, flowclen);
flowc->op_to_nparams = cpu_to_be32(FW_WR_OP(FW_FLOWC_WR) |
--
1.9.1
^ permalink raw reply related [flat|nested] 2+ messages in thread
* RE: [PATCH] Checks for Null return of skb_alloc in function send_flowc
2014-06-17 15:55 [PATCH] Checks for Null return of skb_alloc in function send_flowc Nicholas Krause
@ 2014-06-17 15:56 ` Steve Wise
0 siblings, 0 replies; 2+ messages in thread
From: Steve Wise @ 2014-06-17 15:56 UTC (permalink / raw)
To: 'Nicholas Krause', swise
Cc: roland, sean.hefty, hal.rosenstock, linux-rdma, linux-kernel
Acked-by: Steve Wise <swise@opengridcomputing.com>
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2014-06-17 15:56 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-06-17 15:55 [PATCH] Checks for Null return of skb_alloc in function send_flowc Nicholas Krause
2014-06-17 15:56 ` Steve Wise
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).