Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/rump/librump rump: Move vnode_if.c from rumpkern to rump...



details:   https://anonhg.NetBSD.org/src/rev/e2146c68f85e
branches:  trunk
changeset: 374421:e2146c68f85e
user:      riastradh <riastradh%NetBSD.org@localhost>
date:      Sat Apr 22 13:54:59 2023 +0000

description:
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.

diffstat:

 sys/rump/librump/rumpkern/Makefile.rumpkern |  7 +------
 sys/rump/librump/rumpvfs/Makefile.rumpvfs   |  5 ++++-
 2 files changed, 5 insertions(+), 7 deletions(-)

diffs (40 lines):

diff -r 5ec3d260323a -r e2146c68f85e sys/rump/librump/rumpkern/Makefile.rumpkern
--- a/sys/rump/librump/rumpkern/Makefile.rumpkern       Sat Apr 22 13:54:19 2023 +0000
+++ b/sys/rump/librump/rumpkern/Makefile.rumpkern       Sat Apr 22 13:54:59 2023 +0000
@@ -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
 
diff -r 5ec3d260323a -r e2146c68f85e sys/rump/librump/rumpvfs/Makefile.rumpvfs
--- a/sys/rump/librump/rumpvfs/Makefile.rumpvfs Sat Apr 22 13:54:19 2023 +0000
+++ b/sys/rump/librump/rumpvfs/Makefile.rumpvfs Sat Apr 22 13:54:59 2023 +0000
@@ -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    \



Home | Main Index | Thread Index | Old Index