Displaying 1 result from an estimated 1 matches for "xen_heap_start".
2007 May 29
0
Fw: [RFC] makedumpfile: xen extraction
...mem(info, dirp, &entry, sizeof(entry)))
+		return FALSE;
+
+	if (!(entry & _PAGE_P))
+		return 0;
+
+	entry = (entry & _PFN_MASK) + (addr & ((1UL << PAGESHIFT()) - 1));
+
+	return entry;
+}
+
+int
+get_xen_info_ia64(struct DumpInfo *info)
+{
+	unsigned long xen_start, xen_end, xen_heap_start;
+	int i;
+
+	info->frame_table_vaddr = VIRT_FRAME_TABLE_ADDR; /* "frame_table" is same value */
+
+	if (SYMBOL(xenheap_phys_end) == NOT_FOUND_SYMBOL) {
+		ERRMSG("Can''t get the symbol of xenheap_phys_end.\n");
+		return FALSE;
+	}
+	if (!readmem_xen(info, SYMBOL(xen...