* [PATCH] fcntl: Add the F_READAHEAD command
@ 2010-11-25 9:54 Morten Hustveit
2010-11-25 18:08 ` Andreas Dilger
0 siblings, 1 reply; 3+ messages in thread
From: Morten Hustveit @ 2010-11-25 9:54 UTC (permalink / raw)
To: linux-fsdevel; +Cc: linux-kernel
Allow userland applications to control the read-ahead per file descriptor.
For example, this interface can be used to adjust read sizes in applications
using sendfile() to serve many streams from disk.
The implementation is based on sys_readahead() and sys_fadvise64().
The same interface was added to FreeBSD in 2009.
Signed-off-by: Morten Hustveit <mortehu@ping.uio.no>
---
diff --git a/fs/fcntl.c b/fs/fcntl.c
index ecc8b39..19a8a46 100644
--- a/fs/fcntl.c
+++ b/fs/fcntl.c
@@ -340,6 +340,31 @@ static int f_getown_ex(struct file *filp, unsigned long arg)
return ret;
}
+static int f_readahead(struct file *filp, unsigned long arg)
+{
+ struct address_space *mapping;
+
+ mapping = filp->f_mapping;
+ if (!mapping || !mapping->a_ops || !mapping->a_ops->readpage)
+ return -EINVAL;
+
+ if (mapping->a_ops->get_xip_mem)
+ return 0;
+
+ if (arg) {
+ filp->f_ra.ra_pages = (arg + PAGE_SIZE - 1) >> PAGE_SHIFT;
+ spin_lock(&filp->f_lock);
+ filp->f_mode &= ~FMODE_RANDOM;
+ spin_unlock(&filp->f_lock);
+ } else {
+ spin_lock(&filp->f_lock);
+ filp->f_mode |= FMODE_RANDOM;
+ spin_unlock(&filp->f_lock);
+ }
+
+ return 0;
+}
+
static long do_fcntl(int fd, unsigned int cmd, unsigned long arg,
struct file *filp)
{
@@ -420,6 +445,9 @@ static long do_fcntl(int fd, unsigned int cmd, unsigned long arg,
case F_GETPIPE_SZ:
err = pipe_fcntl(filp, cmd, arg);
break;
+ case F_READAHEAD:
+ err = f_readahead(filp, arg);
+ break;
default:
break;
}
diff --git a/include/linux/fcntl.h b/include/linux/fcntl.h
index afc00af..69d8e4d 100644
--- a/include/linux/fcntl.h
+++ b/include/linux/fcntl.h
@@ -28,6 +28,11 @@
#define F_GETPIPE_SZ (F_LINUX_SPECIFIC_BASE + 8)
/*
+ * Set read-ahead buffer size
+ */
+#define F_READAHEAD (F_LINUX_SPECIFIC_BASE + 9)
+
+/*
* Types of directory notifications that may be requested.
*/
#define DN_ACCESS 0x00000001 /* File accessed */
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] fcntl: Add the F_READAHEAD command
2010-11-25 9:54 [PATCH] fcntl: Add the F_READAHEAD command Morten Hustveit
@ 2010-11-25 18:08 ` Andreas Dilger
2010-11-26 0:36 ` [PATCH v2] " Morten Hustveit
0 siblings, 1 reply; 3+ messages in thread
From: Andreas Dilger @ 2010-11-25 18:08 UTC (permalink / raw)
To: Morten Hustveit; +Cc: linux-fsdevel, linux-kernel
On 2010-11-25, at 02:54, Morten Hustveit wrote:
> +static int f_readahead(struct file *filp, unsigned long arg)
> +{
> + if (arg) {
> + filp->f_ra.ra_pages = (arg + PAGE_SIZE - 1) >> PAGE_SHIFT;
Functionality itself is fine, but it would be clearer if you used a better variable name than "arg" here. Something like "readahead_bytes" or similar would make it immediately clear what the parameter is.
> + spin_lock(&filp->f_lock);
> + filp->f_mode &= ~FMODE_RANDOM;
> + spin_unlock(&filp->f_lock);
> + } else {
> + spin_lock(&filp->f_lock);
> + filp->f_mode |= FMODE_RANDOM;
> + spin_unlock(&filp->f_lock);
> + }
> +
> + return 0;
> +}
> +
> static long do_fcntl(int fd, unsigned int cmd, unsigned long arg,
> struct file *filp)
> {
> @@ -420,6 +445,9 @@ static long do_fcntl(int fd, unsigned int cmd, unsigned long arg,
> case F_GETPIPE_SZ:
> err = pipe_fcntl(filp, cmd, arg);
> break;
> + case F_READAHEAD:
> + err = f_readahead(filp, arg);
> + break;
> default:
> break;
> }
> diff --git a/include/linux/fcntl.h b/include/linux/fcntl.h
> index afc00af..69d8e4d 100644
> --- a/include/linux/fcntl.h
> +++ b/include/linux/fcntl.h
> @@ -28,6 +28,11 @@
> #define F_GETPIPE_SZ (F_LINUX_SPECIFIC_BASE + 8)
>
> /*
> + * Set read-ahead buffer size
> + */
> +#define F_READAHEAD (F_LINUX_SPECIFIC_BASE + 9)
> +
> +/*
> * Types of directory notifications that may be requested.
> */
> #define DN_ACCESS 0x00000001 /* File accessed */
> --
> To unsubscribe from this list: send the line "unsubscribe linux-fsdevel" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
Cheers, Andreas
^ permalink raw reply [flat|nested] 3+ messages in thread
* [PATCH v2] fcntl: Add the F_READAHEAD command
2010-11-25 18:08 ` Andreas Dilger
@ 2010-11-26 0:36 ` Morten Hustveit
0 siblings, 0 replies; 3+ messages in thread
From: Morten Hustveit @ 2010-11-26 0:36 UTC (permalink / raw)
To: linux-fsdevel; +Cc: linux-kernel, Andreas Dilger
Allow userland applications to control the read-ahead per file descriptor.
For example, this interface can be used to adjust read sizes in applications
using sendfile() to serve many streams from disk.
The implementation is based on sys_readahead() and sys_fadvise64().
The same interface was added to FreeBSD in 2009.
Signed-off-by: Morten Hustveit <mortehu@ping.uio.no>
---
Changes for v2:
- Renamed "arg" to "ra_bytes". "ra_bytes" was used instead of
"readahead_bytes" to keep lines at less than 80 columns, and to be
consistent with "ra_pages".
diff --git a/fs/fcntl.c b/fs/fcntl.c
index ecc8b39..9d78274 100644
--- a/fs/fcntl.c
+++ b/fs/fcntl.c
@@ -340,6 +340,31 @@ static int f_getown_ex(struct file *filp, unsigned long arg)
return ret;
}
+static int f_readahead(struct file *filp, unsigned long ra_bytes)
+{
+ struct address_space *mapping;
+
+ mapping = filp->f_mapping;
+ if (!mapping || !mapping->a_ops || !mapping->a_ops->readpage)
+ return -EINVAL;
+
+ if (mapping->a_ops->get_xip_mem)
+ return 0;
+
+ if (ra_bytes) {
+ filp->f_ra.ra_pages = (ra_bytes + PAGE_SIZE - 1) >> PAGE_SHIFT;
+ spin_lock(&filp->f_lock);
+ filp->f_mode &= ~FMODE_RANDOM;
+ spin_unlock(&filp->f_lock);
+ } else {
+ spin_lock(&filp->f_lock);
+ filp->f_mode |= FMODE_RANDOM;
+ spin_unlock(&filp->f_lock);
+ }
+
+ return 0;
+}
+
static long do_fcntl(int fd, unsigned int cmd, unsigned long arg,
struct file *filp)
{
@@ -420,6 +445,9 @@ static long do_fcntl(int fd, unsigned int cmd, unsigned long arg,
case F_GETPIPE_SZ:
err = pipe_fcntl(filp, cmd, arg);
break;
+ case F_READAHEAD:
+ err = f_readahead(filp, arg);
+ break;
default:
break;
}
diff --git a/include/linux/fcntl.h b/include/linux/fcntl.h
index afc00af..69d8e4d 100644
--- a/include/linux/fcntl.h
+++ b/include/linux/fcntl.h
@@ -28,6 +28,11 @@
#define F_GETPIPE_SZ (F_LINUX_SPECIFIC_BASE + 8)
/*
+ * Set read-ahead buffer size
+ */
+#define F_READAHEAD (F_LINUX_SPECIFIC_BASE + 9)
+
+/*
* Types of directory notifications that may be requested.
*/
#define DN_ACCESS 0x00000001 /* File accessed */
^ permalink raw reply related [flat|nested] 3+ messages in thread
end of thread, other threads:[~2010-11-26 0:36 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-11-25 9:54 [PATCH] fcntl: Add the F_READAHEAD command Morten Hustveit
2010-11-25 18:08 ` Andreas Dilger
2010-11-26 0:36 ` [PATCH v2] " Morten Hustveit
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).