Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 30 Nov 2012 23:06:27 +0000 (UTC)
From:      Jack F Vogel <jfv@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r243724 - head/sys/dev/ixgbe
Message-ID:  <201211302306.qAUN6Ris072388@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: jfv
Date: Fri Nov 30 23:06:27 2012
New Revision: 243724
URL: http://svnweb.freebsd.org/changeset/base/243724

Log:
  Patch #5 Cleanup unused IEEE1588 code fragments, the day may
  come when this feature gets implemented, but its not here yet
  and I see no reason to leave this laying around.

Modified:
  head/sys/dev/ixgbe/ixgbe.c
  head/sys/dev/ixgbe/ixgbe.h

Modified: head/sys/dev/ixgbe/ixgbe.c
==============================================================================
--- head/sys/dev/ixgbe/ixgbe.c	Fri Nov 30 23:03:51 2012	(r243723)
+++ head/sys/dev/ixgbe/ixgbe.c	Fri Nov 30 23:06:27 2012	(r243724)
@@ -47,7 +47,7 @@ int             ixgbe_display_debug_stat
 /*********************************************************************
  *  Driver version
  *********************************************************************/
-char ixgbe_driver_version[] = "2.5.0 - 4";
+char ixgbe_driver_version[] = "2.5.0 - 5";
 
 /*********************************************************************
  *  PCI Device ID Table
@@ -1830,12 +1830,6 @@ ixgbe_xmit(struct tx_ring *txr, struct m
 	} else if (ixgbe_tx_ctx_setup(txr, m_head))
 		olinfo_status |= IXGBE_TXD_POPTS_TXSM << 8;
 
-#ifdef IXGBE_IEEE1588
-        /* This is changing soon to an mtag detection */
-        if (we detect this mbuf has a TSTAMP mtag)
-                cmd_type_len |= IXGBE_ADVTXD_MAC_TSTAMP;
-#endif
-
 #ifdef IXGBE_FDIR
 	/* Do the flow director magic */
 	if ((txr->atr_sample) && (!adapter->fdir_reinit)) {

Modified: head/sys/dev/ixgbe/ixgbe.h
==============================================================================
--- head/sys/dev/ixgbe/ixgbe.h	Fri Nov 30 23:03:51 2012	(r243723)
+++ head/sys/dev/ixgbe/ixgbe.h	Fri Nov 30 23:06:27 2012	(r243724)
@@ -89,10 +89,6 @@
 #include <sys/smp.h>
 #include <machine/smp.h>
 
-#ifdef IXGBE_IEEE1588
-#include <sys/ieee1588.h>
-#endif
-
 #include "ixgbe_api.h"
 
 /* Tunables */



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