[PULL 00/13] Monitor patches for 2022-12-19

Markus Armbruster posted 13 patches 1 year, 4 months ago
Failed in applying to current master (apply log)
Maintainers: "Michael S. Tsirkin" <mst@redhat.com>, Marcel Apfelbaum <marcel.apfelbaum@gmail.com>, "Dr. David Alan Gilbert" <dgilbert@redhat.com>
hw/pci/pci-internal.h   |  25 +++++
include/monitor/hmp.h   |   1 +
include/sysemu/sysemu.h |   3 -
hw/pci/pci-hmp-cmds.c   | 238 ++++++++++++++++++++++++++++++++++++++++++++++++
hw/pci/pci-qmp-cmds.c   | 199 ++++++++++++++++++++++++++++++++++++++++
hw/pci/pci-stub.c       |   9 +-
hw/pci/pci.c            | 224 +--------------------------------------------
hw/pci/pcie_aer.c       | 113 +----------------------
monitor/hmp-cmds.c      | 107 ----------------------
hw/pci/meson.build      |   2 +
10 files changed, 478 insertions(+), 443 deletions(-)
create mode 100644 hw/pci/pci-internal.h
create mode 100644 hw/pci/pci-hmp-cmds.c
create mode 100644 hw/pci/pci-qmp-cmds.c
[PULL 00/13] Monitor patches for 2022-12-19
Posted by Markus Armbruster 1 year, 4 months ago
The following changes since commit 562d4af32ec2213061f844b3838223fd7711b56a:

  Merge tag 'pull-loongarch-20221215' of https://gitlab.com/gaosong/qemu into staging (2022-12-18 13:53:29 +0000)

are available in the Git repository at:

  https://repo.or.cz/qemu/armbru.git tags/pull-monitor-2022-12-19

for you to fetch changes up to e221cfac5935b0fea0989da9ef4ee5024777f23e:

  pci: Reject pcie_aer_inject_error -c with symbolic error status (2022-12-19 16:21:56 +0100)

----------------------------------------------------------------
Monitor patches for 2022-12-19

----------------------------------------------------------------
Markus Armbruster (13):
      pci: Clean up a few things checkpatch.pl would flag later on
      pci: Move QMP commands to new hw/pci/pci-qmp-cmds.c
      pci: Move HMP commands from monitor/ to new hw/pci/pci-hmp-cmds.c
      pci: Make query-pci stub consistent with the real one
      pci: Build hw/pci/pci-hmp-cmds.c only when CONFIG_PCI
      pci: Deduplicate get_class_desc()
      pci: Move pcibus_dev_print() to pci-hmp-cmds.c
      pci: Fix silent truncation of pcie_aer_inject_error argument
      pci: Move HMP command from hw/pci/pcie_aer.c to pci-hmp-cmds.c
      pci: Inline do_pcie_aer_inject_error() into its only caller
      pci: Rename hmp_pcie_aer_inject_error()'s local variable @err
      pci: Improve do_pcie_aer_inject_error()'s error messages
      pci: Reject pcie_aer_inject_error -c with symbolic error status

 hw/pci/pci-internal.h   |  25 +++++
 include/monitor/hmp.h   |   1 +
 include/sysemu/sysemu.h |   3 -
 hw/pci/pci-hmp-cmds.c   | 238 ++++++++++++++++++++++++++++++++++++++++++++++++
 hw/pci/pci-qmp-cmds.c   | 199 ++++++++++++++++++++++++++++++++++++++++
 hw/pci/pci-stub.c       |   9 +-
 hw/pci/pci.c            | 224 +--------------------------------------------
 hw/pci/pcie_aer.c       | 113 +----------------------
 monitor/hmp-cmds.c      | 107 ----------------------
 hw/pci/meson.build      |   2 +
 10 files changed, 478 insertions(+), 443 deletions(-)
 create mode 100644 hw/pci/pci-internal.h
 create mode 100644 hw/pci/pci-hmp-cmds.c
 create mode 100644 hw/pci/pci-qmp-cmds.c

-- 
2.37.3
Re: [PULL 00/13] Monitor patches for 2022-12-19
Posted by Peter Maydell 1 year, 4 months ago
On Mon, 19 Dec 2022 at 15:51, Markus Armbruster <armbru@redhat.com> wrote:
>
> The following changes since commit 562d4af32ec2213061f844b3838223fd7711b56a:
>
>   Merge tag 'pull-loongarch-20221215' of https://gitlab.com/gaosong/qemu into staging (2022-12-18 13:53:29 +0000)
>
> are available in the Git repository at:
>
>   https://repo.or.cz/qemu/armbru.git tags/pull-monitor-2022-12-19
>
> for you to fetch changes up to e221cfac5935b0fea0989da9ef4ee5024777f23e:
>
>   pci: Reject pcie_aer_inject_error -c with symbolic error status (2022-12-19 16:21:56 +0100)
>
> ----------------------------------------------------------------
> Monitor patches for 2022-12-19
>
> ----------------------------------------------------------------


Applied, thanks.

Please update the changelog at https://wiki.qemu.org/ChangeLog/8.0
for any user-visible changes.

-- PMM