All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Kirill A. Shutemov" <kirill@shutemov.name>
To: Oleg Nesterov <oleg@redhat.com>
Cc: Andy Lutomirski <luto@amacapital.net>,
	Andrew Morton <akpm@linux-foundation.org>,
	Al Viro <viro@zeniv.linux.org.uk>,
	Benjamin LaHaise <bcrl@kvack.org>,
	Hugh Dickins <hughd@google.com>, Jeff Moyer <jmoyer@redhat.com>,
	Kirill Shutemov <kirill.shutemov@linux.intel.com>,
	Linus Torvalds <torvalds@linux-foundation.org>,
	"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
	Andy Lutomirski <luto@kernel.org>,
	Pavel Emelyanov <xemul@parallels.com>
Subject: Re: [PATCH 1/1] mm: move ->mremap() from file_operations to vm_operations_struct
Date: Tue, 23 Jun 2015 21:19:45 +0300	[thread overview]
Message-ID: <20150623181945.GA13390@node.dhcp.inet.fi> (raw)
In-Reply-To: <20150623180251.GA13131@redhat.com>

On Tue, Jun 23, 2015 at 08:02:51PM +0200, Oleg Nesterov wrote:
> vma->vm_ops->mremap() looks more natural and clean in move_vma(),
> and this way ->mremap() can have more users. Say, vdso.
> 
> Signed-off-by: Oleg Nesterov <oleg@redhat.com>
> ---
>  fs/aio.c           |   25 ++++++++++++++++---------
>  include/linux/fs.h |    1 -
>  include/linux/mm.h |    1 +
>  mm/mremap.c        |    4 ++--

Please, update Documentation/filesystems/Locking.

>  4 files changed, 19 insertions(+), 12 deletions(-)
> 
> diff --git a/fs/aio.c b/fs/aio.c
> index 9bc1335..6fe662a 100644
> --- a/fs/aio.c
> +++ b/fs/aio.c
> @@ -308,15 +308,9 @@ static void aio_free_ring(struct kioctx *ctx)
>  	}
>  }
>  
> -static int aio_ring_mmap(struct file *file, struct vm_area_struct *vma)
> -{
> -	vma->vm_flags |= VM_DONTEXPAND;
> -	vma->vm_ops = &generic_file_vm_ops;
> -	return 0;
> -}
> -
> -static int aio_ring_remap(struct file *file, struct vm_area_struct *vma)
> +static int aio_ring_remap(struct vm_area_struct *vma)

I guess aio_ring_mremap() would be a better name.

>  {
> +	struct file *file = vma->vm_file;
>  	struct mm_struct *mm = vma->vm_mm;
>  	struct kioctx_table *table;
>  	int i, res = -EINVAL;
-- 
 Kirill A. Shutemov

  reply	other threads:[~2015-06-23 18:20 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-06-23 18:02 [PATCH 0/1] mm: move ->mremap() from file_operations to vm_operations_struct Oleg Nesterov
2015-06-23 18:02 ` [PATCH 1/1] " Oleg Nesterov
2015-06-23 18:19   ` Kirill A. Shutemov [this message]
2015-06-23 18:26     ` Oleg Nesterov
2015-06-24 15:49       ` Oleg Nesterov
2015-06-24 19:23         ` Kirill A. Shutemov
2015-06-25 20:43           ` Oleg Nesterov
2015-06-23 21:01   ` Andy Lutomirski
2015-06-23 21:11   ` Pavel Emelyanov
2015-06-23 20:59 ` [PATCH 0/1] " Andy Lutomirski
2015-06-24 13:53   ` Oleg Nesterov
2015-06-25 20:45 ` [PATCH v2 1/1] " Oleg Nesterov
2015-06-25 22:08   ` Kirill A. Shutemov
2015-06-25 23:41     ` Oleg Nesterov
2015-06-26 12:21   ` Pavel Emelyanov

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=20150623181945.GA13390@node.dhcp.inet.fi \
    --to=kirill@shutemov.name \
    --cc=akpm@linux-foundation.org \
    --cc=bcrl@kvack.org \
    --cc=hughd@google.com \
    --cc=jmoyer@redhat.com \
    --cc=kirill.shutemov@linux.intel.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=luto@amacapital.net \
    --cc=luto@kernel.org \
    --cc=oleg@redhat.com \
    --cc=torvalds@linux-foundation.org \
    --cc=viro@zeniv.linux.org.uk \
    --cc=xemul@parallels.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.