* [igt-dev] [PATCH i-g-t 1/2] tools/l3_parity: Unnest exit handlers
@ 2019-09-07 18:12 Chris Wilson
2019-09-07 18:12 ` [igt-dev] [PATCH i-g-t 2/2] build: Ignore warnings for address of packed members Chris Wilson
` (3 more replies)
0 siblings, 4 replies; 5+ messages in thread
From: Chris Wilson @ 2019-09-07 18:12 UTC (permalink / raw)
To: intel-gfx; +Cc: igt-dev
The curse of using libigt where it is not wanted; in this case calling
drop-caches while we hold the forcewake is a recipe for a long wait.
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
---
tools/intel_l3_parity.c | 50 ++++++++++++++++++++++++-----------------
1 file changed, 29 insertions(+), 21 deletions(-)
diff --git a/tools/intel_l3_parity.c b/tools/intel_l3_parity.c
index 06a185c91..340f94b1a 100644
--- a/tools/intel_l3_parity.c
+++ b/tools/intel_l3_parity.c
@@ -180,6 +180,7 @@ int main(int argc, char *argv[])
const char *path[REAL_MAX_SLICES] = {"l3_parity", "l3_parity_slice_1"};
int row = 0, bank = 0, sbank = 0;
int fd[REAL_MAX_SLICES] = {0}, ret, i;
+ int exitcode = EXIT_FAILURE;
int action = '0';
int daemonize = 0;
int device, dir;
@@ -198,13 +199,13 @@ int main(int argc, char *argv[])
fd[i] = openat(dir, path[i], O_RDWR);
if (fd[i] < 0) {
if (i == 0) /* at least one slice must be supported */
- exit(77);
+ goto skip;
continue;
}
if (read(fd[i], l3logs[i], NUM_REGS * sizeof(uint32_t)) < 0) {
perror(path[i]);
- exit(77);
+ goto skip;
}
assert(lseek(fd[i], 0, SEEK_SET) == 0);
}
@@ -252,45 +253,45 @@ int main(int argc, char *argv[])
case '?':
case 'h':
usage(argv[0]);
- exit(EXIT_SUCCESS);
+ goto success;
case 'H':
printf("Number of slices: %d\n", MAX_SLICES);
printf("Number of banks: %d\n", num_banks());
printf("Subbanks per bank: %d\n", NUM_SUBBANKS);
printf("Max L3 size: %dK\n", L3_SIZE >> 10);
printf("Has error injection: %s\n", IS_HASWELL(devid) ? "yes" : "no");
- exit(EXIT_SUCCESS);
+ goto success;
case 'r':
row = atoi(optarg);
if (row >= MAX_ROW)
- exit(EXIT_FAILURE);
+ goto failure;
break;
case 'b':
bank = atoi(optarg);
if (bank >= num_banks() || bank >= MAX_BANKS_PER_SLICE)
- exit(EXIT_FAILURE);
+ goto failure;
break;
case 's':
sbank = atoi(optarg);
if (sbank >= NUM_SUBBANKS)
- exit(EXIT_FAILURE);
+ goto failure;
break;
case 'w':
which_slice = atoi(optarg);
if (which_slice >= MAX_SLICES)
- exit(EXIT_FAILURE);
+ goto failure;
break;
case 'i':
case 'u':
if (!IS_HASWELL(devid)) {
fprintf(stderr, "Error injection supported on HSW+ only\n");
- exit(EXIT_FAILURE);
+ goto failure;
}
case 'd':
if (optarg) {
ret = sscanf(optarg, "%d,%d,%d", &row, &bank, &sbank);
if (ret != 3)
- exit(EXIT_FAILURE);
+ goto failure;
}
case 'a':
case 'l':
@@ -298,24 +299,24 @@ int main(int argc, char *argv[])
case 'L':
if (action != '0') {
fprintf(stderr, "Only one action may be specified\n");
- exit(EXIT_FAILURE);
+ goto failure;
}
action = c;
break;
default:
- abort();
+ goto failure;
}
}
if (action == 'i') {
if (((dft >> 1) & 1) != which_slice) {
fprintf(stderr, "DFT register already has slice %d enabled, and we don't support multiple slices. Try modifying -w; but sometimes the register sticks in the wrong way\n", (dft >> 1) & 1);
- exit(EXIT_FAILURE);
+ goto failure;
}
if (which_slice == -1) {
fprintf(stderr, "Cannot inject errors to multiple slices (modify -w)\n");
- exit(EXIT_FAILURE);
+ goto failure;
}
if (dft & 1 && ((dft >> 1) && 1) == which_slice)
printf("warning: overwriting existing injections. This is very dangerous.\n");
@@ -332,7 +333,7 @@ int main(int argc, char *argv[])
memset(&par, 0, sizeof(par));
assert(l3_uevent_setup(&par) == 0);
assert(l3_listen(&par, daemonize == 1, &loc) == 0);
- exit(EXIT_SUCCESS);
+ goto success;
}
if (action == 'l')
@@ -359,7 +360,7 @@ int main(int argc, char *argv[])
case 'i':
if (bank == 3) {
fprintf(stderr, "The hardware does not support error inject on bank 3.\n");
- exit(EXIT_FAILURE);
+ goto failure;
}
dft |= row << 7;
dft |= sbank << 4;
@@ -375,13 +376,12 @@ int main(int argc, char *argv[])
case 'L':
break;
default:
- abort();
+ goto failure;
}
}
- intel_register_access_fini(&mmio_data);
if (action == 'l')
- exit(EXIT_SUCCESS);
+ goto success;
for_each_slice(i) {
if (fd[i] < 0)
@@ -390,11 +390,19 @@ int main(int argc, char *argv[])
ret = write(fd[i], l3logs[i], NUM_REGS * sizeof(uint32_t));
if (ret == -1) {
perror("Writing sysfs");
- exit(EXIT_FAILURE);
+ goto failure;
}
close(fd[i]);
}
- exit(EXIT_SUCCESS);
+success:
+ exitcode = EXIT_SUCCESS;
+failure:
+ intel_register_access_fini(&mmio_data);
+ return exitcode;
+
+skip:
+ exitcode = 77;
+ goto failure;
}
--
2.23.0
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [igt-dev] [PATCH i-g-t 2/2] build: Ignore warnings for address of packed members
2019-09-07 18:12 [igt-dev] [PATCH i-g-t 1/2] tools/l3_parity: Unnest exit handlers Chris Wilson
@ 2019-09-07 18:12 ` Chris Wilson
2019-09-07 18:47 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/2] tools/l3_parity: Unnest exit handlers Patchwork
` (2 subsequent siblings)
3 siblings, 0 replies; 5+ messages in thread
From: Chris Wilson @ 2019-09-07 18:12 UTC (permalink / raw)
To: intel-gfx; +Cc: igt-dev
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
---
meson.build | 1 +
1 file changed, 1 insertion(+)
diff --git a/meson.build b/meson.build
index 478869eb6..aeecf0dc6 100644
--- a/meson.build
+++ b/meson.build
@@ -44,6 +44,7 @@ cc_args = [
'-Wno-maybe-uninitialized',
'-Wno-missing-field-initializers',
'-Wno-pointer-arith',
+ '-Wno-address-of-packed-member',
'-Wno-sign-compare',
# Macros asserting on the range of their arguments triggers this.
'-Wno-type-limits',
--
2.23.0
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply related [flat|nested] 5+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/2] tools/l3_parity: Unnest exit handlers
2019-09-07 18:12 [igt-dev] [PATCH i-g-t 1/2] tools/l3_parity: Unnest exit handlers Chris Wilson
2019-09-07 18:12 ` [igt-dev] [PATCH i-g-t 2/2] build: Ignore warnings for address of packed members Chris Wilson
@ 2019-09-07 18:47 ` Patchwork
2019-09-07 19:57 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
2019-09-09 9:22 ` [igt-dev] [PATCH i-g-t 1/2] " Petri Latvala
3 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2019-09-07 18:47 UTC (permalink / raw)
To: Chris Wilson; +Cc: igt-dev
== Series Details ==
Series: series starting with [i-g-t,1/2] tools/l3_parity: Unnest exit handlers
URL : https://patchwork.freedesktop.org/series/66381/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_6849 -> IGTPW_3427
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://patchwork.freedesktop.org/api/1.0/series/66381/revisions/1/mbox/
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_3427:
### IGT changes ###
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* igt@gem_sync@basic-all:
- {fi-tgl-u}: NOTRUN -> [INCOMPLETE][1]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3427/fi-tgl-u/igt@gem_sync@basic-all.html
Known issues
------------
Here are the changes found in IGTPW_3427 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_basic@create-fd-close:
- fi-icl-u3: [PASS][2] -> [DMESG-WARN][3] ([fdo#107724])
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6849/fi-icl-u3/igt@gem_basic@create-fd-close.html
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3427/fi-icl-u3/igt@gem_basic@create-fd-close.html
* igt@i915_selftest@live_execlists:
- fi-skl-gvtdvm: [PASS][4] -> [DMESG-FAIL][5] ([fdo#111108])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6849/fi-skl-gvtdvm/igt@i915_selftest@live_execlists.html
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3427/fi-skl-gvtdvm/igt@i915_selftest@live_execlists.html
* igt@kms_chamelium@dp-crc-fast:
- fi-kbl-7500u: [PASS][6] -> [FAIL][7] ([fdo#109483] / [fdo#109635 ])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6849/fi-kbl-7500u/igt@kms_chamelium@dp-crc-fast.html
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3427/fi-kbl-7500u/igt@kms_chamelium@dp-crc-fast.html
* igt@kms_frontbuffer_tracking@basic:
- fi-hsw-peppy: [PASS][8] -> [DMESG-WARN][9] ([fdo#102614])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6849/fi-hsw-peppy/igt@kms_frontbuffer_tracking@basic.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3427/fi-hsw-peppy/igt@kms_frontbuffer_tracking@basic.html
#### Possible fixes ####
* igt@gem_exec_gttfill@basic:
- {fi-tgl-u}: [INCOMPLETE][10] -> [PASS][11]
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6849/fi-tgl-u/igt@gem_exec_gttfill@basic.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3427/fi-tgl-u/igt@gem_exec_gttfill@basic.html
* igt@gem_exec_suspend@basic-s3:
- fi-blb-e6850: [INCOMPLETE][12] ([fdo#107718]) -> [PASS][13]
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6849/fi-blb-e6850/igt@gem_exec_suspend@basic-s3.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3427/fi-blb-e6850/igt@gem_exec_suspend@basic-s3.html
* igt@i915_module_load@reload-no-display:
- fi-icl-u3: [DMESG-WARN][14] ([fdo#107724]) -> [PASS][15]
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6849/fi-icl-u3/igt@i915_module_load@reload-no-display.html
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3427/fi-icl-u3/igt@i915_module_load@reload-no-display.html
* igt@kms_chamelium@hdmi-hpd-fast:
- fi-kbl-7500u: [FAIL][16] ([fdo#111096]) -> [PASS][17]
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6849/fi-kbl-7500u/igt@kms_chamelium@hdmi-hpd-fast.html
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3427/fi-kbl-7500u/igt@kms_chamelium@hdmi-hpd-fast.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#102505]: https://bugs.freedesktop.org/show_bug.cgi?id=102505
[fdo#102614]: https://bugs.freedesktop.org/show_bug.cgi?id=102614
[fdo#107718]: https://bugs.freedesktop.org/show_bug.cgi?id=107718
[fdo#107724]: https://bugs.freedesktop.org/show_bug.cgi?id=107724
[fdo#109483]: https://bugs.freedesktop.org/show_bug.cgi?id=109483
[fdo#109635 ]: https://bugs.freedesktop.org/show_bug.cgi?id=109635
[fdo#111045]: https://bugs.freedesktop.org/show_bug.cgi?id=111045
[fdo#111049]: https://bugs.freedesktop.org/show_bug.cgi?id=111049
[fdo#111096]: https://bugs.freedesktop.org/show_bug.cgi?id=111096
[fdo#111108]: https://bugs.freedesktop.org/show_bug.cgi?id=111108
Participating hosts (52 -> 44)
------------------------------
Missing (8): fi-ilk-m540 fi-hsw-4200u fi-byt-squawks fi-bsw-cyan fi-icl-y fi-icl-guc fi-byt-clapper fi-bdw-samus
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_5173 -> IGTPW_3427
CI-20190529: 20190529
CI_DRM_6849: d4111d3dd34455068de02ce18b796a631c7fe3a9 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_3427: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3427/
IGT_5173: 3fb0f227d8856008f89a797879e27094745ce97e @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3427/
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 5+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for series starting with [i-g-t,1/2] tools/l3_parity: Unnest exit handlers
2019-09-07 18:12 [igt-dev] [PATCH i-g-t 1/2] tools/l3_parity: Unnest exit handlers Chris Wilson
2019-09-07 18:12 ` [igt-dev] [PATCH i-g-t 2/2] build: Ignore warnings for address of packed members Chris Wilson
2019-09-07 18:47 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/2] tools/l3_parity: Unnest exit handlers Patchwork
@ 2019-09-07 19:57 ` Patchwork
2019-09-09 9:22 ` [igt-dev] [PATCH i-g-t 1/2] " Petri Latvala
3 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2019-09-07 19:57 UTC (permalink / raw)
To: Chris Wilson; +Cc: igt-dev
== Series Details ==
Series: series starting with [i-g-t,1/2] tools/l3_parity: Unnest exit handlers
URL : https://patchwork.freedesktop.org/series/66381/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_6849_full -> IGTPW_3427_full
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://patchwork.freedesktop.org/api/1.0/series/66381/revisions/1/mbox/
Known issues
------------
Here are the changes found in IGTPW_3427_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_ctx_shared@exec-single-timeline-bsd:
- shard-iclb: [PASS][1] -> [SKIP][2] ([fdo#110841])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6849/shard-iclb7/igt@gem_ctx_shared@exec-single-timeline-bsd.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3427/shard-iclb2/igt@gem_ctx_shared@exec-single-timeline-bsd.html
* igt@gem_exec_schedule@fifo-bsd:
- shard-iclb: [PASS][3] -> [SKIP][4] ([fdo#111325]) +2 similar issues
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6849/shard-iclb3/igt@gem_exec_schedule@fifo-bsd.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3427/shard-iclb4/igt@gem_exec_schedule@fifo-bsd.html
* igt@gem_exec_schedule@preempt-bsd1:
- shard-iclb: [PASS][5] -> [SKIP][6] ([fdo#109276]) +19 similar issues
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6849/shard-iclb2/igt@gem_exec_schedule@preempt-bsd1.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3427/shard-iclb8/igt@gem_exec_schedule@preempt-bsd1.html
* igt@kms_color@pipe-a-ctm-green-to-red:
- shard-kbl: [PASS][7] -> [FAIL][8] ([fdo#107201])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6849/shard-kbl6/igt@kms_color@pipe-a-ctm-green-to-red.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3427/shard-kbl3/igt@kms_color@pipe-a-ctm-green-to-red.html
* igt@kms_cursor_crc@pipe-b-cursor-256x85-sliding:
- shard-kbl: [PASS][9] -> [FAIL][10] ([fdo#103232]) +1 similar issue
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6849/shard-kbl2/igt@kms_cursor_crc@pipe-b-cursor-256x85-sliding.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3427/shard-kbl4/igt@kms_cursor_crc@pipe-b-cursor-256x85-sliding.html
* igt@kms_cursor_crc@pipe-b-cursor-alpha-opaque:
- shard-apl: [PASS][11] -> [FAIL][12] ([fdo#103232]) +1 similar issue
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6849/shard-apl1/igt@kms_cursor_crc@pipe-b-cursor-alpha-opaque.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3427/shard-apl4/igt@kms_cursor_crc@pipe-b-cursor-alpha-opaque.html
- shard-glk: [PASS][13] -> [FAIL][14] ([fdo#103232])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6849/shard-glk2/igt@kms_cursor_crc@pipe-b-cursor-alpha-opaque.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3427/shard-glk2/igt@kms_cursor_crc@pipe-b-cursor-alpha-opaque.html
* igt@kms_frontbuffer_tracking@fbc-1p-rte:
- shard-iclb: [PASS][15] -> [FAIL][16] ([fdo#103167] / [fdo#110378])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6849/shard-iclb7/igt@kms_frontbuffer_tracking@fbc-1p-rte.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3427/shard-iclb8/igt@kms_frontbuffer_tracking@fbc-1p-rte.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-pwrite:
- shard-iclb: [PASS][17] -> [FAIL][18] ([fdo#103167]) +3 similar issues
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6849/shard-iclb1/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-pwrite.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3427/shard-iclb1/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-pwrite.html
* igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a:
- shard-kbl: [PASS][19] -> [INCOMPLETE][20] ([fdo#103665])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6849/shard-kbl6/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3427/shard-kbl2/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html
* igt@kms_pipe_crc_basic@suspend-read-crc-pipe-b:
- shard-apl: [PASS][21] -> [DMESG-WARN][22] ([fdo#108566]) +2 similar issues
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6849/shard-apl5/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-b.html
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3427/shard-apl7/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-b.html
* igt@kms_plane_lowres@pipe-a-tiling-x:
- shard-iclb: [PASS][23] -> [FAIL][24] ([fdo#103166]) +1 similar issue
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6849/shard-iclb1/igt@kms_plane_lowres@pipe-a-tiling-x.html
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3427/shard-iclb6/igt@kms_plane_lowres@pipe-a-tiling-x.html
* igt@kms_psr2_su@frontbuffer:
- shard-iclb: [PASS][25] -> [SKIP][26] ([fdo#109642] / [fdo#111068])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6849/shard-iclb2/igt@kms_psr2_su@frontbuffer.html
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3427/shard-iclb1/igt@kms_psr2_su@frontbuffer.html
* igt@kms_psr@psr2_sprite_mmap_gtt:
- shard-iclb: [PASS][27] -> [SKIP][28] ([fdo#109441]) +3 similar issues
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6849/shard-iclb2/igt@kms_psr@psr2_sprite_mmap_gtt.html
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3427/shard-iclb5/igt@kms_psr@psr2_sprite_mmap_gtt.html
* igt@kms_setmode@basic:
- shard-hsw: [PASS][29] -> [FAIL][30] ([fdo#99912])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6849/shard-hsw4/igt@kms_setmode@basic.html
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3427/shard-hsw1/igt@kms_setmode@basic.html
#### Possible fixes ####
* igt@gem_ctx_isolation@bcs0-s3:
- shard-kbl: [DMESG-WARN][31] ([fdo#103313]) -> [PASS][32]
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6849/shard-kbl6/igt@gem_ctx_isolation@bcs0-s3.html
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3427/shard-kbl3/igt@gem_ctx_isolation@bcs0-s3.html
* igt@gem_exec_schedule@deep-bsd:
- shard-iclb: [SKIP][33] ([fdo#111325]) -> [PASS][34] +7 similar issues
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6849/shard-iclb1/igt@gem_exec_schedule@deep-bsd.html
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3427/shard-iclb3/igt@gem_exec_schedule@deep-bsd.html
* igt@gem_exec_schedule@independent-bsd2:
- shard-iclb: [SKIP][35] ([fdo#109276]) -> [PASS][36] +16 similar issues
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6849/shard-iclb6/igt@gem_exec_schedule@independent-bsd2.html
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3427/shard-iclb4/igt@gem_exec_schedule@independent-bsd2.html
* igt@gem_exec_suspend@basic-s3:
- shard-kbl: [INCOMPLETE][37] ([fdo#103665]) -> [PASS][38]
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6849/shard-kbl3/igt@gem_exec_suspend@basic-s3.html
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3427/shard-kbl1/igt@gem_exec_suspend@basic-s3.html
* igt@gem_tiled_swapping@non-threaded:
- shard-apl: [DMESG-WARN][39] ([fdo#108686]) -> [PASS][40]
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6849/shard-apl4/igt@gem_tiled_swapping@non-threaded.html
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3427/shard-apl6/igt@gem_tiled_swapping@non-threaded.html
* igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy:
- shard-hsw: [FAIL][41] ([fdo#105767]) -> [PASS][42]
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6849/shard-hsw1/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3427/shard-hsw1/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible:
- shard-glk: [FAIL][43] ([fdo#105363]) -> [PASS][44]
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6849/shard-glk9/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3427/shard-glk8/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
* igt@kms_frontbuffer_tracking@fbc-stridechange:
- shard-glk: [FAIL][45] ([fdo#103167]) -> [PASS][46]
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6849/shard-glk2/igt@kms_frontbuffer_tracking@fbc-stridechange.html
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3427/shard-glk5/igt@kms_frontbuffer_tracking@fbc-stridechange.html
- shard-kbl: [FAIL][47] ([fdo#103167]) -> [PASS][48]
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6849/shard-kbl6/igt@kms_frontbuffer_tracking@fbc-stridechange.html
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3427/shard-kbl4/igt@kms_frontbuffer_tracking@fbc-stridechange.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-blt:
- shard-iclb: [FAIL][49] ([fdo#103167]) -> [PASS][50] +5 similar issues
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6849/shard-iclb2/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-blt.html
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3427/shard-iclb5/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-pri-indfb-draw-blt.html
* igt@kms_psr@psr2_sprite_plane_move:
- shard-iclb: [SKIP][51] ([fdo#109441]) -> [PASS][52] +2 similar issues
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6849/shard-iclb3/igt@kms_psr@psr2_sprite_plane_move.html
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3427/shard-iclb2/igt@kms_psr@psr2_sprite_plane_move.html
* igt@kms_vblank@pipe-c-ts-continuation-suspend:
- shard-apl: [DMESG-WARN][53] ([fdo#108566]) -> [PASS][54] +6 similar issues
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6849/shard-apl3/igt@kms_vblank@pipe-c-ts-continuation-suspend.html
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3427/shard-apl2/igt@kms_vblank@pipe-c-ts-continuation-suspend.html
#### Warnings ####
* igt@gem_mocs_settings@mocs-reset-bsd2:
- shard-iclb: [SKIP][55] ([fdo#109276]) -> [FAIL][56] ([fdo#111330]) +1 similar issue
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6849/shard-iclb6/igt@gem_mocs_settings@mocs-reset-bsd2.html
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3427/shard-iclb2/igt@gem_mocs_settings@mocs-reset-bsd2.html
* igt@kms_dp_dsc@basic-dsc-enable-edp:
- shard-iclb: [SKIP][57] ([fdo#109349]) -> [DMESG-WARN][58] ([fdo#107724])
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6849/shard-iclb3/igt@kms_dp_dsc@basic-dsc-enable-edp.html
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3427/shard-iclb2/igt@kms_dp_dsc@basic-dsc-enable-edp.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt:
- shard-apl: [INCOMPLETE][59] ([fdo#103927]) -> [SKIP][60] ([fdo#109271])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6849/shard-apl2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3427/shard-apl2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-blt.html
[fdo#103166]: https://bugs.freedesktop.org/show_bug.cgi?id=103166
[fdo#103167]: https://bugs.freedesktop.org/show_bug.cgi?id=103167
[fdo#103232]: https://bugs.freedesktop.org/show_bug.cgi?id=103232
[fdo#103313]: https://bugs.freedesktop.org/show_bug.cgi?id=103313
[fdo#103665]: https://bugs.freedesktop.org/show_bug.cgi?id=103665
[fdo#103927]: https://bugs.freedesktop.org/show_bug.cgi?id=103927
[fdo#105363]: https://bugs.freedesktop.org/show_bug.cgi?id=105363
[fdo#105767]: https://bugs.freedesktop.org/show_bug.cgi?id=105767
[fdo#107201]: https://bugs.freedesktop.org/show_bug.cgi?id=107201
[fdo#107724]: https://bugs.freedesktop.org/show_bug.cgi?id=107724
[fdo#108566]: https://bugs.freedesktop.org/show_bug.cgi?id=108566
[fdo#108686]: https://bugs.freedesktop.org/show_bug.cgi?id=108686
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109276]: https://bugs.freedesktop.org/show_bug.cgi?id=109276
[fdo#109349]: https://bugs.freedesktop.org/show_bug.cgi?id=109349
[fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441
[fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642
[fdo#110378]: https://bugs.freedesktop.org/show_bug.cgi?id=110378
[fdo#110841]: https://bugs.freedesktop.org/show_bug.cgi?id=110841
[fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
[fdo#111325]: https://bugs.freedesktop.org/show_bug.cgi?id=111325
[fdo#111330]: https://bugs.freedesktop.org/show_bug.cgi?id=111330
[fdo#99912]: https://bugs.freedesktop.org/show_bug.cgi?id=99912
Participating hosts (10 -> 6)
------------------------------
Missing (4): pig-skl-6260u shard-skl pig-hsw-4770r pig-glk-j5005
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_5173 -> IGTPW_3427
* Piglit: piglit_4509 -> None
CI-20190529: 20190529
CI_DRM_6849: d4111d3dd34455068de02ce18b796a631c7fe3a9 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_3427: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3427/
IGT_5173: 3fb0f227d8856008f89a797879e27094745ce97e @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3427/
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [igt-dev] [PATCH i-g-t 1/2] tools/l3_parity: Unnest exit handlers
2019-09-07 18:12 [igt-dev] [PATCH i-g-t 1/2] tools/l3_parity: Unnest exit handlers Chris Wilson
` (2 preceding siblings ...)
2019-09-07 19:57 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
@ 2019-09-09 9:22 ` Petri Latvala
3 siblings, 0 replies; 5+ messages in thread
From: Petri Latvala @ 2019-09-09 9:22 UTC (permalink / raw)
To: Chris Wilson; +Cc: igt-dev, intel-gfx
On Sat, Sep 07, 2019 at 07:12:56PM +0100, Chris Wilson wrote:
> The curse of using libigt where it is not wanted; in this case calling
> drop-caches while we hold the forcewake is a recipe for a long wait.
>
> Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
For the series:
Reviewed-by: Petri Latvala <petri.latvala@intel.com>
> ---
> tools/intel_l3_parity.c | 50 ++++++++++++++++++++++++-----------------
> 1 file changed, 29 insertions(+), 21 deletions(-)
>
> diff --git a/tools/intel_l3_parity.c b/tools/intel_l3_parity.c
> index 06a185c91..340f94b1a 100644
> --- a/tools/intel_l3_parity.c
> +++ b/tools/intel_l3_parity.c
> @@ -180,6 +180,7 @@ int main(int argc, char *argv[])
> const char *path[REAL_MAX_SLICES] = {"l3_parity", "l3_parity_slice_1"};
> int row = 0, bank = 0, sbank = 0;
> int fd[REAL_MAX_SLICES] = {0}, ret, i;
> + int exitcode = EXIT_FAILURE;
> int action = '0';
> int daemonize = 0;
> int device, dir;
> @@ -198,13 +199,13 @@ int main(int argc, char *argv[])
> fd[i] = openat(dir, path[i], O_RDWR);
> if (fd[i] < 0) {
> if (i == 0) /* at least one slice must be supported */
> - exit(77);
> + goto skip;
> continue;
> }
>
> if (read(fd[i], l3logs[i], NUM_REGS * sizeof(uint32_t)) < 0) {
> perror(path[i]);
> - exit(77);
> + goto skip;
> }
> assert(lseek(fd[i], 0, SEEK_SET) == 0);
> }
> @@ -252,45 +253,45 @@ int main(int argc, char *argv[])
> case '?':
> case 'h':
> usage(argv[0]);
> - exit(EXIT_SUCCESS);
> + goto success;
> case 'H':
> printf("Number of slices: %d\n", MAX_SLICES);
> printf("Number of banks: %d\n", num_banks());
> printf("Subbanks per bank: %d\n", NUM_SUBBANKS);
> printf("Max L3 size: %dK\n", L3_SIZE >> 10);
> printf("Has error injection: %s\n", IS_HASWELL(devid) ? "yes" : "no");
> - exit(EXIT_SUCCESS);
> + goto success;
> case 'r':
> row = atoi(optarg);
> if (row >= MAX_ROW)
> - exit(EXIT_FAILURE);
> + goto failure;
> break;
> case 'b':
> bank = atoi(optarg);
> if (bank >= num_banks() || bank >= MAX_BANKS_PER_SLICE)
> - exit(EXIT_FAILURE);
> + goto failure;
> break;
> case 's':
> sbank = atoi(optarg);
> if (sbank >= NUM_SUBBANKS)
> - exit(EXIT_FAILURE);
> + goto failure;
> break;
> case 'w':
> which_slice = atoi(optarg);
> if (which_slice >= MAX_SLICES)
> - exit(EXIT_FAILURE);
> + goto failure;
> break;
> case 'i':
> case 'u':
> if (!IS_HASWELL(devid)) {
> fprintf(stderr, "Error injection supported on HSW+ only\n");
> - exit(EXIT_FAILURE);
> + goto failure;
> }
> case 'd':
> if (optarg) {
> ret = sscanf(optarg, "%d,%d,%d", &row, &bank, &sbank);
> if (ret != 3)
> - exit(EXIT_FAILURE);
> + goto failure;
> }
> case 'a':
> case 'l':
> @@ -298,24 +299,24 @@ int main(int argc, char *argv[])
> case 'L':
> if (action != '0') {
> fprintf(stderr, "Only one action may be specified\n");
> - exit(EXIT_FAILURE);
> + goto failure;
> }
> action = c;
> break;
> default:
> - abort();
> + goto failure;
> }
> }
>
> if (action == 'i') {
> if (((dft >> 1) & 1) != which_slice) {
> fprintf(stderr, "DFT register already has slice %d enabled, and we don't support multiple slices. Try modifying -w; but sometimes the register sticks in the wrong way\n", (dft >> 1) & 1);
> - exit(EXIT_FAILURE);
> + goto failure;
> }
>
> if (which_slice == -1) {
> fprintf(stderr, "Cannot inject errors to multiple slices (modify -w)\n");
> - exit(EXIT_FAILURE);
> + goto failure;
> }
> if (dft & 1 && ((dft >> 1) && 1) == which_slice)
> printf("warning: overwriting existing injections. This is very dangerous.\n");
> @@ -332,7 +333,7 @@ int main(int argc, char *argv[])
> memset(&par, 0, sizeof(par));
> assert(l3_uevent_setup(&par) == 0);
> assert(l3_listen(&par, daemonize == 1, &loc) == 0);
> - exit(EXIT_SUCCESS);
> + goto success;
> }
>
> if (action == 'l')
> @@ -359,7 +360,7 @@ int main(int argc, char *argv[])
> case 'i':
> if (bank == 3) {
> fprintf(stderr, "The hardware does not support error inject on bank 3.\n");
> - exit(EXIT_FAILURE);
> + goto failure;
> }
> dft |= row << 7;
> dft |= sbank << 4;
> @@ -375,13 +376,12 @@ int main(int argc, char *argv[])
> case 'L':
> break;
> default:
> - abort();
> + goto failure;
> }
> }
>
> - intel_register_access_fini(&mmio_data);
> if (action == 'l')
> - exit(EXIT_SUCCESS);
> + goto success;
>
> for_each_slice(i) {
> if (fd[i] < 0)
> @@ -390,11 +390,19 @@ int main(int argc, char *argv[])
> ret = write(fd[i], l3logs[i], NUM_REGS * sizeof(uint32_t));
> if (ret == -1) {
> perror("Writing sysfs");
> - exit(EXIT_FAILURE);
> + goto failure;
> }
> close(fd[i]);
> }
>
>
> - exit(EXIT_SUCCESS);
> +success:
> + exitcode = EXIT_SUCCESS;
> +failure:
> + intel_register_access_fini(&mmio_data);
> + return exitcode;
> +
> +skip:
> + exitcode = 77;
> + goto failure;
> }
> --
> 2.23.0
>
> _______________________________________________
> igt-dev mailing list
> igt-dev@lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/igt-dev
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2019-09-09 9:22 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-09-07 18:12 [igt-dev] [PATCH i-g-t 1/2] tools/l3_parity: Unnest exit handlers Chris Wilson
2019-09-07 18:12 ` [igt-dev] [PATCH i-g-t 2/2] build: Ignore warnings for address of packed members Chris Wilson
2019-09-07 18:47 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/2] tools/l3_parity: Unnest exit handlers Patchwork
2019-09-07 19:57 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
2019-09-09 9:22 ` [igt-dev] [PATCH i-g-t 1/2] " Petri Latvala
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox