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
- Lines: 39
- Date:
Tue Sep 5 14:07:29 2000
- Orig file:
v2.4.0-test7/linux/fs/fat/buffer.c
- Orig date:
Mon Aug 9 11:43:49 1999
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)