From: Adrien Mazarguil <adrien.mazarg...@6wind.com> Signed-off-by: Adrien Mazarguil <adrien.mazarg...@6wind.com> Reviewed-by: Ferruh Yigit <ferruh.yi...@intel.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 92686a05f..a0f934932 100644 --- a/app/test-pmd/config.c +++ b/app/test-pmd/config.c @@ -1346,11 +1346,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