/src/tests/fs/ffs/ |
t_fifos.c | 102 const char *newfs = "newfs -F -s 10000 " IMGNAME; variable in typeref:typename:const char * 110 if (system(newfs) == -1) 111 atf_tc_fail_errno("newfs failed");
|
t_extattr.c | 82 const char *newfs = "newfs -O 2ea -F -s 10000 " IMGNAME; variable in typeref:typename:const char * 89 if (system(newfs) == -1) 90 atf_tc_fail_errno("newfs failed");
|
/src/sys/ufs/ext2fs/ |
ext2fs_vfsops.c | 604 struct ext2fs *newfs; local in function:ext2fs_reload 631 newfs = (struct ext2fs *)bp->b_data; 632 e2fs_sbload(newfs, &fs->e2fs);
|
/src/sys/ufs/ffs/ |
ffs_vfsops.c | 819 struct fs *fs, *newfs; local in function:ffs_reload 852 newfs = kmem_alloc(fs_sbsize, KM_SLEEP); 853 memcpy(newfs, bp->b_data, fs_sbsize); 857 ffs_sb_swap((struct fs *)bp->b_data, newfs); 858 newfs->fs_flags |= FS_SWAPPED; 861 newfs->fs_flags &= ~FS_SWAPPED; 866 if (newfs->fs_magic == FS_UFS2EA_MAGIC) { 868 newfs->fs_magic = FS_UFS2_MAGIC; 874 if ((newfs->fs_magic != FS_UFS1_MAGIC) && 875 (newfs->fs_magic != FS_UFS2_MAGIC)) [all...] |
/src/usr.sbin/sysinst/ |
disks.c | 1243 * Are we able to newfs this type of file system? 1267 char *newfs = NULL, devdev[PATH_MAX], rdev[PATH_MAX], local in function:make_filesystems 1285 "/sbin/newfs -V2 -O2ea %s", rdev); 1310 * Newfs all file systems marked as needing this. 1315 newfs = NULL; 1338 asprintf(&newfs, "/sbin/newfs %s", opts); 1363 asprintf(&newfs, 1364 "/sbin/newfs -V2 -O %s %s", 1376 asprintf(&newfs, "/sbin/newfs_lfs %s", opts) [all...] |