--- Gnu-Mach/linux/dev/kernel/softirq.c 2020/09/02 04:41:39 1.1 +++ Gnu-Mach/linux/dev/kernel/softirq.c 2020/09/02 04:45:57 1.1.1.2 @@ -13,16 +13,18 @@ #include #include +#include + int bh_mask_count[32]; -unsigned long bh_active = 0; -unsigned long bh_mask = 0; +unsigned int bh_active = 0; +unsigned int bh_mask = 0; void (*bh_base[32]) (void); void linux_soft_intr (void) { - unsigned long active; - unsigned long mask, left; + unsigned int active; + unsigned int mask, left; void (**bh) (void); sti (); @@ -42,5 +44,5 @@ linux_soft_intr (void) } return; bad_bh: - printk ("linux_soft_intr:bad interrupt handler entry %08lx\n", mask); + printk ("linux_soft_intr:bad interrupt handler entry %08x\n", mask); }