From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga05.intel.com (mga05.intel.com [192.55.52.43]) by dpdk.org (Postfix) with ESMTP id 16CD71E33 for ; Thu, 1 Feb 2018 16:24:33 +0100 (CET) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga008.fm.intel.com ([10.253.24.58]) by fmsmga105.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 01 Feb 2018 07:24:31 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.46,444,1511856000"; d="scan'208";a="14722627" Received: from fyigit-mobl1.ger.corp.intel.com (HELO [10.237.220.157]) ([10.237.220.157]) by fmsmga008.fm.intel.com with ESMTP; 01 Feb 2018 07:24:30 -0800 To: Somnath Kotur , dev@dpdk.org References: <20180201050949.15769-1-somnath.kotur@broadcom.com> From: Ferruh Yigit Message-ID: Date: Thu, 1 Feb 2018 15:24:29 +0000 User-Agent: Mozilla/5.0 (Windows NT 10.0; WOW64; rv:52.0) Gecko/20100101 Thunderbird/52.5.2 MIME-Version: 1.0 In-Reply-To: <20180201050949.15769-1-somnath.kotur@broadcom.com> Content-Type: text/plain; charset=utf-8 Content-Language: en-US Content-Transfer-Encoding: 7bit Subject: Re: [dpdk-dev] [PATCH] bnxt: Fix to set timestamp flag as well in the offload flags for the recieved pkt in case of PTP offload 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: Thu, 01 Feb 2018 15:24:35 -0000 On 2/1/2018 5:09 AM, Somnath Kotur wrote: Hi Somnath, Can you please keep patch title brief (around 50 characters) and put more content in commit log? > Signed-off-by: Somnath Kotur > --- > drivers/net/bnxt/bnxt_rxr.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/net/bnxt/bnxt_rxr.c b/drivers/net/bnxt/bnxt_rxr.c > index 82c93d6..430990d 100644 > --- a/drivers/net/bnxt/bnxt_rxr.c > +++ b/drivers/net/bnxt/bnxt_rxr.c > @@ -459,7 +459,7 @@ static int bnxt_rx_pkt(struct rte_mbuf **rx_pkt, > > if ((rxcmp->flags_type & rte_cpu_to_le_16(RX_PKT_CMPL_FLAGS_MASK)) == > RX_PKT_CMPL_FLAGS_ITYPE_PTP_W_TIMESTAMP) > - mbuf->ol_flags |= PKT_RX_IEEE1588_PTP; > + mbuf->ol_flags |= PKT_RX_IEEE1588_PTP | PKT_RX_IEEE1588_TMST; > > if (agg_buf) > bnxt_rx_pages(rxq, mbuf, &tmp_raw_cons, agg_buf); >