Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 7 Jan 2004 17:13:57 -0800 (PST)
From:      Robert Watson <rwatson@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 44929 for review
Message-ID:  <200401080113.i081DvrB022319@repoman.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://perforce.freebsd.org/chv.cgi?CH=44929

Change 44929 by rwatson@rwatson_tislabs on 2004/01/07 17:13:04

	Don't automatically flag pseudofs file systems as multi-label,
	as they won't necessarily be.  If a pseudofs file system doesn't
	know how to label vnodes, you end up with incomplete labels
	resulting in a panic.  If a pseudofs file system is multilabel,
	it should set the mount flag itself.

Affected files ...

.. //depot/projects/trustedbsd/mac/sys/fs/pseudofs/pseudofs.c#10 edit

Differences ...

==== //depot/projects/trustedbsd/mac/sys/fs/pseudofs/pseudofs.c#10 (text+ko) ====

@@ -255,9 +255,6 @@
 		return (EOPNOTSUPP);
 
 	mp->mnt_flag |= MNT_LOCAL;
-#ifdef MAC
-	mp->mnt_flag |= MNT_MULTILABEL;
-#endif
 	mp->mnt_data = (qaddr_t)pi;
 	vfs_getnewfsid(mp);
 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?200401080113.i081DvrB022319>