examples/eventdev_pipeline: fix 32-bit coremask logic

Message ID 20200616165603.61456-1-harry.van.haaren@intel.com (mailing list archive)
State Accepted, archived
Delegated to: Jerin Jacob
Headers
Series examples/eventdev_pipeline: fix 32-bit coremask logic |

Checks

Context Check Description
ci/checkpatch success coding style OK
ci/iol-broadcom-Performance success Performance Testing PASS
ci/travis-robot success Travis build: passed
ci/iol-nxp-Performance success Performance Testing PASS
ci/iol-mellanox-Performance success Performance Testing PASS
ci/iol-testing success Testing PASS
ci/Intel-compilation fail Compilation issues

Commit Message

Van Haaren, Harry June 16, 2020, 4:56 p.m. UTC
  This commit fixes a bug in 32-bit environments when a core mask greater
than 32-bits is requested. The fix is to convert the bitmask logic to
64 bits, aligning 64 and 32 bit implementations.

Fixes: adb5d548 ("examples/eventdev_pipeline_sw_pmd: add sample app")
Cc: stable@dpdk.org

Reported-by: Jun Zhou <junx.w.zhou@intel.com>
Suggested-by: Mao Jiang <maox.jiang@intel.com>
Signed-off-by: Harry van Haaren <harry.van.haaren@intel.com>
---
 examples/eventdev_pipeline/main.c            | 10 +++++-----
 examples/eventdev_pipeline/pipeline_common.h |  8 ++++----
 2 files changed, 9 insertions(+), 9 deletions(-)
  

Comments

Jerin Jacob June 29, 2020, 4:39 p.m. UTC | #1
On Tue, Jun 16, 2020 at 10:24 PM Harry van Haaren
<harry.van.haaren@intel.com> wrote:
>
> This commit fixes a bug in 32-bit environments when a core mask greater
> than 32-bits is requested. The fix is to convert the bitmask logic to
> 64 bits, aligning 64 and 32 bit implementations.
>
> Fixes: adb5d548 ("examples/eventdev_pipeline_sw_pmd: add sample app")
> Cc: stable@dpdk.org
>
> Reported-by: Jun Zhou <junx.w.zhou@intel.com>
> Suggested-by: Mao Jiang <maox.jiang@intel.com>
> Signed-off-by: Harry van Haaren <harry.van.haaren@intel.com>

Applied to dpdk-next-eventdev/master. Thanks.



> ---
>  examples/eventdev_pipeline/main.c            | 10 +++++-----
>  examples/eventdev_pipeline/pipeline_common.h |  8 ++++----
>  2 files changed, 9 insertions(+), 9 deletions(-)
>
> diff --git a/examples/eventdev_pipeline/main.c b/examples/eventdev_pipeline/main.c
> index 21958269f..4ac582153 100644
> --- a/examples/eventdev_pipeline/main.c
> +++ b/examples/eventdev_pipeline/main.c
> @@ -81,7 +81,7 @@ parse_coremask(const char *coremask)
>                 val = xdigit2val(c);
>                 for (j = 0; j < BITS_HEX && idx < MAX_NUM_CORE; j++, idx++) {
>                         if ((1 << j) & val) {
> -                               mask |= (1UL << idx);
> +                               mask |= (1ULL << idx);
>                                 count++;
>                         }
>                 }
> @@ -232,10 +232,10 @@ parse_app_args(int argc, char **argv)
>                 usage();
>
>         for (i = 0; i < MAX_NUM_CORE; i++) {
> -               fdata->rx_core[i] = !!(rx_lcore_mask & (1UL << i));
> -               fdata->tx_core[i] = !!(tx_lcore_mask & (1UL << i));
> -               fdata->sched_core[i] = !!(sched_lcore_mask & (1UL << i));
> -               fdata->worker_core[i] = !!(worker_lcore_mask & (1UL << i));
> +               fdata->rx_core[i] = !!(rx_lcore_mask & (1ULL << i));
> +               fdata->tx_core[i] = !!(tx_lcore_mask & (1ULL << i));
> +               fdata->sched_core[i] = !!(sched_lcore_mask & (1ULL << i));
> +               fdata->worker_core[i] = !!(worker_lcore_mask & (1ULL << i));
>
>                 if (fdata->worker_core[i])
>                         cdata.num_workers++;
> diff --git a/examples/eventdev_pipeline/pipeline_common.h b/examples/eventdev_pipeline/pipeline_common.h
> index c7245f7f0..6a4287602 100644
> --- a/examples/eventdev_pipeline/pipeline_common.h
> +++ b/examples/eventdev_pipeline/pipeline_common.h
> @@ -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;
>
> --
> 2.17.1
>
  

Patch

diff --git a/examples/eventdev_pipeline/main.c b/examples/eventdev_pipeline/main.c
index 21958269f..4ac582153 100644
--- a/examples/eventdev_pipeline/main.c
+++ b/examples/eventdev_pipeline/main.c
@@ -81,7 +81,7 @@  parse_coremask(const char *coremask)
 		val = xdigit2val(c);
 		for (j = 0; j < BITS_HEX && idx < MAX_NUM_CORE; j++, idx++) {
 			if ((1 << j) & val) {
-				mask |= (1UL << idx);
+				mask |= (1ULL << idx);
 				count++;
 			}
 		}
@@ -232,10 +232,10 @@  parse_app_args(int argc, char **argv)
 		usage();
 
 	for (i = 0; i < MAX_NUM_CORE; i++) {
-		fdata->rx_core[i] = !!(rx_lcore_mask & (1UL << i));
-		fdata->tx_core[i] = !!(tx_lcore_mask & (1UL << i));
-		fdata->sched_core[i] = !!(sched_lcore_mask & (1UL << i));
-		fdata->worker_core[i] = !!(worker_lcore_mask & (1UL << i));
+		fdata->rx_core[i] = !!(rx_lcore_mask & (1ULL << i));
+		fdata->tx_core[i] = !!(tx_lcore_mask & (1ULL << i));
+		fdata->sched_core[i] = !!(sched_lcore_mask & (1ULL << i));
+		fdata->worker_core[i] = !!(worker_lcore_mask & (1ULL << i));
 
 		if (fdata->worker_core[i])
 			cdata.num_workers++;
diff --git a/examples/eventdev_pipeline/pipeline_common.h b/examples/eventdev_pipeline/pipeline_common.h
index c7245f7f0..6a4287602 100644
--- a/examples/eventdev_pipeline/pipeline_common.h
+++ b/examples/eventdev_pipeline/pipeline_common.h
@@ -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;