Lines Matching refs:osk
595 static struct sock *x25_make_new(struct sock *osk) in x25_make_new() argument
600 if (osk->sk_type != SOCK_SEQPACKET) in x25_make_new()
603 if ((sk = x25_alloc_socket(sock_net(osk), 0)) == NULL) in x25_make_new()
608 sk->sk_type = osk->sk_type; in x25_make_new()
609 sk->sk_priority = osk->sk_priority; in x25_make_new()
610 sk->sk_protocol = osk->sk_protocol; in x25_make_new()
611 sk->sk_rcvbuf = osk->sk_rcvbuf; in x25_make_new()
612 sk->sk_sndbuf = osk->sk_sndbuf; in x25_make_new()
614 sk->sk_backlog_rcv = osk->sk_backlog_rcv; in x25_make_new()
615 sock_copy_flags(sk, osk); in x25_make_new()
617 ox25 = x25_sk(osk); in x25_make_new()