search for: vstartinfo_start

Displaying 3 results from an estimated 3 matches for "vstartinfo_start".

2005 May 31
0
[PATCH] Store page and evtchn in start_info_t
...unsigned int vcpus, + unsigned int store_evtchn, unsigned long *store_mfn) { l1_pgentry_t *vl1tab=NULL, *vl1e=NULL; l2_pgentry_t *vl2tab=NULL, *vl2e=NULL; @@ -108,7 +109,8 @@ { vpt_end = vpt_start + (nr_pt_pages * PAGE_SIZE); vstartinfo_start = vpt_end; - vstartinfo_end = vstartinfo_start + PAGE_SIZE; + /* Place store shared page after startinfo. */ + vstartinfo_end = vstartinfo_start + PAGE_SIZE * 2; vstack_start = vstartinfo_end; vstack_end = vstack_start + PAGE_SIZE; v_end...
2005 Aug 30
4
Re: [Xen-changelog] New console transport and update xenconsoled.
...@ -445,6 +451,7 @@ > _p(vinitrd_start), _p(vinitrd_end), > _p(vphysmap_start), _p(vphysmap_end), > _p(vstoreinfo_start), _p(vstoreinfo_end), >+ _p(vconsole_start), _p(vconsole_end), > _p(vpt_start), _p(vpt_end), > _p(vstartinfo_start), _p(vstartinfo_end), > _p(vstack_start), _p(vstack_end), >@@ -566,6 +573,8 @@ > #endif > > *store_mfn = page_array[(vstoreinfo_start-dsi.v_start) >> PAGE_SHIFT]; >+ *console_mfn = page_array[(vconsole_start-dsi.v_start) >> PAGE_SHIFT]; >+ > &...
2013 Dec 06
36
[V6 PATCH 0/7]: PVH dom0....
Hi, V6: The only change from V5 is in patch #6: - changed comment to reflect autoxlate - removed a redundant ASSERT - reworked logic a bit so that get_page_from_gfn() is called with NULL for p2m type as before. arm has ASSERT wanting it to be NULL. Tim: patch 4 needs your approval. Daniel: patch 5 needs your approval. These patches implement PVH dom0. Patches 1 and 2