[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <961aa3350802170830r6c1e314cx1871e00db0e9b690@mail.gmail.com>
Date: Mon, 18 Feb 2008 01:30:54 +0900
From: "Akinobu Mita" <akinobu.mita@...il.com>
To: "Theodore Tso" <tytso@....edu>
Cc: linux-ext4@...r.kernel.org,
"Andrew Morton" <akpm@...ux-foundation.org>
Subject: Re: [PATCH 1/3] ext2: improve ext2_readdir() return value
2008/2/17, Theodore Tso <tytso@....edu>:
> On Sun, Feb 17, 2008 at 02:56:13PM +0900, Akinobu Mita wrote:
> > This patch improves ext2_readdir() return value for ext2_get_page() failure
> > by using the actual result of ext2_get_page().
>
> > - return -EIO;
> > + return PTR_ERR(page);
>
> The patch is harmless, and maybe even a good thing from an abstract
> point of view, but you realize that EIO is the only thing that
> ext2_get_page() can return, right?
There are some cases that ext2_get_page() returns -ENOMEM logically.
(--> read_mapping_page --> read_cache_page --> read_cache_page_async -->
__read_cache_page --> page_cache_alloc_cold, or add_to_page_cache_lru)
But this is not likely to happen in reality.
-
To unsubscribe from this list: send the line "unsubscribe linux-ext4" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Powered by blists - more mailing lists