Commit c715a395 authored by Parav Pandit's avatar Parav Pandit Committed by Jason Gunthorpe
Browse files

RDMA/core: Follow correct unregister order between sysfs and cgroup



During register_device() init sequence is,
(a) register with rdma cgroup followed by
(b) register with sysfs

Therefore, unregister_device() sequence should follow the reverse order.

Signed-off-by: default avatarParav Pandit <parav@mellanox.com>
Reviewed-by: default avatarDaniel Jurgens <danielj@mellanox.com>
Signed-off-by: default avatarLeon Romanovsky <leonro@mellanox.com>
Signed-off-by: default avatarJason Gunthorpe <jgg@mellanox.com>
parent 50704e03
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -598,8 +598,8 @@ void ib_unregister_device(struct ib_device *device)
	}
	up_read(&lists_rwsem);

	ib_device_unregister_rdmacg(device);
	ib_device_unregister_sysfs(device);
	ib_device_unregister_rdmacg(device);

	mutex_unlock(&device_mutex);