[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Qemu-ppc] [Qemu-devel] [QEMU-PPC] [PATCH V5 0/7] target/ppc: Rework
From: |
no-reply |
Subject: |
Re: [Qemu-ppc] [Qemu-devel] [QEMU-PPC] [PATCH V5 0/7] target/ppc: Rework spapr_caps |
Date: |
Thu, 18 Jan 2018 21:29:42 -0800 (PST) |
Hi,
This series seems to have some coding style problems. See output below for
more information:
Type: series
Message-id: address@hidden
Subject: [Qemu-devel] [QEMU-PPC] [PATCH V5 0/7] target/ppc: Rework spapr_caps
=== TEST SCRIPT BEGIN ===
#!/bin/bash
BASE=base
n=1
total=$(git log --oneline $BASE.. | wc -l)
failed=0
git config --local diff.renamelimit 0
git config --local diff.renames True
commits="$(git log --format=%H --reverse $BASE..)"
for c in $commits; do
echo "Checking PATCH $n/$total: $(git log -n 1 --format=%s $c)..."
if ! git show $c --format=email | ./scripts/checkpatch.pl --mailback -; then
failed=1
echo
fi
n=$((n+1))
done
exit $failed
=== TEST SCRIPT END ===
Updating 3c8cf5a9c21ff8782164d1def7f44bd888713384
Switched to a new branch 'test'
dc317bcbc5 target/ppc/spapr: Add H-Call H_GET_CPU_CHARACTERISTICS
09c0dbcab4 target/ppc/spapr_caps: Add new tristate cap safe_indirect_branch
1145f7696a target/ppc/spapr_caps: Add new tristate cap safe_bounds_check
37c3445619 target/ppc/spapr_caps: Add new tristate cap safe_cache
0a8ff160dc target/ppc/spapr_caps: Add support for tristate spapr_capabilities
8aef783b9e target/ppc/spapr_caps: Add macro to generate spapr_caps migration
vmstate
09ad7f2093 target/ppc/kvm: Add cap_ppc_safe_[cache/bounds_check/indirect_branch]
=== OUTPUT BEGIN ===
Checking PATCH 1/7: target/ppc/kvm: Add
cap_ppc_safe_[cache/bounds_check/indirect_branch]...
Checking PATCH 2/7: target/ppc/spapr_caps: Add macro to generate spapr_caps
migration vmstate...
Checking PATCH 3/7: target/ppc/spapr_caps: Add support for tristate
spapr_capabilities...
Checking PATCH 4/7: target/ppc/spapr_caps: Add new tristate cap safe_cache...
ERROR: line over 90 characters
#75: FILE: hw/ppc/spapr_caps.c:188:
+ error_setg(errp, "Requested safe cache capability level not supported
by tcg, try a different value for cap-cfpc");
ERROR: line over 90 characters
#77: FILE: hw/ppc/spapr_caps.c:190:
+ error_setg(errp, "Requested safe cache capability level not supported
by kvm, try a different value for cap-cfpc");
total: 2 errors, 0 warnings, 98 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/7: target/ppc/spapr_caps: Add new tristate cap
safe_bounds_check...
ERROR: line over 90 characters
#47: FILE: hw/ppc/spapr_caps.c:199:
+ error_setg(errp, "Requested safe bounds check capability level not
supported by tcg, try a different value for cap-sbbc");
ERROR: line over 90 characters
#49: FILE: hw/ppc/spapr_caps.c:201:
+ error_setg(errp, "Requested safe bounds check capability level not
supported by kvm, try a different value for cap-sbbc");
WARNING: line over 80 characters
#62: FILE: hw/ppc/spapr_caps.c:246:
+ .description = "Speculation Barrier Bounds Checking"
VALUE_DESC_TRISTATE,
total: 2 errors, 1 warnings, 71 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/7: target/ppc/spapr_caps: Add new tristate cap
safe_indirect_branch...
ERROR: line over 90 characters
#48: FILE: hw/ppc/spapr_caps.c:210:
+ error_setg(errp, "Requested safe indirect branch capability level not
supported by tcg, try a different value for cap-ibs");
ERROR: line over 90 characters
#50: FILE: hw/ppc/spapr_caps.c:212:
+ error_setg(errp, "Requested safe indirect branch capability level not
supported by kvm, try a different value for cap-ibs");
total: 2 errors, 0 warnings, 71 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/7: target/ppc/spapr: Add H-Call H_GET_CPU_CHARACTERISTICS...
=== OUTPUT END ===
Test command exited with code: 1
---
Email generated automatically by Patchew [http://patchew.org/].
Please send your feedback to address@hidden
- Re: [Qemu-ppc] [QEMU-PPC] [PATCH V5 2/7] target/ppc/spapr_caps: Add macro to generate spapr_caps migration vmstate, (continued)
[Qemu-ppc] [QEMU-PPC] [PATCH V5 3/7] target/ppc/spapr_caps: Add support for tristate spapr_capabilities, Suraj Jitindar Singh, 2018/01/19
[Qemu-ppc] [QEMU-PPC] [PATCH V5 4/7] target/ppc/spapr_caps: Add new tristate cap safe_cache, Suraj Jitindar Singh, 2018/01/19
[Qemu-ppc] [QEMU-PPC] [PATCH V5 5/7] target/ppc/spapr_caps: Add new tristate cap safe_bounds_check, Suraj Jitindar Singh, 2018/01/19
[Qemu-ppc] [QEMU-PPC] [PATCH V5 6/7] target/ppc/spapr_caps: Add new tristate cap safe_indirect_branch, Suraj Jitindar Singh, 2018/01/19
[Qemu-ppc] [QEMU-PPC] [PATCH V5 7/7] target/ppc/spapr: Add H-Call H_GET_CPU_CHARACTERISTICS, Suraj Jitindar Singh, 2018/01/19
Re: [Qemu-ppc] [Qemu-devel] [QEMU-PPC] [PATCH V5 0/7] target/ppc: Rework spapr_caps,
no-reply <=
Re: [Qemu-ppc] [QEMU-PPC] [PATCH V5 0/7] target/ppc: Rework spapr_caps, David Gibson, 2018/01/28