Deleted Added
full compact
39c39
< * $FreeBSD: head/sys/netgraph/ng_tty.c 59728 2000-04-28 17:09:00Z julian $
---
> * $FreeBSD: head/sys/netgraph/ng_tty.c 65557 2000-09-07 01:33:02Z jasone $
79a80
> #include <sys/bus.h>
663,670d663
< #ifdef __i386__
< /* Insure the soft net "engine" can't run during spltty code */
< s = splhigh();
< tty_imask |= softnet_imask; /* spltty() block spl[soft]net() */
< net_imask |= softtty_imask; /* splimp() block splsofttty() */
< net_imask |= tty_imask; /* splimp() block spltty() */
< update_intr_masks();
< splx(s);
672,676d664
< if (bootverbose)
< log(LOG_DEBUG, "new masks: bio %x, tty %x, net %x\n",
< bio_imask, tty_imask, net_imask);
< #endif
<