All of lore.kernel.org
 help / color / mirror / Atom feed
From: Matthew Wilcox <willy@infradead.org>
To: Peter Zijlstra <peterz@infradead.org>
Cc: kan.liang@linux.intel.com, mingo@kernel.org, acme@kernel.org,
	mark.rutland@arm.com, alexander.shishkin@linux.intel.com,
	jolsa@redhat.com, eranian@google.com,
	christophe.leroy@csgroup.eu, npiggin@gmail.com,
	linuxppc-dev@lists.ozlabs.org, mpe@ellerman.id.au,
	will@kernel.org, aneesh.kumar@linux.ibm.com,
	sparclinux@vger.kernel.org, davem@davemloft.net,
	catalin.marinas@arm.com, linux-arch@vger.kernel.org,
	linux-kernel@vger.kernel.org, ak@linux.intel.com,
	dave.hansen@intel.com, kirill.shutemov@linux.intel.com
Subject: Re: [PATCH v2 2/6] mm: Introduce pXX_leaf_size()
Date: Thu, 26 Nov 2020 12:43:49 +0000	[thread overview]
Message-ID: <20201126124349.GQ4327@casper.infradead.org> (raw)
In-Reply-To: <20201126121121.102580109@infradead.org>

On Thu, Nov 26, 2020 at 01:01:16PM +0100, Peter Zijlstra wrote:
> A number of architectures have non-pagetable aligned huge/large pages.
> For such architectures a leaf can actually be part of a larger entry.
> 
> Provide generic helpers to determine the size of a page-table leaf.
> 
> Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>

Reviewed-by: Matthew Wilcox (Oracle) <willy@infradead.org>

WARNING: multiple messages have this Message-ID (diff)
From: Matthew Wilcox <willy@infradead.org>
To: Peter Zijlstra <peterz@infradead.org>
Cc: mark.rutland@arm.com, aneesh.kumar@linux.ibm.com,
	linux-arch@vger.kernel.org, catalin.marinas@arm.com,
	will@kernel.org, alexander.shishkin@linux.intel.com,
	linuxppc-dev@lists.ozlabs.org, npiggin@gmail.com,
	linux-kernel@vger.kernel.org, acme@kernel.org,
	davem@davemloft.net, dave.hansen@intel.com, ak@linux.intel.com,
	eranian@google.com, sparclinux@vger.kernel.org, jolsa@redhat.com,
	mingo@kernel.org, kirill.shutemov@linux.intel.com,
	kan.liang@linux.intel.com
Subject: Re: [PATCH v2 2/6] mm: Introduce pXX_leaf_size()
Date: Thu, 26 Nov 2020 12:43:49 +0000	[thread overview]
Message-ID: <20201126124349.GQ4327@casper.infradead.org> (raw)
In-Reply-To: <20201126121121.102580109@infradead.org>

On Thu, Nov 26, 2020 at 01:01:16PM +0100, Peter Zijlstra wrote:
> A number of architectures have non-pagetable aligned huge/large pages.
> For such architectures a leaf can actually be part of a larger entry.
> 
> Provide generic helpers to determine the size of a page-table leaf.
> 
> Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>

Reviewed-by: Matthew Wilcox (Oracle) <willy@infradead.org>

  reply	other threads:[~2020-11-26 12:44 UTC|newest]

