[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-Id: <20240903151437.1002990-1-vincenzo.frascino@arm.com>
Date: Tue, 3 Sep 2024 16:14:28 +0100
From: Vincenzo Frascino <vincenzo.frascino@....com>
To: linux-kernel@...r.kernel.org,
linux-arch@...r.kernel.org,
linux-mm@...ck.org
Cc: Vincenzo Frascino <vincenzo.frascino@....com>,
Andy Lutomirski <luto@...nel.org>,
Thomas Gleixner <tglx@...utronix.de>,
"Jason A . Donenfeld" <Jason@...c4.com>,
Christophe Leroy <christophe.leroy@...roup.eu>,
Michael Ellerman <mpe@...erman.id.au>,
Nicholas Piggin <npiggin@...il.com>,
Naveen N Rao <naveen@...nel.org>,
Ingo Molnar <mingo@...hat.com>,
Borislav Petkov <bp@...en8.de>,
Dave Hansen <dave.hansen@...ux.intel.com>,
"H . Peter Anvin" <hpa@...or.com>,
Theodore Ts'o <tytso@....edu>,
Arnd Bergmann <arnd@...db.de>,
Andrew Morton <akpm@...ux-foundation.org>,
Steven Rostedt <rostedt@...dmis.org>,
Masami Hiramatsu <mhiramat@...nel.org>,
Mathieu Desnoyers <mathieu.desnoyers@...icios.com>
Subject: [PATCH 0/9] vdso: Use only headers from the vdso/ namespace
The recent implementation of getrandom in the generic vdso library,
includes headers from outside of the vdso/ namespace.
The purpose of this patch series is to refactor the code to make sure
that the library uses only the allowed namespace.
The series has been rebased on [1] to simplify the testing.
[1] git://git.kernel.org/pub/scm/linux/kernel/git/crng/random.git master
Cc: Andy Lutomirski <luto@...nel.org>
Cc: Thomas Gleixner <tglx@...utronix.de>
Cc: Jason A. Donenfeld <Jason@...c4.com>
Cc: Christophe Leroy <christophe.leroy@...roup.eu>
Cc: Michael Ellerman <mpe@...erman.id.au>
Cc: Nicholas Piggin <npiggin@...il.com>
Cc: Christophe Leroy <christophe.leroy@...roup.eu>
Cc: Naveen N Rao <naveen@...nel.org>
Cc: Ingo Molnar <mingo@...hat.com>
Cc: Borislav Petkov <bp@...en8.de>
Cc: Dave Hansen <dave.hansen@...ux.intel.com>
Cc: H. Peter Anvin <hpa@...or.com>
Cc: Theodore Ts'o <tytso@....edu>
Cc: Arnd Bergmann <arnd@...db.de>
Cc: Andrew Morton <akpm@...ux-foundation.org>
Cc: Steven Rostedt <rostedt@...dmis.org>
Cc: Masami Hiramatsu <mhiramat@...nel.org>
Cc: Mathieu Desnoyers <mathieu.desnoyers@...icios.com>
Signed-off-by: Vincenzo Frascino <vincenzo.frascino@....com>
Vincenzo Frascino (9):
x86: vdso: Introduce asm/vdso/mman.h
vdso: Introduce vdso/mman.h
x86: vdso: Introduce asm/vdso/page.h
vdso: Introduce vdso/page.h
vdso: Split linux/minmax.h
vdso: Split linux/array_size.h
x86: vdso: Modify asm/vdso/getrandom.h to include datapage
vdso: Modify vdso/getrandom.h to include the asm header
vdso: Modify getrandom to include the correct namespace
arch/x86/include/asm/vdso/getrandom.h | 2 ++
arch/x86/include/asm/vdso/mman.h | 15 +++++++++++
arch/x86/include/asm/vdso/page.h | 15 +++++++++++
include/linux/array_size.h | 8 +-----
include/linux/minmax.h | 28 +-------------------
include/vdso/array_size.h | 13 +++++++++
include/vdso/getrandom.h | 1 +
include/vdso/minmax.h | 38 +++++++++++++++++++++++++++
include/vdso/mman.h | 7 +++++
include/vdso/page.h | 7 +++++
lib/vdso/getrandom.c | 22 ++++++----------
11 files changed, 108 insertions(+), 48 deletions(-)
create mode 100644 arch/x86/include/asm/vdso/mman.h
create mode 100644 arch/x86/include/asm/vdso/page.h
create mode 100644 include/vdso/array_size.h
create mode 100644 include/vdso/minmax.h
create mode 100644 include/vdso/mman.h
create mode 100644 include/vdso/page.h
--
2.34.1
Powered by blists - more mailing lists