Date: Wed, 8 Mar 2006 21:05:00 GMT From: Robert Watson <rwatson@FreeBSD.org> To: Perforce Change Reviews <perforce@freebsd.org> Subject: PERFORCE change 92984 for review Message-ID: <200603082105.k28L50ht040673@repoman.freebsd.org>
next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=92984 Change 92984 by rwatson@rwatson_peppercorn on 2006/03/08 21:04:44 Re-enable old UFS mount code for the time being, as the lmount() changes are not currently good. Affected files ... .. //depot/projects/trustedbsd/sebsd/sbin/mount/mount.c#12 edit Differences ... ==== //depot/projects/trustedbsd/sebsd/sbin/mount/mount.c#12 (text+ko) ==== @@ -469,6 +469,17 @@ free(optbuf); return (1); case 0: /* Child. */ + /* + * XXXRW: In the new world order, nmount() is also used for + * UFS. With the SEBSD-local lmount changes, the following + * block of code was not used, as mount_ufs contained + * special support. + */ +#if 1 + if (strcmp(vfstype, "ufs") == 0) + exit(mount_ufs(argc, (char * const *) argv)); +#endif + /* Go find an executable. */ execvP(execname, _PATH_SYSPATH, (char * const *)argv); if (errno == ENOENT) {
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200603082105.k28L50ht040673>