Displaying 2 results from an estimated 2 matches for "vm_guest".
Did you mean:
vg_guest
2008 Sep 12
2
Can''t see changes in LV Size inside domU (after lvextend on dom0)
...thin the DomU. Works fine and I still get the manageability
of LVM within my DomU''s without actually using LVM within them."
---------
I have the same situation from this post, which I think is the Best approach
for manageability of disk space on Xen domains.
I have a VG called vm_guests and 03 LV''s on it: lv_guest1_root,
lv_guest1_swap, lv_guest1_export.
I have them mapped on my xen config file:
disk=[ ''phy:/dev/vm_guests/lv_guest1_root,xvda2,w'',
''phy:/dev/vm_guests/lv_guest1_swap,xvda1,w'',
''phy:/dev/vm...
2013 Oct 28
5
FreeBSD PVH guest support
...e rewritten to fetch this info by themselves from the
+ * start_info page.
+ */
+ console_page =
+ (char *)(ptoa(si->console.domU.mfn) + KERNBASE);
+ xen_store = (struct xenstore_domain_interface *)
+ (ptoa(si->store_mfn) + KERNBASE);
+
+ xen_domain_type = XEN_PV_DOMAIN;
+ vm_guest = VM_GUEST_XEN;
+
+ /*
+ * Use the stack Xen gives us to build the page tables
+ * as native FreeBSD expects to find them (created
+ * by the boot trampoline).
+ */
+ for (i = 0; i < 512; i++) {
+ /* Each slot of the level 4 pages points to the same level 3 page */
+ PT4[i] = ((u_int64_t)&...