diff options
author | Patrick McHardy <kaber@trash.net> | 2007-09-28 17:38:07 -0400 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2007-10-10 19:53:32 -0400 |
commit | dd82185f2c55e9dc2247c83d78517ef14e71d30e (patch) | |
tree | 73d47c4dff377d4b55231b5f307eccd3f29ee647 /net | |
parent | fdf708322d4658daa6eb795d1a835b97efdb335e (diff) |
[NETFILTER]: nfnetlink: use nlmsg_notify()
Signed-off-by: Patrick McHardy <kaber@trash.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net')
-rw-r--r-- | net/netfilter/nfnetlink.c | 11 |
1 files changed, 1 insertions, 10 deletions
diff --git a/net/netfilter/nfnetlink.c b/net/netfilter/nfnetlink.c index 3cfa76b89a20..e212102b0e4a 100644 --- a/net/netfilter/nfnetlink.c +++ b/net/netfilter/nfnetlink.c | |||
@@ -148,16 +148,7 @@ EXPORT_SYMBOL_GPL(nfnetlink_has_listeners); | |||
148 | 148 | ||
149 | int nfnetlink_send(struct sk_buff *skb, u32 pid, unsigned group, int echo) | 149 | int nfnetlink_send(struct sk_buff *skb, u32 pid, unsigned group, int echo) |
150 | { | 150 | { |
151 | int err = 0; | 151 | return nlmsg_notify(nfnl, skb, pid, group, echo, gfp_any()); |
152 | |||
153 | NETLINK_CB(skb).dst_group = group; | ||
154 | if (echo) | ||
155 | atomic_inc(&skb->users); | ||
156 | netlink_broadcast(nfnl, skb, pid, group, gfp_any()); | ||
157 | if (echo) | ||
158 | err = netlink_unicast(nfnl, skb, pid, MSG_DONTWAIT); | ||
159 | |||
160 | return err; | ||
161 | } | 152 | } |
162 | EXPORT_SYMBOL_GPL(nfnetlink_send); | 153 | EXPORT_SYMBOL_GPL(nfnetlink_send); |
163 | 154 | ||