[Qemu-devel] [PULL 0/3] M68k next patches

Laurent Vivier posted 3 patches 4 years, 9 months ago
Test docker-clang@ubuntu passed
Test s390x failed
Test asan passed
Test docker-mingw@fedora passed
Test FreeBSD passed
Test checkpatch passed
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20190626162100.24774-1-laurent@vivier.eu
Maintainers: Laurent Vivier <laurent@vivier.eu>, Riku Voipio <riku.voipio@iki.fi>
There is a newer version of this series
linux-user/Makefile.objs            |   1 -
linux-user/m68k-sim.c               | 163 ------------------
linux-user/m68k/cpu_loop.c          |  17 +-
linux-user/m68k/target_syscall.h    |   2 -
linux-user/qemu.h                   |   1 -
target/m68k/cpu-qom.h               |   2 +-
target/m68k/cpu.c                   |   6 +-
target/m68k/cpu.h                   |  29 ++--
target/m68k/fpu_helper.c            |   6 +-
target/m68k/gdbstub.c               |   9 +-
target/m68k/helper.c                |  16 +-
target/m68k/m68k-semi.c             |  24 ++-
target/m68k/op_helper.c             |  58 ++++---
target/m68k/softfloat.c             | 181 ++++++++++----------
target/m68k/softfloat.h             |   3 +-
target/m68k/softfloat_fpsp_tables.h |   3 +-
target/m68k/translate.c             | 246 ++++++++++++++++++----------
17 files changed, 356 insertions(+), 411 deletions(-)
delete mode 100644 linux-user/m68k-sim.c
[Qemu-devel] [PULL 0/3] M68k next patches
Posted by Laurent Vivier 4 years, 9 months ago
The following changes since commit 474f3938d79ab36b9231c9ad3b5a9314c2aeacde:

  Merge remote-tracking branch 'remotes/amarkovic/tags/mips-queue-jun-21-2019' into staging (2019-06-21 15:40:50 +0100)

are available in the Git repository at:

  git://github.com/vivier/qemu-m68k.git tags/m68k-next-pull-request

for you to fetch changes up to c6d0700f57b2c50229a27e31b9f99056a011215f:

  linux-user/m68k: remove simulator syscall interface (2019-06-26 17:14:41 +0200)

----------------------------------------------------------------
remove m68k simulator syscall interface
Fix comments format
Fix gdbstub

----------------------------------------------------------------

Laurent Vivier (1):
  linux-user/m68k: remove simulator syscall interface

Lucien Murray-Pitts (2):
  The m68k gdbstub SR reg request doesnt include Condition-Codes
  m68k comments break patch submission due to being incorrectly
    formatted

 linux-user/Makefile.objs            |   1 -
 linux-user/m68k-sim.c               | 163 ------------------
 linux-user/m68k/cpu_loop.c          |  17 +-
 linux-user/m68k/target_syscall.h    |   2 -
 linux-user/qemu.h                   |   1 -
 target/m68k/cpu-qom.h               |   2 +-
 target/m68k/cpu.c                   |   6 +-
 target/m68k/cpu.h                   |  29 ++--
 target/m68k/fpu_helper.c            |   6 +-
 target/m68k/gdbstub.c               |   9 +-
 target/m68k/helper.c                |  16 +-
 target/m68k/m68k-semi.c             |  24 ++-
 target/m68k/op_helper.c             |  58 ++++---
 target/m68k/softfloat.c             | 181 ++++++++++----------
 target/m68k/softfloat.h             |   3 +-
 target/m68k/softfloat_fpsp_tables.h |   3 +-
 target/m68k/translate.c             | 246 ++++++++++++++++++----------
 17 files changed, 356 insertions(+), 411 deletions(-)
 delete mode 100644 linux-user/m68k-sim.c

-- 
2.21.0


Re: [Qemu-devel] [PULL 0/3] M68k next patches
Posted by no-reply@patchew.org 4 years, 9 months ago
Patchew URL: https://patchew.org/QEMU/20190626162100.24774-1-laurent@vivier.eu/



Hi,

This series failed build test on s390x host. Please find the details below.

=== TEST SCRIPT BEGIN ===
#!/bin/bash
# Testing script will be invoked under the git checkout with
# HEAD pointing to a commit that has the patches applied on top of "base"
# branch
set -e
CC=$HOME/bin/cc
INSTALL=$PWD/install
BUILD=$PWD/build
mkdir -p $BUILD $INSTALL
SRC=$PWD
cd $BUILD
$SRC/configure --cc=$CC --prefix=$INSTALL
make -j4
# XXX: we need reliable clean up
# make check -j4 V=1
make install

echo
echo "=== ENV ==="
env

echo
echo "=== PACKAGES ==="
rpm -qa
=== TEST SCRIPT END ===




The full log is available at
http://patchew.org/logs/20190626162100.24774-1-laurent@vivier.eu/testing.s390x/?type=message.
---
Email generated automatically by Patchew [https://patchew.org/].
Please send your feedback to patchew-devel@redhat.com
Re: [Qemu-devel] [PULL 0/3] M68k next patches
Posted by Peter Maydell 4 years, 9 months ago
On Wed, 26 Jun 2019 at 17:42, Laurent Vivier <laurent@vivier.eu> wrote:
>
> The following changes since commit 474f3938d79ab36b9231c9ad3b5a9314c2aeacde:
>
>   Merge remote-tracking branch 'remotes/amarkovic/tags/mips-queue-jun-21-2019' into staging (2019-06-21 15:40:50 +0100)
>
> are available in the Git repository at:
>
>   git://github.com/vivier/qemu-m68k.git tags/m68k-next-pull-request
>
> for you to fetch changes up to c6d0700f57b2c50229a27e31b9f99056a011215f:
>
>   linux-user/m68k: remove simulator syscall interface (2019-06-26 17:14:41 +0200)
>
> ----------------------------------------------------------------
> remove m68k simulator syscall interface
> Fix comments format
> Fix gdbstub
>


Applied, thanks.

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

-- PMM