Re: [Qemu-devel] [PULL 00/10] Machine queue, 2019-01-10

2019-01-11 Thread no-reply
Patchew URL: 
https://patchew.org/QEMU/20190110142955.23254-1-ehabk...@redhat.com/



Hi,

This series seems to have some coding style problems. See output below for
more information:

Message-id: 20190110142955.23254-1-ehabk...@redhat.com
Type: series
Subject: [Qemu-devel] [PULL 00/10] Machine queue, 2019-01-10

=== TEST SCRIPT BEGIN ===
#!/bin/bash
git config --local diff.renamelimit 0
git config --local diff.renames True
git config --local diff.algorithm histogram
./scripts/checkpatch.pl --mailback --color=always base..
=== TEST SCRIPT END ===

Updating 3c8cf5a9c21ff8782164d1def7f44bd888713384
From https://github.com/patchew-project/qemu
 - [tag update]  patchew/20190111220131.27153-1-jcmvb...@gmail.com -> 
patchew/20190111220131.27153-1-jcmvb...@gmail.com
Switched to a new branch 'test'
62544fe qom: Don't keep error value between object_property_parse() calls
a320168 qdev: fix -device scsi-hd, help regression
917e46b machine: Use shorter format for GlobalProperty arrays
4326497 machine: Eliminate unnecessary stringify() usage
f4d8c3d spapr: Eliminate SPAPR_PCI_2_7_MMIO_WIN_SIZE macro
6ca72c7 memory-device: rewrite address assignment using ranges
e6667d7 range: add some more functions
58bda71 Mention that QMP 'cpu-add' will be deprecated
cfce683 Update that HMP 'cpu-add' is deprecated in 4.0
fd46ac3 qemu-deprecated.texi: Rename the HMP section

=== OUTPUT BEGIN ===
Unknown option: color
Usage:

checkpatch.pl [OPTION]... [FILE]...
checkpatch.pl [OPTION]... [GIT-REV-LIST]

Version: 0.31

Options:
  -q, --quietquiet
  --no-tree  run without a kernel tree
  --no-signoff   do not check for 'Signed-off-by' line
  --patchtreat FILE as patchfile
  --branch   treat args as GIT revision list
  --emacsemacs compile window format
  --terseone line per report
  -f, --file treat FILE as regular source file
  --strict   fail if only warnings are found
  --root=PATHPATH to the kernel tree root
  --no-summary   suppress the per-file summary
  --mailback only produce a report in case of warnings/errors
  --summary-file include the filename in summary
  --debug KEY=[0|1]  turn on/off debugging of KEY, where KEY is one of
 'values', 'possible', 'type', and 'attr' (default
 is all off)
  --test-only=WORD   report only warnings/errors containing WORD
 literally
  -h, --help, --version  display this help and exit

When FILE is - read standard input.
=== OUTPUT END ===

Test command exited with code: 1


The full log is available at
http://patchew.org/logs/20190110142955.23254-1-ehabk...@redhat.com/testing.checkpatch/?type=message.
---
Email generated automatically by Patchew [http://patchew.org/].
Please send your feedback to patchew-de...@redhat.com

Re: [Qemu-devel] [PULL 00/10] Machine queue, 2019-01-10

2019-01-11 Thread Peter Maydell
On Thu, 10 Jan 2019 at 14:29, Eduardo Habkost  wrote:
>
> The following changes since commit 8ae951fbc1068308313b2c57a4fc3c68451641f4:
>
>   Merge remote-tracking branch 'remotes/dgibson/tags/ppc-for-4.0-20190109' 
> into staging (2019-01-09 16:08:31 +)
>
> are available in the Git repository at:
>
>   git://github.com/ehabkost/qemu.git tags/machine-next-pull-request
>
> for you to fetch changes up to d769f0dfeeaa1554a38fedb16bb20a4b0ecf793c:
>
>   qom: Don't keep error value between object_property_parse() calls 
> (2019-01-10 12:25:15 -0200)
>
> 
> Machine queue, 2019-01-10
>
> * Simplify GlobalProperty array declarations (Eduardo Habkost)
> * Deprecate cpu-add commands (Kashyap Chamarthy)
> * range/memory-device cleanups (David Hildenbrand)
> * Fix -device scsi-hd,help regression (Marc-André Lureau)
> * Fix crash when -global generates multiple warnings (Eduardo
>   Habkost)
>
> 


Applied, thanks.

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

-- PMM



[Qemu-devel] [PULL 00/10] Machine queue, 2019-01-10

2019-01-10 Thread Eduardo Habkost
The following changes since commit 8ae951fbc1068308313b2c57a4fc3c68451641f4:

  Merge remote-tracking branch 'remotes/dgibson/tags/ppc-for-4.0-20190109' into 
staging (2019-01-09 16:08:31 +)

are available in the Git repository at:

  git://github.com/ehabkost/qemu.git tags/machine-next-pull-request

for you to fetch changes up to d769f0dfeeaa1554a38fedb16bb20a4b0ecf793c:

  qom: Don't keep error value between object_property_parse() calls (2019-01-10 
12:25:15 -0200)


Machine queue, 2019-01-10

* Simplify GlobalProperty array declarations (Eduardo Habkost)
* Deprecate cpu-add commands (Kashyap Chamarthy)
* range/memory-device cleanups (David Hildenbrand)
* Fix -device scsi-hd,help regression (Marc-André Lureau)
* Fix crash when -global generates multiple warnings (Eduardo
  Habkost)



Queue for Machine Core patches


David Hildenbrand (2):
  range: add some more functions
  memory-device: rewrite address assignment using ranges

Eduardo Habkost (4):
  spapr: Eliminate SPAPR_PCI_2_7_MMIO_WIN_SIZE macro
  machine: Eliminate unnecessary stringify() usage
  machine: Use shorter format for GlobalProperty arrays
  qom: Don't keep error value between object_property_parse() calls

Kashyap Chamarthy (3):
  qemu-deprecated.texi: Rename the HMP section
  Update that HMP 'cpu-add' is deprecated in 4.0
  Mention that QMP 'cpu-add' will be deprecated

Marc-André Lureau (1):
  qdev: fix -device scsi-hd,help regression

 include/hw/i386/pc.h|  18 +-
 include/hw/pci-host/spapr.h |   1 -
 include/qemu/range.h|  62 
 hw/core/machine.c   | 338 -
 hw/core/qdev.c  |   9 +-
 hw/i386/pc.c| 720 +++-
 hw/i386/pc_piix.c   | 192 ++
 hw/mem/memory-device.c  |  51 +--
 hw/ppc/spapr.c  |  72 +---
 hw/s390x/s390-virtio-ccw.c  |  75 +---
 hw/xen/xen-common.c |  18 +-
 qom/object.c|   2 +-
 qemu-deprecated.texi|  10 +-
 13 files changed, 368 insertions(+), 1200 deletions(-)

-- 
2.18.0.rc1.1.g3f1ff2140