Home
last modified time | relevance | path

Searched refs:inq (Results 1 – 1 of 1) sorted by relevance

/net/ipv4/
Dtcp.c1747 int inq; in tcp_zerocopy_receive() local
1768 inq = tcp_inq(sk); in tcp_zerocopy_receive()
1769 zc->length = min_t(u32, zc->length, inq); in tcp_zerocopy_receive()
1775 zc->recv_skip_hint = inq; in tcp_zerocopy_receive()
1921 int inq; in tcp_inq_hint() local
1923 inq = rcv_nxt - copied_seq; in tcp_inq_hint()
1924 if (unlikely(inq < 0 || copied_seq != READ_ONCE(tp->copied_seq))) { in tcp_inq_hint()
1926 inq = tp->rcv_nxt - tp->copied_seq; in tcp_inq_hint()
1932 if (inq == 0 && sock_flag(sk, SOCK_DONE)) in tcp_inq_hint()
1933 inq = 1; in tcp_inq_hint()
[all …]