2001-04-07 19:51:12 +00:00
|
|
|
|
/*-
|
|
|
|
|
* Copyright (c) 2001 Dag-Erling Co<EFBFBD>dan Sm<EFBFBD>rgrav
|
|
|
|
|
* All rights reserved.
|
|
|
|
|
*
|
|
|
|
|
* 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
|
|
|
|
|
* in this position and unchanged.
|
|
|
|
|
* 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.
|
|
|
|
|
* 3. The name of the author may not be used to endorse or promote products
|
|
|
|
|
* derived from this software without specific prior written permission.
|
|
|
|
|
*
|
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``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 AUTHOR 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.
|
|
|
|
|
*
|
|
|
|
|
* $FreeBSD$
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef _PSEUDOFS_H_INCLUDED
|
|
|
|
|
#define _PSEUDOFS_H_INCLUDED
|
|
|
|
|
|
2001-11-03 03:07:09 +00:00
|
|
|
|
/*
|
|
|
|
|
* Opaque structures
|
|
|
|
|
*/
|
2006-05-15 19:42:10 +00:00
|
|
|
|
struct mntarg;
|
2001-11-03 03:07:09 +00:00
|
|
|
|
struct mount;
|
|
|
|
|
struct nameidata;
|
|
|
|
|
struct proc;
|
|
|
|
|
struct sbuf;
|
|
|
|
|
struct statfs;
|
|
|
|
|
struct thread;
|
|
|
|
|
struct uio;
|
|
|
|
|
struct vfsconf;
|
|
|
|
|
struct vnode;
|
|
|
|
|
|
2001-04-07 19:51:12 +00:00
|
|
|
|
/*
|
|
|
|
|
* Limits and constants
|
|
|
|
|
*/
|
|
|
|
|
#define PFS_NAMELEN 24
|
2001-11-03 03:07:09 +00:00
|
|
|
|
#define PFS_FSNAMELEN 16 /* equal to MFSNAMELEN */
|
2001-04-07 19:51:12 +00:00
|
|
|
|
#define PFS_DELEN (8 + PFS_NAMELEN)
|
|
|
|
|
|
|
|
|
|
typedef enum {
|
|
|
|
|
pfstype_none = 0,
|
|
|
|
|
pfstype_root,
|
|
|
|
|
pfstype_dir,
|
|
|
|
|
pfstype_this,
|
|
|
|
|
pfstype_parent,
|
|
|
|
|
pfstype_file,
|
|
|
|
|
pfstype_symlink,
|
2001-06-10 18:39:21 +00:00
|
|
|
|
pfstype_procdir
|
2001-04-07 19:51:12 +00:00
|
|
|
|
} pfs_type_t;
|
|
|
|
|
|
2001-09-25 13:25:30 +00:00
|
|
|
|
/*
|
|
|
|
|
* Flags
|
|
|
|
|
*/
|
2001-09-30 19:41:29 +00:00
|
|
|
|
#define PFS_RD 0x0001 /* readable */
|
|
|
|
|
#define PFS_WR 0x0002 /* writeable */
|
|
|
|
|
#define PFS_RDWR (PFS_RD|PFS_WR)
|
2001-09-25 13:25:30 +00:00
|
|
|
|
#define PFS_RAWRD 0x0004 /* raw reader */
|
|
|
|
|
#define PFS_RAWWR 0x0008 /* raw writer */
|
2001-09-30 19:41:29 +00:00
|
|
|
|
#define PFS_RAW (PFS_RAWRD|PFS_RAWWR)
|
2001-10-19 01:43:06 +00:00
|
|
|
|
#define PFS_PROCDEP 0x0010 /* process-dependent */
|
2001-09-25 13:25:30 +00:00
|
|
|
|
|
2001-04-07 19:51:12 +00:00
|
|
|
|
/*
|
|
|
|
|
* Data structures
|
|
|
|
|
*/
|
|
|
|
|
struct pfs_info;
|
|
|
|
|
struct pfs_node;
|
|
|
|
|
struct pfs_bitmap;
|
|
|
|
|
|
2001-10-19 01:43:06 +00:00
|
|
|
|
/*
|
|
|
|
|
* Init / uninit callback
|
|
|
|
|
*/
|
|
|
|
|
#define PFS_INIT_ARGS \
|
|
|
|
|
struct pfs_info *pi, struct vfsconf *vfc
|
2007-04-15 17:10:01 +00:00
|
|
|
|
#define PFS_INIT_ARGNAMES \
|
|
|
|
|
pi, vfc
|
2001-10-19 01:43:06 +00:00
|
|
|
|
#define PFS_INIT_PROTO(name) \
|
|
|
|
|
int name(PFS_INIT_ARGS);
|
|
|
|
|
typedef int (*pfs_init_t)(PFS_INIT_ARGS);
|
|
|
|
|
|
2001-09-29 00:49:29 +00:00
|
|
|
|
/*
|
|
|
|
|
* Filler callback
|
2007-04-15 17:10:01 +00:00
|
|
|
|
* Called with proc held but unlocked
|
2001-09-29 00:49:29 +00:00
|
|
|
|
*/
|
2001-06-10 18:39:21 +00:00
|
|
|
|
#define PFS_FILL_ARGS \
|
2001-09-25 13:25:30 +00:00
|
|
|
|
struct thread *td, struct proc *p, struct pfs_node *pn, \
|
|
|
|
|
struct sbuf *sb, struct uio *uio
|
2007-04-15 17:10:01 +00:00
|
|
|
|
#define PFS_FILL_ARGNAMES \
|
|
|
|
|
td, p, pn, sb, uio
|
2001-06-10 18:39:21 +00:00
|
|
|
|
#define PFS_FILL_PROTO(name) \
|
|
|
|
|
int name(PFS_FILL_ARGS);
|
|
|
|
|
typedef int (*pfs_fill_t)(PFS_FILL_ARGS);
|
2001-04-07 19:51:12 +00:00
|
|
|
|
|
2001-09-29 00:49:29 +00:00
|
|
|
|
/*
|
|
|
|
|
* Attribute callback
|
2007-04-15 17:10:01 +00:00
|
|
|
|
* Called with proc locked
|
2001-09-29 00:49:29 +00:00
|
|
|
|
*/
|
|
|
|
|
struct vattr;
|
|
|
|
|
#define PFS_ATTR_ARGS \
|
|
|
|
|
struct thread *td, struct proc *p, struct pfs_node *pn, \
|
|
|
|
|
struct vattr *vap
|
2007-04-15 17:10:01 +00:00
|
|
|
|
#define PFS_ATTR_ARGNAMES \
|
|
|
|
|
td, p, pn, vap
|
2001-09-29 00:49:29 +00:00
|
|
|
|
#define PFS_ATTR_PROTO(name) \
|
|
|
|
|
int name(PFS_ATTR_ARGS);
|
|
|
|
|
typedef int (*pfs_attr_t)(PFS_ATTR_ARGS);
|
|
|
|
|
|
2001-04-07 19:51:12 +00:00
|
|
|
|
struct pfs_bitmap; /* opaque */
|
|
|
|
|
|
2001-10-01 04:22:20 +00:00
|
|
|
|
/*
|
|
|
|
|
* Visibility callback
|
2007-04-15 17:10:01 +00:00
|
|
|
|
* Called with proc locked
|
2001-10-01 04:22:20 +00:00
|
|
|
|
*/
|
|
|
|
|
#define PFS_VIS_ARGS \
|
|
|
|
|
struct thread *td, struct proc *p, struct pfs_node *pn
|
2007-04-15 17:10:01 +00:00
|
|
|
|
#define PFS_VIS_ARGNAMES \
|
|
|
|
|
td, p, pn
|
2001-10-01 04:22:20 +00:00
|
|
|
|
#define PFS_VIS_PROTO(name) \
|
|
|
|
|
int name(PFS_VIS_ARGS);
|
|
|
|
|
typedef int (*pfs_vis_t)(PFS_VIS_ARGS);
|
|
|
|
|
|
2001-10-26 18:52:47 +00:00
|
|
|
|
/*
|
|
|
|
|
* Ioctl callback
|
2007-04-15 17:10:01 +00:00
|
|
|
|
* Called with proc locked
|
2001-10-26 18:52:47 +00:00
|
|
|
|
*/
|
|
|
|
|
#define PFS_IOCTL_ARGS \
|
|
|
|
|
struct thread *td, struct proc *p, struct pfs_node *pn, \
|
2003-03-02 22:23:45 +00:00
|
|
|
|
unsigned long cmd, void *data
|
2007-04-15 17:10:01 +00:00
|
|
|
|
#define PFS_IOCTL_ARGNAMES \
|
|
|
|
|
td, p, pn, cmd, data
|
2001-10-26 18:52:47 +00:00
|
|
|
|
#define PFS_IOCTL_PROTO(name) \
|
|
|
|
|
int name(PFS_IOCTL_ARGS);
|
|
|
|
|
typedef int (*pfs_ioctl_t)(PFS_IOCTL_ARGS);
|
|
|
|
|
|
2001-12-11 20:48:20 +00:00
|
|
|
|
/*
|
|
|
|
|
* Getextattr callback
|
2007-04-15 17:10:01 +00:00
|
|
|
|
* Called with proc locked
|
2001-12-11 20:48:20 +00:00
|
|
|
|
*/
|
|
|
|
|
#define PFS_GETEXTATTR_ARGS \
|
|
|
|
|
struct thread *td, struct proc *p, struct pfs_node *pn, \
|
|
|
|
|
int attrnamespace, const char *name, struct uio *uio, \
|
Part I: Update extended attribute API and ABI:
o Modify the system call syntax for extattr_{get,set}_{fd,file}() so
as not to use the scatter gather API (which appeared not to be used
by any consumers, and be less portable), rather, accepts 'data'
and 'nbytes' in the style of other simple read/write interfaces.
This changes the API and ABI.
o Modify system call semantics so that extattr_get_{fd,file}() return
a size_t. When performing a read, the number of bytes read will
be returned, unless the data pointer is NULL, in which case the
number of bytes of data are returned. This changes the API only.
o Modify the VOP_GETEXTATTR() vnode operation to accept a *size_t
argument so as to return the size, if desirable. If set to NULL,
the size will not be returned.
o Update various filesystems (pseodofs, ufs) to DTRT.
These changes should make extended attributes more useful and more
portable. More commits to rebuild the system call files, as well
as update userland utilities to follow.
Obtained from: TrustedBSD Project
Sponsored by: DARPA, NAI Labs
2002-02-10 04:43:22 +00:00
|
|
|
|
size_t *size, struct ucred *cred
|
2007-04-15 17:10:01 +00:00
|
|
|
|
#define PFS_GETEXTATTR_ARGNAMES \
|
|
|
|
|
td, p, pn, attrnamespace, name, uio, size, cred
|
2001-12-11 20:48:20 +00:00
|
|
|
|
#define PFS_GETEXTATTR_PROTO(name) \
|
|
|
|
|
int name(PFS_GETEXTATTR_ARGS);
|
|
|
|
|
struct ucred;
|
|
|
|
|
typedef int (*pfs_getextattr_t)(PFS_GETEXTATTR_ARGS);
|
|
|
|
|
|
2001-11-27 13:26:27 +00:00
|
|
|
|
/*
|
|
|
|
|
* Last-close callback
|
2007-04-15 17:10:01 +00:00
|
|
|
|
* Called with proc locked
|
2001-11-27 13:26:27 +00:00
|
|
|
|
*/
|
|
|
|
|
#define PFS_CLOSE_ARGS \
|
|
|
|
|
struct thread *td, struct proc *p, struct pfs_node *pn
|
2007-04-15 17:10:01 +00:00
|
|
|
|
#define PFS_CLOSE_ARGNAMES \
|
|
|
|
|
td, p, pn
|
2001-11-27 13:26:27 +00:00
|
|
|
|
#define PFS_CLOSE_PROTO(name) \
|
|
|
|
|
int name(PFS_CLOSE_ARGS);
|
|
|
|
|
typedef int (*pfs_close_t)(PFS_CLOSE_ARGS);
|
|
|
|
|
|
2007-03-12 12:16:52 +00:00
|
|
|
|
/*
|
|
|
|
|
* Destroy callback
|
|
|
|
|
*/
|
|
|
|
|
#define PFS_DESTROY_ARGS \
|
|
|
|
|
struct pfs_node *pn
|
2007-04-15 17:10:01 +00:00
|
|
|
|
#define PFS_DESTROY_ARGNAMES \
|
|
|
|
|
pn
|
2007-03-12 12:16:52 +00:00
|
|
|
|
#define PFS_DESTROY_PROTO(name) \
|
|
|
|
|
int name(PFS_DESTROY_ARGS);
|
|
|
|
|
typedef int (*pfs_destroy_t)(PFS_DESTROY_ARGS);
|
|
|
|
|
|
2001-04-07 19:51:12 +00:00
|
|
|
|
/*
|
|
|
|
|
* pfs_info: describes a pseudofs instance
|
2007-04-14 14:08:30 +00:00
|
|
|
|
*
|
|
|
|
|
* The pi_mutex is only used to avoid using the global subr_unit lock for
|
|
|
|
|
* unrhdr. The rest of struct pfs_info is only modified while Giant is
|
|
|
|
|
* held (during vfs_init() and vfs_uninit()).
|
2001-04-07 19:51:12 +00:00
|
|
|
|
*/
|
|
|
|
|
struct pfs_info {
|
2001-11-03 03:07:09 +00:00
|
|
|
|
char pi_name[PFS_FSNAMELEN];
|
2001-10-19 01:43:06 +00:00
|
|
|
|
pfs_init_t pi_init;
|
|
|
|
|
pfs_init_t pi_uninit;
|
2007-04-14 14:08:30 +00:00
|
|
|
|
|
|
|
|
|
/* members below this line are initialized at run time*/
|
2001-10-19 01:43:06 +00:00
|
|
|
|
struct pfs_node *pi_root;
|
2001-04-07 19:51:12 +00:00
|
|
|
|
struct mtx pi_mutex;
|
2005-03-19 08:22:36 +00:00
|
|
|
|
struct unrhdr *pi_unrhdr;
|
2001-04-07 19:51:12 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/*
|
2001-06-10 18:39:21 +00:00
|
|
|
|
* pfs_node: describes a node (file or directory) within a pseudofs
|
2007-04-15 17:10:01 +00:00
|
|
|
|
*
|
|
|
|
|
* - Fields marked (o) are protected by the node's own mutex.
|
|
|
|
|
* - Fields marked (p) are protected by the node's parent's mutex.
|
|
|
|
|
* - Remaining fields are not protected by any lock and are assumed to be
|
|
|
|
|
* immutable once the node has been created.
|
|
|
|
|
*
|
|
|
|
|
* To prevent deadlocks, if a node's mutex is to be held at the same time
|
|
|
|
|
* as its parent's (e.g. when adding or removing nodes to a directory),
|
|
|
|
|
* the parent's mutex must always be acquired first. Unfortunately, this
|
|
|
|
|
* is not enforcable by WITNESS.
|
2001-04-07 19:51:12 +00:00
|
|
|
|
*/
|
|
|
|
|
struct pfs_node {
|
|
|
|
|
char pn_name[PFS_NAMELEN];
|
|
|
|
|
pfs_type_t pn_type;
|
2007-04-15 17:10:01 +00:00
|
|
|
|
int pn_flags;
|
|
|
|
|
struct mtx pn_mutex;
|
|
|
|
|
void *pn_data; /* (o) */
|
|
|
|
|
|
|
|
|
|
pfs_fill_t pn_fill;
|
2001-10-26 18:52:47 +00:00
|
|
|
|
pfs_ioctl_t pn_ioctl;
|
2001-11-27 13:26:27 +00:00
|
|
|
|
pfs_close_t pn_close;
|
2001-09-29 00:49:29 +00:00
|
|
|
|
pfs_attr_t pn_attr;
|
2001-10-01 04:22:20 +00:00
|
|
|
|
pfs_vis_t pn_vis;
|
2001-12-11 20:48:20 +00:00
|
|
|
|
pfs_getextattr_t pn_getextattr;
|
2007-03-12 12:16:52 +00:00
|
|
|
|
pfs_destroy_t pn_destroy;
|
2002-06-06 16:59:24 +00:00
|
|
|
|
|
2001-10-19 01:43:06 +00:00
|
|
|
|
struct pfs_info *pn_info;
|
2007-04-15 17:10:01 +00:00
|
|
|
|
u_int32_t pn_fileno; /* (o) */
|
|
|
|
|
|
|
|
|
|
struct pfs_node *pn_parent; /* (o) */
|
|
|
|
|
struct pfs_node *pn_nodes; /* (o) */
|
|
|
|
|
struct pfs_node *pn_next; /* (p) */
|
2001-04-07 19:51:12 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* VFS interface
|
|
|
|
|
*/
|
2002-06-06 16:59:24 +00:00
|
|
|
|
int pfs_mount (struct pfs_info *pi, struct mount *mp,
|
2004-07-30 22:08:52 +00:00
|
|
|
|
struct thread *td);
|
2006-05-15 19:42:10 +00:00
|
|
|
|
int pfs_cmount (struct mntarg *ma, void *data, int flags,
|
|
|
|
|
struct thread *td);
|
2002-06-06 16:59:24 +00:00
|
|
|
|
int pfs_unmount (struct mount *mp, int mntflags,
|
2001-09-12 08:38:13 +00:00
|
|
|
|
struct thread *td);
|
2005-03-24 07:36:16 +00:00
|
|
|
|
int pfs_root (struct mount *mp, int flags,
|
|
|
|
|
struct vnode **vpp, struct thread *td);
|
2002-06-06 16:59:24 +00:00
|
|
|
|
int pfs_statfs (struct mount *mp, struct statfs *sbp,
|
2001-09-12 08:38:13 +00:00
|
|
|
|
struct thread *td);
|
2002-06-06 16:59:24 +00:00
|
|
|
|
int pfs_init (struct pfs_info *pi, struct vfsconf *vfc);
|
|
|
|
|
int pfs_uninit (struct pfs_info *pi, struct vfsconf *vfc);
|
2001-04-07 19:51:12 +00:00
|
|
|
|
|
2001-10-02 22:22:42 +00:00
|
|
|
|
/*
|
2001-10-19 01:43:06 +00:00
|
|
|
|
* Directory structure construction and manipulation
|
2001-10-02 22:22:42 +00:00
|
|
|
|
*/
|
2003-12-07 17:41:19 +00:00
|
|
|
|
struct pfs_node *pfs_create_dir (struct pfs_node *parent, const char *name,
|
2007-04-05 13:43:00 +00:00
|
|
|
|
pfs_attr_t attr, pfs_vis_t vis,
|
2007-03-12 12:16:52 +00:00
|
|
|
|
pfs_destroy_t destroy, int flags);
|
2003-12-07 17:41:19 +00:00
|
|
|
|
struct pfs_node *pfs_create_file(struct pfs_node *parent, const char *name,
|
2001-10-19 01:43:06 +00:00
|
|
|
|
pfs_fill_t fill, pfs_attr_t attr,
|
2007-03-12 12:16:52 +00:00
|
|
|
|
pfs_vis_t vis, pfs_destroy_t destroy,
|
|
|
|
|
int flags);
|
2003-12-07 17:41:19 +00:00
|
|
|
|
struct pfs_node *pfs_create_link(struct pfs_node *parent, const char *name,
|
2001-10-19 01:43:06 +00:00
|
|
|
|
pfs_fill_t fill, pfs_attr_t attr,
|
2007-03-12 12:16:52 +00:00
|
|
|
|
pfs_vis_t vis, pfs_destroy_t destroy,
|
|
|
|
|
int flags);
|
2003-12-07 17:41:19 +00:00
|
|
|
|
struct pfs_node *pfs_find_node (struct pfs_node *parent, const char *name);
|
Add a flag to struct pfs_vdata to mark the vnode as dead (e.g. process-
specific nodes when the process exits)
Move the vnode-cache-walking loop which was duplicated in pfs_exit() and
pfs_disable() into its own function, pfs_purge(), which looks for vnodes
marked as dead and / or belonging to the specified pfs_node and reclaims
them. Note that this loop is still extremely inefficient.
Add a comment in pfs_vncache_alloc() explaining why we have to purge the
vnode from the vnode cache before returning, in case anyone should be
tempted to remove the call to cache_purge().
Move the special handling for pfstype_root nodes into pfs_fileno_alloc()
and pfs_fileno_free() (the root node's fileno must always be 2). This
also fixes a bug where pfs_fileno_free() would reclaim the root node's
fileno, triggering a panic in the unr code, as that fileno was never
allocated from unr to begin with.
When destroying a pfs_node, release its fileno and purge it from the
vnode cache. I wish we could put off the call to pfs_purge() until
after the entire tree had been destroyed, but then we'd have vnodes
referencing freed pfs nodes. This probably doesn't matter while we're
still under Giant, but might become an issue later.
When destroying a pseudofs instance, destroy the tree before tearing
down the fileno allocator.
In pfs_mount(), acquire the mountpoint interlock when required.
MFC after: 3 weeks
2007-04-11 22:40:57 +00:00
|
|
|
|
void pfs_purge (struct pfs_node *pn);
|
2001-10-19 01:43:06 +00:00
|
|
|
|
int pfs_destroy (struct pfs_node *pn);
|
2001-10-02 22:22:42 +00:00
|
|
|
|
|
2001-04-07 19:51:12 +00:00
|
|
|
|
/*
|
|
|
|
|
* Now for some initialization magic...
|
|
|
|
|
*/
|
2001-10-19 01:43:06 +00:00
|
|
|
|
#define PSEUDOFS(name, version) \
|
2001-04-07 19:51:12 +00:00
|
|
|
|
\
|
|
|
|
|
static struct pfs_info name##_info = { \
|
|
|
|
|
#name, \
|
2002-10-20 21:31:16 +00:00
|
|
|
|
name##_init, \
|
|
|
|
|
name##_uninit, \
|
2001-04-07 19:51:12 +00:00
|
|
|
|
}; \
|
|
|
|
|
\
|
|
|
|
|
static int \
|
2004-07-30 22:08:52 +00:00
|
|
|
|
_##name##_mount(struct mount *mp, struct thread *td) { \
|
|
|
|
|
return pfs_mount(&name##_info, mp, td); \
|
2001-04-07 19:51:12 +00:00
|
|
|
|
} \
|
|
|
|
|
\
|
|
|
|
|
static int \
|
|
|
|
|
_##name##_init(struct vfsconf *vfc) { \
|
2002-06-06 16:59:24 +00:00
|
|
|
|
return pfs_init(&name##_info, vfc); \
|
2001-04-07 19:51:12 +00:00
|
|
|
|
} \
|
|
|
|
|
\
|
|
|
|
|
static int \
|
|
|
|
|
_##name##_uninit(struct vfsconf *vfc) { \
|
2002-06-06 16:59:24 +00:00
|
|
|
|
return pfs_uninit(&name##_info, vfc); \
|
2001-04-07 19:51:12 +00:00
|
|
|
|
} \
|
|
|
|
|
\
|
2001-06-10 21:37:11 +00:00
|
|
|
|
static struct vfsops name##_vfsops = { \
|
2006-05-15 19:42:10 +00:00
|
|
|
|
.vfs_cmount = pfs_cmount, \
|
2003-06-12 20:48:38 +00:00
|
|
|
|
.vfs_init = _##name##_init, \
|
2004-07-30 22:08:52 +00:00
|
|
|
|
.vfs_mount = _##name##_mount, \
|
2003-06-12 20:48:38 +00:00
|
|
|
|
.vfs_root = pfs_root, \
|
|
|
|
|
.vfs_statfs = pfs_statfs, \
|
|
|
|
|
.vfs_uninit = _##name##_uninit, \
|
|
|
|
|
.vfs_unmount = pfs_unmount, \
|
2001-04-07 19:51:12 +00:00
|
|
|
|
}; \
|
|
|
|
|
VFS_SET(name##_vfsops, name, VFCF_SYNTHETIC); \
|
2001-09-25 13:25:30 +00:00
|
|
|
|
MODULE_VERSION(name, version); \
|
2001-11-27 13:26:27 +00:00
|
|
|
|
MODULE_DEPEND(name, pseudofs, 1, 1, 1);
|
2001-04-07 19:51:12 +00:00
|
|
|
|
|
|
|
|
|
#endif
|