ChangeLog, super.c:

super.c: Minor whitespace cleanups, from Andreas Dilger.
mtrace.h:
  mtrace.h: Minor whitespace cleanups, from Andreas Dilger.
ChangeLog, message.c:
  message.c (special_inode_name): Add more special inode names (From
  	Andreas Dilger)
bitmap-optimize
Theodore Ts'o 2001-01-12 21:05:57 +00:00
parent 58a75177ca
commit 721edd0edd
4 changed files with 13 additions and 5 deletions

View File

@ -1,10 +1,14 @@
2001-01-12 Theodore Ts'o <tytso@valinux.com>
* message.c (special_inode_name): Add more special inode names
(From Andreas Dilger)
* util.c (fatal_error): Check to make sure the io_manager data
structure is sane before trying to flush the io_channel.
(From Andreas Dilger)
* pass2.c: Minor whitespace cleanups, from Andreas Dilger.
* mtrace.h, super.c, pass2.c: Minor whitespace cleanups, from
Andreas Dilger.
* journal.c (e2fsck_journal_fix_bad_inode): Set pctx->ino to the
bad journal number.

View File

@ -130,7 +130,7 @@ static const char *abbrevs[] = {
/*
* Give more user friendly names to the "special" inodes.
*/
#define num_special_inodes 7
#define num_special_inodes 11
static const char *special_inode_name[] =
{
N_("<The NULL inode>"), /* 0 */
@ -139,7 +139,11 @@ static const char *special_inode_name[] =
N_("<The ACL index inode>"), /* 3 */
N_("<The ACL data inode>"), /* 4 */
N_("<The boot loader inode>"), /* 5 */
N_("<The undelete directory inode>") /* 6 */
N_("<The undelete directory inode>"), /* 6 */
N_("<The group descriptor inode>"), /* 7 */
N_("<The journal inode>"), /* 8 */
N_("<Reserved inode 9>"), /* 9 */
N_("<Reserved inode 10>"), /* 10 */
};
/*

View File

@ -228,4 +228,4 @@ extern struct mstats mstats __P ((void));
}
#endif
#endif /* malloc.h */
#endif /* mtrace.h */

View File

@ -165,7 +165,7 @@ static int release_inode_block(ext2_filsys fs,
* not deleted.
*/
static int release_inode_blocks(e2fsck_t ctx, ext2_ino_t ino,
struct ext2_inode *inode, char* block_buf,
struct ext2_inode *inode, char *block_buf,
struct problem_context *pctx)
{
ext2_filsys fs = ctx->fs;