[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen staging] x86/ucode: Remove declarations for non-external functions
commit 0fde0493d7105ff8d8ffc07820dd3cb10035c51a Author: Andrew Cooper <andrew.cooper3@xxxxxxxxxx> AuthorDate: Wed Mar 18 21:34:20 2020 +0000 Commit: Andrew Cooper <andrew.cooper3@xxxxxxxxxx> CommitDate: Fri Mar 20 18:42:24 2020 +0000 x86/ucode: Remove declarations for non-external functions Neither microcode_free_patch() nor early_microcode_update_cpu() have external callers. Make them static. early_microcode_update_cpu()'s sole caller is following a use of microcode_ops, making the error path dead. Drop it as well. No functional change. Signed-off-by: Andrew Cooper <andrew.cooper3@xxxxxxxxxx> Acked-by: Jan Beulich <jbeulich@xxxxxxxx> --- xen/arch/x86/microcode.c | 7 ++----- xen/include/asm-x86/microcode.h | 2 -- xen/include/asm-x86/processor.h | 1 - 3 files changed, 2 insertions(+), 8 deletions(-) diff --git a/xen/arch/x86/microcode.c b/xen/arch/x86/microcode.c index 6907b312cf..27a88c6826 100644 --- a/xen/arch/x86/microcode.c +++ b/xen/arch/x86/microcode.c @@ -250,7 +250,7 @@ static struct microcode_patch *parse_blob(const char *buf, size_t len) return NULL; } -void microcode_free_patch(struct microcode_patch *microcode_patch) +static void microcode_free_patch(struct microcode_patch *microcode_patch) { microcode_ops->free_patch(microcode_patch->mc); xfree(microcode_patch); @@ -763,16 +763,13 @@ int microcode_update_one(bool start_update) } /* BSP calls this function to parse ucode blob and then apply an update. */ -int __init early_microcode_update_cpu(void) +static int __init early_microcode_update_cpu(void) { int rc = 0; const void *data = NULL; size_t len; struct microcode_patch *patch; - if ( !microcode_ops ) - return -ENOSYS; - if ( ucode_blob.size ) { len = ucode_blob.size; diff --git a/xen/include/asm-x86/microcode.h b/xen/include/asm-x86/microcode.h index 7d5a1f8e8a..1a2bbacc6c 100644 --- a/xen/include/asm-x86/microcode.h +++ b/xen/include/asm-x86/microcode.h @@ -41,6 +41,4 @@ struct cpu_signature { DECLARE_PER_CPU(struct cpu_signature, cpu_sig); extern const struct microcode_ops *microcode_ops; -void microcode_free_patch(struct microcode_patch *patch); - #endif /* ASM_X86__MICROCODE_H */ diff --git a/xen/include/asm-x86/processor.h b/xen/include/asm-x86/processor.h index b2b19a02cd..895c7032b9 100644 --- a/xen/include/asm-x86/processor.h +++ b/xen/include/asm-x86/processor.h @@ -581,7 +581,6 @@ int guest_wrmsr_xen(struct vcpu *v, uint32_t idx, uint64_t val); void microcode_set_module(unsigned int); int microcode_update(XEN_GUEST_HANDLE_PARAM(const_void), unsigned long len); -int early_microcode_update_cpu(void); int early_microcode_init(void); int microcode_update_one(bool start_update); int microcode_init_intel(void); -- generated by git-patchbot for /home/xen/git/xen.git#staging _______________________________________________ Xen-changelog mailing list Xen-changelog@xxxxxxxxxxxxxxxxxxxx https://lists.xenproject.org/xen-changelog
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |