summaryrefslogtreecommitdiffstats
path: root/src/spdk/dpdk/examples/quota_watermark/qw/main.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/spdk/dpdk/examples/quota_watermark/qw/main.h')
-rw-r--r--src/spdk/dpdk/examples/quota_watermark/qw/main.h31
1 files changed, 31 insertions, 0 deletions
diff --git a/src/spdk/dpdk/examples/quota_watermark/qw/main.h b/src/spdk/dpdk/examples/quota_watermark/qw/main.h
new file mode 100644
index 00000000..9903ddc8
--- /dev/null
+++ b/src/spdk/dpdk/examples/quota_watermark/qw/main.h
@@ -0,0 +1,31 @@
+/* SPDX-License-Identifier: BSD-3-Clause
+ * Copyright(c) 2010-2014 Intel Corporation
+ */
+
+#ifndef _MAIN_H_
+#define _MAIN_H_
+
+#include "../include/conf.h"
+
+enum ring_state {
+ RING_READY,
+ RING_OVERLOADED,
+};
+
+extern int *quota;
+extern unsigned int *low_watermark;
+extern unsigned int *high_watermark;
+
+extern uint16_t port_pairs[RTE_MAX_ETHPORTS];
+
+extern struct rte_ring *rings[RTE_MAX_LCORE][RTE_MAX_ETHPORTS];
+extern struct rte_mempool *mbuf_pool;
+
+
+static inline int
+is_bit_set(int i, unsigned int mask)
+{
+ return (1 << i) & mask;
+}
+
+#endif /* _MAIN_H_ */