]> asedeno.scripts.mit.edu Git - linux.git/commit
net: introduce a new tracepoint for tcp_rcv_space_adjust
authorYafang Shao <laoar.shao@gmail.com>
Fri, 20 Apr 2018 15:18:26 +0000 (23:18 +0800)
committerDavid S. Miller <davem@davemloft.net>
Mon, 23 Apr 2018 13:58:18 +0000 (09:58 -0400)
commit6163849d289be6ff2acd2fb520da303dec3219f0
treeeae33c4b1790e66fc82abc0fca1d16254621e4b8
parent48d7a07ba355c7056e66adcdd35379d12e48252b
net: introduce a new tracepoint for tcp_rcv_space_adjust

tcp_rcv_space_adjust is called every time data is copied to user space,
introducing a tcp tracepoint for which could show us when the packet is
copied to user.

When a tcp packet arrives, tcp_rcv_established() will be called and with
the existed tracepoint tcp_probe we could get the time when this packet
arrives.
Then this packet will be copied to user, and tcp_rcv_space_adjust will
be called and with this new introduced tracepoint we could get the time
when this packet is copied to user.
With these two tracepoints, we could figure out whether the user program
processes this packet immediately or there's latency.

Hence in the printk message, sk_cookie is printed as a key to relate
tcp_rcv_space_adjust with tcp_probe.

Maybe we could export sockfd in this new tracepoint as well, then we
could relate this new tracepoint with epoll/read/recv* tracepoints, and
finally that could show us the whole lifespan of this packet. But we
could also implement that with pid as these functions are executed in
process context.

Signed-off-by: Yafang Shao <laoar.shao@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
include/trace/events/tcp.h
net/ipv4/tcp_input.c