diff options
author | Anna-Maria Behnsen <anna-maria@linutronix.de> | 2024-02-19 16:39:38 +0100 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2024-02-20 20:56:01 +0100 |
commit | d697a9997a0dfd1fcb26144f383c38e371b191b0 (patch) | |
tree | 8cdc64a43bf07179da9aecb44cf6de941e556b1a /arch/mips/include | |
parent | LoongArch: vdso: Use generic union vdso_data_store (diff) | |
download | linux-d697a9997a0dfd1fcb26144f383c38e371b191b0.tar.xz linux-d697a9997a0dfd1fcb26144f383c38e371b191b0.zip |
MIPS: vdso: Use generic union vdso_data_store
There is already a generic union definition for vdso_data_store in the vdso
datapage header.
Use this definition to prevent code duplication.
Signed-off-by: Anna-Maria Behnsen <anna-maria@linutronix.de>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Reviewed-by: Vincenzo Frascino <vincenzo.frascino@arm.com>
Reviewed-by: Kees Cook <keescook@chromium.org>
Link: https://lore.kernel.org/r/20240219153939.75719-10-anna-maria@linutronix.de
Diffstat (limited to 'arch/mips/include')
-rw-r--r-- | arch/mips/include/asm/vdso.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/arch/mips/include/asm/vdso.h b/arch/mips/include/asm/vdso.h index cc7b516129a8..afb03d45bcd0 100644 --- a/arch/mips/include/asm/vdso.h +++ b/arch/mips/include/asm/vdso.h @@ -50,9 +50,4 @@ extern struct mips_vdso_image vdso_image_o32; extern struct mips_vdso_image vdso_image_n32; #endif -union mips_vdso_data { - struct vdso_data data[CS_BASES]; - u8 page[PAGE_SIZE]; -}; - #endif /* __ASM_VDSO_H */ |