x86/xen: add prototypes for paravirt mmu functions
authorJuergen Gross <jgross@suse.com>
Wed, 14 Jun 2023 07:35:00 +0000 (09:35 +0200)
committerJuergen Gross <jgross@suse.com>
Mon, 26 Jun 2023 05:47:11 +0000 (07:47 +0200)
commit3d013424de1efc2c9e68c6c06e76159e467c7ba8
tree476c74f634383182f2c39f6453449261a38ad5c6
parent9338c2233b97f97aa68bc42f53b06e90def129d7
x86/xen: add prototypes for paravirt mmu functions

The paravirt MMU functions called via the PV_CALLEE_SAVE_REGS_THUNK()
macro can't be defined to be static, as the macro is generating a
function via asm() statement calling the paravirt MMU function.

In order to avoid warnings when specifying "-Wmissing-prototypes" for
the build, add local prototypes (there should never be any external
caller of those functions).

Reported-by: Arnd Bergmann <arnd@kernel.org>
Signed-off-by: Juergen Gross <jgross@suse.com>
Reviewed-by: Boris Ostrovsky <boris.ostrovsky@oracle.com>
Link: https://lore.kernel.org/r/20230614073501.10101-2-jgross@suse.com
Signed-off-by: Juergen Gross <jgross@suse.com>
arch/x86/xen/mmu_pv.c