search for: pgt_l2_page_t

Displaying 4 results from an estimated 4 matches for "pgt_l2_page_t".

2008 Aug 21
2
doubt on releasing domain pages
Hi, I am trying to release domU pages from page_list and xenpage_list after domU shutdown while retaining the rest of the domain information. To achieve this in __domain_finalise_shutdown i call domain_relinquish_resources. This is failing to release pages from page_list for type PGT_l2_page_tables and crashing dom0. To be specific, while testing on mini-os i saw that when domain_relinquish_resources calls relinquish_memory for PGT_l2_page_tables, this eventually calls free_l2_table which fails at map_domain_page() by returning an invalid virtual address, due to which dom0 crashes imme...
2005 Mar 14
4
[patch/unstable] page table cleanups
...+ | _PAGE_RW | _PAGE_ACCESSED | _PAGE_DIRTY); + l2_pgentry_val(gpde) |= _PAGE_ACCESSED; /* N.B. PDEs do not have a dirty bit. */ /* Detect linear p.t. mappings and write-protect them. */ if ( (frame_table[sl1mfn].u.inuse.type_info & PGT_type_mask) == PGT_l2_page_table ) { if ( !shadow_mode_translate(d) ) - spde = gpde & ~_PAGE_RW; + spde = mk_l2_pgentry(l2_pgentry_val(gpde) & ~_PAGE_RW); } } @@ -723,39 +724,42 @@ static inline void set_shadow_status( shadow_audit(d, 0); }...
2004 Feb 11
48
Kernel panic while compiling kernel
I know you Xen developers are beginning to hate me ;) but... While trying to compile 2.4.24 under DOM0, quickly after issuing ''make dep'' I got: Kernel panic: Failed mmu update: c015bf80, 4 I suspect this address probably isn''t to helpful but this is all I have. I am currently booted in 2.4.21-SuSE and compiling the 2.4.24 regarding another thread here. Regarding
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