<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;"> fs/xfs/xfs_vfsops.c |    2 +-
 1 files changed, 1 insertion(+), 1 deletion(-)

diff -puN fs/xfs/xfs_vfsops.c~xfs-statfs-warning-fix fs/xfs/xfs_vfsops.c
--- 25-power4/fs/xfs/xfs_vfsops.c~xfs-statfs-warning-fix	2003-06-07 13:38:14.000000000 -0700
+++ 25-power4-akpm/fs/xfs/xfs_vfsops.c	2003-06-07 13:38:45.000000000 -0700
@@ -782,7 +782,7 @@ xfs_statvfs(
 		if (!mp-&gt;m_inoadd)
 #endif
 			statp-&gt;f_files =
-			    MIN(statp-&gt;f_files, mp-&gt;m_maxicount);
+			    min_t(sector_t, statp-&gt;f_files, mp-&gt;m_maxicount);
 	statp-&gt;f_ffree = statp-&gt;f_files - (sbp-&gt;sb_icount - sbp-&gt;sb_ifree);
 	XFS_SB_UNLOCK(mp, s);
 

_
</pre></body></html>