From d81b03b75c5e23f78f622deedd4176713b094e07 Mon Sep 17 00:00:00 2001 From: shurd Date: Wed, 27 Dec 2017 19:14:15 +0000 Subject: [PATCH] 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 --- sys/net/iflib.c | 1 - 1 file changed, 1 deletion(-) diff --git a/sys/net/iflib.c b/sys/net/iflib.c index 948a0227323f..269fe7cebba6 100644 --- a/sys/net/iflib.c +++ b/sys/net/iflib.c @@ -5174,7 +5174,6 @@ iflib_irq_set_affinity(if_ctx_t ctx, int irq, iflib_intr_type_t type, int qid, if (cpuid > ctx->ifc_cpuid_highest) ctx->ifc_cpuid_highest = cpuid; #endif - MPASS(gtask->gt_taskqueue != NULL); return 0; }