View | Details | Raw Unified | Return to bug 70988
Collapse All | Expand All

(-)netisr.c (-2 / +2 lines)
Lines 220-228 netisr_queue(int num, struct mbuf *m) Link Here
220
	}
220
	}
221
	isrstat.isrs_queued++;
221
	isrstat.isrs_queued++;
222
	if (!IF_HANDOFF(ni->ni_queue, m, NULL))
222
	if (!IF_HANDOFF(ni->ni_queue, m, NULL))
223
		return (0);
223
		return (1);
224
	schednetisr(num);
224
	schednetisr(num);
225
	return (1);
225
	return (0);
226
}
226
}
227
227
228
static void
228
static void

Return to bug 70988