From: Ivan Malov Date: Wed, 16 May 2018 13:24:03 +0000 (+0100) Subject: net/sfc: improve unsupported flow pattern message X-Git-Url: http://git.droids-corp.org/?a=commitdiff_plain;h=e4c5216d1cb06a7ce39cfbefe1c7243052126415;p=dpdk.git net/sfc: improve unsupported flow pattern message Such a message could be generated by two places in the code, and there is a difference in the text albeit there is no difference in the meaning. These two messages must be the same so that automated error log comparison may be carried out without confusion. Fixes: a9825ccf5bb8 ("net/sfc: support flow API filters") Cc: stable@dpdk.org Signed-off-by: Ivan Malov Signed-off-by: Andrew Rybchenko --- diff --git a/drivers/net/sfc/sfc_flow.c b/drivers/net/sfc/sfc_flow.c index e6b2ecff41..ddb97f1b08 100644 --- a/drivers/net/sfc/sfc_flow.c +++ b/drivers/net/sfc/sfc_flow.c @@ -2046,7 +2046,7 @@ sfc_flow_spec_filters_complete(struct sfc_adapter *sa, if (min_multiplier == UINT_MAX) { rte_flow_error_set(error, ENOTSUP, RTE_FLOW_ERROR_TYPE_UNSPECIFIED, NULL, - "Flow rule pattern is not supported"); + "The flow rule pattern is unsupported"); return -rte_errno; }