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 6C811A09E5 for ; Tue, 8 Dec 2020 11:51:17 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 64E3FA3; Tue, 8 Dec 2020 11:51:16 +0100 (CET) Received: from us-smtp-delivery-124.mimecast.com (us-smtp-delivery-124.mimecast.com [216.205.24.124]) by dpdk.org (Postfix) with ESMTP id 03103A3 for ; Tue, 8 Dec 2020 11:51:13 +0100 (CET) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=redhat.com; s=mimecast20190719; t=1607424672; 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: content-transfer-encoding:content-transfer-encoding: in-reply-to:in-reply-to:references:references; bh=O/OunWuv1/kDqzjrnMFO+ZLdmEpJf1Ia+0e5nIBYWQ8=; b=gQfru0YYKWjbk6JUe6iV43U7KrNWUUcRdgn1bCqOxzsunz2kLGhHN5oWpa8AjDm6NrGnq8 O9Fm+vC+l4Vx1+fOKFINRHjMct+pEtNjmfXQ4vYi90JFKPg3yreAaZDr/+is4/rQRGU3KX voaxQnPUbJP54G/toXlrGHL5esLY9+M= Received: from mimecast-mx01.redhat.com (mimecast-mx01.redhat.com [209.132.183.4]) (Using TLS) by relay.mimecast.com with ESMTP id us-mta-329-hORVRJ29N8S3YsFfkCCPuw-1; Tue, 08 Dec 2020 05:51:10 -0500 X-MC-Unique: hORVRJ29N8S3YsFfkCCPuw-1 Received: from smtp.corp.redhat.com (int-mx03.intmail.prod.int.phx2.redhat.com [10.5.11.13]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mimecast-mx01.redhat.com (Postfix) with ESMTPS id 0E92E1005504; Tue, 8 Dec 2020 10:51:09 +0000 (UTC) Received: from [10.36.114.230] (ovpn-114-230.ams2.redhat.com [10.36.114.230]) by smtp.corp.redhat.com (Postfix) with ESMTP id 92C4A2B394; Tue, 8 Dec 2020 10:51:07 +0000 (UTC) To: Viacheslav Ovsiienko , stable@dpdk.org Cc: thomas@monjalon.net, Dekel Peled , Viacheslav Ovsiienko References: <1607419434-16261-1-git-send-email-viacheslavo@nvidia.com> From: Kevin Traynor Message-ID: <9b88e5ac-17d9-f940-ea62-4274267a50e1@redhat.com> Date: Tue, 8 Dec 2020 10:51:06 +0000 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:78.0) Gecko/20100101 Thunderbird/78.4.0 MIME-Version: 1.0 In-Reply-To: <1607419434-16261-1-git-send-email-viacheslavo@nvidia.com> X-Scanned-By: MIMEDefang 2.79 on 10.5.11.13 Authentication-Results: relay.mimecast.com; auth=pass smtp.auth=CUSA124A263 smtp.mailfrom=ktraynor@redhat.com X-Mimecast-Spam-Score: 0 X-Mimecast-Originator: redhat.com Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 8bit Subject: Re: [dpdk-stable] [PATCH] [18.11] net/mlx5: fix match on empty VLAN item in DV mode 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 08/12/2020 09:23, Viacheslav Ovsiienko wrote: > From: Dekel Peled > > From: Dekel Peled > Removed duplicate From: ^ as it was embedding in commit msg. Please add upstream commit info for backports. For this one I added [ upstream commit 92818d839e8eb0ce479db826f00aa6d62384fc92 ] > In existing implementation, using wild card VLAN item is not allowed. > A VLAN item in flow pattern must include VLAN ID (vid) value. > This obligation contradict the flow API specification. > > This patch updates the VLAN item validation and translation, to allow > wild card VLAN item, without VLAN ID value. > User guide and release notes are updated accordingly. > > Fixes: 3d79e4f2d563 ("net/mlx5: fix VLAN match for DV mode") > Changed to fixed commit on main branch Fixes: 00f75a40576b ("net/mlx5: fix VLAN match for DV mode") If it's a backport where the main branch commit fixes something on main, then we keep that Fixes: tag. If is fixing an LTS only issue then can use the LTS branch commit id in the Fixes:. > Signed-off-by: Dekel Peled > Signed-off-by: Viacheslav Ovsiienko > ---> doc/guides/nics/mlx5.rst | 24 +++++++++++++ > drivers/net/mlx5/mlx5_flow_dv.c | 74 ++++++++++++++++++++++++++++++++++++----- > 2 files changed, 90 insertions(+), 8 deletions(-) > Applied, thanks.