summaryrefslogtreecommitdiffstats
path: root/sys
diff options
context:
space:
mode:
authorstas <stas@FreeBSD.org>2009-06-26 22:13:15 +0000
committerstas <stas@FreeBSD.org>2009-06-26 22:13:15 +0000
commitc7738de5e33a48c41320f9d53773b5fdb04821b5 (patch)
tree887e15ef09cad93ce2ce9be021022aaeab912e92 /sys
parentd24984ad1533acb1262e116e4c9e56d8326122c0 (diff)
downloadFreeBSD-src-c7738de5e33a48c41320f9d53773b5fdb04821b5.zip
FreeBSD-src-c7738de5e33a48c41320f9d53773b5fdb04821b5.tar.gz
- Don't zero data field in case of MSR write operation. Before this change
the value written to MSR register was always 0 regardless of value passed by user. - Use proper data pointer when performing AMD microcode update. Previously, the pointer to user-space data has been provided instead, which is totally incorrect. Approved by: re (kib) MFC after: 1 week
Diffstat (limited to 'sys')
-rw-r--r--sys/dev/cpuctl/cpuctl.c11
1 files changed, 7 insertions, 4 deletions
diff --git a/sys/dev/cpuctl/cpuctl.c b/sys/dev/cpuctl/cpuctl.c
index 157991c..f325797 100644
--- a/sys/dev/cpuctl/cpuctl.c
+++ b/sys/dev/cpuctl/cpuctl.c
@@ -222,14 +222,17 @@ cpuctl_do_msr(int cpu, cpuctl_msr_args_t *data, u_long cmd, struct thread *td)
* Explicitly clear cpuid data to avoid returning stale
* info
*/
- data->data = 0;
DPRINTF("[cpuctl,%d]: operating on MSR %#0x for %d cpu\n", __LINE__,
data->msr, cpu);
oldcpu = td->td_oncpu;
is_bound = cpu_sched_is_bound(td);
set_cpu(cpu, td);
- ret = cmd == CPUCTL_RDMSR ? rdmsr_safe(data->msr, &data->data) :
- wrmsr_safe(data->msr, data->data);
+ if (cmd == CPUCTL_RDMSR) {
+ data->data = 0;
+ ret = rdmsr_safe(data->msr, &data->data);
+ } else {
+ ret = wrmsr_safe(data->msr, data->data);
+ }
restore_cpu(oldcpu, is_bound, td);
return (ret);
}
@@ -368,7 +371,7 @@ update_amd(int cpu, cpuctl_update_args_t *args, struct thread *td)
/*
* Perform update.
*/
- wrmsr_safe(MSR_K8_UCODE_UPDATE, (uintptr_t)args->data);
+ wrmsr_safe(MSR_K8_UCODE_UPDATE, (uintptr_t)ptr);
/*
* Serialize instruction flow.
OpenPOWER on IntegriCloud