diff options
Diffstat (limited to 'sys')
-rw-r--r-- | sys/conf/options | 2 | ||||
-rw-r--r-- | sys/dev/asmc/asmc.c | 2 | ||||
-rw-r--r-- | sys/kern/kern_intr.c | 1 |
3 files changed, 4 insertions, 1 deletions
diff --git a/sys/conf/options b/sys/conf/options index 4133408..8d2a521 100644 --- a/sys/conf/options +++ b/sys/conf/options @@ -760,7 +760,7 @@ XBOX opt_xbox.h XFS # Interrupt filtering -INTR_FILTER opt_global.h +INTR_FILTER #Disable code to dispatch tcp offloading TCP_OFFLOAD_DISABLE opt_inet.h diff --git a/sys/dev/asmc/asmc.c b/sys/dev/asmc/asmc.c index 81c9a1c..5a9114d 100644 --- a/sys/dev/asmc/asmc.c +++ b/sys/dev/asmc/asmc.c @@ -35,6 +35,8 @@ #include <sys/cdefs.h> __FBSDID("$FreeBSD$"); +#include "opt_intr_filter.h" + #include <sys/param.h> #include <sys/bus.h> #include <sys/conf.h> diff --git a/sys/kern/kern_intr.c b/sys/kern/kern_intr.c index 6bd434d..16bd42a 100644 --- a/sys/kern/kern_intr.c +++ b/sys/kern/kern_intr.c @@ -28,6 +28,7 @@ __FBSDID("$FreeBSD$"); #include "opt_ddb.h" +#include "opt_intr_filter.h" #include <sys/param.h> #include <sys/bus.h> |