From patchwork Wed Sep 26 08:41:19 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [v2,02/11] inet_diag: pass inet_diag module to netlink_dump_start Date: Tue, 25 Sep 2012 22:41:19 -0000 From: Gao feng X-Patchwork-Id: 187010 Message-Id: <1348648888-24943-2-git-send-email-gaofeng@cn.fujitsu.com> To: davem@davemloft.net, eric.dumazet@gmail.com, steffen.klassert@secunet.com Cc: netfilter-devel@vger.kernel.org, linux-rdma@vger.kernel.org, netdev@vger.kernel.org, linux-crypto@vger.kernel.org, pablo@netfilter.org, stephen.hemminger@vyatta.com, jengelh@inai.de, Gao feng set netlink_dump_control.done and .module to avoid panic. Signed-off-by: Gao feng --- net/ipv4/inet_diag.c | 4 ++++ 1 files changed, 4 insertions(+), 0 deletions(-) diff --git a/net/ipv4/inet_diag.c b/net/ipv4/inet_diag.c index 570e61f..36d4be5 100644 --- a/net/ipv4/inet_diag.c +++ b/net/ipv4/inet_diag.c @@ -972,6 +972,8 @@ static int inet_diag_rcv_msg_compat(struct sk_buff *skb, struct nlmsghdr *nlh) { struct netlink_dump_control c = { .dump = inet_diag_dump_compat, + .done = netlink_dump_done, + .module = THIS_MODULE, }; return netlink_dump_start(net->diag_nlsk, skb, nlh, &c); } @@ -1001,6 +1003,8 @@ static int inet_diag_handler_dump(struct sk_buff *skb, struct nlmsghdr *h) { struct netlink_dump_control c = { .dump = inet_diag_dump, + .done = netlink_dump_done, + .module = THIS_MODULE, }; return netlink_dump_start(net->diag_nlsk, skb, h, &c); }