patch-2.4.0-test8 linux/fs/udf/balloc.c
Next file: linux/fs/udf/file.c
Previous file: linux/fs/sysv/truncate.c
Back to the patch index
Back to the overall index
- Lines: 52
- Date:
Tue Sep 5 14:07:30 2000
- Orig file:
v2.4.0-test7/linux/fs/udf/balloc.c
- Orig date:
Mon Mar 27 08:08:30 2000
diff -u --recursive --new-file v2.4.0-test7/linux/fs/udf/balloc.c linux/fs/udf/balloc.c
@@ -268,7 +268,7 @@
}
}
}
- mark_buffer_dirty(bh, 1);
+ mark_buffer_dirty(bh);
if (overflow)
{
block += count;
@@ -278,7 +278,7 @@
error_return:
sb->s_dirt = 1;
if (UDF_SB_LVIDBH(sb))
- mark_buffer_dirty(UDF_SB_LVIDBH(sb), 1);
+ mark_buffer_dirty(UDF_SB_LVIDBH(sb));
unlock_super(sb);
return;
}
@@ -334,7 +334,7 @@
bit ++;
block ++;
}
- mark_buffer_dirty(bh, 1);
+ mark_buffer_dirty(bh);
if (block_count > 0)
goto repeat;
out:
@@ -342,7 +342,7 @@
{
UDF_SB_LVID(sb)->freeSpaceTable[partition] =
cpu_to_le32(le32_to_cpu(UDF_SB_LVID(sb)->freeSpaceTable[partition])-alloc_count);
- mark_buffer_dirty(UDF_SB_LVIDBH(sb), 1);
+ mark_buffer_dirty(UDF_SB_LVIDBH(sb));
}
sb->s_dirt = 1;
unlock_super(sb);
@@ -478,13 +478,13 @@
goto repeat;
}
- mark_buffer_dirty(bh, 1);
+ mark_buffer_dirty(bh);
if (UDF_SB_LVIDBH(sb))
{
UDF_SB_LVID(sb)->freeSpaceTable[partition] =
cpu_to_le32(le32_to_cpu(UDF_SB_LVID(sb)->freeSpaceTable[partition])-1);
- mark_buffer_dirty(UDF_SB_LVIDBH(sb), 1);
+ mark_buffer_dirty(UDF_SB_LVIDBH(sb));
}
sb->s_dirt = 1;
unlock_super(sb);
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)