| Submitter | Gao feng |
|---|---|
| Date | Sept. 26, 2012, 4:52 a.m. |
| Message ID | <1348635140-20225-7-git-send-email-gaofeng@cn.fujitsu.com> |
| Download | mbox | patch |
| Permalink | /patch/186951/ |
| State | Not Applicable |
| Headers | show |
Comments
Patch
diff --git a/net/netfilter/nfnetlink_cttimeout.c b/net/netfilter/nfnetlink_cttimeout.c index cdecbc8..bc3e730 100644 --- a/net/netfilter/nfnetlink_cttimeout.c +++ b/net/netfilter/nfnetlink_cttimeout.c @@ -248,6 +248,8 @@ cttimeout_get_timeout(struct sock *ctnl, struct sk_buff *skb, if (nlh->nlmsg_flags & NLM_F_DUMP) { struct netlink_dump_control c = { .dump = ctnl_timeout_dump, + .done = netlink_dump_done, + .module = THIS_MODULE, }; return netlink_dump_start(ctnl, skb, nlh, &c); }
use proper netlink_dump_control.done and .module to avoid panic. Signed-off-by: Gao feng <gaofeng@cn.fujitsu.com> --- net/netfilter/nfnetlink_cttimeout.c | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-)