2008-12-05 16:05:37 +03:00
|
|
|
/* $NetBSD: overlay_vfsops.c,v 1.54 2008/12/05 13:05:38 ad Exp $ */
|
2000-01-20 22:06:13 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Copyright (c) 1999, 2000 National Aeronautics & Space Administration
|
|
|
|
* All rights reserved.
|
|
|
|
*
|
|
|
|
* This software was written by William Studenmund of the
|
2001-06-07 17:44:46 +04:00
|
|
|
* Numerical Aerospace Simulation Facility, NASA Ames Research Center.
|
2000-01-20 22:06:13 +03:00
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
2000-03-14 02:52:25 +03:00
|
|
|
* 3. Neither the name of the National Aeronautics & Space Administration
|
2000-01-20 22:06:13 +03:00
|
|
|
* nor the names of its contributors may be used to endorse or promote
|
|
|
|
* products derived from this software without specific prior written
|
|
|
|
* permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE NATIONAL AERONAUTICS & SPACE ADMINISTRATION
|
|
|
|
* ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
|
|
|
|
* TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
|
|
|
|
* PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE ADMINISTRATION OR CONTRIB-
|
|
|
|
* UTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY,
|
|
|
|
* OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
* POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
*/
|
|
|
|
/*
|
|
|
|
* Copyright (c) 1992, 1993, 1995
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
|
|
|
*
|
|
|
|
* This code is derived from software donated to Berkeley by
|
|
|
|
* Jan-Simon Pendry.
|
|
|
|
*
|
|
|
|
* Redistribution and use in source and binary forms, with or without
|
|
|
|
* modification, are permitted provided that the following conditions
|
|
|
|
* are met:
|
|
|
|
* 1. Redistributions of source code must retain the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer.
|
|
|
|
* 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
* notice, this list of conditions and the following disclaimer in the
|
|
|
|
* documentation and/or other materials provided with the distribution.
|
2003-08-07 20:26:28 +04:00
|
|
|
* 3. Neither the name of the University nor the names of its contributors
|
2000-01-20 22:06:13 +03:00
|
|
|
* may be used to endorse or promote products derived from this software
|
|
|
|
* without specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
|
|
|
|
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
|
|
|
|
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
|
|
|
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
|
|
|
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
|
|
|
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
|
|
|
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
|
|
|
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
|
|
|
* SUCH DAMAGE.
|
|
|
|
*
|
|
|
|
* from: Id: lofs_vfsops.c,v 1.9 1992/05/30 10:26:24 jsp Exp
|
|
|
|
* from: @(#)lofs_vfsops.c 1.2 (Berkeley) 6/18/92
|
|
|
|
* @(#)null_vfsops.c 8.7 (Berkeley) 5/14/95
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
2001-06-07 17:44:46 +04:00
|
|
|
* Overlay Layer
|
|
|
|
* (See overlay_vnops.c for a description of what this does.)
|
2000-01-20 22:06:13 +03:00
|
|
|
*/
|
|
|
|
|
2001-11-10 16:33:40 +03:00
|
|
|
#include <sys/cdefs.h>
|
2008-12-05 16:05:37 +03:00
|
|
|
__KERNEL_RCSID(0, "$NetBSD: overlay_vfsops.c,v 1.54 2008/12/05 13:05:38 ad Exp $");
|
2001-11-10 16:33:40 +03:00
|
|
|
|
2000-01-20 22:06:13 +03:00
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/systm.h>
|
Dynamic sysctl.
Gone are the old kern_sysctl(), cpu_sysctl(), hw_sysctl(),
vfs_sysctl(), etc, routines, along with sysctl_int() et al. Now all
nodes are registered with the tree, and nodes can be added (or
removed) easily, and I/O to and from the tree is handled generically.
Since the nodes are registered with the tree, the mapping from name to
number (and back again) can now be discovered, instead of having to be
hard coded. Adding new nodes to the tree is likewise much simpler --
the new infrastructure handles almost all the work for simple types,
and just about anything else can be done with a small helper function.
All existing nodes are where they were before (numerically speaking),
so all existing consumers of sysctl information should notice no
difference.
PS - I'm sorry, but there's a distinct lack of documentation at the
moment. I'm working on sysctl(3/8/9) right now, and I promise to
watch out for buses.
2003-12-04 22:38:21 +03:00
|
|
|
#include <sys/sysctl.h>
|
2000-01-20 22:06:13 +03:00
|
|
|
#include <sys/time.h>
|
|
|
|
#include <sys/proc.h>
|
|
|
|
#include <sys/vnode.h>
|
|
|
|
#include <sys/mount.h>
|
|
|
|
#include <sys/namei.h>
|
|
|
|
#include <sys/malloc.h>
|
2008-05-10 06:26:09 +04:00
|
|
|
#include <sys/module.h>
|
2000-01-20 22:06:13 +03:00
|
|
|
#include <miscfs/overlay/overlay.h>
|
|
|
|
#include <miscfs/genfs/layer_extern.h>
|
|
|
|
|
2008-12-05 16:05:37 +03:00
|
|
|
MODULE(MODULE_CLASS_VFS, overlay, "layerfs");
|
2008-05-10 06:26:09 +04:00
|
|
|
|
2007-08-01 01:14:15 +04:00
|
|
|
VFS_PROTOS(ov);
|
2000-01-20 22:06:13 +03:00
|
|
|
|
2008-06-28 05:34:05 +04:00
|
|
|
static struct sysctllog *overlay_sysctl_log;
|
|
|
|
|
2000-01-20 22:06:13 +03:00
|
|
|
#define NOVERLAYNODECACHE 16
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Mount overlay layer
|
|
|
|
*/
|
|
|
|
int
|
2007-11-26 22:01:26 +03:00
|
|
|
ov_mount(struct mount *mp, const char *path, void *data, size_t *data_len)
|
2000-01-20 22:06:13 +03:00
|
|
|
{
|
2007-11-26 22:01:26 +03:00
|
|
|
struct lwp *l = curlwp;
|
2000-01-20 22:06:13 +03:00
|
|
|
int error = 0;
|
2007-07-12 23:35:32 +04:00
|
|
|
struct overlay_args *args = data;
|
2000-01-20 22:06:13 +03:00
|
|
|
struct vnode *lowerrootvp, *vp;
|
|
|
|
struct overlay_mount *nmp;
|
|
|
|
struct layer_mount *lmp;
|
|
|
|
|
|
|
|
#ifdef OVERLAYFS_DIAGNOSTIC
|
|
|
|
printf("ov_mount(mp = %p)\n", mp);
|
|
|
|
#endif
|
|
|
|
|
2007-07-12 23:35:32 +04:00
|
|
|
if (*data_len < sizeof *args)
|
|
|
|
return EINVAL;
|
|
|
|
|
2002-09-21 22:08:27 +04:00
|
|
|
if (mp->mnt_flag & MNT_GETARGS) {
|
|
|
|
lmp = MOUNTTOLAYERMOUNT(mp);
|
|
|
|
if (lmp == NULL)
|
|
|
|
return EIO;
|
2007-07-12 23:35:32 +04:00
|
|
|
args->la.target = NULL;
|
|
|
|
*data_len = sizeof *args;
|
|
|
|
return 0;
|
2002-09-21 22:08:27 +04:00
|
|
|
}
|
2000-01-20 22:06:13 +03:00
|
|
|
|
|
|
|
/*
|
Apply the NFS exports list rototill patch:
- Remove all NFS related stuff from file system specific code.
- Drop the vfs_checkexp hook and generalize it in the new nfs_check_export
function, thus removing redundancy from all file systems.
- Move all NFS export-related stuff from kern/vfs_subr.c to the new
file sys/nfs/nfs_export.c. The former was becoming large and its code
is always compiled, regardless of the build options. Using the latter,
the code is only compiled in when NFSSERVER is enabled. While doing this,
also make some functions in nfs_subs.c conditional to NFSSERVER.
- Add a new command in nfssvc(2), called NFSSVC_SETEXPORTSLIST, that takes a
path and a set of export entries. At the moment it can only clear the
exports list or append entries, one by one, but it is done in a way that
allows setting the whole set of entries atomically in the future (see the
comment in mountd_set_exports_list or in doc/TODO).
- Change mountd(8) to use the nfssvc(2) system call instead of mount(2) so
that it becomes file system agnostic. In fact, all this whole thing was
done to remove a 'XXX' block from this utility!
- Change the mount*, newfs and fsck* userland utilities to not deal with NFS
exports initialization; done internally by the kernel when initializing
the NFS support for each file system.
- Implement an interface for VFS (called VFS hooks) so that several kernel
subsystems can run arbitrary code upon receipt of specific VFS events.
At the moment, this only provides support for unmount and is used to
destroy NFS exports lists from the file systems being unmounted, though it
has room for extension.
Thanks go to yamt@, chs@, thorpej@, wrstuden@ and others for their comments
and advice in the development of this patch.
2005-09-23 16:10:31 +04:00
|
|
|
* Update is not supported
|
2000-01-20 22:06:13 +03:00
|
|
|
*/
|
Apply the NFS exports list rototill patch:
- Remove all NFS related stuff from file system specific code.
- Drop the vfs_checkexp hook and generalize it in the new nfs_check_export
function, thus removing redundancy from all file systems.
- Move all NFS export-related stuff from kern/vfs_subr.c to the new
file sys/nfs/nfs_export.c. The former was becoming large and its code
is always compiled, regardless of the build options. Using the latter,
the code is only compiled in when NFSSERVER is enabled. While doing this,
also make some functions in nfs_subs.c conditional to NFSSERVER.
- Add a new command in nfssvc(2), called NFSSVC_SETEXPORTSLIST, that takes a
path and a set of export entries. At the moment it can only clear the
exports list or append entries, one by one, but it is done in a way that
allows setting the whole set of entries atomically in the future (see the
comment in mountd_set_exports_list or in doc/TODO).
- Change mountd(8) to use the nfssvc(2) system call instead of mount(2) so
that it becomes file system agnostic. In fact, all this whole thing was
done to remove a 'XXX' block from this utility!
- Change the mount*, newfs and fsck* userland utilities to not deal with NFS
exports initialization; done internally by the kernel when initializing
the NFS support for each file system.
- Implement an interface for VFS (called VFS hooks) so that several kernel
subsystems can run arbitrary code upon receipt of specific VFS events.
At the moment, this only provides support for unmount and is used to
destroy NFS exports lists from the file systems being unmounted, though it
has room for extension.
Thanks go to yamt@, chs@, thorpej@, wrstuden@ and others for their comments
and advice in the development of this patch.
2005-09-23 16:10:31 +04:00
|
|
|
if (mp->mnt_flag & MNT_UPDATE)
|
|
|
|
return EOPNOTSUPP;
|
2000-01-20 22:06:13 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Find lower node
|
|
|
|
*/
|
|
|
|
lowerrootvp = mp->mnt_vnodecovered;
|
2003-06-29 22:43:21 +04:00
|
|
|
if ((error = vget(lowerrootvp, LK_EXCLUSIVE | LK_RETRY)))
|
2000-01-20 22:06:13 +03:00
|
|
|
return (error);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* First cut at fixing up upper mount point
|
|
|
|
*/
|
|
|
|
nmp = (struct overlay_mount *) malloc(sizeof(struct overlay_mount),
|
|
|
|
M_UFSMNT, M_WAITOK); /* XXX */
|
2004-04-29 20:10:54 +04:00
|
|
|
memset(nmp, 0, sizeof(struct overlay_mount));
|
2000-01-20 22:06:13 +03:00
|
|
|
|
2002-07-30 11:40:07 +04:00
|
|
|
mp->mnt_data = nmp;
|
2000-01-20 22:06:13 +03:00
|
|
|
nmp->ovm_vfs = lowerrootvp->v_mount;
|
|
|
|
if (nmp->ovm_vfs->mnt_flag & MNT_LOCAL)
|
|
|
|
mp->mnt_flag |= MNT_LOCAL;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Make sure that the mount point is sufficiently initialized
|
|
|
|
* that the node create call will work.
|
|
|
|
*/
|
2000-06-10 22:27:01 +04:00
|
|
|
vfs_getnewfsid(mp);
|
2000-01-20 22:06:13 +03:00
|
|
|
|
|
|
|
nmp->ovm_size = sizeof (struct overlay_node);
|
|
|
|
nmp->ovm_tag = VT_OVERLAY;
|
|
|
|
nmp->ovm_bypass = layer_bypass;
|
|
|
|
nmp->ovm_alloc = layer_node_alloc; /* the default alloc is fine */
|
|
|
|
nmp->ovm_vnodeop_p = overlay_vnodeop_p;
|
2007-10-11 00:42:20 +04:00
|
|
|
mutex_init(&nmp->ovm_hashlock, MUTEX_DEFAULT, IPL_NONE);
|
2008-05-05 21:11:16 +04:00
|
|
|
nmp->ovm_node_hashtbl = hashinit(NOVERLAYNODECACHE, HASH_LIST, true,
|
|
|
|
&nmp->ovm_node_hash);
|
2000-01-20 22:06:13 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Fix up overlay node for root vnode
|
|
|
|
*/
|
|
|
|
error = layer_node_create(mp, lowerrootvp, &vp);
|
|
|
|
/*
|
|
|
|
* Make sure the fixup worked
|
|
|
|
*/
|
|
|
|
if (error) {
|
|
|
|
vput(lowerrootvp);
|
2008-05-05 21:11:16 +04:00
|
|
|
hashdone(nmp->ovm_node_hashtbl, HASH_LIST, nmp->ovm_node_hash);
|
2000-01-20 22:06:13 +03:00
|
|
|
free(nmp, M_UFSMNT); /* XXX */
|
|
|
|
return (error);
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
* Unlock the node
|
|
|
|
*/
|
|
|
|
VOP_UNLOCK(vp, 0);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Keep a held reference to the root vnode.
|
|
|
|
* It is vrele'd in ov_unmount.
|
|
|
|
*/
|
2007-10-11 00:42:20 +04:00
|
|
|
vp->v_vflag |= VV_ROOT;
|
2000-01-20 22:06:13 +03:00
|
|
|
nmp->ovm_rootvp = vp;
|
|
|
|
|
2007-07-12 23:35:32 +04:00
|
|
|
error = set_statvfs_info(path, UIO_USERSPACE, args->la.target,
|
2007-07-17 15:19:31 +04:00
|
|
|
UIO_USERSPACE, mp->mnt_op->vfs_name, mp, l);
|
2000-01-20 22:06:13 +03:00
|
|
|
#ifdef OVERLAYFS_DIAGNOSTIC
|
|
|
|
printf("ov_mount: lower %s, alias at %s\n",
|
|
|
|
mp->mnt_stat.f_mntfromname, mp->mnt_stat.f_mntonname);
|
|
|
|
#endif
|
2003-04-17 01:44:18 +04:00
|
|
|
return error;
|
2000-01-20 22:06:13 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Free reference to overlay layer
|
|
|
|
*/
|
|
|
|
int
|
2007-11-26 22:01:26 +03:00
|
|
|
ov_unmount(struct mount *mp, int mntflags)
|
2000-01-20 22:06:13 +03:00
|
|
|
{
|
|
|
|
struct vnode *overlay_rootvp = MOUNTTOOVERLAYMOUNT(mp)->ovm_rootvp;
|
2008-05-05 21:11:16 +04:00
|
|
|
struct overlay_mount *omp;
|
2000-01-20 22:06:13 +03:00
|
|
|
int error;
|
|
|
|
int flags = 0;
|
|
|
|
|
|
|
|
#ifdef OVERLAYFS_DIAGNOSTIC
|
|
|
|
printf("ov_unmount(mp = %p)\n", mp);
|
|
|
|
#endif
|
|
|
|
|
|
|
|
if (mntflags & MNT_FORCE)
|
|
|
|
flags |= FORCECLOSE;
|
|
|
|
|
2007-07-09 03:58:53 +04:00
|
|
|
if (overlay_rootvp->v_usecount > 1 && (mntflags & MNT_FORCE) == 0)
|
2000-01-20 22:06:13 +03:00
|
|
|
return (EBUSY);
|
|
|
|
if ((error = vflush(mp, overlay_rootvp, flags)) != 0)
|
|
|
|
return (error);
|
|
|
|
|
|
|
|
#ifdef OVERLAYFS_DIAGNOSTIC
|
|
|
|
vprint("alias root of lower", overlay_rootvp);
|
2005-02-27 01:58:54 +03:00
|
|
|
#endif
|
2000-01-20 22:06:13 +03:00
|
|
|
/*
|
2008-01-02 14:48:20 +03:00
|
|
|
* Blow it away for future re-use
|
2000-01-20 22:06:13 +03:00
|
|
|
*/
|
|
|
|
vgone(overlay_rootvp);
|
|
|
|
/*
|
|
|
|
* Finally, throw away the overlay_mount structure
|
|
|
|
*/
|
2008-05-05 21:11:16 +04:00
|
|
|
omp = mp->mnt_data;
|
|
|
|
mutex_destroy(&omp->ovm_hashlock);
|
|
|
|
hashdone(omp->ovm_node_hashtbl, HASH_LIST, omp->ovm_node_hash);
|
|
|
|
free(omp, M_UFSMNT); /* XXX */
|
2008-05-13 12:31:12 +04:00
|
|
|
mp->mnt_data = NULL;
|
2000-01-20 22:06:13 +03:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2001-01-22 15:17:35 +03:00
|
|
|
extern const struct vnodeopv_desc overlay_vnodeop_opv_desc;
|
2000-01-20 22:06:13 +03:00
|
|
|
|
2001-01-22 15:17:35 +03:00
|
|
|
const struct vnodeopv_desc * const ov_vnodeopv_descs[] = {
|
2000-01-20 22:06:13 +03:00
|
|
|
&overlay_vnodeop_opv_desc,
|
|
|
|
NULL,
|
|
|
|
};
|
|
|
|
|
|
|
|
struct vfsops overlay_vfsops = {
|
|
|
|
MOUNT_OVERLAY,
|
2007-07-12 23:35:32 +04:00
|
|
|
sizeof (struct overlay_args),
|
2000-01-20 22:06:13 +03:00
|
|
|
ov_mount,
|
|
|
|
layerfs_start,
|
|
|
|
ov_unmount,
|
|
|
|
layerfs_root,
|
|
|
|
layerfs_quotactl,
|
2004-04-21 05:05:31 +04:00
|
|
|
layerfs_statvfs,
|
2000-01-20 22:06:13 +03:00
|
|
|
layerfs_sync,
|
|
|
|
layerfs_vget,
|
|
|
|
layerfs_fhtovp,
|
|
|
|
layerfs_vptofh,
|
|
|
|
layerfs_init,
|
2001-09-15 20:12:54 +04:00
|
|
|
NULL,
|
2000-03-16 21:08:17 +03:00
|
|
|
layerfs_done,
|
2000-01-20 22:06:13 +03:00
|
|
|
NULL, /* vfs_mountroot */
|
2004-05-30 03:48:08 +04:00
|
|
|
layerfs_snapshot,
|
2005-01-02 19:08:28 +03:00
|
|
|
vfs_stdextattrctl,
|
2007-07-27 02:57:36 +04:00
|
|
|
(void *)eopnotsupp, /* vfs_suspendctl */
|
2008-01-28 17:31:15 +03:00
|
|
|
layerfs_renamelock_enter,
|
|
|
|
layerfs_renamelock_exit,
|
2008-04-29 22:18:08 +04:00
|
|
|
(void *)eopnotsupp,
|
2000-01-20 22:06:13 +03:00
|
|
|
ov_vnodeopv_descs,
|
2006-09-04 01:01:12 +04:00
|
|
|
0,
|
|
|
|
{ NULL, NULL },
|
2000-01-20 22:06:13 +03:00
|
|
|
};
|
2008-05-10 06:26:09 +04:00
|
|
|
|
|
|
|
static int
|
|
|
|
overlay_modcmd(modcmd_t cmd, void *arg)
|
|
|
|
{
|
2008-06-28 05:34:05 +04:00
|
|
|
int error;
|
2008-05-10 06:26:09 +04:00
|
|
|
|
|
|
|
switch (cmd) {
|
|
|
|
case MODULE_CMD_INIT:
|
2008-06-28 05:34:05 +04:00
|
|
|
error = vfs_attach(&overlay_vfsops);
|
|
|
|
if (error != 0)
|
|
|
|
break;
|
|
|
|
sysctl_createv(&overlay_sysctl_log, 0, NULL, NULL,
|
|
|
|
CTLFLAG_PERMANENT, CTLTYPE_NODE, "vfs", NULL,
|
|
|
|
NULL, 0, NULL, 0,
|
|
|
|
CTL_VFS, CTL_EOL);
|
|
|
|
sysctl_createv(&overlay_sysctl_log, 0, NULL, NULL,
|
|
|
|
CTLFLAG_PERMANENT, CTLTYPE_NODE, "overlay",
|
|
|
|
SYSCTL_DESCR("Overlay file system"),
|
|
|
|
NULL, 0, NULL, 0,
|
|
|
|
CTL_VFS, CTL_CREATE, CTL_EOL);
|
|
|
|
break;
|
2008-05-10 06:26:09 +04:00
|
|
|
case MODULE_CMD_FINI:
|
2008-06-28 05:34:05 +04:00
|
|
|
error = vfs_detach(&overlay_vfsops);
|
|
|
|
if (error != 0)
|
|
|
|
break;
|
|
|
|
sysctl_teardown(&overlay_sysctl_log);
|
|
|
|
break;
|
2008-05-10 06:26:09 +04:00
|
|
|
default:
|
2008-06-28 05:34:05 +04:00
|
|
|
error = ENOTTY;
|
|
|
|
break;
|
2008-05-10 06:26:09 +04:00
|
|
|
}
|
2008-06-28 05:34:05 +04:00
|
|
|
|
|
|
|
return (error);
|
2008-05-10 06:26:09 +04:00
|
|
|
}
|