Lines Matching refs:osk
587 static struct sock *x25_make_new(struct sock *osk) in x25_make_new() argument
592 if (osk->sk_type != SOCK_SEQPACKET) in x25_make_new()
595 if ((sk = x25_alloc_socket(sock_net(osk), 0)) == NULL) in x25_make_new()
600 sk->sk_type = osk->sk_type; in x25_make_new()
601 sk->sk_priority = READ_ONCE(osk->sk_priority); in x25_make_new()
602 sk->sk_protocol = osk->sk_protocol; in x25_make_new()
603 sk->sk_rcvbuf = osk->sk_rcvbuf; in x25_make_new()
604 sk->sk_sndbuf = osk->sk_sndbuf; in x25_make_new()
606 sk->sk_backlog_rcv = osk->sk_backlog_rcv; in x25_make_new()
607 sock_copy_flags(sk, osk); in x25_make_new()
609 ox25 = x25_sk(osk); in x25_make_new()