svn commit: r281772 - head/sys/dev/ixgbe

Marcelo Araujo araujo at FreeBSD.org
Mon Apr 20 17:21:16 UTC 2015


Author: araujo (ports committer)
Date: Mon Apr 20 17:21:15 2015
New Revision: 281772
URL: https://svnweb.freebsd.org/changeset/base/281772

Log:
  Remove unused variable.
  
  Differential Revision:	D2331
  Reviewed by:		erj

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

Modified: head/sys/dev/ixgbe/if_ix.c
==============================================================================
--- head/sys/dev/ixgbe/if_ix.c	Mon Apr 20 16:48:21 2015	(r281771)
+++ head/sys/dev/ixgbe/if_ix.c	Mon Apr 20 17:21:15 2015	(r281772)
@@ -1195,10 +1195,8 @@ ixgbe_handle_que(void *context, int pend
 	struct adapter  *adapter = que->adapter;
 	struct tx_ring  *txr = que->txr;
 	struct ifnet    *ifp = adapter->ifp;
-	bool		more;
 
 	if (ifp->if_drv_flags & IFF_DRV_RUNNING) {
-		more = ixgbe_rxeof(que);
 		IXGBE_TX_LOCK(txr);
 		ixgbe_txeof(txr);
 #ifndef IXGBE_LEGACY_TX


More information about the svn-src-all mailing list