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 D6C97A0547; Tue, 3 Aug 2021 20:11:15 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 4BEB8411A7; Tue, 3 Aug 2021 20:11:15 +0200 (CEST) Received: from mail-qt1-f170.google.com (mail-qt1-f170.google.com [209.85.160.170]) by mails.dpdk.org (Postfix) with ESMTP id 6157340E3C for ; Tue, 3 Aug 2021 20:11:14 +0200 (CEST) Received: by mail-qt1-f170.google.com with SMTP id d9so14533448qty.12 for ; Tue, 03 Aug 2021 11:11:14 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=broadcom.com; s=google; h=mime-version:references:in-reply-to:from:date:message-id:subject:to :cc; bh=wzc4NSwOPU8GVWR8onfc2qdrFrdCLzzZ0Yum45EThfo=; b=EiDyPvJS7ldVUe70M7iXGOlnAUls5HSrE0p+q+VQ+qF1ut3OT+VgG3AkKzJUDIcAr3 D/x3+5yZqdw88t2O3p95lJCbj1l4p32X0DO+InmNaheF807MMB1EIccJPcvhWyosj18t HTXA85dkgA2hPsm+Y21Dd29bGeu4Je7Om24Og= 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=wzc4NSwOPU8GVWR8onfc2qdrFrdCLzzZ0Yum45EThfo=; b=mWEMJV1c9PUOn6P46D5HHo32uMbQ/G0CJzj0SEuxqPiFJhFd8Ad+aiEbFYa5y4+5fr Ei4ozSpjDR7GVPi/5kCEzX/336E1hHMHrIjdQVtAF5FhMbLDnqkWUFbF1OnwdRRaeiZV iRXq4XIkCPTh29JJNxm4WSoVYKEik+kiMzkRyCYKJGoBP76QkoKW9hun7dJ2/aivkO/9 fDExNXDnDdFvP6dg/yPOmbOQ1thdM1fU/tyMs00cwPW6zglyQvPOBJynPungdjumDZh+ ojzeV1ypz0mbwXcyX7H3HpjY/ePYUr8iXsLRCXLqm9RgUVteDhhrOCaVGg+gVfmlT/6w BOcA== X-Gm-Message-State: AOAM533wCj0Lo5ct++77KAHNXrLPl6h8ETaGPYQODg4DTtZV6N31oXpD TSP3mL4BjUPvOb5D4JEDuoqTB7k/pwGd8rwL+qkHnA== X-Google-Smtp-Source: ABdhPJwfL20i/J0+I7YVzapv07iHPQEsDaoVKRXBUiixWnkY/fEYHGpaRXwtmqz5fXIPhr1xYA6JWEjGOesDLx3aJ0c= X-Received: by 2002:ac8:5f94:: with SMTP id j20mr19292348qta.225.1628014273699; Tue, 03 Aug 2021 11:11:13 -0700 (PDT) MIME-Version: 1.0 References: <20210802141004.353754-1-matan@nvidia.com> <20210803085754.643180-1-orika@nvidia.com> In-Reply-To: <20210803085754.643180-1-orika@nvidia.com> From: Ajit Khaparde Date: Tue, 3 Aug 2021 11:10:57 -0700 Message-ID: To: Ori Kam Cc: Thomas Monjalon , Andrew Rybchenko , Ray Kinsella , dpdk-dev , Slava Ovsiienko , Ferruh Yigit , Matan Azrad , Raslan Darawsheh , Akhil Goyal Content-Type: multipart/signed; protocol="application/pkcs7-signature"; micalg=sha-256; boundary="0000000000007dfc1c05c8ab9cca" X-Content-Filtered-By: Mailman/MimeDel 2.1.29 Subject: Re: [dpdk-dev] [PATCH v2 1/2] ethdev: announce change to action modify data 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" --0000000000007dfc1c05c8ab9cca Content-Type: text/plain; charset="UTF-8" On Tue, Aug 3, 2021 at 1:58 AM Ori Kam wrote: > > In the current implementation, > the action rte_flow_action_modify_field is not well defined > for fields larger than 64 bits (for example IPv6 source) > In addition, the byte order is also not well defined. > > Both of those issue should be fixed. > > Signed-off-by: Ori Kam > Acked-by: Matan Azrad Acked-by: Ajit Khaparde > --- > V2: > Fix typo. > --- > doc/guides/rel_notes/deprecation.rst | 4 ++++ > 1 file changed, 4 insertions(+) > > diff --git a/doc/guides/rel_notes/deprecation.rst b/doc/guides/rel_notes/deprecation.rst > index d9c0e65921..b530616281 100644 > --- a/doc/guides/rel_notes/deprecation.rst > +++ b/doc/guides/rel_notes/deprecation.rst > @@ -158,3 +158,7 @@ Deprecation Notices > * security: The functions ``rte_security_set_pkt_metadata`` and > ``rte_security_get_userdata`` will be made inline functions and additional > flags will be added in structure ``rte_security_ctx`` in DPDK 21.11. > + > +* ethdev: The struct ``rte_flow_action_modify_data`` will be modified > + to support modifying larger fields than 64 bits. > + In addition, documentation will be updated to clarify byte order. > -- > 2.25.1 > --0000000000007dfc1c05c8ab9cca--