Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 27 Dec 2017 19:14:15 +0000 (UTC)
From:      Stephen Hurd <shurd@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r327244 - head/sys/net
Message-ID:  <201712271914.vBRJEFnt056769@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: shurd
Date: Wed Dec 27 19:14:15 2017
New Revision: 327244
URL: https://svnweb.freebsd.org/changeset/base/327244

Log:
  Remove assertion that's not true for !EARLY_AP_STARTUP
  
  gtask->gt_taskqueue is NULL when EARLY_AP_STARTUP is not enabled.
  Remove assertion to allow this config to work.
  
  Reported by:	oleg
  Sponsored by:	Limelight Networks

Modified:
  head/sys/net/iflib.c

Modified: head/sys/net/iflib.c
==============================================================================
--- head/sys/net/iflib.c	Wed Dec 27 19:13:50 2017	(r327243)
+++ head/sys/net/iflib.c	Wed Dec 27 19:14:15 2017	(r327244)
@@ -5174,7 +5174,6 @@ iflib_irq_set_affinity(if_ctx_t ctx, int irq, iflib_in
 	if (cpuid > ctx->ifc_cpuid_highest)
 		ctx->ifc_cpuid_highest = cpuid;
 #endif
-	MPASS(gtask->gt_taskqueue != NULL);
 	return 0;
 }
 



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