From: Jerin Jacob <jerin.jacob@caviumnetworks.com>
To: Nikhil Rao <nikhil.rao@intel.com>
Cc: dev@dpdk.org, vipin.varghese@intel.com, stable@dpdk.org
Subject: Re: [PATCH v2 1/2] test/event: fix eth Rx adapter autotest for skeleton PMD
Date: Mon, 10 Sep 2018 19:14:03 +0530 [thread overview]
Message-ID: <20180910134402.GA24074@jerin> (raw)
In-Reply-To: <1536155466-154216-1-git-send-email-nikhil.rao@intel.com>
-----Original Message-----
> Date: Wed, 5 Sep 2018 19:21:05 +0530
> From: Nikhil Rao <nikhil.rao@intel.com>
> To: jerin.jacob@caviumnetworks.com
> CC: dev@dpdk.org, Nikhil Rao <nikhil.rao@intel.com>,
> vipin.varghese@intel.com, stable@dpdk.org
> Subject: [PATCH v2 1/2] test/event: fix eth Rx adapter autotest for
> skeleton PMD
> X-Mailer: git-send-email 1.8.3.1
>
> External Email
>
> skeleton PMD does not support
> RTE_EVENT_ETH_RX_ADAPTER_CAP_MULTI_EVENTQ and
> implicit_release_disable so make the Rx queue_id = -1 and
> initialize the event port configuration to zero.
>
> Fixes: ec36d881f56d ("eventdev: add implicit release disable capability")
> Fixes: 2a9c83ae3b2e ("test/eventdev: add multi-ports test")
> Cc: vipin.varghese@intel.com
> CC: stable@dpdk.org
> Signed-off-by: Nikhil Rao <nikhil.rao@intel.com>
> ---
>
> v2:
> * add include patch to fix Rx adapter intr autotest as it is
> dependent on the first patch.
>
> test/test/test_event_eth_rx_adapter.c | 6 +++---
> 1 file changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/test/test/test_event_eth_rx_adapter.c b/test/test/test_event_eth_rx_adapter.c
> index 2337e54..29d0ff5 100644
> --- a/test/test/test_event_eth_rx_adapter.c
> +++ b/test/test/test_event_eth_rx_adapter.c
> @@ -317,7 +317,7 @@ struct event_eth_rx_adapter_test_params {
> {
> int err;
> struct rte_event_dev_info dev_info;
> - struct rte_event_port_conf rx_p_conf;
> + struct rte_event_port_conf rx_p_conf = {0};
Some old compiler does not support this scheme. Can you do memset to
zero to make more portable.
>
> err = rte_event_dev_info_get(TEST_DEV_ID, &dev_info);
> TEST_ASSERT(err == 0, "Expected 0 got %d", err);
> @@ -503,7 +503,7 @@ struct event_eth_rx_adapter_test_params {
> port_index = 0;
> for (; port_index < rte_eth_dev_count_total(); port_index += 1) {
> err = rte_event_eth_rx_adapter_queue_add(TEST_INST_ID,
> - port_index, 0,
> + port_index, -1,
> &queue_config);
> TEST_ASSERT(err == 0, "Expected 0 got %d", err);
> }
> @@ -512,7 +512,7 @@ struct event_eth_rx_adapter_test_params {
> port_index = 0;
> for (; port_index < rte_eth_dev_count_total(); port_index += 1) {
> err = rte_event_eth_rx_adapter_queue_del(TEST_INST_ID,
> - port_index, 0);
> + port_index, -1);
> TEST_ASSERT(err == 0, "Expected 0 got %d", err);
> }
>
> --
> 1.8.3.1
>
next prev parent reply other threads:[~2018-09-10 13:44 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-09-05 12:03 [PATCH] test/event: fix eth Rx adapter autotest for skeleton PMD Nikhil Rao
2018-09-05 13:51 ` [PATCH v2 1/2] " Nikhil Rao
2018-09-05 13:51 ` [PATCH v2 2/2] test/event: fix Rx adapter intr " Nikhil Rao
2018-09-10 13:44 ` Jerin Jacob [this message]
2018-09-25 7:19 ` [PATCH v3 1/2] test/event: fix eth Rx adapter " Nikhil Rao
2018-09-25 7:19 ` [PATCH v3 2/2] test/event: fix Rx adapter intr " Nikhil Rao
2018-09-29 12:00 ` Jerin Jacob
2018-09-29 11:59 ` [PATCH v3 1/2] test/event: fix eth Rx adapter " Jerin Jacob
2018-10-01 10:09 ` Jerin Jacob
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=20180910134402.GA24074@jerin \
--to=jerin.jacob@caviumnetworks.com \
--cc=dev@dpdk.org \
--cc=nikhil.rao@intel.com \
--cc=stable@dpdk.org \
--cc=vipin.varghese@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.