summaryrefslogtreecommitdiffstats
path: root/fs/ufs/super.c
diff options
context:
space:
mode:
authorRalf Baechle <ralf@linux-mips.org>2000-10-05 01:18:40 +0000
committerRalf Baechle <ralf@linux-mips.org>2000-10-05 01:18:40 +0000
commit012bb3e61e5eced6c610f9e036372bf0c8def2d1 (patch)
tree87efc733f9b164e8c85c0336f92c8fb7eff6d183 /fs/ufs/super.c
parent625a1589d3d6464b5d90b8a0918789e3afffd220 (diff)
Merge with Linux 2.4.0-test9. Please check DECstation, I had a number
of rejects to fixup while integrating Linus patches. I also found that this kernel will only boot SMP on Origin; the UP kernel freeze soon after bootup with SCSI timeout messages. I commit this anyway since I found that the last CVS versions had the same problem.
Diffstat (limited to 'fs/ufs/super.c')
-rw-r--r--fs/ufs/super.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/fs/ufs/super.c b/fs/ufs/super.c
index c41228adf..6d83d7c51 100644
--- a/fs/ufs/super.c
+++ b/fs/ufs/super.c
@@ -192,7 +192,7 @@ void ufs_error (struct super_block * sb, const char * function,
if (!(sb->s_flags & MS_RDONLY)) {
usb1->fs_clean = UFS_FSBAD;
- ubh_mark_buffer_dirty(USPI_UBH, 1);
+ ubh_mark_buffer_dirty(USPI_UBH);
sb->s_dirt = 1;
sb->s_flags |= MS_RDONLY;
}
@@ -224,7 +224,7 @@ void ufs_panic (struct super_block * sb, const char * function,
if (!(sb->s_flags & MS_RDONLY)) {
usb1->fs_clean = UFS_FSBAD;
- ubh_mark_buffer_dirty(USPI_UBH, 1);
+ ubh_mark_buffer_dirty(USPI_UBH);
sb->s_dirt = 1;
}
va_start (args, fmt);
@@ -422,7 +422,7 @@ void ufs_put_cylinder_structures (struct super_block * sb) {
ubh_memcpyubh (ubh, space, size);
space += size;
ubh_mark_buffer_uptodate (ubh, 1);
- ubh_mark_buffer_dirty (ubh, 0);
+ ubh_mark_buffer_dirty (ubh);
ubh_brelse (ubh);
}
for (i = 0; i < sb->u.ufs_sb.s_cg_loaded; i++) {
@@ -845,7 +845,7 @@ void ufs_write_super (struct super_block * sb) {
if ((flags & UFS_ST_MASK) == UFS_ST_SUN
|| (flags & UFS_ST_MASK) == UFS_ST_SUNx86)
ufs_set_fs_state(usb1, usb3, UFS_FSOK - SWAB32(usb1->fs_time));
- ubh_mark_buffer_dirty (USPI_UBH, 1);
+ ubh_mark_buffer_dirty (USPI_UBH);
}
sb->s_dirt = 0;
UFSD(("EXIT\n"))
@@ -915,7 +915,7 @@ int ufs_remount (struct super_block * sb, int * mount_flags, char * data)
if ((flags & UFS_ST_MASK) == UFS_ST_SUN
|| (flags & UFS_ST_MASK) == UFS_ST_SUNx86)
ufs_set_fs_state(usb1, usb3, UFS_FSOK - SWAB32(usb1->fs_time));
- ubh_mark_buffer_dirty (USPI_UBH, 1);
+ ubh_mark_buffer_dirty (USPI_UBH);
sb->s_dirt = 0;
sb->s_flags |= MS_RDONLY;
}