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 4AF85A0588 for ; Thu, 16 Apr 2020 10:56:15 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 421971D9C1; Thu, 16 Apr 2020 10:56:15 +0200 (CEST) Received: from mail-wr1-f66.google.com (mail-wr1-f66.google.com [209.85.221.66]) by dpdk.org (Postfix) with ESMTP id 6A55E1D9C1 for ; Thu, 16 Apr 2020 10:56:14 +0200 (CEST) Received: by mail-wr1-f66.google.com with SMTP id k11so3880433wrp.5 for ; Thu, 16 Apr 2020 01:56:14 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:message-id:subject:from:to:cc:date:in-reply-to :references:content-transfer-encoding:user-agent:mime-version; bh=zP2yJar9qzzRsVS5Sr8/fZAXzYrtFH43J9LDZUOHXFk=; b=Lb7qCQWRkQvwp88YTmpabrRjul/LhMhQ1qK9fzlbGJ/2SnRm1rFSrQy6sC9YFZjDKu 1AUlKW/zQEVjzdxcqUS+cOSipFqsEwgkeNZUrPk6I0LCrnCjnRTiByMD9RCDuU9SPpjL nPuqnekqoLGX2MOzt63CFyqByTHafBB8sMQVdOBf/BCb6MBsz5ncKThtH2VBfA608ipM KQdRW0GDjIIxj2hAWAWzFxj26uqC2luhiezbOWWpaCw7FBYfNwIEp+1hnC+upacFqbkj vr+zmzD3KHCGk6t/HtAt5dR9QYvX47M77LE1wBxc3QZyAaWnEfRBV/u2gmVPS0jX8QXa Byzg== X-Gm-Message-State: AGi0PuYsHiF2ZTrRuzU6uwKdsKnK5okVTXoP3TESkAf3yrH7uBrDsASK 2aCVH921FgEEzUo89RUtjsc= X-Google-Smtp-Source: APiQypKcS7W5bhjii1aGjiNBaqzTCjt3NuL3vXLBpEpuLEcQAWAnayrQYOj3SioPgaSYEusL+Pl/+Q== X-Received: by 2002:a5d:60ca:: with SMTP id x10mr10513273wrt.407.1587027374200; Thu, 16 Apr 2020 01:56:14 -0700 (PDT) Received: from localhost ([88.98.246.218]) by smtp.gmail.com with ESMTPSA id p5sm29193251wrg.49.2020.04.16.01.56.13 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Thu, 16 Apr 2020 01:56:13 -0700 (PDT) Message-ID: <2925461262ac9e265cd8020cd21d0a09e055bb52.camel@debian.org> From: Luca Boccassi To: John Daley , stable@dpdk.org Cc: Hyong Youb Kim Date: Thu, 16 Apr 2020 09:56:12 +0100 In-Reply-To: <20200415205953.28536-1-johndale@cisco.com> References: <20200415205953.28536-1-johndale@cisco.com> Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable User-Agent: Evolution 3.30.5-1.1 MIME-Version: 1.0 Subject: Re: [dpdk-stable] [PATCH 19.11] net/enic: fix action reordering X-BeenThere: stable@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches for DPDK stable branches List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: stable-bounces@dpdk.org Sender: "stable" On Wed, 2020-04-15 at 13:59 -0700, John Daley wrote: > From: Hyong Youb Kim >=20 > The current implementation produces wrong ordering for several cases > like these: >=20 > 1. mark, decap, steer > Current: steer, mark, decap > Correct: mark, steer, decap >=20 > 2. decap, steer, steer > Current: steer, steer, decap > Correct: steer, decap, steer >=20 > Simplify the logic and swap 1st steer and decap. > Also, allow just one decap action per flow. >=20 > Fixes: ea7768b5bba8 ("net/enic: add flow implementation based on Flow Man= ager API") > Cc: stable@dpdk.org >=20 > Signed-off-by: Hyong Youb Kim > Signed-off-by: John Daley > --- > drivers/net/enic/enic_fm_flow.c | 63 +++++++++++++++------------------ > 1 file changed, 29 insertions(+), 34 deletions(-) Hi, Thanks for the patch, I do not see it in master - is it queued? Or is it specific to 19.11?