WARNING - OLD ARCHIVES

This is an archived copy of the Xen.org mailing list, which we have preserved to ensure that existing links to archives are not broken. The live archive, which contains the latest emails, can be found at http://lists.xen.org/
   
 
 
Xen 
 
Home Products Support Community News
 
   
 

xen-changelog

[Xen-changelog] [linux-2.6.18-xen] [IA64] Kdump: Add /proc/iomem_machine

To: xen-changelog@xxxxxxxxxxxxxxxxxxx
Subject: [Xen-changelog] [linux-2.6.18-xen] [IA64] Kdump: Add /proc/iomem_machine
From: "Xen patchbot-linux-2.6.18-xen" <patchbot-linux-2.6.18-xen@xxxxxxxxxxxxxxxxxxx>
Date: Thu, 04 Oct 2007 17:42:10 -0700
Delivery-date: Thu, 04 Oct 2007 18:31:52 -0700
Envelope-to: www-data@xxxxxxxxxxxxxxxxxx
List-help: <mailto:xen-changelog-request@lists.xensource.com?subject=help>
List-id: BK change log <xen-changelog.lists.xensource.com>
List-post: <mailto:xen-changelog@lists.xensource.com>
List-subscribe: <http://lists.xensource.com/cgi-bin/mailman/listinfo/xen-changelog>, <mailto:xen-changelog-request@lists.xensource.com?subject=subscribe>
List-unsubscribe: <http://lists.xensource.com/cgi-bin/mailman/listinfo/xen-changelog>, <mailto:xen-changelog-request@lists.xensource.com?subject=unsubscribe>
Reply-to: xen-devel@xxxxxxxxxxxxxxxxxxx
Sender: xen-changelog-bounces@xxxxxxxxxxxxxxxxxxx
# HG changeset patch
# User Alex Williamson <alex.williamson@xxxxxx>
# Date 1190926154 21600
# Node ID 20813f115a812840fe678f10b60b62b217fb3d69
# Parent  2b2bd05413fd53e580daf566e6ad6fe56fbdcc74
[IA64] Kdump: Add /proc/iomem_machine

Add /proc/iomem_machine. This is basically the iomem regions
as the hypervisor sees them. As opposed to Linux's /proc/iomem
which is provides a somewhat limited and distorted view of the world.
Or in other words, /proc/iomem is for pseudo-phical memory and
/proc/iomem_machine is for machine memory.

This is needed for kdump to work on ia64 as else it can't place
the crashkernel region correctly, nor can it map out all physical
memory to be included in the vmcore file in the second kernel.

There is an acompanying patch to kexec-tools to allow it
to use /proc/iomem_machine instead of /proc/iomem as appropriate.

Signed-off-by: Simon Horman <horms@xxxxxxxxxxxx>
---
 arch/ia64/kernel/efi.c |  113 +++++++++++++++++++++++++++++++++++++++++--------
 fs/Kconfig             |    5 ++
 include/linux/ioport.h |    3 +
 kernel/resource.c      |   38 ++++++++++++++++
 4 files changed, 141 insertions(+), 18 deletions(-)

diff -r 2b2bd05413fd -r 20813f115a81 arch/ia64/kernel/efi.c
--- a/arch/ia64/kernel/efi.c    Thu Sep 27 14:37:22 2007 -0600
+++ b/arch/ia64/kernel/efi.c    Thu Sep 27 14:49:14 2007 -0600
@@ -34,6 +34,11 @@
 #include <asm/pgtable.h>
 #include <asm/processor.h>
 #include <asm/mca.h>
+
+#ifdef CONFIG_PROC_IOMEM_MACHINE
+#include <xen/interface/memory.h>
+#include <asm/hypercall.h>
+#endif
 
 #define EFI_DEBUG      0
 
@@ -1040,20 +1045,21 @@ efi_memmap_init(unsigned long *s, unsign
        *e = (u64)++k;
 }
 
-void
-efi_initialize_iomem_resources(struct resource *code_resource,
-                              struct resource *data_resource)
+#define EFI_INITIALISE_PHYS 0x1
+#define EFI_INITIALISE_MACH 0x2
+#define EFI_INITIALISE_ALL  (EFI_INITIALISE_PHYS|EFI_INITIALISE_MACH)
+
+static void
+efi_initialize_resources(void *efi_map_start, void *efi_map_end,
+                        u64 efi_desc_size, struct resource *root_resource,
+                        struct resource *code_resource,
+                        struct resource *data_resource, unsigned flag)
 {
        struct resource *res;
-       void *efi_map_start, *efi_map_end, *p;
+       void *p;
        efi_memory_desc_t *md;
-       u64 efi_desc_size;
        char *name;
        unsigned long flags;
-
-       efi_map_start = __va(ia64_boot_param->efi_memmap);
-       efi_map_end   = efi_map_start + ia64_boot_param->efi_memmap_size;
-       efi_desc_size = ia64_boot_param->efi_memdesc_size;
 
        res = NULL;
 
@@ -1113,7 +1119,7 @@ efi_initialize_iomem_resources(struct re
                res->end = md->phys_addr + (md->num_pages << EFI_PAGE_SHIFT) - 
1;
                res->flags = flags;
 
-               if (insert_resource(&iomem_resource, res) < 0)
+               if (insert_resource(root_resource, res) < 0)
                        kfree(res);
                else {
                        /*
@@ -1121,21 +1127,92 @@ efi_initialize_iomem_resources(struct re
                         * kernel data so we try it repeatedly and
                         * let the resource manager test it.
                         */
-                       insert_resource(res, code_resource);
-                       insert_resource(res, data_resource);
+                       if (flag & EFI_INITIALISE_PHYS) {
+                               insert_resource(res, code_resource);
+                               insert_resource(res, data_resource);
+                       }
 #ifdef CONFIG_KEXEC
-                        insert_resource(res, &efi_memmap_res);
-                        insert_resource(res, &boot_param_res);
-                       if (crashk_res.end > crashk_res.start)
-                               insert_resource(res, &crashk_res);
+                       if (flag & EFI_INITIALISE_MACH) {
+                               insert_resource(res, &efi_memmap_res);
+                               insert_resource(res, &boot_param_res);
+                               if (crashk_res.end > crashk_res.start)
+                                       insert_resource(res, &crashk_res);
 #ifdef CONFIG_XEN
-                       if (is_initial_xendomain())
-                               xen_machine_kexec_register_resources(res);
+                               if (is_initial_xendomain())
+                                       xen_machine_kexec_register_resources(
+                                                               res);
 #endif
+                       }
 #endif
                }
        }
 }
+
+#ifdef CONFIG_PROC_IOMEM_MACHINE
+static int
+efi_initialize_iomem_machine_resources(void)
+{
+       unsigned long size;
+       xen_memory_map_t memmap;
+       xen_ia64_memmap_info_t *memmap_info = NULL;
+       void *efi_map_start, *efi_map_end;
+       u64 efi_desc_size;
+       int ret;
+
+       /* It would be nice if it wasn't neccessary to loop like this */
+       for (size = 1024; 1; size += 1024) {
+               memmap_info = kmalloc(size, GFP_KERNEL);
+               if (memmap_info == NULL)
+                       return -ENOMEM;
+
+               memmap.nr_entries = size;
+               set_xen_guest_handle(memmap.buffer, memmap_info);
+               ret = HYPERVISOR_memory_op(XENMEM_machine_memory_map, &memmap);
+               if (!ret)
+                       break;
+
+               kfree(memmap_info);
+       }
+
+       efi_map_start = &memmap_info->memdesc;
+       efi_map_end = efi_map_start + memmap_info->efi_memmap_size;
+       efi_desc_size = memmap_info->efi_memdesc_size;
+       efi_initialize_resources(efi_map_start, efi_map_end, efi_desc_size,
+                                &iomem_machine_resource, NULL, NULL,
+                                EFI_INITIALISE_MACH);
+
+       kfree(memmap_info);
+}
+#endif
+
+void
+efi_initialize_iomem_resources(struct resource *code_resource,
+                              struct resource *data_resource)
+{
+       void *efi_map_start, *efi_map_end;
+       u64 efi_desc_size;
+
+       efi_map_start = __va(ia64_boot_param->efi_memmap);
+       efi_map_end   = efi_map_start + ia64_boot_param->efi_memmap_size;
+       efi_desc_size = ia64_boot_param->efi_memdesc_size;
+
+#ifdef CONFIG_PROC_IOMEM_MACHINE
+       if (is_initial_xendomain()) {
+               efi_initialize_resources(efi_map_start, efi_map_end,
+                                        efi_desc_size, &iomem_resource,
+                                        code_resource, data_resource,
+                                        EFI_INITIALISE_PHYS);
+               efi_initialize_iomem_machine_resources();
+       }
+       else
+#endif
+               efi_initialize_resources(efi_map_start, efi_map_end,
+                                        efi_desc_size, &iomem_resource,
+                                        code_resource, data_resource,
+                                        EFI_INITIALISE_ALL);
+}
+
+
 
 #ifdef CONFIG_KEXEC
 /* find a block of memory aligned to 64M exclude reserved regions
diff -r 2b2bd05413fd -r 20813f115a81 fs/Kconfig
--- a/fs/Kconfig        Thu Sep 27 14:37:22 2007 -0600
+++ b/fs/Kconfig        Thu Sep 27 14:49:14 2007 -0600
@@ -825,6 +825,11 @@ config PROC_VMCORE
        default y
         help
         Exports the dump image of crashed kernel in ELF format.
+
+config PROC_IOMEM_MACHINE
+       bool
+       depends on PROC_FS && EXPERIMENTAL && KEXEC && XEN && IA64
+       default y
 
 config SYSFS
        bool "sysfs file system support" if EMBEDDED
diff -r 2b2bd05413fd -r 20813f115a81 include/linux/ioport.h
--- a/include/linux/ioport.h    Thu Sep 27 14:37:22 2007 -0600
+++ b/include/linux/ioport.h    Thu Sep 27 14:49:14 2007 -0600
@@ -93,6 +93,9 @@ struct resource_list {
 /* PC/ISA/whatever - the normal PC address spaces: IO and memory */
 extern struct resource ioport_resource;
 extern struct resource iomem_resource;