Thread overview: 59+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-11-26 12:01 [PATCH v2 0/6] perf/mm: Fix PERF_SAMPLE_*_PAGE_SIZE Peter Zijlstra
2020-11-26 12:01 ` Peter Zijlstra
2020-11-26 12:01 ` Peter Zijlstra
2020-11-26 12:01 ` [PATCH v2 1/6] mm/gup: Provide gup_get_pte() more generic Peter Zijlstra
2020-11-26 12:01   ` Peter Zijlstra
2020-11-26 12:01   ` Peter Zijlstra
2020-11-26 12:43   ` Matthew Wilcox
2020-11-26 12:43     ` Matthew Wilcox
2020-11-26 13:02     ` Peter Zijlstra
2020-11-26 13:02       ` Peter Zijlstra
2020-11-26 13:02       ` Peter Zijlstra
2020-12-03  9:07   ` [tip: perf/core] " tip-bot2 for Peter Zijlstra
2020-12-03  9:24   ` tip-bot2 for Peter Zijlstra
2020-11-26 12:01 ` [PATCH v2 2/6] mm: Introduce pXX_leaf_size() Peter Zijlstra
2020-11-26 12:01   ` Peter Zijlstra
2020-11-26 12:01   ` Peter Zijlstra
2020-11-26 12:43   ` Matthew Wilcox [this message]
2020-11-26 12:43     ` Matthew Wilcox
2020-12-03  9:07   ` [tip: perf/core] " tip-bot2 for Peter Zijlstra
2020-12-03  9:24   ` tip-bot2 for Peter Zijlstra
2020-11-26 12:01 ` [PATCH v2 3/6] perf/core: Fix arch_perf_get_page_size() Peter Zijlstra
2020-11-26 12:01   ` Peter Zijlstra
2020-11-26 12:01   ` Peter Zijlstra
2020-11-26 12:34   ` Matthew Wilcox
2020-11-26 12:34     ` Matthew Wilcox
2020-11-26 12:42     ` Peter Zijlstra
2020-11-26 12:42       ` Peter Zijlstra
2020-11-26 12:42       ` Peter Zijlstra
2020-11-26 12:56       ` Matthew Wilcox
2020-11-26 12:56         ` Matthew Wilcox
2020-11-26 13:06         ` Peter Zijlstra
2020-11-26 13:06           ` Peter Zijlstra
2020-11-26 13:06           ` Peter Zijlstra
2020-11-26 13:27           ` Matthew Wilcox
2020-11-26 13:27             ` Matthew Wilcox
2020-12-03  9:07       ` [tip: perf/core] " tip-bot2 for Peter Zijlstra
2020-12-03  9:24       ` tip-bot2 for Peter Zijlstra
2020-11-26 12:01 ` [PATCH v2 4/6] arm64/mm: Implement pXX_leaf_size() support Peter Zijlstra
2020-11-26 12:01   ` Peter Zijlstra
2020-11-26 12:01   ` Peter Zijlstra
2020-11-26 12:57   ` Peter Zijlstra
2020-11-26 12:57     ` Peter Zijlstra
2020-11-26 12:57     ` Peter Zijlstra
2020-11-26 14:32     ` Will Deacon
2020-11-26 14:32       ` Will Deacon
2020-12-03  9:07     ` [tip: perf/core] " tip-bot2 for Peter Zijlstra
2020-12-03  9:24     ` tip-bot2 for Peter Zijlstra
2020-11-26 12:01 ` [PATCH v2 5/6] sparc64/mm: " Peter Zijlstra
2020-11-26 12:01   ` Peter Zijlstra
2020-11-26 12:01   ` Peter Zijlstra
2020-12-03  9:07   ` [tip: perf/core] " tip-bot2 for Peter Zijlstra
2020-12-03  9:24   ` tip-bot2 for Peter Zijlstra
2020-12-09 18:44   ` tip-bot2 for Peter Zijlstra
2020-11-26 12:01 ` [PATCH v2 6/6] powerpc/8xx: " Peter Zijlstra
2020-11-26 12:01   ` Peter Zijlstra
2020-11-26 12:01   ` Peter Zijlstra
2020-12-03  9:07   ` [tip: perf/core] " tip-bot2 for Peter Zijlstra
2020-12-03  9:24   ` tip-bot2 for Peter Zijlstra
2020-12-09 18:44   ` tip-bot2 for Peter Zijlstra

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=20201126124349.GQ4327@casper.infradead.org \
    --to=willy@infradead.org \
    --cc=acme@kernel.org \
    --cc=ak@linux.intel.com \
    --cc=alexander.shishkin@linux.intel.com \
    --cc=aneesh.kumar@linux.ibm.com \
    --cc=catalin.marinas@arm.com \
    --cc=christophe.leroy@csgroup.eu \
    --cc=dave.hansen@intel.com \
    --cc=davem@davemloft.net \
    --cc=eranian@google.com \
    --cc=jolsa@redhat.com \
    --cc=kan.liang@linux.intel.com \
    --cc=kirill.shutemov@linux.intel.com \
    --cc=linux-arch@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linuxppc-dev@lists.ozlabs.org \
    --cc=mark.rutland@arm.com \
    --cc=mingo@kernel.org \
    --cc=mpe@ellerman.id.au \
    --cc=npiggin@gmail.com \
    --cc=peterz@infradead.org \
    --cc=sparclinux@vger.kernel.org \
    --cc=will@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 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.