RDMA/core: Fix several reference count leaks.
authorQiushi Wu <wu000273@umn.edu>
Thu, 28 May 2020 03:02:30 +0000 (22:02 -0500)
committerJason Gunthorpe <jgg@mellanox.com>
Fri, 29 May 2020 18:35:49 +0000 (15:35 -0300)
commit0b8e125e213204508e1b3c4bdfe69713280b7abd
treedaee83a0303e5b40a14e66e2f14e21b63b75f08c
parentbcafcdfdaee7665267e56990e8040fbab588550f
RDMA/core: Fix several reference count leaks.

kobject_init_and_add() takes reference even when it fails.  If this
function returns an error, kobject_put() must be called to properly clean
up the memory associated with the object. Previous
commit b8eb718348b8 ("net-sysfs: Fix reference count leak in
rx|netdev_queue_add_kobject") fixed a similar problem.

Link: https://lore.kernel.org/r/20200528030231.9082-1-wu000273@umn.edu
Signed-off-by: Qiushi Wu <wu000273@umn.edu>
Reviewed-by: Jason Gunthorpe <jgg@mellanox.com>
Signed-off-by: Jason Gunthorpe <jgg@mellanox.com>
drivers/infiniband/core/sysfs.c