Index: intr.h =================================================================== RCS file: /cvs/src/sys/arch/sparc64/include/intr.h,v retrieving revision 1.19 diff -u -p -r1.19 intr.h --- intr.h 13 Jun 2016 01:08:13 -0000 1.19 +++ intr.h 13 Jun 2016 04:15:47 -0000 @@ -69,7 +69,7 @@ void intr_establish(int, struct intrh #define IPL_NONE 0 /* nothing */ #define IPL_SOFTINT 1 /* softint */ #define IPL_SOFTCLOCK 1 /* timeouts */ -#define IPL_SOFTNET 1 /* protocol stack */ +#define IPL_SOFTNET 2 /* protocol stack */ #define IPL_BIO PIL_BIO /* block I/O */ #define IPL_NET PIL_NET /* network */ #define IPL_SOFTTTY 4 /* delayed terminal handling */ @@ -84,7 +84,6 @@ void intr_establish(int, struct intrh #define IPL_HIGH PIL_HIGH /* everything */ #define spl0() _spl(IPL_NONE) -#define splsoftint() _splraise(IPL_SOFTINT) #define splsoftclock() _splraise(IPL_SOFTCLOCK) #define splsoftnet() _splraise(IPL_SOFTNET) #define splbio() _splraise(IPL_BIO)