From: Oleg Nesterov <oleg@redhat.com>
To: "Kirill A. Shutemov" <kirill@shutemov.name>
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 v2 1/1] mm: move ->mremap() from file_operations to vm_operations_struct
Date: Fri, 26 Jun 2015 01:41:12 +0200 [thread overview]
Message-ID: <20150625234111.GA6046@redhat.com> (raw)
In-Reply-To: <20150625220829.GA25673@node.dhcp.inet.fi>
On 06/26, Kirill A. Shutemov wrote:
>
> > --- a/mm/mremap.c
> > +++ b/mm/mremap.c
> > @@ -276,8 +276,8 @@ static unsigned long move_vma(struct vm_area_struct *vma,
> > need_rmap_locks);
> > if (moved_len < old_len) {
> > err = -ENOMEM;
> > - } else if (vma->vm_file && vma->vm_file->f_op->mremap) {
> > - err = vma->vm_file->f_op->mremap(vma->vm_file, new_vma);
> > + } else if (vma->vm_ops && vma->vm_ops->mremap) {
> > + err = vma->vm_ops->mremap(new_vma);
> > }
> >
> > if (unlikely(err)) {
>
> I'm not sure what is target tree for the patch.
I hope akpm can take this patch into -mm,
> Last hunk is not going to
> apply on Linus' tree or -next. Hm?
Yes, this depends on another fix I sent to Andrew (and you ;), as 0/1
explains the change in move_vma() textually depends on another patch I sent,
[PATCH 1/4] mremap: don't leak new_vma if f_op->mremap() fails
http://marc.info/?l=linux-kernel&m=143475603713622
> Otherwise, looks good.
>
> Acked-by: Kirill A. Shutemov <kirill.shutemov@linux.intel.com>
Thanks!
Oleg.
next prev parent reply other threads:[~2015-06-25 23:42 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
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 [this message]
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=20150625234111.GA6046@redhat.com \
--to=oleg@redhat.com \
--cc=akpm@linux-foundation.org \
--cc=bcrl@kvack.org \
--cc=hughd@google.com \
--cc=jmoyer@redhat.com \
--cc=kirill.shutemov@linux.intel.com \
--cc=kirill@shutemov.name \
--cc=linux-kernel@vger.kernel.org \
--cc=luto@amacapital.net \
--cc=luto@kernel.org \
--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.