[Qemu-devel] [PULL 00/11] MTTCG Fix-ups for 2.9

Alex Bennée posted 11 patches 7 years ago
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20170309111714.20394-1-alex.bennee@linaro.org
Test checkpatch passed
Test docker passed
cpus.c                      | 11 +++++++----
hw/intc/arm_gic.c           | 13 +++++++++----
hw/sparc/sun4m.c            |  3 +++
hw/sparc64/sparc64.c        |  3 +++
target/arm/helper.c         |  2 +-
target/i386/cpu.h           |  5 +++++
target/i386/seg_helper.c    | 20 +++++++++++---------
target/i386/svm_helper.c    | 22 +++++++++++++---------
target/mips/op_helper.c     | 21 ++++++++++++++++++---
target/s390x/misc_helper.c  | 21 +++++++++++++++++++++
target/sparc/int64_helper.c |  3 +++
target/sparc/win_helper.c   | 13 +++++++++++++
target/xtensa/helper.c      |  1 +
target/xtensa/op_helper.c   |  7 +++++++
translate-all.c             | 13 +++++++++++++
vl.c                        |  7 ++-----
16 files changed, 130 insertions(+), 35 deletions(-)
[Qemu-devel] [PULL 00/11] MTTCG Fix-ups for 2.9
Posted by Alex Bennée 7 years ago
The following changes since commit b64842dee42d6b24d51283e4722140b73be1e222:

  Merge remote-tracking branch 'remotes/kevin/tags/for-upstream' into staging (2017-03-08 09:47:52 +0000)

are available in the git repository at:

  https://github.com/stsquad/qemu.git tags/pull-mttcg-fixups-090317-1

for you to fetch changes up to 68bf93ce9dc5c84c45a827ce2bd6eab768524e79:

  hw/intc/arm_gic: modernise the DPRINTF (2017-03-09 10:41:49 +0000)

----------------------------------------------------------------
Fix-ups for MTTCG regressions for 2.9

This is the same as v3 posted a few days ago except with a few extra
Reviewed-by tags added.

----------------------------------------------------------------
Alex Bennée (9):
      vl/cpus: be smarter with icount and MTTCG
      target/i386/cpu.h: declare TCG_GUEST_DEFAULT_MO
      cpus.c: add additional error_report when !TARGET_SUPPORT_MTTCG
      sparc/sparc64: grab BQL before calling cpu_check_irqs
      s390x/misc_helper.c: wrap IO instructions in BQL
      target/xtensa: hold BQL for interrupt processing
      translate-all: exit cpu_restore_state early if translating
      target/arm/helper: make it clear the EC field is also in hex
      hw/intc/arm_gic: modernise the DPRINTF

Paolo Bonzini (1):
      target-i386: defer VMEXIT to do_interrupt

Yongbok Kim (1):
      target/mips: hold BQL for timer interrupts

 cpus.c                      | 11 +++++++----
 hw/intc/arm_gic.c           | 13 +++++++++----
 hw/sparc/sun4m.c            |  3 +++
 hw/sparc64/sparc64.c        |  3 +++
 target/arm/helper.c         |  2 +-
 target/i386/cpu.h           |  5 +++++
 target/i386/seg_helper.c    | 20 +++++++++++---------
 target/i386/svm_helper.c    | 22 +++++++++++++---------
 target/mips/op_helper.c     | 21 ++++++++++++++++++---
 target/s390x/misc_helper.c  | 21 +++++++++++++++++++++
 target/sparc/int64_helper.c |  3 +++
 target/sparc/win_helper.c   | 13 +++++++++++++
 target/xtensa/helper.c      |  1 +
 target/xtensa/op_helper.c   |  7 +++++++
 translate-all.c             | 13 +++++++++++++
 vl.c                        |  7 ++-----
 16 files changed, 130 insertions(+), 35 deletions(-)

-- 
2.11.0


Re: [Qemu-devel] [PULL 00/11] MTTCG Fix-ups for 2.9
Posted by Peter Maydell 7 years ago
On 9 March 2017 at 12:17, Alex Bennée <alex.bennee@linaro.org> wrote:
> The following changes since commit b64842dee42d6b24d51283e4722140b73be1e222:
>
>   Merge remote-tracking branch 'remotes/kevin/tags/for-upstream' into staging (2017-03-08 09:47:52 +0000)
>
> are available in the git repository at:
>
>   https://github.com/stsquad/qemu.git tags/pull-mttcg-fixups-090317-1
>
> for you to fetch changes up to 68bf93ce9dc5c84c45a827ce2bd6eab768524e79:
>
>   hw/intc/arm_gic: modernise the DPRINTF (2017-03-09 10:41:49 +0000)
>
> ----------------------------------------------------------------
> Fix-ups for MTTCG regressions for 2.9
>
> This is the same as v3 posted a few days ago except with a few extra
> Reviewed-by tags added.
>

Applied, thanks.

-- PMM