patch-2.3.34 linux/fs/ext2/balloc.c
Next file: linux/fs/fat/dir.c
Previous file: linux/fs/exec.c
Back to the patch index
Back to the overall index
- Lines: 38
- Date:
Mon Dec 20 16:06:56 1999
- Orig file:
v2.3.33/linux/fs/ext2/balloc.c
- Orig date:
Tue Dec 7 09:32:47 1999
diff -u --recursive --new-file v2.3.33/linux/fs/ext2/balloc.c linux/fs/ext2/balloc.c
@@ -118,8 +118,8 @@
*
* Return the slot used to store the bitmap, or a -ve error code.
*/
-static int load__block_bitmap (struct super_block * sb,
- unsigned int block_group)
+static int __load_block_bitmap (struct super_block * sb,
+ unsigned int block_group)
{
int i, j, retval = 0;
unsigned long block_bitmap_number;
@@ -136,7 +136,7 @@
if (sb->u.ext2_sb.s_block_bitmap_number[block_group] ==
block_group)
return block_group;
- ext2_error (sb, "load_block_bitmap",
+ ext2_error (sb, "__load_block_bitmap",
"block_group != block_bitmap_number");
}
retval = read_block_bitmap (sb, block_group, block_group);
@@ -192,7 +192,7 @@
* Return the slot number of the group in the superblock bitmap cache's on
* success, or a -ve error code.
*
- * There is still one inconsistancy here --- if the number of groups in this
+ * There is still one inconsistency here --- if the number of groups in this
* filesystems is <= EXT2_MAX_GROUP_LOADED, then we have no way of
* differentiating between a group for which we have never performed a bitmap
* IO request, and a group for which the last bitmap read request failed.
@@ -224,7 +224,7 @@
* If not, then do a full lookup for this block group.
*/
else {
- slot = load__block_bitmap (sb, block_group);
+ slot = __load_block_bitmap (sb, block_group);
}
/*
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)