examples/eventdev: fix 32-bit coremask
[dpdk.git] / examples / eventdev_pipeline / pipeline_common.h
index c7245f7..6a42876 100644 (file)
@@ -51,10 +51,10 @@ struct fastpath_data {
        bool rx_single;
        bool tx_single;
        bool sched_single;
-       unsigned int rx_core[MAX_NUM_CORE];
-       unsigned int tx_core[MAX_NUM_CORE];
-       unsigned int sched_core[MAX_NUM_CORE];
-       unsigned int worker_core[MAX_NUM_CORE];
+       uint64_t rx_core[MAX_NUM_CORE];
+       uint64_t tx_core[MAX_NUM_CORE];
+       uint64_t sched_core[MAX_NUM_CORE];
+       uint64_t worker_core[MAX_NUM_CORE];
        struct setup_data cap;
 } __rte_cache_aligned;