View | Details | Raw Unified | Return to bug 18505
Collapse All | Expand All

(-)vfs_conf.c (+7 lines)
Lines 235-240 Link Here
235
		/* sanity check system clock against root filesystem timestamp */
235
		/* sanity check system clock against root filesystem timestamp */
236
		inittodr(mp->mnt_time);
236
		inittodr(mp->mnt_time);
237
		vfs_unbusy(mp, curproc);
237
		vfs_unbusy(mp, curproc);
238
239
		/* 
240
		 * MFS grabs the process when it calls VFS_START and doesn't
241
		 * let it go, but MFS won't allow itself to be mounted as root.
242
		 */
243
244
		error = VFS_START(mp, 0, curproc);
238
	}
245
	}
239
	return(error);
246
	return(error);
240
}
247
}
(-)mfs_vfsops.c (-1 / +1 lines)
Lines 182-188 Link Here
182
		 ***
182
		 ***
183
		 */
183
		 */
184
184
185
		/* you loose */
185
		/* you lose */
186
		panic("mfs_mount: mount MFS as root: not configured!");
186
		panic("mfs_mount: mount MFS as root: not configured!");
187
	}
187
	}

Return to bug 18505