Lines Matching refs:osk
597 static struct sock *x25_make_new(struct sock *osk) in x25_make_new() argument
602 if (osk->sk_type != SOCK_SEQPACKET) in x25_make_new()
605 if ((sk = x25_alloc_socket(sock_net(osk))) == NULL) in x25_make_new()
610 sk->sk_type = osk->sk_type; in x25_make_new()
611 sk->sk_priority = osk->sk_priority; in x25_make_new()
612 sk->sk_protocol = osk->sk_protocol; in x25_make_new()
613 sk->sk_rcvbuf = osk->sk_rcvbuf; in x25_make_new()
614 sk->sk_sndbuf = osk->sk_sndbuf; in x25_make_new()
616 sk->sk_backlog_rcv = osk->sk_backlog_rcv; in x25_make_new()
617 sock_copy_flags(sk, osk); in x25_make_new()
619 ox25 = x25_sk(osk); in x25_make_new()