Commit 64401b69 authored by Leon Romanovsky's avatar Leon Romanovsky Committed by Leon Romanovsky

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: default avatarLeon Romanovsky <leonro@mellanox.com>
parent c9901724
...@@ -4459,8 +4459,7 @@ static int cma_get_id_stats(struct sk_buff *skb, struct netlink_callback *cb) ...@@ -4459,8 +4459,7 @@ static int cma_get_id_stats(struct sk_buff *skb, struct netlink_callback *cb)
} }
static const struct ibnl_client_cbs cma_cb_table[] = { static const struct ibnl_client_cbs cma_cb_table[] = {
[RDMA_NL_RDMA_CM_ID_STATS] = { .dump = cma_get_id_stats, [RDMA_NL_RDMA_CM_ID_STATS] = { .dump = cma_get_id_stats},
.module = THIS_MODULE },
}; };
static int cma_init_net(struct net *net) static int cma_init_net(struct net *net)
......
...@@ -180,12 +180,10 @@ static int ibnl_rcv_msg(struct sk_buff *skb, struct nlmsghdr *nlh, ...@@ -180,12 +180,10 @@ static int ibnl_rcv_msg(struct sk_buff *skb, struct nlmsghdr *nlh,
cb.skb = skb; cb.skb = skb;
cb.nlh = nlh; cb.nlh = nlh;
cb.dump = rdma_nl_types[index].cb_table[op].dump; cb.dump = rdma_nl_types[index].cb_table[op].dump;
cb.module = rdma_nl_types[index].cb_table[op].module;
return cb.dump(skb, &cb); return cb.dump(skb, &cb);
} }
c.dump = rdma_nl_types[index].cb_table[op].dump; c.dump = rdma_nl_types[index].cb_table[op].dump;
c.module = rdma_nl_types[index].cb_table[op].module;
return netlink_dump_start(nls, skb, nlh, &c); return netlink_dump_start(nls, skb, nlh, &c);
} }
......
...@@ -7,7 +7,6 @@ ...@@ -7,7 +7,6 @@
struct ibnl_client_cbs { struct ibnl_client_cbs {
int (*dump)(struct sk_buff *skb, struct netlink_callback *nlcb); int (*dump)(struct sk_buff *skb, struct netlink_callback *nlcb);
struct module *module;
}; };
/** /**
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment