patch-2.4.0-test8 linux/fs/bfs/inode.c
Next file: linux/fs/binfmt_elf.c
Previous file: linux/fs/bfs/file.c
Back to the patch index
Back to the overall index
- Lines: 45
- Date:
Tue Sep 5 14:07:29 2000
- Orig file:
v2.4.0-test7/linux/fs/bfs/inode.c
- Orig date:
Mon Jul 10 16:47:25 2000
diff -u --recursive --new-file v2.4.0-test7/linux/fs/bfs/inode.c linux/fs/bfs/inode.c
@@ -127,7 +127,7 @@
di->i_eblock = inode->iu_eblock;
di->i_eoffset = di->i_sblock * BFS_BSIZE + inode->i_size - 1;
- mark_buffer_dirty(bh, 0);
+ mark_buffer_dirty(bh);
brelse(bh);
unlock_kernel();
}
@@ -169,7 +169,7 @@
}
di->i_ino = 0;
di->i_sblock = 0;
- mark_buffer_dirty(bh, 0);
+ mark_buffer_dirty(bh);
brelse(bh);
/* if this was the last file, make the previous
@@ -177,7 +177,7 @@
saves us 1 gap */
if (s->su_lf_eblk == inode->iu_eblock) {
s->su_lf_eblk = inode->iu_sblock - 1;
- mark_buffer_dirty(s->su_sbh, 1);
+ mark_buffer_dirty(s->su_sbh);
}
unlock_kernel();
clear_inode(inode);
@@ -205,7 +205,7 @@
static void bfs_write_super(struct super_block *s)
{
if (!(s->s_flags & MS_RDONLY))
- mark_buffer_dirty(s->su_sbh, 1);
+ mark_buffer_dirty(s->su_sbh);
s->s_dirt = 0;
}
@@ -314,7 +314,7 @@
iput(inode);
}
if (!(s->s_flags & MS_RDONLY)) {
- mark_buffer_dirty(bh, 1);
+ mark_buffer_dirty(bh);
s->s_dirt = 1;
}
dump_imap("read_super", s);
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)