| Submitter | Gao feng |
|---|---|
| Date | Sept. 26, 2012, 4:52 a.m. |
| Message ID | <1348635140-20225-3-git-send-email-gaofeng@cn.fujitsu.com> |
| Download | mbox | patch |
| Permalink | /patch/186948/ |
| State | Not Applicable |
| Headers | show |
Comments
Patch
diff --git a/net/unix/diag.c b/net/unix/diag.c index 750b134..5e09553 100644 --- a/net/unix/diag.c +++ b/net/unix/diag.c @@ -299,6 +299,8 @@ 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, + .done = netlink_dump_done, + .module = THIS_MODULE, }; return netlink_dump_start(net->diag_nlsk, skb, h, &c); } else
use proper netlink_dump_control.done and .module to avoid panic. Signed-off-by: Gao feng <gaofeng@cn.fujitsu.com> --- net/unix/diag.c | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-)