diff options
author | Jakub Kicinski | 2023-02-23 18:13:00 -0800 |
---|---|---|
committer | Jens Axboe | 2023-03-14 14:17:13 -0600 |
commit | 9195b317f1b62e9efd67d8702c920156135a81b5 (patch) | |
tree | f09d713f1af9b3e961361536c051d2f51149c9da /drivers/block/nbd.c | |
parent | eeac8ede17557680855031c6f305ece2378af326 (diff) |
nbd: allow genl access outside init_net
NBD doesn't have much to do with networking, allow users outside
init_net to access the family.
Reviewed-by: Josef Bacik <josef@toxicpanda.com>
Signed-off-by: Jakub Kicinski <kuba@kernel.org>
Reviewed-by: Chaitanya Kulkarni <kch@nvidia.com>
Link: https://lore.kernel.org/r/20230224021301.1630703-1-kuba@kernel.org
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'drivers/block/nbd.c')
-rw-r--r-- | drivers/block/nbd.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/block/nbd.c b/drivers/block/nbd.c index 592cfa8b765a..53e4bb754fd9 100644 --- a/drivers/block/nbd.c +++ b/drivers/block/nbd.c @@ -2325,6 +2325,7 @@ static struct genl_family nbd_genl_family __ro_after_init = { .n_small_ops = ARRAY_SIZE(nbd_connect_genl_ops), .resv_start_op = NBD_CMD_STATUS + 1, .maxattr = NBD_ATTR_MAX, + .netnsok = 1, .policy = nbd_attr_policy, .mcgrps = nbd_mcast_grps, .n_mcgrps = ARRAY_SIZE(nbd_mcast_grps), |