Displaying 1 result from an estimated 1 matches for "bios_smap".
2013 Oct 28
5
FreeBSD PVH guest support
...cp,
char *xfpustate, size_t xfpustate_len);
SYSINIT(cpu, SI_SUB_CPU, SI_ORDER_FIRST, cpu_startup, NULL);
+/* Preload data parse function */
+static caddr_t native_parse_preload_data(u_int64_t);
+
+/* Native function to fetch the e820 map */
+static void native_fetch_e820_map(caddr_t, struct bios_smap **, u_int32_t *);
+
+/* Default init_ops implementation. */
+struct init_ops init_ops = {
+ .parse_preload_data = native_parse_preload_data,
+ .early_delay_init = i8254_init,
+ .early_delay = i8254_delay,
+ .fetch_e820_map = native_fetch_e820_map,
+#ifdef SMP
+ .mp_bootaddress = mp_bootaddress,
+#...