lists.openwall.net | lists / announce owl-users owl-dev john-users john-dev passwdqc-users yescrypt popa3d-users / oss-security kernel-hardening musl sabotage tlsify passwords / crypt-dev xvendor / Bugtraq Full-Disclosure linux-kernel linux-netdev linux-ext4 linux-hardening linux-cve-announce PHC | |
Open Source and information security mailing list archives
| ||
|
Message-ID: <20231227-vvar-v1-1-d2396e789179@google.com> Date: Wed, 27 Dec 2023 19:36:06 +0000 From: Tanzir Hasan <tanzirh@...gle.com> To: Andy Lutomirski <luto@...nel.org>, Thomas Gleixner <tglx@...utronix.de>, Ingo Molnar <mingo@...hat.com>, Borislav Petkov <bp@...en8.de>, Dave Hansen <dave.hansen@...ux.intel.com>, x86@...nel.org, "H. Peter Anvin" <hpa@...or.com> Cc: linux-kernel@...r.kernel.org, Nick Desaulniers <nnn@...gle.com>, Tanzir Hasan <tanzirh@...gle.com> Subject: [PATCH] x86/vdso: shrink vdso/vma.i via IWYU This diff uses an open source tool include-what-you-use (IWYU) to modify the include list, changing indirect includes to direct includes. IWYU is implemented using the IWYUScripts github repository which is a tool that is currently undergoing development. These changes seek to improve build times. This change to vdso/vma.c resulted in a preprocessed size of lib/string.i from 66348 lines to 54596 lines (-19%) for the x86 defconfig. Signed-off-by: Tanzir Hasan <tanzirh@...gle.com> --- arch/x86/entry/vdso/vma.c | 28 ++++++++++++++++------------ 1 file changed, 16 insertions(+), 12 deletions(-) diff --git a/arch/x86/entry/vdso/vma.c b/arch/x86/entry/vdso/vma.c index 7645730dc228..fa601437b2c5 100644 --- a/arch/x86/entry/vdso/vma.c +++ b/arch/x86/entry/vdso/vma.c @@ -4,27 +4,32 @@ * * This contains most of the x86 vDSO kernel-side code. */ -#include <linux/mm.h> +#include <linux/bug.h> +#include <linux/build_bug.h> +#include <linux/compiler.h> +#include <linux/elf.h> +#include <linux/errno.h> #include <linux/err.h> -#include <linux/sched.h> -#include <linux/sched/task_stack.h> -#include <linux/slab.h> #include <linux/init.h> -#include <linux/random.h> -#include <linux/elf.h> -#include <linux/cpu.h> +#include <linux/kstrtox.h> +#include <linux/mm.h> +#include <linux/mm_types.h> +#include <linux/mmap_lock.h> #include <linux/ptrace.h> +#include <linux/random.h> +#include <linux/sched.h> +#include <linux/sched/task_stack.h> +#include <linux/stddef.h> +#include <linux/thread_info.h> #include <linux/time_namespace.h> +#include <linux/types.h> #include <asm/pvclock.h> #include <asm/vgtod.h> -#include <asm/proto.h> #include <asm/vdso.h> #include <asm/vvar.h> -#include <asm/tlb.h> #include <asm/page.h> -#include <asm/desc.h> -#include <asm/cpufeature.h> +#include <asm/mmu.h> #include <clocksource/hyperv_timer.h> #undef _ASM_X86_VVAR_H @@ -57,7 +62,6 @@ int __init init_vdso_image(const struct vdso_image *image) } static const struct vm_special_mapping vvar_mapping; -struct linux_binprm; static vm_fault_t vdso_fault(const struct vm_special_mapping *sm, struct vm_area_struct *vma, struct vm_fault *vmf) --- base-commit: fbafc3e621c3f4ded43720fdb1d6ce1728ec664e change-id: 20231226-vvar-f9ff0021ec86 Best regards, -- Tanzir Hasan <tanzirh@...gle.com>
Powered by blists - more mailing lists