From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-8.8 required=3.0 tests=BAYES_00, HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_CR_TRAILER,MAILING_LIST_MULTI, SPF_HELO_NONE,SPF_PASS,URIBL_BLOCKED autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 9BB2BC433C1 for ; Tue, 30 Mar 2021 14:15:26 +0000 (UTC) Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by mail.kernel.org (Postfix) with ESMTP id 0C5F2619BD for ; Tue, 30 Mar 2021 14:15:25 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org 0C5F2619BD Authentication-Results: mail.kernel.org; dmarc=fail (p=none dis=none) header.from=intel.com Authentication-Results: mail.kernel.org; spf=pass smtp.mailfrom=dev-bounces@dpdk.org Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 48F43406B4; Tue, 30 Mar 2021 16:15:25 +0200 (CEST) Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by mails.dpdk.org (Postfix) with ESMTP id 53D7940691; Tue, 30 Mar 2021 16:15:23 +0200 (CEST) IronPort-SDR: ayAgwVXC7nkTWF88qsrzm1R6bKRxJsVkEP9WYofUFACE/INc08uYP6rOc9i7f1fGsjWQk/6HPs 6CptEBZL1m0Q== X-IronPort-AV: E=McAfee;i="6000,8403,9939"; a="211990071" X-IronPort-AV: E=Sophos;i="5.81,291,1610438400"; d="scan'208";a="211990071" Received: from orsmga008.jf.intel.com ([10.7.209.65]) by fmsmga101.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 30 Mar 2021 07:15:22 -0700 IronPort-SDR: m/vst5BKYZq2+n0Pp1kSgMRn7QwfQelT4tf3pna+BcoX3vo5B1Gt2JxLK3b6vUeShmd0d0i+ap eZBUymd12HRg== X-IronPort-AV: E=Sophos;i="5.81,291,1610438400"; d="scan'208";a="418188716" Received: from fyigit-mobl1.ger.corp.intel.com (HELO [10.213.213.217]) ([10.213.213.217]) by orsmga008-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 30 Mar 2021 07:15:20 -0700 To: Ivan Malov , dev@dpdk.org Cc: stable@dpdk.org, Andrew Rybchenko , Andy Moreton References: <20210326093927.2535-1-ivan.malov@oktetlabs.ru> From: Ferruh Yigit X-User: ferruhy Message-ID: <79d995fe-036a-7c50-af0d-6c475951491f@intel.com> Date: Tue, 30 Mar 2021 15:15:19 +0100 MIME-Version: 1.0 In-Reply-To: <20210326093927.2535-1-ivan.malov@oktetlabs.ru> Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US Content-Transfer-Encoding: 7bit Subject: Re: [dpdk-dev] [dpdk-stable] [PATCH] net/sfc: fix error path inconsistency X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" On 3/26/2021 9:39 AM, Ivan Malov wrote: > At the fail label, there's a statement to set general errno and > error message. However, before the label is reached, a custom > error message can be set by the code which parses actions. > This custom (action-specific) message, when present, > must not be replaced by the general one. > > Fixes: 662286ae61d2 ("net/sfc: add actions parsing stub to MAE backend") > Cc: stable@dpdk.org > > Signed-off-by: Ivan Malov > Signed-off-by: Andrew Rybchenko > Reviewed-by: Andy Moreton Applied to dpdk-next-net/main, thanks.