]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
powerpc/sstep: make emulate_vsx_load and emulate_vsx_store static
authorMichal Suchanek <msuchanek@suse.de>
Tue, 1 Oct 2024 13:03:49 +0000 (15:03 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 14 Dec 2024 18:51:03 +0000 (19:51 +0100)
[ Upstream commit a26c4dbb3d9c1821cb0fc11cb2dbc32d5bf3463b ]

These functions are not used outside of sstep.c

Fixes: 350779a29f11 ("powerpc: Handle most loads and stores in instruction emulation code")
Signed-off-by: Michal Suchanek <msuchanek@suse.de>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
Link: https://patch.msgid.link/20241001130356.14664-1-msuchanek@suse.de
Signed-off-by: Sasha Levin <sashal@kernel.org>
arch/powerpc/include/asm/sstep.h
arch/powerpc/lib/sstep.c

index 1df867c2e054e55d1ee1dea381a87d5854d43fd4..1ece2b0e9369b6e8fd249d52ed56b7099c00260b 100644 (file)
@@ -173,9 +173,4 @@ extern int emulate_step(struct pt_regs *regs, struct ppc_inst instr);
  */
 extern int emulate_loadstore(struct pt_regs *regs, struct instruction_op *op);
 
-extern void emulate_vsx_load(struct instruction_op *op, union vsx_reg *reg,
-                            const void *mem, bool cross_endian);
-extern void emulate_vsx_store(struct instruction_op *op,
-                             const union vsx_reg *reg, void *mem,
-                             bool cross_endian);
 extern int emulate_dcbz(unsigned long ea, struct pt_regs *regs);
index ecc2e06854d74376ad432c6385cfa9dc55d6b33b..c08665c0117063ce1badf0b584a205515b05a2cc 100644 (file)
@@ -723,8 +723,8 @@ static nokprobe_inline int emulate_stq(struct pt_regs *regs, unsigned long ea,
 #endif /* __powerpc64 */
 
 #ifdef CONFIG_VSX
-void emulate_vsx_load(struct instruction_op *op, union vsx_reg *reg,
-                     const void *mem, bool rev)
+static nokprobe_inline void emulate_vsx_load(struct instruction_op *op, union vsx_reg *reg,
+                                            const void *mem, bool rev)
 {
        int size, read_size;
        int i, j;
@@ -806,11 +806,9 @@ void emulate_vsx_load(struct instruction_op *op, union vsx_reg *reg,
                break;
        }
 }
-EXPORT_SYMBOL_GPL(emulate_vsx_load);
-NOKPROBE_SYMBOL(emulate_vsx_load);
 
-void emulate_vsx_store(struct instruction_op *op, const union vsx_reg *reg,
-                      void *mem, bool rev)
+static nokprobe_inline void emulate_vsx_store(struct instruction_op *op, const union vsx_reg *reg,
+                                             void *mem, bool rev)
 {
        int size, write_size;
        int i, j;
@@ -898,8 +896,6 @@ void emulate_vsx_store(struct instruction_op *op, const union vsx_reg *reg,
                break;
        }
 }
-EXPORT_SYMBOL_GPL(emulate_vsx_store);
-NOKPROBE_SYMBOL(emulate_vsx_store);
 
 static nokprobe_inline int do_vsx_load(struct instruction_op *op,
                                       unsigned long ea, struct pt_regs *regs,