linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
From: zhang.yi20@zte.com.cn
To: Dave Hansen <dave.hansen@linux.intel.com>
Cc: Darren Hart <dvhart@linux.intel.com>,
	linux-kernel@vger.kernel.org, linux-mm@kvack.org,
	Ingo Molnar <mingo@kernel.org>,
	Peter Zijlstra <peterz@infradead.org>,
	Thomas Gleixner <tglx@linutronix.de>
Subject: 答复: Re: [PATCH] futex: bugfix for futex-key conflict when futex use hugepage
Date: Wed, 17 Apr 2013 15:25:35 +0800	[thread overview]
Message-ID: <OF70EE3A18.189A18D4-ON48257B50.002812BC-48257B50.0028D956@zte.com.cn> (raw)
In-Reply-To: <516D9A74.8030109@linux.intel.com>

Dave Hansen <dave.hansen@linux.intel.com> wrote on 2013/04/17 02:37:40:

> Instead of bothering to store the index, why not just calculate it, 
like:
> 
> On 04/15/2013 08:37 PM, zhang.yi20@zte.com.cn wrote:
> > +static inline int get_page_compound_index(struct page *page)
> > +{
> > +       if (PageHead(page))
> > +               return 0;
> > +       return compound_head(page) - page;
> > +}
> 
> BTW, you've really got to get your mail client fixed.  Your patch is
> still line-wrapped.

I agree that I should calculate the compound index, but refer to 
prep_compound_gigantic_page, I think it may like this:

+static inline int get_page_compound_index(struct page *page)
+{
+       struct page *head_page;
+       if (PageHead(page))
+               return 0;
+
+       head_page = compound_head(page);
+       if (compound_order(head_page) >= MAX_ORDER)
+               return page_to_pfn(page) - page_to_pfn(head_page);
+       else
+               return page - compound_head(page);
+}

--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org.  For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>

  parent reply	other threads:[~2013-04-17  7:26 UTC|newest]

Thread overview: 17+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-04-16  3:37 zhang.yi20
2013-04-16 17:57 ` Darren Hart
2013-04-17  9:55   ` zhang.yi20
2013-04-17 14:18     ` Darren Hart
2013-04-17 15:26       ` Dave Hansen
2013-04-17 15:51         ` Darren Hart
2013-04-18  8:05           ` zhang.yi20
2013-04-18 14:34             ` Darren Hart
2013-04-19  2:13               ` zhang.yi20
2013-04-19  2:42                 ` Darren Hart
2013-04-19  2:45                 ` Darren Hart
2013-04-19  7:03                   ` zhang.yi20
2013-04-18 10:14   ` 答复: " zhang.yi20
2013-04-16 18:37 ` Dave Hansen
2013-04-16 18:47   ` Darren Hart
2013-04-17  7:25   ` zhang.yi20 [this message]
2013-04-17  7:47   ` zhang.yi20

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=OF70EE3A18.189A18D4-ON48257B50.002812BC-48257B50.0028D956@zte.com.cn \
    --to=zhang.yi20@zte.com.cn \
    --cc=dave.hansen@linux.intel.com \
    --cc=dvhart@linux.intel.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mm@kvack.org \
    --cc=mingo@kernel.org \
    --cc=peterz@infradead.org \
    --cc=tglx@linutronix.de \
    /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