Patch "RDMA/cm: Fix an error check in cm_alloc_id_priv()" has been added to the 5.6-stable tree

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



This is a note to let you know that I've just added the patch titled

    RDMA/cm: Fix an error check in cm_alloc_id_priv()

to the 5.6-stable tree which can be found at:
    http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary

The filename of the patch is:
     rdma-cm-fix-an-error-check-in-cm_alloc_id_priv.patch
and it can be found in the queue-5.6 subdirectory.

If you, or anyone else, feels it should not be added to the stable tree,
please let <stable@xxxxxxxxxxxxxxx> know about it.



commit 2d857702d4ca65bf3e2dd8f56fa6923d94117c59
Author: Dan Carpenter <dan.carpenter@xxxxxxxxxx>
Date:   Tue Apr 7 12:37:14 2020 +0300

    RDMA/cm: Fix an error check in cm_alloc_id_priv()
    
    commit 983653515849fb56b78ce55d349bb384d43030f6 upstream.
    
    The xa_alloc_cyclic_irq() function returns either 0 or 1 on success and
    negatives on error.  This code treats 1 as an error and returns ERR_PTR(1)
    which will cause an Oops in the caller.
    
    Fixes: ae78ff3a0f0c ("RDMA/cm: Convert local_id_table to XArray")
    Link: https://lore.kernel.org/r/20200407093714.GA80285@mwanda
    Signed-off-by: Dan Carpenter <dan.carpenter@xxxxxxxxxx>
    Reviewed-by: Matthew Wilcox (Oracle) <willy@xxxxxxxxxxxxx>
    Signed-off-by: Jason Gunthorpe <jgg@xxxxxxxxxxxx>
    Signed-off-by: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx>

diff --git a/drivers/infiniband/core/cm.c b/drivers/infiniband/core/cm.c
index 3b2b9a3546a13..a133f9e2735ec 100644
--- a/drivers/infiniband/core/cm.c
+++ b/drivers/infiniband/core/cm.c
@@ -836,7 +836,7 @@ struct ib_cm_id *ib_create_cm_id(struct ib_device *device,
 
 	ret = xa_alloc_cyclic_irq(&cm.local_id_table, &id, NULL, xa_limit_32b,
 				  &cm.local_id_next, GFP_KERNEL);
-	if (ret)
+	if (ret < 0)
 		goto error;
 	cm_id_priv->id.local_id = (__force __be32)id ^ cm.random_id_operand;
 	xa_store_irq(&cm.local_id_table, cm_local_id(cm_id_priv->id.local_id),



[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Index of Archives]     [Linux USB Devel]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]

  Powered by Linux