From: Steve Wise <sw...@opengridcomputing.com>

Signed-off-by: Steve Wise <sw...@opengridcomputing.com>
---
 drivers/infiniband/hw/cxgb4/device.c | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/drivers/infiniband/hw/cxgb4/device.c 
b/drivers/infiniband/hw/cxgb4/device.c
index 9ba3012..73d6226 100644
--- a/drivers/infiniband/hw/cxgb4/device.c
+++ b/drivers/infiniband/hw/cxgb4/device.c
@@ -924,11 +924,13 @@ static int c4iw_uld_rx_handler(void *handle, const __be64 
*rsp,
        }
 
        opcode = *(u8 *)rsp;
-       if (c4iw_handlers[opcode])
+       if (c4iw_handlers[opcode]) {
                c4iw_handlers[opcode](dev, skb);
-       else
+       } else {
                pr_info("%s no handler opcode 0x%x...\n", __func__,
                       opcode);
+               kfree_skb(skb);
+       }
 
        return 0;
 nomem:
-- 
1.8.4

--
To unsubscribe from this list: send the line "unsubscribe linux-rdma" in
the body of a message to majord...@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to