56c4bfb3f0
RAMBlock.offset --> GuestPhysBlock.target_start RAMBlock.offset + RAMBlock.length --> GuestPhysBlock.target_end RAMBlock.length --> GuestPhysBlock.target_end - GuestPhysBlock.target_start "GuestPhysBlock.host_addr" is only used when writing the dump contents. This patch enables "crash" to work with the vmcore by rebasing the vmcore from the left side of the following diagram to the right side: host-private offset relative to ram_addr RAMBlock guest-visible paddrs 0 +-------------------+.....+-------------------+ 0 | ^ | | ^ | | 640 KB | | 640 KB | | v | | v | 0x0000a0000 +-------------------+.....+-------------------+ 0x0000a0000 | ^ | |XXXXXXXXXXXXXXXXXXX| | 384 KB | |XXXXXXXXXXXXXXXXXXX| | v | |XXXXXXXXXXXXXXXXXXX| 0x000100000 +-------------------+.....+-------------------+ 0x000100000 | ^ | | ^ | | 3583 MB | | 3583 MB | | v | | v | 0x0e0000000 +-------------------+.....+-------------------+ 0x0e0000000 | ^ |. |XXXXXXXXXXXXXXXXXXX| | above_4g_mem_size | . |XXXX PCI hole XXXXX| | v | . |XXXX XXXXX| ram_size +-------------------+ . |XXXX 512 MB XXXXX| . .|XXXXXXXXXXXXXXXXXXX| . +-------------------+ 0x100000000 . | ^ | . | above_4g_mem_size | .| v | +-------------------+ ram_size + 512 MB Related RHBZ: https://bugzilla.redhat.com/show_bug.cgi?id=981582 Signed-off-by: Laszlo Ersek <lersek@redhat.com> Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
83 lines
2.4 KiB
C
83 lines
2.4 KiB
C
/*
|
|
* QEMU memory mapping
|
|
*
|
|
* Copyright Fujitsu, Corp. 2011, 2012
|
|
*
|
|
* Authors:
|
|
* Wen Congyang <wency@cn.fujitsu.com>
|
|
*
|
|
* This work is licensed under the terms of the GNU GPL, version 2 or later.
|
|
* See the COPYING file in the top-level directory.
|
|
*
|
|
*/
|
|
|
|
#ifndef MEMORY_MAPPING_H
|
|
#define MEMORY_MAPPING_H
|
|
|
|
#include "qemu/queue.h"
|
|
#include "qemu/typedefs.h"
|
|
|
|
typedef struct GuestPhysBlock {
|
|
/* visible to guest, reflects PCI hole, etc */
|
|
hwaddr target_start;
|
|
|
|
/* implies size */
|
|
hwaddr target_end;
|
|
|
|
/* points into host memory */
|
|
uint8_t *host_addr;
|
|
|
|
QTAILQ_ENTRY(GuestPhysBlock) next;
|
|
} GuestPhysBlock;
|
|
|
|
/* point-in-time snapshot of guest-visible physical mappings */
|
|
typedef struct GuestPhysBlockList {
|
|
unsigned num;
|
|
QTAILQ_HEAD(GuestPhysBlockHead, GuestPhysBlock) head;
|
|
} GuestPhysBlockList;
|
|
|
|
/* The physical and virtual address in the memory mapping are contiguous. */
|
|
typedef struct MemoryMapping {
|
|
hwaddr phys_addr;
|
|
target_ulong virt_addr;
|
|
ram_addr_t length;
|
|
QTAILQ_ENTRY(MemoryMapping) next;
|
|
} MemoryMapping;
|
|
|
|
struct MemoryMappingList {
|
|
unsigned int num;
|
|
MemoryMapping *last_mapping;
|
|
QTAILQ_HEAD(, MemoryMapping) head;
|
|
};
|
|
|
|
/*
|
|
* add or merge the memory region [phys_addr, phys_addr + length) into the
|
|
* memory mapping's list. The region's virtual address starts with virt_addr,
|
|
* and is contiguous. The list is sorted by phys_addr.
|
|
*/
|
|
void memory_mapping_list_add_merge_sorted(MemoryMappingList *list,
|
|
hwaddr phys_addr,
|
|
hwaddr virt_addr,
|
|
ram_addr_t length);
|
|
|
|
void memory_mapping_list_free(MemoryMappingList *list);
|
|
|
|
void memory_mapping_list_init(MemoryMappingList *list);
|
|
|
|
void guest_phys_blocks_free(GuestPhysBlockList *list);
|
|
void guest_phys_blocks_init(GuestPhysBlockList *list);
|
|
void guest_phys_blocks_append(GuestPhysBlockList *list);
|
|
|
|
void qemu_get_guest_memory_mapping(MemoryMappingList *list,
|
|
const GuestPhysBlockList *guest_phys_blocks,
|
|
Error **errp);
|
|
|
|
/* get guest's memory mapping without do paging(virtual address is 0). */
|
|
void qemu_get_guest_simple_memory_mapping(MemoryMappingList *list,
|
|
const GuestPhysBlockList *guest_phys_blocks);
|
|
|
|
void memory_mapping_filter(MemoryMappingList *list, int64_t begin,
|
|
int64_t length);
|
|
|
|
#endif
|