[Qemu-devel] [PATCH for 2.13 00/19] linux-user: move arch specific parts from main.c to arch directories

Laurent Vivier posted 19 patches 6 years ago
Patches applied successfully (tree, apply log)
git fetch https://github.com/patchew-project/qemu tags/patchew/20180326191603.10217-1-laurent@vivier.eu
Test checkpatch failed
Test docker-build@min-glib failed
Test docker-mingw@fedora passed
Test docker-quick@centos6 failed
Test s390x passed
There is a newer version of this series
linux-user/Makefile.objs         |    3 +-
linux-user/aarch64/cpu_loop.c    |  182 ++
linux-user/alpha/cpu_loop.c      |  225 ++
linux-user/arm/cpu_loop.c        |  456 ++++
linux-user/cpu_loop-common.h     |   37 +
linux-user/cris/cpu_loop.c       |  115 +
linux-user/hppa/cpu_loop.c       |  211 ++
linux-user/i386/cpu_loop.c       |  369 ++++
linux-user/m68k/cpu_loop.c       |  170 ++
linux-user/main.c                | 4439 +-------------------------------------
linux-user/microblaze/cpu_loop.c |  176 ++
linux-user/mips/cpu_loop.c       |  749 +++++++
linux-user/mips64/cpu_loop.c     |   20 +
linux-user/nios2/cpu_loop.c      |  152 ++
linux-user/openrisc/cpu_loop.c   |  115 +
linux-user/ppc/cpu_loop.c        |  579 +++++
linux-user/riscv/cpu_loop.c      |  118 +
linux-user/s390x/cpu_loop.c      |  165 ++
linux-user/sh4/cpu_loop.c        |  111 +
linux-user/sparc/cpu_loop.c      |  306 +++
linux-user/sparc64/cpu_loop.c    |   20 +
linux-user/tilegx/cpu_loop.c     |  286 +++
linux-user/x86_64/cpu_loop.c     |   20 +
linux-user/xtensa/cpu_loop.c     |  264 +++
24 files changed, 4904 insertions(+), 4384 deletions(-)
create mode 100644 linux-user/aarch64/cpu_loop.c
create mode 100644 linux-user/alpha/cpu_loop.c
create mode 100644 linux-user/arm/cpu_loop.c
create mode 100644 linux-user/cpu_loop-common.h
create mode 100644 linux-user/cris/cpu_loop.c
create mode 100644 linux-user/hppa/cpu_loop.c
create mode 100644 linux-user/i386/cpu_loop.c
create mode 100644 linux-user/m68k/cpu_loop.c
create mode 100644 linux-user/microblaze/cpu_loop.c
create mode 100644 linux-user/mips/cpu_loop.c
create mode 100644 linux-user/mips64/cpu_loop.c
create mode 100644 linux-user/nios2/cpu_loop.c
create mode 100644 linux-user/openrisc/cpu_loop.c
create mode 100644 linux-user/ppc/cpu_loop.c
create mode 100644 linux-user/riscv/cpu_loop.c
create mode 100644 linux-user/s390x/cpu_loop.c
create mode 100644 linux-user/sh4/cpu_loop.c
create mode 100644 linux-user/sparc/cpu_loop.c
create mode 100644 linux-user/sparc64/cpu_loop.c
create mode 100644 linux-user/tilegx/cpu_loop.c
create mode 100644 linux-user/x86_64/cpu_loop.c
create mode 100644 linux-user/xtensa/cpu_loop.c
[Qemu-devel] [PATCH for 2.13 00/19] linux-user: move arch specific parts from main.c to arch directories
Posted by Laurent Vivier 6 years ago
This series moves from main.c the architecture specific parts
to the architecture directory.

This is the continuation of my series
  "linux-user: move arch specific parts to arch directories"
that includes since the v2 only the signal.c parts.

For each architecture, there are two parts:

  - cpu_loop(), and the function with its
    dependencies is moved to <arch>/cpu_loop.c

  - the prologue of the cpu_loop(), that was inlined
    in main(). We move it to a new function in
    <arch>/cpu_loop.c, target_cpu_copy_regs().

The first patch adds the skeleton to move the
parts to the architecture directories, a cpu_loop.c
file with an empty target_cpu_copy_regs() function,
called from main().

There is no change in the code.

Based-on: <20180323225739.17329-1-laurent@vivier.eu>
"[PATCH for 2.13 v2 00/20] linux-user: move arch specific parts to arch directories"

Laurent Vivier (19):
  linux-user: create a dummy per arch cpu_loop.c
  linux-user: move i386/x86_64 cpu loop to i386 directory
  linux-user: move aarch64 cpu loop to aarch64 directory
  linux-user: move arm cpu loop to arm directory
  linux-user: move sparc/sparc64 cpu loop to sparc directory
  linux-user: move ppc/ppc64 cpu loop to ppc directory
  linux-user: move mips/mips64 cpu loop to mips directory
  linux-user: move nios2 cpu loop to nios2 directory
  linux-user: move openrisc cpu loop to openrisc directory
  linux-user: move sh4 cpu loop to sh4 directory
  linux-user: move cris cpu loop to cris directory
  linux-user: move microblaze cpu loop to microblaze directory
  linux-user: move m68k cpu loop to m68k directory
  linux-user: move alpha cpu loop to alpha directory
  linux-user: move s390x cpu loop to s390x directory
  linux-user: move tilegx cpu loop to tilegx directory
  linux-user: move riscv cpu loop to riscv directory
  linux-user: move hppa cpu loop to hppa directory
  linux-user: move xtensa cpu loop to xtensa directory

 linux-user/Makefile.objs         |    3 +-
 linux-user/aarch64/cpu_loop.c    |  182 ++
 linux-user/alpha/cpu_loop.c      |  225 ++
 linux-user/arm/cpu_loop.c        |  456 ++++
 linux-user/cpu_loop-common.h     |   37 +
 linux-user/cris/cpu_loop.c       |  115 +
 linux-user/hppa/cpu_loop.c       |  211 ++
 linux-user/i386/cpu_loop.c       |  369 ++++
 linux-user/m68k/cpu_loop.c       |  170 ++
 linux-user/main.c                | 4439 +-------------------------------------
 linux-user/microblaze/cpu_loop.c |  176 ++
 linux-user/mips/cpu_loop.c       |  749 +++++++
 linux-user/mips64/cpu_loop.c     |   20 +
 linux-user/nios2/cpu_loop.c      |  152 ++
 linux-user/openrisc/cpu_loop.c   |  115 +
 linux-user/ppc/cpu_loop.c        |  579 +++++
 linux-user/riscv/cpu_loop.c      |  118 +
 linux-user/s390x/cpu_loop.c      |  165 ++
 linux-user/sh4/cpu_loop.c        |  111 +
 linux-user/sparc/cpu_loop.c      |  306 +++
 linux-user/sparc64/cpu_loop.c    |   20 +
 linux-user/tilegx/cpu_loop.c     |  286 +++
 linux-user/x86_64/cpu_loop.c     |   20 +
 linux-user/xtensa/cpu_loop.c     |  264 +++
 24 files changed, 4904 insertions(+), 4384 deletions(-)
 create mode 100644 linux-user/aarch64/cpu_loop.c
 create mode 100644 linux-user/alpha/cpu_loop.c
 create mode 100644 linux-user/arm/cpu_loop.c
 create mode 100644 linux-user/cpu_loop-common.h
 create mode 100644 linux-user/cris/cpu_loop.c
 create mode 100644 linux-user/hppa/cpu_loop.c
 create mode 100644 linux-user/i386/cpu_loop.c
 create mode 100644 linux-user/m68k/cpu_loop.c
 create mode 100644 linux-user/microblaze/cpu_loop.c
 create mode 100644 linux-user/mips/cpu_loop.c
 create mode 100644 linux-user/mips64/cpu_loop.c
 create mode 100644 linux-user/nios2/cpu_loop.c
 create mode 100644 linux-user/openrisc/cpu_loop.c
 create mode 100644 linux-user/ppc/cpu_loop.c
 create mode 100644 linux-user/riscv/cpu_loop.c
 create mode 100644 linux-user/s390x/cpu_loop.c
 create mode 100644 linux-user/sh4/cpu_loop.c
 create mode 100644 linux-user/sparc/cpu_loop.c
 create mode 100644 linux-user/sparc64/cpu_loop.c
 create mode 100644 linux-user/tilegx/cpu_loop.c
 create mode 100644 linux-user/x86_64/cpu_loop.c
 create mode 100644 linux-user/xtensa/cpu_loop.c

-- 
2.14.3


Re: [Qemu-devel] [PATCH for 2.13 00/19] linux-user: move arch specific parts from main.c to arch directories
Posted by Richard Henderson 6 years ago
On 03/27/2018 03:15 AM, Laurent Vivier wrote:
> This series moves from main.c the architecture specific parts
> to the architecture directory.
> 
> This is the continuation of my series
>   "linux-user: move arch specific parts to arch directories"
> that includes since the v2 only the signal.c parts.
> 
> For each architecture, there are two parts:
> 
>   - cpu_loop(), and the function with its
>     dependencies is moved to <arch>/cpu_loop.c
> 
>   - the prologue of the cpu_loop(), that was inlined
>     in main(). We move it to a new function in
>     <arch>/cpu_loop.c, target_cpu_copy_regs().
> 
> The first patch adds the skeleton to move the
> parts to the architecture directories, a cpu_loop.c
> file with an empty target_cpu_copy_regs() function,
> called from main().
> 
> There is no change in the code.

Reviewed-by: Richard Henderson <richard.henderson@linaro.org>


r~

Re: [Qemu-devel] [PATCH for 2.13 00/19] linux-user: move arch specific parts from main.c to arch directories
Posted by no-reply@patchew.org 6 years ago
Hi,

This series failed docker-build@min-glib build test. Please find the testing commands and
their output below. If you have Docker installed, you can probably reproduce it
locally.

Type: series
Message-id: 20180326191603.10217-1-laurent@vivier.eu
Subject: [Qemu-devel] [PATCH for 2.13 00/19] linux-user: move arch specific parts from main.c to arch directories

=== TEST SCRIPT BEGIN ===
#!/bin/bash
set -e
git submodule update --init dtc
# Let docker tests dump environment info
export SHOW_ENV=1
export J=8
time make docker-test-build@min-glib
=== TEST SCRIPT END ===

Updating 3c8cf5a9c21ff8782164d1def7f44bd888713384
Switched to a new branch 'test'
d838d0884c linux-user: move xtensa cpu loop to xtensa directory
157e471e1c linux-user: move hppa cpu loop to hppa directory
4362a87dfc linux-user: move riscv cpu loop to riscv directory
1ab6abf535 linux-user: move tilegx cpu loop to tilegx directory
cc7eb94eb9 linux-user: move s390x cpu loop to s390x directory
e0ecb64bf2 linux-user: move alpha cpu loop to alpha directory
63e634fd01 linux-user: move m68k cpu loop to m68k directory
1e17717455 linux-user: move microblaze cpu loop to microblaze directory
fcc4f78baa linux-user: move cris cpu loop to cris directory
15b2f1b2ed linux-user: move sh4 cpu loop to sh4 directory
4b5b3bb95e linux-user: move openrisc cpu loop to openrisc directory
3841817f4b linux-user: move nios2 cpu loop to nios2 directory
070b3adbf6 linux-user: move mips/mips64 cpu loop to mips directory
6c84dc53d8 linux-user: move ppc/ppc64 cpu loop to ppc directory
65e7ef0b72 linux-user: move sparc/sparc64 cpu loop to sparc directory
8ed14325e0 linux-user: move arm cpu loop to arm directory
259f5f72ab linux-user: move aarch64 cpu loop to aarch64 directory
5cd4072a66 linux-user: move i386/x86_64 cpu loop to i386 directory
ac82cae660 linux-user: create a dummy per arch cpu_loop.c

=== OUTPUT BEGIN ===
Submodule 'dtc' (git://git.qemu-project.org/dtc.git) registered for path 'dtc'
Cloning into '/var/tmp/patchew-tester-tmp-8eeao1hj/src/dtc'...
Submodule path 'dtc': checked out 'e54388015af1fb4bf04d0bca99caba1074d9cc42'
  BUILD   min-glib
make[1]: Entering directory '/var/tmp/patchew-tester-tmp-8eeao1hj/src'
  GEN     /var/tmp/patchew-tester-tmp-8eeao1hj/src/docker-src.2018-03-31-02.40.42.32631/qemu.tar
Cloning into '/var/tmp/patchew-tester-tmp-8eeao1hj/src/docker-src.2018-03-31-02.40.42.32631/qemu.tar.vroot'...
done.
Checking out files:  44% (2738/6110)   
Checking out files:  45% (2750/6110)   
Checking out files:  46% (2811/6110)   
Checking out files:  47% (2872/6110)   
Checking out files:  48% (2933/6110)   
Checking out files:  49% (2994/6110)   
Checking out files:  50% (3055/6110)   
Checking out files:  51% (3117/6110)   
Checking out files:  52% (3178/6110)   
Checking out files:  53% (3239/6110)   
Checking out files:  54% (3300/6110)   
Checking out files:  55% (3361/6110)   
Checking out files:  56% (3422/6110)   
Checking out files:  57% (3483/6110)   
Checking out files:  58% (3544/6110)   
Checking out files:  59% (3605/6110)   
Checking out files:  60% (3666/6110)   
Checking out files:  61% (3728/6110)   
Checking out files:  62% (3789/6110)   
Checking out files:  63% (3850/6110)   
Checking out files:  64% (3911/6110)   
Checking out files:  65% (3972/6110)   
Checking out files:  66% (4033/6110)   
Checking out files:  67% (4094/6110)   
Checking out files:  68% (4155/6110)   
Checking out files:  69% (4216/6110)   
Checking out files:  70% (4277/6110)   
Checking out files:  71% (4339/6110)   
Checking out files:  71% (4348/6110)   
Checking out files:  72% (4400/6110)   
Checking out files:  73% (4461/6110)   
Checking out files:  74% (4522/6110)   
Checking out files:  75% (4583/6110)   
Checking out files:  76% (4644/6110)   
Checking out files:  77% (4705/6110)   
Checking out files:  78% (4766/6110)   
Checking out files:  79% (4827/6110)   
Checking out files:  80% (4888/6110)   
Checking out files:  81% (4950/6110)   
Checking out files:  82% (5011/6110)   
Checking out files:  83% (5072/6110)   
Checking out files:  84% (5133/6110)   
Checking out files:  85% (5194/6110)   
Checking out files:  86% (5255/6110)   
Checking out files:  87% (5316/6110)   
Checking out files:  88% (5377/6110)   
Checking out files:  89% (5438/6110)   
Checking out files:  90% (5499/6110)   
Checking out files:  91% (5561/6110)   
Checking out files:  92% (5622/6110)   
Checking out files:  93% (5683/6110)   
Checking out files:  94% (5744/6110)   
Checking out files:  95% (5805/6110)   
Checking out files:  96% (5866/6110)   
Checking out files:  97% (5927/6110)   
Checking out files:  98% (5988/6110)   
Checking out files:  99% (6049/6110)   
Checking out files: 100% (6110/6110)   
Checking out files: 100% (6110/6110), done.
Your branch is up-to-date with 'origin/test'.
Submodule 'dtc' (git://git.qemu-project.org/dtc.git) registered for path 'dtc'
Cloning into '/var/tmp/patchew-tester-tmp-8eeao1hj/src/docker-src.2018-03-31-02.40.42.32631/qemu.tar.vroot/dtc'...
Submodule path 'dtc': checked out 'e54388015af1fb4bf04d0bca99caba1074d9cc42'
Submodule 'ui/keycodemapdb' (git://git.qemu.org/keycodemapdb.git) registered for path 'ui/keycodemapdb'
Cloning into '/var/tmp/patchew-tester-tmp-8eeao1hj/src/docker-src.2018-03-31-02.40.42.32631/qemu.tar.vroot/ui/keycodemapdb'...
Submodule path 'ui/keycodemapdb': checked out '6b3d716e2b6472eb7189d3220552280ef3d832ce'
tar: /var/tmp/patchew-tester-tmp-8eeao1hj/src/docker-src.2018-03-31-02.40.42.32631/qemu.tar: Wrote only 2048 of 10240 bytes
tar: Error is not recoverable: exiting now
failed to create tar file
  COPY    RUNNER
    RUN test-build in qemu:min-glib 
tar: Unexpected EOF in archive
tar: rmtlseek not stopped at a record boundary
tar: Error is not recoverable: exiting now
/var/tmp/qemu/run: line 32: prep_fail: command not found
Environment variables:
HOSTNAME=bc2f2396c6e7
MAKEFLAGS= -j8
J=8
CCACHE_DIR=/var/tmp/ccache
EXTRA_CONFIGURE_OPTS=
V=
SHOW_ENV=1
PATH=/usr/lib/ccache:/usr/lib64/ccache:/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin
PWD=/
TARGET_LIST=
SHLVL=1
HOME=/root
TEST_DIR=/tmp/qemu-test
FEATURES= dtc
DEBUG=
_=/usr/bin/env

Configure options:
--enable-werror --target-list=x86_64-softmmu,aarch64-softmmu --prefix=/tmp/qemu-test/install

ERROR: DTC (libfdt) version >= 1.4.2 not present.
       Please install the DTC (libfdt) devel package

Traceback (most recent call last):
  File "./tests/docker/docker.py", line 407, in <module>
    sys.exit(main())
  File "./tests/docker/docker.py", line 404, in main
    return args.cmdobj.run(args, argv)
  File "./tests/docker/docker.py", line 261, in run
    return Docker().run(argv, args.keep, quiet=args.quiet)
  File "./tests/docker/docker.py", line 229, in run
    quiet=quiet)
  File "./tests/docker/docker.py", line 147, in _do_check
    return subprocess.check_call(self._command + cmd, **kwargs)
  File "/usr/lib64/python2.7/subprocess.py", line 186, in check_call
    raise CalledProcessError(retcode, cmd)
subprocess.CalledProcessError: Command '['docker', 'run', '--label', 'com.qemu.instance.uuid=79d1385034ae11e89e7652540069c830', '-u', '0', '--security-opt', 'seccomp=unconfined', '--rm', '--net=none', '-e', 'TARGET_LIST=', '-e', 'EXTRA_CONFIGURE_OPTS=', '-e', 'V=', '-e', 'J=8', '-e', 'DEBUG=', '-e', 'SHOW_ENV=1', '-e', 'CCACHE_DIR=/var/tmp/ccache', '-v', '/root/.cache/qemu-docker-ccache:/var/tmp/ccache:z', '-v', '/var/tmp/patchew-tester-tmp-8eeao1hj/src/docker-src.2018-03-31-02.40.42.32631:/var/tmp/qemu:z,ro', 'qemu:min-glib', '/var/tmp/qemu/run', 'test-build']' returned non-zero exit status 1
make[1]: *** [tests/docker/Makefile.include:129: docker-run] Error 1
make[1]: Leaving directory '/var/tmp/patchew-tester-tmp-8eeao1hj/src'
make: *** [tests/docker/Makefile.include:163: docker-run-test-build@min-glib] Error 2

real	0m48.974s
user	0m9.519s
sys	0m6.788s
=== OUTPUT END ===

Test command exited with code: 2


---
Email generated automatically by Patchew [http://patchew.org/].
Please send your feedback to patchew-devel@redhat.com
Re: [Qemu-devel] [PATCH for 2.13 00/19] linux-user: move arch specific parts from main.c to arch directories
Posted by no-reply@patchew.org 6 years ago
Hi,

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

Type: series
Message-id: 20180326191603.10217-1-laurent@vivier.eu
Subject: [Qemu-devel] [PATCH for 2.13 00/19] linux-user: move arch specific parts from main.c to arch directories

=== 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
git config --local diff.algorithm histogram

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
 * [new tag]               patchew/1522124046-34596-1-git-send-email-jianjay.zhou@huawei.com -> patchew/1522124046-34596-1-git-send-email-jianjay.zhou@huawei.com
 * [new tag]               patchew/1522128840-498-1-git-send-email-cota@braap.org -> patchew/1522128840-498-1-git-send-email-cota@braap.org
 * [new tag]               patchew/1522160122-10744-1-git-send-email-eric.auger@redhat.com -> patchew/1522160122-10744-1-git-send-email-eric.auger@redhat.com
 * [new tag]               patchew/1522163370-18544-1-git-send-email-thuth@redhat.com -> patchew/1522163370-18544-1-git-send-email-thuth@redhat.com
 * [new tag]               patchew/1522180487-22899-1-git-send-email-mjc@sifive.com -> patchew/1522180487-22899-1-git-send-email-mjc@sifive.com
 * [new tag]               patchew/1522180547-22956-1-git-send-email-mjc@sifive.com -> patchew/1522180547-22956-1-git-send-email-mjc@sifive.com
 * [new tag]               patchew/1522186271-27743-1-git-send-email-babu.moger@amd.com -> patchew/1522186271-27743-1-git-send-email-babu.moger@amd.com
 * [new tag]               patchew/1522197746-26020-1-git-send-email-mjc@sifive.com -> patchew/1522197746-26020-1-git-send-email-mjc@sifive.com
 * [new tag]               patchew/1522204637-29589-1-git-send-email-zhenwei.pi@youruncloud.com -> patchew/1522204637-29589-1-git-send-email-zhenwei.pi@youruncloud.com
 * [new tag]               patchew/20180326202039.21070-1-mreitz@redhat.com -> patchew/20180326202039.21070-1-mreitz@redhat.com
 * [new tag]               patchew/20180327013620.1644387-1-eblake@redhat.com -> patchew/20180327013620.1644387-1-eblake@redhat.com
 * [new tag]               patchew/20180327034757.3432-1-richard.henderson@linaro.org -> patchew/20180327034757.3432-1-richard.henderson@linaro.org
 * [new tag]               patchew/20180327043741.7705-1-david@gibson.dropbear.id.au -> patchew/20180327043741.7705-1-david@gibson.dropbear.id.au
 * [new tag]               patchew/20180327045646.21112-1-jsnow@redhat.com -> patchew/20180327045646.21112-1-jsnow@redhat.com
 * [new tag]               patchew/20180327113452.19613-1-dgilbert@redhat.com -> patchew/20180327113452.19613-1-dgilbert@redhat.com
 * [new tag]               patchew/20180327123800.28851-1-sathnaga@linux.vnet.ibm.com -> patchew/20180327123800.28851-1-sathnaga@linux.vnet.ibm.com
 * [new tag]               patchew/20180327144124.32533-1-stefanha@redhat.com -> patchew/20180327144124.32533-1-stefanha@redhat.com
 * [new tag]               patchew/20180327153011.29569-1-marcandre.lureau@redhat.com -> patchew/20180327153011.29569-1-marcandre.lureau@redhat.com
 * [new tag]               patchew/20180327160736.24309-1-marcandre.lureau@redhat.com -> patchew/20180327160736.24309-1-marcandre.lureau@redhat.com
 * [new tag]               patchew/20180327164141.19075-1-famz@redhat.com -> patchew/20180327164141.19075-1-famz@redhat.com
 * [new tag]               patchew/20180327170522.GA2693@flamenco -> patchew/20180327170522.GA2693@flamenco
 * [new tag]               patchew/20180327202152.1799131-1-eblake@redhat.com -> patchew/20180327202152.1799131-1-eblake@redhat.com
 * [new tag]               patchew/20180327210517.1804242-1-eblake@redhat.com -> patchew/20180327210517.1804242-1-eblake@redhat.com
 * [new tag]               patchew/20180328011953.19496-1-tiwei.bie@intel.com -> patchew/20180328011953.19496-1-tiwei.bie@intel.com
 * [new tag]               patchew/20180328022233.13400-1-richard.henderson@linaro.org -> patchew/20180328022233.13400-1-richard.henderson@linaro.org
Switched to a new branch 'test'
d838d0884c linux-user: move xtensa cpu loop to xtensa directory
157e471e1c linux-user: move hppa cpu loop to hppa directory
4362a87dfc linux-user: move riscv cpu loop to riscv directory
1ab6abf535 linux-user: move tilegx cpu loop to tilegx directory
cc7eb94eb9 linux-user: move s390x cpu loop to s390x directory
e0ecb64bf2 linux-user: move alpha cpu loop to alpha directory
63e634fd01 linux-user: move m68k cpu loop to m68k directory
1e17717455 linux-user: move microblaze cpu loop to microblaze directory
fcc4f78baa linux-user: move cris cpu loop to cris directory
15b2f1b2ed linux-user: move sh4 cpu loop to sh4 directory
4b5b3bb95e linux-user: move openrisc cpu loop to openrisc directory
3841817f4b linux-user: move nios2 cpu loop to nios2 directory
070b3adbf6 linux-user: move mips/mips64 cpu loop to mips directory
6c84dc53d8 linux-user: move ppc/ppc64 cpu loop to ppc directory
65e7ef0b72 linux-user: move sparc/sparc64 cpu loop to sparc directory
8ed14325e0 linux-user: move arm cpu loop to arm directory
259f5f72ab linux-user: move aarch64 cpu loop to aarch64 directory
5cd4072a66 linux-user: move i386/x86_64 cpu loop to i386 directory
ac82cae660 linux-user: create a dummy per arch cpu_loop.c

=== OUTPUT BEGIN ===
Checking PATCH 1/19: linux-user: create a dummy per arch cpu_loop.c...
ERROR: braces {} are necessary for all arms of this statement
#168: FILE: linux-user/cpu_loop-common.h:34:
+} while (0)
[...]

total: 1 errors, 0 warnings, 634 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 2/19: linux-user: move i386/x86_64 cpu loop to i386 directory...
ERROR: space required before the open parenthesis '('
#92: FILE: linux-user/i386/cpu_loop.c:91:
+    for(;;) {

ERROR: space required before the open parenthesis '('
#98: FILE: linux-user/i386/cpu_loop.c:97:
+        switch(trapnr) {

ERROR: braces {} are necessary for all arms of this statement
#146: FILE: linux-user/i386/cpu_loop.c:145:
+            if (env->eflags & VM_MASK) {
[...]
+            } else
[...]

ERROR: braces {} are necessary for all arms of this statement
#161: FILE: linux-user/i386/cpu_loop.c:160:
+            if (!(env->error_code & 1))
[...]
+            else
[...]

ERROR: braces {} are necessary for all arms of this statement
#170: FILE: linux-user/i386/cpu_loop.c:169:
+            if (env->eflags & VM_MASK) {
[...]
+            } else
[...]

ERROR: braces {} are necessary for all arms of this statement
#186: FILE: linux-user/i386/cpu_loop.c:185:
+            if (env->eflags & VM_MASK) {
[...]
+            } else
[...]

ERROR: braces {} are necessary for all arms of this statement
#206: FILE: linux-user/i386/cpu_loop.c:205:
+            if (env->eflags & VM_MASK) {
[...]
+            } else
[...]

ERROR: that open brace { should be on the previous line
#233: FILE: linux-user/i386/cpu_loop.c:232:
+                if (sig)
+                  {

WARNING: line over 80 characters
#247: FILE: linux-user/i386/cpu_loop.c:246:
+            EXCP_DUMP(env, "qemu: 0x%08lx: unhandled CPU exception 0x%x - aborting\n",

ERROR: spaces required around that '|' (ctx:VxV)
#307: FILE: linux-user/i386/cpu_loop.c:306:
+                                PROT_READ|PROT_WRITE,
                                          ^

ERROR: spaces required around that '|' (ctx:VxV)
#308: FILE: linux-user/i386/cpu_loop.c:307:
+                                MAP_ANONYMOUS|MAP_PRIVATE, -1, 0);
                                              ^

ERROR: spaces required around that '|' (ctx:VxV)
#336: FILE: linux-user/i386/cpu_loop.c:335:
+                                    PROT_READ|PROT_WRITE,
                                              ^

ERROR: spaces required around that '|' (ctx:VxV)
#337: FILE: linux-user/i386/cpu_loop.c:336:
+                                    MAP_ANONYMOUS|MAP_PRIVATE, -1, 0);
                                                  ^

total: 12 errors, 1 warnings, 720 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 3/19: linux-user: move aarch64 cpu loop to aarch64 directory...
WARNING: line over 80 characters
#141: FILE: linux-user/aarch64/cpu_loop.c:142:
+            EXCP_DUMP(env, "qemu: unhandled CPU exception 0x%x - aborting\n", trapnr);

total: 0 errors, 1 warnings, 289 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 4/19: linux-user: move arm cpu loop to arm directory...
ERROR: braces {} are necessary for all arms of this statement
#172: FILE: linux-user/arm/cpu_loop.c:171:
+        if (get_user_u32(val, addr))
[...]

ERROR: space required before the open parenthesis '('
#217: FILE: linux-user/arm/cpu_loop.c:216:
+    for(;;) {

ERROR: space required before the open parenthesis '('
#223: FILE: linux-user/arm/cpu_loop.c:222:
+        switch(trapnr) {

ERROR: spaces required around that '=' (ctx:VxV)
#245: FILE: linux-user/arm/cpu_loop.c:244:
+                    int arm_fpe=0;
                                ^

ERROR: suspect code indent for conditional statements (20, 22)
#248: FILE: linux-user/arm/cpu_loop.c:247:
+                    if (-rc & float_flag_invalid)
+                      arm_fpe |= BIT_IOC;

ERROR: braces {} are necessary for all arms of this statement
#248: FILE: linux-user/arm/cpu_loop.c:247:
+                    if (-rc & float_flag_invalid)
[...]

ERROR: suspect code indent for conditional statements (20, 22)
#250: FILE: linux-user/arm/cpu_loop.c:249:
+                    if (-rc & float_flag_divbyzero)
+                      arm_fpe |= BIT_DZC;

ERROR: braces {} are necessary for all arms of this statement
#250: FILE: linux-user/arm/cpu_loop.c:249:
+                    if (-rc & float_flag_divbyzero)
[...]

ERROR: suspect code indent for conditional statements (20, 22)
#252: FILE: linux-user/arm/cpu_loop.c:251:
+                    if (-rc & float_flag_overflow)
+                      arm_fpe |= BIT_OFC;

ERROR: braces {} are necessary for all arms of this statement
#252: FILE: linux-user/arm/cpu_loop.c:251:
+                    if (-rc & float_flag_overflow)
[...]

ERROR: suspect code indent for conditional statements (20, 22)
#254: FILE: linux-user/arm/cpu_loop.c:253:
+                    if (-rc & float_flag_underflow)
+                      arm_fpe |= BIT_UFC;

ERROR: braces {} are necessary for all arms of this statement
#254: FILE: linux-user/arm/cpu_loop.c:253:
+                    if (-rc & float_flag_underflow)
[...]

ERROR: suspect code indent for conditional statements (20, 22)
#256: FILE: linux-user/arm/cpu_loop.c:255:
+                    if (-rc & float_flag_inexact)
+                      arm_fpe |= BIT_IXC;

ERROR: braces {} are necessary for all arms of this statement
#256: FILE: linux-user/arm/cpu_loop.c:255:
+                    if (-rc & float_flag_inexact)
[...]

ERROR: do not use C99 // comments
#260: FILE: linux-user/arm/cpu_loop.c:259:
+                    //printf("fpsr 0x%x, arm_fpe 0x%x\n",fpsr,arm_fpe);

ERROR: trailing statements should be on next line
#267: FILE: linux-user/arm/cpu_loop.c:266:
+                      if (arm_fpe & BIT_IXC) info.si_code = TARGET_FPE_FLTRES;

ERROR: braces {} are necessary for all arms of this statement
#267: FILE: linux-user/arm/cpu_loop.c:266:
+                      if (arm_fpe & BIT_IXC) info.si_code = TARGET_FPE_FLTRES;
[...]

ERROR: trailing statements should be on next line
#268: FILE: linux-user/arm/cpu_loop.c:267:
+                      if (arm_fpe & BIT_UFC) info.si_code = TARGET_FPE_FLTUND;

ERROR: braces {} are necessary for all arms of this statement
#268: FILE: linux-user/arm/cpu_loop.c:267:
+                      if (arm_fpe & BIT_UFC) info.si_code = TARGET_FPE_FLTUND;
[...]

ERROR: trailing statements should be on next line
#269: FILE: linux-user/arm/cpu_loop.c:268:
+                      if (arm_fpe & BIT_OFC) info.si_code = TARGET_FPE_FLTOVF;

ERROR: braces {} are necessary for all arms of this statement
#269: FILE: linux-user/arm/cpu_loop.c:268:
+                      if (arm_fpe & BIT_OFC) info.si_code = TARGET_FPE_FLTOVF;
[...]

ERROR: trailing statements should be on next line
#270: FILE: linux-user/arm/cpu_loop.c:269:
+                      if (arm_fpe & BIT_DZC) info.si_code = TARGET_FPE_FLTDIV;

ERROR: braces {} are necessary for all arms of this statement
#270: FILE: linux-user/arm/cpu_loop.c:269:
+                      if (arm_fpe & BIT_DZC) info.si_code = TARGET_FPE_FLTDIV;
[...]

ERROR: trailing statements should be on next line
#271: FILE: linux-user/arm/cpu_loop.c:270:
+                      if (arm_fpe & BIT_IOC) info.si_code = TARGET_FPE_FLTINV;

ERROR: braces {} are necessary for all arms of this statement
#271: FILE: linux-user/arm/cpu_loop.c:270:
+                      if (arm_fpe & BIT_IOC) info.si_code = TARGET_FPE_FLTINV;
[...]

ERROR: suspect code indent for conditional statements (20, 22)
#280: FILE: linux-user/arm/cpu_loop.c:279:
+                    if ((!(fpsr & BIT_IXE)) && (arm_fpe & BIT_IXC))
+                      fpsr |= BIT_IXC;

ERROR: braces {} are necessary for all arms of this statement
#280: FILE: linux-user/arm/cpu_loop.c:279:
+                    if ((!(fpsr & BIT_IXE)) && (arm_fpe & BIT_IXC))
[...]

ERROR: suspect code indent for conditional statements (20, 22)
#282: FILE: linux-user/arm/cpu_loop.c:281:
+                    if ((!(fpsr & BIT_UFE)) && (arm_fpe & BIT_UFC))
+                      fpsr |= BIT_UFC;

ERROR: braces {} are necessary for all arms of this statement
#282: FILE: linux-user/arm/cpu_loop.c:281:
+                    if ((!(fpsr & BIT_UFE)) && (arm_fpe & BIT_UFC))
[...]

ERROR: suspect code indent for conditional statements (20, 22)
#284: FILE: linux-user/arm/cpu_loop.c:283:
+                    if ((!(fpsr & BIT_OFE)) && (arm_fpe & BIT_OFC))
+                      fpsr |= BIT_OFC;

ERROR: braces {} are necessary for all arms of this statement
#284: FILE: linux-user/arm/cpu_loop.c:283:
+                    if ((!(fpsr & BIT_OFE)) && (arm_fpe & BIT_OFC))
[...]

ERROR: suspect code indent for conditional statements (20, 22)
#286: FILE: linux-user/arm/cpu_loop.c:285:
+                    if ((!(fpsr & BIT_DZE)) && (arm_fpe & BIT_DZC))
+                      fpsr |= BIT_DZC;

ERROR: braces {} are necessary for all arms of this statement
#286: FILE: linux-user/arm/cpu_loop.c:285:
+                    if ((!(fpsr & BIT_DZE)) && (arm_fpe & BIT_DZC))
[...]

ERROR: suspect code indent for conditional statements (20, 22)
#288: FILE: linux-user/arm/cpu_loop.c:287:
+                    if ((!(fpsr & BIT_IOE)) && (arm_fpe & BIT_IOC))
+                      fpsr |= BIT_IOC;

ERROR: braces {} are necessary for all arms of this statement
#288: FILE: linux-user/arm/cpu_loop.c:287:
+                    if ((!(fpsr & BIT_IOE)) && (arm_fpe & BIT_IOC))
[...]

ERROR: spaces required around that '=' (ctx:VxV)
#290: FILE: linux-user/arm/cpu_loop.c:289:
+                    ts->fpa.fpsr=fpsr;
                                 ^

ERROR: space prohibited between function name and open parenthesis '('
#330: FILE: linux-user/arm/cpu_loop.c:329:
+                    env->regs[0] = do_arm_semihosting (env);

ERROR: space prohibited after that open parenthesis '('
#339: FILE: linux-user/arm/cpu_loop.c:338:
+                    if ( n > ARM_NR_BASE) {

ERROR: that open brace { should be on the previous line
#402: FILE: linux-user/arm/cpu_loop.c:401:
+                if (sig)
+                  {

ERROR: suspect code indent for conditional statements (12, 14)
#412: FILE: linux-user/arm/cpu_loop.c:411:
+            if (do_kernel_trap(env))
+              goto error;

ERROR: braces {} are necessary for all arms of this statement
#412: FILE: linux-user/arm/cpu_loop.c:411:
+            if (do_kernel_trap(env))
[...]

WARNING: line over 80 characters
#423: FILE: linux-user/arm/cpu_loop.c:422:
+            EXCP_DUMP(env, "qemu: unhandled CPU exception 0x%x - aborting\n", trapnr);

ERROR: space required before the open parenthesis '('
#439: FILE: linux-user/arm/cpu_loop.c:438:
+    for(i = 0; i < 16; i++) {

total: 42 errors, 1 warnings, 889 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 5/19: linux-user: move sparc/sparc64 cpu loop to sparc directory...
ERROR: do not use C99 // comments
#333: FILE: linux-user/sparc/cpu_loop.c:26:
+//#define DEBUG_WIN

ERROR: braces {} are necessary for all arms of this statement
#342: FILE: linux-user/sparc/cpu_loop.c:35:
+    if (index < 8 && env->cwp == env->nwindows - 1)
[...]

ERROR: braces {} are necessary for all arms of this statement
#355: FILE: linux-user/sparc/cpu_loop.c:48:
+    if (sp_ptr & 3)
[...]

ERROR: space required before the open parenthesis '('
#362: FILE: linux-user/sparc/cpu_loop.c:55:
+    for(i = 0; i < 16; i++) {

ERROR: braces {} are necessary for all arms of this statement
#401: FILE: linux-user/sparc/cpu_loop.c:94:
+    if (sp_ptr & 3)
[...]

ERROR: space required before the open parenthesis '('
#408: FILE: linux-user/sparc/cpu_loop.c:101:
+    for(i = 0; i < 16; i++) {

ERROR: braces {} are necessary for all arms of this statement
#415: FILE: linux-user/sparc/cpu_loop.c:108:
+    if (env->cleanwin < env->nwindows - 1)
[...]

ERROR: space required before the open parenthesis '('
#428: FILE: linux-user/sparc/cpu_loop.c:121:
+    for(;;) {

ERROR: braces {} are necessary for all arms of this statement
#432: FILE: linux-user/sparc/cpu_loop.c:125:
+        if (env->wim & (1 << cwp1))
[...]

ERROR: braces {} are necessary for all arms of this statement
#435: FILE: linux-user/sparc/cpu_loop.c:128:
+        if (env->canrestore == 0)
[...]

ERROR: space prohibited between function name and open parenthesis '('
#453: FILE: linux-user/sparc/cpu_loop.c:146:
+void cpu_loop (CPUSPARCState *env)

ERROR: space prohibited between function name and open parenthesis '('
#479: FILE: linux-user/sparc/cpu_loop.c:172:
+            ret = do_syscall (env, env->gregs[1],

ERROR: braces {} are necessary for all arms of this statement
#547: FILE: linux-user/sparc/cpu_loop.c:240:
+                if (trapnr == TT_DFAULT)
[...]
+                else
[...]

ERROR: that open brace { should be on the previous line
#582: FILE: linux-user/sparc/cpu_loop.c:275:
+                if (sig)
+                  {

ERROR: space prohibited between function name and open parenthesis '('
#595: FILE: linux-user/sparc/cpu_loop.c:288:
+            printf ("Unhandled trap: 0x%x\n", trapnr);

ERROR: space prohibited between function name and open parenthesis '('
#599: FILE: linux-user/sparc/cpu_loop.c:292:
+        process_pending_signals (env);

ERROR: space required before the open parenthesis '('
#609: FILE: linux-user/sparc/cpu_loop.c:302:
+    for(i = 0; i < 8; i++)

ERROR: braces {} are necessary for all arms of this statement
#609: FILE: linux-user/sparc/cpu_loop.c:302:
+    for(i = 0; i < 8; i++)
[...]

ERROR: space required before the open parenthesis '('
#611: FILE: linux-user/sparc/cpu_loop.c:304:
+    for(i = 0; i < 8; i++)

ERROR: braces {} are necessary for all arms of this statement
#611: FILE: linux-user/sparc/cpu_loop.c:304:
+    for(i = 0; i < 8; i++)
[...]

total: 20 errors, 0 warnings, 597 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 6/19: linux-user: move ppc/ppc64 cpu loop to ppc directory...
ERROR: space prohibited between function name and open parenthesis '('
#626: FILE: linux-user/ppc/cpu_loop.c:50:
+__attribute__ (( alias ("cpu_ppc_load_tbu") ));

ERROR: space prohibited after that open parenthesis '('
#626: FILE: linux-user/ppc/cpu_loop.c:50:
+__attribute__ (( alias ("cpu_ppc_load_tbu") ));

ERROR: space prohibited before that close parenthesis ')'
#626: FILE: linux-user/ppc/cpu_loop.c:50:
+__attribute__ (( alias ("cpu_ppc_load_tbu") ));

ERROR: space prohibited between function name and open parenthesis '('
#634: FILE: linux-user/ppc/cpu_loop.c:58:
+int ppc_dcr_read (ppc_dcr_t *dcr_env, int dcrn, uint32_t *valp)

ERROR: space prohibited between function name and open parenthesis '('
#639: FILE: linux-user/ppc/cpu_loop.c:63:
+int ppc_dcr_write (ppc_dcr_t *dcr_env, int dcrn, uint32_t val)

ERROR: trailing statements should be on next line
#666: FILE: linux-user/ppc/cpu_loop.c:90:
+            case 1: segv = get_user_u8(val, addr); break;

ERROR: trailing statements should be on next line
#667: FILE: linux-user/ppc/cpu_loop.c:91:
+            case 2: segv = get_user_u16(val, addr); break;

ERROR: trailing statements should be on next line
#668: FILE: linux-user/ppc/cpu_loop.c:92:
+            case 4: segv = get_user_u32(val, addr); break;

ERROR: trailing statements should be on next line
#670: FILE: linux-user/ppc/cpu_loop.c:94:
+            case 8: segv = get_user_u64(val, addr); break;

ERROR: trailing statements should be on next line
#679: FILE: linux-user/ppc/cpu_loop.c:103:
+            default: abort();

ERROR: trailing statements should be on next line
#684: FILE: linux-user/ppc/cpu_loop.c:108:
+                case 1: segv = put_user_u8(val, addr); break;

ERROR: trailing statements should be on next line
#685: FILE: linux-user/ppc/cpu_loop.c:109:
+                case 2: segv = put_user_u16(val, addr); break;

ERROR: trailing statements should be on next line
#686: FILE: linux-user/ppc/cpu_loop.c:110:
+                case 4: segv = put_user_u32(val, addr); break;

ERROR: trailing statements should be on next line
#688: FILE: linux-user/ppc/cpu_loop.c:112:
+                case 8: segv = put_user_u64(val, addr); break;

ERROR: spaces required around that '+' (ctx:VxV)
#693: FILE: linux-user/ppc/cpu_loop.c:117:
+                            val = env->gpr[reg+1];
                                               ^

ERROR: spaces required around that '+' (ctx:VxV)
#695: FILE: linux-user/ppc/cpu_loop.c:119:
+                            val2 = env->gpr[reg+1];
                                                ^

ERROR: trailing statements should be on next line
#705: FILE: linux-user/ppc/cpu_loop.c:129:
+                default: abort();

ERROR: space required before the open parenthesis '('
#730: FILE: linux-user/ppc/cpu_loop.c:154:
+    for(;;) {

ERROR: space required before the open parenthesis '('
#736: FILE: linux-user/ppc/cpu_loop.c:160:
+        switch(trapnr) {

ERROR: space required before the open parenthesis '('
#1152: FILE: linux-user/ppc/cpu_loop.c:576:
+    for(i = 0; i < 32; i++) {

total: 20 errors, 0 warnings, 1131 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 7/19: linux-user: move mips/mips64 cpu loop to mips directory...
ERROR: Macros with complex values should be enclosed in parenthesis
#775: FILE: linux-user/mips/cpu_loop.c:26:
+#  define MIPS_SYS(name, args) args,

ERROR: code indent should never use tabs
#777: FILE: linux-user/mips/cpu_loop.c:28:
+^IMIPS_SYS(sys_syscall^I, 8)^I/* 4000 */$

ERROR: code indent should never use tabs
#778: FILE: linux-user/mips/cpu_loop.c:29:
+^IMIPS_SYS(sys_exit^I, 1)$

ERROR: code indent should never use tabs
#779: FILE: linux-user/mips/cpu_loop.c:30:
+^IMIPS_SYS(sys_fork^I, 0)$

ERROR: code indent should never use tabs
#780: FILE: linux-user/mips/cpu_loop.c:31:
+^IMIPS_SYS(sys_read^I, 3)$

ERROR: code indent should never use tabs
#781: FILE: linux-user/mips/cpu_loop.c:32:
+^IMIPS_SYS(sys_write^I, 3)$

ERROR: code indent should never use tabs
#782: FILE: linux-user/mips/cpu_loop.c:33:
+^IMIPS_SYS(sys_open^I, 3)^I/* 4005 */$

ERROR: code indent should never use tabs
#783: FILE: linux-user/mips/cpu_loop.c:34:
+^IMIPS_SYS(sys_close^I, 1)$

ERROR: code indent should never use tabs
#784: FILE: linux-user/mips/cpu_loop.c:35:
+^IMIPS_SYS(sys_waitpid^I, 3)$

ERROR: code indent should never use tabs
#785: FILE: linux-user/mips/cpu_loop.c:36:
+^IMIPS_SYS(sys_creat^I, 2)$

ERROR: code indent should never use tabs
#786: FILE: linux-user/mips/cpu_loop.c:37:
+^IMIPS_SYS(sys_link^I, 2)$

ERROR: code indent should never use tabs
#787: FILE: linux-user/mips/cpu_loop.c:38:
+^IMIPS_SYS(sys_unlink^I, 1)^I/* 4010 */$

ERROR: code indent should never use tabs
#788: FILE: linux-user/mips/cpu_loop.c:39:
+^IMIPS_SYS(sys_execve^I, 0)$

ERROR: code indent should never use tabs
#789: FILE: linux-user/mips/cpu_loop.c:40:
+^IMIPS_SYS(sys_chdir^I, 1)$

ERROR: code indent should never use tabs
#790: FILE: linux-user/mips/cpu_loop.c:41:
+^IMIPS_SYS(sys_time^I, 1)$

ERROR: code indent should never use tabs
#791: FILE: linux-user/mips/cpu_loop.c:42:
+^IMIPS_SYS(sys_mknod^I, 3)$

ERROR: code indent should never use tabs
#792: FILE: linux-user/mips/cpu_loop.c:43:
+^IMIPS_SYS(sys_chmod^I, 2)^I/* 4015 */$

ERROR: code indent should never use tabs
#793: FILE: linux-user/mips/cpu_loop.c:44:
+^IMIPS_SYS(sys_lchown^I, 3)$

ERROR: code indent should never use tabs
#794: FILE: linux-user/mips/cpu_loop.c:45:
+^IMIPS_SYS(sys_ni_syscall^I, 0)$

ERROR: code indent should never use tabs
#795: FILE: linux-user/mips/cpu_loop.c:46:
+^IMIPS_SYS(sys_ni_syscall^I, 0)^I/* was sys_stat */$

ERROR: code indent should never use tabs
#796: FILE: linux-user/mips/cpu_loop.c:47:
+^IMIPS_SYS(sys_lseek^I, 3)$

ERROR: code indent should never use tabs
#797: FILE: linux-user/mips/cpu_loop.c:48:
+^IMIPS_SYS(sys_getpid^I, 0)^I/* 4020 */$

ERROR: code indent should never use tabs
#798: FILE: linux-user/mips/cpu_loop.c:49:
+^IMIPS_SYS(sys_mount^I, 5)$

ERROR: code indent should never use tabs
#799: FILE: linux-user/mips/cpu_loop.c:50:
+^IMIPS_SYS(sys_umount^I, 1)$

ERROR: code indent should never use tabs
#800: FILE: linux-user/mips/cpu_loop.c:51:
+^IMIPS_SYS(sys_setuid^I, 1)$

ERROR: code indent should never use tabs
#801: FILE: linux-user/mips/cpu_loop.c:52:
+^IMIPS_SYS(sys_getuid^I, 0)$

ERROR: code indent should never use tabs
#802: FILE: linux-user/mips/cpu_loop.c:53:
+^IMIPS_SYS(sys_stime^I, 1)^I/* 4025 */$

ERROR: code indent should never use tabs
#803: FILE: linux-user/mips/cpu_loop.c:54:
+^IMIPS_SYS(sys_ptrace^I, 4)$

ERROR: code indent should never use tabs
#804: FILE: linux-user/mips/cpu_loop.c:55:
+^IMIPS_SYS(sys_alarm^I, 1)$

ERROR: code indent should never use tabs
#805: FILE: linux-user/mips/cpu_loop.c:56:
+^IMIPS_SYS(sys_ni_syscall^I, 0)^I/* was sys_fstat */$

ERROR: code indent should never use tabs
#806: FILE: linux-user/mips/cpu_loop.c:57:
+^IMIPS_SYS(sys_pause^I, 0)$

ERROR: code indent should never use tabs
#807: FILE: linux-user/mips/cpu_loop.c:58:
+^IMIPS_SYS(sys_utime^I, 2)^I/* 4030 */$

ERROR: code indent should never use tabs
#808: FILE: linux-user/mips/cpu_loop.c:59:
+^IMIPS_SYS(sys_ni_syscall^I, 0)$

ERROR: code indent should never use tabs
#809: FILE: linux-user/mips/cpu_loop.c:60:
+^IMIPS_SYS(sys_ni_syscall^I, 0)$

ERROR: code indent should never use tabs
#810: FILE: linux-user/mips/cpu_loop.c:61:
+^IMIPS_SYS(sys_access^I, 2)$

ERROR: code indent should never use tabs
#811: FILE: linux-user/mips/cpu_loop.c:62:
+^IMIPS_SYS(sys_nice^I, 1)$

ERROR: code indent should never use tabs
#812: FILE: linux-user/mips/cpu_loop.c:63:
+^IMIPS_SYS(sys_ni_syscall^I, 0)^I/* 4035 */$

ERROR: code indent should never use tabs
#813: FILE: linux-user/mips/cpu_loop.c:64:
+^IMIPS_SYS(sys_sync^I, 0)$

ERROR: code indent should never use tabs
#814: FILE: linux-user/mips/cpu_loop.c:65:
+^IMIPS_SYS(sys_kill^I, 2)$

ERROR: code indent should never use tabs
#815: FILE: linux-user/mips/cpu_loop.c:66:
+^IMIPS_SYS(sys_rename^I, 2)$

ERROR: code indent should never use tabs
#816: FILE: linux-user/mips/cpu_loop.c:67:
+^IMIPS_SYS(sys_mkdir^I, 2)$

ERROR: code indent should never use tabs
#817: FILE: linux-user/mips/cpu_loop.c:68:
+^IMIPS_SYS(sys_rmdir^I, 1)^I/* 4040 */$

ERROR: code indent should never use tabs
#818: FILE: linux-user/mips/cpu_loop.c:69:
+^IMIPS_SYS(sys_dup^I^I, 1)$

ERROR: code indent should never use tabs
#819: FILE: linux-user/mips/cpu_loop.c:70:
+^IMIPS_SYS(sys_pipe^I, 0)$

ERROR: code indent should never use tabs
#820: FILE: linux-user/mips/cpu_loop.c:71:
+^IMIPS_SYS(sys_times^I, 1)$

ERROR: code indent should never use tabs
#821: FILE: linux-user/mips/cpu_loop.c:72:
+^IMIPS_SYS(sys_ni_syscall^I, 0)$

ERROR: code indent should never use tabs
#822: FILE: linux-user/mips/cpu_loop.c:73:
+^IMIPS_SYS(sys_brk^I^I, 1)^I/* 4045 */$

ERROR: code indent should never use tabs
#823: FILE: linux-user/mips/cpu_loop.c:74:
+^IMIPS_SYS(sys_setgid^I, 1)$

ERROR: code indent should never use tabs
#824: FILE: linux-user/mips/cpu_loop.c:75:
+^IMIPS_SYS(sys_getgid^I, 0)$

ERROR: code indent should never use tabs
#825: FILE: linux-user/mips/cpu_loop.c:76:
+^IMIPS_SYS(sys_ni_syscall^I, 0)^I/* was signal(2) */$

ERROR: code indent should never use tabs
#826: FILE: linux-user/mips/cpu_loop.c:77:
+^IMIPS_SYS(sys_geteuid^I, 0)$

ERROR: code indent should never use tabs
#827: FILE: linux-user/mips/cpu_loop.c:78:
+^IMIPS_SYS(sys_getegid^I, 0)^I/* 4050 */$

ERROR: code indent should never use tabs
#828: FILE: linux-user/mips/cpu_loop.c:79:
+^IMIPS_SYS(sys_acct^I, 0)$

ERROR: code indent should never use tabs
#829: FILE: linux-user/mips/cpu_loop.c:80:
+^IMIPS_SYS(sys_umount2^I, 2)$

ERROR: code indent should never use tabs
#830: FILE: linux-user/mips/cpu_loop.c:81:
+^IMIPS_SYS(sys_ni_syscall^I, 0)$

ERROR: code indent should never use tabs
#831: FILE: linux-user/mips/cpu_loop.c:82:
+^IMIPS_SYS(sys_ioctl^I, 3)$

ERROR: code indent should never use tabs
#832: FILE: linux-user/mips/cpu_loop.c:83:
+^IMIPS_SYS(sys_fcntl^I, 3)^I/* 4055 */$

ERROR: code indent should never use tabs
#833: FILE: linux-user/mips/cpu_loop.c:84:
+^IMIPS_SYS(sys_ni_syscall^I, 2)$

ERROR: code indent should never use tabs
#834: FILE: linux-user/mips/cpu_loop.c:85:
+^IMIPS_SYS(sys_setpgid^I, 2)$

ERROR: code indent should never use tabs
#835: FILE: linux-user/mips/cpu_loop.c:86:
+^IMIPS_SYS(sys_ni_syscall^I, 0)$

ERROR: code indent should never use tabs
#836: FILE: linux-user/mips/cpu_loop.c:87:
+^IMIPS_SYS(sys_olduname^I, 1)$

ERROR: code indent should never use tabs
#837: FILE: linux-user/mips/cpu_loop.c:88:
+^IMIPS_SYS(sys_umask^I, 1)^I/* 4060 */$

ERROR: code indent should never use tabs
#838: FILE: linux-user/mips/cpu_loop.c:89:
+^IMIPS_SYS(sys_chroot^I, 1)$

ERROR: code indent should never use tabs
#839: FILE: linux-user/mips/cpu_loop.c:90:
+^IMIPS_SYS(sys_ustat^I, 2)$

ERROR: code indent should never use tabs
#840: FILE: linux-user/mips/cpu_loop.c:91:
+^IMIPS_SYS(sys_dup2^I, 2)$

ERROR: code indent should never use tabs
#841: FILE: linux-user/mips/cpu_loop.c:92:
+^IMIPS_SYS(sys_getppid^I, 0)$

ERROR: code indent should never use tabs
#842: FILE: linux-user/mips/cpu_loop.c:93:
+^IMIPS_SYS(sys_getpgrp^I, 0)^I/* 4065 */$

ERROR: code indent should never use tabs
#843: FILE: linux-user/mips/cpu_loop.c:94:
+^IMIPS_SYS(sys_setsid^I, 0)$

ERROR: code indent should never use tabs
#844: FILE: linux-user/mips/cpu_loop.c:95:
+^IMIPS_SYS(sys_sigaction^I, 3)$

ERROR: code indent should never use tabs
#845: FILE: linux-user/mips/cpu_loop.c:96:
+^IMIPS_SYS(sys_sgetmask^I, 0)$

ERROR: code indent should never use tabs
#846: FILE: linux-user/mips/cpu_loop.c:97:
+^IMIPS_SYS(sys_ssetmask^I, 1)$

ERROR: code indent should never use tabs
#847: FILE: linux-user/mips/cpu_loop.c:98:
+^IMIPS_SYS(sys_setreuid^I, 2)^I/* 4070 */$

ERROR: code indent should never use tabs
#848: FILE: linux-user/mips/cpu_loop.c:99:
+^IMIPS_SYS(sys_setregid^I, 2)$

ERROR: code indent should never use tabs
#849: FILE: linux-user/mips/cpu_loop.c:100:
+^IMIPS_SYS(sys_sigsuspend^I, 0)$

ERROR: code indent should never use tabs
#850: FILE: linux-user/mips/cpu_loop.c:101:
+^IMIPS_SYS(sys_sigpending^I, 1)$

ERROR: code indent should never use tabs
#851: FILE: linux-user/mips/cpu_loop.c:102:
+^IMIPS_SYS(sys_sethostname^I, 2)$

ERROR: code indent should never use tabs
#852: FILE: linux-user/mips/cpu_loop.c:103:
+^IMIPS_SYS(sys_setrlimit^I, 2)^I/* 4075 */$

ERROR: code indent should never use tabs
#853: FILE: linux-user/mips/cpu_loop.c:104:
+^IMIPS_SYS(sys_getrlimit^I, 2)$

ERROR: code indent should never use tabs
#854: FILE: linux-user/mips/cpu_loop.c:105:
+^IMIPS_SYS(sys_getrusage^I, 2)$

ERROR: code indent should never use tabs
#855: FILE: linux-user/mips/cpu_loop.c:106:
+^IMIPS_SYS(sys_gettimeofday, 2)$

ERROR: code indent should never use tabs
#856: FILE: linux-user/mips/cpu_loop.c:107:
+^IMIPS_SYS(sys_settimeofday, 2)$

ERROR: code indent should never use tabs
#857: FILE: linux-user/mips/cpu_loop.c:108:
+^IMIPS_SYS(sys_getgroups^I, 2)^I/* 4080 */$

ERROR: code indent should never use tabs
#858: FILE: linux-user/mips/cpu_loop.c:109:
+^IMIPS_SYS(sys_setgroups^I, 2)$

ERROR: code indent should never use tabs
#859: FILE: linux-user/mips/cpu_loop.c:110:
+^IMIPS_SYS(sys_ni_syscall^I, 0)^I/* old_select */$

ERROR: code indent should never use tabs
#860: FILE: linux-user/mips/cpu_loop.c:111:
+^IMIPS_SYS(sys_symlink^I, 2)$

ERROR: code indent should never use tabs
#861: FILE: linux-user/mips/cpu_loop.c:112:
+^IMIPS_SYS(sys_ni_syscall^I, 0)^I/* was sys_lstat */$

ERROR: code indent should never use tabs
#862: FILE: linux-user/mips/cpu_loop.c:113:
+^IMIPS_SYS(sys_readlink^I, 3)^I/* 4085 */$

ERROR: code indent should never use tabs
#863: FILE: linux-user/mips/cpu_loop.c:114:
+^IMIPS_SYS(sys_uselib^I, 1)$

ERROR: code indent should never use tabs
#864: FILE: linux-user/mips/cpu_loop.c:115:
+^IMIPS_SYS(sys_swapon^I, 2)$

ERROR: code indent should never use tabs
#865: FILE: linux-user/mips/cpu_loop.c:116:
+^IMIPS_SYS(sys_reboot^I, 3)$

ERROR: code indent should never use tabs
#866: FILE: linux-user/mips/cpu_loop.c:117:
+^IMIPS_SYS(old_readdir^I, 3)$

ERROR: code indent should never use tabs
#867: FILE: linux-user/mips/cpu_loop.c:118:
+^IMIPS_SYS(old_mmap^I, 6)^I/* 4090 */$

ERROR: code indent should never use tabs
#868: FILE: linux-user/mips/cpu_loop.c:119:
+^IMIPS_SYS(sys_munmap^I, 2)$

ERROR: code indent should never use tabs
#869: FILE: linux-user/mips/cpu_loop.c:120:
+^IMIPS_SYS(sys_truncate^I, 2)$

ERROR: code indent should never use tabs
#870: FILE: linux-user/mips/cpu_loop.c:121:
+^IMIPS_SYS(sys_ftruncate^I, 2)$

ERROR: code indent should never use tabs
#871: FILE: linux-user/mips/cpu_loop.c:122:
+^IMIPS_SYS(sys_fchmod^I, 2)$

ERROR: code indent should never use tabs
#872: FILE: linux-user/mips/cpu_loop.c:123:
+^IMIPS_SYS(sys_fchown^I, 3)^I/* 4095 */$

ERROR: code indent should never use tabs
#873: FILE: linux-user/mips/cpu_loop.c:124:
+^IMIPS_SYS(sys_getpriority^I, 2)$

ERROR: code indent should never use tabs
#874: FILE: linux-user/mips/cpu_loop.c:125:
+^IMIPS_SYS(sys_setpriority^I, 3)$

ERROR: code indent should never use tabs
#875: FILE: linux-user/mips/cpu_loop.c:126:
+^IMIPS_SYS(sys_ni_syscall^I, 0)$

ERROR: code indent should never use tabs
#876: FILE: linux-user/mips/cpu_loop.c:127:
+^IMIPS_SYS(sys_statfs^I, 2)$

ERROR: code indent should never use tabs
#877: FILE: linux-user/mips/cpu_loop.c:128:
+^IMIPS_SYS(sys_fstatfs^I, 2)^I/* 4100 */$

ERROR: code indent should never use tabs
#878: FILE: linux-user/mips/cpu_loop.c:129:
+^IMIPS_SYS(sys_ni_syscall^I, 0)^I/* was ioperm(2) */$

ERROR: code indent should never use tabs
#879: FILE: linux-user/mips/cpu_loop.c:130:
+^IMIPS_SYS(sys_socketcall^I, 2)$

ERROR: code indent should never use tabs
#880: FILE: linux-user/mips/cpu_loop.c:131:
+^IMIPS_SYS(sys_syslog^I, 3)$

ERROR: code indent should never use tabs
#881: FILE: linux-user/mips/cpu_loop.c:132:
+^IMIPS_SYS(sys_setitimer^I, 3)$

ERROR: code indent should never use tabs
#882: FILE: linux-user/mips/cpu_loop.c:133:
+^IMIPS_SYS(sys_getitimer^I, 2)^I/* 4105 */$

ERROR: code indent should never use tabs
#883: FILE: linux-user/mips/cpu_loop.c:134:
+^IMIPS_SYS(sys_newstat^I, 2)$

ERROR: code indent should never use tabs
#884: FILE: linux-user/mips/cpu_loop.c:135:
+^IMIPS_SYS(sys_newlstat^I, 2)$

ERROR: code indent should never use tabs
#885: FILE: linux-user/mips/cpu_loop.c:136:
+^IMIPS_SYS(sys_newfstat^I, 2)$

ERROR: code indent should never use tabs
#886: FILE: linux-user/mips/cpu_loop.c:137:
+^IMIPS_SYS(sys_uname^I, 1)$

ERROR: code indent should never use tabs
#887: FILE: linux-user/mips/cpu_loop.c:138:
+^IMIPS_SYS(sys_ni_syscall^I, 0)^I/* 4110 was iopl(2) */$

ERROR: code indent should never use tabs
#888: FILE: linux-user/mips/cpu_loop.c:139:
+^IMIPS_SYS(sys_vhangup^I, 0)$

ERROR: code indent should never use tabs
#889: FILE: linux-user/mips/cpu_loop.c:140:
+^IMIPS_SYS(sys_ni_syscall^I, 0)^I/* was sys_idle() */$

ERROR: code indent should never use tabs
#890: FILE: linux-user/mips/cpu_loop.c:141:
+^IMIPS_SYS(sys_ni_syscall^I, 0)^I/* was sys_vm86 */$

ERROR: code indent should never use tabs
#891: FILE: linux-user/mips/cpu_loop.c:142:
+^IMIPS_SYS(sys_wait4^I, 4)$

ERROR: code indent should never use tabs
#892: FILE: linux-user/mips/cpu_loop.c:143:
+^IMIPS_SYS(sys_swapoff^I, 1)^I/* 4115 */$

ERROR: code indent should never use tabs
#893: FILE: linux-user/mips/cpu_loop.c:144:
+^IMIPS_SYS(sys_sysinfo^I, 1)$

ERROR: code indent should never use tabs
#894: FILE: linux-user/mips/cpu_loop.c:145:
+^IMIPS_SYS(sys_ipc^I^I, 6)$

ERROR: code indent should never use tabs
#895: FILE: linux-user/mips/cpu_loop.c:146:
+^IMIPS_SYS(sys_fsync^I, 1)$

ERROR: code indent should never use tabs
#896: FILE: linux-user/mips/cpu_loop.c:147:
+^IMIPS_SYS(sys_sigreturn^I, 0)$

ERROR: code indent should never use tabs
#897: FILE: linux-user/mips/cpu_loop.c:148:
+^IMIPS_SYS(sys_clone^I, 6)^I/* 4120 */$

ERROR: code indent should never use tabs
#898: FILE: linux-user/mips/cpu_loop.c:149:
+^IMIPS_SYS(sys_setdomainname, 2)$

ERROR: code indent should never use tabs
#899: FILE: linux-user/mips/cpu_loop.c:150:
+^IMIPS_SYS(sys_newuname^I, 1)$

ERROR: code indent should never use tabs
#900: FILE: linux-user/mips/cpu_loop.c:151:
+^IMIPS_SYS(sys_ni_syscall^I, 0)^I/* sys_modify_ldt */$

ERROR: code indent should never use tabs
#901: FILE: linux-user/mips/cpu_loop.c:152:
+^IMIPS_SYS(sys_adjtimex^I, 1)$

ERROR: code indent should never use tabs
#902: FILE: linux-user/mips/cpu_loop.c:153:
+^IMIPS_SYS(sys_mprotect^I, 3)^I/* 4125 */$

ERROR: code indent should never use tabs
#903: FILE: linux-user/mips/cpu_loop.c:154:
+^IMIPS_SYS(sys_sigprocmask^I, 3)$

ERROR: code indent should never use tabs
#904: FILE: linux-user/mips/cpu_loop.c:155:
+^IMIPS_SYS(sys_ni_syscall^I, 0)^I/* was create_module */$

ERROR: code indent should never use tabs
#905: FILE: linux-user/mips/cpu_loop.c:156:
+^IMIPS_SYS(sys_init_module^I, 5)$

ERROR: code indent should never use tabs
#906: FILE: linux-user/mips/cpu_loop.c:157:
+^IMIPS_SYS(sys_delete_module, 1)$

ERROR: code indent should never use tabs
#907: FILE: linux-user/mips/cpu_loop.c:158:
+^IMIPS_SYS(sys_ni_syscall^I, 0)^I/* 4130^Iwas get_kernel_syms */$

ERROR: code indent should never use tabs
#908: FILE: linux-user/mips/cpu_loop.c:159:
+^IMIPS_SYS(sys_quotactl^I, 0)$

ERROR: code indent should never use tabs
#909: FILE: linux-user/mips/cpu_loop.c:160:
+^IMIPS_SYS(sys_getpgid^I, 1)$

ERROR: code indent should never use tabs
#910: FILE: linux-user/mips/cpu_loop.c:161:
+^IMIPS_SYS(sys_fchdir^I, 1)$

ERROR: code indent should never use tabs
#911: FILE: linux-user/mips/cpu_loop.c:162:
+^IMIPS_SYS(sys_bdflush^I, 2)$

ERROR: code indent should never use tabs
#912: FILE: linux-user/mips/cpu_loop.c:163:
+^IMIPS_SYS(sys_sysfs^I, 3)^I/* 4135 */$

ERROR: code indent should never use tabs
#913: FILE: linux-user/mips/cpu_loop.c:164:
+^IMIPS_SYS(sys_personality^I, 1)$

ERROR: code indent should never use tabs
#914: FILE: linux-user/mips/cpu_loop.c:165:
+^IMIPS_SYS(sys_ni_syscall^I, 0)^I/* for afs_syscall */$

ERROR: code indent should never use tabs
#915: FILE: linux-user/mips/cpu_loop.c:166:
+^IMIPS_SYS(sys_setfsuid^I, 1)$

ERROR: code indent should never use tabs
#916: FILE: linux-user/mips/cpu_loop.c:167:
+^IMIPS_SYS(sys_setfsgid^I, 1)$

ERROR: code indent should never use tabs
#917: FILE: linux-user/mips/cpu_loop.c:168:
+^IMIPS_SYS(sys_llseek^I, 5)^I/* 4140 */$

ERROR: code indent should never use tabs
#918: FILE: linux-user/mips/cpu_loop.c:169:
+^IMIPS_SYS(sys_getdents^I, 3)$

ERROR: code indent should never use tabs
#919: FILE: linux-user/mips/cpu_loop.c:170:
+^IMIPS_SYS(sys_select^I, 5)$

ERROR: code indent should never use tabs
#920: FILE: linux-user/mips/cpu_loop.c:171:
+^IMIPS_SYS(sys_flock^I, 2)$

ERROR: code indent should never use tabs
#921: FILE: linux-user/mips/cpu_loop.c:172:
+^IMIPS_SYS(sys_msync^I, 3)$

ERROR: code indent should never use tabs
#922: FILE: linux-user/mips/cpu_loop.c:173:
+^IMIPS_SYS(sys_readv^I, 3)^I/* 4145 */$

ERROR: code indent should never use tabs
#923: FILE: linux-user/mips/cpu_loop.c:174:
+^IMIPS_SYS(sys_writev^I, 3)$

ERROR: code indent should never use tabs
#924: FILE: linux-user/mips/cpu_loop.c:175:
+^IMIPS_SYS(sys_cacheflush^I, 3)$

ERROR: code indent should never use tabs
#925: FILE: linux-user/mips/cpu_loop.c:176:
+^IMIPS_SYS(sys_cachectl^I, 3)$

ERROR: code indent should never use tabs
#926: FILE: linux-user/mips/cpu_loop.c:177:
+^IMIPS_SYS(sys_sysmips^I, 4)$

ERROR: code indent should never use tabs
#927: FILE: linux-user/mips/cpu_loop.c:178:
+^IMIPS_SYS(sys_ni_syscall^I, 0)^I/* 4150 */$

ERROR: code indent should never use tabs
#928: FILE: linux-user/mips/cpu_loop.c:179:
+^IMIPS_SYS(sys_getsid^I, 1)$

ERROR: code indent should never use tabs
#929: FILE: linux-user/mips/cpu_loop.c:180:
+^IMIPS_SYS(sys_fdatasync^I, 0)$

ERROR: code indent should never use tabs
#930: FILE: linux-user/mips/cpu_loop.c:181:
+^IMIPS_SYS(sys_sysctl^I, 1)$

ERROR: code indent should never use tabs
#931: FILE: linux-user/mips/cpu_loop.c:182:
+^IMIPS_SYS(sys_mlock^I, 2)$

ERROR: code indent should never use tabs
#932: FILE: linux-user/mips/cpu_loop.c:183:
+^IMIPS_SYS(sys_munlock^I, 2)^I/* 4155 */$

ERROR: code indent should never use tabs
#933: FILE: linux-user/mips/cpu_loop.c:184:
+^IMIPS_SYS(sys_mlockall^I, 1)$

ERROR: code indent should never use tabs
#934: FILE: linux-user/mips/cpu_loop.c:185:
+^IMIPS_SYS(sys_munlockall^I, 0)$

ERROR: code indent should never use tabs
#935: FILE: linux-user/mips/cpu_loop.c:186:
+^IMIPS_SYS(sys_sched_setparam, 2)$

ERROR: code indent should never use tabs
#936: FILE: linux-user/mips/cpu_loop.c:187:
+^IMIPS_SYS(sys_sched_getparam, 2)$

ERROR: code indent should never use tabs
#937: FILE: linux-user/mips/cpu_loop.c:188:
+^IMIPS_SYS(sys_sched_setscheduler, 3)^I/* 4160 */$

ERROR: code indent should never use tabs
#938: FILE: linux-user/mips/cpu_loop.c:189:
+^IMIPS_SYS(sys_sched_getscheduler, 1)$

ERROR: code indent should never use tabs
#939: FILE: linux-user/mips/cpu_loop.c:190:
+^IMIPS_SYS(sys_sched_yield^I, 0)$

ERROR: code indent should never use tabs
#940: FILE: linux-user/mips/cpu_loop.c:191:
+^IMIPS_SYS(sys_sched_get_priority_max, 1)$

ERROR: code indent should never use tabs
#941: FILE: linux-user/mips/cpu_loop.c:192:
+^IMIPS_SYS(sys_sched_get_priority_min, 1)$

ERROR: code indent should never use tabs
#942: FILE: linux-user/mips/cpu_loop.c:193:
+^IMIPS_SYS(sys_sched_rr_get_interval, 2)^I/* 4165 */$

ERROR: code indent should never use tabs
#943: FILE: linux-user/mips/cpu_loop.c:194:
+^IMIPS_SYS(sys_nanosleep,^I2)$

ERROR: code indent should never use tabs
#944: FILE: linux-user/mips/cpu_loop.c:195:
+^IMIPS_SYS(sys_mremap^I, 5)$

ERROR: code indent should never use tabs
#945: FILE: linux-user/mips/cpu_loop.c:196:
+^IMIPS_SYS(sys_accept^I, 3)$

ERROR: code indent should never use tabs
#946: FILE: linux-user/mips/cpu_loop.c:197:
+^IMIPS_SYS(sys_bind^I, 3)$

ERROR: code indent should never use tabs
#947: FILE: linux-user/mips/cpu_loop.c:198:
+^IMIPS_SYS(sys_connect^I, 3)^I/* 4170 */$

ERROR: code indent should never use tabs
#948: FILE: linux-user/mips/cpu_loop.c:199:
+^IMIPS_SYS(sys_getpeername^I, 3)$

ERROR: code indent should never use tabs
#949: FILE: linux-user/mips/cpu_loop.c:200:
+^IMIPS_SYS(sys_getsockname^I, 3)$

ERROR: code indent should never use tabs
#950: FILE: linux-user/mips/cpu_loop.c:201:
+^IMIPS_SYS(sys_getsockopt^I, 5)$

ERROR: code indent should never use tabs
#951: FILE: linux-user/mips/cpu_loop.c:202:
+^IMIPS_SYS(sys_listen^I, 2)$

ERROR: code indent should never use tabs
#952: FILE: linux-user/mips/cpu_loop.c:203:
+^IMIPS_SYS(sys_recv^I, 4)^I/* 4175 */$

ERROR: code indent should never use tabs
#953: FILE: linux-user/mips/cpu_loop.c:204:
+^IMIPS_SYS(sys_recvfrom^I, 6)$

ERROR: code indent should never use tabs
#954: FILE: linux-user/mips/cpu_loop.c:205:
+^IMIPS_SYS(sys_recvmsg^I, 3)$

ERROR: code indent should never use tabs
#955: FILE: linux-user/mips/cpu_loop.c:206:
+^IMIPS_SYS(sys_send^I, 4)$

ERROR: code indent should never use tabs
#956: FILE: linux-user/mips/cpu_loop.c:207:
+^IMIPS_SYS(sys_sendmsg^I, 3)$

ERROR: code indent should never use tabs
#957: FILE: linux-user/mips/cpu_loop.c:208:
+^IMIPS_SYS(sys_sendto^I, 6)^I/* 4180 */$

ERROR: code indent should never use tabs
#958: FILE: linux-user/mips/cpu_loop.c:209:
+^IMIPS_SYS(sys_setsockopt^I, 5)$

ERROR: code indent should never use tabs
#959: FILE: linux-user/mips/cpu_loop.c:210:
+^IMIPS_SYS(sys_shutdown^I, 2)$

ERROR: code indent should never use tabs
#960: FILE: linux-user/mips/cpu_loop.c:211:
+^IMIPS_SYS(sys_socket^I, 3)$

ERROR: code indent should never use tabs
#961: FILE: linux-user/mips/cpu_loop.c:212:
+^IMIPS_SYS(sys_socketpair^I, 4)$

ERROR: code indent should never use tabs
#962: FILE: linux-user/mips/cpu_loop.c:213:
+^IMIPS_SYS(sys_setresuid^I, 3)^I/* 4185 */$

ERROR: code indent should never use tabs
#963: FILE: linux-user/mips/cpu_loop.c:214:
+^IMIPS_SYS(sys_getresuid^I, 3)$

ERROR: code indent should never use tabs
#964: FILE: linux-user/mips/cpu_loop.c:215:
+^IMIPS_SYS(sys_ni_syscall^I, 0)^I/* was sys_query_module */$

ERROR: code indent should never use tabs
#965: FILE: linux-user/mips/cpu_loop.c:216:
+^IMIPS_SYS(sys_poll^I, 3)$

ERROR: code indent should never use tabs
#966: FILE: linux-user/mips/cpu_loop.c:217:
+^IMIPS_SYS(sys_nfsservctl^I, 3)$

ERROR: code indent should never use tabs
#967: FILE: linux-user/mips/cpu_loop.c:218:
+^IMIPS_SYS(sys_setresgid^I, 3)^I/* 4190 */$

ERROR: code indent should never use tabs
#968: FILE: linux-user/mips/cpu_loop.c:219:
+^IMIPS_SYS(sys_getresgid^I, 3)$

ERROR: code indent should never use tabs
#969: FILE: linux-user/mips/cpu_loop.c:220:
+^IMIPS_SYS(sys_prctl^I, 5)$

ERROR: code indent should never use tabs
#970: FILE: linux-user/mips/cpu_loop.c:221:
+^IMIPS_SYS(sys_rt_sigreturn, 0)$

ERROR: code indent should never use tabs
#971: FILE: linux-user/mips/cpu_loop.c:222:
+^IMIPS_SYS(sys_rt_sigaction, 4)$

ERROR: code indent should never use tabs
#972: FILE: linux-user/mips/cpu_loop.c:223:
+^IMIPS_SYS(sys_rt_sigprocmask, 4)^I/* 4195 */$

ERROR: code indent should never use tabs
#973: FILE: linux-user/mips/cpu_loop.c:224:
+^IMIPS_SYS(sys_rt_sigpending, 2)$

ERROR: code indent should never use tabs
#974: FILE: linux-user/mips/cpu_loop.c:225:
+^IMIPS_SYS(sys_rt_sigtimedwait, 4)$

ERROR: code indent should never use tabs
#975: FILE: linux-user/mips/cpu_loop.c:226:
+^IMIPS_SYS(sys_rt_sigqueueinfo, 3)$

ERROR: code indent should never use tabs
#976: FILE: linux-user/mips/cpu_loop.c:227:
+^IMIPS_SYS(sys_rt_sigsuspend, 0)$

ERROR: code indent should never use tabs
#977: FILE: linux-user/mips/cpu_loop.c:228:
+^IMIPS_SYS(sys_pread64^I, 6)^I/* 4200 */$

ERROR: code indent should never use tabs
#978: FILE: linux-user/mips/cpu_loop.c:229:
+^IMIPS_SYS(sys_pwrite64^I, 6)$

ERROR: code indent should never use tabs
#979: FILE: linux-user/mips/cpu_loop.c:230:
+^IMIPS_SYS(sys_chown^I, 3)$

ERROR: code indent should never use tabs
#980: FILE: linux-user/mips/cpu_loop.c:231:
+^IMIPS_SYS(sys_getcwd^I, 2)$

ERROR: code indent should never use tabs
#981: FILE: linux-user/mips/cpu_loop.c:232:
+^IMIPS_SYS(sys_capget^I, 2)$

ERROR: code indent should never use tabs
#982: FILE: linux-user/mips/cpu_loop.c:233:
+^IMIPS_SYS(sys_capset^I, 2)^I/* 4205 */$

ERROR: code indent should never use tabs
#983: FILE: linux-user/mips/cpu_loop.c:234:
+^IMIPS_SYS(sys_sigaltstack^I, 2)$

ERROR: code indent should never use tabs
#984: FILE: linux-user/mips/cpu_loop.c:235:
+^IMIPS_SYS(sys_sendfile^I, 4)$

ERROR: code indent should never use tabs
#985: FILE: linux-user/mips/cpu_loop.c:236:
+^IMIPS_SYS(sys_ni_syscall^I, 0)$

ERROR: code indent should never use tabs
#986: FILE: linux-user/mips/cpu_loop.c:237:
+^IMIPS_SYS(sys_ni_syscall^I, 0)$

ERROR: code indent should never use tabs
#987: FILE: linux-user/mips/cpu_loop.c:238:
+^IMIPS_SYS(sys_mmap2^I, 6)^I/* 4210 */$

ERROR: code indent should never use tabs
#988: FILE: linux-user/mips/cpu_loop.c:239:
+^IMIPS_SYS(sys_truncate64^I, 4)$

ERROR: code indent should never use tabs
#989: FILE: linux-user/mips/cpu_loop.c:240:
+^IMIPS_SYS(sys_ftruncate64^I, 4)$

ERROR: code indent should never use tabs
#990: FILE: linux-user/mips/cpu_loop.c:241:
+^IMIPS_SYS(sys_stat64^I, 2)$

ERROR: code indent should never use tabs
#991: FILE: linux-user/mips/cpu_loop.c:242:
+^IMIPS_SYS(sys_lstat64^I, 2)$

ERROR: code indent should never use tabs
#992: FILE: linux-user/mips/cpu_loop.c:243:
+^IMIPS_SYS(sys_fstat64^I, 2)^I/* 4215 */$

ERROR: code indent should never use tabs
#993: FILE: linux-user/mips/cpu_loop.c:244:
+^IMIPS_SYS(sys_pivot_root^I, 2)$

ERROR: code indent should never use tabs
#994: FILE: linux-user/mips/cpu_loop.c:245:
+^IMIPS_SYS(sys_mincore^I, 3)$

ERROR: code indent should never use tabs
#995: FILE: linux-user/mips/cpu_loop.c:246:
+^IMIPS_SYS(sys_madvise^I, 3)$

ERROR: code indent should never use tabs
#996: FILE: linux-user/mips/cpu_loop.c:247:
+^IMIPS_SYS(sys_getdents64^I, 3)$

ERROR: code indent should never use tabs
#997: FILE: linux-user/mips/cpu_loop.c:248:
+^IMIPS_SYS(sys_fcntl64^I, 3)^I/* 4220 */$

ERROR: code indent should never use tabs
#998: FILE: linux-user/mips/cpu_loop.c:249:
+^IMIPS_SYS(sys_ni_syscall^I, 0)$

ERROR: code indent should never use tabs
#999: FILE: linux-user/mips/cpu_loop.c:250:
+^IMIPS_SYS(sys_gettid^I, 0)$

ERROR: code indent should never use tabs
#1000: FILE: linux-user/mips/cpu_loop.c:251:
+^IMIPS_SYS(sys_readahead^I, 5)$

ERROR: code indent should never use tabs
#1001: FILE: linux-user/mips/cpu_loop.c:252:
+^IMIPS_SYS(sys_setxattr^I, 5)$

ERROR: code indent should never use tabs
#1002: FILE: linux-user/mips/cpu_loop.c:253:
+^IMIPS_SYS(sys_lsetxattr^I, 5)^I/* 4225 */$

ERROR: code indent should never use tabs
#1003: FILE: linux-user/mips/cpu_loop.c:254:
+^IMIPS_SYS(sys_fsetxattr^I, 5)$

ERROR: code indent should never use tabs
#1004: FILE: linux-user/mips/cpu_loop.c:255:
+^IMIPS_SYS(sys_getxattr^I, 4)$

ERROR: code indent should never use tabs
#1005: FILE: linux-user/mips/cpu_loop.c:256:
+^IMIPS_SYS(sys_lgetxattr^I, 4)$

ERROR: code indent should never use tabs
#1006: FILE: linux-user/mips/cpu_loop.c:257:
+^IMIPS_SYS(sys_fgetxattr^I, 4)$

ERROR: code indent should never use tabs
#1007: FILE: linux-user/mips/cpu_loop.c:258:
+^IMIPS_SYS(sys_listxattr^I, 3)^I/* 4230 */$

ERROR: code indent should never use tabs
#1008: FILE: linux-user/mips/cpu_loop.c:259:
+^IMIPS_SYS(sys_llistxattr^I, 3)$

ERROR: code indent should never use tabs
#1009: FILE: linux-user/mips/cpu_loop.c:260:
+^IMIPS_SYS(sys_flistxattr^I, 3)$

ERROR: code indent should never use tabs
#1010: FILE: linux-user/mips/cpu_loop.c:261:
+^IMIPS_SYS(sys_removexattr^I, 2)$

ERROR: code indent should never use tabs
#1011: FILE: linux-user/mips/cpu_loop.c:262:
+^IMIPS_SYS(sys_lremovexattr, 2)$

ERROR: code indent should never use tabs
#1012: FILE: linux-user/mips/cpu_loop.c:263:
+^IMIPS_SYS(sys_fremovexattr, 2)^I/* 4235 */$

ERROR: code indent should never use tabs
#1013: FILE: linux-user/mips/cpu_loop.c:264:
+^IMIPS_SYS(sys_tkill^I, 2)$

ERROR: code indent should never use tabs
#1014: FILE: linux-user/mips/cpu_loop.c:265:
+^IMIPS_SYS(sys_sendfile64^I, 5)$

ERROR: code indent should never use tabs
#1015: FILE: linux-user/mips/cpu_loop.c:266:
+^IMIPS_SYS(sys_futex^I, 6)$

ERROR: code indent should never use tabs
#1016: FILE: linux-user/mips/cpu_loop.c:267:
+^IMIPS_SYS(sys_sched_setaffinity, 3)$

ERROR: code indent should never use tabs
#1017: FILE: linux-user/mips/cpu_loop.c:268:
+^IMIPS_SYS(sys_sched_getaffinity, 3)^I/* 4240 */$

ERROR: code indent should never use tabs
#1018: FILE: linux-user/mips/cpu_loop.c:269:
+^IMIPS_SYS(sys_io_setup^I, 2)$

ERROR: code indent should never use tabs
#1019: FILE: linux-user/mips/cpu_loop.c:270:
+^IMIPS_SYS(sys_io_destroy^I, 1)$

ERROR: code indent should never use tabs
#1020: FILE: linux-user/mips/cpu_loop.c:271:
+^IMIPS_SYS(sys_io_getevents, 5)$

ERROR: code indent should never use tabs
#1021: FILE: linux-user/mips/cpu_loop.c:272:
+^IMIPS_SYS(sys_io_submit^I, 3)$

ERROR: code indent should never use tabs
#1022: FILE: linux-user/mips/cpu_loop.c:273:
+^IMIPS_SYS(sys_io_cancel^I, 3)^I/* 4245 */$

ERROR: code indent should never use tabs
#1023: FILE: linux-user/mips/cpu_loop.c:274:
+^IMIPS_SYS(sys_exit_group^I, 1)$

ERROR: code indent should never use tabs
#1024: FILE: linux-user/mips/cpu_loop.c:275:
+^IMIPS_SYS(sys_lookup_dcookie, 3)$

ERROR: code indent should never use tabs
#1025: FILE: linux-user/mips/cpu_loop.c:276:
+^IMIPS_SYS(sys_epoll_create, 1)$

ERROR: code indent should never use tabs
#1026: FILE: linux-user/mips/cpu_loop.c:277:
+^IMIPS_SYS(sys_epoll_ctl^I, 4)$

ERROR: code indent should never use tabs
#1027: FILE: linux-user/mips/cpu_loop.c:278:
+^IMIPS_SYS(sys_epoll_wait^I, 3)^I/* 4250 */$

ERROR: code indent should never use tabs
#1028: FILE: linux-user/mips/cpu_loop.c:279:
+^IMIPS_SYS(sys_remap_file_pages, 5)$

ERROR: code indent should never use tabs
#1029: FILE: linux-user/mips/cpu_loop.c:280:
+^IMIPS_SYS(sys_set_tid_address, 1)$

ERROR: code indent should never use tabs
#1030: FILE: linux-user/mips/cpu_loop.c:281:
+^IMIPS_SYS(sys_restart_syscall, 0)$

ERROR: code indent should never use tabs
#1031: FILE: linux-user/mips/cpu_loop.c:282:
+^IMIPS_SYS(sys_fadvise64_64, 7)$

ERROR: code indent should never use tabs
#1032: FILE: linux-user/mips/cpu_loop.c:283:
+^IMIPS_SYS(sys_statfs64^I, 3)^I/* 4255 */$

ERROR: code indent should never use tabs
#1033: FILE: linux-user/mips/cpu_loop.c:284:
+^IMIPS_SYS(sys_fstatfs64^I, 2)$

ERROR: code indent should never use tabs
#1034: FILE: linux-user/mips/cpu_loop.c:285:
+^IMIPS_SYS(sys_timer_create, 3)$

ERROR: code indent should never use tabs
#1035: FILE: linux-user/mips/cpu_loop.c:286:
+^IMIPS_SYS(sys_timer_settime, 4)$

ERROR: code indent should never use tabs
#1036: FILE: linux-user/mips/cpu_loop.c:287:
+^IMIPS_SYS(sys_timer_gettime, 2)$

ERROR: code indent should never use tabs
#1037: FILE: linux-user/mips/cpu_loop.c:288:
+^IMIPS_SYS(sys_timer_getoverrun, 1)^I/* 4260 */$

ERROR: code indent should never use tabs
#1038: FILE: linux-user/mips/cpu_loop.c:289:
+^IMIPS_SYS(sys_timer_delete, 1)$

ERROR: code indent should never use tabs
#1039: FILE: linux-user/mips/cpu_loop.c:290:
+^IMIPS_SYS(sys_clock_settime, 2)$

ERROR: code indent should never use tabs
#1040: FILE: linux-user/mips/cpu_loop.c:291:
+^IMIPS_SYS(sys_clock_gettime, 2)$

ERROR: code indent should never use tabs
#1041: FILE: linux-user/mips/cpu_loop.c:292:
+^IMIPS_SYS(sys_clock_getres, 2)$

ERROR: code indent should never use tabs
#1042: FILE: linux-user/mips/cpu_loop.c:293:
+^IMIPS_SYS(sys_clock_nanosleep, 4)^I/* 4265 */$

ERROR: code indent should never use tabs
#1043: FILE: linux-user/mips/cpu_loop.c:294:
+^IMIPS_SYS(sys_tgkill^I, 3)$

ERROR: code indent should never use tabs
#1044: FILE: linux-user/mips/cpu_loop.c:295:
+^IMIPS_SYS(sys_utimes^I, 2)$

ERROR: code indent should never use tabs
#1045: FILE: linux-user/mips/cpu_loop.c:296:
+^IMIPS_SYS(sys_mbind^I, 4)$

ERROR: code indent should never use tabs
#1046: FILE: linux-user/mips/cpu_loop.c:297:
+^IMIPS_SYS(sys_ni_syscall^I, 0)^I/* sys_get_mempolicy */$

ERROR: code indent should never use tabs
#1047: FILE: linux-user/mips/cpu_loop.c:298:
+^IMIPS_SYS(sys_ni_syscall^I, 0)^I/* 4270 sys_set_mempolicy */$

ERROR: code indent should never use tabs
#1048: FILE: linux-user/mips/cpu_loop.c:299:
+^IMIPS_SYS(sys_mq_open^I, 4)$

ERROR: code indent should never use tabs
#1049: FILE: linux-user/mips/cpu_loop.c:300:
+^IMIPS_SYS(sys_mq_unlink^I, 1)$

ERROR: code indent should never use tabs
#1050: FILE: linux-user/mips/cpu_loop.c:301:
+^IMIPS_SYS(sys_mq_timedsend, 5)$

ERROR: code indent should never use tabs
#1051: FILE: linux-user/mips/cpu_loop.c:302:
+^IMIPS_SYS(sys_mq_timedreceive, 5)$

ERROR: code indent should never use tabs
#1052: FILE: linux-user/mips/cpu_loop.c:303:
+^IMIPS_SYS(sys_mq_notify^I, 2)^I/* 4275 */$

ERROR: code indent should never use tabs
#1053: FILE: linux-user/mips/cpu_loop.c:304:
+^IMIPS_SYS(sys_mq_getsetattr, 3)$

ERROR: code indent should never use tabs
#1054: FILE: linux-user/mips/cpu_loop.c:305:
+^IMIPS_SYS(sys_ni_syscall^I, 0)^I/* sys_vserver */$

ERROR: code indent should never use tabs
#1055: FILE: linux-user/mips/cpu_loop.c:306:
+^IMIPS_SYS(sys_waitid^I, 4)$

ERROR: code indent should never use tabs
#1056: FILE: linux-user/mips/cpu_loop.c:307:
+^IMIPS_SYS(sys_ni_syscall^I, 0)^I/* available, was setaltroot */$

ERROR: code indent should never use tabs
#1057: FILE: linux-user/mips/cpu_loop.c:308:
+^IMIPS_SYS(sys_add_key^I, 5)$

ERROR: code indent should never use tabs
#1058: FILE: linux-user/mips/cpu_loop.c:309:
+^IMIPS_SYS(sys_request_key, 4)$

ERROR: code indent should never use tabs
#1059: FILE: linux-user/mips/cpu_loop.c:310:
+^IMIPS_SYS(sys_keyctl^I, 5)$

ERROR: code indent should never use tabs
#1060: FILE: linux-user/mips/cpu_loop.c:311:
+^IMIPS_SYS(sys_set_thread_area, 1)$

ERROR: code indent should never use tabs
#1061: FILE: linux-user/mips/cpu_loop.c:312:
+^IMIPS_SYS(sys_inotify_init, 0)$

ERROR: code indent should never use tabs
#1062: FILE: linux-user/mips/cpu_loop.c:313:
+^IMIPS_SYS(sys_inotify_add_watch, 3) /* 4285 */$

ERROR: code indent should never use tabs
#1063: FILE: linux-user/mips/cpu_loop.c:314:
+^IMIPS_SYS(sys_inotify_rm_watch, 2)$

ERROR: code indent should never use tabs
#1064: FILE: linux-user/mips/cpu_loop.c:315:
+^IMIPS_SYS(sys_migrate_pages, 4)$

ERROR: code indent should never use tabs
#1065: FILE: linux-user/mips/cpu_loop.c:316:
+^IMIPS_SYS(sys_openat, 4)$

ERROR: code indent should never use tabs
#1066: FILE: linux-user/mips/cpu_loop.c:317:
+^IMIPS_SYS(sys_mkdirat, 3)$

ERROR: code indent should never use tabs
#1067: FILE: linux-user/mips/cpu_loop.c:318:
+^IMIPS_SYS(sys_mknodat, 4)^I/* 4290 */$

ERROR: code indent should never use tabs
#1068: FILE: linux-user/mips/cpu_loop.c:319:
+^IMIPS_SYS(sys_fchownat, 5)$

ERROR: code indent should never use tabs
#1069: FILE: linux-user/mips/cpu_loop.c:320:
+^IMIPS_SYS(sys_futimesat, 3)$

ERROR: code indent should never use tabs
#1070: FILE: linux-user/mips/cpu_loop.c:321:
+^IMIPS_SYS(sys_fstatat64, 4)$

ERROR: code indent should never use tabs
#1071: FILE: linux-user/mips/cpu_loop.c:322:
+^IMIPS_SYS(sys_unlinkat, 3)$

ERROR: code indent should never use tabs
#1072: FILE: linux-user/mips/cpu_loop.c:323:
+^IMIPS_SYS(sys_renameat, 4)^I/* 4295 */$

ERROR: code indent should never use tabs
#1073: FILE: linux-user/mips/cpu_loop.c:324:
+^IMIPS_SYS(sys_linkat, 5)$

ERROR: code indent should never use tabs
#1074: FILE: linux-user/mips/cpu_loop.c:325:
+^IMIPS_SYS(sys_symlinkat, 3)$

ERROR: code indent should never use tabs
#1075: FILE: linux-user/mips/cpu_loop.c:326:
+^IMIPS_SYS(sys_readlinkat, 4)$

ERROR: code indent should never use tabs
#1076: FILE: linux-user/mips/cpu_loop.c:327:
+^IMIPS_SYS(sys_fchmodat, 3)$

ERROR: code indent should never use tabs
#1077: FILE: linux-user/mips/cpu_loop.c:328:
+^IMIPS_SYS(sys_faccessat, 3)^I/* 4300 */$

ERROR: code indent should never use tabs
#1078: FILE: linux-user/mips/cpu_loop.c:329:
+^IMIPS_SYS(sys_pselect6, 6)$

ERROR: code indent should never use tabs
#1079: FILE: linux-user/mips/cpu_loop.c:330:
+^IMIPS_SYS(sys_ppoll, 5)$

ERROR: code indent should never use tabs
#1080: FILE: linux-user/mips/cpu_loop.c:331:
+^IMIPS_SYS(sys_unshare, 1)$

ERROR: code indent should never use tabs
#1081: FILE: linux-user/mips/cpu_loop.c:332:
+^IMIPS_SYS(sys_splice, 6)$

ERROR: code indent should never use tabs
#1082: FILE: linux-user/mips/cpu_loop.c:333:
+^IMIPS_SYS(sys_sync_file_range, 7) /* 4305 */$

ERROR: code indent should never use tabs
#1083: FILE: linux-user/mips/cpu_loop.c:334:
+^IMIPS_SYS(sys_tee, 4)$

ERROR: code indent should never use tabs
#1084: FILE: linux-user/mips/cpu_loop.c:335:
+^IMIPS_SYS(sys_vmsplice, 4)$

ERROR: code indent should never use tabs
#1085: FILE: linux-user/mips/cpu_loop.c:336:
+^IMIPS_SYS(sys_move_pages, 6)$

ERROR: code indent should never use tabs
#1086: FILE: linux-user/mips/cpu_loop.c:337:
+^IMIPS_SYS(sys_set_robust_list, 2)$

ERROR: code indent should never use tabs
#1087: FILE: linux-user/mips/cpu_loop.c:338:
+^IMIPS_SYS(sys_get_robust_list, 3) /* 4310 */$

ERROR: code indent should never use tabs
#1088: FILE: linux-user/mips/cpu_loop.c:339:
+^IMIPS_SYS(sys_kexec_load, 4)$

ERROR: code indent should never use tabs
#1089: FILE: linux-user/mips/cpu_loop.c:340:
+^IMIPS_SYS(sys_getcpu, 3)$

ERROR: code indent should never use tabs
#1090: FILE: linux-user/mips/cpu_loop.c:341:
+^IMIPS_SYS(sys_epoll_pwait, 6)$

ERROR: code indent should never use tabs
#1091: FILE: linux-user/mips/cpu_loop.c:342:
+^IMIPS_SYS(sys_ioprio_set, 3)$

ERROR: code indent should never use tabs
#1092: FILE: linux-user/mips/cpu_loop.c:343:
+^IMIPS_SYS(sys_ioprio_get, 2)$

ERROR: space required before the open parenthesis '('
#1234: FILE: linux-user/mips/cpu_loop.c:485:
+    for(;;) {

ERROR: space required before the open parenthesis '('
#1240: FILE: linux-user/mips/cpu_loop.c:491:
+        switch(trapnr) {

ERROR: do not use assignment in if condition
#1257: FILE: linux-user/mips/cpu_loop.c:508:
+                    if ((ret = get_user_ual(arg8, sp_reg + 28)) != 0) {

ERROR: do not use assignment in if condition
#1261: FILE: linux-user/mips/cpu_loop.c:512:
+                    if ((ret = get_user_ual(arg7, sp_reg + 24)) != 0) {

ERROR: do not use assignment in if condition
#1265: FILE: linux-user/mips/cpu_loop.c:516:
+                    if ((ret = get_user_ual(arg6, sp_reg + 20)) != 0) {

ERROR: do not use assignment in if condition
#1269: FILE: linux-user/mips/cpu_loop.c:520:
+                    if ((ret = get_user_ual(arg5, sp_reg + 16)) != 0) {

ERROR: that open brace { should be on the previous line
#1333: FILE: linux-user/mips/cpu_loop.c:584:
+                if (sig)
+                  {

WARNING: line over 80 characters
#1463: FILE: linux-user/mips/cpu_loop.c:714:
+            EXCP_DUMP(env, "qemu: unhandled CPU exception 0x%x - aborting\n", trapnr);

ERROR: space required before the open parenthesis '('
#1477: FILE: linux-user/mips/cpu_loop.c:728:
+    for(i = 0; i < 32; i++) {

total: 325 errors, 1 warnings, 1478 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 8/19: linux-user: move nios2 cpu loop to nios2 directory...
Checking PATCH 9/19: linux-user: move openrisc cpu loop to openrisc directory...
Checking PATCH 10/19: linux-user: move sh4 cpu loop to sh4 directory...
ERROR: code indent should never use tabs
#180: FILE: linux-user/sh4/cpu_loop.c:74:
+^Icase 0xa0:$

ERROR: code indent should never use tabs
#181: FILE: linux-user/sh4/cpu_loop.c:75:
+^Icase 0xc0:$

ERROR: code indent should never use tabs
#187: FILE: linux-user/sh4/cpu_loop.c:81:
+^I    break;$

ERROR: space prohibited between function name and open parenthesis '('
#193: FILE: linux-user/sh4/cpu_loop.c:87:
+            printf ("Unhandled trap: 0x%x\n", trapnr);

ERROR: space prohibited between function name and open parenthesis '('
#197: FILE: linux-user/sh4/cpu_loop.c:91:
+        process_pending_signals (env);

ERROR: space required before the open parenthesis '('
#213: FILE: linux-user/sh4/cpu_loop.c:107:
+    for(i = 0; i < 16; i++) {

total: 6 errors, 0 warnings, 193 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 11/19: linux-user: move cris cpu loop to cris directory...
ERROR: trailing whitespace
#27: FILE: linux-user/cris/cpu_loop.c:29:
+    $

ERROR: code indent should never use tabs
#45: FILE: linux-user/cris/cpu_loop.c:47:
+^Icase EXCP_INTERRUPT:$

ERROR: code indent should never use tabs
#46: FILE: linux-user/cris/cpu_loop.c:48:
+^I  /* just indicate that signals should be handled asap */$

ERROR: code indent should never use tabs
#47: FILE: linux-user/cris/cpu_loop.c:49:
+^I  break;$

ERROR: trailing whitespace
#49: FILE: linux-user/cris/cpu_loop.c:51:
+            ret = do_syscall(env, $

ERROR: trailing whitespace
#50: FILE: linux-user/cris/cpu_loop.c:52:
+                             env->regs[9], $

ERROR: trailing whitespace
#51: FILE: linux-user/cris/cpu_loop.c:53:
+                             env->regs[10], $

ERROR: trailing whitespace
#52: FILE: linux-user/cris/cpu_loop.c:54:
+                             env->regs[11], $

ERROR: trailing whitespace
#53: FILE: linux-user/cris/cpu_loop.c:55:
+                             env->regs[12], $

ERROR: trailing whitespace
#54: FILE: linux-user/cris/cpu_loop.c:56:
+                             env->regs[13], $

ERROR: trailing whitespace
#55: FILE: linux-user/cris/cpu_loop.c:57:
+                             env->pregs[7], $

ERROR: that open brace { should be on the previous line
#69: FILE: linux-user/cris/cpu_loop.c:71:
+                if (sig)
+                  {

ERROR: space prohibited between function name and open parenthesis '('
#82: FILE: linux-user/cris/cpu_loop.c:84:
+            printf ("Unhandled trap: 0x%x\n", trapnr);

ERROR: space prohibited between function name and open parenthesis '('
#86: FILE: linux-user/cris/cpu_loop.c:88:
+        process_pending_signals (env);

total: 14 errors, 0 warnings, 197 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 12/19: linux-user: move microblaze cpu loop to microblaze directory...
ERROR: trailing whitespace
#200: FILE: linux-user/microblaze/cpu_loop.c:29:
+    $

ERROR: code indent should never use tabs
#218: FILE: linux-user/microblaze/cpu_loop.c:47:
+^Icase EXCP_INTERRUPT:$

ERROR: code indent should never use tabs
#219: FILE: linux-user/microblaze/cpu_loop.c:48:
+^I  /* just indicate that signals should be handled asap */$

ERROR: code indent should never use tabs
#220: FILE: linux-user/microblaze/cpu_loop.c:49:
+^I  break;$

ERROR: trailing whitespace
#225: FILE: linux-user/microblaze/cpu_loop.c:54:
+            ret = do_syscall(env, $

ERROR: trailing whitespace
#226: FILE: linux-user/microblaze/cpu_loop.c:55:
+                             env->regs[12], $

ERROR: trailing whitespace
#227: FILE: linux-user/microblaze/cpu_loop.c:56:
+                             env->regs[5], $

ERROR: trailing whitespace
#228: FILE: linux-user/microblaze/cpu_loop.c:57:
+                             env->regs[6], $

ERROR: trailing whitespace
#229: FILE: linux-user/microblaze/cpu_loop.c:58:
+                             env->regs[7], $

ERROR: trailing whitespace
#230: FILE: linux-user/microblaze/cpu_loop.c:59:
+                             env->regs[8], $

ERROR: trailing whitespace
#231: FILE: linux-user/microblaze/cpu_loop.c:60:
+                             env->regs[9], $

ERROR: switch and case should be at the same indent
#258: FILE: linux-user/microblaze/cpu_loop.c:87:
+            switch (env->sregs[SR_ESR] & 31) {
+                case ESR_EC_DIVZERO:
[...]
+                case ESR_EC_FPU:
[...]
+                default:

ERROR: space prohibited between function name and open parenthesis '('
#279: FILE: linux-user/microblaze/cpu_loop.c:108:
+                    printf ("Unhandled hw-exception: 0x%x\n",

ERROR: that open brace { should be on the previous line
#291: FILE: linux-user/microblaze/cpu_loop.c:120:
+                if (sig)
+                  {

ERROR: space prohibited between function name and open parenthesis '('
#304: FILE: linux-user/microblaze/cpu_loop.c:133:
+            printf ("Unhandled trap: 0x%x\n", trapnr);

ERROR: space prohibited between function name and open parenthesis '('
#308: FILE: linux-user/microblaze/cpu_loop.c:137:
+        process_pending_signals (env);

total: 16 errors, 0 warnings, 323 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 13/19: linux-user: move m68k cpu loop to m68k directory...
ERROR: space required before the open parenthesis '('
#30: FILE: linux-user/m68k/cpu_loop.c:32:
+    for(;;) {

ERROR: space required before the open parenthesis '('
#36: FILE: linux-user/m68k/cpu_loop.c:38:
+        switch(trapnr) {

ERROR: that open brace { should be on the previous line
#118: FILE: linux-user/m68k/cpu_loop.c:120:
+                if (sig)
+                  {

WARNING: line over 80 characters
#131: FILE: linux-user/m68k/cpu_loop.c:133:
+            EXCP_DUMP(env, "qemu: unhandled CPU exception 0x%x - aborting\n", trapnr);

total: 3 errors, 1 warnings, 318 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 14/19: linux-user: move alpha cpu loop to alpha directory...
ERROR: space prohibited between function name and open parenthesis '('
#201: FILE: linux-user/alpha/cpu_loop.c:199:
+            printf ("Unhandled trap: 0x%x\n", trapnr);

ERROR: space prohibited between function name and open parenthesis '('
#205: FILE: linux-user/alpha/cpu_loop.c:203:
+        process_pending_signals (env);

ERROR: space required before the open parenthesis '('
#222: FILE: linux-user/alpha/cpu_loop.c:220:
+    for(i = 0; i < 28; i++) {

total: 3 errors, 0 warnings, 421 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 15/19: linux-user: move s390x cpu loop to s390x directory...
ERROR: space prohibited between function name and open parenthesis '('
#316: FILE: linux-user/s390x/cpu_loop.c:153:
+        process_pending_signals (env);

total: 1 errors, 0 warnings, 303 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 16/19: linux-user: move tilegx cpu loop to tilegx directory...
Checking PATCH 17/19: linux-user: move riscv cpu loop to riscv directory...
Checking PATCH 18/19: linux-user: move hppa cpu loop to hppa directory...
Checking PATCH 19/19: linux-user: move xtensa cpu loop to xtensa directory...
=== 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