Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. =================================================================== RCS file: /ftp/cvs/cvsroot/src/sys/miscfs/fdesc/fdesc_vfsops.c,v rcsdiff: /ftp/cvs/cvsroot/src/sys/miscfs/fdesc/fdesc_vfsops.c,v: warning: Unknown phrases like `commitid ...;' are present. retrieving revision 1.2 retrieving revision 1.3 diff -u -p -r1.2 -r1.3 --- src/sys/miscfs/fdesc/fdesc_vfsops.c 1993/03/25 06:00:18 1.2 +++ src/sys/miscfs/fdesc/fdesc_vfsops.c 1993/06/07 04:56:35 1.3 @@ -33,7 +33,7 @@ * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF * SUCH DAMAGE. * - * $Id: fdesc_vfsops.c,v 1.2 1993/03/25 06:00:18 cgd Exp $ + * $Id: fdesc_vfsops.c,v 1.3 1993/06/07 04:56:35 cgd Exp $ */ /* @@ -92,7 +92,7 @@ fdesc_mount(mp, path, data, ndp, p) return (error); fmp = (struct fdescmount *) malloc(sizeof(struct fdescmount), - M_UFSMNT, M_WAITOK); /* XXX */ + M_MISCFSMNT, M_WAITOK); rvp->v_type = VDIR; rvp->v_flag |= VROOT; /*VTOFDESC(rvp)->f_isroot = 1;*/ @@ -179,7 +179,7 @@ fdesc_unmount(mp, mntflags, p) /* * Finally, throw away the fdescmount structure */ - free(mp->mnt_data, M_UFSMNT); /* XXX */ + free(mp->mnt_data, M_MISCFSMNT); mp->mnt_data = 0; return 0; }