From: "Li, Xiaoyun" <xiaoyun.li@intel.com>
To: "Jiang, JunyuX" <junyux.jiang@intel.com>, "dev@dpdk.org" <dev@dpdk.org>
Cc: "Yang, Qiming" <qiming.yang@intel.com>,
"stable@dpdk.org" <stable@dpdk.org>
Subject: Re: [dpdk-dev] [PATCH v3] examples/vmdq: fix the output of pools/queues
Date: Mon, 2 Mar 2020 07:19:01 +0000 [thread overview]
Message-ID: <f36b3f46abc348e0baa2e1722032739b@intel.com> (raw)
In-Reply-To: <20200302064121.60561-1-junyux.jiang@intel.com>
Hi
> -----Original Message-----
> From: Jiang, JunyuX
> Sent: Monday, March 2, 2020 14:41
> To: dev@dpdk.org
> Cc: Li, Xiaoyun <xiaoyun.li@intel.com>; Yang, Qiming <qiming.yang@intel.com>;
> Jiang, JunyuX <junyux.jiang@intel.com>; stable@dpdk.org
> Subject: [PATCH v3] examples/vmdq: fix the output of pools/queues
>
> To match the pools/queues configuration, the pools/queues output should start
> from VMDQ base queue. This patch fixed the issue.
>
> Fixes: 6bb97df521aa ("examples/vmdq: new app")
> Cc: stable@dpdk.org
>
> Signed-off-by: Junyu Jiang <junyux.jiang@intel.com>
> ---
> examples/vmdq/main.c | 9 +++++----
> 1 file changed, 5 insertions(+), 4 deletions(-)
>
> diff --git a/examples/vmdq/main.c b/examples/vmdq/main.c index
> 011110920..5ab3427c0 100644
> --- a/examples/vmdq/main.c
> +++ b/examples/vmdq/main.c
> @@ -441,10 +441,11 @@ update_mac_address(struct rte_mbuf *m, unsigned
> dst_port) static void sighup_handler(int signum) {
> - unsigned q;
> - for (q = 0; q < num_queues; q++) {
> - if (q % (num_queues/num_pools) == 0)
> - printf("\nPool %u: ", q/(num_queues/num_pools));
> + unsigned int q = vmdq_queue_base;
> + for (; q < num_queues; q++) {
> + if ((q - vmdq_queue_base) % (num_vmdq_queues / num_pools)
> == 0)
> + printf("\nPool %u: ", (q - vmdq_queue_base) /
> + (num_vmdq_queues / num_pools));
> printf("%lu ", rxPackets[q]);
> }
> printf("\nFinished handling signal %d\n", signum);
> --
> 2.17.1
Acked-by: Xiaoyun Li <Xiaoyun.li@intel.com>
next prev parent reply other threads:[~2020-03-02 7:19 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-02-26 7:57 [dpdk-dev] [PATCH] examples/vmdq: fix the output of pools/queues Junyu Jiang
2020-02-26 8:35 ` [dpdk-dev] [PATCH v2] " Junyu Jiang
2020-03-02 2:35 ` Yang, Qiming
2020-03-02 3:10 ` Li, Xiaoyun
2020-03-02 6:41 ` [dpdk-dev] [PATCH v3] " Junyu Jiang
2020-03-02 7:19 ` Li, Xiaoyun [this message]
2020-03-30 2:21 ` [dpdk-dev] [dpdk-stable] " Han, YingyaX
2020-03-31 14:35 ` Ferruh Yigit
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=f36b3f46abc348e0baa2e1722032739b@intel.com \
--to=xiaoyun.li@intel.com \
--cc=dev@dpdk.org \
--cc=junyux.jiang@intel.com \
--cc=qiming.yang@intel.com \
--cc=stable@dpdk.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.