DPDK patches and discussions
 help / color / mirror / Atom feed
* [dpdk-dev] [PATCH] bnxt: Fix to set timestamp flag as well in the offload flags for the recieved pkt in case of PTP offload
@ 2018-02-01  5:09 Somnath Kotur
  2018-02-01 15:24 ` Ferruh Yigit
  0 siblings, 1 reply; 3+ messages in thread
From: Somnath Kotur @ 2018-02-01  5:09 UTC (permalink / raw)
  To: dev

Signed-off-by: Somnath Kotur <somnath.kotur@broadcom.com>
---
 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);
-- 
1.9.1

^ permalink raw reply	[flat|nested] 3+ messages in thread

* 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
  2018-02-01  5:09 [dpdk-dev] [PATCH] bnxt: Fix to set timestamp flag as well in the offload flags for the recieved pkt in case of PTP offload Somnath Kotur
@ 2018-02-01 15:24 ` Ferruh Yigit
  2018-02-01 15:43   ` Somnath Kotur
  0 siblings, 1 reply; 3+ messages in thread
From: Ferruh Yigit @ 2018-02-01 15:24 UTC (permalink / raw)
  To: Somnath Kotur, dev

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 <somnath.kotur@broadcom.com>
> ---
>  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);
> 

^ permalink raw reply	[flat|nested] 3+ messages in thread

* 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
  2018-02-01 15:24 ` Ferruh Yigit
@ 2018-02-01 15:43   ` Somnath Kotur
  0 siblings, 0 replies; 3+ messages in thread
From: Somnath Kotur @ 2018-02-01 15:43 UTC (permalink / raw)
  To: Ferruh Yigit; +Cc: dev

Sure , will do a response

Thanks
Som

On Feb 1, 2018 8:54 PM, "Ferruh Yigit" <ferruh.yigit@intel.com> wrote:

> 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 <somnath.kotur@broadcom.com>
> > ---
> >  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);
> >
>
>

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2018-02-01 15:43 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-02-01  5:09 [dpdk-dev] [PATCH] bnxt: Fix to set timestamp flag as well in the offload flags for the recieved pkt in case of PTP offload Somnath Kotur
2018-02-01 15:24 ` Ferruh Yigit
2018-02-01 15:43   ` Somnath Kotur

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).