Searched refs:mount (Results 1 - 25 of 1050) sorted by relevance

1234567891011>>

/netbsd-6-1-5-RELEASE/sys/miscfs/genfs/
H A Dlayer_extern.h79 int layer_node_alloc(struct mount *, struct vnode *, struct vnode **);
80 int layer_node_create(struct mount *, struct vnode *, struct vnode **);
81 struct vnode *layer_node_find(struct mount *, struct vnode *);
89 int layerfs_start(struct mount *, int);
90 int layerfs_root(struct mount *, struct vnode **);
91 int layerfs_quotactl(struct mount *, struct quotactl_args *);
92 int layerfs_statvfs(struct mount *, struct statvfs *);
93 int layerfs_sync(struct mount *, int, struct kauth_cred *);
94 int layerfs_vget(struct mount *, ino_t, struct vnode **);
95 int layerfs_fhtovp(struct mount *, struc
[all...]
H A Dgenfs.h9 struct mount;
39 int genfs_statvfs(struct mount *, struct statvfs *);
41 int genfs_renamelock_enter(struct mount *);
42 void genfs_renamelock_exit(struct mount *);
87 bool (*gro_directory_empty_p)(struct mount *mp, kauth_cred_t cred,
89 int (*gro_rename_check_possible)(struct mount *mp,
92 int (*gro_rename_check_permitted)(struct mount *mp, kauth_cred_t cred,
95 int (*gro_remove_check_possible)(struct mount *mp,
97 int (*gro_remove_check_permitted)(struct mount *mp, kauth_cred_t cred,
99 int (*gro_rename)(struct mount *m
[all...]
H A Dgenfs_vfsops.c33 #include <sys/mount.h>
41 genfs_statvfs(struct mount *mp, struct statvfs *sbp)
61 genfs_renamelock_enter(struct mount *mp)
69 genfs_renamelock_exit(struct mount *mp)
/netbsd-6-1-5-RELEASE/sys/coda/
H A Dcoda_vfsops.h46 struct mount;
49 int coda_mount(struct mount *, const char *, void *, size_t *);
50 int coda_start(struct mount *, int);
51 int coda_unmount(struct mount *, int);
52 int coda_root(struct mount *, struct vnode **);
53 int coda_nb_statvfs(struct mount *, struct statvfs *);
54 int coda_sync(struct mount *, int, kauth_cred_t);
55 int coda_vget(struct mount *, ino_t, struct vnode **);
56 int coda_fhtovp(struct mount *, struct fid *, struct mbuf *, struct vnode **,
H A Dcoda_subr.h39 void coda_checkunmounting(struct mount *mp);
40 void coda_cacheprint(struct mount *whoIam);
43 int coda_kill(struct mount *whoIam, enum dc_status dcstat);
/netbsd-6-1-5-RELEASE/sbin/mount/
H A DMakefile6 PROG= mount
7 MAN= mount.8
8 SRCS= mount.c vfslist.c
/netbsd-6-1-5-RELEASE/sys/sys/
H A Dfstrans.h39 #include <sys/mount.h>
62 int _fstrans_start(struct mount *, enum fstrans_lock_type, int);
63 void fstrans_done(struct mount *);
64 int fstrans_is_owner(struct mount *);
65 int fstrans_mount(struct mount *);
66 void fstrans_unmount(struct mount *);
68 int fstrans_setstate(struct mount *, enum fstrans_state);
69 enum fstrans_state fstrans_getstate(struct mount *);
71 int fscow_establish(struct mount *, int (*)(void *, struct buf *, bool),
73 int fscow_disestablish(struct mount *, in
[all...]
H A Dmount.h31 * @(#)mount.h 8.21 (Berkeley) 5/20/95
109 struct mount { struct
110 CIRCLEQ_ENTRY(mount) mnt_list; /* mount list */
111 TAILQ_HEAD(, vnode) mnt_vnodelist; /* list of vnodes this mount */
214 int (*vfs_mount) (struct mount *, const char *, void *,
216 int (*vfs_start) (struct mount *, int);
217 int (*vfs_unmount) (struct mount *, int);
218 int (*vfs_root) (struct mount *, struct vnode **);
219 int (*vfs_quotactl) (struct mount *, struc
[all...]
H A Dfileassoc.h43 int fileassoc_table_delete(struct mount *);
44 int fileassoc_table_clear(struct mount *, fileassoc_t);
48 int fileassoc_table_run(struct mount *, fileassoc_t, fileassoc_cb_t, void *);
/netbsd-6-1-5-RELEASE/lib/libc/compat/sys/
H A Dcompat_mount.c12 #include <sys/mount.h>
14 __warn_references(mount,
15 "warning: reference to compatibility mount(); include <sys/mount.h> to generate correct reference")
17 int mount(const char *, const char *, int, void *);
21 * Convert old mount() call to new calling convention
26 mount(const char *type, const char *dir, int flags, void *data) function
H A Dcompat___fhstat30.c41 #include <sys/mount.h>
43 #include <compat/sys/mount.h>
46 "warning: reference to compatibility __fhstat30(); include <sys/mount.h> to generate correct reference")
/netbsd-6-1-5-RELEASE/external/bsd/am-utils/dist/include/
H A Dmount_headers2.h49 # include <rpcsvc/mount.h>
53 # include <mount.h>
61 # include <nfs/mount.h>
/netbsd-6-1-5-RELEASE/external/bsd/am-utils/dist/conf/trap/
H A Dtrap_default.h4 #define MOUNT_TRAP(type, mnt, flags, mnt_data) mount(type, mnt->mnt_dir, flags, mnt_data)
H A Dtrap_news4.h4 #define MOUNT_TRAP(type, mnt, flags, mnt_data) mount(type, mnt->mnt_dir, M_NEWTYPE | flags, mnt_data)
H A Dtrap_ultrix.h4 /* arg 3 to mount(2) is rwflag */
5 #define MOUNT_TRAP(type, mnt, flags, mnt_data) mount(mnt->mnt_fsname, mnt->mnt_dir, flags & MNT2_GEN_OPT_RONLY, type, mnt_data)
H A Dtrap_netbsd.h5 #define MOUNT_TRAP(type, mnt, flags, mnt_data) mount(type, mnt->mnt_dir, flags, mnt_data, 0)
7 #define MOUNT_TRAP(type, mnt, flags, mnt_data) mount(type, mnt->mnt_dir, flags, mnt_data)
/netbsd-6-1-5-RELEASE/sys/rump/include/rump/
H A Drumpvfs_if_pub.h27 int rump_pub_vfs_unmount(struct mount *, int);
28 int rump_pub_vfs_root(struct mount *, struct vnode **, int);
29 int rump_pub_vfs_statvfs(struct mount *, struct statvfs *);
30 int rump_pub_vfs_sync(struct mount *, int, struct kauth_cred *);
31 int rump_pub_vfs_fhtovp(struct mount *, struct fid *, struct vnode **);
33 int rump_pub_vfs_extattrctl(struct mount *, int, struct vnode *, int, const char *);
34 void rump_pub_vfs_syncwait(struct mount *);
35 int rump_pub_vfs_getmp(const char *, struct mount **);
/netbsd-6-1-5-RELEASE/sys/rump/librump/rumpvfs/
H A Drumpvfs_if_priv.h27 int rump_vfs_unmount(struct mount *, int);
28 int rump_vfs_root(struct mount *, struct vnode **, int);
29 int rump_vfs_statvfs(struct mount *, struct statvfs *);
30 int rump_vfs_sync(struct mount *, int, struct kauth_cred *);
31 int rump_vfs_fhtovp(struct mount *, struct fid *, struct vnode **);
33 int rump_vfs_extattrctl(struct mount *, int, struct vnode *, int, const char *);
34 void rump_vfs_syncwait(struct mount *);
35 int rump_vfs_getmp(const char *, struct mount **);
/netbsd-6-1-5-RELEASE/external/bsd/am-utils/dist/conf/mount/
H A Dmount_irix5.c42 * File: am-utils/conf/mount/mount_irix5.c
58 * Map from conventional mount arguments
63 * mounts to succeed, the the mount syscall fails if the argument size
76 return mount(fsname, dir, (MNT2_GEN_OPT_FSS | MNT2_GEN_OPT_DATA | flags),
82 return mount(fsname, dir, (MNT2_GEN_OPT_FSS | MNT2_GEN_OPT_DATA | flags),
90 return mount(fsname, dir, (MNT2_GEN_OPT_FSS | flags), type);
95 return mount(fsname, dir, (MNT2_GEN_OPT_FSS | flags), type);
100 return mount(fsname, dir, (MNT2_GEN_OPT_FSS | flags), type);
H A Dmount_irix6.c42 * File: am-utils/conf/mount/mount_irix6.c
58 * Map from conventional mount arguments
71 return mount(fsname, dir, (MNT2_GEN_OPT_FSS | MNT2_GEN_OPT_DATA | flags),
77 return mount(fsname, dir, (MNT2_GEN_OPT_FSS | MNT2_GEN_OPT_DATA | flags),
83 return mount(fsname, dir, (MNT2_GEN_OPT_FSS | MNT2_GEN_OPT_DATA | flags),
89 return mount(fsname, dir, (MNT2_GEN_OPT_FSS | MNT2_GEN_OPT_DATA | flags),
95 return mount(fsname, dir, (MNT2_GEN_OPT_FSS | MNT2_GEN_OPT_DATA | flags),
101 return mount(fsname, dir, (MNT2_GEN_OPT_FSS | MNT2_GEN_OPT_DATA | flags),
107 return mount(fsname, dir, (MNT2_GEN_OPT_FSS | MNT2_GEN_OPT_DATA | flags),
/netbsd-6-1-5-RELEASE/etc/rc.d/
H A Dmountall24 mount -a
26 zfs mount -a
29 mount -a
H A Droot18 mount /
/netbsd-6-1-5-RELEASE/sys/ufs/ffs/
H A Dffs_extern.h54 struct mount;
87 #include <sys/mount.h>
104 int ffs_freefile(struct mount *, ino_t, int);
119 int ffs_reload(struct mount *, kauth_cred_t, struct lwp *);
120 int ffs_mountfs(struct vnode *, struct mount *, struct lwp *);
121 int ffs_flushfiles(struct mount *, int, struct lwp *);
151 int ffs_snapshot(struct mount *, struct vnode *, struct timespec *);
152 void ffs_snapshot_mount(struct mount *);
153 void ffs_snapshot_unmount(struct mount *);
158 void ffs_wapbl_verify_inodes(struct mount *, cons
[all...]
/netbsd-6-1-5-RELEASE/dist/smbfs/examples/
H A Dsmbfs.sh.sample7 # Simple script to mount smbfs file systems at startup.
8 # It assumes that all mount points described in fstab file and password
12 mount="/sbin/mount -o -N"
21 $mount $vol
26 echo -n "unmounting smbfs mount points: "
/netbsd-6-1-5-RELEASE/sys/fs/efs/
H A Defs_mount.h23 char *fspec; /* block special device to mount */
34 struct mount *em_mnt; /* pointer to our mount structure */

Completed in 324 milliseconds

1234567891011>>