mptcp: optimize release_cb for the common case
authorPaolo Abeni <pabeni@redhat.com>
Fri, 8 Apr 2022 19:45:54 +0000 (12:45 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 9 Jun 2022 08:25:38 +0000 (10:25 +0200)
[ Upstream commit 65a569b03ca832ebc93ce45a7466137e2bb62254 ]

The mptcp release callback checks several flags in atomic
context, but only MPTCP_CLEAN_UNA can be up frequently.

Reorganize the code to avoid multiple conditionals in the
most common scenarios.

Additional clarify a related comment.

Signed-off-by: Paolo Abeni <pabeni@redhat.com>
Signed-off-by: Mat Martineau <mathew.j.martineau@linux.intel.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Sasha Levin <sashal@kernel.org>
net/mptcp/protocol.c

index 014c9d88f947970425915fbd593c48c0cd366982..7e8083d6f033309e7b130eff7c94598d4504f1c1 100644 (file)
@@ -3088,15 +3088,17 @@ static void mptcp_release_cb(struct sock *sk)
                spin_lock_bh(&sk->sk_lock.slock);
        }
 
-       /* be sure to set the current sk state before tacking actions
-        * depending on sk_state
-        */
-       if (__test_and_clear_bit(MPTCP_CONNECTED, &msk->cb_flags))
-               __mptcp_set_connected(sk);
        if (__test_and_clear_bit(MPTCP_CLEAN_UNA, &msk->cb_flags))
                __mptcp_clean_una_wakeup(sk);
-       if (__test_and_clear_bit(MPTCP_ERROR_REPORT, &msk->cb_flags))
-               __mptcp_error_report(sk);
+       if (unlikely(&msk->cb_flags)) {
+               /* be sure to set the current sk state before tacking actions
+                * depending on sk_state, that is processing MPTCP_ERROR_REPORT
+                */
+               if (__test_and_clear_bit(MPTCP_CONNECTED, &msk->cb_flags))
+                       __mptcp_set_connected(sk);
+               if (__test_and_clear_bit(MPTCP_ERROR_REPORT, &msk->cb_flags))
+                       __mptcp_error_report(sk);
+       }
 
        __mptcp_update_rmem(sk);
 }