DPDK patches and discussions
 help / color / mirror / Atom feed
* [dpdk-dev] [PATCH] app/testpmd: show errno along with flow API errors
@ 2018-08-31  9:10 Adrien Mazarguil
  2018-09-14 14:27 ` Ferruh Yigit
  0 siblings, 1 reply; 3+ messages in thread
From: Adrien Mazarguil @ 2018-08-31  9:10 UTC (permalink / raw)
  To: Ferruh Yigit; +Cc: dev

Signed-off-by: Adrien Mazarguil <adrien.mazarguil@6wind.com>
---
 app/test-pmd/config.c | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)

diff --git a/app/test-pmd/config.c b/app/test-pmd/config.c
index 669be168b..84e817ff2 100644
--- a/app/test-pmd/config.c
+++ b/app/test-pmd/config.c
@@ -1048,11 +1048,12 @@ port_flow_complain(struct rte_flow_error *error)
 		errstr = "unknown type";
 	else
 		errstr = errstrlist[error->type];
-	printf("Caught error type %d (%s): %s%s\n",
+	printf("Caught error type %d (%s): %s%s: %s\n",
 	       error->type, errstr,
 	       error->cause ? (snprintf(buf, sizeof(buf), "cause: %p, ",
 					error->cause), buf) : "",
-	       error->message ? error->message : "(no stated reason)");
+	       error->message ? error->message : "(no stated reason)",
+	       rte_strerror(err));
 	return -err;
 }
 
-- 
2.11.0

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

* Re: [dpdk-dev] [PATCH] app/testpmd: show errno along with flow API errors
  2018-08-31  9:10 [dpdk-dev] [PATCH] app/testpmd: show errno along with flow API errors Adrien Mazarguil
@ 2018-09-14 14:27 ` Ferruh Yigit
  2018-09-14 14:28   ` Ferruh Yigit
  0 siblings, 1 reply; 3+ messages in thread
From: Ferruh Yigit @ 2018-09-14 14:27 UTC (permalink / raw)
  To: Adrien Mazarguil; +Cc: dev

On 8/31/2018 10:10 AM, Adrien Mazarguil wrote:
> Signed-off-by: Adrien Mazarguil <adrien.mazarguil@6wind.com>

Reviewed-by: Ferruh Yigit <ferruh.yigit@intel.com>

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

* Re: [dpdk-dev] [PATCH] app/testpmd: show errno along with flow API errors
  2018-09-14 14:27 ` Ferruh Yigit
@ 2018-09-14 14:28   ` Ferruh Yigit
  0 siblings, 0 replies; 3+ messages in thread
From: Ferruh Yigit @ 2018-09-14 14:28 UTC (permalink / raw)
  To: Adrien Mazarguil; +Cc: dev

On 9/14/2018 3:27 PM, Ferruh Yigit wrote:
> On 8/31/2018 10:10 AM, Adrien Mazarguil wrote:
>> Signed-off-by: Adrien Mazarguil <adrien.mazarguil@6wind.com>
> 
> Reviewed-by: Ferruh Yigit <ferruh.yigit@intel.com>

Applied to dpdk-next-net/master, thanks.

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

end of thread, other threads:[~2018-09-14 14:28 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-08-31  9:10 [dpdk-dev] [PATCH] app/testpmd: show errno along with flow API errors Adrien Mazarguil
2018-09-14 14:27 ` Ferruh Yigit
2018-09-14 14:28   ` Ferruh Yigit

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).