| /netbsd-src/external/bsd/am-utils/dist/amd/ |
| H A D | restart.c | 50 restart_fake_mntfs(mntent_t *me, am_ops *fs_ops) in restart_fake_mntfs() argument 83 mf = find_mntfs(fs_ops, &mo, me->mnt_dir, in restart_fake_mntfs() 93 if (fs_ops->fs_init) { in restart_fake_mntfs() 99 (void) (*fs_ops->fs_init) (mf); in restart_fake_mntfs() 102 me->mnt_fsname, fs_ops->fs_type, me->mnt_dir, mf->mf_flags); in restart_fake_mntfs() 138 am_ops *fs_ops = NULL; in restart() local 154 fs_ops = ops_search(me->mnt_type); in restart() 160 if (!fs_ops) in restart() 161 fs_ops = &amfs_link_ops; in restart() 163 restart_fake_mntfs(me, fs_ops); in restart() [all …]
|
| /netbsd-src/sys/arch/i386/stand/efiboot/ |
| H A D | devopen.h | 32 extern struct fs_ops file_system_disk[]; 33 extern struct fs_ops file_system_nfs; 34 extern struct fs_ops file_system_tftp; 35 extern struct fs_ops file_system_null; 48 struct fs_ops *ops;
|
| H A D | conf.c | 75 struct fs_ops file_system[] = { 93 struct fs_ops file_system_disk[] = { 112 struct fs_ops file_system_null = FS_OPS(null); 114 struct fs_ops file_system_nfs = FS_OPS(nfs); 117 struct fs_ops file_system_tftp = FS_OPS(tftp);
|
| /netbsd-src/sys/arch/sandpoint/stand/altboot/ |
| H A D | devopen.c | 48 struct fs_ops file_system[1] = { FS_OPS(null) }; 50 struct fs_ops fs_nfs = FS_OPS(nfs); 51 struct fs_ops fs_tftp = FS_OPS(tftp); 52 struct fs_ops fs_ffsv2 = FS_OPS(ffsv2); 53 struct fs_ops fs_ffsv1 = FS_OPS(ffsv1); 54 struct fs_ops fs_mem = FS_OPS(mem);
|
| /netbsd-src/sys/arch/evbarm/stand/boot2440/ |
| H A D | devopen.c | 61 struct fs_ops ops_nfs = FS_OPS(nfs); 62 struct fs_ops ops_tftp = FS_OPS(tftp); 63 struct fs_ops ops_ext2fs = FS_OPS(ext2fs); 64 struct fs_ops ops_dosfs = FS_OPS(dosfs); 65 struct fs_ops ops_bsdfs = FS_OPS(ufs); 66 struct fs_ops file_system[1];
|
| /netbsd-src/sys/stand/efiboot/ |
| H A D | conf.c | 54 struct fs_ops file_system[] = { 63 struct fs_ops null_fs_ops = FS_OPS(null); 64 struct fs_ops tftp_fs_ops = FS_OPS(tftp); 65 struct fs_ops nfs_fs_ops = FS_OPS(nfs);
|
| H A D | efiboot.h | 47 extern struct fs_ops null_fs_ops; 48 extern struct fs_ops tftp_fs_ops; 49 extern struct fs_ops nfs_fs_ops;
|
| /netbsd-src/sys/arch/x68k/stand/boot/ |
| H A D | conf.c | 60 struct fs_ops file_system_ustarfs[] = { 63 struct fs_ops file_system_nfs[] = { 67 struct fs_ops file_system[] = { 78 struct fs_ops file_system_net = FS_OPS(nfs);
|
| /netbsd-src/sys/arch/macppc/stand/ofwboot/ |
| H A D | ofdev.c | 122 static struct fs_ops file_system_ffsv1 = FS_OPS(ffsv1); 123 static struct fs_ops file_system_ffsv2 = FS_OPS(ffsv2); 124 static struct fs_ops file_system_lfsv1 = FS_OPS(lfsv1); 125 static struct fs_ops file_system_lfsv2 = FS_OPS(lfsv2); 126 static struct fs_ops file_system_hfs = FS_OPS(hfs); 127 static struct fs_ops file_system_ustarfs = FS_OPS(ustarfs); 128 static struct fs_ops file_system_cd9660 = FS_OPS(cd9660); 129 static struct fs_ops file_system_nfs = FS_OPS(nfs); 130 static struct fs_ops file_system_dosfs = FS_OPS(dosfs); 132 struct fs_ops file_system[9];
|
| /netbsd-src/sys/arch/ews4800mips/stand/common/ |
| H A D | devopen.c | 47 extern struct fs_ops datafs_ops; 48 extern struct fs_ops bfs_ops; 49 struct fs_ops ufs_ops = FS_OPS(ufs); 50 struct fs_ops nfs_ops = FS_OPS(nfs); 57 struct fs_ops file_system[1];
|
| /netbsd-src/sys/arch/newsmips/stand/boot/ |
| H A D | devopen.c | 58 struct fs_ops file_system_ufs = FS_OPS(ufs); 59 struct fs_ops file_system_nfs = FS_OPS(nfs); 61 struct fs_ops file_system_ustarfs = FS_OPS(ustarfs); 62 struct fs_ops file_system[2]; 64 struct fs_ops file_system[1];
|
| /netbsd-src/sys/arch/sparc/stand/common/ |
| H A D | conf.c | 39 struct fs_ops file_system_ufs[] = { 44 struct fs_ops file_system_nfs[] = { 48 struct fs_ops file_system[2];
|
| /netbsd-src/sys/arch/hp300/stand/common/ |
| H A D | conf.c | 141 struct fs_ops file_system_rawfs[1] = { FS_OPS(rawfs) }; 142 struct fs_ops file_system_ufs[NFSYS_FS] = { 151 struct fs_ops file_system_nfs[1] = { FS_OPS(nfs) }; 153 struct fs_ops file_system[NFSYS_FS];
|
| H A D | conf.h | 80 extern struct fs_ops file_system_rawfs[1]; 81 extern struct fs_ops file_system_ufs[NFSYS_FS]; 82 extern struct fs_ops file_system_nfs[1];
|
| /netbsd-src/sys/arch/i386/stand/pxeboot/ |
| H A D | conf.c | 54 struct fs_ops file_system_nfs = FS_OPS(nfs); 58 struct fs_ops file_system_tftp = FS_OPS(tftp); 72 struct fs_ops file_system[1];
|
| /netbsd-src/sys/arch/luna68k/stand/boot/ |
| H A D | conf.c | 102 struct fs_ops file_system_disk[] = { 109 struct fs_ops file_system_nfs[] = { FS_OPS(nfs) }; 113 struct fs_ops file_system[MAX_NFSYS];
|
| /netbsd-src/sys/arch/ofppc/stand/ofwboot/ |
| H A D | ofdev.c | 175 static struct fs_ops file_system_ufs = FS_OPS(ufs); 176 static struct fs_ops file_system_cd9660 = FS_OPS(cd9660); 177 static struct fs_ops file_system_dosfs = FS_OPS(dosfs); 178 static struct fs_ops file_system_nfs = FS_OPS(nfs); 180 struct fs_ops file_system[3];
|
| /netbsd-src/sys/arch/i386/stand/dosboot/ |
| H A D | devopen.c | 44 static struct fs_ops dosfs = { 47 static struct fs_ops ufsfs = { 51 struct fs_ops file_system[] = {
|
| /netbsd-src/sys/arch/hpcmips/stand/libsa/ |
| H A D | devopen.c | 52 static struct fs_ops winop = { 56 static struct fs_ops ufsop = { 60 struct fs_ops file_system[] = {
|
| /netbsd-src/sys/arch/shark/stand/ofwboot/ |
| H A D | ofdev.c | 158 static struct fs_ops file_system_ufs = FS_OPS(ufs); 159 static struct fs_ops file_system_cd9660 = FS_OPS(cd9660); 160 static struct fs_ops file_system_dosfs = FS_OPS(dosfs); 161 static struct fs_ops file_system_nfs = FS_OPS(nfs); 163 struct fs_ops file_system[3];
|
| /netbsd-src/sys/arch/prep/stand/boot/ |
| H A D | filesystem.c | 36 struct fs_ops file_system[] = { 42 int nfsys = sizeof (file_system)/sizeof (struct fs_ops);
|
| /netbsd-src/sys/arch/rs6000/stand/boot/ |
| H A D | filesystem.c | 34 struct fs_ops file_system[] = { 38 int nfsys = sizeof (file_system)/sizeof (struct fs_ops);
|
| /netbsd-src/sys/arch/bebox/stand/boot/ |
| H A D | filesystem.c | 36 struct fs_ops file_system[] = { 43 int nfsys = sizeof (file_system)/sizeof (struct fs_ops);
|
| /netbsd-src/sys/arch/sbmips/stand/boot/ |
| H A D | filesystem.c | 42 struct fs_ops file_system[] = { 50 int nfsys = sizeof(file_system)/sizeof(struct fs_ops);
|
| /netbsd-src/sys/arch/evbmips/stand/sbmips/boot/ |
| H A D | filesystem.c | 42 struct fs_ops file_system[] = { 50 int nfsys = sizeof(file_system)/sizeof(struct fs_ops);
|