From: Jan Blunck <j.blunck@tu-harburg.de>
To: Linus Torvalds <torvalds@osdl.org>, Andrew Morton <akpm@osdl.org>
Cc: Linux-Kernel Mailing List <linux-kernel@vger.kernel.org>
Subject: [PATCH][RESEND] don't allow sys_readahead() on files opened with O_DIRECT
Date: Fri, 19 Aug 2005 14:44:39 +0200 [thread overview]
Message-ID: <4305D437.4000703@tu-harburg.de> (raw)
[-- Attachment #1: Type: text/plain, Size: 254 bytes --]
IMO sys_readahead() doesn't make sense if the file is opened with
O_DIRECT, because the page cache is stuffed but never used. Therefore
this patch changes that by letting the call return with -EINVAL.
Signed-off-by: Jan Blunck <j.blunck@tu-harburg.de>
[-- Attachment #2: filemap.c_direct_IO_readahead.diff --]
[-- Type: text/x-patch, Size: 636 bytes --]
mm/filemap.c | 3 ++-
1 files changed, 2 insertions(+), 1 deletion(-)
Index: experimental-jb/mm/filemap.c
===================================================================
--- experimental-jb.orig/mm/filemap.c
+++ experimental-jb/mm/filemap.c
@@ -1111,7 +1111,8 @@ static ssize_t
do_readahead(struct address_space *mapping, struct file *filp,
unsigned long index, unsigned long nr)
{
- if (!mapping || !mapping->a_ops || !mapping->a_ops->readpage)
+ if (!mapping || !mapping->a_ops || !mapping->a_ops->readpage
+ || (filp->f_flags & O_DIRECT))
return -EINVAL;
force_page_cache_readahead(mapping, filp, index,
next reply other threads:[~2005-08-23 15:17 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2005-08-19 12:44 Jan Blunck [this message]
2005-08-25 8:24 ` [PATCH][RESEND] don't allow sys_readahead() on files opened with O_DIRECT Andrew Morton
2005-08-25 12:13 ` Jan Blunck
2005-08-25 12:46 ` Christoph Hellwig
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=4305D437.4000703@tu-harburg.de \
--to=j.blunck@tu-harburg.de \
--cc=akpm@osdl.org \
--cc=linux-kernel@vger.kernel.org \
--cc=torvalds@osdl.org \
/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