diff options
author | YOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org> | 2008-03-25 13:26:21 -0400 |
---|---|---|
committer | YOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org> | 2008-03-25 15:39:55 -0400 |
commit | 3b1e0a655f8eba44ab1ee2a1068d169ccfb853b9 (patch) | |
tree | 09edb35f32ebcfb1b4dad904425128a110ef16ee /net/decnet/dn_route.c | |
parent | c346dca10840a874240c78efe3f39acf4312a1f2 (diff) |
[NET] NETNS: Omit sock->sk_net without CONFIG_NET_NS.
Introduce per-sock inlines: sock_net(), sock_net_set()
and per-inet_timewait_sock inlines: twsk_net(), twsk_net_set().
Without CONFIG_NET_NS, no namespace other than &init_net exists.
Let's explicitly define them to help compiler optimizations.
Signed-off-by: YOSHIFUJI Hideaki <yoshfuji@linux-ipv6.org>
Diffstat (limited to 'net/decnet/dn_route.c')
-rw-r--r-- | net/decnet/dn_route.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/net/decnet/dn_route.c b/net/decnet/dn_route.c index 0a46b6c10e51..2f665a516476 100644 --- a/net/decnet/dn_route.c +++ b/net/decnet/dn_route.c | |||
@@ -1512,7 +1512,7 @@ rtattr_failure: | |||
1512 | */ | 1512 | */ |
1513 | static int dn_cache_getroute(struct sk_buff *in_skb, struct nlmsghdr *nlh, void *arg) | 1513 | static int dn_cache_getroute(struct sk_buff *in_skb, struct nlmsghdr *nlh, void *arg) |
1514 | { | 1514 | { |
1515 | struct net *net = in_skb->sk->sk_net; | 1515 | struct net *net = sock_net(in_skb->sk); |
1516 | struct rtattr **rta = arg; | 1516 | struct rtattr **rta = arg; |
1517 | struct rtmsg *rtm = NLMSG_DATA(nlh); | 1517 | struct rtmsg *rtm = NLMSG_DATA(nlh); |
1518 | struct dn_route *rt = NULL; | 1518 | struct dn_route *rt = NULL; |
@@ -1601,7 +1601,7 @@ out_free: | |||
1601 | */ | 1601 | */ |
1602 | int dn_cache_dump(struct sk_buff *skb, struct netlink_callback *cb) | 1602 | int dn_cache_dump(struct sk_buff *skb, struct netlink_callback *cb) |
1603 | { | 1603 | { |
1604 | struct net *net = skb->sk->sk_net; | 1604 | struct net *net = sock_net(skb->sk); |
1605 | struct dn_route *rt; | 1605 | struct dn_route *rt; |
1606 | int h, s_h; | 1606 | int h, s_h; |
1607 | int idx, s_idx; | 1607 | int idx, s_idx; |