]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
x86/jump_label: Make tp_vec_nr static
authorYueHaibing <yuehaibing@huawei.com>
Tue, 25 Jun 2019 03:45:48 +0000 (11:45 +0800)
committerThomas Gleixner <tglx@linutronix.de>
Tue, 25 Jun 2019 07:22:14 +0000 (09:22 +0200)
Fix sparse warning:

arch/x86/kernel/jump_label.c:106:5: warning:
 symbol 'tp_vec_nr' was not declared. Should it be static?

It's only used in jump_label.c, so make it static.

Fixes: ba54f0c3f7c4 ("x86/jump_label: Batch jump label updates")
Reported-by: Hulk Robot <hulkci@huawei.com>
Signed-off-by: YueHaibing <yuehaibing@huawei.com>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Cc: <bp@alien8.de>
Cc: <hpa@zytor.com>
Cc: <peterz@infradead.org>
Cc: <bristot@redhat.com>
Cc: <namit@vmware.com>
Link: https://lkml.kernel.org/r/20190625034548.26392-1-yuehaibing@huawei.com
arch/x86/kernel/jump_label.c

index ea13808bf6daf44fd78740bcdc593dccd174a495..044053235302eb59aaee5b9289f27e833202536d 100644 (file)
@@ -103,7 +103,7 @@ void arch_jump_label_transform(struct jump_entry *entry,
 
 #define TP_VEC_MAX (PAGE_SIZE / sizeof(struct text_poke_loc))
 static struct text_poke_loc tp_vec[TP_VEC_MAX];
-int tp_vec_nr = 0;
+static int tp_vec_nr;
 
 bool arch_jump_label_transform_queue(struct jump_entry *entry,
                                     enum jump_label_type type)