Displaying 2 results from an estimated 2 matches for "dc902ffeed73".
2011 Mar 13
0
[xen-4.1-testing test] 6412: regressions - FAIL
...eck fail never pass
test-i386-i386-xl-win 13 guest-stop fail never pass
test-i386-xcpkern-i386-win 16 leak-check/check fail never pass
version targeted for testing:
xen d4352abf3450
baseline version:
xen dc902ffeed73
------------------------------------------------------------
People who touched revisions under test:
Ian Jackson <ian.jackson@eu.citrix.com>
Jan Beulich <jbeulich@novell.com>
Liu, Jinsong <jinsong.liu@intel.com>
Stefano Stabellini <stefano.stabellini@eu.citrix.com>...
2011 Mar 14
0
[PATCH] x86: add volatile prefix for cpuid asm clauses
...ossible changing operations being optimized in incorrect way by compiler.
The sample bug is in xsave_init while debug=n. The second call to cpuid_count() may be optimized and lead to a BUG_ON case while compare xsave_cntxt_size with ebx.
Signed-off-by: Wei Gang <gang.wei@intel.com>
diff -r dc902ffeed73 xen/include/asm-x86/processor.h
--- a/xen/include/asm-x86/processor.h Thu Mar 10 18:37:40 2011 +0000
+++ b/xen/include/asm-x86/processor.h Wed Mar 16 02:30:49 2011 +0800
@@ -223,7 +223,7 @@ static always_inline void detect_ht(stru
* resulting in stale register contents being returned.
*/
#defi...