sbin_SCRIPTS = virt-what
libexec_PROGRAMS = virt-what-cpuid-helper
+if HOST_CPU_IA64
+libexec_PROGRAMS += virt-what-ia64-xen-rdtsc-test
+endif
man_MANS = virt-what.1
tests/baremetal/proc/self/status \
tests/baremetal/sbin/dmidecode \
tests/baremetal/sbin/id \
+ tests/baremetal/sbin/uname \
tests/baremetal/sbin/virt-what-cpuid-helper \
tests/esx4.1/proc/cpuinfo \
tests/esx4.1/proc/self/status \
tests/esx4.1/sbin/dmidecode \
tests/esx4.1/sbin/id \
+ tests/esx4.1/sbin/uname \
tests/esx4.1/sbin/virt-what-cpuid-helper \
tests/hyperv/proc/cpuinfo \
tests/hyperv/proc/self/status \
tests/hyperv/sbin/dmidecode \
tests/hyperv/sbin/id \
+ tests/hyperv/sbin/uname \
tests/hyperv/sbin/virt-what-cpuid-helper \
tests/kvm/proc/cpuinfo \
tests/kvm/proc/self/status \
tests/kvm/sbin/dmidecode \
tests/kvm/sbin/id \
+ tests/kvm/sbin/uname \
tests/kvm/sbin/virt-what-cpuid-helper \
tests/kvm-explicit-cpu/proc/cpuinfo \
tests/kvm-explicit-cpu/proc/self/status \
tests/kvm-explicit-cpu/sbin/dmidecode \
tests/kvm-explicit-cpu/sbin/id \
+ tests/kvm-explicit-cpu/sbin/uname \
tests/kvm-explicit-cpu/sbin/virt-what-cpuid-helper \
tests/linux-vserver/proc/cpuinfo \
tests/linux-vserver/proc/self/status \
tests/linux-vserver/sbin/dmidecode \
tests/linux-vserver/sbin/id \
+ tests/linux-vserver/sbin/uname \
tests/linux-vserver/sbin/virt-what-cpuid-helper \
tests/lx86/proc/cpuinfo \
tests/lx86/proc/self/status \
tests/lx86/sbin/dmidecode \
tests/lx86/sbin/id \
+ tests/lx86/sbin/uname \
tests/lx86/sbin/virt-what-cpuid-helper \
tests/parallels-desktop/proc/cpuinfo \
tests/parallels-desktop/proc/self/status \
tests/parallels-desktop/sbin/dmidecode \
tests/parallels-desktop/sbin/id \
+ tests/parallels-desktop/sbin/uname \
tests/parallels-desktop/sbin/virt-what-cpuid-helper \
tests/qemu/proc/cpuinfo \
tests/qemu/proc/self/status \
tests/qemu/sbin/dmidecode \
tests/qemu/sbin/id \
+ tests/qemu/sbin/uname \
tests/qemu/sbin/virt-what-cpuid-helper \
tests/rhel5-xen-dom0/proc/cpuinfo \
tests/rhel5-xen-dom0/proc/self/status \
tests/rhel5-xen-dom0/proc/xen/xsd_port \
tests/rhel5-xen-dom0/sbin/dmidecode \
tests/rhel5-xen-dom0/sbin/id \
+ tests/rhel5-xen-dom0/sbin/uname \
tests/rhel5-xen-dom0/sbin/virt-what-cpuid-helper \
tests/rhel5-xen-dom0/sys/hypervisor/properties/pagesize \
tests/rhel5-xen-dom0/sys/hypervisor/properties/changeset \
tests/rhel5-xen-domU-hvm/proc/self/status \
tests/rhel5-xen-domU-hvm/sbin/dmidecode \
tests/rhel5-xen-domU-hvm/sbin/id \
+ tests/rhel5-xen-domU-hvm/sbin/uname \
tests/rhel5-xen-domU-hvm/sbin/virt-what-cpuid-helper \
tests/rhel5-xen-domU-pv/proc/cpuinfo \
tests/rhel5-xen-domU-pv/proc/self/status \
tests/rhel5-xen-domU-pv/proc/xen/xenbus \
tests/rhel5-xen-domU-pv/sbin/dmidecode \
tests/rhel5-xen-domU-pv/sbin/id \
+ tests/rhel5-xen-domU-pv/sbin/uname \
tests/rhel5-xen-domU-pv/sbin/virt-what-cpuid-helper \
tests/rhel5-xen-domU-pv/sys/hypervisor/properties/pagesize \
tests/rhel5-xen-domU-pv/sys/hypervisor/properties/changeset \
tests/zvm/proc/sysinfo \
tests/zvm/sbin/dmidecode \
tests/zvm/sbin/id \
+ tests/zvm/sbin/uname \
tests/zvm/sbin/virt-what-cpuid-helper \
$(TESTS)
--- /dev/null
+/* virt-what-ia64-xen-rdtsc-test
+ * Copyright (C) 2011 Red Hat Inc.
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
+ */
+
+#ifndef __ia64__
+#error "error in Makefile - this program should only be compiled for ia64 host"
+#endif
+
+/* This program is ugly, but possibly the only way to detect
+ * virtualized Xen HVM guests on IA64.
+ */
+
+#include <stdio.h>
+#include <stdlib.h>
+#include <string.h>
+
+static inline unsigned long
+rdtsc (void)
+{
+ unsigned long res;
+ asm volatile ("mov %0=ar.itc" : "=r"(res));
+ return res;
+}
+
+int
+main ()
+{
+ unsigned long old, new;
+ int virt;
+ int i;
+
+ virt = 1;
+
+ for (i = 16; i--; ) {
+ old = rdtsc (); new = rdtsc ();
+ /*printf("%ld\n", new - old);*/
+ if (new - old < 30) {
+ virt = 0;
+ break;
+ }
+ }
+
+ exit (virt);
+}