Lines Matching refs:rx_opt

276 	if (tcp_death_row.sysctl_tw_recycle && tp->rx_opt.ts_recent_stamp)  in tcp_time_wait()
287 tw->tw_rcv_wscale = tp->rx_opt.rcv_wscale; in tcp_time_wait()
291 tcptw->tw_ts_recent = tp->rx_opt.ts_recent; in tcp_time_wait()
292 tcptw->tw_ts_recent_stamp = tp->rx_opt.ts_recent_stamp; in tcp_time_wait()
374 if (tp->rx_opt.user_mss && tp->rx_opt.user_mss < mss) in tcp_openreq_init_rwin()
375 mss = tp->rx_opt.user_mss; in tcp_openreq_init_rwin()
489 newtp->rx_opt.saw_tstamp = 0; in tcp_create_openreq_child()
491 newtp->rx_opt.dsack = 0; in tcp_create_openreq_child()
492 newtp->rx_opt.num_sacks = 0; in tcp_create_openreq_child()
500 newtp->rx_opt.tstamp_ok = ireq->tstamp_ok; in tcp_create_openreq_child()
501 if ((newtp->rx_opt.sack_ok = ireq->sack_ok) != 0) { in tcp_create_openreq_child()
508 newtp->rx_opt.wscale_ok = ireq->wscale_ok; in tcp_create_openreq_child()
509 if (newtp->rx_opt.wscale_ok) { in tcp_create_openreq_child()
510 newtp->rx_opt.snd_wscale = ireq->snd_wscale; in tcp_create_openreq_child()
511 newtp->rx_opt.rcv_wscale = ireq->rcv_wscale; in tcp_create_openreq_child()
513 newtp->rx_opt.snd_wscale = newtp->rx_opt.rcv_wscale = 0; in tcp_create_openreq_child()
517 newtp->rx_opt.snd_wscale); in tcp_create_openreq_child()
520 if (newtp->rx_opt.tstamp_ok) { in tcp_create_openreq_child()
521 newtp->rx_opt.ts_recent = req->ts_recent; in tcp_create_openreq_child()
522 newtp->rx_opt.ts_recent_stamp = get_seconds(); in tcp_create_openreq_child()
525 newtp->rx_opt.ts_recent_stamp = 0; in tcp_create_openreq_child()
536 newtp->rx_opt.mss_clamp = req->mss; in tcp_create_openreq_child()