XEN 5.5.0 and clflush

Kostik Belousov kostikbel at gmail.com
Tue Sep 22 13:31:14 UTC 2009


On Tue, Sep 22, 2009 at 08:34:01AM -0400, Larry Baird wrote:
> I originally sent this message to freebsd-current.  Got no response, perhaps
> freebsd-xen is a better mailing list. (-:
> 
> Since the end of August I have been unable to boot a generic kernel from
> FreeBSD current or 8 under XEN 5.5.0.  Finally had a chance to briefly look
> at the problem.  If I apply attached patch to remove calls to clflush() I
> am able to boot current.  Hopefully somebody can shed some light.  Is
> XEN incorrecty reporting CPUID_CLFSH or is XEN not correctly virtualizing
> this option.  Or is the issue someplace else?  I have also attached the
> dmesg from a successful boot.  This issue seems to be same as
> http://www.freebsd.org/cgi/query-pr.cgi?pr=138863
> 
> 
> Here is an attempt to type backtrace from non-booting kernel:
> 
> pmap_invalidate_cache_range(c3252000,c3253000,c3253000,0,fee00000,...) at
> +pamp_invalidate_cache_range+0x60
> pmap_mapdev_attr(fee00000,400,0,c1420d34,c0ba7a72,...) at pmap_mapdev_attr+0xec
> pmap_mapdev() at pmap_mapdev+0x20
> lapic_init() at lapic_init+0x32
> madt_setup_local() at madt_setup_local+0x2c
> apic_init() at apic_init+0x11a
> mistartup() at mi_startup+0x96
> begin() at begin+0x2c

I am sorry for delay in answering, you may use this temporal patch until
the issue is resolved somehow.

I think I will have to disable CLFLUSH support for intel CPUs when self-snoop
is not reported.

diff --git a/sys/amd64/amd64/pmap.c b/sys/amd64/amd64/pmap.c
index 1f37765..7de1ca5 100644
--- a/sys/amd64/amd64/pmap.c
+++ b/sys/amd64/amd64/pmap.c
@@ -997,7 +997,7 @@ pmap_invalidate_cache_range(vm_offset_t sva, vm_offset_t eva)
 
 	if (cpu_feature & CPUID_SS)
 		; /* If "Self Snoop" is supported, do nothing. */
-	else if (cpu_feature & CPUID_CLFSH) {
+	else if (0 && cpu_feature & CPUID_CLFSH) {
 
 		/*
 		 * Otherwise, do per-cache line flush.  Use the mfence
diff --git a/sys/i386/i386/pmap.c b/sys/i386/i386/pmap.c
index 7e3bc37..56c6776 100644
--- a/sys/i386/i386/pmap.c
+++ b/sys/i386/i386/pmap.c
@@ -994,7 +994,7 @@ pmap_invalidate_cache_range(vm_offset_t sva, vm_offset_t eva)
 
 	if (cpu_feature & CPUID_SS)
 		; /* If "Self Snoop" is supported, do nothing. */
-	else if (cpu_feature & CPUID_CLFSH) {
+	else if (0 && cpu_feature & CPUID_CLFSH) {
 
 		/*
 		 * Otherwise, do per-cache line flush.  Use the mfence
diff --git a/sys/i386/xen/pmap.c b/sys/i386/xen/pmap.c
index 1d9c9c1..7dc8029 100644
--- a/sys/i386/xen/pmap.c
+++ b/sys/i386/xen/pmap.c
@@ -994,7 +994,7 @@ pmap_invalidate_cache_range(vm_offset_t sva, vm_offset_t eva)
 
 	if (cpu_feature & CPUID_SS)
 		; /* If "Self Snoop" is supported, do nothing. */
-	else if (cpu_feature & CPUID_CLFSH) {
+	else if (0 && cpu_feature & CPUID_CLFSH) {
 
 		/*
 		 * Otherwise, do per-cache line flush.  Use the mfence
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 196 bytes
Desc: not available
Url : http://lists.freebsd.org/pipermail/freebsd-xen/attachments/20090922/a62eb040/attachment.pgp


More information about the freebsd-xen mailing list