ring: return free space when enqueuing
[dpdk.git] / examples / qos_sched / main.h
index 0e6f264..c7490c6 100644 (file)
@@ -50,7 +50,6 @@ extern "C" {
 #define APP_RX_DESC_DEFAULT 128
 #define APP_TX_DESC_DEFAULT 256
 
-#define MBUF_DATA_SIZE (1528 + RTE_PKTMBUF_HEADROOM)
 #define APP_RING_SIZE (8*1024)
 #define NB_MBUF   (2*1024*1024)
 
@@ -69,9 +68,12 @@ extern "C" {
 
 #define BURST_TX_DRAIN_US 100
 
-#define MAX_DATA_STREAMS (RTE_MAX_LCORE/2)
+#ifndef APP_MAX_LCORE
+#define APP_MAX_LCORE 64
+#endif
+#define MAX_DATA_STREAMS (APP_MAX_LCORE/2)
 #define MAX_SCHED_SUBPORTS             8
-#define MAX_SCHED_PIPES                4096
+#define MAX_SCHED_PIPES                4096
 
 #ifndef APP_COLLECT_STAT
 #define APP_COLLECT_STAT               1