svn commit: r362633 - head/sys/net

Vincenzo Maffione vmaffione at FreeBSD.org
Thu Jun 25 20:43:22 UTC 2020


Author: vmaffione
Date: Thu Jun 25 20:43:21 2020
New Revision: 362633
URL: https://svnweb.freebsd.org/changeset/base/362633

Log:
  iflib: fix compilation issue introduced in r362621
  
  The ifp local variable is useful even without netmap
  and altq, as it is used to check for IFF_DRV_RUNNING.
  
  MFC after:	2 weeks

Modified:
  head/sys/net/iflib.c

Modified: head/sys/net/iflib.c
==============================================================================
--- head/sys/net/iflib.c	Thu Jun 25 20:31:06 2020	(r362632)
+++ head/sys/net/iflib.c	Thu Jun 25 20:43:21 2020	(r362633)
@@ -3751,9 +3751,7 @@ _task_fn_tx(void *context)
 {
 	iflib_txq_t txq = context;
 	if_ctx_t ctx = txq->ift_ctx;
-#if defined(ALTQ) || defined(DEV_NETMAP)
 	if_t ifp = ctx->ifc_ifp;
-#endif
 	int abdicate = ctx->ifc_sysctl_tx_abdicate;
 
 #ifdef IFLIB_DIAGNOSTICS


More information about the svn-src-all mailing list