From c65f514a40444b17ab08043e325945bfc53648d4 Mon Sep 17 00:00:00 2001 From: pooka Date: Mon, 13 Oct 2008 18:03:53 +0000 Subject: [PATCH] Add uid_init() I managed to miss earlier. --- sys/rump/librump/rumpkern/rump.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/sys/rump/librump/rumpkern/rump.c b/sys/rump/librump/rumpkern/rump.c index 3715567ee280..3ef49b8dc032 100644 --- a/sys/rump/librump/rumpkern/rump.c +++ b/sys/rump/librump/rumpkern/rump.c @@ -1,4 +1,4 @@ -/* $NetBSD: rump.c,v 1.67 2008/10/13 16:20:09 pooka Exp $ */ +/* $NetBSD: rump.c,v 1.68 2008/10/13 18:03:53 pooka Exp $ */ /* * Copyright (c) 2007 Antti Kantee. All Rights Reserved. @@ -41,6 +41,7 @@ #include #include #include +#include #include #include #include @@ -159,6 +160,7 @@ _rump_init(int rump_version) callout_startup(); callout_init_cpu(&rump_cpu); + uid_init(); percpu_init(); fd_sys_init(); module_init();