summaryrefslogtreecommitdiff
path: root/net/dsa/dsa_priv.h
diff options
context:
space:
mode:
authorDavid S. Miller <davem@davemloft.net>2014-09-15 18:41:12 (GMT)
committerDavid S. Miller <davem@davemloft.net>2014-09-15 18:41:12 (GMT)
commit437024067ac1fbda7bb3a795e75922f9034672fb (patch)
treec0686708da032f9f6f842903163fa6da23ef649f /net/dsa/dsa_priv.h
parent13bb5180e82349d9fcfa11cd17b3c1e7b558a902 (diff)
parentb3d6cb92fd190d720a01075c4d20cdca896663fc (diff)
downloadlinux-437024067ac1fbda7bb3a795e75922f9034672fb.tar.xz
Merge branch 'tcpflags'
Eric Dumazet says: ==================== tcp: no longer keep around headers in input path Looking at tcp_try_coalesce() I was wondering why I did : if (tcp_hdr(from)->fin) return false; The answer would be to allow the aggregation, if we simply OR the FIN and PSH flags eventually present in @from to @to packet. (Note a change is also needed in skb_try_coalesce() to avoid calling skb_put() with 0 len) Then, looking at tcp_recvmsg(), I realized we access tcp_hdr(skb)->syn (and maybe tcp_hdr(skb)->fin) for every packet we process from socket receive queue. We have to understand TCP flags are cold in cpu caches most of the time (assuming TCP timestamps, and that application calls recvmsg() a long time after incoming packet was processed), and bringing a whole cache line only to access one bit is not very nice. It would make sense to use in TCP input path TCP_SKB_CB(skb)->tcp_flags as we do in output path. This saves one cache line miss, and TCP tcp_collapse() can avoid dealing with the headers. ==================== Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/dsa/dsa_priv.h')
0 files changed, 0 insertions, 0 deletions