search for: vstack_end

Displaying 2 results from an estimated 2 matches for "vstack_end".

Did you mean: stack_end
2005 May 31
0
[PATCH] Store page and evtchn in start_info_t
...tart + (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 = (vstack_end + (1<<22)-1) & ~((1<<22)-1); @@ -125,13 +127,15 @@ " Phys-Mach map: %08lx->%08lx\n" " Page tables: %08lx->%08lx\n" " Start info: %08lx-&g...
2005 Aug 30
4
Re: [Xen-changelog] New console transport and update xenconsoled.
...igned long count, i; >@@ -358,6 +359,8 @@ > unsigned long vstartinfo_end; > unsigned long vstoreinfo_start; > unsigned long vstoreinfo_end; >+ unsigned long vconsole_start; >+ unsigned long vconsole_end; > unsigned long vstack_start; > unsigned long vstack_end; > unsigned long vpt_start; >@@ -393,7 +396,9 @@ > vphysmap_end = vphysmap_start + (nr_pages * sizeof(unsigned long)); > vstoreinfo_start = round_pgup(vphysmap_end); > vstoreinfo_end = vstoreinfo_start + PAGE_SIZE; >- vpt_start = vstoreinfo_end; &g...