Lines Matching refs:rx_opt
270 tw->tw_rcv_wscale = tp->rx_opt.rcv_wscale; in tcp_time_wait()
274 tcptw->tw_ts_recent = tp->rx_opt.ts_recent; in tcp_time_wait()
275 tcptw->tw_ts_recent_stamp = tp->rx_opt.ts_recent_stamp; in tcp_time_wait()
509 newtp->rx_opt.tstamp_ok = ireq->tstamp_ok; in tcp_create_openreq_child()
510 newtp->rx_opt.sack_ok = ireq->sack_ok; in tcp_create_openreq_child()
514 newtp->rx_opt.wscale_ok = ireq->wscale_ok; in tcp_create_openreq_child()
515 if (newtp->rx_opt.wscale_ok) { in tcp_create_openreq_child()
516 newtp->rx_opt.snd_wscale = ireq->snd_wscale; in tcp_create_openreq_child()
517 newtp->rx_opt.rcv_wscale = ireq->rcv_wscale; in tcp_create_openreq_child()
519 newtp->rx_opt.snd_wscale = newtp->rx_opt.rcv_wscale = 0; in tcp_create_openreq_child()
522 newtp->snd_wnd = ntohs(tcp_hdr(skb)->window) << newtp->rx_opt.snd_wscale; in tcp_create_openreq_child()
525 if (newtp->rx_opt.tstamp_ok) { in tcp_create_openreq_child()
526 newtp->rx_opt.ts_recent = req->ts_recent; in tcp_create_openreq_child()
527 newtp->rx_opt.ts_recent_stamp = ktime_get_seconds(); in tcp_create_openreq_child()
530 newtp->rx_opt.ts_recent_stamp = 0; in tcp_create_openreq_child()
546 newtp->rx_opt.mss_clamp = req->mss; in tcp_create_openreq_child()