aboutsummaryrefslogtreecommitdiffstats
path: root/net/mptcp/crypto.c
diff options
context:
space:
mode:
authorDavid S. Miller <[email protected]>2021-04-17 00:10:40 +0000
committerDavid S. Miller <[email protected]>2021-04-17 00:10:40 +0000
commit474f459360399c5becfd0f189a8894e9e17ad3d3 (patch)
tree4ac2215add7c9db2a6b0ffcb02f1d63481c82b7b /net/mptcp/crypto.c
parentMerge branch 'enetc-xdp-fixes' (diff)
parentmptcp: use mptcp_for_each_subflow in mptcp_close (diff)
downloadkernel-474f459360399c5becfd0f189a8894e9e17ad3d3.tar.gz
kernel-474f459360399c5becfd0f189a8894e9e17ad3d3.zip
Merge branch 'mptcp-fixes-and-tracepoints'
Mat Martineau says: ==================== mptcp: Fixes and tracepoints from the mptcp tree Here's one more batch of changes that we've tested out in the MPTCP tree. Patch 1 makes the MPTCP KUnit config symbol more consistent with other subsystems. Patch 2 fixes a couple of format specifiers in pr_debug()s Patches 3-7 add four helpful tracepoints for MPTCP. Patch 8 is a one-line refactor to use an available helper macro. ==================== Signed-off-by: David S. Miller <[email protected]>
Diffstat (limited to 'net/mptcp/crypto.c')
-rw-r--r--net/mptcp/crypto.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/mptcp/crypto.c b/net/mptcp/crypto.c
index b472dc149856..a8931349933c 100644
--- a/net/mptcp/crypto.c
+++ b/net/mptcp/crypto.c
@@ -78,6 +78,6 @@ void mptcp_crypto_hmac_sha(u64 key1, u64 key2, u8 *msg, int len, void *hmac)
sha256(input, SHA256_BLOCK_SIZE + SHA256_DIGEST_SIZE, hmac);
}
-#if IS_MODULE(CONFIG_MPTCP_KUNIT_TESTS)
+#if IS_MODULE(CONFIG_MPTCP_KUNIT_TEST)
EXPORT_SYMBOL_GPL(mptcp_crypto_hmac_sha);
#endif