summaryrefslogtreecommitdiffstats
path: root/net
diff options
context:
space:
mode:
authorPatrick McHardy2005-08-15 04:26:34 +0200
committerDavid S. Miller2005-08-30 01:00:39 +0200
commitdb080529798b497eb5a37b92a25e966be5a7dd5d (patch)
tree8986bf4196a343bdf181bc9f667bdd131c05186d /net
parent[NETLINK]: Fix missing dst_groups initializations in netlink_broadcast users (diff)
downloadkernel-qcow2-linux-db080529798b497eb5a37b92a25e966be5a7dd5d.tar.gz
kernel-qcow2-linux-db080529798b497eb5a37b92a25e966be5a7dd5d.tar.xz
kernel-qcow2-linux-db080529798b497eb5a37b92a25e966be5a7dd5d.zip
[NETLINK]: Remove unused groups member from struct netlink_skb_parms
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/ipv4/fib_frontend.c1
-rw-r--r--net/netlink/af_netlink.c1
2 files changed, 0 insertions, 2 deletions
diff --git a/net/ipv4/fib_frontend.c b/net/ipv4/fib_frontend.c
index b5e2f1550c91..75d03e37b9a8 100644
--- a/net/ipv4/fib_frontend.c
+++ b/net/ipv4/fib_frontend.c
@@ -558,7 +558,6 @@ static void nl_fib_input(struct sock *sk, int len)
nl_fib_lookup(frn, tb);
pid = nlh->nlmsg_pid; /*pid of sending process */
- NETLINK_CB(skb).groups = 0; /* not in mcast group */
NETLINK_CB(skb).pid = 0; /* from kernel */
NETLINK_CB(skb).dst_pid = pid;
NETLINK_CB(skb).dst_groups = 0; /* unicast */
diff --git a/net/netlink/af_netlink.c b/net/netlink/af_netlink.c
index 5d487cd69c8c..7b7b45a19597 100644
--- a/net/netlink/af_netlink.c
+++ b/net/netlink/af_netlink.c
@@ -950,7 +950,6 @@ static int netlink_sendmsg(struct kiocb *kiocb, struct socket *sock,
goto out;
NETLINK_CB(skb).pid = nlk->pid;
- NETLINK_CB(skb).groups = nlk->groups;
NETLINK_CB(skb).dst_pid = dst_pid;
NETLINK_CB(skb).dst_groups = dst_groups;
NETLINK_CB(skb).loginuid = audit_get_loginuid(current->audit_context);