From 8fe81e10f2bdcc5a80f43d373bf37cef2a2b7c46 Mon Sep 17 00:00:00 2001 From: hannken Date: Tue, 5 Feb 2019 09:54:36 +0000 Subject: Prepare the implementation of the ZFS control directory ".zfs". - Move the stub routines from zfs_stub.c to zfs_ctldir.c and remove now empty file zfs_stub.c - Add stub routines for zfsctl_loadvnode() to initialize control nodes and zfsctl_snapshot() to retrieve ".zfs/snapshot". - Add an initial vnode operations vector for control nodes. - Implement lookup into ".zfs" and lookup ".." from ".zfs/snapshot/". - Change nodeid of mounted snapshots to the snapshot object id. - Respect "-u" flag to "zfs rename ...". --- sys/modules/zfs/Makefile.zfsmod | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'sys/modules') diff --git a/sys/modules/zfs/Makefile.zfsmod b/sys/modules/zfs/Makefile.zfsmod index d186e8a9ff5..f653778a102 100644 --- a/sys/modules/zfs/Makefile.zfsmod +++ b/sys/modules/zfs/Makefile.zfsmod @@ -1,4 +1,4 @@ -# $NetBSD: Makefile.zfsmod,v 1.8 2018/08/18 11:57:57 christos Exp $ +# $NetBSD: Makefile.zfsmod,v 1.9 2019/02/05 09:54:36 hannken Exp $ ZFSDIR= ${S}/../external/cddl/osnet @@ -113,10 +113,6 @@ SRCS+= zrlock.c SRCS+= zvol.c SRCS+= zfs_acl.c -.PATH: ${ZFSDIR}/sys/kern - -SRCS+= zfs_stub.c - WARNS= 0 CWARNFLAGS+= -Wall -- cgit