All of lore.kernel.org
 help / color / mirror / Atom feed
From: Ingo Molnar <mingo@kernel.org>
To: Dave Hansen <dave.hansen@linux.intel.com>
Cc: linux-kernel@vger.kernel.org, linux-mm@kvack.org, x86@kernel.org
Subject: Re: [RFC][PATCH 1/4] x86, mpx: introduce per-mm MPX table size tracking
Date: Fri, 27 Jan 2017 09:26:30 +0100	[thread overview]
Message-ID: <20170127082629.GB25162@gmail.com> (raw)
In-Reply-To: <20170126224006.DED9C8D3@viggo.jf.intel.com>


* Dave Hansen <dave.hansen@linux.intel.com> wrote:

> Larger address spaces mean larger MPX bounds table sizes.  This
> tracks which size tables we are using.
> 
> "MAWA" is what the hardware documentation calls this feature:
> MPX Address-Width Adjust.  We will carry that nomenclature throughout
> this series.
> 
> The new field will be optimized and get packed into 'bd_addr' in a later
> patch.  But, leave it separate for now to make the series simpler.
> 
> ---
> 
>  b/arch/x86/include/asm/mmu.h |    1 +
>  b/arch/x86/include/asm/mpx.h |    9 +++++++++
>  2 files changed, 10 insertions(+)
> 
> diff -puN arch/x86/include/asm/mmu.h~mawa-020-mmu_context-mawa arch/x86/include/asm/mmu.h
> --- a/arch/x86/include/asm/mmu.h~mawa-020-mmu_context-mawa	2017-01-26 14:31:32.643673297 -0800
> +++ b/arch/x86/include/asm/mmu.h	2017-01-26 14:31:32.647673476 -0800
> @@ -34,6 +34,7 @@ typedef struct {
>  #ifdef CONFIG_X86_INTEL_MPX
>  	/* address of the bounds directory */
>  	void __user *bd_addr;
> +	int mpx_mawa;

-ENOCOMMENT.

Plus 'int' looks probably wrong, unless the hardware really wants signed shift 
values. (whatever 'mpx_mawa' is.)

Plus, while Intel is free to use sucky acronyms such as MAWA, could we please name 
this and related functionality sensibly: mpx_table_size or mpx_table_shift or 
such? The data structure comment can point out that Intel calls this 'MAWA'.

(Also, the changelog refers to a later change, which never happens in this 
series.)

Thanks,

	Ingo

--
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>

WARNING: multiple messages have this Message-ID (diff)
From: Ingo Molnar <mingo@kernel.org>
To: Dave Hansen <dave.hansen@linux.intel.com>
Cc: linux-kernel@vger.kernel.org, linux-mm@kvack.org, x86@kernel.org
Subject: Re: [RFC][PATCH 1/4] x86, mpx: introduce per-mm MPX table size tracking
Date: Fri, 27 Jan 2017 09:26:30 +0100	[thread overview]
Message-ID: <20170127082629.GB25162@gmail.com> (raw)
In-Reply-To: <20170126224006.DED9C8D3@viggo.jf.intel.com>


* Dave Hansen <dave.hansen@linux.intel.com> wrote:

> Larger address spaces mean larger MPX bounds table sizes.  This
> tracks which size tables we are using.
> 
> "MAWA" is what the hardware documentation calls this feature:
> MPX Address-Width Adjust.  We will carry that nomenclature throughout
> this series.
> 
> The new field will be optimized and get packed into 'bd_addr' in a later
> patch.  But, leave it separate for now to make the series simpler.
> 
> ---
> 
>  b/arch/x86/include/asm/mmu.h |    1 +
>  b/arch/x86/include/asm/mpx.h |    9 +++++++++
>  2 files changed, 10 insertions(+)
> 
> diff -puN arch/x86/include/asm/mmu.h~mawa-020-mmu_context-mawa arch/x86/include/asm/mmu.h
> --- a/arch/x86/include/asm/mmu.h~mawa-020-mmu_context-mawa	2017-01-26 14:31:32.643673297 -0800
> +++ b/arch/x86/include/asm/mmu.h	2017-01-26 14:31:32.647673476 -0800
> @@ -34,6 +34,7 @@ typedef struct {
>  #ifdef CONFIG_X86_INTEL_MPX
>  	/* address of the bounds directory */
>  	void __user *bd_addr;
> +	int mpx_mawa;

-ENOCOMMENT.

Plus 'int' looks probably wrong, unless the hardware really wants signed shift 
values. (whatever 'mpx_mawa' is.)

Plus, while Intel is free to use sucky acronyms such as MAWA, could we please name 
this and related functionality sensibly: mpx_table_size or mpx_table_shift or 
such? The data structure comment can point out that Intel calls this 'MAWA'.

(Also, the changelog refers to a later change, which never happens in this 
series.)

Thanks,

	Ingo

  reply	other threads:[~2017-01-27  8:26 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-01-26 22:40 [RFC][PATCH 0/4] x86, mpx: Support larger address space (MAWA) Dave Hansen
2017-01-26 22:40 ` Dave Hansen
2017-01-26 22:40 ` [RFC][PATCH 1/4] x86, mpx: introduce per-mm MPX table size tracking Dave Hansen
2017-01-26 22:40   ` Dave Hansen
2017-01-27  8:26   ` Ingo Molnar [this message]
2017-01-27  8:26     ` Ingo Molnar
2017-01-26 22:40 ` [RFC][PATCH 2/4] x86, mpx: update MPX to grok larger bounds tables Dave Hansen
2017-01-26 22:40   ` Dave Hansen
2017-01-26 22:40 ` [RFC][PATCH 3/4] x86, mpx: extend MPX prctl() to pass in size of bounds directory Dave Hansen
2017-01-26 22:40   ` Dave Hansen
2017-01-26 22:40 ` [RFC][PATCH 4/4] x86, mpx: context-switch new MPX address size MSR Dave Hansen
2017-01-26 22:40   ` Dave Hansen
2017-01-27  8:31   ` Ingo Molnar
2017-01-27  8:31     ` Ingo Molnar
2017-01-27  8:16 ` [RFC][PATCH 0/4] x86, mpx: Support larger address space (MAWA) Ingo Molnar
2017-01-27  8:16   ` Ingo Molnar

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=20170127082629.GB25162@gmail.com \
    --to=mingo@kernel.org \
    --cc=dave.hansen@linux.intel.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mm@kvack.org \
    --cc=x86@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.