linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] ipc: shm: restore MADV_REMOVE functionality on shared memory segments
@ 2012-06-06 17:10 Will Deacon
  2012-06-07  1:24 ` Hugh Dickins
  0 siblings, 1 reply; 2+ messages in thread
From: Will Deacon @ 2012-06-06 17:10 UTC (permalink / raw)
  To: linux-kernel; +Cc: Will Deacon, Hugh Dickins, Andrew Morton

Commit 17cf28af ("mm/fs: remove truncate_range") removed the
truncate_range inode operation in favour of the fallocate file
operation.

When using SYSV IPC shared memory segments, calling madvise with the
MADV_REMOVE advice on an area of shared memory will attempt to invoke
the .fallocate function for the shm_file_operations, which is NULL and
therefore returns -EOPNOTSUPP to userspace. The previous behaviour would
inherit the inode_operations from the underlying tmpfs file and invoke
truncate_range there.

This patch restores the previous behaviour by wrapping the underlying
fallocate function in shm_fallocate, as we do for fsync.

Cc: Hugh Dickins <hughd@google.com>
Cc: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Will Deacon <will.deacon@arm.com>
---
 ipc/shm.c |   12 ++++++++++++
 1 files changed, 12 insertions(+), 0 deletions(-)

diff --git a/ipc/shm.c b/ipc/shm.c
index 5e2cbfd..8830e79 100644
--- a/ipc/shm.c
+++ b/ipc/shm.c
@@ -393,6 +393,16 @@ static int shm_fsync(struct file *file, loff_t start, loff_t end, int datasync)
 	return sfd->file->f_op->fsync(sfd->file, start, end, datasync);
 }
 
+static long shm_fallocate(struct file *file, int mode, loff_t offset,
+			  loff_t len)
+{
+	struct shm_file_data *sfd = shm_file_data(file);
+
+	if (!sfd->file->f_op->fallocate)
+		return -EINVAL;
+	return sfd->file->f_op->fallocate(file, mode, offset, len);
+}
+
 static unsigned long shm_get_unmapped_area(struct file *file,
 	unsigned long addr, unsigned long len, unsigned long pgoff,
 	unsigned long flags)
@@ -410,6 +420,7 @@ static const struct file_operations shm_file_operations = {
 	.get_unmapped_area	= shm_get_unmapped_area,
 #endif
 	.llseek		= noop_llseek,
+	.fallocate	= shm_fallocate,
 };
 
 static const struct file_operations shm_file_operations_huge = {
@@ -418,6 +429,7 @@ static const struct file_operations shm_file_operations_huge = {
 	.release	= shm_release,
 	.get_unmapped_area	= shm_get_unmapped_area,
 	.llseek		= noop_llseek,
+	.fallocate	= shm_fallocate,
 };
 
 int is_file_shm_hugepages(struct file *file)
-- 
1.7.4.1


^ permalink raw reply related	[flat|nested] 2+ messages in thread

* Re: [PATCH] ipc: shm: restore MADV_REMOVE functionality on shared memory segments
  2012-06-06 17:10 [PATCH] ipc: shm: restore MADV_REMOVE functionality on shared memory segments Will Deacon
@ 2012-06-07  1:24 ` Hugh Dickins
  0 siblings, 0 replies; 2+ messages in thread
From: Hugh Dickins @ 2012-06-07  1:24 UTC (permalink / raw)
  To: Will Deacon; +Cc: linux-kernel, Andrew Morton

On Wed, 6 Jun 2012, Will Deacon wrote:
> Commit 17cf28af ("mm/fs: remove truncate_range") removed the
> truncate_range inode operation in favour of the fallocate file
> operation.
> 
> When using SYSV IPC shared memory segments, calling madvise with the
> MADV_REMOVE advice on an area of shared memory will attempt to invoke
> the .fallocate function for the shm_file_operations, which is NULL and
> therefore returns -EOPNOTSUPP to userspace. The previous behaviour would
> inherit the inode_operations from the underlying tmpfs file and invoke
> truncate_range there.
> 
> This patch restores the previous behaviour by wrapping the underlying
> fallocate function in shm_fallocate, as we do for fsync.
> 
> Cc: Hugh Dickins <hughd@google.com>
> Cc: Andrew Morton <akpm@linux-foundation.org>
> Signed-off-by: Will Deacon <will.deacon@arm.com>

Acked-by: Hugh Dickins <hughd@google.com>

Many thanks for discovering and fixing this so quickly:
I admit it never even crossed my mind to look over here in ipc/shm.

But I do have a minor improvement below, which akpm will probably
want to merge in on top.

> ---
>  ipc/shm.c |   12 ++++++++++++
>  1 files changed, 12 insertions(+), 0 deletions(-)
> 
> diff --git a/ipc/shm.c b/ipc/shm.c
> index 5e2cbfd..8830e79 100644
> --- a/ipc/shm.c
> +++ b/ipc/shm.c
> @@ -393,6 +393,16 @@ static int shm_fsync(struct file *file, loff_t start, loff_t end, int datasync)
>  	return sfd->file->f_op->fsync(sfd->file, start, end, datasync);
>  }
>  
> +static long shm_fallocate(struct file *file, int mode, loff_t offset,
> +			  loff_t len)
> +{
> +	struct shm_file_data *sfd = shm_file_data(file);
> +
> +	if (!sfd->file->f_op->fallocate)
> +		return -EINVAL;
> +	return sfd->file->f_op->fallocate(file, mode, offset, len);
> +}
> +
>  static unsigned long shm_get_unmapped_area(struct file *file,
>  	unsigned long addr, unsigned long len, unsigned long pgoff,
>  	unsigned long flags)
> @@ -410,6 +420,7 @@ static const struct file_operations shm_file_operations = {
>  	.get_unmapped_area	= shm_get_unmapped_area,
>  #endif
>  	.llseek		= noop_llseek,
> +	.fallocate	= shm_fallocate,
>  };
>  
>  static const struct file_operations shm_file_operations_huge = {
> @@ -418,6 +429,7 @@ static const struct file_operations shm_file_operations_huge = {
>  	.release	= shm_release,
>  	.get_unmapped_area	= shm_get_unmapped_area,
>  	.llseek		= noop_llseek,
> +	.fallocate	= shm_fallocate,
>  };
>  
>  int is_file_shm_hugepages(struct file *file)
> -- 
> 1.7.4.1

[PATCH] ipc: shm: shm_fallocate use -ENOTSUPP

When underlying filesystem (i.e. hugetlbfs) does not support fallocate(),
let shm_fallocate() fail with -EOPNOTSUPP rather than -EINVAL: so that
madvise(,,MADV_REMOVE) gives the same error as it does wherever else
fallocate() is unsupported.  vmtruncate_range() gave -ENOSYS in this
case, but that was not quite right.

Signed-off-by: Hugh Dickins <hughd@google.com>
___

 ipc/shm.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

--- will/ipc/shm.c	2012-06-06 17:54:42.968102209 -0700
+++ hugh/ipc/shm.c	2012-06-06 17:58:14.600106628 -0700
@@ -399,7 +399,7 @@ static long shm_fallocate(struct file *f
 	struct shm_file_data *sfd = shm_file_data(file);
 
 	if (!sfd->file->f_op->fallocate)
-		return -EINVAL;
+		return -EOPNOTSUPP;
 	return sfd->file->f_op->fallocate(file, mode, offset, len);
 }
 

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2012-06-07  1:24 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-06-06 17:10 [PATCH] ipc: shm: restore MADV_REMOVE functionality on shared memory segments Will Deacon
2012-06-07  1:24 ` Hugh Dickins

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).