From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 5AAD3A0C4A; Wed, 7 Jul 2021 12:03:46 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 435DB406FF; Wed, 7 Jul 2021 12:03:46 +0200 (CEST) Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [216.205.24.124]) by mails.dpdk.org (Postfix) with ESMTP id 835C2406B4 for ; Wed, 7 Jul 2021 12:03:44 +0200 (CEST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1625652223; h=from:from:reply-to:subject:subject:date:date:message-id:message-id: to:to:cc:cc:mime-version:mime-version:content-type:content-type: in-reply-to:in-reply-to:references:references; bh=kSnyWYkvQTJgAv1vhyc4rKo1RwVAMsgm0e/DkFtlad4=; b=Nbkw3m1qJhEKarCCm35mZi09jzu8GnfNBYyBDiDaf7FSRtKhkek+auFNoV5HewBJ75ZikA oM6PUCYC5wW9wpu66wy9i+eAiO4PN/weKoJ9lzCrb+ts+nqv1dlVSiX6eWRuyE2OOzZmYO Fe/1NIhQGyK4VqHDkK/+0zcKb1lpebw= Received: from mail-vk1-f199.google.com (mail-vk1-f199.google.com [209.85.221.199]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-55-Fe4DCCg9PGylPzAmUvBZcw-1; Wed, 07 Jul 2021 06:03:37 -0400 X-MC-Unique: Fe4DCCg9PGylPzAmUvBZcw-1 Received: by mail-vk1-f199.google.com with SMTP id 5-20020a1f13050000b0290256e3ea37c1so269934vkt.1 for ; Wed, 07 Jul 2021 03:03:37 -0700 (PDT) X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:mime-version:references:in-reply-to:from:date :message-id:subject:to:cc; bh=kSnyWYkvQTJgAv1vhyc4rKo1RwVAMsgm0e/DkFtlad4=; b=ouzfZqZh9nMEPWuOtdn+boCvqQsAf2viTdhZkzKF0DBSh44QGilpT5WuHGzRgkJEw3 T79hAj1O99HuoTnqmjJuAv6iC4bIm4YhSSR+V9nYsQqpDJV6y8t/wCBNU9UHhbMKZJ9v hlyjZ9OKZVp6Y07aR1uy1Yy/Hd2rvqTL0D1ReRhl4l60ZDFkG+V5itAs0qNqC0eJbXIV UGz/s2kEJ603jXhveaWFdLDQELl5iLXc8aQZM1rDE4dclhyDwT4VMw+vJSGcN6DXM2dR UlFn+9C1dNc02iTpZX6OB19fCVH+7LmlwAdK88aOiuS6JHGJmowvI/kIArZrGUkw+pGe 033g== X-Gm-Message-State: AOAM5325EJ9lXU/6QjZH9INMqb6wYrHJICD3lmT83KdM6Jhm0HNuxSyC KfjkMljBITDrZzf8asBh7YtEQ85WioWyGApmuY2vc6I9ATZCxVcrd0l5IXuSpJe51G/dwGFfUb9 q1rfyXpxFsMT/w2h/maw= X-Received: by 2002:ab0:211a:: with SMTP id d26mr21166828ual.41.1625652217201; Wed, 07 Jul 2021 03:03:37 -0700 (PDT) X-Google-Smtp-Source: ABdhPJzo5t5wJb2KioZjGWdszEbKO8XUAtXmReqY0jj/wBtP97dfmi0ACOA3PESlAeDs7rUUVpeyFG20snJCB8Evpy4= X-Received: by 2002:ab0:211a:: with SMTP id d26mr21166812ual.41.1625652216985; Wed, 07 Jul 2021 03:03:36 -0700 (PDT) MIME-Version: 1.0 References: <20210706123726.12914-1-ivan.malov@oktetlabs.ru> In-Reply-To: <20210706123726.12914-1-ivan.malov@oktetlabs.ru> From: David Marchand Date: Wed, 7 Jul 2021 12:03:25 +0200 Message-ID: To: Ivan Malov Cc: dev , dpdk stable , Andrew Rybchenko , Andy Moreton Authentication-Results: relay.mimecast.com; auth=pass smtp.auth=CUSA124A263 smtp.mailfrom=dmarchan@redhat.com X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain; charset="UTF-8" Subject: Re: [dpdk-dev] [dpdk-stable] [PATCH] net/sfc: fix outer match in MAE backend of RTE flow support 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 Tue, Jul 6, 2021 at 2:37 PM Ivan Malov wrote: > > The current code doesn't use match on invalid outer rule ID > in action rules of non-encap. flows. This is wrong and must > be fixed. Do that and explain correct behaviour in the code. > > Fixes: dadff137931c ("net/sfc: support encap flow items in transfer rules") > Cc: stable@dpdk.org > > Signed-off-by: Ivan Malov > Reviewed-by: Andrew Rybchenko > Reviewed-by: Andy Moreton Applied, thanks. -- David Marchand