From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by dpdk.org (Postfix) with ESMTP id BF6FF9E7 for ; Tue, 7 Feb 2017 17:01:04 +0100 (CET) Received: from fmsmga004.fm.intel.com ([10.253.24.48]) by orsmga102.jf.intel.com with ESMTP; 07 Feb 2017 08:01:01 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.33,346,1477983600"; d="scan'208";a="222390722" Received: from fyigit-mobl1.ger.corp.intel.com (HELO [10.237.220.137]) ([10.237.220.137]) by fmsmga004.fm.intel.com with ESMTP; 07 Feb 2017 08:01:00 -0800 To: "Wu, Jingjing" , "dev@dpdk.org" References: <1486179375-133509-1-git-send-email-jingjing.wu@intel.com> <1486437727-83972-1-git-send-email-jingjing.wu@intel.com> <1486437727-83972-2-git-send-email-jingjing.wu@intel.com> <6f19a12e-8768-a8a1-52b0-9cdcba20fbc7@intel.com> <9BB6961774997848B5B42BEC655768F810CD5CA6@SHSMSX103.ccr.corp.intel.com> Cc: "olivier.matz@6wind.com" , "Zhang, Helin" , "Ananyev, Konstantin" From: Ferruh Yigit Message-ID: Date: Tue, 7 Feb 2017 16:01:00 +0000 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:45.0) Gecko/20100101 Thunderbird/45.7.0 MIME-Version: 1.0 In-Reply-To: <9BB6961774997848B5B42BEC655768F810CD5CA6@SHSMSX103.ccr.corp.intel.com> Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit Subject: Re: [dpdk-dev] [PATCH v3 1/4] net/i40e: fix bitmask of supported Tx flags X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 07 Feb 2017 16:01:05 -0000 On 2/7/2017 3:45 PM, Wu, Jingjing wrote: >>> +#ifdef RTE_LIBRTE_IEEE1588 >>> +#define I40E_TX_IEEE1588_TMST PKT_TX_IEEE1588_TMST #else #define >>> +I40E_TX_IEEE1588_TMST 0 #endif >>> + >>> #define I40E_TX_CKSUM_OFFLOAD_MASK ( \ >>> PKT_TX_IP_CKSUM | \ >>> PKT_TX_L4_MASK | \ >>> @@ -87,7 +93,9 @@ >>> PKT_TX_OUTER_IP_CKSUM | \ >>> PKT_TX_TCP_SEG | \ >>> PKT_TX_QINQ_PKT | \ >>> - PKT_TX_VLAN_PKT) >>> + PKT_TX_VLAN_PKT | \ >>> + PKT_TX_TUNNEL_MASK | \ >>> + I40E_TX_IEEE1588_TMST) >> >> PKT_TX_IEEE1588_TMST added into I40E_TX_OFFLOAD_MASK, but not into >> PKT_TX_OFFLOAD_MASK (patch 4/4) >> >> Shouldn't PKT_TX_OFFLOAD_MASK be a super set of driver ones. Otherwise >> PKT_TX_IEEE1588_TMST will be marked as not supported according below >> XOR logic. >> > > Yes, you are right. Should I send a new version patch set? Or just update the [4/4]? Please send a new version of the set. Thanks, ferruh