Message ID | 1580798552-703-1-git-send-email-aleksandar.markovic@rt-rk.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Patchew URL: https://patchew.org/QEMU/1580798552-703-1-git-send-email-aleksandar.markovic@rt-rk.com/ Hi, This series seems to have some coding style problems. See output below for more information: Subject: [PULL 0/3] MIPS queue for February 4th, 2020 Message-id: 1580798552-703-1-git-send-email-aleksandar.markovic@rt-rk.com Type: series === TEST SCRIPT BEGIN === #!/bin/bash git rev-parse base > /dev/null || exit 0 git config --local diff.renamelimit 0 git config --local diff.renames True git config --local diff.algorithm histogram ./scripts/checkpatch.pl --mailback base.. === TEST SCRIPT END === From https://github.com/patchew-project/qemu * [new tag] patchew/1580798552-703-1-git-send-email-aleksandar.markovic@rt-rk.com -> patchew/1580798552-703-1-git-send-email-aleksandar.markovic@rt-rk.com Switched to a new branch 'test' 2cb0be8 target/mips: Separate FPU-related helpers into their own file efaacfa target/mips: Separate CP0-related helpers into their own file 4abf8c1 target/mips: Fix ll/sc after 7dd547e5ab6b31e7a0cfc182d3ad131dd55a948f === OUTPUT BEGIN === 1/3 Checking commit 4abf8c12a48e (target/mips: Fix ll/sc after 7dd547e5ab6b31e7a0cfc182d3ad131dd55a948f) 2/3 Checking commit efaacfa4747f (target/mips: Separate CP0-related helpers into their own file) WARNING: added, moved or deleted file(s), does MAINTAINERS need updating? #29: new file mode 100644 ERROR: space prohibited after that '&' (ctx:WxW) #202: FILE: target/mips/cp0_helper.c:169: + tcu = (v >> CP0TCSt_TCU0) & 0xf; ^ ERROR: space prohibited after that '&' (ctx:WxW) #203: FILE: target/mips/cp0_helper.c:170: + tmx = (v >> CP0TCSt_TMX) & 0x1; ^ ERROR: space prohibited after that '&' (ctx:WxW) #205: FILE: target/mips/cp0_helper.c:172: + tksu = (v >> CP0TCSt_TKSU) & 0x3; ^ ERROR: space prohibited after that '&' (ctx:WxW) #1678: FILE: target/mips/cp0_helper.c:1645: + if (!((env->CP0_VPControl >> CP0VPCtl_DIS) & 1)) { ^ ERROR: space prohibited after that '&' (ctx:WxW) #1696: FILE: target/mips/cp0_helper.c:1663: + if ((env->CP0_VPControl >> CP0VPCtl_DIS) & 1) { ^ total: 5 errors, 1 warnings, 3358 lines checked Patch 2/3 has style problems, please review. If any of these errors are false positives report them to the maintainer, see CHECKPATCH in MAINTAINERS. 3/3 Checking commit 2cb0be8a910d (target/mips: Separate FPU-related helpers into their own file) WARNING: added, moved or deleted file(s), does MAINTAINERS need updating? #27: new file mode 100644 ERROR: spaces required around that '*' (ctx:WxV) #1164: FILE: target/mips/fpu_helper.c:1133: + float_status *status) \ ^ total: 1 errors, 1 warnings, 3806 lines checked Patch 3/3 has style problems, please review. If any of these errors are false positives report them to the maintainer, see CHECKPATCH in MAINTAINERS. === OUTPUT END === Test command exited with code: 1 The full log is available at http://patchew.org/logs/1580798552-703-1-git-send-email-aleksandar.markovic@rt-rk.com/testing.checkpatch/?type=message. --- Email generated automatically by Patchew [https://patchew.org/]. Please send your feedback to patchew-devel@redhat.com
On Tue, Feb 4, 2020 at 7:43 AM Aleksandar Markovic <aleksandar.markovic@rt-rk.com> wrote: > > From: Aleksandar Markovic <amarkovic@wavecomp.com> > > The following changes since commit f31160c7d1b89cfb4dd4001a23575b42141cb0ec: > > Merge remote-tracking branch 'remotes/pmaydell/tags/pull-docs-20200203' into staging (2020-02-03 11:14:24 +0000) > > are available in the git repository at: > > https://github.com/AMarkovic/qemu tags/mips-queue-feb-04-2020 > > for you to fetch changes up to 78e91b612eb746c7916cce3ea91f709b916b007c: > > target/mips: Separate FPU-related helpers into their own file (2020-02-03 23:55:53 +0100) > > ---------------------------------------------------------------- > > MIPS queue for February 4th, 2020 Peter, please discard this pull request. I just sent PULL v2 that corrects a mistake in a comment and improves a commit message. Sorry about this. Aleksandar > > Content: > > - fix for a recent regression in LL/SC > - mechanical reorganization of files containing helpers > > Note: > > - six checkpatch errors and two warnings are benign and should be > ignored > > ---------------------------------------------------------------- > > Aleksandar Markovic (2): > target/mips: Separate CP0-related helpers into their own file > target/mips: Separate FPU-related helpers into their own file > > Alex Richardson (1): > target/mips: Fix ll/sc after 7dd547e5ab6b31e7a0cfc182d3ad131dd55a948f > > target/mips/Makefile.objs | 5 +- > target/mips/cp0_helper.c | 1678 +++++++++++++++++ > target/mips/fpu_helper.c | 1911 ++++++++++++++++++++ > target/mips/op_helper.c | 4422 +++++---------------------------------------- > 4 files changed, 4044 insertions(+), 3972 deletions(-) > create mode 100644 target/mips/cp0_helper.c > create mode 100644 target/mips/fpu_helper.c > > -- > 2.7.4 > >
From: Aleksandar Markovic <amarkovic@wavecomp.com> The following changes since commit f31160c7d1b89cfb4dd4001a23575b42141cb0ec: Merge remote-tracking branch 'remotes/pmaydell/tags/pull-docs-20200203' into staging (2020-02-03 11:14:24 +0000) are available in the git repository at: https://github.com/AMarkovic/qemu tags/mips-queue-feb-04-2020 for you to fetch changes up to 78e91b612eb746c7916cce3ea91f709b916b007c: target/mips: Separate FPU-related helpers into their own file (2020-02-03 23:55:53 +0100) ---------------------------------------------------------------- MIPS queue for February 4th, 2020 Content: - fix for a recent regression in LL/SC - mechanical reorganization of files containing helpers Note: - six checkpatch errors and two warnings are benign and should be ignored ---------------------------------------------------------------- Aleksandar Markovic (2): target/mips: Separate CP0-related helpers into their own file target/mips: Separate FPU-related helpers into their own file Alex Richardson (1): target/mips: Fix ll/sc after 7dd547e5ab6b31e7a0cfc182d3ad131dd55a948f target/mips/Makefile.objs | 5 +- target/mips/cp0_helper.c | 1678 +++++++++++++++++ target/mips/fpu_helper.c | 1911 ++++++++++++++++++++ target/mips/op_helper.c | 4422 +++++---------------------------------------- 4 files changed, 4044 insertions(+), 3972 deletions(-) create mode 100644 target/mips/cp0_helper.c create mode 100644 target/mips/fpu_helper.c