Displaying 1 result from an estimated 1 matches for "xen_pstart".
2007 May 29
0
Fw: [RFC] makedumpfile: xen extraction
...UND_SYMBOL) {
+		ERRMSG("Can''t get the symbol of xenheap_phys_end.\n");
+		return FALSE;
+	}
+	if (!readmem_xen(info, SYMBOL(xenheap_phys_end), &xen_end,
+	      sizeof(xen_end), "Can''t get the value of xenheap_phys_end.\n"))
+		return FALSE;
+
+	if (SYMBOL(xen_pstart) == NOT_FOUND_SYMBOL) {
+		ERRMSG("Can''t get the symbol of xen_pstart.\n");
+		return FALSE;
+	}
+	if (!readmem_xen(info, SYMBOL(xen_pstart), &xen_start,
+	      sizeof(xen_start), "Can''t get the value of xen_pstart.\n"))
+		return FALSE;
+
+	info->xen_h...