Don't include <rump/rumpvnode_if.h> from rump.h. It's not needed

unless you're doing something special, but requires register_t.
Adjust the few places which actually need rumpvnode_if.h.
This commit is contained in:
pooka 2016-01-25 11:45:57 +00:00
parent 6cd39ddb85
commit d35b86acad
6 changed files with 11 additions and 7 deletions

View File

@ -1,4 +1,4 @@
/* $NetBSD: p2k.c,v 1.67 2016/01/23 16:39:31 christos Exp $ */
/* $NetBSD: p2k.c,v 1.68 2016/01/25 11:45:58 pooka Exp $ */
/*
* Copyright (c) 2007, 2008, 2009 Antti Kantee. All Rights Reserved.
@ -58,6 +58,7 @@
#include <stdio.h>
#include <rump/rump.h>
#include <rump/rumpvnode_if.h>
#include <rump/p2k.h>
#include <rump/ukfs.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: ukfs.c,v 1.58 2015/06/17 00:15:26 christos Exp $ */
/* $NetBSD: ukfs.c,v 1.59 2016/01/25 11:45:57 pooka Exp $ */
/*
* Copyright (c) 2007, 2008, 2009 Antti Kantee. All Rights Reserved.
@ -61,6 +61,7 @@
#include <rump/ukfs.h>
#include <rump/rump.h>
#include <rump/rumpvnode_if.h>
#include <rump/rump_syscalls.h>
#include "ukfs_int_disklabel.h"

View File

@ -1,4 +1,4 @@
/* $NetBSD: ttyserv.c,v 1.2 2010/06/24 13:03:05 hannken Exp $ */
/* $NetBSD: ttyserv.c,v 1.3 2016/01/25 11:45:58 pooka Exp $ */
/*
* Copyright (c) 2009, 2010 Antti Kantee. All Rights Reserved.
@ -37,6 +37,7 @@
#include <dev/pud/pud_msgif.h>
#include <rump/rump.h>
#include <rump/rumpvnode_if.h>
#include <assert.h>
#include <err.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: umserv.c,v 1.2 2010/06/24 13:03:05 hannken Exp $ */
/* $NetBSD: umserv.c,v 1.3 2016/01/25 11:45:58 pooka Exp $ */
/*
* Copyright (c) 2009 Antti Kantee. All Rights Reserved.
@ -47,6 +47,7 @@
#include <dev/pud/pud_msgif.h>
#include <rump/rump.h>
#include <rump/rumpvnode_if.h>
#include <assert.h>
#include <err.h>

View File

@ -1,4 +1,4 @@
/* $NetBSD: rump.h,v 1.64 2015/11/01 12:34:28 pooka Exp $ */
/* $NetBSD: rump.h,v 1.65 2016/01/25 11:45:57 pooka Exp $ */
/*
* Copyright (c) 2007-2011 Antti Kantee. All Rights Reserved.
@ -62,7 +62,6 @@ typedef struct prop_dictionary *prop_dictionary_t;
typedef RUMP_REGISTER_T register_t;
#endif
#include <rump/rumpvnode_if.h>
#include <rump/rumpdefs.h>
/* rumpkern */

View File

@ -1,4 +1,4 @@
/* $NetBSD: t_p2kifs.c,v 1.4 2014/02/07 15:29:23 hannken Exp $ */
/* $NetBSD: t_p2kifs.c,v 1.5 2016/01/25 11:45:57 pooka Exp $ */
/*-
* Copyright (c) 2010 The NetBSD Foundation, Inc.
@ -32,6 +32,7 @@
#include <sys/sysctl.h>
#include <rump/rump.h>
#include <rump/rumpvnode_if.h>
#include <rump/rump_syscalls.h>
#include <atf-c.h>