Hi, This series seems to have some coding style problems. See output below for more information:
Message-id: 20170810160451.32723-1-berra...@redhat.com Subject: [Qemu-devel] [PATCH 0/8] Enable full IPv4/IPv6 dual stack support Type: series === 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' c80d4b3d99 sockets: fix parsing of ipv4/ipv6 opts in parse_socket_addr 85193a29c1 ui: convert VNC server to QIONetListener 59dd1813c8 chardev: convert the socket server to QIONetListener 2304ec200f migration: convert socket server to QIONetListener 4f4c339d2c blockdev: convert qemu-nbd server to QIONetListener 9837cc0ccd blockdev: convert internal NBD server to QIONetListener f3aa1d82c5 io: introduce a network socket listener API 81584cdc6f tests: add functional test validating ipv4/ipv6 address flag handling === OUTPUT BEGIN === Checking PATCH 1/8: tests: add functional test validating ipv4/ipv6 address flag handling... Checking PATCH 2/8: io: introduce a network socket listener API... Checking PATCH 3/8: blockdev: convert internal NBD server to QIONetListener... Checking PATCH 4/8: blockdev: convert qemu-nbd server to QIONetListener... WARNING: line over 80 characters #41: FILE: qemu-nbd.c:348: +static void nbd_accept(QIONetListener *listener, QIOChannelSocket *cioc, gpointer opaque) total: 0 errors, 1 warnings, 99 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/8: migration: convert socket server to QIONetListener... ERROR: line over 90 characters #89: FILE: migration/socket.c:163: + qio_net_listener_set_client_func(listener, socket_accept_incoming_migration, NULL, NULL); total: 1 errors, 0 warnings, 82 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/8: chardev: convert the socket server to QIONetListener... WARNING: line over 80 characters #57: FILE: chardev/char-socket.c:408: + qio_net_listener_set_client_func(s->listener, tcp_chr_accept, chr, NULL); WARNING: line over 80 characters #165: FILE: chardev/char-socket.c:946: + qio_net_listener_set_client_func(s->listener, tcp_chr_accept, chr, NULL); total: 0 errors, 2 warnings, 168 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/8: ui: convert VNC server to QIONetListener... WARNING: line over 80 characters #51: FILE: ui/vnc.c:390: + addr = qio_channel_socket_get_local_address(vd->listener->sioc[0], errp); total: 0 errors, 1 warnings, 292 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/8: sockets: fix parsing of ipv4/ipv6 opts in parse_socket_addr... === OUTPUT END === Test command exited with code: 1 --- Email generated automatically by Patchew [http://patchew.org/]. Please send your feedback to patchew-de...@freelists.org