linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Nitin Gupta <nitin.m.gupta@oracle.com>
To: Julian Calaby <julian.calaby@gmail.com>
Cc: "David S. Miller" <davem@davemloft.net>,
	Lorenzo Stoakes <lstoakes@gmail.com>, Jan Kara <jack@suse.cz>,
	Michal Hocko <mhocko@suse.com>,
	sparclinux <sparclinux@vger.kernel.org>,
	"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH] sparc64: Fix gup_huge_pmd
Date: Thu, 22 Jun 2017 07:37:45 -0700	[thread overview]
Message-ID: <34836bf2-2cef-6fc0-52e5-92767883eabf@oracle.com> (raw)
In-Reply-To: <CAGRGNgXePANYQ5HNhc-mojrf9=tA0Xvfh-ySFgaWatbB3fmLiw@mail.gmail.com>

Hi Julian,


On 6/22/17 3:53 AM, Julian Calaby wrote:
> On Thu, Jun 22, 2017 at 7:50 AM, Nitin Gupta <nitin.m.gupta@oracle.com> wrote:
>> The function assumes that each PMD points to head of a
>> huge page. This is not correct as a PMD can point to
>> start of any 8M region with a, say 256M, hugepage. The
>> fix ensures that it points to the correct head of any PMD
>> huge page.
>>
>> Signed-off-by: Nitin Gupta <nitin.m.gupta@oracle.com>
>> ---
>>   arch/sparc/mm/gup.c | 2 ++
>>   1 file changed, 2 insertions(+)
>>
>> diff --git a/arch/sparc/mm/gup.c b/arch/sparc/mm/gup.c
>> index cd0e32b..9116a6f 100644
>> --- a/arch/sparc/mm/gup.c
>> +++ b/arch/sparc/mm/gup.c
>> @@ -80,6 +80,8 @@ static int gup_huge_pmd(pmd_t *pmdp, pmd_t pmd, unsigned long addr,
>>          refs = 0;
>>          head = pmd_page(pmd);
>>          page = head + ((addr & ~PMD_MASK) >> PAGE_SHIFT);
>> +       if (PageTail(head))
>> +               head = compound_head(head);
> Stupid question: shouldn't this go before the page calculation?

No, it should be after page calculation: First, 'head' points to base of
the PMD page, then 'page' points to an offset within that page. Finally,
we make sure that head variable points to head of the compound page
which contains the addr.

I think confusion comes from the use of 'head' for pointing to a
non-head page. So, maybe it would be more clear to write that part
of the function this way:

         page = pmd_page(pmd) + ((addr & ~PMD_MASK) >> PAGE_SHIFT);
	head = compound_head(page);

Thanks,
Nitin

  reply	other threads:[~2017-06-22 14:38 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-06-21 21:50 [PATCH] sparc64: Fix gup_huge_pmd Nitin Gupta
2017-06-22 10:53 ` Julian Calaby
2017-06-22 14:37   ` Nitin Gupta [this message]
2017-06-22 14:45     ` Julian Calaby

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=34836bf2-2cef-6fc0-52e5-92767883eabf@oracle.com \
    --to=nitin.m.gupta@oracle.com \
    --cc=davem@davemloft.net \
    --cc=jack@suse.cz \
    --cc=julian.calaby@gmail.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=lstoakes@gmail.com \
    --cc=mhocko@suse.com \
    --cc=sparclinux@vger.kernel.org \
    /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;
as well as URLs for NNTP newsgroup(s).