Lines Matching refs:p
103 struct tcp_log *p = tcp_probe.log + tcp_probe.head; in jtcp_rcv_established() local
105 p->tstamp = ktime_get(); in jtcp_rcv_established()
106 p->saddr = inet->saddr; in jtcp_rcv_established()
107 p->sport = inet->sport; in jtcp_rcv_established()
108 p->daddr = inet->daddr; in jtcp_rcv_established()
109 p->dport = inet->dport; in jtcp_rcv_established()
110 p->length = skb->len; in jtcp_rcv_established()
111 p->snd_nxt = tp->snd_nxt; in jtcp_rcv_established()
112 p->snd_una = tp->snd_una; in jtcp_rcv_established()
113 p->snd_cwnd = tp->snd_cwnd; in jtcp_rcv_established()
114 p->snd_wnd = tp->snd_wnd; in jtcp_rcv_established()
115 p->ssthresh = tcp_current_ssthresh(sk); in jtcp_rcv_established()
116 p->srtt = tp->srtt >> 3; in jtcp_rcv_established()
150 const struct tcp_log *p in tcpprobe_sprint() local
153 = ktime_to_timespec(ktime_sub(p->tstamp, tcp_probe.start)); in tcpprobe_sprint()
159 &p->saddr, ntohs(p->sport), in tcpprobe_sprint()
160 &p->daddr, ntohs(p->dport), in tcpprobe_sprint()
161 p->length, p->snd_nxt, p->snd_una, in tcpprobe_sprint()
162 p->snd_cwnd, p->ssthresh, p->snd_wnd, p->srtt); in tcpprobe_sprint()