aboutsummaryrefslogtreecommitdiffstats
path: root/net/netrom/af_netrom.c
diff options
context:
space:
mode:
Diffstat (limited to 'net/netrom/af_netrom.c')
-rw-r--r--net/netrom/af_netrom.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/net/netrom/af_netrom.c b/net/netrom/af_netrom.c
index b987fd56c3c5..ed212ffc1d9d 100644
--- a/net/netrom/af_netrom.c
+++ b/net/netrom/af_netrom.c
@@ -433,7 +433,7 @@ static int nr_create(struct net *net, struct socket *sock, int protocol,
433 if (sock->type != SOCK_SEQPACKET || protocol != 0) 433 if (sock->type != SOCK_SEQPACKET || protocol != 0)
434 return -ESOCKTNOSUPPORT; 434 return -ESOCKTNOSUPPORT;
435 435
436 sk = sk_alloc(net, PF_NETROM, GFP_ATOMIC, &nr_proto); 436 sk = sk_alloc(net, PF_NETROM, GFP_ATOMIC, &nr_proto, kern);
437 if (sk == NULL) 437 if (sk == NULL)
438 return -ENOMEM; 438 return -ENOMEM;
439 439
@@ -476,7 +476,7 @@ static struct sock *nr_make_new(struct sock *osk)
476 if (osk->sk_type != SOCK_SEQPACKET) 476 if (osk->sk_type != SOCK_SEQPACKET)
477 return NULL; 477 return NULL;
478 478
479 sk = sk_alloc(sock_net(osk), PF_NETROM, GFP_ATOMIC, osk->sk_prot); 479 sk = sk_alloc(sock_net(osk), PF_NETROM, GFP_ATOMIC, osk->sk_prot, 0);
480 if (sk == NULL) 480 if (sk == NULL)
481 return NULL; 481 return NULL;
482 482