[dpdk-dev] [PATCH v5 1/8] eal: add missing include to mcslock
From: Bruce Richardson <hidden>
Date: 2021-01-26 21:38:31
Subsystem:
library code, the rest · Maintainers:
Andrew Morton, Linus Torvalds
From: Bruce Richardson <hidden>
Date: 2021-01-26 21:38:31
Subsystem:
library code, the rest · Maintainers:
Andrew Morton, Linus Torvalds
Include 'rte_branch_prediction.h' to get the likely/unlikely macro
definitions.
Fixes: 2173f3333b61 ("mcslock: add MCS queued lock implementation")
Cc: stable@dpdk.org
Signed-off-by: Bruce Richardson <redacted>
---
lib/librte_eal/include/generic/rte_mcslock.h | 1 +
1 file changed, 1 insertion(+)
diff --git a/lib/librte_eal/include/generic/rte_mcslock.h b/lib/librte_eal/include/generic/rte_mcslock.h
index d370bef17a..9f323bd2a2 100644
--- a/lib/librte_eal/include/generic/rte_mcslock.h
+++ b/lib/librte_eal/include/generic/rte_mcslock.h@@ -22,6 +22,7 @@ #include <rte_lcore.h> #include <rte_common.h> #include <rte_pause.h> +#include <rte_branch_prediction.h> /** * The rte_mcslock_t type.
--
2.27.0