lkml.org 
[lkml]   [2004]   [May]   [2]   [last100]   RSS Feed
Views: [more markup]  [less markup]  [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
Subject[PATCH] FAT: small cleanup (3/4)
FromOGAWA Hirofumi <>
DateSun, 02 May 2004 22:10:31 +0900
Hi,

just small cleanup.
-- 
OGAWA Hirofumi <hirofumi@mail.parknet.co.jp>



 fs/fat/file.c |    2 +-
 fs/fat/misc.c |    2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)
diff -puN fs/fat/misc.c~fat_micro-cleanup fs/fat/misc.c
--- linux-2.6.6-rc3/fs/fat/misc.c~fat_micro-cleanup	2004-05-02 19:15:43.000000000 +0900
+++ linux-2.6.6-rc3-hirofumi/fs/fat/misc.c	2004-05-02 19:15:43.000000000 +0900
@@ -205,7 +205,7 @@ struct buffer_head *fat_extend_dir(struc
 	if (inode->i_size & (sb->s_blocksize - 1)) {
 		fat_fs_panic(sb, "Odd directory size");
 		inode->i_size = (inode->i_size + sb->s_blocksize)
-			& ~(sb->s_blocksize - 1);
+			& ~((loff_t)sb->s_blocksize - 1);
 	}
 	inode->i_size += MSDOS_SB(sb)->cluster_size;
 	MSDOS_I(inode)->mmu_private += MSDOS_SB(sb)->cluster_size;
diff -puN fs/fat/file.c~fat_micro-cleanup fs/fat/file.c
--- linux-2.6.6-rc3/fs/fat/file.c~fat_micro-cleanup	2004-05-02 19:15:43.000000000 +0900
+++ linux-2.6.6-rc3-hirofumi/fs/fat/file.c	2004-05-02 19:15:43.000000000 +0900
@@ -50,7 +50,7 @@ int fat_get_block(struct inode *inode, s
 		BUG();
 		return -EIO;
 	}
-	if (!((unsigned long)iblock % MSDOS_SB(sb)->sec_per_clus)) {
+	if (!((unsigned long)iblock & (MSDOS_SB(sb)->sec_per_clus - 1))) {
 		int error;
 
 		error = fat_add_cluster(inode);
_
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@vger.kernel.org
More majordomo info at  http://vger.kernel.org/majordomo-info.html
Please read the FAQ at  http://www.tux.org/lkml/

\
 
 \ /
  Last update: 2005-03-22 14:02    [from the cache]
©2003-2008