]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
cxgb4: Fix error codes in c4iw_create_cq()
authorDan Carpenter <dan.carpenter@oracle.com>
Thu, 13 Jul 2017 07:47:40 +0000 (10:47 +0300)
committerBen Hutchings <ben@decadent.org.uk>
Sat, 11 Nov 2017 13:34:25 +0000 (13:34 +0000)
commit 6ebedacbb44602d4dec3348dee5ec31dd9b09521 upstream.

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 <dan.carpenter@oracle.com>
Acked-by: Steve Wise <swise@opengridcomputing.com>
Signed-off-by: Doug Ledford <dledford@redhat.com>
Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
drivers/infiniband/hw/cxgb4/cq.c

index 3bd6b698c2364f1d05890eb9c36e42dbfd7cf867..3e5f5763c666ce3dc31a1ece79d24a2aae5d04e9 100644 (file)
@@ -826,6 +826,7 @@ struct ib_cq *c4iw_create_cq(struct ib_device *ibdev, int entries,
                goto err2;
 
        if (ucontext) {
+               ret = -ENOMEM;
                mm = kmalloc(sizeof *mm, GFP_KERNEL);
                if (!mm)
                        goto err3;