mbox

[PULL,for-6.1,00/12] tcg and misc patch queue

Message ID 20210726214729.2062862-1-richard.henderson@linaro.org
State New
Headers show

Pull-request

https://gitlab.com/rth7680/qemu.git tags/pull-tcg-20210726

Message

Richard Henderson July 26, 2021, 9:47 p.m. UTC
The following changes since commit 34fd92ab4142bde5b54adacd16e6682f4ea83da1:

  Merge remote-tracking branch 'remotes/stsquad/tags/pull-for-6.1-rc1-230721-1' into staging (2021-07-26 11:00:15 +0100)

are available in the Git repository at:

  https://gitlab.com/rth7680/qemu.git tags/pull-tcg-20210726

for you to fetch changes up to 2bf07e788eb69bee843be274386fb20f4ab6b0f6:

  tests/unit: Remove unused variable from test_io (2021-07-26 07:07:28 -1000)

----------------------------------------------------------------
Fix icount accounting.
Replace bitrev8 with revbit8.
Fixes for set but not used warnings.

----------------------------------------------------------------
Mark Cave-Ayland (1):
      bitops.h: revert db1ffc32dd ("qemu/bitops.h: add bitrev8 implementation")

Peter Maydell (2):
      accel/tcg: Don't use CF_COUNT_MASK as the max value of icount_decr.u16.low
      accel/tcg: Remove unnecessary check on icount_extra in cpu_loop_exec_tb()

Richard Henderson (9):
      nbd/server: Mark variable unused in nbd_negotiate_meta_queries
      accel/tcg: Remove unused variable in cpu_exec
      util/selfmap: Discard mapping on error
      net/checksum: Remove unused variable in net_checksum_add_iov
      hw/audio/adlib: Remove unused variable in adlib_callback
      hw/ppc/spapr_events: Remove unused variable from check_exception
      hw/pci-hist/pnv_phb4: Fix typo in pnv_phb4_ioda_write
      linux-user/syscall: Remove unused variable from execve
      tests/unit: Remove unused variable from test_io

 include/qemu/bitops.h  | 22 ----------------------
 accel/tcg/cpu-exec.c   | 16 ++++++----------
 hw/audio/adlib.c       |  3 +--
 hw/m68k/q800.c         |  2 +-
 hw/pci-host/pnv_phb4.c |  2 +-
 hw/ppc/spapr_events.c  |  5 -----
 linux-user/syscall.c   |  3 ---
 nbd/server.c           |  3 ++-
 net/checksum.c         |  4 +---
 tests/unit/test-iov.c  |  5 +----
 util/selfmap.c         | 29 +++++++++++++++++------------
 11 files changed, 30 insertions(+), 64 deletions(-)

Comments

Peter Maydell July 27, 2021, 9:55 a.m. UTC | #1
On Mon, 26 Jul 2021 at 22:47, Richard Henderson
<richard.henderson@linaro.org> wrote:
>
> The following changes since commit 34fd92ab4142bde5b54adacd16e6682f4ea83da1:
>
>   Merge remote-tracking branch 'remotes/stsquad/tags/pull-for-6.1-rc1-230721-1' into staging (2021-07-26 11:00:15 +0100)
>
> are available in the Git repository at:
>
>   https://gitlab.com/rth7680/qemu.git tags/pull-tcg-20210726
>
> for you to fetch changes up to 2bf07e788eb69bee843be274386fb20f4ab6b0f6:
>
>   tests/unit: Remove unused variable from test_io (2021-07-26 07:07:28 -1000)
>
> ----------------------------------------------------------------
> Fix icount accounting.
> Replace bitrev8 with revbit8.
> Fixes for set but not used warnings.


Applied, thanks.

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

-- PMM