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