Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 25 Jun 2020 20:43:22 +0000 (UTC)
From:      Vincenzo Maffione <vmaffione@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r362633 - head/sys/net
Message-ID:  <202006252043.05PKhMHH021069@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



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