Deleted Added
full compact
27c27
< * $FreeBSD: head/sys/kern/kern_poll.c 102052 2002-08-18 07:05:00Z sobomax $
---
> * $FreeBSD: head/sys/kern/kern_poll.c 111888 2003-03-04 23:19:55Z jlemon $
50c50
< void netisr_pollmore(void);
---
> static void netisr_pollmore(void);
52d51
< void init_device_poll(void); /* init routine */
186,189c185
< /*
< * register relevant netisr. Called from kern_clock.c:
< */
< void
---
> static void
192c188,190
< register_netisr(NETISR_POLL, netisr_poll);
---
>
> netisr_register(NETISR_POLL, (netisr_t *)netisr_poll, NULL);
> netisr_register(NETISR_POLLMORE, (netisr_t *)netisr_pollmore, NULL);
193a192
> SYSINIT(device_poll, SI_SUB_CLOCKS, SI_ORDER_MIDDLE, init_device_poll, NULL)
194a194
>
239c239
< schednetisr(NETISR_POLL);
---
> schednetisrbits(1 << NETISR_POLL | 1 << NETISR_POLLMORE);
292c292
< schednetisr(NETISR_POLL);
---
> schednetisrbits(1 << NETISR_POLL | 1 << NETISR_POLLMORE);
294c294
< return ;
---
> return;
321c321
< schednetisr(NETISR_POLL);
---
> schednetisrbits(1 << NETISR_POLL | 1 << NETISR_POLLMORE);