linux-mm.kvack.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/9] vdso: Use only headers from the vdso/ namespace
@ 2024-09-03 15:14 Vincenzo Frascino
  2024-09-03 15:14 ` [PATCH 1/9] x86: vdso: Introduce asm/vdso/mman.h Vincenzo Frascino
                   ` (8 more replies)
  0 siblings, 9 replies; 40+ messages in thread
From: Vincenzo Frascino @ 2024-09-03 15:14 UTC (permalink / raw)
  To: linux-kernel, linux-arch, linux-mm
  Cc: Vincenzo Frascino, Andy Lutomirski, Thomas Gleixner,
	Jason A . Donenfeld, Christophe Leroy, Michael Ellerman,
	Nicholas Piggin, Naveen N Rao, Ingo Molnar, Borislav Petkov,
	Dave Hansen, H . Peter Anvin, Theodore Ts'o, Arnd Bergmann,
	Andrew Morton, Steven Rostedt, Masami Hiramatsu,
	Mathieu Desnoyers

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@kernel.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Jason A. Donenfeld <Jason@zx2c4.com>
Cc: Christophe Leroy <christophe.leroy@csgroup.eu>
Cc: Michael Ellerman <mpe@ellerman.id.au>
Cc: Nicholas Piggin <npiggin@gmail.com>
Cc: Christophe Leroy <christophe.leroy@csgroup.eu>
Cc: Naveen N Rao <naveen@kernel.org>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: Borislav Petkov <bp@alien8.de>
Cc: Dave Hansen <dave.hansen@linux.intel.com>
Cc: H. Peter Anvin <hpa@zytor.com>
Cc: Theodore Ts'o <tytso@mit.edu>
Cc: Arnd Bergmann <arnd@arndb.de>
Cc: Andrew Morton <akpm@linux-foundation.org>
Cc: Steven Rostedt <rostedt@goodmis.org>
Cc: Masami Hiramatsu <mhiramat@kernel.org>
Cc: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
Signed-off-by: Vincenzo Frascino <vincenzo.frascino@arm.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



^ permalink raw reply	[flat|nested] 40+ messages in thread

end of thread, other threads:[~2024-09-10 15:05 UTC | newest]

Thread overview: 40+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-09-03 15:14 [PATCH 0/9] vdso: Use only headers from the vdso/ namespace Vincenzo Frascino
2024-09-03 15:14 ` [PATCH 1/9] x86: vdso: Introduce asm/vdso/mman.h Vincenzo Frascino
2024-09-03 15:16   ` Jason A. Donenfeld
2024-09-03 15:23     ` Vincenzo Frascino
2024-09-04 16:56   ` Christophe Leroy
2024-09-06 10:55     ` Vincenzo Frascino
2024-09-03 15:14 ` [PATCH 2/9] vdso: Introduce vdso/mman.h Vincenzo Frascino
2024-09-03 15:14 ` [PATCH 3/9] x86: vdso: Introduce asm/vdso/page.h Vincenzo Frascino
2024-09-04 14:52   ` Arnd Bergmann
2024-09-04 15:05     ` Christophe Leroy
2024-09-06 11:26       ` Vincenzo Frascino
2024-09-06 11:20     ` Vincenzo Frascino
2024-09-06 19:19       ` Arnd Bergmann
2024-09-06 18:40         ` Christophe Leroy
2024-09-08 20:48           ` Arnd Bergmann
2024-09-10 12:28             ` Christophe Leroy
2024-09-10 15:05               ` Arnd Bergmann
2024-09-04 17:14   ` Christophe Leroy
2024-09-03 15:14 ` [PATCH 4/9] vdso: Introduce vdso/page.h Vincenzo Frascino
2024-09-04 17:16   ` Christophe Leroy
2024-09-06 11:35     ` Vincenzo Frascino
2024-09-03 15:14 ` [PATCH 5/9] vdso: Split linux/minmax.h Vincenzo Frascino
2024-09-04 17:17   ` Christophe Leroy
2024-09-04 17:23     ` Arnd Bergmann
2024-09-06 11:41       ` Vincenzo Frascino
2024-09-08 19:58         ` David Laight
2024-09-03 15:14 ` [PATCH 6/9] vdso: Split linux/array_size.h Vincenzo Frascino
2024-09-04 17:18   ` Christophe Leroy
2024-09-06 11:42     ` Vincenzo Frascino
2024-09-03 15:14 ` [PATCH 7/9] x86: vdso: Modify asm/vdso/getrandom.h to include datapage Vincenzo Frascino
2024-09-04 17:19   ` Christophe Leroy
2024-09-06 11:48     ` Vincenzo Frascino
2024-09-03 15:14 ` [PATCH 8/9] vdso: Modify vdso/getrandom.h to include the asm header Vincenzo Frascino
2024-09-03 15:14 ` [PATCH 9/9] vdso: Modify getrandom to include the correct namespace Vincenzo Frascino
2024-09-04 17:26   ` Christophe Leroy
2024-09-06 11:52     ` Vincenzo Frascino
2024-09-06 12:04       ` Christophe Leroy
2024-09-06 12:40         ` Vincenzo Frascino
2024-09-06 12:49           ` Christophe Leroy
2024-09-06 12:51             ` Vincenzo Frascino

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).