* [igt-dev] [PATCH i-g-t] tests/i915/gem_mmap: test for non pagealingned mmaps
@ 2019-04-08 15:50 Ramalingam C
2019-04-08 15:52 ` Chris Wilson
` (3 more replies)
0 siblings, 4 replies; 8+ messages in thread
From: Ramalingam C @ 2019-04-08 15:50 UTC (permalink / raw)
To: igt-dev, tvrtko.ursulin
Kernel supports the non page aligned mmaps. Hence this new subtest
helps to maintain the sanity of such support.
Signed-off-by: Ramalingam C <ramalingam.c@intel.com>
---
tests/i915/gem_mmap.c | 15 +++++++++++++++
1 file changed, 15 insertions(+)
diff --git a/tests/i915/gem_mmap.c b/tests/i915/gem_mmap.c
index 1f5348d9133b..f66d8b896268 100644
--- a/tests/i915/gem_mmap.c
+++ b/tests/i915/gem_mmap.c
@@ -228,6 +228,21 @@ igt_main
}
}
+ igt_subtest("page_nonaligned") {
+ struct drm_i915_gem_mmap arg = {
+ .handle = gem_create(fd, PAGE_SIZE),
+ .size = PAGE_SIZE - 5,
+ .flags = I915_MMAP_WC,
+ };
+
+ igt_debug("Trying to mmap page nonaligned size : %'"PRIu64"\n",
+ (unsigned long)arg.size);
+ igt_assert_eq(mmap_ioctl(fd, &arg), 0);
+
+ gem_close(fd, arg.handle);
+ munmap(from_user_pointer(arg.addr_ptr), PAGE_SIZE - 5);
+ }
+
igt_subtest("basic") {
struct drm_i915_gem_mmap arg = {
.handle = gem_create(fd, OBJECT_SIZE),
--
2.19.1
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [igt-dev] [PATCH i-g-t] tests/i915/gem_mmap: test for non pagealingned mmaps
2019-04-08 15:50 [igt-dev] [PATCH i-g-t] tests/i915/gem_mmap: test for non pagealingned mmaps Ramalingam C
@ 2019-04-08 15:52 ` Chris Wilson
2019-04-08 16:01 ` C, Ramalingam
2019-04-08 16:01 ` Tvrtko Ursulin
` (2 subsequent siblings)
3 siblings, 1 reply; 8+ messages in thread
From: Chris Wilson @ 2019-04-08 15:52 UTC (permalink / raw)
To: Ramalingam C, igt-dev, tvrtko.ursulin
Quoting Ramalingam C (2019-04-08 16:50:38)
> Kernel supports the non page aligned mmaps. Hence this new subtest
> helps to maintain the sanity of such support.
No. That was sloppiness.
mmap(2):
EINVAL We don't like addr, length, or offset (e.g., they are too large,
or not aligned on a page boundary).
-Chris
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [igt-dev] [PATCH i-g-t] tests/i915/gem_mmap: test for non pagealingned mmaps
2019-04-08 15:50 [igt-dev] [PATCH i-g-t] tests/i915/gem_mmap: test for non pagealingned mmaps Ramalingam C
2019-04-08 15:52 ` Chris Wilson
@ 2019-04-08 16:01 ` Tvrtko Ursulin
2019-04-08 16:10 ` Chris Wilson
2019-04-08 17:17 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
2019-04-08 20:11 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
3 siblings, 1 reply; 8+ messages in thread
From: Tvrtko Ursulin @ 2019-04-08 16:01 UTC (permalink / raw)
To: Ramalingam C, igt-dev
On 08/04/2019 16:50, Ramalingam C wrote:
> Kernel supports the non page aligned mmaps. Hence this new subtest
s/Kernel/i915/ to make Chris happy. Maybe also expand with "by mistake"
and clarify this applies only to CPU WC mmap flavour.
Unless Chris is objecting to testing this to start with?
> helps to maintain the sanity of such support.
>
> Signed-off-by: Ramalingam C <ramalingam.c@intel.com>
> ---
> tests/i915/gem_mmap.c | 15 +++++++++++++++
> 1 file changed, 15 insertions(+)
>
> diff --git a/tests/i915/gem_mmap.c b/tests/i915/gem_mmap.c
> index 1f5348d9133b..f66d8b896268 100644
> --- a/tests/i915/gem_mmap.c
> +++ b/tests/i915/gem_mmap.c
> @@ -228,6 +228,21 @@ igt_main
> }
> }
>
> + igt_subtest("page_nonaligned") {
> + struct drm_i915_gem_mmap arg = {
> + .handle = gem_create(fd, PAGE_SIZE),
> + .size = PAGE_SIZE - 5,
> + .flags = I915_MMAP_WC,
> + };
> +
> + igt_debug("Trying to mmap page nonaligned size : %'"PRIu64"\n",
> + (unsigned long)arg.size);
PRIu64 does not match unsigned long on 32-bit I think.
But more importantly we normally don't bother with such debug messages
especially when test is so trivial. So I'd just remove it.
> + igt_assert_eq(mmap_ioctl(fd, &arg), 0);
> +
> + gem_close(fd, arg.handle);
> + munmap(from_user_pointer(arg.addr_ptr), PAGE_SIZE - 5);
Nitpick, add a local "const size_t mmap_size = PAGE_SIZE - 5" and then
you don't have to repeat the value.
> + }
> +
> igt_subtest("basic") {
> struct drm_i915_gem_mmap arg = {
> .handle = gem_create(fd, OBJECT_SIZE),
>
Otherwise looks good to me.
Regards,
Tvrtko
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [igt-dev] [PATCH i-g-t] tests/i915/gem_mmap: test for non pagealingned mmaps
2019-04-08 15:52 ` Chris Wilson
@ 2019-04-08 16:01 ` C, Ramalingam
0 siblings, 0 replies; 8+ messages in thread
From: C, Ramalingam @ 2019-04-08 16:01 UTC (permalink / raw)
To: Chris Wilson, igt-dev@lists.freedesktop.org,
tvrtko.ursulin@linux.intel.com
> -----Original Message-----
> From: Chris Wilson [mailto:chris@chris-wilson.co.uk]
> Sent: Monday, April 8, 2019 9:23 PM
> To: C, Ramalingam <ramalingam.c@intel.com>; igt-dev@lists.freedesktop.org;
> tvrtko.ursulin@linux.intel.com
> Subject: Re: [igt-dev] [PATCH i-g-t] tests/i915/gem_mmap: test for non
> pagealingned mmaps
>
> Quoting Ramalingam C (2019-04-08 16:50:38)
> > Kernel supports the non page aligned mmaps. Hence this new subtest
> > helps to maintain the sanity of such support.
>
> No. That was sloppiness.
Chris,
Thanks for looking into this.
But at present, isn’t the kernel handles the non page aligned mmap request at present!?
-Ram.
>
> mmap(2):
> EINVAL We don't like addr, length, or offset (e.g., they are too large,
> or not aligned on a page boundary).
> -Chris
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [igt-dev] [PATCH i-g-t] tests/i915/gem_mmap: test for non pagealingned mmaps
2019-04-08 16:01 ` Tvrtko Ursulin
@ 2019-04-08 16:10 ` Chris Wilson
2019-04-08 16:18 ` Tvrtko Ursulin
0 siblings, 1 reply; 8+ messages in thread
From: Chris Wilson @ 2019-04-08 16:10 UTC (permalink / raw)
To: Ramalingam C, Tvrtko Ursulin, igt-dev
Quoting Tvrtko Ursulin (2019-04-08 17:01:00)
>
> On 08/04/2019 16:50, Ramalingam C wrote:
> > Kernel supports the non page aligned mmaps. Hence this new subtest
>
> s/Kernel/i915/ to make Chris happy. Maybe also expand with "by mistake"
> and clarify this applies only to CPU WC mmap flavour.
>
> Unless Chris is objecting to testing this to start with?
Correct. This is not behaviour we expect to be enshrined in the ABI for
future generations.
-Chris
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [igt-dev] [PATCH i-g-t] tests/i915/gem_mmap: test for non pagealingned mmaps
2019-04-08 16:10 ` Chris Wilson
@ 2019-04-08 16:18 ` Tvrtko Ursulin
0 siblings, 0 replies; 8+ messages in thread
From: Tvrtko Ursulin @ 2019-04-08 16:18 UTC (permalink / raw)
To: Chris Wilson, Ramalingam C, igt-dev
On 08/04/2019 17:10, Chris Wilson wrote:
> Quoting Tvrtko Ursulin (2019-04-08 17:01:00)
>>
>> On 08/04/2019 16:50, Ramalingam C wrote:
>>> Kernel supports the non page aligned mmaps. Hence this new subtest
>>
>> s/Kernel/i915/ to make Chris happy. Maybe also expand with "by mistake"
>> and clarify this applies only to CPU WC mmap flavour.
I need to correct myself, it applies to all CPU mmap flavours. So the
test would need to test both strictly speaking.
>>
>> Unless Chris is objecting to testing this to start with?
>
> Correct. This is not behaviour we expect to be enshrined in the ABI for
> future generations.
One could argue that since vm_mmap silently aligns it is the Linux ABI.
And we did have an user report for the regression.
But if we have reached another impasse, my suggestion is that Ram just
closes the assigned ticked with RESOLVED/WONTFIX, references the mailing
list discussion, and moves on. It's not worth the hassle.
Regards,
Tvrtko
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 8+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for tests/i915/gem_mmap: test for non pagealingned mmaps
2019-04-08 15:50 [igt-dev] [PATCH i-g-t] tests/i915/gem_mmap: test for non pagealingned mmaps Ramalingam C
2019-04-08 15:52 ` Chris Wilson
2019-04-08 16:01 ` Tvrtko Ursulin
@ 2019-04-08 17:17 ` Patchwork
2019-04-08 20:11 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
3 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2019-04-08 17:17 UTC (permalink / raw)
To: C, Ramalingam; +Cc: igt-dev
== Series Details ==
Series: tests/i915/gem_mmap: test for non pagealingned mmaps
URL : https://patchwork.freedesktop.org/series/59181/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_5889 -> IGTPW_2816
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://patchwork.freedesktop.org/api/1.0/series/59181/revisions/1/mbox/
Known issues
------------
Here are the changes found in IGTPW_2816 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@amdgpu/amd_basic@userptr:
- fi-kbl-8809g: PASS -> DMESG-WARN [fdo#108965]
* igt@kms_frontbuffer_tracking@basic:
- fi-icl-u3: PASS -> FAIL [fdo#103167]
* igt@kms_pipe_crc_basic@hang-read-crc-pipe-a:
- fi-byt-clapper: PASS -> FAIL [fdo#103191] / [fdo#107362]
* igt@kms_pipe_crc_basic@suspend-read-crc-pipe-b:
- fi-blb-e6850: PASS -> INCOMPLETE [fdo#107718]
* igt@runner@aborted:
- fi-glk-dsi: NOTRUN -> FAIL [k.org#202321]
#### Possible fixes ####
* igt@i915_selftest@live_evict:
- fi-bsw-kefka: DMESG-WARN [fdo#107709] -> PASS
* igt@i915_selftest@live_execlists:
- fi-apl-guc: INCOMPLETE [fdo#103927] / [fdo#109720] -> PASS
* igt@i915_selftest@live_hangcheck:
- fi-bxt-dsi: INCOMPLETE [fdo#103927] -> PASS
* igt@kms_pipe_crc_basic@nonblocking-crc-pipe-b-frame-sequence:
- fi-byt-clapper: FAIL [fdo#103191] / [fdo#107362] -> PASS +1
#### Warnings ####
* igt@i915_pm_rpm@module-reload:
- fi-glk-dsi: INCOMPLETE [fdo#103359] / [k.org#198133] -> DMESG-WARN [fdo#105538] / [fdo#107732] / [fdo#109513]
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#103167]: https://bugs.freedesktop.org/show_bug.cgi?id=103167
[fdo#103191]: https://bugs.freedesktop.org/show_bug.cgi?id=103191
[fdo#103359]: https://bugs.freedesktop.org/show_bug.cgi?id=103359
[fdo#103927]: https://bugs.freedesktop.org/show_bug.cgi?id=103927
[fdo#105538]: https://bugs.freedesktop.org/show_bug.cgi?id=105538
[fdo#107362]: https://bugs.freedesktop.org/show_bug.cgi?id=107362
[fdo#107709]: https://bugs.freedesktop.org/show_bug.cgi?id=107709
[fdo#107718]: https://bugs.freedesktop.org/show_bug.cgi?id=107718
[fdo#107732]: https://bugs.freedesktop.org/show_bug.cgi?id=107732
[fdo#108569]: https://bugs.freedesktop.org/show_bug.cgi?id=108569
[fdo#108965]: https://bugs.freedesktop.org/show_bug.cgi?id=108965
[fdo#109276]: https://bugs.freedesktop.org/show_bug.cgi?id=109276
[fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
[fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
[fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309
[fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
[fdo#109316]: https://bugs.freedesktop.org/show_bug.cgi?id=109316
[fdo#109513]: https://bugs.freedesktop.org/show_bug.cgi?id=109513
[fdo#109720]: https://bugs.freedesktop.org/show_bug.cgi?id=109720
[k.org#198133]: https://bugzilla.kernel.org/show_bug.cgi?id=198133
[k.org#202321]: https://bugzilla.kernel.org/show_bug.cgi?id=202321
Participating hosts (49 -> 44)
------------------------------
Additional (1): fi-icl-u2
Missing (6): fi-ilk-m540 fi-byt-squawks fi-bsw-cyan fi-ctg-p8600 fi-icl-dsi fi-bdw-samus
Build changes
-------------
* IGT: IGT_4932 -> IGTPW_2816
CI_DRM_5889: 7cb7ad99a4f507f6025706637baae5fd16e491eb @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_2816: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2816/
IGT_4932: 08cf63a8fac11e3594b57580331fb319241a0d69 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
== Testlist changes ==
+igt@gem_mmap@page_nonaligned
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2816/
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 8+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for tests/i915/gem_mmap: test for non pagealingned mmaps
2019-04-08 15:50 [igt-dev] [PATCH i-g-t] tests/i915/gem_mmap: test for non pagealingned mmaps Ramalingam C
` (2 preceding siblings ...)
2019-04-08 17:17 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
@ 2019-04-08 20:11 ` Patchwork
3 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2019-04-08 20:11 UTC (permalink / raw)
To: C, Ramalingam; +Cc: igt-dev
== Series Details ==
Series: tests/i915/gem_mmap: test for non pagealingned mmaps
URL : https://patchwork.freedesktop.org/series/59181/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_5889_full -> IGTPW_2816_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_2816_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_2816_full, please notify your bug team to allow them
to document this new failure mode, which will reduce false positives in CI.
External URL: https://patchwork.freedesktop.org/api/1.0/series/59181/revisions/1/mbox/
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_2816_full:
### IGT changes ###
#### Possible regressions ####
* igt@runner@aborted:
- shard-iclb: NOTRUN -> FAIL
New tests
---------
New tests have been introduced between CI_DRM_5889_full and IGTPW_2816_full:
### New IGT tests (1) ###
* igt@gem_mmap@page_nonaligned:
- Statuses : 5 pass(s)
- Exec time: [0.0, 0.00] s
Known issues
------------
Here are the changes found in IGTPW_2816_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_exec_capture@capture-bsd2:
- shard-snb: NOTRUN -> SKIP [fdo#109271] +32
* igt@gem_exec_schedule@independent-bsd1:
- shard-iclb: NOTRUN -> SKIP [fdo#109276] +5
* igt@gem_pread@stolen-uncached:
- shard-iclb: NOTRUN -> SKIP [fdo#109277]
* igt@gem_pwrite@huge-gtt-forwards:
- shard-iclb: NOTRUN -> SKIP [fdo#109290]
* igt@gem_tiled_swapping@non-threaded:
- shard-hsw: PASS -> FAIL [fdo#108686]
* igt@gen3_render_tiledy_blits:
- shard-iclb: NOTRUN -> SKIP [fdo#109289]
* igt@i915_pm_rc6_residency@rc6-accuracy:
- shard-kbl: PASS -> SKIP [fdo#109271]
* igt@i915_pm_rpm@pc8-residency:
- shard-iclb: NOTRUN -> SKIP [fdo#109293]
* igt@kms_atomic_transition@3x-modeset-transitions-nonblocking-fencing:
- shard-kbl: NOTRUN -> SKIP [fdo#109271] / [fdo#109278] +6
* igt@kms_chamelium@hdmi-edid-read:
- shard-iclb: NOTRUN -> SKIP [fdo#109284] +3
* igt@kms_content_protection@atomic:
- shard-apl: NOTRUN -> FAIL [fdo#110321] / [fdo#110336]
* igt@kms_content_protection@legacy:
- shard-iclb: NOTRUN -> SKIP [fdo#109300]
* igt@kms_cursor_crc@cursor-256x85-sliding:
- shard-kbl: PASS -> FAIL [fdo#103232] +1
* igt@kms_cursor_crc@cursor-512x512-rapid-movement:
- shard-iclb: NOTRUN -> SKIP [fdo#109279]
* igt@kms_cursor_crc@cursor-64x64-onscreen:
- shard-apl: NOTRUN -> FAIL [fdo#103232]
* igt@kms_cursor_legacy@2x-long-flip-vs-cursor-legacy:
- shard-iclb: NOTRUN -> SKIP [fdo#109274] +2
* igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions:
- shard-iclb: PASS -> FAIL [fdo#103355]
* igt@kms_flip@2x-plain-flip-ts-check:
- shard-apl: NOTRUN -> SKIP [fdo#109271] +228
* igt@kms_flip@modeset-vs-vblank-race-interruptible:
- shard-apl: NOTRUN -> FAIL [fdo#103060]
* igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw:
- shard-iclb: PASS -> FAIL [fdo#103167] +1
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-mmap-gtt:
- shard-iclb: NOTRUN -> SKIP [fdo#109280] +6
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-draw-blt:
- shard-iclb: NOTRUN -> FAIL [fdo#109247]
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-mmap-cpu:
- shard-iclb: PASS -> FAIL [fdo#109247] +15
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-mmap-cpu:
- shard-kbl: NOTRUN -> SKIP [fdo#109271] +38
* igt@kms_lease@atomic_implicit_crtc:
- shard-apl: NOTRUN -> FAIL [fdo#110279]
* igt@kms_lease@page_flip_implicit_plane:
- shard-apl: NOTRUN -> FAIL [fdo#110281]
* igt@kms_pipe_crc_basic@nonblocking-crc-pipe-d:
- shard-apl: NOTRUN -> SKIP [fdo#109271] / [fdo#109278] +18
* igt@kms_plane@pixel-format-pipe-b-planes:
- shard-glk: PASS -> SKIP [fdo#109271]
* igt@kms_plane_alpha_blend@pipe-a-alpha-7efc:
- shard-apl: NOTRUN -> FAIL [fdo#108145] +3
* igt@kms_plane_alpha_blend@pipe-b-alpha-basic:
- shard-kbl: NOTRUN -> FAIL [fdo#108145] / [fdo#108590]
* igt@kms_plane_scaling@pipe-a-scaler-with-pixel-format:
- shard-glk: PASS -> SKIP [fdo#109271] / [fdo#109278] +1
* igt@kms_psr@psr2_cursor_plane_onoff:
- shard-iclb: PASS -> SKIP [fdo#109441] +1
* igt@kms_psr@sprite_mmap_cpu:
- shard-iclb: PASS -> FAIL [fdo#107383] / [fdo#110215]
* igt@kms_rotation_crc@multiplane-rotation-cropping-bottom:
- shard-kbl: PASS -> DMESG-FAIL [fdo#105763]
* igt@kms_rotation_crc@sprite-rotation-90:
- shard-iclb: PASS -> INCOMPLETE [fdo#110026]
* igt@kms_setmode@basic:
- shard-kbl: PASS -> FAIL [fdo#99912]
* igt@kms_universal_plane@cursor-fb-leak-pipe-e:
- shard-snb: NOTRUN -> SKIP [fdo#109271] / [fdo#109278] +2
* igt@kms_vblank@pipe-b-ts-continuation-modeset-hang:
- shard-apl: NOTRUN -> FAIL [fdo#104894]
* igt@kms_vblank@pipe-c-ts-continuation-dpms-rpm:
- shard-apl: PASS -> FAIL [fdo#104894]
* igt@prime_nv_api@i915_self_import:
- shard-glk: NOTRUN -> SKIP [fdo#109271] +7
* igt@prime_nv_test@i915_import_gtt_mmap:
- shard-iclb: NOTRUN -> SKIP [fdo#109291]
* igt@tools_test@sysfs_l3_parity:
- shard-iclb: NOTRUN -> SKIP [fdo#109307]
* igt@v3d_get_param@get-bad-flags:
- shard-iclb: NOTRUN -> SKIP [fdo#109315]
#### Possible fixes ####
* igt@gem_exec_nop@basic-series:
- shard-iclb: FAIL -> PASS
* igt@gem_exec_reloc@basic-cpu-wc-active:
- shard-iclb: INCOMPLETE [fdo#107713] -> PASS
* igt@gem_tiled_swapping@non-threaded:
- shard-iclb: FAIL [fdo#108686] -> PASS
* igt@i915_selftest@live_workarounds:
- shard-iclb: DMESG-FAIL [fdo#108954] -> PASS
* igt@i915_suspend@sysfs-reader:
- shard-kbl: INCOMPLETE [fdo#103665] -> PASS
* igt@kms_color@pipe-a-ctm-max:
- shard-kbl: FAIL [fdo#108147] -> PASS
* igt@kms_cursor_crc@cursor-64x64-sliding:
- shard-apl: FAIL [fdo#103232] -> PASS
- shard-kbl: FAIL [fdo#103232] -> PASS
* igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic:
- shard-glk: FAIL [fdo#106509] / [fdo#107409] -> PASS
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-shrfb-plflip-blt:
- shard-glk: FAIL [fdo#103167] -> PASS
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-pwrite:
- shard-iclb: FAIL [fdo#103167] -> PASS +3
* igt@kms_frontbuffer_tracking@fbcpsr-rgb101010-draw-blt:
- shard-iclb: FAIL [fdo#105682] / [fdo#109247] -> PASS
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-cur-indfb-onoff:
- shard-iclb: FAIL [fdo#109247] -> PASS +6
* igt@kms_psr@cursor_mmap_gtt:
- shard-iclb: FAIL [fdo#107383] / [fdo#110215] -> PASS +1
* igt@kms_psr@psr2_no_drrs:
- shard-iclb: SKIP [fdo#109441] -> PASS +1
* igt@kms_vblank@pipe-b-ts-continuation-modeset-rpm:
- shard-kbl: FAIL [fdo#104894] -> PASS +1
#### Warnings ####
* igt@kms_psr@no_drrs:
- shard-hsw: SKIP [fdo#109271] -> INCOMPLETE [fdo#103540]
[fdo#103060]: https://bugs.freedesktop.org/show_bug.cgi?id=103060
[fdo#103167]: https://bugs.freedesktop.org/show_bug.cgi?id=103167
[fdo#103232]: https://bugs.freedesktop.org/show_bug.cgi?id=103232
[fdo#103355]: https://bugs.freedesktop.org/show_bug.cgi?id=103355
[fdo#103540]: https://bugs.freedesktop.org/show_bug.cgi?id=103540
[fdo#103665]: https://bugs.freedesktop.org/show_bug.cgi?id=103665
[fdo#104894]: https://bugs.freedesktop.org/show_bug.cgi?id=104894
[fdo#105682]: https://bugs.freedesktop.org/show_bug.cgi?id=105682
[fdo#105763]: https://bugs.freedesktop.org/show_bug.cgi?id=105763
[fdo#106509]: https://bugs.freedesktop.org/show_bug.cgi?id=106509
[fdo#107383]: https://bugs.freedesktop.org/show_bug.cgi?id=107383
[fdo#107409]: https://bugs.freedesktop.org/show_bug.cgi?id=107409
[fdo#107713]: https://bugs.freedesktop.org/show_bug.cgi?id=107713
[fdo#108145]: https://bugs.freedesktop.org/show_bug.cgi?id=108145
[fdo#108147]: https://bugs.freedesktop.org/show_bug.cgi?id=108147
[fdo#108590]: https://bugs.freedesktop.org/show_bug.cgi?id=108590
[fdo#108686]: https://bugs.freedesktop.org/show_bug.cgi?id=108686
[fdo#108954]: https://bugs.freedesktop.org/show_bug.cgi?id=108954
[fdo#109247]: https://bugs.freedesktop.org/show_bug.cgi?id=109247
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
[fdo#109276]: https://bugs.freedesktop.org/show_bug.cgi?id=109276
[fdo#109277]: https://bugs.freedesktop.org/show_bug.cgi?id=109277
[fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278
[fdo#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279
[fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
[fdo#109284]: https://bugs.freedesktop.org/show_bug.cgi?id=109284
[fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
[fdo#109290]: https://bugs.freedesktop.org/show_bug.cgi?id=109290
[fdo#109291]: https://bugs.freedesktop.org/show_bug.cgi?id=109291
[fdo#109293]: https://bugs.freedesktop.org/show_bug.cgi?id=109293
[fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300
[fdo#109307]: https://bugs.freedesktop.org/show_bug.cgi?id=109307
[fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
[fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441
[fdo#110026]: https://bugs.freedesktop.org/show_bug.cgi?id=110026
[fdo#110215]: https://bugs.freedesktop.org/show_bug.cgi?id=110215
[fdo#110279]: https://bugs.freedesktop.org/show_bug.cgi?id=110279
[fdo#110281]: https://bugs.freedesktop.org/show_bug.cgi?id=110281
[fdo#110321]: https://bugs.freedesktop.org/show_bug.cgi?id=110321
[fdo#110336]: https://bugs.freedesktop.org/show_bug.cgi?id=110336
[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
-------------
* IGT: IGT_4932 -> IGTPW_2816
* Piglit: piglit_4509 -> None
CI_DRM_5889: 7cb7ad99a4f507f6025706637baae5fd16e491eb @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_2816: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_2816/
IGT_4932: 08cf63a8fac11e3594b57580331fb319241a0d69 @ 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_2816/
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev
^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2019-04-08 20:11 UTC | newest]
Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-04-08 15:50 [igt-dev] [PATCH i-g-t] tests/i915/gem_mmap: test for non pagealingned mmaps Ramalingam C
2019-04-08 15:52 ` Chris Wilson
2019-04-08 16:01 ` C, Ramalingam
2019-04-08 16:01 ` Tvrtko Ursulin
2019-04-08 16:10 ` Chris Wilson
2019-04-08 16:18 ` Tvrtko Ursulin
2019-04-08 17:17 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
2019-04-08 20:11 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox