From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 16DC5A052B; Thu, 6 Aug 2020 03:27:55 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 4576F2BF1; Thu, 6 Aug 2020 03:27:54 +0200 (CEST) Received: from mail-ej1-f53.google.com (mail-ej1-f53.google.com [209.85.218.53]) by dpdk.org (Postfix) with ESMTP id 1FF5525D9 for ; Thu, 6 Aug 2020 03:27:53 +0200 (CEST) Received: by mail-ej1-f53.google.com with SMTP id qc22so33685655ejb.4 for ; Wed, 05 Aug 2020 18:27:53 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=broadcom.com; s=google; h=from:references:in-reply-to:mime-version:thread-index:date :message-id:subject:to:cc; bh=l7SdVFLqovAE/XlyobRmUttnv+gLz24JAnDAJJxGOEg=; b=B6gJfPWx7QiqfJZQ6CTYD/1Tt1NiLfHesUDmzj3z1yf/cEhzWZTC8gNl2epP80Upo/ f9bu0wJeRneYhpbShBh6c8WEBxD3e1QrgQ560Vy2us3LdSyRfwCwbcVI3a2spJNyKPSW aqTSz9acZOW5vP54MYuzzUr+hqKeZ1995j8pY= X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:references:in-reply-to:mime-version :thread-index:date:message-id:subject:to:cc; bh=l7SdVFLqovAE/XlyobRmUttnv+gLz24JAnDAJJxGOEg=; b=PLXcBVu786auU9yA48MV+KWTCqrboYD7NHlk6E5iLKiQI3ujH5NPZKryaA4CevUWLK Zc905SgFDabbEAsWvwYdWvtcGxBjHxyQoBqCx1D3F+Udp/KMTvmAUjkLjLGuiwmYXRYj 6vi9kFpcyoHh6yYEblqXlAEK9G1uqHJL81JYJ9hQcRh7huvCN+FdTqpGIvIh87Dx23Dy QOC4f808O7Hnzx+ipBillMxS9HcA89tYigXUzzYVOfMJ4dqgyQiuSYEhIoAQ9dvbHrL8 1WmOAzo30FKOQMhFat2jbQtSNhfo/KXv4r2/Ze/YbvAqhqUCAaj2zEqyb2TQprcfbzWl A4vw== X-Gm-Message-State: AOAM531yrssPVCjjr7u4YeRKn4TPfxDSBXmFqYIiwFkWYgq9iWsVRGLr 47ZQUq41QXfz1lBiy0whkaU0FGQlaOM9AbSV3JdRXg== X-Google-Smtp-Source: ABdhPJxQcXryTyW/RePYyU5tJoAqFMINKoWFWZsY7GG20wQyFhmmXYOsA8OQ86noHAHgc4YRA4WI7YxG85Q0jVzVMd8= X-Received: by 2002:a17:906:c18d:: with SMTP id g13mr1975981ejz.239.1596677272680; Wed, 05 Aug 2020 18:27:52 -0700 (PDT) From: Kishore Padmanabha References: <20200731172302.5292-1-ajit.khaparde@broadcom.com> <20200731172302.5292-3-ajit.khaparde@broadcom.com> <5699236.fjLuZW4lF1@thomas> In-Reply-To: <5699236.fjLuZW4lF1@thomas> MIME-Version: 1.0 X-Mailer: Microsoft Outlook 15.0 Thread-Index: AQIgUKb6RVJuTQy3uAEgCsZG1iE33AHLvEUCAUMFJOYCRqQT26hr1BmA Date: Wed, 5 Aug 2020 21:27:50 -0400 Message-ID: To: Thomas Monjalon Cc: dev@dpdk.org, ferruh.yigit@intel.com, Shahaji Bhosle , Michael Baucom , Ajit Kumar Khaparde Content-Type: text/plain; charset="UTF-8" Subject: Re: [dpdk-dev] [PATCH v2 2/4] net/bnxt: fix lookup for default parif action record X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 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" Hi Thomas, The commit message could be changed to "must". In the HW offload, if the incoming packet match fails in the exact match table, then the packet needs to use a default action. This default action is being configured as part of this patch. The parif is a HW table and it is being configured so that there is default action for the missed packets. Rgds, Kishore -----Original Message----- From: Thomas Monjalon [mailto:thomas@monjalon.net] Sent: Wednesday, August 05, 2020 4:29 PM To: Kishore Padmanabha Cc: dev@dpdk.org; ferruh.yigit@intel.com; Shahaji Bhosle ; Mike Baucom ; Ajit Khaparde Subject: Re: [dpdk-dev] [PATCH v2 2/4] net/bnxt: fix lookup for default parif action record 31/07/2020 19:23, Ajit Khaparde: > From: Kishore Padmanabha > > The lookup default action record parif table is updated to catch the > miss path for the entries in the exact match table. > > Fixes: fe82f3e02701 ("net/bnxt: support exact match templates") It doesn't look like a fix. What is "parif action"? > Signed-off-by: Kishore Padmanabha > Reviewed-by: Shahaji Bhosle > Reviewed-by: Mike Baucom > Reviewed-by: Ajit Khaparde