]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
RDMA/core: Restrict sysfs entries view to init_net
authorParav Pandit <parav@mellanox.com>
Tue, 26 Feb 2019 11:56:12 +0000 (13:56 +0200)
committerJason Gunthorpe <jgg@mellanox.com>
Thu, 28 Mar 2019 17:52:02 +0000 (14:52 -0300)
This is a preparation patch to provide isolation of rdma device in a
network namespace.

As first step, make rdma device visible only in init net namespace.
Subsequent patch will enable rdma device visibility back in multiple net
namespaces using compat ib_core_device device/sysfs tree.

Given that the IB subsystem depends on net stack, it needs to be
initialized after netdev and since it support devices, it needs to be
initialized before the device subsystem; therefore, change initcall
sequence to fs_initcall, so that when ib_core is compiled in the kernel
image, the right init sequence is followed.

Signed-off-by: Parav Pandit <parav@mellanox.com>
Signed-off-by: Leon Romanovsky <leonro@mellanox.com>
Signed-off-by: Jason Gunthorpe <jgg@mellanox.com>
drivers/infiniband/core/device.c

index 31229074981dd0ccbdaf11b9c29ef437275136cb..078566d0d7c2a3aebb7d92a8f9ab23cebccc4d08 100644 (file)
@@ -357,10 +357,17 @@ static int ib_device_uevent(struct device *device,
        return 0;
 }
 
+static const void *net_namespace(struct device *d)
+{
+       return &init_net;
+}
+
 static struct class ib_class = {
        .name    = "infiniband",
        .dev_release = ib_device_release,
        .dev_uevent = ib_device_uevent,
+       .ns_type = &net_ns_type_operations,
+       .namespace = net_namespace,
 };
 
 static void rdma_init_coredev(struct ib_core_device *coredev,
@@ -1966,5 +1973,8 @@ static void __exit ib_core_cleanup(void)
 
 MODULE_ALIAS_RDMA_NETLINK(RDMA_NL_LS, 4);
 
-subsys_initcall(ib_core_init);
+/* ib core relies on netdev stack to first register net_ns_type_operations
+ * ns kobject type before ib_core initialization.
+ */
+fs_initcall(ib_core_init);
 module_exit(ib_core_cleanup);