From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga01.intel.com (mga01.intel.com [192.55.52.88]) by dpdk.org (Postfix) with ESMTP id 7F2012C59 for ; Wed, 2 Mar 2016 09:39:46 +0100 (CET) Received: from orsmga002.jf.intel.com ([10.7.209.21]) by fmsmga101.fm.intel.com with ESMTP; 02 Mar 2016 00:39:45 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.22,527,1449561600"; d="scan'208";a="924995424" Received: from adambynes.sh.intel.com (HELO adambynes) ([10.239.129.240]) by orsmga002.jf.intel.com with ESMTP; 02 Mar 2016 00:39:44 -0800 Date: Wed, 2 Mar 2016 08:25:47 +0800 From: Zhe Tao To: Jingjing Wu Message-ID: <20160302002547.GA3087@intel.com> References: <1453883856-31246-1-git-send-email-jingjing.wu@intel.com> <1454294901-2556-1-git-send-email-jingjing.wu@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1454294901-2556-1-git-send-email-jingjing.wu@intel.com> User-Agent: Mutt/1.5.23 (2014-03-12) Cc: dev@dpdk.org Subject: Re: [dpdk-dev] [PATCH v2] ethdev: fix byte order inconsistence between fdir flow and mask X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Mar 2016 08:39:46 -0000 On Mon, Feb 01, 2016 at 10:48:21AM +0800, Jingjing Wu wrote: > Fixed issue of byte order in ethdev library that the structure > for setting fdir's mask and flow entry is inconsist and made > inputs of mask be in big endian. > > Fixes: 76c6f89e80d4 ("ixgbe: support new flow director masks") > Fixes: 2d4c1a9ea2ac ("ethdev: add new flow director masks") > > Reported-by: Yaacov Hazan > Signed-off-by: Jingjing Wu > --- > v2 changes: > fix typo and reword API doc. > > app/test-pmd/cmdline.c | 6 ++--- > doc/guides/rel_notes/release_2_3.rst | 6 +++++ > drivers/net/ixgbe/ixgbe_fdir.c | 47 ++++++++++++++++++++++-------------- > lib/librte_ether/rte_eth_ctrl.h | 17 ++++++++++--- > 4 files changed, 51 insertions(+), 25 deletions(-) > > diff --git a/app/test-pmd/cmdline.c b/app/test-pmd/cmdline.c > index 73298c9..13194c9 100644 > --- a/app/test-pmd/cmdline.c > +++ b/app/test-pmd/cmdline.c > @@ -8687,13 +8687,13 @@ cmd_flow_director_mask_parsed(void *parsed_result, > return; > } Acked-by: Zhe Tao