qemu-commits
[Top][All Lists]
Advanced

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

[Qemu-commits] [qemu/qemu] 03a3c6: hw/gpio/max7310: Remove impossible ch


From: Peter Maydell
Subject: [Qemu-commits] [qemu/qemu] 03a3c6: hw/gpio/max7310: Remove impossible check
Date: Tue, 22 Sep 2020 08:45:37 -0700

  Branch: refs/heads/master
  Home:   https://github.com/qemu/qemu
  Commit: 03a3c6f16f59da2b159a9f8c370eb568877ac378
      
https://github.com/qemu/qemu/commit/03a3c6f16f59da2b159a9f8c370eb568877ac378
  Author: Philippe Mathieu-Daudé <f4bug@amsat.org>
  Date:   2020-09-16 (Wed, 16 Sep 2020)

  Changed paths:
    M hw/gpio/max7310.c

  Log Message:
  -----------
  hw/gpio/max7310: Remove impossible check

The max7310_gpio_set() handler is static and only used by
qdev_init_gpio_in, initialized with 8 IRQs. The 'line'
argument can not be out of the [0-8[ range.
Replace the dead code by an assertion.

Suggested-by: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-Id: <20200910072325.439344-2-f4bug@amsat.org>
Signed-off-by: Laurent Vivier <laurent@vivier.eu>


  Commit: 0a7553725ed7ecda63a3463c49d7a86bfe871e58
      
https://github.com/qemu/qemu/commit/0a7553725ed7ecda63a3463c49d7a86bfe871e58
  Author: Philippe Mathieu-Daudé <f4bug@amsat.org>
  Date:   2020-09-16 (Wed, 16 Sep 2020)

  Changed paths:
    M hw/ppc/ppc4xx_pci.c

  Log Message:
  -----------
  hw/ppc/ppc4xx_pci: Replace magic value by the PCI_NUM_PINS definition

Replace the magic '4' value by the PCI_NUM_PINS definition.

Suggested-by: Cédric Le Goater <clg@kaod.org>
Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Acked-by: David Gibson <david@gibson.dropbear.id.au>
Reviewed-by: Richard Henderson <richard.henderson@linaro.org>
Message-Id: <20200910072325.439344-3-f4bug@amsat.org>
Signed-off-by: Laurent Vivier <laurent@vivier.eu>


  Commit: cf0560b9c16e0b0e37cc46c9cd5a57c4315b25db
      
https://github.com/qemu/qemu/commit/cf0560b9c16e0b0e37cc46c9cd5a57c4315b25db
  Author: Philippe Mathieu-Daudé <f4bug@amsat.org>
  Date:   2020-09-16 (Wed, 16 Sep 2020)

  Changed paths:
    M ui/spice-input.c

  Log Message:
  -----------
  ui/spice-input: Remove superfluous forward declaration

We only need to forward-declare kbd_push_key() and kbd_get_leds()
which are used in kbd_interface, not kbd_leds(). Remove this
superfluous forward declaration.

Signed-off-by: Philippe Mathieu-Daudé <f4bug@amsat.org>
Reviewed-by: Laurent Vivier <laurent@vivier.eu>
Message-Id: <20200909171145.350360-1-f4bug@amsat.org>
Signed-off-by: Laurent Vivier <laurent@vivier.eu>


  Commit: 353a06b425256cdab06be423863241cb5be1885e
      
https://github.com/qemu/qemu/commit/353a06b425256cdab06be423863241cb5be1885e
  Author: Laszlo Ersek <lersek@redhat.com>
  Date:   2020-09-16 (Wed, 16 Sep 2020)

  Changed paths:
    M docs/system/device-url-syntax.rst.inc
    M qemu-options.hx

  Log Message:
  -----------
  manual: escape backslashes in "parsed-literal" blocks

According to
<https://docutils.sourceforge.io/docs/ref/rst/directives.html#parsed-literal>,
"inline markup is recognized and there is no protection from parsing.
Backslash-escapes may be necessary to prevent unintended parsing".

The qemu(1) manual page (formatted with Sphinx 2.2.2) has several overlong
lines on my system. A stand-alone backslash at EOL serves as line
continuation in a "parsed-literal" block. Therefore, escape the
backslashes that we want to appear as such in the formatted documentation.

Cc: Peter Maydell <peter.maydell@linaro.org>
Signed-off-by: Laszlo Ersek <lersek@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Message-Id: <20200908172111.19072-1-lersek@redhat.com>
Signed-off-by: Laurent Vivier <laurent@vivier.eu>


  Commit: 4b41c9c4a12d9fa3a38f22e5b345666c57bd087d
      
https://github.com/qemu/qemu/commit/4b41c9c4a12d9fa3a38f22e5b345666c57bd087d
  Author: Yonggang Luo <luoyonggang@gmail.com>
  Date:   2020-09-16 (Wed, 16 Sep 2020)

  Changed paths:
    M meson.build

  Log Message:
  -----------
  meson: remove empty else and duplicated gio deps

Signed-off-by: Yonggang Luo <luoyonggang@gmail.com>
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
Reviewed-by: Thomas Huth <thuth@redhat.com>
Message-Id: <20200915171234.236-14-luoyonggang@gmail.com>
Signed-off-by: Laurent Vivier <laurent@vivier.eu>


  Commit: d6892f12a5c5ca258b85dfc4d210e7604b0e3dcf
      
https://github.com/qemu/qemu/commit/d6892f12a5c5ca258b85dfc4d210e7604b0e3dcf
  Author: Dov Murik <dovmurik@linux.vnet.ibm.com>
  Date:   2020-09-16 (Wed, 16 Sep 2020)

  Changed paths:
    M hw/timer/hpet.c

  Log Message:
  -----------
  hw/timer/hpet: Remove unused functions hpet_ram_readb, hpet_ram_readw

Fix compiler error about defined but not used functions when compiling
with -DHPET_DEBUG by deleting the unused debug functions hpet_ram_readb
and hpet_ram_readw.

Signed-off-by: Dov Murik <dovmurik@linux.vnet.ibm.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Message-Id: <20200909083650.46771-2-dovmurik@linux.vnet.ibm.com>
Signed-off-by: Laurent Vivier <laurent@vivier.eu>


  Commit: 931c1d48e5e4a6c0a38476da49ed21ef6260fe45
      
https://github.com/qemu/qemu/commit/931c1d48e5e4a6c0a38476da49ed21ef6260fe45
  Author: Dov Murik <dovmurik@linux.vnet.ibm.com>
  Date:   2020-09-16 (Wed, 16 Sep 2020)

  Changed paths:
    M hw/timer/hpet.c

  Log Message:
  -----------
  hw/timer/hpet: Fix debug format strings

Fix compiler errors when compiling with -DHPET_DEBUG due to mismatch
between format string token "%x" and the argument type uint64_t.

Also "%#x" is replaced by "0x%" PRIx64 according to the coding style.

Signed-off-by: Dov Murik <dovmurik@linux.vnet.ibm.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Message-Id: <20200909083650.46771-3-dovmurik@linux.vnet.ibm.com>
Signed-off-by: Laurent Vivier <laurent@vivier.eu>


  Commit: 8edacae02652c5d1cad1fa60ff9a0df1e6120223
      
https://github.com/qemu/qemu/commit/8edacae02652c5d1cad1fa60ff9a0df1e6120223
  Author: Philippe Mathieu-Daudé <philmd@redhat.com>
  Date:   2020-09-16 (Wed, 16 Sep 2020)

  Changed paths:
    M scripts/git.orderfile

  Log Message:
  -----------
  scripts/git.orderfile: Display meson files along with buildsys ones

Since commit a56650518f5 ("configure: integrate Meson in the build
system") we replaced many Makefile by Meson files. Adapt the
git.orderfile script to display the new file at the same position.

Signed-off-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Reviewed-by: Stefano Garzarella <sgarzare@redhat.com>
Message-Id: <20200907161222.41915-1-philmd@redhat.com>
Signed-off-by: Laurent Vivier <laurent@vivier.eu>


  Commit: e3a6e0daf47f43cdb02b42c4dd3694a8f00063d5
      
https://github.com/qemu/qemu/commit/e3a6e0daf47f43cdb02b42c4dd3694a8f00063d5
  Author: zhaolichang <zhaolichang@huawei.com>
  Date:   2020-09-17 (Thu, 17 Sep 2020)

  Changed paths:
    M Changelog
    M accel/tcg/user-exec.c
    M audio/audio.c
    M block.c
    M configure
    M fsdev/virtfs-proxy-helper.c
    M hmp-commands.hx
    M libdecnumber/decNumber.c
    M qemu-img.c
    M qobject/qdict.c
    M scsi/pr-manager-helper.c

  Log Message:
  -----------
  qemu/: fix some comment spelling errors

I found that there are many spelling errors in the comments of qemu,
so I used the spellcheck tool to check the spelling errors
and finally found some spelling errors in the folder.

Signed-off-by: zhaolichang <zhaolichang@huawei.com>
Reviewed-by: Alex Bennee <alex.bennee@linaro.org>
Message-Id: <20200917075029.313-2-zhaolichang@huawei.com>
Signed-off-by: Laurent Vivier <laurent@vivier.eu>


  Commit: 3a4452d896821f87f6a933c4cd132c3ff0f58bb4
      
https://github.com/qemu/qemu/commit/3a4452d896821f87f6a933c4cd132c3ff0f58bb4
  Author: zhaolichang <zhaolichang@huawei.com>
  Date:   2020-09-17 (Thu, 17 Sep 2020)

  Changed paths:
    M migration/colo-failover.c
    M migration/colo.c
    M migration/multifd.c
    M migration/postcopy-ram.c
    M migration/postcopy-ram.h
    M migration/ram.c
    M migration/rdma.c
    M migration/savevm.c

  Log Message:
  -----------
  migration/: fix some comment spelling errors

I found that there are many spelling errors in the comments of qemu,
so I used the spellcheck tool to check the spelling errors
and finally found some spelling errors in the migration folder.

Signed-off-by: zhaolichang <zhaolichang@huawei.com>
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Message-Id: <20200917075029.313-3-zhaolichang@huawei.com>
Signed-off-by: Laurent Vivier <laurent@vivier.eu>


  Commit: 76ca4b58c295e154dfe9c2405141e81ce928c19c
      
https://github.com/qemu/qemu/commit/76ca4b58c295e154dfe9c2405141e81ce928c19c
  Author: zhaolichang <zhaolichang@huawei.com>
  Date:   2020-09-17 (Thu, 17 Sep 2020)

  Changed paths:
    M docs/COLO-FT.txt
    M docs/devel/blkdebug.txt
    M docs/devel/migration.rst
    M docs/devel/testing.rst
    M docs/devel/tracing.txt
    M docs/interop/bitmaps.rst
    M docs/interop/dbus.rst
    M docs/interop/nbd.txt
    M docs/interop/vhost-user-gpu.rst
    M docs/interop/vhost-user.rst
    M docs/rdma.txt
    M docs/specs/ppc-spapr-hotplug.txt
    M docs/specs/ppc-spapr-xive.rst
    M docs/system/arm/aspeed.rst
    M docs/system/deprecated.rst
    M docs/system/target-avr.rst
    M docs/tools/virtiofsd.rst

  Log Message:
  -----------
  docs/: fix some comment spelling errors

I found that there are many spelling errors in the comments of qemu,
so I used the spellcheck tool to check the spelling errors
and finally found some spelling errors in the docs folder.

Signed-off-by: zhaolichang <zhaolichang@huawei.com>
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Message-Id: <20200917075029.313-4-zhaolichang@huawei.com>
Signed-off-by: Laurent Vivier <laurent@vivier.eu>


  Commit: 65fdb3cc2e5b40e5c37ef29068e13f110b70ece4
      
https://github.com/qemu/qemu/commit/65fdb3cc2e5b40e5c37ef29068e13f110b70ece4
  Author: zhaolichang <zhaolichang@huawei.com>
  Date:   2020-09-17 (Thu, 17 Sep 2020)

  Changed paths:
    M scripts/checkpatch.pl
    M scripts/clean-header-guards.pl
    M scripts/decodetree.py
    M scripts/oss-fuzz/build.sh
    M scripts/tracetool/__init__.py

  Log Message:
  -----------
  scripts/: fix some comment spelling errors

I found that there are many spelling errors in the comments of qemu,
so I used the spellcheck tool to check the spelling errors
and finally found some spelling errors in the scripts folder.

Signed-off-by: zhaolichang <zhaolichang@huawei.com>
Reviewed-by: Peter Maydell <peter.maydell@linaro.org>
Message-Id: <20200917075029.313-5-zhaolichang@huawei.com>
Signed-off-by: Laurent Vivier <laurent@vivier.eu>


  Commit: 8cc360b93ae09bcb0d34148b914652b24dd70061
      
https://github.com/qemu/qemu/commit/8cc360b93ae09bcb0d34148b914652b24dd70061
  Author: zhaolichang <zhaolichang@huawei.com>
  Date:   2020-09-17 (Thu, 17 Sep 2020)

  Changed paths:
    M util/osdep.c
    M util/qemu-progress.c
    M util/qemu-sockets.c
    M util/qemu-thread-win32.c
    M util/qht.c
    M util/trace-events

  Log Message:
  -----------
  util/: fix some comment spelling errors

I found that there are many spelling errors in the comments of qemu,
so I used the spellcheck tool to check the spelling errors
and finally found some spelling errors in the util folder.

Signed-off-by: zhaolichang <zhaolichang@huawei.com>
Reviewed-by: Alex Bennee <alex.bennee@linaro.org>
Message-Id: <20200917075029.313-6-zhaolichang@huawei.com>
Signed-off-by: Laurent Vivier <laurent@vivier.eu>


  Commit: 6f9ff551a40593432b9d34d4d4142d3bc81c95dd
      
https://github.com/qemu/qemu/commit/6f9ff551a40593432b9d34d4d4142d3bc81c95dd
  Author: zhaolichang <zhaolichang@huawei.com>
  Date:   2020-09-17 (Thu, 17 Sep 2020)

  Changed paths:
    M linux-user/aarch64/signal.c
    M linux-user/cris/target_syscall.h
    M linux-user/flat.h
    M linux-user/flatload.c
    M linux-user/host/ppc64/safe-syscall.inc.S
    M linux-user/syscall.c

  Log Message:
  -----------
  linux-user/: fix some comment spelling errors

I found that there are many spelling errors in the comments of qemu,
so I used the spellcheck tool to check the spelling errors
and finally found some spelling errors in the linux-user folder.

Signed-off-by: zhaolichang <zhaolichang@huawei.com>
Reviewed-by: Alex Bennee <alex.bennee@linaro.org>
Message-Id: <20200917075029.313-7-zhaolichang@huawei.com>
Signed-off-by: Laurent Vivier <laurent@vivier.eu>


  Commit: 2dbb13089fcee647b0f71def910185140399ba0d
      
https://github.com/qemu/qemu/commit/2dbb13089fcee647b0f71def910185140399ba0d
  Author: zhaolichang <zhaolichang@huawei.com>
  Date:   2020-09-17 (Thu, 17 Sep 2020)

  Changed paths:
    M disas/hppa.c
    M disas/m68k.c
    M disas/ppc.c

  Log Message:
  -----------
  disas/: fix some comment spelling errors

I found that there are many spelling errors in the comments of qemu,
so I used the spellcheck tool to check the spelling errors
and finally found some spelling errors in the disas folder.

Signed-off-by: zhaolichang <zhaolichang@huawei.com>
Reviewed-by: Alex Bennée <alex.bennee@linaro.org>
Message-Id: <20200917075029.313-9-zhaolichang@huawei.com>
Signed-off-by: Laurent Vivier <laurent@vivier.eu>


  Commit: 2400e50c15986e773dad4b6d9584b5da77ba3927
      
https://github.com/qemu/qemu/commit/2400e50c15986e773dad4b6d9584b5da77ba3927
  Author: zhaolichang <zhaolichang@huawei.com>
  Date:   2020-09-17 (Thu, 17 Sep 2020)

  Changed paths:
    M qapi/block-core.json
    M qapi/crypto.json

  Log Message:
  -----------
  qapi/: fix some comment spelling errors

I found that there are many spelling errors in the comments of qemu,
so I used the spellcheck tool to check the spelling errors
and finally found some spelling errors in the qapi folder.

Signed-off-by: zhaolichang <zhaolichang@huawei.com>
Reviewed-by: Markus Armbruster <armbru@redhat.com>
Message-Id: <20200917075029.313-10-zhaolichang@huawei.com>
Signed-off-by: Laurent Vivier <laurent@vivier.eu>


  Commit: 639b090df52a4952262615328a3fdfae81234ea8
      
https://github.com/qemu/qemu/commit/639b090df52a4952262615328a3fdfae81234ea8
  Author: zhaolichang <zhaolichang@huawei.com>
  Date:   2020-09-17 (Thu, 17 Sep 2020)

  Changed paths:
    M contrib/gitdm/filetypes.txt
    M contrib/ivshmem-client/ivshmem-client.h
    M contrib/libvhost-user/libvhost-user.c
    M contrib/libvhost-user/libvhost-user.h

  Log Message:
  -----------
  contrib/: fix some comment spelling errors

I found that there are many spelling errors in the comments of qemu,
so I used the spellcheck tool to check the spelling errors
and finally found some spelling errors in the contrib folder.

Signed-off-by: zhaolichang <zhaolichang@huawei.com>
Reviewed-by: Alex Bennee <alex.bennee@linaro.org>
Message-Id: <20200917075029.313-11-zhaolichang@huawei.com>
Signed-off-by: Laurent Vivier <laurent@vivier.eu>


  Commit: 834b9273d5cdab68180dc8c84d641aaa4344b057
      
https://github.com/qemu/qemu/commit/834b9273d5cdab68180dc8c84d641aaa4344b057
  Author: Peter Maydell <peter.maydell@linaro.org>
  Date:   2020-09-22 (Tue, 22 Sep 2020)

  Changed paths:
    M Changelog
    M accel/tcg/user-exec.c
    M audio/audio.c
    M block.c
    M configure
    M contrib/gitdm/filetypes.txt
    M contrib/ivshmem-client/ivshmem-client.h
    M contrib/libvhost-user/libvhost-user.c
    M contrib/libvhost-user/libvhost-user.h
    M disas/hppa.c
    M disas/m68k.c
    M disas/ppc.c
    M docs/COLO-FT.txt
    M docs/devel/blkdebug.txt
    M docs/devel/migration.rst
    M docs/devel/testing.rst
    M docs/devel/tracing.txt
    M docs/interop/bitmaps.rst
    M docs/interop/dbus.rst
    M docs/interop/nbd.txt
    M docs/interop/vhost-user-gpu.rst
    M docs/interop/vhost-user.rst
    M docs/rdma.txt
    M docs/specs/ppc-spapr-hotplug.txt
    M docs/specs/ppc-spapr-xive.rst
    M docs/system/arm/aspeed.rst
    M docs/system/deprecated.rst
    M docs/system/device-url-syntax.rst.inc
    M docs/system/target-avr.rst
    M docs/tools/virtiofsd.rst
    M fsdev/virtfs-proxy-helper.c
    M hmp-commands.hx
    M hw/gpio/max7310.c
    M hw/ppc/ppc4xx_pci.c
    M hw/timer/hpet.c
    M libdecnumber/decNumber.c
    M linux-user/aarch64/signal.c
    M linux-user/cris/target_syscall.h
    M linux-user/flat.h
    M linux-user/flatload.c
    M linux-user/host/ppc64/safe-syscall.inc.S
    M linux-user/syscall.c
    M migration/colo-failover.c
    M migration/colo.c
    M migration/multifd.c
    M migration/postcopy-ram.c
    M migration/postcopy-ram.h
    M migration/ram.c
    M migration/rdma.c
    M migration/savevm.c
    M qapi/block-core.json
    M qapi/crypto.json
    M qemu-img.c
    M qemu-options.hx
    M qobject/qdict.c
    M scripts/checkpatch.pl
    M scripts/clean-header-guards.pl
    M scripts/decodetree.py
    M scripts/git.orderfile
    M scripts/oss-fuzz/build.sh
    M scripts/tracetool/__init__.py
    M scsi/pr-manager-helper.c
    M ui/spice-input.c
    M util/osdep.c
    M util/qemu-progress.c
    M util/qemu-sockets.c
    M util/qemu-thread-win32.c
    M util/qht.c
    M util/trace-events

  Log Message:
  -----------
  Merge remote-tracking branch 
'remotes/vivier2/tags/trivial-branch-for-5.2-pull-request' into staging

Pull request trivial patches 20200919

# gpg: Signature made Sat 19 Sep 2020 19:43:35 BST
# gpg:                using RSA key CD2F75DDC8E3A4DC2E4F5173F30C38BD3F2FBE3C
# gpg:                issuer "laurent@vivier.eu"
# gpg: Good signature from "Laurent Vivier <lvivier@redhat.com>" [full]
# gpg:                 aka "Laurent Vivier <laurent@vivier.eu>" [full]
# gpg:                 aka "Laurent Vivier (Red Hat) <lvivier@redhat.com>" 
[full]
# Primary key fingerprint: CD2F 75DD C8E3 A4DC 2E4F  5173 F30C 38BD 3F2F BE3C

* remotes/vivier2/tags/trivial-branch-for-5.2-pull-request:
  contrib/: fix some comment spelling errors
  qapi/: fix some comment spelling errors
  disas/: fix some comment spelling errors
  linux-user/: fix some comment spelling errors
  util/: fix some comment spelling errors
  scripts/: fix some comment spelling errors
  docs/: fix some comment spelling errors
  migration/: fix some comment spelling errors
  qemu/: fix some comment spelling errors
  scripts/git.orderfile: Display meson files along with buildsys ones
  hw/timer/hpet: Fix debug format strings
  hw/timer/hpet: Remove unused functions hpet_ram_readb, hpet_ram_readw
  meson: remove empty else and duplicated gio deps
  manual: escape backslashes in "parsed-literal" blocks
  ui/spice-input: Remove superfluous forward declaration
  hw/ppc/ppc4xx_pci: Replace magic value by the PCI_NUM_PINS definition
  hw/gpio/max7310: Remove impossible check

Signed-off-by: Peter Maydell <peter.maydell@linaro.org>


Compare: https://github.com/qemu/qemu/compare/4dad0a9aa818...834b9273d5cd



reply via email to

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