diff mbox series

[5/6] Squash-to: "mptcp: add and use MIB counter infrastructure"

Message ID 20200327155327.605375-6-matthieu.baerts@tessares.net
State Accepted, archived
Delegated to: Matthieu Baerts
Headers show
Series mptcp: remove all "inline" in foo.c files | expand

Commit Message

Matthieu Baerts March 27, 2020, 3:53 p.m. UTC
Remove inline in foo.c files, let the compiler decide.

Request from David S. Miller.

Signed-off-by: Matthieu Baerts <matthieu.baerts@tessares.net>
---
 net/mptcp/subflow.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
diff mbox series

Patch

diff --git a/net/mptcp/subflow.c b/net/mptcp/subflow.c
index edf5b543bdf5..b5180c81588e 100644
--- a/net/mptcp/subflow.c
+++ b/net/mptcp/subflow.c
@@ -22,8 +22,8 @@ 
 #include "protocol.h"
 #include "mib.h"
 
-static inline void SUBFLOW_REQ_INC_STATS(struct request_sock *req,
-					 enum linux_mptcp_mib_field field)
+static void SUBFLOW_REQ_INC_STATS(struct request_sock *req,
+				  enum linux_mptcp_mib_field field)
 {
 	MPTCP_INC_STATS(sock_net(req_to_sk(req)), field);
 }