diff options
author | Thomas Graf <tgraf@suug.ch> | 2006-11-27 17:25:58 (GMT) |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2006-12-03 05:30:43 (GMT) |
commit | 4e9b82693542003b028c8494e9e3c49615b91ce7 (patch) | |
tree | 955620d0b859b3e5817faafcbe7de6b355bb7d05 /net/ipv4/fib_frontend.c | |
parent | d61c167dd0797a16584f7a922dd5d50efad1d28a (diff) | |
download | linux-fsl-qoriq-4e9b82693542003b028c8494e9e3c49615b91ce7.tar.xz |
[NETLINK]: Remove unused dst_pid field in netlink_skb_parms
The destination PID is passed directly to netlink_unicast()
respectively netlink_multicast().
Signed-off-by: Thomas Graf <tgraf@suug.ch>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4/fib_frontend.c')
-rw-r--r-- | net/ipv4/fib_frontend.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/net/ipv4/fib_frontend.c b/net/ipv4/fib_frontend.c index 1402534..d47b72a 100644 --- a/net/ipv4/fib_frontend.c +++ b/net/ipv4/fib_frontend.c @@ -811,7 +811,6 @@ static void nl_fib_input(struct sock *sk, int len) pid = nlh->nlmsg_pid; /*pid of sending process */ NETLINK_CB(skb).pid = 0; /* from kernel */ - NETLINK_CB(skb).dst_pid = pid; NETLINK_CB(skb).dst_group = 0; /* unicast */ netlink_unicast(sk, skb, pid, MSG_DONTWAIT); } |