diff options
author | bz <bz@FreeBSD.org> | 2008-03-02 08:40:47 +0000 |
---|---|---|
committer | bz <bz@FreeBSD.org> | 2008-03-02 08:40:47 +0000 |
commit | daec28c548d6859f11798cb56bc67d05c42165fb (patch) | |
tree | c8ae39a91ec6dcd9a6c141554b5a1e10731500f6 /sys/netinet/tcp_input.c | |
parent | c12e39a76d99b66e5c96187f3f19e6e6b08419df (diff) | |
download | FreeBSD-src-daec28c548d6859f11798cb56bc67d05c42165fb.zip FreeBSD-src-daec28c548d6859f11798cb56bc67d05c42165fb.tar.gz |
Some "cleanup" of tcp_mss():
- Move the assigment of the socket down before we first need it.
No need to do it at the beginning and then drop out the function
by one of the returns before using it 100 lines further down.
- Use t_maxopd which was assigned the "tcp_mssdflt" for the corrrect
AF already instead of another #ifdef ? : #endif block doing the same.
- Remove an unneeded (duplicate) assignment of mss to t_maxseg just before
we possibly change mss and re-do the assignment without using t_maxseg
in between.
Reviewed by: silby
No objections: net@ (silence)
MFC after: 5 days
Diffstat (limited to 'sys/netinet/tcp_input.c')
-rw-r--r-- | sys/netinet/tcp_input.c | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/sys/netinet/tcp_input.c b/sys/netinet/tcp_input.c index 2cc288c..009a1fd 100644 --- a/sys/netinet/tcp_input.c +++ b/sys/netinet/tcp_input.c @@ -2740,7 +2740,6 @@ tcp_mss(struct tcpcb *tp, int offer) maxmtu = tcp_maxmtu(&inp->inp_inc, &mtuflags); tp->t_maxopd = tp->t_maxseg = tcp_mssdflt; } - so = inp->inp_socket; /* * No route to sender, stay with default mss and return. @@ -2753,13 +2752,10 @@ tcp_mss(struct tcpcb *tp, int offer) case 0: /* * Offer == 0 means that there was no MSS on the SYN - * segment, in this case we use tcp_mssdflt. + * segment, in this case we use tcp_mssdflt as + * already assigned to t_maxopd above. */ - offer = -#ifdef INET6 - isipv6 ? tcp_v6mssdflt : -#endif - tcp_mssdflt; + offer = tp->t_maxopd; break; case -1: @@ -2829,7 +2825,6 @@ tcp_mss(struct tcpcb *tp, int offer) (origoffer == -1 || (tp->t_flags & TF_RCVD_TSTMP) == TF_RCVD_TSTMP)) mss -= TCPOLEN_TSTAMP_APPA; - tp->t_maxseg = mss; #if (MCLBYTES & (MCLBYTES - 1)) == 0 if (mss > MCLBYTES) @@ -2847,6 +2842,7 @@ tcp_mss(struct tcpcb *tp, int offer) * Make the socket buffers an integral number of mss units; * if the mss is larger than the socket buffer, decrease the mss. */ + so = inp->inp_socket; SOCKBUF_LOCK(&so->so_snd); if ((so->so_snd.sb_hiwat == tcp_sendspace) && metrics.rmx_sendpipe) bufsize = metrics.rmx_sendpipe; |