aboutsummaryrefslogtreecommitdiff
path: root/sys/fs/procfs_subr.c
diff options
context:
space:
mode:
Diffstat (limited to 'sys/fs/procfs_subr.c')
-rw-r--r--sys/fs/procfs_subr.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/sys/fs/procfs_subr.c b/sys/fs/procfs_subr.c
index be93dd0..c1d77ba 100644
--- a/sys/fs/procfs_subr.c
+++ b/sys/fs/procfs_subr.c
@@ -28,6 +28,7 @@
*/
#include <sys/panic.h>
+#include <sys/intr.h>
#include <machine/cpu.h>
#include <fs/procfs.h>
#include <vm/vm.h>
@@ -106,4 +107,6 @@ procfs_populate(void)
memstat = procfs_alloc_entry();
memstat->read = procfs_memstat_read;
procfs_add_entry("memstat", memstat);
+
+ intr_init_proc();
}