From: Chenbo Xia <chenbo.xia@intel.com>
To: dev@dpdk.org
Cc: ajit.khaparde@broadcom.com, somnath.kotur@broadcom.com,
qiming.yang@intel.com, qi.z.zhang@intel.com, rmody@marvell.com,
shshaikh@marvell.com, sbhosle@broadcom.com,
kishore.padmanabha@broadcom.com, michael.baucom@broadcom.com,
venkatkumar.duvvuru@broadcom.com, xiaoyun.li@intel.com,
ferruh.yigit@intel.com, jingjing.wu@intel.com,
irusskikh@marvell.com, wenzhuo.lu@intel.com,
beilei.xing@intel.com, bernard.iremonger@intel.com,
nikhil.rao@intel.com, konstantin.ananyev@intel.com,
jerin.jacob@caviumnetworks.com, marko.kovacevic@intel.com,
orika@nvidia.com, bruce.richardson@intel.com,
radu.nicolau@intel.com, akhil.goyal@nxp.com,
tomasz.kantecki@intel.com, skori@marvell.com,
pbhagavatula@marvell.com, john.mcnamara@intel.com,
stable@dpdk.org
Subject: [dpdk-dev] [PATCH v3 2/3] app: fix variable size of ethdev port id
Date: Wed, 30 Sep 2020 12:23:27 +0800 [thread overview]
Message-ID: <20200930042328.22507-2-chenbo.xia@intel.com> (raw)
In-Reply-To: <20200930042328.22507-1-chenbo.xia@intel.com>
The ethdev port id should be 16 bits now. This patch changes the
variable size of port id in applications from 8 bits to 16 bits.
Fixes: e977e4199a8d ("app/testpmd: add commands to load/unload BPF filters")
Fixes: 46cf97e4bbfa ("eventdev: add test for eth Tx adapter")
Cc: stable@dpdk.org
Signed-off-by: Chenbo Xia <chenbo.xia@intel.com>
---
app/test-pmd/bpf_cmd.c | 4 ++--
app/test/test_event_eth_tx_adapter.c | 4 ++--
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/app/test-pmd/bpf_cmd.c b/app/test-pmd/bpf_cmd.c
index 0f984ccf4..16e3c3b3b 100644
--- a/app/test-pmd/bpf_cmd.c
+++ b/app/test-pmd/bpf_cmd.c
@@ -55,7 +55,7 @@ static const struct rte_bpf_xsym bpf_xsym[] = {
struct cmd_bpf_ld_result {
cmdline_fixed_string_t bpf;
cmdline_fixed_string_t dir;
- uint8_t port;
+ uint16_t port;
uint16_t queue;
cmdline_fixed_string_t op;
cmdline_fixed_string_t flags;
@@ -153,7 +153,7 @@ cmdline_parse_inst_t cmd_operate_bpf_ld_parse = {
struct cmd_bpf_unld_result {
cmdline_fixed_string_t bpf;
cmdline_fixed_string_t dir;
- uint8_t port;
+ uint16_t port;
uint16_t queue;
};
diff --git a/app/test/test_event_eth_tx_adapter.c b/app/test/test_event_eth_tx_adapter.c
index 3af749280..707303090 100644
--- a/app/test/test_event_eth_tx_adapter.c
+++ b/app/test/test_event_eth_tx_adapter.c
@@ -45,7 +45,7 @@ static uint64_t eid = ~0ULL;
static uint32_t tid;
static inline int
-port_init_common(uint8_t port, const struct rte_eth_conf *port_conf,
+port_init_common(uint16_t port, const struct rte_eth_conf *port_conf,
struct rte_mempool *mp)
{
const uint16_t rx_ring_size = RING_SIZE, tx_ring_size = RING_SIZE;
@@ -104,7 +104,7 @@ port_init_common(uint8_t port, const struct rte_eth_conf *port_conf,
}
static inline int
-port_init(uint8_t port, struct rte_mempool *mp)
+port_init(uint16_t port, struct rte_mempool *mp)
{
struct rte_eth_conf conf = { 0 };
return port_init_common(port, &conf, mp);
--
2.17.1
next prev parent reply other threads:[~2020-09-30 4:28 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-08-04 17:41 [dpdk-dev] [PATCH] net/bnxt: fix variable size of port id Chenbo Xia
2020-08-04 16:22 ` Stephen Hemminger
2020-08-05 20:18 ` Thomas Monjalon
2020-08-06 2:03 ` Xia, Chenbo
2020-08-06 7:57 ` Thomas Monjalon
2020-09-03 6:49 ` Xiao, QimaiX
2020-09-25 5:37 ` [dpdk-dev] [PATCH v2 1/3] net: fix variable size of ethdev " Chenbo Xia
2020-09-25 5:37 ` [dpdk-dev] [PATCH v2 2/3] app: " Chenbo Xia
2020-09-25 5:37 ` [dpdk-dev] [PATCH v2 3/3] doc: " Chenbo Xia
2020-09-29 18:51 ` [dpdk-dev] [PATCH v2 1/3] net: " Ed Czeck
2020-09-30 4:23 ` [dpdk-dev] [PATCH v3 " Chenbo Xia
2020-09-30 4:23 ` Chenbo Xia [this message]
2020-09-30 4:23 ` [dpdk-dev] [PATCH v3 3/3] doc: " Chenbo Xia
2020-09-30 13:40 ` [dpdk-dev] [PATCH v3 1/3] net: " Ajit Khaparde
2020-09-30 17:13 ` 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=20200930042328.22507-2-chenbo.xia@intel.com \
--to=chenbo.xia@intel.com \
--cc=ajit.khaparde@broadcom.com \
--cc=akhil.goyal@nxp.com \
--cc=beilei.xing@intel.com \
--cc=bernard.iremonger@intel.com \
--cc=bruce.richardson@intel.com \
--cc=dev@dpdk.org \
--cc=ferruh.yigit@intel.com \
--cc=irusskikh@marvell.com \
--cc=jerin.jacob@caviumnetworks.com \
--cc=jingjing.wu@intel.com \
--cc=john.mcnamara@intel.com \
--cc=kishore.padmanabha@broadcom.com \
--cc=konstantin.ananyev@intel.com \
--cc=marko.kovacevic@intel.com \
--cc=michael.baucom@broadcom.com \
--cc=nikhil.rao@intel.com \
--cc=orika@nvidia.com \
--cc=pbhagavatula@marvell.com \
--cc=qi.z.zhang@intel.com \
--cc=qiming.yang@intel.com \
--cc=radu.nicolau@intel.com \
--cc=rmody@marvell.com \
--cc=sbhosle@broadcom.com \
--cc=shshaikh@marvell.com \
--cc=skori@marvell.com \
--cc=somnath.kotur@broadcom.com \
--cc=stable@dpdk.org \
--cc=tomasz.kantecki@intel.com \
--cc=venkatkumar.duvvuru@broadcom.com \
--cc=wenzhuo.lu@intel.com \
--cc=xiaoyun.li@intel.com \
/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.