diff options
author | Leon Romanovsky <leonro@mellanox.com> | 2017-05-30 11:29:56 +0300 |
---|---|---|
committer | Leon Romanovsky <leon@kernel.org> | 2017-08-10 13:15:41 +0300 |
commit | 64401b69b29164c5731018cc44fc9b144ac9c5ae (patch) | |
tree | 9a6848591aa84dfa0bd42d3b3f5d26874c2870bc /drivers/infiniband/core/cma.c | |
parent | c9901724a2f14128ef6a57986babcbfbcf61a257 (diff) | |
download | linux-64401b69b29164c5731018cc44fc9b144ac9c5ae.tar.xz |
RDMA/netlink: Remove redundant owner option for netlink callbacks
Owner field is not needed to be set because netlink is part of ib_core
which will be unloaded last after all other modules are unloaded.
Signed-off-by: Leon Romanovsky <leonro@mellanox.com>
Diffstat (limited to 'drivers/infiniband/core/cma.c')
-rw-r--r-- | drivers/infiniband/core/cma.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/infiniband/core/cma.c b/drivers/infiniband/core/cma.c index 2a16a559bdda..0c85f140e616 100644 --- a/drivers/infiniband/core/cma.c +++ b/drivers/infiniband/core/cma.c @@ -4459,8 +4459,7 @@ out: } static const struct ibnl_client_cbs cma_cb_table[] = { - [RDMA_NL_RDMA_CM_ID_STATS] = { .dump = cma_get_id_stats, - .module = THIS_MODULE }, + [RDMA_NL_RDMA_CM_ID_STATS] = { .dump = cma_get_id_stats}, }; static int cma_init_net(struct net *net) |