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
This commit is contained in:
Stephen Hurd 2017-12-27 19:14:15 +00:00
parent 51268c3852
commit ca03863c85
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=327244

View File

@ -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;
}