* [PATCH] fs/jfs/super.c: Fix compile warning - 'comparison of
@ 2009-11-03 5:36 Pete
0 siblings, 0 replies; only message in thread
From: Pete @ 2009-11-03 5:36 UTC (permalink / raw)
To: kernel-janitors
Hi,
Found a compile warning on linux-next:
fs/jfs/super.c: In function ‘jfs_fill_super’:
fs/jfs/super.c:527: warning: comparison of distinct pointer types lacks
a cast
and the corresponding fix::
Signed-off-by: Greg Petr <greg.petr@gmail.com>
diff --git a/fs/jfs/super.c b/fs/jfs/super.c
index 2234c73..3d8dbab 100644
--- a/fs/jfs/super.c
+++ b/fs/jfs/super.c
@@ -524,7 +524,8 @@ static int jfs_fill_super(struct super_block *sb,
void *data, int silent)
* Page cache is indexed by long.
* I would use MAX_LFS_FILESIZE, but it's only half as big
*/
- sb->s_maxbytes = min(((u64) PAGE_CACHE_SIZE << 32) - 1,
sb->s_maxbytes);
+ sb->s_maxbytes = min(((u64) PAGE_CACHE_SIZE << 32) - 1,
+ (u64)sb->s_maxbytes);
#endif
sb->s_time_gran = 1;
return 0;
Regards.
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2009-11-03 5:36 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-11-03 5:36 [PATCH] fs/jfs/super.c: Fix compile warning - 'comparison of Pete
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox