qemu-devel
[Top][All Lists]
Advanced

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

[PATCH 0/2] Move more code to softmmu/


From: Paolo Bonzini
Subject: [PATCH 0/2] Move more code to softmmu/
Date: Tue, 6 Oct 2020 05:19:20 -0400

This small series moves more files to the softmmu/ directory.
Patch 1 covers files that can be moved completely, while
patch 2 splits exec.c into common and softmmu parts.

Based-on: <20201006072947.487729-1-pbonzini@redhat.com>

Paolo Bonzini (2):
  softmmu: move more files to softmmu/
  exec: split out non-softmmu-specific parts

 MAINTAINERS                              |   4 +-
 cpu.c                                    | 452 ++++++++++++++++++++++
 include/exec/cpu-common.h                |   3 +
 meson.build                              |  12 +-
 bootdevice.c => softmmu/bootdevice.c     |   0
 device_tree.c => softmmu/device_tree.c   |   0
 dma-helpers.c => softmmu/dma-helpers.c   |   0
 softmmu/meson.build                      |  11 +
 exec.c => softmmu/physmem.c              | 454 +----------------------
 qdev-monitor.c => softmmu/qdev-monitor.c |   0
 qemu-seccomp.c => softmmu/qemu-seccomp.c |   0
 tpm.c => softmmu/tpm.c                   |   0
 12 files changed, 476 insertions(+), 460 deletions(-)
 create mode 100644 cpu.c
 rename bootdevice.c => softmmu/bootdevice.c (100%)
 rename device_tree.c => softmmu/device_tree.c (100%)
 rename dma-helpers.c => softmmu/dma-helpers.c (100%)
 rename exec.c => softmmu/physmem.c (91%)
 rename qdev-monitor.c => softmmu/qdev-monitor.c (100%)
 rename qemu-seccomp.c => softmmu/qemu-seccomp.c (100%)
 rename tpm.c => softmmu/tpm.c (100%)

-- 
2.26.2




reply via email to

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