From: Chen Gang <xili_gchen_5257@hotmail.com>
To: "oleg@redhat.com" <oleg@redhat.com>
Cc: Andrew Morton <akpm@linux-foundation.org>,
"kirill.shutemov@linux.intel.com"
<kirill.shutemov@linux.intel.com>,
"riel@redhat.com" <riel@redhat.com>,
Michal Hocko <mhocko@suse.cz>,
"sasha.levin@oracle.com" <sasha.levin@oracle.com>,
"pfeiner@google.com" <pfeiner@google.com>,
"aarcange@redhat.com" <aarcange@redhat.com>,
"vishnu.ps@samsung.com" <vishnu.ps@samsung.com>,
Linux Memory <linux-mm@kvack.org>,
kernel mailing list <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH] mm/mmap.c: Remove useless statement "vma = NULL" in find_vma()
Date: Thu, 10 Sep 2015 06:44:59 +0800 [thread overview]
Message-ID: <COL130-W43C0C45AA4E2A7AA6361D0B9520@phx.gbl> (raw)
In-Reply-To: <55F0B6C2.2000706@hotmail.com>
On 9/10/15 00:26, Oleg Nesterov wrote:
> On 09/08, Chen Gang wrote:
>>
>> I also want to consult: the comments of find_vma() says:
>
> Sorry, I don't understand the question ;)
>
>> "Look up the first VMA which satisfies addr < vm_end, ..."
>>
>> Is it OK?
>
> Why not?
>
We will continue discuss about it below. Please help check, thanks.
>> (why not "vm_start <= addr < vm_end"),
>
> Because this some callers actually want to find the 1st vma which
> satisfies addr < vm_end? For example, shift_arg_pages().
>
> OTOH, I think that another helper,
>
> find_vma_xxx(mm, addr)
> {
> vma = find_vma(...)
> if (vma && vma->vm_start> addr)
> vma = NULL;
> return vma;
> }
>
> makes sense. It can have a lot of users.
>
OK. thank you very much. :-)
>> need we let "vma = tmp"
>> in "if (tmp->vm_start <= addr)"? -- it looks the comments is not match
>> the implementation, precisely (maybe not 1st VMA).
>
> This contradicts with above... I mean, it is not clear what exactly do
> you blame, semantics or implementation.
>
> The implementation looks correct. Why do you think it can be not 1st vma?
>
It is in while (rb_node) {...}.
- When we set "vma = tmp", it is alreay match "addr < vm_end".
- If "addr>= vm_start", we return this vma (else continue searching).
If "the first left" is the real first, when "addr>= vm_start", it
will return (may not return 1st left matched vma).
If "the first find" is the real first, when "addr < vm_start", it
will continue searching (may not return 1st find matched vma).
For me, if we only focus on "addr < vm_end", we need remove "vm_start <=
addr" checking). If we have to consider about "addr>= vm_start", we may
need additional parameter or implement a new function for it.
Welcome any ideas, suggestions and completions.
Thanks.
--
Chen Gang (陈刚)
Open, share, and attitude like air, water, and life which God blessed
next prev parent reply other threads:[~2015-09-09 22:45 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-09-05 14:03 Chen Gang
2015-09-07 12:36 ` Oleg Nesterov
[not found] ` <55EEED66.6090509@hotmail.com>
2015-09-08 14:14 ` Chen Gang
2015-09-09 16:26 ` Oleg Nesterov
[not found] ` <55F0B6C2.2000706@hotmail.com>
2015-09-09 22:44 ` Chen Gang [this message]
2015-09-10 18:19 ` Oleg Nesterov
2015-09-10 22:20 ` Chen Gang
2015-09-08 23:14 ` David Rientjes
-- strict thread matches above, loose matches on Subject: below --
2015-09-03 3:52 gang.chen.5i5j
2015-09-03 4:02 ` Chen Gang
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=COL130-W43C0C45AA4E2A7AA6361D0B9520@phx.gbl \
--to=xili_gchen_5257@hotmail.com \
--cc=aarcange@redhat.com \
--cc=akpm@linux-foundation.org \
--cc=kirill.shutemov@linux.intel.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=mhocko@suse.cz \
--cc=oleg@redhat.com \
--cc=pfeiner@google.com \
--cc=riel@redhat.com \
--cc=sasha.levin@oracle.com \
--cc=vishnu.ps@samsung.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox