[PATCH net-next 2/3] net:tracepoint: using sock_set_state tracepoint to trace DCCP state transition

From: Yafang Shao
Date: Sun Dec 10 2017 - 10:32:31 EST


With changes in inet_ files, DCCP state transitions are traced with
sock_set_state tracepoint.

Signed-off-by: Yafang Shao <laoar.shao@xxxxxxxxx>
---
net/dccp/proto.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/net/dccp/proto.c b/net/dccp/proto.c
index b68168f..92b9613 100644
--- a/net/dccp/proto.c
+++ b/net/dccp/proto.c
@@ -110,7 +110,7 @@ void dccp_set_state(struct sock *sk, const int state)
/* Change state AFTER socket is unhashed to avoid closed
* socket sitting in hash tables.
*/
- sk->sk_state = state;
+ sk_set_state(sk, state);
}

EXPORT_SYMBOL_GPL(dccp_set_state);
--
1.8.3.1