[Qemu-devel] [PULL 00/10] linux-user update for 2.11

riku.voipio@linaro.org posted 10 patches 6 years, 6 months ago
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/cover.1508329282.git.riku.voipio@linaro.org
Test checkpatch failed
Test docker passed
Test s390x passed
accel/tcg/translate-all.c   |  2 +-
linux-user/arm/target_cpu.h |  4 ++++
linux-user/elfload.c        |  2 +-
linux-user/main.c           | 45 ++++++++++++++++++++++++++++++++-------------
linux-user/signal.c         | 43 +++++++++++++++++++++++++++++++++++++++++++
linux-user/strace.c         |  4 ++++
linux-user/syscall.c        |  4 +++-
linux-user/syscall_defs.h   | 43 +++++++++++++++++++++++++++++++++++++------
target/mips/mips-defs.h     |  6 +++++-
target/nios2/cpu.h          |  6 +++++-
target/sh4/cpu.h            |  6 +++++-
11 files changed, 140 insertions(+), 25 deletions(-)
[Qemu-devel] [PULL 00/10] linux-user update for 2.11
Posted by riku.voipio@linaro.org 6 years, 6 months ago
From: Riku Voipio <riku.voipio@linaro.org>

The following changes since commit 40a1e8ac2e10155b5df13a2508ac080b00cd7e23:

  Merge remote-tracking branch 'remotes/elmarco/tags/vu-pull-request' into staging (2017-10-16 10:22:39 +0100)

are available in the git repository at:

  git://git.linaro.org/people/riku.voipio/qemu.git tags/pull-linux-user-20171018

for you to fetch changes up to f443e3960d9d3340dd286e5fc0b661bb165a8b22:

  linux-user: Fix TARGET_MTIOCTOP/MTIOCGET/MTIOCPOS values (2017-10-17 22:24:02 +0300)

----------------------------------------------------------------
Linux-user updates for Qemu 2.11

----------------------------------------------------------------
Alex Bennée (1):
      linux-user/main: support dfilter

Carlo Marcelo Arenas Belón (1):
      linux-user: remove duplicate break in syscall

Laurent Vivier (1):
      target/m68k,linux-user: manage FP registers in ucontext

Peter Maydell (3):
      linux-user: Allow -R values up to 0xffff0000 for 32-bit ARM guests
      linux-user: Fix target FS_IOC_GETFLAGS and FS_IOC_SETFLAGS numbers
      linux-user: Fix TARGET_MTIOCTOP/MTIOCGET/MTIOCPOS values

Richard Henderson (3):
      tcg: Fix off-by-one in assert in page_set_flags
      linux-user: Tidy and enforce reserved_va initialization
      linux-user/sh4: Reduce TARGET_VIRT_ADDR_SPACE_BITS to 31

Riku Voipio (1):
      linux-user: fix O_TMPFILE handling

 accel/tcg/translate-all.c   |  2 +-
 linux-user/arm/target_cpu.h |  4 ++++
 linux-user/elfload.c        |  2 +-
 linux-user/main.c           | 45 ++++++++++++++++++++++++++++++++-------------
 linux-user/signal.c         | 43 +++++++++++++++++++++++++++++++++++++++++++
 linux-user/strace.c         |  4 ++++
 linux-user/syscall.c        |  4 +++-
 linux-user/syscall_defs.h   | 43 +++++++++++++++++++++++++++++++++++++------
 target/mips/mips-defs.h     |  6 +++++-
 target/nios2/cpu.h          |  6 +++++-
 target/sh4/cpu.h            |  6 +++++-
 11 files changed, 140 insertions(+), 25 deletions(-)


Re: [Qemu-devel] [PULL 00/10] linux-user update for 2.11
Posted by Peter Maydell 6 years, 6 months ago
On 18 October 2017 at 13:33,  <riku.voipio@linaro.org> wrote:
> From: Riku Voipio <riku.voipio@linaro.org>
>
> The following changes since commit 40a1e8ac2e10155b5df13a2508ac080b00cd7e23:
>
>   Merge remote-tracking branch 'remotes/elmarco/tags/vu-pull-request' into staging (2017-10-16 10:22:39 +0100)
>
> are available in the git repository at:
>
>   git://git.linaro.org/people/riku.voipio/qemu.git tags/pull-linux-user-20171018
>
> for you to fetch changes up to f443e3960d9d3340dd286e5fc0b661bb165a8b22:
>
>   linux-user: Fix TARGET_MTIOCTOP/MTIOCGET/MTIOCPOS values (2017-10-17 22:24:02 +0300)
>
> ----------------------------------------------------------------
> Linux-user updates for Qemu 2.11
>
> ----------------------------------------------------------------
Applied, thanks.