+#ifdef CONFIG_XEN
+extern struct resource iomem_machine_resource;
+#endif
 
 extern int request_resource(struct resource *root, struct resource *new);
 extern struct resource * ____request_resource(struct resource *root, struct 
resource *new);
diff -r 2b2bd05413fd -r 20813f115a81 kernel/resource.c
--- a/kernel/resource.c Thu Sep 27 14:37:22 2007 -0600
+++ b/kernel/resource.c Thu Sep 27 14:49:14 2007 -0600
@@ -36,6 +36,16 @@ struct resource iomem_resource = {
 };
 EXPORT_SYMBOL(iomem_resource);
 
+#ifdef CONFIG_PROC_IOMEM_MACHINE
+struct resource iomem_machine_resource = {
+       .name   = "Machine PCI mem",
+       .start  = 0,
+       .end    = -1,
+       .flags  = IORESOURCE_MEM,
+};
+EXPORT_SYMBOL(iomem_machine_resource);
+#endif
+
 static DEFINE_RWLOCK(resource_lock);
 
 #ifdef CONFIG_PROC_FS
@@ -115,6 +125,18 @@ static int iomem_open(struct inode *inod
        return res;
 }
 
+#ifdef CONFIG_PROC_IOMEM_MACHINE
+static int iomem_machine_open(struct inode *inode, struct file *file)
+{
+       int res = seq_open(file, &resource_op);
+       if (!res) {
+               struct seq_file *m = file->private_data;
+               m->private = &iomem_machine_resource;
+       }
+       return res;
+}
+#endif
+
 static struct file_operations proc_ioports_operations = {
        .open           = ioports_open,
        .read           = seq_read,
@@ -128,6 +150,15 @@ static struct file_operations proc_iomem
        .llseek         = seq_lseek,
        .release        = seq_release,
 };
+
+#ifdef CONFIG_PROC_IOMEM_MACHINE
+static struct file_operations proc_iomem_machine_operations = {
+       .open           = iomem_machine_open,
+       .read           = seq_read,
+       .llseek         = seq_lseek,
+       .release        = seq_release,
+};
+#endif
 
 static int __init ioresources_init(void)
 {
@@ -139,6 +170,13 @@ static int __init ioresources_init(void)
        entry = create_proc_entry("iomem", 0, NULL);
        if (entry)
                entry->proc_fops = &proc_iomem_operations;
+#ifdef CONFIG_PROC_IOMEM_MACHINE
+       if (is_initial_xendomain()) {
+               entry = create_proc_entry("iomem_machine", 0, NULL);
+               if (entry)
+                       entry->proc_fops = &proc_iomem_machine_operations;
+       }
+#endif
        return 0;
 }
 __initcall(ioresources_init);

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

<Prev in Thread] Current Thread [Next in Thread>
  • [Xen-changelog] [linux-2.6.18-xen] [IA64] Kdump: Add /proc/iomem_machine, Xen patchbot-linux-2.6.18-xen <=