Re: [PATCH 12/30] IGET: Stop EXT3 from using iget() and read_inode()

From: Jan Kara
Date: Tue Oct 02 2007 - 06:28:56 EST


And one more thing...

> diff --git a/fs/ext3/ialloc.c b/fs/ext3/ialloc.c
> index e45dbd6..c2f0a0d 100644
> --- a/fs/ext3/ialloc.c
> +++ b/fs/ext3/ialloc.c
> @@ -646,7 +646,7 @@ struct inode *ext3_orphan_get(struct super_block *sb, unsigned long ino)
> unsigned long block_group;
> int bit;
> struct buffer_head *bitmap_bh = NULL;
> - struct inode *inode = NULL;
> + struct inode *inode = ERR_PTR(-EIO);
>
> /* Error cases - e2fsck has already cleaned up for us */
> if (ino > max_ino) {
> @@ -668,9 +668,14 @@ struct inode *ext3_orphan_get(struct super_block *sb, unsigned long ino)
> * is a valid orphan (no e2fsck run on fs). Orphans also include
> * inodes that were being truncated, so we can't check i_nlink==0.
> */
> - if (!ext3_test_bit(bit, bitmap_bh->b_data) ||
> - !(inode = iget(sb, ino)) || is_bad_inode(inode) ||
> - NEXT_ORPHAN(inode) > max_ino) {
> + if (ext3_test_bit(bit, bitmap_bh->b_data))
> + goto out;
You inverted the test here, didn't you?

Honza
--
Jan Kara <jack@xxxxxxx>
SuSE CR Labs
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/