# HG changeset patch
# User djm@xxxxxxxxxxxxxxx
# Node ID 31ba90794c72970c62739d9671481a4ee16828d5
# Parent 23add9157a219e18a93fb1ff1b47961f80cb642a
Sync caches only on split cache machines (dynamic test instead of compile ifdef)
Signed-off-by: Dan Magenheimer <dan.magenheimer@xxxxxx>
xen-unstable cset: 40648452d45f4b9a26043c0297869c55a6912551
committer: Robert Read <robert@xxxxxxxxxxxxx>
diff -r 23add9157a21 -r 31ba90794c72 xen/arch/ia64/xen/domain.c
--- a/xen/arch/ia64/xen/domain.c Wed Dec 21 06:27:09 2005
+++ b/xen/arch/ia64/xen/domain.c Wed Dec 28 13:07:30 2005
@@ -288,16 +288,7 @@
d->arch.sys_pgnr = c->sys_pgnr;
new_thread(v, regs->cr_iip, 0, 0);
-#ifdef CONFIG_IA64_SPLIT_CACHE
- /* Sync d/i cache conservatively */
- if (!running_on_sim) {
- ret = ia64_pal_cache_flush(4, 0, &progress, NULL);
- if ((ret!=PAL_STATUS_SUCCESS)&& (ret!=PAL_STATUS_UNIMPLEMENTED))
- printk("PAL CACHE FLUSH failed for dom0.\n");
- else
- printk("Sync i/d cache for guest SUCC\n");
- }
-#endif
+ sync_split_caches();
v->vcpu_info->arch.evtchn_vector = c->vcpu.evtchn_vector;
if ( c->vcpu.privregs && copy_from_user(v->arch.privregs,
c->vcpu.privregs, sizeof(mapped_regs_t))) {
@@ -950,16 +941,7 @@
new_thread(v, pkern_entry, 0, 0);
physdev_init_dom0(d);
-#ifdef CONFIG_IA64_SPLIT_CACHE
- /* Sync d/i cache conservatively */
- if (!running_on_sim) {
- ret = ia64_pal_cache_flush(4, 0, &progress, NULL);
- if ((ret!=PAL_STATUS_SUCCESS)&& (ret!=PAL_STATUS_UNIMPLEMENTED))
- printk("PAL CACHE FLUSH failed for dom0.\n");
- else
- printk("Sync i/d cache for guest SUCC\n");
- }
-#endif
+ sync_split_caches();
// FIXME: Hack for keyboard input
#ifdef CLONE_DOMAIN0
@@ -1018,16 +1000,7 @@
#endif
new_thread(v, pkern_entry, 0, 0);
printk("new_thread returns\n");
-#ifdef CONFIG_IA64_SPLIT_CACHE
- /* Sync d/i cache conservatively */
- if (!running_on_sim) {
- ret = ia64_pal_cache_flush(4, 0, &progress, NULL);
- if ((ret!=PAL_STATUS_SUCCESS)&& (ret!=PAL_STATUS_UNIMPLEMENTED))
- printk("PAL CACHE FLUSH failed for dom0.\n");
- else
- printk("Sync i/d cache for guest SUCC\n");
- }
-#endif
+ sync_split_caches();
__set_bit(0x30, VCPU(v, delivery_mask));
return 0;
@@ -1041,16 +1014,7 @@
v->domain->domain_id);
loaddomainelfimage(v->domain,v->domain->arch.image_start);
new_thread(v, v->domain->arch.entry, 0, 0);
-#ifdef CONFIG_IA64_SPLIT_CACHE
- /* Sync d/i cache conservatively */
- if (!running_on_sim) {
- ret = ia64_pal_cache_flush(4, 0, &progress, NULL);
- if ((ret!=PAL_STATUS_SUCCESS)&& (ret!=PAL_STATUS_UNIMPLEMENTED))
- printk("PAL CACHE FLUSH failed for dom0.\n");
- else
- printk("Sync i/d cache for guest SUCC\n");
- }
-#endif
+ sync_split_caches();
}
#endif
diff -r 23add9157a21 -r 31ba90794c72 xen/arch/ia64/xen/xenmisc.c
--- a/xen/arch/ia64/xen/xenmisc.c Wed Dec 21 06:27:09 2005
+++ b/xen/arch/ia64/xen/xenmisc.c Wed Dec 28 13:07:30 2005
@@ -368,3 +368,23 @@
goto loop;
}
}
+
+/* FIXME: for the forseeable future, all cpu's that enable VTi have split
+ * caches and all cpu's that have split caches enable VTi. This may
+ * eventually be untrue though. */
+#define cpu_has_split_cache vmx_enabled
+extern unsigned int vmx_enabled;
+
+void sync_split_caches(void)
+{
+ unsigned long ret, progress;
+
+ if (cpu_has_split_cache) {
+ /* Sync d/i cache conservatively */
+ ret = ia64_pal_cache_flush(4, 0, &progress, NULL);
+ if ((ret!=PAL_STATUS_SUCCESS)&& (ret!=PAL_STATUS_UNIMPLEMENTED))
+ printk("PAL CACHE FLUSH failed\n");
+ else printk("Sync i/d cache for guest SUCC\n");
+ }
+ else printk("sync_split_caches ignored for CPU with no split cache\n");
+}
_______________________________________________
Xen-changelog mailing list
Xen-changelog@xxxxxxxxxxxxxxxxxxx
http://lists.xensource.com/xen-changelog
|