Lines Matching refs:rx_opt
274 if (tcp_death_row.sysctl_tw_recycle && tp->rx_opt.ts_recent_stamp) in tcp_time_wait()
285 tw->tw_rcv_wscale = tp->rx_opt.rcv_wscale; in tcp_time_wait()
289 tcptw->tw_ts_recent = tp->rx_opt.ts_recent; in tcp_time_wait()
290 tcptw->tw_ts_recent_stamp = tp->rx_opt.ts_recent_stamp; in tcp_time_wait()
373 u16 user_mss = READ_ONCE(tp->rx_opt.user_mss); in tcp_openreq_init_rwin()
500 newtp->rx_opt.saw_tstamp = 0; in tcp_create_openreq_child()
502 newtp->rx_opt.dsack = 0; in tcp_create_openreq_child()
503 newtp->rx_opt.num_sacks = 0; in tcp_create_openreq_child()
511 newtp->rx_opt.tstamp_ok = ireq->tstamp_ok; in tcp_create_openreq_child()
512 if ((newtp->rx_opt.sack_ok = ireq->sack_ok) != 0) { in tcp_create_openreq_child()
519 newtp->rx_opt.wscale_ok = ireq->wscale_ok; in tcp_create_openreq_child()
520 if (newtp->rx_opt.wscale_ok) { in tcp_create_openreq_child()
521 newtp->rx_opt.snd_wscale = ireq->snd_wscale; in tcp_create_openreq_child()
522 newtp->rx_opt.rcv_wscale = ireq->rcv_wscale; in tcp_create_openreq_child()
524 newtp->rx_opt.snd_wscale = newtp->rx_opt.rcv_wscale = 0; in tcp_create_openreq_child()
528 newtp->rx_opt.snd_wscale); in tcp_create_openreq_child()
531 if (newtp->rx_opt.tstamp_ok) { in tcp_create_openreq_child()
532 newtp->rx_opt.ts_recent = req->ts_recent; in tcp_create_openreq_child()
533 newtp->rx_opt.ts_recent_stamp = get_seconds(); in tcp_create_openreq_child()
536 newtp->rx_opt.ts_recent_stamp = 0; in tcp_create_openreq_child()
547 newtp->rx_opt.mss_clamp = req->mss; in tcp_create_openreq_child()