Searched refs:fsname (Results 1 - 25 of 50) sorted by relevance

12

/netbsd-current/external/bsd/am-utils/dist/conf/mount/
H A Dmount_irix5.c63 mount_irix(char *fsname, char *dir, int flags, MTYPE_TYPE type, voidp data) argument
67 dlog("mount_irix: fsname %s, dir %s, type %d", fsname, dir, type);
72 return mount(fsname, dir, (MNT2_GEN_OPT_FSS | MNT2_GEN_OPT_DATA | flags),
78 return mount(fsname, dir, (MNT2_GEN_OPT_FSS | MNT2_GEN_OPT_DATA | flags),
86 return mount(fsname, dir, (MNT2_GEN_OPT_FSS | flags), type);
91 return mount(fsname, dir, (MNT2_GEN_OPT_FSS | flags), type);
96 return mount(fsname, dir, (MNT2_GEN_OPT_FSS | flags), type);
H A Dmount_isc3.c57 mount_isc3(char *fsname, char *dir, int flags, int type, void *data) argument
61 dlog("mount_isc3: fsname %s, dir %s, type %d", fsname, dir, type);
71 return mount(fsname, dir, (MNT2_GEN_OPT_FSS | flags), type);
H A Dmount_stellix.c58 mount_stellix(char *fsname, char *dir, int flags, int type, void *data) argument
62 dlog("stellix_mount: fsname %s, dir %s, type %d", fsname, dir, type);
70 return mount(fsname, dir, (MNT2_GEN_OPT_FSS | flags), type);
H A Dmount_irix6.c58 mount_irix(char *fsname, char *dir, int flags, MTYPE_TYPE type, voidp data) argument
62 dlog("mount_irix: fsname %s, dir %s, type %s", fsname, dir, type);
67 return mount(fsname, dir, (MNT2_GEN_OPT_FSS | MNT2_GEN_OPT_DATA | flags),
73 return mount(fsname, dir, (MNT2_GEN_OPT_FSS | MNT2_GEN_OPT_DATA | flags),
79 return mount(fsname, dir, (MNT2_GEN_OPT_FSS | MNT2_GEN_OPT_DATA | flags),
85 return mount(fsname, dir, (MNT2_GEN_OPT_FSS | MNT2_GEN_OPT_DATA | flags),
91 return mount(fsname, dir, (MNT2_GEN_OPT_FSS | MNT2_GEN_OPT_DATA | flags),
97 return mount(fsname, dir, (MNT2_GEN_OPT_FSS | MNT2_GEN_OPT_DATA | flags),
103 return mount(fsname, di
[all...]
H A Dmount_svr4.c60 # define sys_mount(fsname, dir, flags, type, data, datasize) \
61 mount((fsname), (dir), (MNT2_GEN_OPT_OPTIONSTR | flags), (type), \
64 # define sys_mount(fsname, dir, flags, type, data, datasize) \
65 mount((fsname), (dir), (flags), (type), (data), (datasize))
74 mount_svr4(char *fsname, char *dir, int flags, MTYPE_TYPE type, caddr_t data, const char *optstr) argument
88 return sys_mount(fsname, dir, (MNT2_GEN_OPT_DATA | flags),
95 return sys_mount(fsname, dir, (MNT2_GEN_OPT_DATA | flags),
102 return sys_mount(fsname, dir, (MNT2_GEN_OPT_DATA | flags),
109 return sys_mount(fsname, dir, (MNT2_GEN_OPT_DATA | flags),
115 return sys_mount(fsname, di
[all...]
H A Dmount_aix.c100 mount_aix3(char *fsname, char *dir, int flags, int type, void *data, char *mnt_opts) argument
114 dlog("mount_aix3: fsname %s, dir %s, type %d", fsname, dir, type);
148 idx = strchr(fsname, ':');
152 host = xstrdup(fsname);
155 rfs = xstrdup(fsname);
H A Dmount_aix3.c100 mount_aix3(char *fsname, char *dir, int flags, int type, void *data, char *mnt_opts) argument
117 dlog("mount_aix3: fsname %s, dir %s, type %d", fsname, dir, type);
182 idx = strchr(fsname, ':');
186 host = xstrdup(fsname);
189 rfs = xstrdup(fsname);
/netbsd-current/external/bsd/am-utils/dist/conf/trap/
H A Dtrap_isc3.h4 extern int mount_isc3(char *fsname, char *dir, int flags, int type, void *data);
H A Dtrap_stellix.h4 extern int mount_stellix(char *fsname, char *dir, int flags, int type, void *data);
H A Dtrap_aix3.h4 extern int mount_aix3(char *fsname, char *dir, int flags, int type, void *data, char *mnt_opts);
H A Dtrap_irix.h4 extern int mount_irix(char *fsname, char *dir, int flags, MTYPE_TYPE type, voidp data);
H A Dtrap_svr4.h4 extern int mount_svr4(char *fsname, char *dir, int flags, MTYPE_TYPE type, caddr_t data, const char *optstr);
/netbsd-current/sys/arch/acorn32/stand/lib/
H A Ddevopen.c45 char *p, *fsname;
64 fsname = alloc(fslen + 1);
65 memcpy(fsname, fname, fslen);
66 fsname[fslen] = 0;
67 err = rodisk_open(f, fsname, drive, part);
68 dealloc(fsname, fslen + 1);
H A Driscosdisk.c45 rodisk_getprivateword(char const *fsname) argument
52 snprintf(module, sizeof(module), "FileCore%c%s", '%', fsname);
60 rodisk_open(struct open_file *f, ... /* char const *fsname, int drive,
65 char const *fsname; local
71 fsname = va_arg(ap, char const *);
76 if ((privword = rodisk_getprivateword(fsname)) == NULL)
/netbsd-current/lib/libpuffs/
H A Dpuffs.h317 #define PUFFSOP_PROTOS(fsname) \
318 int fsname##_fs_unmount(struct puffs_usermount *, int); \
319 int fsname##_fs_statvfs(struct puffs_usermount *, \
321 int fsname##_fs_sync(struct puffs_usermount *, int, \
323 int fsname##_fs_fhtonode(struct puffs_usermount *, void *, \
325 int fsname##_fs_nodetofh(struct puffs_usermount *, \
327 int fsname##_fs_extattrctl(struct puffs_usermount *, int, \
330 int fsname##_node_lookup(struct puffs_usermount *, \
333 int fsname##_node_create(struct puffs_usermount *, \
336 int fsname##_node_mkno
[all...]
/netbsd-current/external/bsd/am-utils/dist/conf/mtab/
H A Dmtab_aix.c69 char *fsname = xstrdup(vmt2dataptr(mp, VMT_OBJECT)); local
78 new_mp->mnt_fsname = xstrdup(fsname);
85 fsname);
93 fsname);
99 new_mp->mnt_fsname = xstrdup(fsname);
109 XFREE(fsname);
/netbsd-current/sbin/resize_lfs/
H A Dresize_lfs.c63 char *rdev, *fsname, buf[LFS_SBPAD]; local
89 fsname = argv[optind];
91 if (fsname == NULL)
98 if (statvfs(fsname, &vfs) < 0)
99 err(1, "%s", fsname);
122 rootfd = open(fsname, O_RDONLY);
159 i, fsname);
171 fsname, lfs_sb_getnseg(fs), (long long)newnsegs);
/netbsd-current/sys/sys/
H A Dmount.h253 #define VFS_PROTOS(fsname) \
254 int fsname##_mount(struct mount *, const char *, void *, \
256 int fsname##_start(struct mount *, int); \
257 int fsname##_unmount(struct mount *, int); \
258 int fsname##_root(struct mount *, int, struct vnode **); \
259 int fsname##_quotactl(struct mount *, struct quotactl_args *); \
260 int fsname##_statvfs(struct mount *, struct statvfs *); \
261 int fsname##_sync(struct mount *, int, struct kauth_cred *); \
262 int fsname##_vget(struct mount *, ino_t, int, struct vnode **); \
263 int fsname##_loadvnod
[all...]
/netbsd-current/sys/arch/zaurus/stand/zboot/
H A Dboot.h46 int parsebootfile(const char *fname, char **fsname, char **devname,
H A Ddevopen.c82 char *fsname, *devname; local
91 if ((error = parsebootfile(fname, &fsname, &devname, &unit, &partition,
/netbsd-current/sys/arch/i386/stand/boot/
H A Ddevopen.c127 char *fsname, *devname; local
132 error = parsebootfile(fname, &fsname, &devname,
H A Dboot2.c169 parsebootfile(const char *fname, char **fsname, char **devname, argument
175 *fsname = "ufs";
255 char *fsname, *devname; local
260 if (parsebootfile(filename, &fsname, &devname, &unit,
511 char *fsname, *devname; local
530 parsebootfile(arg, &fsname, &devname, &default_unit,
/netbsd-current/sys/arch/i386/stand/dosboot/
H A Dmain.c154 char *fsname, *devname; local
159 if (parsebootfile(filename, &fsname, &devname, &unit,
161 if (!strcmp(fsname, "dos"))
163 else if (!strcmp(fsname, "ufs"))
345 char *fsname, *devname; local
360 parsebootfile(arg, &fsname, &devname, &default_unit,
/netbsd-current/sys/compat/ultrix/
H A Dultrix_fs.c344 char fsname[MFSNAMELEN]; local
419 fsname[0] = 0;
420 if ((error = copyinstr(SCARG(uap, dir), fsname,
421 sizeof fsname, NULL)) != 0)
423 if (strcmp(fsname, "/") == 0) {
426 fsname);
/netbsd-current/external/cddl/osnet/dist/lib/libzfs_core/common/
H A Dlibzfs_core.c221 lzc_create(const char *fsname, enum lzc_dataset_type type, nvlist_t *props) argument
228 error = lzc_ioctl(ZFS_IOC_CREATE, fsname, args, NULL);
234 lzc_clone(const char *fsname, const char *origin, argument
242 error = lzc_ioctl(ZFS_IOC_CLONE, fsname, args, NULL);
740 lzc_rollback(const char *fsname, char *snapnamebuf, int snapnamelen) argument
747 err = lzc_ioctl(ZFS_IOC_ROLLBACK, fsname, args, &result);
810 lzc_get_bookmarks(const char *fsname, nvlist_t *props, nvlist_t **bmarks) argument
812 return (lzc_ioctl(ZFS_IOC_GET_BOOKMARKS, fsname, props, bmarks));

Completed in 162 milliseconds

12