]> bbs.cooldavid.org Git - net-next-2.6.git/commit
inet, inet6: make tcp_sendmsg() and tcp_sendpage() through inet_sendmsg() and inet_se...
authorChangli Gao <xiaosuo@gmail.com>
Sat, 10 Jul 2010 20:41:55 +0000 (20:41 +0000)
committerDavid S. Miller <davem@davemloft.net>
Tue, 13 Jul 2010 03:21:46 +0000 (20:21 -0700)
commit7ba42910073f8432934d61a6c08b1023c408fb62
tree4f74648133eaf6cbea26d59c43d34e7153648f5d
parent53d3176b282cc105493babb0fef36c8b873f6201
inet, inet6: make tcp_sendmsg() and tcp_sendpage() through inet_sendmsg() and inet_sendpage()

a new boolean flag no_autobind is added to structure proto to avoid the autobind
calls when the protocol is TCP. Then sock_rps_record_flow() is called int the
TCP's sendmsg() and sendpage() pathes.

Signed-off-by: Changli Gao <xiaosuo@gmail.com>
----
 include/net/inet_common.h |    4 ++++
 include/net/sock.h        |    1 +
 include/net/tcp.h         |    8 ++++----
 net/ipv4/af_inet.c        |   15 +++++++++------
 net/ipv4/tcp.c            |   11 +++++------
 net/ipv4/tcp_ipv4.c       |    3 +++
 net/ipv6/af_inet6.c       |    8 ++++----
 net/ipv6/tcp_ipv6.c       |    3 +++
 8 files changed, 33 insertions(+), 20 deletions(-)
Signed-off-by: David S. Miller <davem@davemloft.net>
include/net/inet_common.h
include/net/sock.h
include/net/tcp.h
net/ipv4/af_inet.c
net/ipv4/tcp.c
net/ipv4/tcp_ipv4.c
net/ipv6/af_inet6.c
net/ipv6/tcp_ipv6.c