Displaying 2 results from an estimated 2 matches for "intr_machdep".
2008 Jan 08
6
What current Dell Systems are supported/work
Sorry for the repost...
I don't think the first one posted..
posted to freebsd.stable, freebsd-current, Freebsd-hardware
I checked the hardware in the online documentation manual/hardware
It only lists the bits and peices of the machine say the hard drive
controller and so forth. but doesn't give you a particular system to
look at as a working machine with FreeBSD 6.2
does anybody
2013 Oct 28
5
FreeBSD PVH guest support
...efs.h>
+__FBSDID("$FreeBSD$");
+
+#include <sys/param.h>
+#include <sys/systm.h>
+#include <sys/bus.h>
+#include <sys/kernel.h>
+#include <sys/smp.h>
+#include <sys/pcpu.h>
+#include <vm/vm.h>
+#include <vm/pmap.h>
+
+#include <machine/intr_machdep.h>
+#include <machine/apicvar.h>
+
+#include <machine/cpu.h>
+#include <machine/smp.h>
+
+#include <xen/xen-os.h>
+#include <xen/hypervisor.h>
+
+#include <xen/interface/vcpu.h>
+
+static int xenpv_probe(void);
+static int xenpv_probe_cpus(void);
+static int x...