cxgb4: Fix error codes in c4iw_create_cq()
authorDan Carpenter <[email protected]>
Thu, 13 Jul 2017 07:47:40 +0000 (10:47 +0300)
committerDoug Ledford <[email protected]>
Thu, 20 Jul 2017 15:20:49 +0000 (11:20 -0400)
commit6ebedacbb44602d4dec3348dee5ec31dd9b09521
treeda8292c509436a3867c9a711869afc32957ad28a
parent6031e079aa4656743298ea235b894ee883f45c71
cxgb4: Fix error codes in c4iw_create_cq()

If one of these kmalloc() calls fails then we return ERR_PTR(0) which is
NULL.  It results in a NULL dereference in the callers.

Fixes: cfdda9d76436 ("RDMA/cxgb4: Add driver for Chelsio T4 RNIC")
Signed-off-by: Dan Carpenter <[email protected]>
Acked-by: Steve Wise <[email protected]>
Signed-off-by: Doug Ledford <[email protected]>
drivers/infiniband/hw/cxgb4/cq.c