Bug 638318
| Summary: | odd output on AMD. | ||
|---|---|---|---|
| Product: | [Fedora] Fedora | Reporter: | Dave Jones <davej> |
| Component: | microcode_ctl | Assignee: | Anton Arapov <anton> |
| Status: | CLOSED NOTABUG | QA Contact: | Fedora Extras Quality Assurance <extras-qa> |
| Severity: | medium | Docs Contact: | |
| Priority: | low | ||
| Version: | 14 | CC: | andreas.herrmann3, anton, jcm, jonathan, nobody, pfrields |
| Target Milestone: | --- | ||
| Target Release: | --- | ||
| Hardware: | All | ||
| OS: | Linux | ||
| Whiteboard: | |||
| Fixed In Version: | Doc Type: | Bug Fix | |
| Doc Text: | Story Points: | --- | |
| Clone Of: | Environment: | ||
| Last Closed: | 2010-10-15 10:59:30 UTC | Type: | --- |
| Regression: | --- | Mount Type: | --- |
| Documentation: | --- | CRM: | |
| Verified Versions: | Category: | --- | |
| oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |
| Cloudforms Team: | --- | Target Upstream Version: | |
| Embargoed: | |||
|
Description
Dave Jones
2010-09-28 18:53:57 UTC
updates triggered by the udev -> loading kernel's microcode module. In order to patch the "weird stuff" kernel changes are needed. :) ucode update on AMD is supported _only_ using the firmware loader interface. So you are right, after load of the AMD ucode module the update happened when the driver called request_firmware(). Using microcode_ctl and the /dev/cpu/microcode interface is not supported by the AMD microcode loader (and this is indicated by the kernel messages). NOTABUG for user-space. AFAIK, related upstream kernel crew is aware of the problem. The fix for this bug: (in rawhide/f15 already) --- microcode_ctl.rules.old 2011-07-21 10:08:07.897302300 +0200 +++ microcode_ctl.rules 2011-06-30 07:56:33.000000000 +0200 @@ -1,2 +1,2 @@ KERNEL=="cpu[0-9]*", ACTION=="add", RUN+="/sbin/modprobe microcode" -KERNEL=="microcode", ACTION=="add", RUN+="/sbin/microcode_ctl -Qu" +KERNEL=="devices/platform/microcode", ACTION=="add", RUN+="/sbin/microcode_ctl -Qu" |