DPDK patches and discussions
 help / color / mirror / Atom feed
* [dpdk-dev] [PATCH] app/testpmd: unchecked return value
@ 2016-06-15 10:33 Slawomir Mrozowicz
  2016-06-16  8:43 ` De Lara Guarch, Pablo
  0 siblings, 1 reply; 3+ messages in thread
From: Slawomir Mrozowicz @ 2016-06-15 10:33 UTC (permalink / raw)
  To: pablo.de.lara.guarch; +Cc: dev, Slawomir Mrozowicz

Calling rte_eth_dev_rss_hash_update without checking return value.
Fixed by handle return value and print out error status.

Fixes: ce8d561418d4 ("app/testpmd: add port configuration settings")
Coverity ID 119251

Signed-off-by: Slawomir Mrozowicz <slawomirx.mrozowicz@intel.com>
---
 app/test-pmd/cmdline.c | 10 ++++++++--
 1 file changed, 8 insertions(+), 2 deletions(-)

diff --git a/app/test-pmd/cmdline.c b/app/test-pmd/cmdline.c
index c5b9479..9616790 100644
--- a/app/test-pmd/cmdline.c
+++ b/app/test-pmd/cmdline.c
@@ -1524,6 +1524,7 @@ cmd_config_rss_parsed(void *parsed_result,
 {
 	struct cmd_config_rss *res = parsed_result;
 	struct rte_eth_rss_conf rss_conf;
+	int diag;
 	uint8_t i;
 
 	if (!strcmp(res->value, "all"))
@@ -1547,8 +1548,13 @@ cmd_config_rss_parsed(void *parsed_result,
 		return;
 	}
 	rss_conf.rss_key = NULL;
-	for (i = 0; i < rte_eth_dev_count(); i++)
-		rte_eth_dev_rss_hash_update(i, &rss_conf);
+	for (i = 0; i < rte_eth_dev_count(); i++) {
+		diag = rte_eth_dev_rss_hash_update(i, &rss_conf);
+		if (diag < 0)
+			printf("Configuration of RSS hash at ethernet port %d "
+				"failed with error (%d): %s.\n",
+				i, -diag, strerror(-diag));
+	}
 }
 
 cmdline_parse_token_string_t cmd_config_rss_port =
-- 
1.9.1

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [dpdk-dev] [PATCH] app/testpmd: unchecked return value
  2016-06-15 10:33 [dpdk-dev] [PATCH] app/testpmd: unchecked return value Slawomir Mrozowicz
@ 2016-06-16  8:43 ` De Lara Guarch, Pablo
  2016-06-16 14:48   ` Thomas Monjalon
  0 siblings, 1 reply; 3+ messages in thread
From: De Lara Guarch, Pablo @ 2016-06-16  8:43 UTC (permalink / raw)
  To: Mrozowicz, SlawomirX; +Cc: dev



> -----Original Message-----
> From: Mrozowicz, SlawomirX
> Sent: Wednesday, June 15, 2016 11:34 AM
> To: De Lara Guarch, Pablo
> Cc: dev@dpdk.org; Mrozowicz, SlawomirX
> Subject: [PATCH] app/testpmd: unchecked return value
> 
> Calling rte_eth_dev_rss_hash_update without checking return value.
> Fixed by handle return value and print out error status.
> 
> Fixes: ce8d561418d4 ("app/testpmd: add port configuration settings")
> Coverity ID 119251
> 
> Signed-off-by: Slawomir Mrozowicz <slawomirx.mrozowicz@intel.com>

Acked-by: Pablo de Lara <pablo.de.lara.guarch@intel.com>

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [dpdk-dev] [PATCH] app/testpmd: unchecked return value
  2016-06-16  8:43 ` De Lara Guarch, Pablo
@ 2016-06-16 14:48   ` Thomas Monjalon
  0 siblings, 0 replies; 3+ messages in thread
From: Thomas Monjalon @ 2016-06-16 14:48 UTC (permalink / raw)
  To: Mrozowicz, SlawomirX; +Cc: dev, De Lara Guarch, Pablo

> > Calling rte_eth_dev_rss_hash_update without checking return value.
> > Fixed by handle return value and print out error status.
> > 
> > Fixes: ce8d561418d4 ("app/testpmd: add port configuration settings")
> > Coverity ID 119251
> > 
> > Signed-off-by: Slawomir Mrozowicz <slawomirx.mrozowicz@intel.com>
> 
> Acked-by: Pablo de Lara <pablo.de.lara.guarch@intel.com>

Applied, thanks

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2016-06-16 14:48 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-06-15 10:33 [dpdk-dev] [PATCH] app/testpmd: unchecked return value Slawomir Mrozowicz
2016-06-16  8:43 ` De Lara Guarch, Pablo
2016-06-16 14:48   ` Thomas Monjalon

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).