net: tracepoint: replace tcp_set_state tracepoint with inet_sock_set_state tracepoint
As sk_state is a common field for struct sock, so the state transition tracepoint should not be a TCP specific feature. Currently it traces all AF_INET state transition, so I rename this tracepoint to inet_sock_set_state tracepoint with some minor changes and move it into trace/events/sock.h. We dont need to create a file named trace/events/inet_sock.h for this one single tracepoint. Two helpers are introduced to trace sk_state transition - void inet_sk_state_store(struct sock *sk, int newstate); - void inet_sk_set_state(struct sock *sk, int state); As trace header should not be included in other header files, so they are defined in sock.c. The protocol such as SCTP maybe compiled as a ko, hence export inet_sk_set_state(). Signed-off-by:Yafang Shao <laoar.shao@gmail.com> Signed-off-by:
David S. Miller <davem@davemloft.net>
Showing
- include/net/inet_sock.h 2 additions, 0 deletionsinclude/net/inet_sock.h
- include/trace/events/sock.h 107 additions, 0 deletionsinclude/trace/events/sock.h
- include/trace/events/tcp.h 0 additions, 31 deletionsinclude/trace/events/tcp.h
- net/ipv4/af_inet.c 14 additions, 0 deletionsnet/ipv4/af_inet.c
- net/ipv4/inet_connection_sock.c 3 additions, 3 deletionsnet/ipv4/inet_connection_sock.c
- net/ipv4/inet_hashtables.c 1 addition, 1 deletionnet/ipv4/inet_hashtables.c
- net/ipv4/tcp.c 1 addition, 5 deletionsnet/ipv4/tcp.c
Loading
Please register or sign in to comment