qemu-ppc
[Top][All Lists]
Advanced

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

[Qemu-ppc] [RFC PATCH v8 0/4] reload images from host rootfs on reset to


From: Olivia Yin
Subject: [Qemu-ppc] [RFC PATCH v8 0/4] reload images from host rootfs on reset to save footprint
Date: Thu, 6 Dec 2012 12:00:40 +0800

The current model of loader copy "rom blobs" and kept in memory until a reset
occurs and waste host memory.

This serial of patches uses private reset handlers to load uimage/initrd/vmlinux
from hard disk on reset, which could make loader framework more dynamic and 
reduce the memory consumption of QEMU process.

Olivia Yin (4):
  use image_file_reset to reload initrd
  use uimage_reset to reload uimage
  use elf_reset to reload elf image
  remove rom_reset()

 hw/elf_ops.h |   45 ++++++++++++++++++++--
 hw/loader.c  |  116 +++++++++++++++++++++++++++++++++++++++++----------------
 hw/loader.h  |   23 +++++++++++
 3 files changed, 146 insertions(+), 38 deletions(-)

v8: unify the structure ImageFile for uimage/initrd/vmlinux, and remove 
rom_reset().

v7: clean structure ImageFile

v6:
patch 3/4: load symbol only when startup

v5: 
patch 2/4: remove global variables is_linux and kernel_loaded.
patch 3/4: register reset handlers in loader.c for elf images.
           extract the duplicated source code into function elf_phy_loader().
patch 4/4: fix the issue of memory increasing (about 1.4MB) once reload elf 
image.

v4: fix elf reload and register reset handler in hw/elf_ops.h

v3: reload elf

v2: Rename target_phys_addr_t to hwaddr

v1: support uimage/initrd reload




reply via email to

[Prev in Thread] Current Thread [Next in Thread]