aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/kernel/microcode_amd.c
diff options
context:
space:
mode:
authorDan Carpenter <error27@gmail.com>2011-02-18 04:17:16 -0500
committerIngo Molnar <mingo@elte.hu>2011-02-20 08:01:32 -0500
commit1396fa9cd2e34669253b7ca8c75f12103481f71c (patch)
treeff257508492d732556bb285c42189a36939ad4bb /arch/x86/kernel/microcode_amd.c
parent44d60c0f5c58c2168f31df9a481761451840eb54 (diff)
x86, microcode, AMD: Fix signedness bug in generic_load_microcode()
install_equiv_cpu_table() returns type int. It uses negative error codes so using an unsigned type breaks the error handling. Signed-off-by: Dan Carpenter <error27@gmail.com> Acked-by: Borislav Petkov <borislav.petkov@amd.com> Cc: open list:AMD MICROCODE UPD... <amd64-microcode@amd64.org> Cc: Andreas Herrmann <andreas.herrmann3@amd.com> LKML-Reference: <20110218091716.GA4384@bicker> Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/kernel/microcode_amd.c')
-rw-r--r--arch/x86/kernel/microcode_amd.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86/kernel/microcode_amd.c b/arch/x86/kernel/microcode_amd.c
index 9fb8405451c5..c5610384ab16 100644
--- a/arch/x86/kernel/microcode_amd.c
+++ b/arch/x86/kernel/microcode_amd.c
@@ -246,7 +246,7 @@ generic_load_microcode(int cpu, const u8 *data, size_t size)
246 struct ucode_cpu_info *uci = ucode_cpu_info + cpu; 246 struct ucode_cpu_info *uci = ucode_cpu_info + cpu;
247 struct microcode_header_amd *mc_hdr = NULL; 247 struct microcode_header_amd *mc_hdr = NULL;
248 unsigned int mc_size, leftover; 248 unsigned int mc_size, leftover;
249 unsigned long offset; 249 int offset;
250 const u8 *ucode_ptr = data; 250 const u8 *ucode_ptr = data;
251 void *new_mc = NULL; 251 void *new_mc = NULL;
252 unsigned int new_rev = uci->cpu_sig.rev; 252 unsigned int new_rev = uci->cpu_sig.rev;