-- PMM

Re: [Qemu-devel] [PULL 00/10] linux-user update for 2.11
Posted by no-reply@patchew.org 6 years, 6 months ago
Hi,

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

Type: series
Message-id: cover.1508329282.git.riku.voipio@linaro.org
Subject: [Qemu-devel] [PULL 00/10] linux-user update for 2.11

=== TEST SCRIPT BEGIN ===
#!/bin/bash

BASE=base
n=1
total=$(git log --oneline $BASE.. | wc -l)
failed=0

git config --local diff.renamelimit 0
git config --local diff.renames True

commits="$(git log --format=%H --reverse $BASE..)"
for c in $commits; do
    echo "Checking PATCH $n/$total: $(git log -n 1 --format=%s $c)..."
    if ! git show $c --format=email | ./scripts/checkpatch.pl --mailback -; then
        failed=1
        echo
    fi
    n=$((n+1))
done

exit $failed
=== TEST SCRIPT END ===

Updating 3c8cf5a9c21ff8782164d1def7f44bd888713384
From https://github.com/patchew-project/qemu
 t [tag update]            patchew/20171018140620.25790-1-berrange@redhat.com -> patchew/20171018140620.25790-1-berrange@redhat.com
Switched to a new branch 'test'
9ba15e5f0c Merge remote-tracking branch 'remotes/riku/tags/pull-linux-user-20171018' into staging
e7519f2151 linux-user: Fix TARGET_MTIOCTOP/MTIOCGET/MTIOCPOS values
bc68f37ffa linux-user/main: support dfilter
1ef58810fb linux-user: Fix target FS_IOC_GETFLAGS and FS_IOC_SETFLAGS numbers
63e3b96579 linux-user/sh4: Reduce TARGET_VIRT_ADDR_SPACE_BITS to 31
f4fa750ede linux-user: Tidy and enforce reserved_va initialization
70a7fe548c tcg: Fix off-by-one in assert in page_set_flags
720cebab0f linux-user: Allow -R values up to 0xffff0000 for 32-bit ARM guests
68bc7fd626 linux-user: remove duplicate break in syscall
01f2b8a4e4 target/m68k,linux-user: manage FP registers in ucontext
5aca4e3e12 linux-user: fix O_TMPFILE handling

=== OUTPUT BEGIN ===
Checking PATCH 1/11: linux-user: fix O_TMPFILE handling...
Checking PATCH 2/11: target/m68k,linux-user: manage FP registers in ucontext...
Checking PATCH 3/11: linux-user: remove duplicate break in syscall...
Checking PATCH 4/11: linux-user: Allow -R values up to 0xffff0000 for 32-bit ARM guests...
Checking PATCH 5/11: tcg: Fix off-by-one in assert in page_set_flags...
Checking PATCH 6/11: linux-user: Tidy and enforce reserved_va initialization...
Checking PATCH 7/11: linux-user/sh4: Reduce TARGET_VIRT_ADDR_SPACE_BITS to 31...
Checking PATCH 8/11: linux-user: Fix target FS_IOC_GETFLAGS and FS_IOC_SETFLAGS numbers...
Checking PATCH 9/11: linux-user/main: support dfilter...
ERROR: space required after that ',' (ctx:VxV)
#44: FILE: linux-user/main.c:4075:
+     "range[,...]","filter logging based on address range"},
                   ^

total: 1 errors, 0 warnings, 19 lines checked

Your patch has style problems, please review.  If any of these errors
are false positives report them to the maintainer, see
CHECKPATCH in MAINTAINERS.

Checking PATCH 10/11: linux-user: Fix TARGET_MTIOCTOP/MTIOCGET/MTIOCPOS values...
Checking PATCH 11/11: Merge remote-tracking branch 'remotes/riku/tags/pull-linux-user-20171018' into staging...
=== OUTPUT END ===

Test command exited with code: 1


---
Email generated automatically by Patchew [http://patchew.org/].
Please send your feedback to patchew-devel@freelists.org