View | Details | Raw Unified | Return to bug 34842 | Differences between
and this patch

Collapse All | Expand All

(-)/usr/src/sys/net/if_tap.c (-2 / +2 lines)
Lines 467-476 Link Here
467
	/*
467
	/*
468
	 * do not junk pending output if we are in VMnet mode.
468
	 * do not junk pending output if we are in VMnet mode.
469
	 * XXX: can this do any harm because of queue overflow?
469
	 * XXX: can this do any harm because of queue overflow?
470
	 * Ummm, yes...
470
	 */
471
	 */
471
472
472
	if (((tp->tap_flags & TAP_VMNET) == 0) && 
473
	if ((tp->tap_flags & TAP_READY) != TAP_READY) {
473
	    ((tp->tap_flags & TAP_READY) != TAP_READY)) {
474
		struct mbuf	*m = NULL;
474
		struct mbuf	*m = NULL;
475
475
476
		TAPDEBUG("%s%d not ready. minor = %#x, tap_flags = 0x%x\n",
476
		TAPDEBUG("%s%d not ready. minor = %#x, tap_flags = 0x%x\n",

Return to bug 34842