[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <87y1b0vp8m.ffs@tglx>
Date: Sat, 02 Mar 2024 12:37:29 +0100
From: Thomas Gleixner <tglx@...utronix.de>
To: kernel test robot <lkp@...el.com>
Cc: oe-kbuild-all@...ts.linux.dev, linux-kernel@...r.kernel.org, Arjan van
de Ven <arjan@...ux.intel.com>, x86@...nel.org
Subject: Re: arch/x86/include/asm/processor.h:698:16: sparse: sparse:
incorrect type in initializer (different address spaces)
On Fri, Mar 01 2024 at 23:26, Thomas Gleixner wrote:
> Sorry, my fault. I can reproduce now but it still does not make any
> sense. The code is correct...
>
> Let me put something together which the sparse folks can digest.
Bah. sparse is actually right. I completely missed the fact that this is
an UP build which has:
extern struct cpuinfo_x86 boot_cpu_data;
#define cpu_info boot_cpu_data
So any access with this_cpu*(), per_cpu*() etc. is actually incorrect from
sparse's point of view.
>From a compiler point of view it just works because __percpu dissolves
and the whole thing produces correct code magically.
Most places in x86 use cpu_data(cpu) to access per cpu data which is
defined as per_cpu(cpu_info, cpu) for SMP and boot_cpu_info for UP.
That's fine, but there are places like the MCE code which really needs
raw_cpu_ptr(). Sure we can write ugly wrappers for that and for some
other accessors. But that's all just wrong and ugly.
The proper solution would be to force SMP for x86, but Linus shot it
down when I wanted to do that last time.
Let me think about it.
Thanks,
tglx
Powered by blists - more mailing lists