patch-2.4.0-test8 linux/fs/fat/buffer.c

Next file: linux/fs/fat/cache.c
Previous file: linux/fs/ext2/truncate.c
Back to the patch index
Back to the overall index

diff -u --recursive --new-file v2.4.0-test7/linux/fs/fat/buffer.c linux/fs/fat/buffer.c
@@ -32,10 +32,9 @@
 }
 void fat_mark_buffer_dirty (
 	struct super_block *sb,
-	struct buffer_head *bh,
-	int dirty)
+	struct buffer_head *bh)
 {
-	MSDOS_SB(sb)->cvf_format->cvf_mark_buffer_dirty(sb,bh,dirty);
+	MSDOS_SB(sb)->cvf_format->cvf_mark_buffer_dirty(sb,bh);
 }
 void fat_set_uptodate (
 	struct super_block *sb,
@@ -71,10 +70,9 @@
 }
 void default_fat_mark_buffer_dirty (
 	struct super_block *sb,
-	struct buffer_head *bh,
-	int dirty)
+	struct buffer_head *bh)
 {
-	mark_buffer_dirty (bh,dirty);
+	mark_buffer_dirty (bh);
 }
 void default_fat_set_uptodate (
 	struct super_block *sb,
@@ -170,10 +168,9 @@
 
 void bigblock_fat_mark_buffer_dirty (
 	struct super_block *sb,
-	struct buffer_head *bh,
-	int dirty)
+	struct buffer_head *bh)
 {
-	mark_buffer_dirty (bh->b_next,dirty);
+	mark_buffer_dirty (bh->b_next);
 }
 
 void bigblock_fat_set_uptodate (

FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)