Module Name:    src
Committed By:   riastradh
Date:           Sat Apr 22 13:54:59 UTC 2023

Modified Files:
        src/sys/rump/librump/rumpkern: Makefile.rumpkern
        src/sys/rump/librump/rumpvfs: Makefile.rumpvfs

Log Message:
rump: Move vnode_if.c from rumpkern to rumpvfs.

This has become increasingly less of a `fully dynamic interface', and
the need for it in the rest of sys/kern/ has been obviated, so let's
put it where it belongs in rumpvfs.


To generate a diff of this commit:
cvs rdiff -u -r1.189 -r1.190 src/sys/rump/librump/rumpkern/Makefile.rumpkern
cvs rdiff -u -r1.50 -r1.51 src/sys/rump/librump/rumpvfs/Makefile.rumpvfs

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/rump/librump/rumpkern/Makefile.rumpkern
diff -u src/sys/rump/librump/rumpkern/Makefile.rumpkern:1.189 src/sys/rump/librump/rumpkern/Makefile.rumpkern:1.190
--- src/sys/rump/librump/rumpkern/Makefile.rumpkern:1.189	Sat Apr 22 13:54:19 2023
+++ src/sys/rump/librump/rumpkern/Makefile.rumpkern	Sat Apr 22 13:54:59 2023
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile.rumpkern,v 1.189 2023/04/22 13:54:19 riastradh Exp $
+#	$NetBSD: Makefile.rumpkern,v 1.190 2023/04/22 13:54:59 riastradh Exp $
 #
 
 IOCONFDIR:=	${.PARSEDIR}
@@ -149,11 +149,6 @@ SRCS+=	secmodel_suser.c
 SRCS+=	secmodel_extensions.c
 SRCS+=	secmodel_extensions_rump.c	# stubs
 
-# the funny bit.  this doesn't really belong here, but helps with the
-# needs of kern_descrip.c.  And since it's a fully dynamic interface,
-# it doesn't pull in other gunk.
-SRCS+=	vnode_if.c
-
 # sys/dev
 SRCS+=	clock_subr.c
 

Index: src/sys/rump/librump/rumpvfs/Makefile.rumpvfs
diff -u src/sys/rump/librump/rumpvfs/Makefile.rumpvfs:1.50 src/sys/rump/librump/rumpvfs/Makefile.rumpvfs:1.51
--- src/sys/rump/librump/rumpvfs/Makefile.rumpvfs:1.50	Sat May 16 18:31:52 2020
+++ src/sys/rump/librump/rumpvfs/Makefile.rumpvfs	Sat Apr 22 13:54:59 2023
@@ -1,4 +1,4 @@
-#	$NetBSD: Makefile.rumpvfs,v 1.50 2020/05/16 18:31:52 christos Exp $
+#	$NetBSD: Makefile.rumpvfs,v 1.51 2023/04/22 13:54:59 riastradh Exp $
 #
 
 .include "${RUMPTOP}/Makefile.rump"
@@ -30,6 +30,9 @@ SRCS+=	rumpvfs_syscalls.c
 # sys/kern I/O
 SRCS+=	kern_physio.c
 
+# VOP_*
+SRCS+=	vnode_if.c
+
 # sys/kern vfs
 SRCS+=	vfs_acl.c vfs_bio.c vfs_cache.c vfs_cwd.c vfs_dirhash.c 	\
 	vfs_getcwd.c vfs_hooks.c vfs_init.c vfs_lockf.c vfs_lookup.c	\

Reply via email to