mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-07 19:30:30 +09:00
staging/lustre/o2iblnd: leak cmid in kiblnd_dev_need_failover
cmid created by kiblnd_dev_need_failover should always be destroyed, however it is not the case in current implementation and we will leak cmid when this function detected a device failover. Signed-off-by: Liang Zhen <liang.zhen@intel.com> Reviewed-on: http://review.whamcloud.com/14603 Intel-bug-id: https://jira.hpdd.intel.com/browse/LU-6480 Reviewed-by: Isaac Huang <he.huang@intel.com> Reviewed-by: Andreas Dilger <andreas.dilger@intel.com> Signed-off-by: Oleg Drokin <oleg.drokin@intel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
aefd9d714d
commit
199a0cc08d
@@ -2228,13 +2228,10 @@ static int kiblnd_dev_need_failover(kib_dev_t *dev)
|
||||
return rc;
|
||||
}
|
||||
|
||||
if (dev->ibd_hdev->ibh_ibdev == cmid->device) {
|
||||
/* don't need device failover */
|
||||
rdma_destroy_id(cmid);
|
||||
return 0;
|
||||
}
|
||||
rc = dev->ibd_hdev->ibh_ibdev != cmid->device; /* true for failover */
|
||||
rdma_destroy_id(cmid);
|
||||
|
||||
return 1;
|
||||
return rc;
|
||||
}
|
||||
|
||||
int kiblnd_dev_failover(kib_dev_t *dev)
|
||||
|
||||
Reference in New Issue
Block a user