From: Andrew Morton <akpm@linux-foundation.org>
To: Mark Rutland <mark.rutland@arm.com>
Cc: linux-kernel@vger.kernel.org
Subject: Re: [PATCH] mm: readahead: fix do_readahead for no readpage(s)
Date: Tue, 28 Jan 2014 12:03:01 -0800 [thread overview]
Message-ID: <20140128120301.581c90caeb1c49e346b6aa66@linux-foundation.org> (raw)
In-Reply-To: <1390907659-11675-1-git-send-email-mark.rutland@arm.com>
On Tue, 28 Jan 2014 11:14:19 +0000 Mark Rutland <mark.rutland@arm.com> wrote:
> Commit 63d0f0a3c7e1 (mm/readahead.c:do_readhead(): don't check for
> ->readpage) unintentionally made do_readahead return 0 for all valid
> files regardless of whether readahead was supported, rather than the
> expected -EINVAL. This gets forwarded on to userspace, and results in
> sys_readahead appearing to succeed in cases that don't make sense (e.g.
> when called on pipes or sockets). This issue is detected by the LTP
> readahead01 testcase.
How can this be?
: static ssize_t
: do_readahead(struct address_space *mapping, struct file *filp,
: pgoff_t index, unsigned long nr)
: {
: if (!mapping || !mapping->a_ops)
: return -EINVAL;
:
: return force_page_cache_readahead(mapping, filp, index, nr);
: }
and
: int force_page_cache_readahead(struct address_space *mapping, struct file *filp,
: pgoff_t offset, unsigned long nr_to_read)
: {
: if (unlikely(!mapping->a_ops->readpage && !mapping->a_ops->readpages))
: return -EINVAL;
Clearly, do_readahead() will return -EINVAL if neither ->readpage or
->readpages are implemented.
I can see that the behaviour would change if the address_space
implements only one of ->readpage and ->readpages, but that doesn't
appear to match your description and the new behaviour is correct - we
can now perform readahead for address_spaces which implement
->readpages and not ->readpage (which would be odd and might not work
for other reasons..).
next prev parent reply other threads:[~2014-01-28 20:03 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-01-28 11:14 Mark Rutland
2014-01-28 11:53 ` Kirill A. Shutemov
2014-01-28 20:03 ` Andrew Morton [this message]
2014-01-28 21:01 ` Kirill A. Shutemov
2014-01-28 21:09 ` Andrew Morton
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20140128120301.581c90caeb1c49e346b6aa66@linux-foundation.org \
--to=akpm@linux-foundation.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mark.rutland@arm.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®