[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Xen-changelog] [xen-unstable] unmodified drivers: add pfn_is_ram helper for kdump



# HG changeset patch
# User Olaf Hering <olaf@xxxxxxxxx>
# Date 1331894081 -3600
# Node ID e4460795ee6605fe58ce6d00acc6a747c21429f5
# Parent  05768bd498f24d9c5bba83623a7e74cddbd91b78
unmodified drivers: add pfn_is_ram helper for kdump

Register pfn_is_ram helper speed up reading /proc/vmcore in the kdump
kernel. It is compiled only if the kernel source is recent enough to
have the pfn_is_ram helper (v3.0-rc1, commit
997c136f518c5debd63847e78e2a8694f56dcf90).

Signed-off-by: Olaf Hering <olaf@xxxxxxxxx>
Committed-by: Jan Beulich <jbeulich@xxxxxxxx>
---


diff -r 05768bd498f2 -r e4460795ee66 
unmodified_drivers/linux-2.6/platform-pci/platform-pci.c
--- a/unmodified_drivers/linux-2.6/platform-pci/platform-pci.c  Fri Mar 16 
11:34:14 2012 +0100
+++ b/unmodified_drivers/linux-2.6/platform-pci/platform-pci.c  Fri Mar 16 
11:34:41 2012 +0100
@@ -351,6 +351,32 @@
        return -ENODEV;
 }
 
+#ifdef HAVE_OLDMEM_PFN_IS_RAM
+static int xen_oldmem_pfn_is_ram(unsigned long pfn)
+{
+       struct xen_hvm_get_mem_type a;
+       int ret;
+
+       a.domid = DOMID_SELF;
+       a.pfn = pfn;
+       if (HYPERVISOR_hvm_op(HVMOP_get_mem_type, &a))
+               return -ENXIO;
+
+       switch (a.mem_type) {
+               case HVMMEM_mmio_dm:
+                       ret = 0;
+                       break;
+               case HVMMEM_ram_rw:
+               case HVMMEM_ram_ro:
+               default:
+                       ret = 1;
+                       break;
+       }
+
+       return ret;
+}
+#endif
+
 static int __devinit platform_pci_init(struct pci_dev *pdev,
                                       const struct pci_device_id *ent)
 {
@@ -419,6 +445,9 @@
        if ((ret = xen_panic_handler_init()))
                goto out;
 
+#ifdef HAVE_OLDMEM_PFN_IS_RAM
+       register_oldmem_pfn_is_ram(&xen_oldmem_pfn_is_ram);
+#endif
  out:
        if (ret) {
                pci_release_region(pdev, 0);

_______________________________________________
Xen-changelog mailing list
Xen-changelog@xxxxxxxxxxxxx
http://lists.xensource.com/xen-changelog


 


Rackspace

Lists.xenproject.org is hosted with RackSpace, monitoring our
servers 24x7x365 and backed by RackSpace's Fanatical Support®.