diff options
author | Benjamin Thery <benjamin.thery@bull.net> | 2008-01-30 19:09:35 -0800 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2008-01-31 19:27:20 -0800 |
commit | 2216b48376c40cf6984398d478a01b55e76c5434 (patch) | |
tree | a8f68ed7dd47c4bc9ddffcaa95a987ae15d40e22 /net/ipv6/route.c | |
parent | 4a19ec5800fc3bb64e2d87c4d9fdd9e636086fe0 (diff) | |
download | op-kernel-dev-2216b48376c40cf6984398d478a01b55e76c5434.zip op-kernel-dev-2216b48376c40cf6984398d478a01b55e76c5434.tar.gz |
[NETNS]: Add missing initialization of nl_info.nl_net in rtm_to_fib6_config()
Add missing initialization of the new nl_info.nl_net field in
rtm_to_fib6_config(). This will be needed the store network namespace
associated to the fib6_config struct.
Signed-off-by: Benjamin Thery <benjamin.thery@bull.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv6/route.c')
-rw-r--r-- | net/ipv6/route.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/ipv6/route.c b/net/ipv6/route.c index 4004c5f..162cb66 100644 --- a/net/ipv6/route.c +++ b/net/ipv6/route.c @@ -1960,6 +1960,7 @@ static int rtm_to_fib6_config(struct sk_buff *skb, struct nlmsghdr *nlh, cfg->fc_nlinfo.pid = NETLINK_CB(skb).pid; cfg->fc_nlinfo.nlh = nlh; + cfg->fc_nlinfo.nl_net = skb->sk->sk_net; if (tb[RTA_GATEWAY]) { nla_memcpy(&cfg->fc_gateway, tb[RTA_GATEWAY], 16); |