mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Dave Hansen <dave.hansen@intel.com>
To: Javier Pello <devel@otheo.eu>, linux-kernel@vger.kernel.org
Cc: x86@kernel.org, Thomas Gleixner <tglx@linutronix.de>,
	Ingo Molnar <mingo@redhat.com>, Borislav Petkov <bp@alien8.de>,
	Dave Hansen <dave.hansen@linux.intel.com>,
	"H. Peter Anvin" <hpa@zytor.com>
Subject: Re: [PATCH 1/1] x86/mm/pae: Align up pteval_t, pmdval_t and pudval_t to avoid split locks
Date: Mon, 1 Apr 2024 10:56:14 -0700	[thread overview]
Message-ID: <8ee463af-fdbf-4514-bb6e-bf2fd61fbc06@intel.com> (raw)
In-Reply-To: <20240401185712.a80deeb2fddeded0ad42cc04@otheo.eu>

On 4/1/24 09:57, Javier Pello wrote:
> -typedef u64	pteval_t;
> -typedef u64	pmdval_t;
> -typedef u64	pudval_t;
> -typedef u64	p4dval_t;
> -typedef u64	pgdval_t;
> -typedef u64	pgprotval_t;
> +/*
> + * Variables of these types are subject to atomic compare-and-exchange
> + * operations, so they have to be properly aligned to avoid split locks.
> + */
> +typedef u64	pteval_t	__aligned(8);
> +typedef u64	pmdval_t	__aligned(8);
> +typedef u64	pudval_t	__aligned(8);
> +typedef u64	p4dval_t	__aligned(8);
> +typedef u64	pgdval_t	__aligned(8);
> +typedef u64	pgprotval_t	__aligned(8);

First of all, how is it that you're running a PAE kernel on new, 64-bit
hardware?  That's rather odd.

The case that you're hitting is actually an on-stack pmd_t.  The fun
part is that it's not shared and doesn't even _need_ atomics.  I think
it's just using pmd_populate() because it's convenient.

I'd honestly much rather just disable split lock support in 32-bit
builds than mess with this stuff.  You really shouldn't be running
32-but kernels on this hardware.

  reply	other threads:[~2024-04-01 17:56 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-04-01 16:54 [PATCH 0/1] Split lock detected in kernel mode on x86-32 with PAE Javier Pello
2024-04-01 16:57 ` [PATCH 1/1] x86/mm/pae: Align up pteval_t, pmdval_t and pudval_t to avoid split locks Javier Pello
2024-04-01 17:56   ` Dave Hansen [this message]
2024-04-02 17:23     ` Javier Pello
2024-04-02 17:43       ` Dave Hansen
2024-04-03  7:57         ` Ingo Molnar
2024-04-03 11:08           ` Brian Gerst
2024-04-04  7:56             ` Ingo Molnar
2024-04-04 15:36               ` Brian Gerst
2024-04-04 16:29                 ` Dave Hansen
2024-04-03 15:54         ` Javier Pello
2024-04-03 15:58           ` Dave Hansen
2024-04-04 15:26             ` Sean Christopherson
2024-04-04 18:31               ` Dave Hansen
2024-04-04 21:55                 ` Sean Christopherson

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=8ee463af-fdbf-4514-bb6e-bf2fd61fbc06@intel.com \
    --to=dave.hansen@intel.com \
    --cc=bp@alien8.de \
    --cc=dave.hansen@linux.intel.com \
    --cc=devel@otheo.eu \
    --cc=hpa@zytor.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mingo@redhat.com \
    --cc=tglx@linutronix.de \
    --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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®