diff options
author | Qiujun Huang <hqjagain@gmail.com> | 2020-03-03 19:42:12 +0300 |
---|---|---|
committer | Borislav Petkov <bp@suse.de> | 2020-03-25 14:42:35 +0300 |
commit | 244febbee876203d8505dfadcc6edb82a0e061b8 (patch) | |
tree | e04cc64232eea61393f16fa69b890fc05c0fbdea /arch/x86/kernel/alternative.c | |
parent | 0e79ad863df43b01090ae18c97de5c3787f069c6 (diff) | |
download | linux-244febbee876203d8505dfadcc6edb82a0e061b8.tar.xz |
x86/alternatives: Mark text_poke_loc_init() static
The function is only used in this file so make it static.
[ bp: Massage. ]
Signed-off-by: Qiujun Huang <hqjagain@gmail.com>
Signed-off-by: Borislav Petkov <bp@suse.de>
Acked-by: Peter Zijlstra <peterz@infradead.org>
Link: https://lkml.kernel.org/r/1583253732-18988-1-git-send-email-hqjagain@gmail.com
Diffstat (limited to 'arch/x86/kernel/alternative.c')
-rw-r--r-- | arch/x86/kernel/alternative.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86/kernel/alternative.c b/arch/x86/kernel/alternative.c index 15ac0d5f4b40..7867dfb3963e 100644 --- a/arch/x86/kernel/alternative.c +++ b/arch/x86/kernel/alternative.c @@ -1167,8 +1167,8 @@ static void text_poke_bp_batch(struct text_poke_loc *tp, unsigned int nr_entries atomic_cond_read_acquire(&desc.refs, !VAL); } -void text_poke_loc_init(struct text_poke_loc *tp, void *addr, - const void *opcode, size_t len, const void *emulate) +static void text_poke_loc_init(struct text_poke_loc *tp, void *addr, + const void *opcode, size_t len, const void *emulate) { struct insn insn; |