[tip: x86/cleanups] x86/mm/32: Fix -Wmissing prototypes warnings for init.c

2020-06-18 Thread tip-bot2 for Benjamin Thiel
The following commit has been merged into the x86/cleanups branch of tip: Commit-ID: 56ce93700eb630a8d894f5a578f166888ae8cba6 Gitweb: https://git.kernel.org/tip/56ce93700eb630a8d894f5a578f166888ae8cba6 Author:Benjamin Thiel AuthorDate:Sat, 06 Jun 2020 14:37:43 +02:00

[tip: x86/cleanups] x86/mm: Fix -Wmissing-prototypes warnings for arch/x86/mm/init.c

2020-06-17 Thread tip-bot2 for Benjamin Thiel
The following commit has been merged into the x86/cleanups branch of tip: Commit-ID: d5249bc7a1a8869da90ba668b331b0b3f8996924 Gitweb: https://git.kernel.org/tip/d5249bc7a1a8869da90ba668b331b0b3f8996924 Author:Benjamin Thiel AuthorDate:Sat, 06 Jun 2020 14:26:29 +02:00

[PATCH] x86/xen: Fix a -Wmissing prototypes warning for xen_start_kernel()

2020-06-06 Thread Benjamin Thiel
Fix: arch/x86/xen/enlighten_pv.c:1212:34: warning: no previous prototype for ‘xen_start_kernel’ [-Wmissing-prototypes] asmlinkage __visible void __init xen_start_kernel(void) Add a prototype for xen_start_kernel() in a separate xen-specific header. Signed-off-by: Benjamin Thiel --- arch

[PATCH] x86/mm/32: Fix -Wmissing prototypes warnings in init.c

2020-06-06 Thread Benjamin Thiel
poking_init(void) Lift init_memory_mapping() and poking_init() out of the ifdef CONFIG_X86_64 to make the functions visible on 32-bit too. Signed-off-by: Benjamin Thiel --- arch/x86/include/asm/pgtable.h | 7 +++ 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/arch/x86/include

[PATCH] x86/mm: Fix -Wmissing-prototypes warning in init.c

2020-06-06 Thread Benjamin Thiel
mem_encrypt_free_decrypted_mem(void) { } ^~ It's ok to convert to static inline because the function is only use in x86. Is not shared with other architectures so that it is not necessary to be __weak. Signed-off-by: Benjamin Thiel --- arch/x86

[tip: efi/urgent] efi: Pull up arch-specific prototype efi_systab_show_arch()

2020-05-22 Thread tip-bot2 for Benjamin Thiel
The following commit has been merged into the efi/urgent branch of tip: Commit-ID: e8da08a088236aff4b51d4ec97c750051f9fe417 Gitweb: https://git.kernel.org/tip/e8da08a088236aff4b51d4ec97c750051f9fe417 Author:Benjamin Thiel AuthorDate:Sat, 16 May 2020 15:26:47 +02:00

[tip: x86/cleanups] x86/audit: Fix a -Wmissing-prototypes warning for ia32_classify_syscall()

2020-05-19 Thread tip-bot2 for Benjamin Thiel
The following commit has been merged into the x86/cleanups branch of tip: Commit-ID: 0e5e3d4461a22d739fb2284a6e313fb6cecf2871 Gitweb: https://git.kernel.org/tip/0e5e3d4461a22d739fb2284a6e313fb6cecf2871 Author:Benjamin Thiel AuthorDate:Sat, 16 May 2020 14:38:16 +02:00

[PATCH v2] efi: Pull up arch-specific prototype efi_systab_show_arch()

2020-05-16 Thread Benjamin Thiel
... in order to fix a -Wmissing-prototypes warning: arch/x86/platform/efi/efi.c:957:7: warning: no previous prototype for ‘efi_systab_show_arch’ [-Wmissing-prototypes] char *efi_systab_show_arch(char *str) Signed-off-by: Benjamin Thiel --- drivers/firmware/efi/efi.c | 5 + include/linux

[PATCH] efi: Pull up arch-specific prototype efi_systab_show_arch()

2020-05-16 Thread Benjamin Thiel
... in order to fix a -Wmissing-prototypes warning: arch/x86/platform/efi/efi.c:957:7: warning: no previous prototype for ‘efi_systab_show_arch’ [-Wmissing-prototypes] char *efi_systab_show_arch(char *str) Signed-off-by: Benjamin Thiel --- drivers/firmware/efi/efi.c | 7 ++- include/linux

[PATCH] x86/audit: Fix a -Wmissing-prototypes warning for ia32_classify_syscall()

2020-05-16 Thread Benjamin Thiel
Lift the prototype of ia32_classify_syscall() into its own header. Signed-off-by: Benjamin Thiel --- arch/x86/ia32/audit.c| 1 + arch/x86/include/asm/audit.h | 7 +++ arch/x86/kernel/audit_64.c | 2 +- 3 files changed, 9 insertions(+), 1 deletion(-) create mode 100644 arch/x86