[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: [Qemu-devel] [PATCH v4 00/15] s390: vfio-ccw dasd ipl support
From: |
no-reply |
Subject: |
Re: [Qemu-devel] [PATCH v4 00/15] s390: vfio-ccw dasd ipl support |
Date: |
Mon, 11 Mar 2019 09:11:08 -0700 (PDT) |
Patchew URL: https://patchew.org/QEMU/address@hidden/
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] [PATCH v4 00/15] s390: vfio-ccw dasd ipl support
=== 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 ===
Updating 3c8cf5a9c21ff8782164d1def7f44bd888713384
From https://github.com/patchew-project/qemu
t [tag update] patchew/address@hidden -> patchew/address@hidden
Switched to a new branch 'test'
ea96f08482 s390-bios: Support booting from real dasd device
ab7d59e218 s390-bios: Add channel command codes/structs needed for dasd-ipl
2ad6920563 s390-bios: Use control unit type to determine boot method
c1dd91dcab s390-bios: Refactor virtio to run channel programs via cio
783a5d992e s390-bios: cio error handling
ed5a01a4d1 s390-bios: Support for running format-0/1 channel programs
ce04b580ff s390-bios: ptr2u32 and u32toptr
d0bf9e13e4 s390-bios: Map low core memory
bef31e545b s390-bios: Decouple channel i/o logic from virtio
9d517b7d84 s390-bios: Clean up cio.h
19fba0fd56 s390-bios: Factor finding boot device out of virtio code path
6c0daf90e7 s390-bios: Extend find_dev() for non-virtio devices
a500db9f58 s390-bios: decouple common boot logic from virtio
1a8b1f01ab s390-bios: decouple cio setup from virtio
22aef1c027 s390 vfio-ccw: Add bootindex property and IPLB data
=== OUTPUT BEGIN ===
1/15 Checking commit 22aef1c02747 (s390 vfio-ccw: Add bootindex property and
IPLB data)
WARNING: added, moved or deleted file(s), does MAINTAINERS need updating?
#220:
new file mode 100644
total: 0 errors, 1 warnings, 199 lines checked
Patch 1/15 has style problems, please review. If any of these errors
are false positives report them to the maintainer, see
CHECKPATCH in MAINTAINERS.
2/15 Checking commit 1a8b1f01abf8 (s390-bios: decouple cio setup from virtio)
3/15 Checking commit a500db9f58bc (s390-bios: decouple common boot logic from
virtio)
ERROR: externs should be avoided in .c files
#31: FILE: pc-bios/s390-ccw/main.c:19:
+IplParameterBlock iplb __attribute__((__aligned__(PAGE_SIZE)));
total: 1 errors, 0 warnings, 65 lines checked
Patch 3/15 has style problems, please review. If any of these errors
are false positives report them to the maintainer, see
CHECKPATCH in MAINTAINERS.
4/15 Checking commit 6c0daf90e7a2 (s390-bios: Extend find_dev() for non-virtio
devices)
5/15 Checking commit 19fba0fd568a (s390-bios: Factor finding boot device out of
virtio code path)
6/15 Checking commit 9d517b7d847e (s390-bios: Clean up cio.h)
7/15 Checking commit bef31e545b82 (s390-bios: Decouple channel i/o logic from
virtio)
WARNING: added, moved or deleted file(s), does MAINTAINERS need updating?
#28:
new file mode 100644
total: 0 errors, 1 warnings, 123 lines checked
Patch 7/15 has style problems, please review. If any of these errors
are false positives report them to the maintainer, see
CHECKPATCH in MAINTAINERS.
8/15 Checking commit d0bf9e13e4f2 (s390-bios: Map low core memory)
WARNING: added, moved or deleted file(s), does MAINTAINERS need updating?
#36:
new file mode 100644
total: 0 errors, 1 warnings, 104 lines checked
Patch 8/15 has style problems, please review. If any of these errors
are false positives report them to the maintainer, see
CHECKPATCH in MAINTAINERS.
9/15 Checking commit ce04b580ff16 (s390-bios: ptr2u32 and u32toptr)
WARNING: added, moved or deleted file(s), does MAINTAINERS need updating?
#17:
new file mode 100644
total: 0 errors, 1 warnings, 31 lines checked
Patch 9/15 has style problems, please review. If any of these errors
are false positives report them to the maintainer, see
CHECKPATCH in MAINTAINERS.
10/15 Checking commit ed5a01a4d1bb (s390-bios: Support for running format-0/1
channel programs)
ERROR: trailing whitespace
#137: FILE: pc-bios/s390-ccw/cio.c:145:
+ * active (generating i/o interrupts). $
total: 1 errors, 0 warnings, 375 lines checked
Patch 10/15 has style problems, please review. If any of these errors
are false positives report them to the maintainer, see
CHECKPATCH in MAINTAINERS.
11/15 Checking commit 783a5d992e32 (s390-bios: cio error handling)
12/15 Checking commit c1dd91dcabf5 (s390-bios: Refactor virtio to run channel
programs via cio)
WARNING: line over 80 characters
#103: FILE: pc-bios/s390-ccw/virtio.c:298:
+ run_ccw(vdev, CCW_CMD_READ_VQ_CONF, &config, sizeof(config),
false) == 0,
WARNING: line over 80 characters
#116: FILE: pc-bios/s390-ccw/virtio.c:308:
+ run_ccw(vdev, CCW_CMD_WRITE_STATUS, &status, sizeof(status), false) ==
0,
total: 0 errors, 2 warnings, 107 lines checked
Patch 12/15 has style problems, please review. If any of these errors
are false positives report them to the maintainer, see
CHECKPATCH in MAINTAINERS.
13/15 Checking commit 2ad69205637b (s390-bios: Use control unit type to
determine boot method)
14/15 Checking commit ab7d59e21880 (s390-bios: Add channel command
codes/structs needed for dasd-ipl)
15/15 Checking commit ea96f08482fb (s390-bios: Support booting from real dasd
device)
WARNING: added, moved or deleted file(s), does MAINTAINERS need updating?
#26:
new file mode 100644
total: 0 errors, 1 warnings, 448 lines checked
Patch 15/15 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/address@hidden/testing.checkpatch/?type=message.
---
Email generated automatically by Patchew [http://patchew.org/].
Please send your feedback to address@hidden
- [Qemu-devel] [PATCH v4 15/15] s390-bios: Support booting from real dasd device, (continued)
- [Qemu-devel] [PATCH v4 15/15] s390-bios: Support booting from real dasd device, Jason J. Herne, 2019/03/11
- [Qemu-devel] [PATCH v4 14/15] s390-bios: Add channel command codes/structs needed for dasd-ipl, Jason J. Herne, 2019/03/11
- [Qemu-devel] [PATCH v4 12/15] s390-bios: Refactor virtio to run channel programs via cio, Jason J. Herne, 2019/03/11
- [Qemu-devel] [PATCH v4 09/15] s390-bios: ptr2u32 and u32toptr, Jason J. Herne, 2019/03/11
- [Qemu-devel] [PATCH v4 06/15] s390-bios: Clean up cio.h, Jason J. Herne, 2019/03/11
- [Qemu-devel] [PATCH v4 05/15] s390-bios: Factor finding boot device out of virtio code path, Jason J. Herne, 2019/03/11
- [Qemu-devel] [PATCH v4 01/15] s390 vfio-ccw: Add bootindex property and IPLB data, Jason J. Herne, 2019/03/11
- [Qemu-devel] [PATCH v4 02/15] s390-bios: decouple cio setup from virtio, Jason J. Herne, 2019/03/11
- Re: [Qemu-devel] [PATCH v4 00/15] s390: vfio-ccw dasd ipl support, no-reply, 2019/03/11
- Re: [Qemu-devel] [PATCH v4 00/15] s390: vfio-ccw dasd ipl support,
no-reply <=
- Re: [Qemu-devel] [PATCH v4 00/15] s390: vfio-ccw dasd ipl support, no-reply, 2019/03/11
- Re: [Qemu-devel] [PATCH v4 00/15] s390: vfio-ccw dasd ipl support, no-reply, 2019/03/11
- Re: [Qemu-devel] [PATCH v4 00/15] s390: vfio-ccw dasd ipl support, no-reply, 2019/03/11
- Re: [Qemu-devel] [PATCH v4 00/15] s390: vfio-ccw dasd ipl support, no-reply, 2019/03/11
- Re: [Qemu-devel] [PATCH v4 00/15] s390: vfio-ccw dasd ipl support, Cornelia Huck, 2019/03/11
- Re: [Qemu-devel] [PATCH v4 00/15] s390: vfio-ccw dasd ipl support, no-reply, 2019/03/11