[PATCH v4 10/24] eal/loongarch: add pause operations for LoongArch
Min Zhou
zhoumin at loongson.cn
Thu Jul 21 14:51:30 CEST 2022
This patch adds architecture specific pause operations for
LoongArch architecture.
Signed-off-by: Min Zhou <zhoumin at loongson.cn>
---
lib/eal/loongarch/include/rte_pause.h | 24 ++++++++++++++++++++++++
1 file changed, 24 insertions(+)
create mode 100644 lib/eal/loongarch/include/rte_pause.h
diff --git a/lib/eal/loongarch/include/rte_pause.h b/lib/eal/loongarch/include/rte_pause.h
new file mode 100644
index 0000000000..438de23128
--- /dev/null
+++ b/lib/eal/loongarch/include/rte_pause.h
@@ -0,0 +1,24 @@
+/* SPDX-License-Identifier: BSD-3-Clause
+ * Copyright(c) 2022 Loongson Technology Corporation Limited
+ */
+
+#ifndef _RTE_PAUSE_LOONGARCH_H_
+#define _RTE_PAUSE_LOONGARCH_H_
+
+#ifdef __cplusplus
+extern "C" {
+#endif
+
+#include "rte_atomic.h"
+
+#include "generic/rte_pause.h"
+
+static inline void rte_pause(void)
+{
+}
+
+#ifdef __cplusplus
+}
+#endif
+
+#endif /* _RTE_PAUSE_LOONGARCH_H_ */
--
2.31.1
More information about the dev
mailing list