From patchwork Thu Oct 4 04:41:21 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: [v3,03/11] unix_diag: pass unix_diag module to netlink_dump_start Date: Wed, 03 Oct 2012 18:41:21 -0000 From: Gao feng X-Patchwork-Id: 189036 Message-Id: <1349325689-16104-3-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.module to avoid panic. Signed-off-by: Gao feng --- net/unix/diag.c | 1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/net/unix/diag.c b/net/unix/diag.c index 06748f1..e1cd31f 100644 --- a/net/unix/diag.c +++ b/net/unix/diag.c @@ -299,6 +299,7 @@ static int unix_diag_handler_dump(struct sk_buff *skb, struct nlmsghdr *h) if (h->nlmsg_flags & NLM_F_DUMP) { struct netlink_dump_control c = { .dump = unix_diag_dump, + .module = THIS_MODULE, }; return netlink_dump_start(net->diag_nlsk, skb, h, &c); } else