[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen-4.1-testing] unmodified drivers: add pfn_is_ram helper for kdump
# HG changeset patch # User Olaf Hering <olaf@xxxxxxxxx> # Date 1337010621 -3600 # Node ID 0c84b48831c8b92f4eb907b98e592fbb8909c940 # Parent a427ff3fee5fd25bf67509e8f88b0f0870f4bd78 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> xen-unstable changeset: 25068:e4460795ee66 xen-unstable date: Fri Mar 16 11:34:41 2012 +0100 --- diff -r a427ff3fee5f -r 0c84b48831c8 unmodified_drivers/linux-2.6/platform-pci/platform-pci.c --- a/unmodified_drivers/linux-2.6/platform-pci/platform-pci.c Mon May 14 16:50:03 2012 +0100 +++ b/unmodified_drivers/linux-2.6/platform-pci/platform-pci.c Mon May 14 16:50:21 2012 +0100 @@ -351,6 +351,32 @@ static int check_platform_magic(struct d 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 @@ static int __devinit platform_pci_init(s 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
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |