Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 21 Mar 2006 02:56:59 GMT
From:      Kip Macy <kmacy@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 93677 for review
Message-ID:  <200603210256.k2L2uxFq094159@repoman.freebsd.org>

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

Change 93677 by kmacy@kmacy_storage:sun4vtmp on 2006/03/21 02:56:50

	handle absence of maxfilesize field on Solaris' UFS

Affected files ...

.. //depot/projects/kmacy_sun4v/src/sys/ufs/ffs/ffs_vfsops.c#4 edit

Differences ...

==== //depot/projects/kmacy_sun4v/src/sys/ufs/ffs/ffs_vfsops.c#4 (text+ko) ====

@@ -901,7 +901,9 @@
 	if (fs->fs_magic == FS_UFS1_MAGIC) {
 		ump->um_savedmaxfilesize = fs->fs_maxfilesize;
 		maxfilesize = (uint64_t)0x80000000 * fs->fs_bsize - 1;
+#ifndef SIMULATOR
 		if (fs->fs_maxfilesize > maxfilesize)
+#endif
 			fs->fs_maxfilesize = maxfilesize;
 	}
 	/* Compatibility for old filesystems */



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