Bug 606262
Summary: | 64bit RHEL6.0 Guest kernel has cpu flags "rep_good" unsupported by host | ||
---|---|---|---|
Product: | Red Hat Enterprise Linux 5 | Reporter: | Joy Pu <ypu> |
Component: | kvm | Assignee: | john cooper <john.cooper> |
Status: | CLOSED NOTABUG | QA Contact: | Virtualization Bugs <virt-bugs> |
Severity: | medium | Docs Contact: | |
Priority: | low | ||
Version: | 5.6 | CC: | mkenneth, nobody, virt-maint, ykaul |
Target Milestone: | rc | ||
Target Release: | --- | ||
Hardware: | All | ||
OS: | Linux | ||
Whiteboard: | |||
Fixed In Version: | Doc Type: | Bug Fix | |
Doc Text: | Story Points: | --- | |
Clone Of: | Environment: | ||
Last Closed: | 2010-08-31 15:05:22 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: | |||
Bug Depends On: | |||
Bug Blocks: | 580948 |
Description
Joy Pu
2010-06-21 09:29:04 UTC
(In reply to comment #0) > Actual results: > Guest kernel has unsupported cpu flags by host > > Expected results: > There is no flags which is shown in guest but not in host The "rep_good" flag is a linux kernel defined pseudo flag and is not exported by kvm/qemu: arch/x86/include/asm/cpufeature.h: #define X86_FEATURE_MFENCE_RDTSC (3*32+17) /* "" Mfence synchronizes RDTSC */ arch/x86/kernel/cpu/feature_names.c: /* Other (Linux-defined) */ "cxmmx", "k6_mtrr", "cyrix_arr", "centaur_mcr", NULL, NULL, NULL, NULL, "constant_tsc", "up", NULL, "arch_perfmon", "pebs", "bts", NULL, NULL, "rep_good", NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, NULL, This appears to be informational-only and is not a bug. Even if it is an issue in some scenario it falls outside of qemu/kvm. |