From fc8849c40a3df5420d6f4a9e4555945222243217 Mon Sep 17 00:00:00 2001 From: wrstuden Date: Sat, 29 May 2004 23:49:31 +0000 Subject: [PATCH] unionfs can use layerfs_snapshot() too. --- sys/fs/union/union_vfsops.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sys/fs/union/union_vfsops.c b/sys/fs/union/union_vfsops.c index 76c0cf8c82fc..e3a46c52e9c0 100644 --- a/sys/fs/union/union_vfsops.c +++ b/sys/fs/union/union_vfsops.c @@ -1,4 +1,4 @@ -/* $NetBSD: union_vfsops.c,v 1.19 2004/05/25 14:54:57 hannken Exp $ */ +/* $NetBSD: union_vfsops.c,v 1.20 2004/05/29 23:49:31 wrstuden Exp $ */ /* * Copyright (c) 1994 The Regents of the University of California. @@ -77,7 +77,7 @@ */ #include -__KERNEL_RCSID(0, "$NetBSD: union_vfsops.c,v 1.19 2004/05/25 14:54:57 hannken Exp $"); +__KERNEL_RCSID(0, "$NetBSD: union_vfsops.c,v 1.20 2004/05/29 23:49:31 wrstuden Exp $"); #include #include @@ -638,6 +638,6 @@ struct vfsops union_vfsops = { NULL, NULL, /* vfs_mountroot */ union_checkexp, - (int (*)(struct mount *, struct vnode *, struct timespec *)) eopnotsupp, + layerfs_snapshot, union_vnodeopv_descs, };