mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/herbert/cryptodev-2.6.git
synced 2026-05-02 18:17:50 -04:00
[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>
This commit is contained in:
@@ -700,7 +700,7 @@ static struct sock *llc_create_incoming_sock(struct sock *sk,
|
||||
struct llc_addr *saddr,
|
||||
struct llc_addr *daddr)
|
||||
{
|
||||
struct sock *newsk = llc_sk_alloc(sk->sk_net, sk->sk_family, GFP_ATOMIC,
|
||||
struct sock *newsk = llc_sk_alloc(sock_net(sk), sk->sk_family, GFP_ATOMIC,
|
||||
sk->sk_prot);
|
||||
struct llc_sock *newllc, *llc = llc_sk(sk);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user