[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Qemu-devel] [PULL v2 0/9] Socket next patches
From: |
no-reply |
Subject: |
Re: [Qemu-devel] [PULL v2 0/9] Socket next patches |
Date: |
Tue, 13 Mar 2018 12:17:48 -0700 (PDT) |
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] [PULL v2 0/9] Socket next patches
=== 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
t [tag update] patchew/address@hidden -> patchew/address@hidden
* [new tag] patchew/address@hidden -> patchew/address@hidden
t [tag update] patchew/address@hidden -> patchew/address@hidden
Switched to a new branch 'test'
8f0c017d6b char: allow passing pre-opened socket file descriptor at startup
d82c3a9eae char: refactor parsing of socket address information
fe12adf7c9 sockets: allow SocketAddress 'fd' to reference numeric file
descriptors
d3a939ca9c sockets: check that the named file descriptor is a socket
1ae57732b9 sockets: move fd_is_socket() into common sockets code
73cfc82063 sockets: strengthen test suite IP protocol availability checks
6ad4ad192a sockets: pull code for testing IP availability out of specific test
6b5e9d3bc1 cutils: add qemu_strtoi & qemu_strtoui parsers for int/unsigned int
types
1dd1599b98 char: don't silently skip tn3270 protocol init when TLS is enabled
=== OUTPUT BEGIN ===
Checking PATCH 1/9: char: don't silently skip tn3270 protocol init when TLS is
enabled...
Checking PATCH 2/9: cutils: add qemu_strtoi & qemu_strtoui parsers for
int/unsigned int types...
ERROR: consider using qemu_strtoll in preference to strtoll
#753: FILE: util/cutils.c:338:
+ lresult = strtoll(nptr, &ep, base);
ERROR: consider using qemu_strtoull in preference to strtoull
#805: FILE: util/cutils.c:390:
+ lresult = strtoull(nptr, &ep, base);
total: 2 errors, 0 warnings, 794 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/9: sockets: pull code for testing IP availability out of
specific test...
Checking PATCH 4/9: sockets: strengthen test suite IP protocol availability
checks...
Checking PATCH 5/9: sockets: move fd_is_socket() into common sockets code...
Checking PATCH 6/9: sockets: check that the named file descriptor is a socket...
Checking PATCH 7/9: sockets: allow SocketAddress 'fd' to reference numeric file
descriptors...
Checking PATCH 8/9: char: refactor parsing of socket address information...
Checking PATCH 9/9: char: allow passing pre-opened socket file descriptor at
startup...
=== OUTPUT END ===
Test command exited with code: 1
---
Email generated automatically by Patchew [http://patchew.org/].
Please send your feedback to address@hidden
- [Qemu-devel] [PULL v2 0/9] Socket next patches, Daniel P . Berrangé, 2018/03/13
- [Qemu-devel] [PULL v2 1/9] char: don't silently skip tn3270 protocol init when TLS is enabled, Daniel P . Berrangé, 2018/03/13
- [Qemu-devel] [PULL v2 2/9] cutils: add qemu_strtoi & qemu_strtoui parsers for int/unsigned int types, Daniel P . Berrangé, 2018/03/13
- [Qemu-devel] [PULL v2 3/9] sockets: pull code for testing IP availability out of specific test, Daniel P . Berrangé, 2018/03/13
- [Qemu-devel] [PULL v2 4/9] sockets: strengthen test suite IP protocol availability checks, Daniel P . Berrangé, 2018/03/13
- [Qemu-devel] [PULL v2 5/9] sockets: move fd_is_socket() into common sockets code, Daniel P . Berrangé, 2018/03/13
- [Qemu-devel] [PULL v2 7/9] sockets: allow SocketAddress 'fd' to reference numeric file descriptors, Daniel P . Berrangé, 2018/03/13
- [Qemu-devel] [PULL v2 8/9] char: refactor parsing of socket address information, Daniel P . Berrangé, 2018/03/13
- [Qemu-devel] [PULL v2 6/9] sockets: check that the named file descriptor is a socket, Daniel P . Berrangé, 2018/03/13
- [Qemu-devel] [PULL v2 9/9] char: allow passing pre-opened socket file descriptor at startup, Daniel P . Berrangé, 2018/03/13
- Re: [Qemu-devel] [PULL v2 0/9] Socket next patches,
no-reply <=
- Re: [Qemu-devel] [PULL v2 0/9] Socket next patches, Peter Maydell, 2018/03/16