Displaying 1 result from an estimated 1 matches for "kmdp".
Did you mean:
kmap
2013 Oct 28
5
FreeBSD PVH guest support
...+void
+DELAY(int n)
+{
+ if (delay_tc(n))
+ return;
+
+ init_ops.early_delay(n);
+}
+
static void
cpu_startup(dummy)
void *dummy;
@@ -1408,6 +1445,24 @@ add_smap_entry(struct bios_smap *smap, vm_paddr_t *physmap, int *physmap_idxp)
return (1);
}
+static void
+native_fetch_e820_map(caddr_t kmdp, struct bios_smap **smap, u_int32_t *size)
+{
+ /*
+ * get memory map from INT 15:E820, kindly supplied by the
+ * loader.
+ *
+ * subr_module.c says:
+ * "Consumer may safely assume that size value precedes data."
+ * ie: an int32_t immediately precedes smap.
+ */
+ *smap = (struc...