| /src/sys/modules/mfs/ | 
| Makefile | 5 .PATH:	${S}/ufs/mfs 7 KMOD=	mfs
 
 | 
| /src/sys/ufs/ | 
| Makefile | 3 SUBDIR=	ffs lfs mfs ufs ext2fs 
 | 
| /src/sys/ufs/mfs/ | 
| Makefile | 3 INCSDIR= /usr/include/ufs/mfs 
 | 
| mfs_extern.h | 51 VFS_PROTOS(mfs); 
 | 
| mfs_miniroot.c | 39 #include <ufs/mfs/mfs_extern.h> 
 | 
| mfs_vfsops.c | 66 #include <ufs/mfs/mfsnode.h> 67 #include <ufs/mfs/mfs_extern.h>
 69 MODULE(MODULE_CLASS_VFS, mfs, "ffs");
 80  * mfs vfs operations.
 117 SYSCTL_SETUP(mfs_sysctl_setup, "mfs sysctl")
 122 		       CTLTYPE_NODE, "mfs",
 185  * Called by main() when mfs is going to be mounted as root.
 212 	cv_init(&mfsp->mfs_cv, "mfs");
 280 	 * the problem is that MFS needs to allocate pages to clean pages,
 
 | 
| mfs_vnops.c | 52 #include <ufs/mfs/mfsnode.h> 53 #include <ufs/mfs/mfs_extern.h>
 56  * mfs vnode operations.
 167 			printf("warning: mfs read during shutdown\n");
 
 | 
| /src/sys/rump/fs/lib/libmfs/ | 
| Makefile | 4 .PATH:  ${.CURDIR}/../../../../ufs/mfs 
 | 
| /src/sbin/newfs/ | 
| Makefile | 14 MLINKS=	mount_mfs.8 mfs.8 
 | 
| extern.h | 31 extern int	mfs;		/* run as the memory based filesystem */ 
 | 
| newfs.c | 121 #ifdef MFS 206 int	mfs;			/* run as the memory based filesystem */  variable in typeref:typename:int
 256 #ifdef MFS
 272 	if (strstr(getprogname(), "mfs")) {
 273 		mfs = 1;
 276 		if (argv[1] != NULL && !strcmp(argv[1], "-mfs")) {
 279 			mfs = 1;
 283 	opstring = mfs ?
 366 			if (mfs)
 390 			if (mfs) {
 [all...]
 | 
| mkfs.c | 124 #ifdef MFS 198 #ifdef MFS
 199 	if (mfs && !Nflag) {
 577 	if (!mfs && sblock.fs_magic == FS_UFS1_MAGIC) {
 731 	if (fsinit(&tv, mfsmode, mfsuid, mfsgid) == 0 && mfs)
 769 	/* mfs doesn't need these permanently allocated */
 1127 		if (mfs) {
 1150 		if (mfs) {
 1428 #ifdef MFS
 1429 	if (mfs) {
 [all...]
 | 
| /src/sbin/fsck_lfs/ | 
| pass5.c | 58 	int i, nsb, curr, labelcorrect, mfs;  local in function:pass5 77 	nsb = curr = labelcorrect = mfs = 0;
 135 	mfs = lfs_segtod(fs, (lfs_sb_getminfreeseg(fs) -
 142 	avail -= mfs;
 149 		      "+ curr %jd - mfs %jd - locked %jd = %jd\n",
 156 		      (intmax_t)mfs,
 
 | 
| /src/sys/arch/landisk/landisk/ | 
| machdep.c | 92 #include <ufs/mfs/mfs_extern.h>		/* mfs_initminiroot() */ 
 | 
| /src/sys/arch/mipsco/mipsco/ | 
| machdep.c | 69 #include <ufs/mfs/mfs_extern.h>		/* mfs_initminiroot() */ 
 | 
| /src/sys/arch/hpcmips/hpcmips/ | 
| machdep.c | 104 #include <ufs/mfs/mfs_extern.h>	/* mfs_initminiroot() */ 
 | 
| /src/sys/arch/newsmips/newsmips/ | 
| machdep.c | 75 #include <ufs/mfs/mfs_extern.h>		/* mfs_initminiroot() */ 
 | 
| /src/sys/arch/pmax/pmax/ | 
| machdep.c | 67 #include <ufs/mfs/mfs_extern.h>		/* mfs_initminiroot() */ 
 | 
| /src/sys/arch/arc/arc/ | 
| machdep.c | 71 #include <ufs/mfs/mfs_extern.h>		/* mfs_initminiroot() */ 
 | 
| /src/sys/arch/emips/emips/ | 
| machdep.c | 65 #include <ufs/mfs/mfs_extern.h>		/* mfs_initminiroot() */ 
 | 
| /src/sys/arch/hpcsh/hpcsh/ | 
| machdep.c | 60 #include <ufs/mfs/mfs_extern.h>		/* mfs_initminiroot() */ 
 | 
| /src/sys/modules/ | 
| Makefile | 130 SUBDIR+=	mfs 
 | 
| /src/sys/ufs/lfs/ | 
| lfs_vfsops.c | 1361 	int sn, nclean, nsb, labelcorrect, curr, mfs;  local in function:lfs_reset_avail 1392 	mfs = lfs_segtod(fs, (lfs_sb_getminfreeseg(fs) -
 1399 	avail -= mfs;
 1408 	       (intmax_t)mfs,
 
 | 
| /src/etc/ | 
| MAKEDEV.tmpl | 39 #	init	A set of devices that is used for MFS /dev by init. 667 		# Count inodes and create mfs file system.
 2526 	# Add 2 reserved inodes (needed for both mfs and tmpfs), and round
 2527 	# up to a multiple of 32 (needed for mfs, not needed for tmpfs).
 2529 	# Try tmpfs; if that fails try mfs.
 2549 			fstype=mfs
 
 |