Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 27 Mar 2019 21:43:39 +0000 (UTC)
From:      Navdeep Parhar <np@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-12@freebsd.org
Subject:   svn commit: r345608 - stable/12/sys/dev/cxgbe
Message-ID:  <201903272143.x2RLhdV3051339@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: np
Date: Wed Mar 27 21:43:38 2019
New Revision: 345608
URL: https://svnweb.freebsd.org/changeset/base/345608

Log:
  MFC r342284:
  
  cxgbe(4): Make sure the rx queues start off with the correct timestamp
  settings on initialization.
  
  Sponsored by:	Chelsio Communications

Modified:
  stable/12/sys/dev/cxgbe/t4_sge.c
Directory Properties:
  stable/12/   (props changed)

Modified: stable/12/sys/dev/cxgbe/t4_sge.c
==============================================================================
--- stable/12/sys/dev/cxgbe/t4_sge.c	Wed Mar 27 21:38:18 2019	(r345607)
+++ stable/12/sys/dev/cxgbe/t4_sge.c	Wed Mar 27 21:43:38 2019	(r345608)
@@ -3367,6 +3367,8 @@ alloc_rxq(struct vi_info *vi, struct sge_rxq *rxq, int
 	if (vi->ifp->if_capenable & IFCAP_LRO)
 		rxq->iq.flags |= IQ_LRO_ENABLED;
 #endif
+	if (vi->ifp->if_capenable & IFCAP_HWRXTSTMP)
+		rxq->iq.flags |= IQ_RX_TIMESTAMP;
 	rxq->ifp = vi->ifp;
 
 	children = SYSCTL_CHILDREN(oid);



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201903272143.x2RLhdV3051339>