* [igt-dev] [PATCH i-g-t] lib: move upper_32_bits() and lower_32_bits() to library
@ 2020-03-03 10:34 Daniel Mrzyglod
2020-03-03 11:14 ` Petri Latvala
` (2 more replies)
0 siblings, 3 replies; 5+ messages in thread
From: Daniel Mrzyglod @ 2020-03-03 10:34 UTC (permalink / raw)
To: igt-dev
Move inline upper_32_bits() and lower_32_bits() function from tests to
library. Functiom will be usefull for elsewhere use.
Cc: Katarzyna Dec <katarzyna.dec@intel.com>
Signed-off-by: Daniel Mrzyglod <daniel.t.mrzyglod@intel.com>
---
lib/ioctl_wrappers.h | 20 ++++++++++++++++++++
tests/i915/gem_exec_fence.c | 10 ----------
2 files changed, 20 insertions(+), 10 deletions(-)
diff --git a/lib/ioctl_wrappers.h b/lib/ioctl_wrappers.h
index 7614e688c..17f54b2f9 100644
--- a/lib/ioctl_wrappers.h
+++ b/lib/ioctl_wrappers.h
@@ -244,4 +244,24 @@ static inline void *from_user_pointer(uint64_t u64)
return (void *)(uintptr_t)u64;
}
+/**
+ * lower_32_bits
+ *
+ * return bits 0-31 of a number
+ */
+static inline uint32_t lower_32_bits(uint64_t x)
+{
+ return x & 0xffffffff;
+}
+
+/**
+ * lower_32_bits
+ *
+ * return bits 32-63 of a number
+ */
+static inline uint32_t upper_32_bits(uint64_t x)
+{
+ return x >> 32;
+}
+
#endif /* IOCTL_WRAPPERS_H */
diff --git a/tests/i915/gem_exec_fence.c b/tests/i915/gem_exec_fence.c
index 9b3735325..ebd0f931f 100644
--- a/tests/i915/gem_exec_fence.c
+++ b/tests/i915/gem_exec_fence.c
@@ -590,16 +590,6 @@ static uint32_t batch_create(int fd)
return handle;
}
-static inline uint32_t lower_32_bits(uint64_t x)
-{
- return x & 0xffffffff;
-}
-
-static inline uint32_t upper_32_bits(uint64_t x)
-{
- return x >> 32;
-}
-
static void test_keep_in_fence(int fd, const struct intel_execution_engine2 *e)
{
struct sigaction sa = { .sa_handler = alarm_handler };
--
2.21.1
_______________________________________________
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* Re: [igt-dev] [PATCH i-g-t] lib: move upper_32_bits() and lower_32_bits() to library 2020-03-03 10:34 [igt-dev] [PATCH i-g-t] lib: move upper_32_bits() and lower_32_bits() to library Daniel Mrzyglod @ 2020-03-03 11:14 ` Petri Latvala 2020-03-05 15:07 ` Mrzyglod, Daniel T 2020-03-03 12:24 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork 2020-03-03 23:48 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 2 siblings, 1 reply; 5+ messages in thread From: Petri Latvala @ 2020-03-03 11:14 UTC (permalink / raw) To: Daniel Mrzyglod; +Cc: igt-dev On Tue, Mar 03, 2020 at 11:34:12AM +0100, Daniel Mrzyglod wrote: > Move inline upper_32_bits() and lower_32_bits() function from tests to > library. Functiom will be usefull for elsewhere use. > > Cc: Katarzyna Dec <katarzyna.dec@intel.com> > Signed-off-by: Daniel Mrzyglod <daniel.t.mrzyglod@intel.com> > --- > lib/ioctl_wrappers.h | 20 ++++++++++++++++++++ > tests/i915/gem_exec_fence.c | 10 ---------- > 2 files changed, 20 insertions(+), 10 deletions(-) > > diff --git a/lib/ioctl_wrappers.h b/lib/ioctl_wrappers.h > index 7614e688c..17f54b2f9 100644 > --- a/lib/ioctl_wrappers.h > +++ b/lib/ioctl_wrappers.h > @@ -244,4 +244,24 @@ static inline void *from_user_pointer(uint64_t u64) > return (void *)(uintptr_t)u64; > } > > +/** > + * lower_32_bits > + * > + * return bits 0-31 of a number > + */ > +static inline uint32_t lower_32_bits(uint64_t x) > +{ > + return x & 0xffffffff; > +} > + > +/** > + * lower_32_bits > + * > + * return bits 32-63 of a number upper_ Does the name need a colon : after it to be recognized? Can you build docs and check that these appear? -- Petri Latvala > + */ > +static inline uint32_t upper_32_bits(uint64_t x) > +{ > + return x >> 32; > +} > + > #endif /* IOCTL_WRAPPERS_H */ > diff --git a/tests/i915/gem_exec_fence.c b/tests/i915/gem_exec_fence.c > index 9b3735325..ebd0f931f 100644 > --- a/tests/i915/gem_exec_fence.c > +++ b/tests/i915/gem_exec_fence.c > @@ -590,16 +590,6 @@ static uint32_t batch_create(int fd) > return handle; > } > > -static inline uint32_t lower_32_bits(uint64_t x) > -{ > - return x & 0xffffffff; > -} > - > -static inline uint32_t upper_32_bits(uint64_t x) > -{ > - return x >> 32; > -} > - > static void test_keep_in_fence(int fd, const struct intel_execution_engine2 *e) > { > struct sigaction sa = { .sa_handler = alarm_handler }; > -- > 2.21.1 > > _______________________________________________ > 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
* Re: [igt-dev] [PATCH i-g-t] lib: move upper_32_bits() and lower_32_bits() to library 2020-03-03 11:14 ` Petri Latvala @ 2020-03-05 15:07 ` Mrzyglod, Daniel T 0 siblings, 0 replies; 5+ messages in thread From: Mrzyglod, Daniel T @ 2020-03-05 15:07 UTC (permalink / raw) To: Latvala, Petri; +Cc: igt-dev@lists.freedesktop.org On Tue, 2020-03-03 at 13:14 +0200, Petri Latvala wrote: > On Tue, Mar 03, 2020 at 11:34:12AM +0100, Daniel Mrzyglod wrote: > > Move inline upper_32_bits() and lower_32_bits() function from tests > > to > > library. Functiom will be usefull for elsewhere use. > > > > Cc: Katarzyna Dec <katarzyna.dec@intel.com> > > Signed-off-by: Daniel Mrzyglod <daniel.t.mrzyglod@intel.com> > > --- > > lib/ioctl_wrappers.h | 20 ++++++++++++++++++++ > > tests/i915/gem_exec_fence.c | 10 ---------- > > 2 files changed, 20 insertions(+), 10 deletions(-) > > > > diff --git a/lib/ioctl_wrappers.h b/lib/ioctl_wrappers.h > > index 7614e688c..17f54b2f9 100644 > > --- a/lib/ioctl_wrappers.h > > +++ b/lib/ioctl_wrappers.h > > @@ -244,4 +244,24 @@ static inline void *from_user_pointer(uint64_t > > u64) > > return (void *)(uintptr_t)u64; > > } > > > > +/** > > + * lower_32_bits > > + * > > + * return bits 0-31 of a number > > + */ > > +static inline uint32_t lower_32_bits(uint64_t x) > > +{ > > + return x & 0xffffffff; > > +} > > + > > +/** > > + * lower_32_bits > > + * > > + * return bits 32-63 of a number > > upper_ > > Does the name need a colon : after it to be recognized? Can you build > docs and check that these appear? > > I will fix docs error. static inlines will not apper there are no references in docs for any static inline in code Daniel _______________________________________________ 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.BAT: success for lib: move upper_32_bits() and lower_32_bits() to library 2020-03-03 10:34 [igt-dev] [PATCH i-g-t] lib: move upper_32_bits() and lower_32_bits() to library Daniel Mrzyglod 2020-03-03 11:14 ` Petri Latvala @ 2020-03-03 12:24 ` Patchwork 2020-03-03 23:48 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork 2 siblings, 0 replies; 5+ messages in thread From: Patchwork @ 2020-03-03 12:24 UTC (permalink / raw) To: Daniel Mrzyglod; +Cc: igt-dev == Series Details == Series: lib: move upper_32_bits() and lower_32_bits() to library URL : https://patchwork.freedesktop.org/series/74199/ State : success == Summary == CI Bug Log - changes from CI_DRM_8054 -> IGTPW_4247 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4247/index.html Known issues ------------ Here are the changes found in IGTPW_4247 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@i915_selftest@live@gem_contexts: - fi-cfl-guc: [PASS][1] -> [INCOMPLETE][2] ([fdo#106070] / [i915#424]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8054/fi-cfl-guc/igt@i915_selftest@live@gem_contexts.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4247/fi-cfl-guc/igt@i915_selftest@live@gem_contexts.html * igt@vgem_basic@setversion: - fi-tgl-y: [PASS][3] -> [DMESG-WARN][4] ([CI#94] / [i915#402]) +1 similar issue [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8054/fi-tgl-y/igt@vgem_basic@setversion.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4247/fi-tgl-y/igt@vgem_basic@setversion.html #### Possible fixes #### * igt@gem_flink_basic@bad-open: - fi-tgl-y: [DMESG-WARN][5] ([CI#94] / [i915#402]) -> [PASS][6] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8054/fi-tgl-y/igt@gem_flink_basic@bad-open.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4247/fi-tgl-y/igt@gem_flink_basic@bad-open.html * igt@kms_chamelium@common-hpd-after-suspend: - fi-icl-u2: [FAIL][7] ([i915#217]) -> [PASS][8] [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8054/fi-icl-u2/igt@kms_chamelium@common-hpd-after-suspend.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4247/fi-icl-u2/igt@kms_chamelium@common-hpd-after-suspend.html * igt@kms_chamelium@hdmi-hpd-fast: - fi-kbl-7500u: [FAIL][9] ([fdo#111096] / [i915#323]) -> [PASS][10] [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8054/fi-kbl-7500u/igt@kms_chamelium@hdmi-hpd-fast.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4247/fi-kbl-7500u/igt@kms_chamelium@hdmi-hpd-fast.html [CI#94]: https://gitlab.freedesktop.org/gfx-ci/i915-infra/issues/94 [fdo#106070]: https://bugs.freedesktop.org/show_bug.cgi?id=106070 [fdo#111096]: https://bugs.freedesktop.org/show_bug.cgi?id=111096 [i915#217]: https://gitlab.freedesktop.org/drm/intel/issues/217 [i915#323]: https://gitlab.freedesktop.org/drm/intel/issues/323 [i915#402]: https://gitlab.freedesktop.org/drm/intel/issues/402 [i915#424]: https://gitlab.freedesktop.org/drm/intel/issues/424 Participating hosts (51 -> 46) ------------------------------ Additional (2): fi-skl-6770hq fi-kbl-7560u Missing (7): fi-ilk-m540 fi-hsw-4200u fi-byt-squawks fi-bsw-cyan fi-ctg-p8600 fi-byt-clapper fi-bdw-samus Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_5484 -> IGTPW_4247 CI-20190529: 20190529 CI_DRM_8054: 00395f50bbdc5b9eb3e287e85465566d1ec094a6 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_4247: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4247/index.html IGT_5484: 91b36b61e76901a2bd09fe93ac7bf7b8a60f258c @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4247/index.html _______________________________________________ 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 lib: move upper_32_bits() and lower_32_bits() to library 2020-03-03 10:34 [igt-dev] [PATCH i-g-t] lib: move upper_32_bits() and lower_32_bits() to library Daniel Mrzyglod 2020-03-03 11:14 ` Petri Latvala 2020-03-03 12:24 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork @ 2020-03-03 23:48 ` Patchwork 2 siblings, 0 replies; 5+ messages in thread From: Patchwork @ 2020-03-03 23:48 UTC (permalink / raw) To: Daniel Mrzyglod; +Cc: igt-dev == Series Details == Series: lib: move upper_32_bits() and lower_32_bits() to library URL : https://patchwork.freedesktop.org/series/74199/ State : success == Summary == CI Bug Log - changes from CI_DRM_8054_full -> IGTPW_4247_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4247/index.html Known issues ------------ Here are the changes found in IGTPW_4247_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_busy@busy-vcs1: - shard-iclb: [PASS][1] -> [SKIP][2] ([fdo#112080]) +10 similar issues [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8054/shard-iclb4/igt@gem_busy@busy-vcs1.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4247/shard-iclb3/igt@gem_busy@busy-vcs1.html * igt@gem_ctx_isolation@rcs0-s3: - shard-kbl: [PASS][3] -> [DMESG-WARN][4] ([i915#180]) +3 similar issues [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8054/shard-kbl2/igt@gem_ctx_isolation@rcs0-s3.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4247/shard-kbl2/igt@gem_ctx_isolation@rcs0-s3.html * igt@gem_exec_schedule@implicit-both-bsd1: - shard-iclb: [PASS][5] -> [SKIP][6] ([fdo#109276] / [i915#677]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8054/shard-iclb1/igt@gem_exec_schedule@implicit-both-bsd1.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4247/shard-iclb7/igt@gem_exec_schedule@implicit-both-bsd1.html * igt@gem_exec_schedule@independent-bsd2: - shard-iclb: [PASS][7] -> [SKIP][8] ([fdo#109276]) +19 similar issues [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8054/shard-iclb4/igt@gem_exec_schedule@independent-bsd2.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4247/shard-iclb7/igt@gem_exec_schedule@independent-bsd2.html * igt@gem_exec_schedule@pi-common-bsd: - shard-iclb: [PASS][9] -> [SKIP][10] ([i915#677]) +2 similar issues [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8054/shard-iclb5/igt@gem_exec_schedule@pi-common-bsd.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4247/shard-iclb2/igt@gem_exec_schedule@pi-common-bsd.html * igt@gem_exec_schedule@reorder-wide-bsd: - shard-iclb: [PASS][11] -> [SKIP][12] ([fdo#112146]) +9 similar issues [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8054/shard-iclb5/igt@gem_exec_schedule@reorder-wide-bsd.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4247/shard-iclb2/igt@gem_exec_schedule@reorder-wide-bsd.html * igt@gem_exec_whisper@basic-queues-forked: - shard-glk: [PASS][13] -> [INCOMPLETE][14] ([i915#58] / [k.org#198133]) [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8054/shard-glk9/igt@gem_exec_whisper@basic-queues-forked.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4247/shard-glk9/igt@gem_exec_whisper@basic-queues-forked.html * igt@gem_ppgtt@flink-and-close-vma-leak: - shard-iclb: [PASS][15] -> [FAIL][16] ([i915#644]) [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8054/shard-iclb5/igt@gem_ppgtt@flink-and-close-vma-leak.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4247/shard-iclb7/igt@gem_ppgtt@flink-and-close-vma-leak.html * igt@gem_userptr_blits@dmabuf-unsync: - shard-hsw: [PASS][17] -> [DMESG-WARN][18] ([fdo#111870]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8054/shard-hsw7/igt@gem_userptr_blits@dmabuf-unsync.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4247/shard-hsw8/igt@gem_userptr_blits@dmabuf-unsync.html - shard-snb: [PASS][19] -> [DMESG-WARN][20] ([fdo#111870] / [i915#478]) [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8054/shard-snb5/igt@gem_userptr_blits@dmabuf-unsync.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4247/shard-snb5/igt@gem_userptr_blits@dmabuf-unsync.html * igt@i915_pm_rps@reset: - shard-iclb: [PASS][21] -> [FAIL][22] ([i915#413]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8054/shard-iclb3/igt@i915_pm_rps@reset.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4247/shard-iclb5/igt@i915_pm_rps@reset.html * igt@i915_selftest@mock@buddy: - shard-apl: [PASS][23] -> [INCOMPLETE][24] ([fdo#103927]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8054/shard-apl2/igt@i915_selftest@mock@buddy.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4247/shard-apl3/igt@i915_selftest@mock@buddy.html * igt@kms_psr@psr2_cursor_blt: - shard-iclb: [PASS][25] -> [SKIP][26] ([fdo#109441]) +2 similar issues [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8054/shard-iclb2/igt@kms_psr@psr2_cursor_blt.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4247/shard-iclb6/igt@kms_psr@psr2_cursor_blt.html * igt@kms_vblank@pipe-a-ts-continuation-suspend: - shard-kbl: [PASS][27] -> [INCOMPLETE][28] ([fdo#103665]) +1 similar issue [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8054/shard-kbl1/igt@kms_vblank@pipe-a-ts-continuation-suspend.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4247/shard-kbl2/igt@kms_vblank@pipe-a-ts-continuation-suspend.html * igt@kms_vblank@pipe-b-ts-continuation-modeset-rpm: - shard-tglb: [PASS][29] -> [SKIP][30] ([fdo#112015]) [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8054/shard-tglb3/igt@kms_vblank@pipe-b-ts-continuation-modeset-rpm.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4247/shard-tglb1/igt@kms_vblank@pipe-b-ts-continuation-modeset-rpm.html - shard-iclb: [PASS][31] -> [SKIP][32] ([fdo#109278]) [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8054/shard-iclb1/igt@kms_vblank@pipe-b-ts-continuation-modeset-rpm.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4247/shard-iclb3/igt@kms_vblank@pipe-b-ts-continuation-modeset-rpm.html - shard-glk: [PASS][33] -> [SKIP][34] ([fdo#109271]) [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8054/shard-glk5/igt@kms_vblank@pipe-b-ts-continuation-modeset-rpm.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4247/shard-glk4/igt@kms_vblank@pipe-b-ts-continuation-modeset-rpm.html - shard-hsw: [PASS][35] -> [SKIP][36] ([fdo#109271]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8054/shard-hsw8/igt@kms_vblank@pipe-b-ts-continuation-modeset-rpm.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4247/shard-hsw1/igt@kms_vblank@pipe-b-ts-continuation-modeset-rpm.html #### Possible fixes #### * igt@gem_exec_schedule@implicit-write-read-bsd2: - shard-iclb: [SKIP][37] ([fdo#109276] / [i915#677]) -> [PASS][38] [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8054/shard-iclb6/igt@gem_exec_schedule@implicit-write-read-bsd2.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4247/shard-iclb4/igt@gem_exec_schedule@implicit-write-read-bsd2.html * igt@gem_exec_schedule@pi-shared-iova-bsd: - shard-iclb: [SKIP][39] ([i915#677]) -> [PASS][40] +1 similar issue [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8054/shard-iclb2/igt@gem_exec_schedule@pi-shared-iova-bsd.html [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4247/shard-iclb5/igt@gem_exec_schedule@pi-shared-iova-bsd.html * igt@gem_exec_schedule@wide-bsd: - shard-iclb: [SKIP][41] ([fdo#112146]) -> [PASS][42] +4 similar issues [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8054/shard-iclb4/igt@gem_exec_schedule@wide-bsd.html [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4247/shard-iclb6/igt@gem_exec_schedule@wide-bsd.html * igt@gem_ppgtt@flink-and-close-vma-leak: - shard-apl: [FAIL][43] ([i915#644]) -> [PASS][44] [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8054/shard-apl4/igt@gem_ppgtt@flink-and-close-vma-leak.html [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4247/shard-apl6/igt@gem_ppgtt@flink-and-close-vma-leak.html - shard-tglb: [FAIL][45] ([i915#644]) -> [PASS][46] [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8054/shard-tglb3/igt@gem_ppgtt@flink-and-close-vma-leak.html [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4247/shard-tglb6/igt@gem_ppgtt@flink-and-close-vma-leak.html - shard-kbl: [FAIL][47] ([i915#644]) -> [PASS][48] [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8054/shard-kbl1/igt@gem_ppgtt@flink-and-close-vma-leak.html [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4247/shard-kbl6/igt@gem_ppgtt@flink-and-close-vma-leak.html * igt@gem_softpin@noreloc-s3: - shard-apl: [DMESG-WARN][49] ([i915#180]) -> [PASS][50] +1 similar issue [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8054/shard-apl1/igt@gem_softpin@noreloc-s3.html [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4247/shard-apl1/igt@gem_softpin@noreloc-s3.html * igt@i915_pm_dc@dc6-dpms: - shard-iclb: [FAIL][51] ([i915#454]) -> [PASS][52] [51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8054/shard-iclb3/igt@i915_pm_dc@dc6-dpms.html [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4247/shard-iclb7/igt@i915_pm_dc@dc6-dpms.html * igt@i915_pm_rps@waitboost: - shard-iclb: [FAIL][53] ([i915#413]) -> [PASS][54] [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8054/shard-iclb2/igt@i915_pm_rps@waitboost.html [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4247/shard-iclb1/igt@i915_pm_rps@waitboost.html * igt@kms_cursor_legacy@flip-vs-cursor-busy-crc-atomic: - shard-snb: [DMESG-WARN][55] ([i915#478]) -> [PASS][56] [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8054/shard-snb5/igt@kms_cursor_legacy@flip-vs-cursor-busy-crc-atomic.html [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4247/shard-snb6/igt@kms_cursor_legacy@flip-vs-cursor-busy-crc-atomic.html - shard-hsw: [DMESG-WARN][57] ([i915#478]) -> [PASS][58] [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8054/shard-hsw7/igt@kms_cursor_legacy@flip-vs-cursor-busy-crc-atomic.html [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4247/shard-hsw2/igt@kms_cursor_legacy@flip-vs-cursor-busy-crc-atomic.html * igt@kms_flip@flip-vs-dpms-interruptible: - shard-apl: [DMESG-WARN][59] ([i915#1297]) -> [PASS][60] [59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8054/shard-apl8/igt@kms_flip@flip-vs-dpms-interruptible.html [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4247/shard-apl3/igt@kms_flip@flip-vs-dpms-interruptible.html - shard-kbl: [DMESG-WARN][61] ([i915#1297]) -> [PASS][62] [61]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8054/shard-kbl6/igt@kms_flip@flip-vs-dpms-interruptible.html [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4247/shard-kbl1/igt@kms_flip@flip-vs-dpms-interruptible.html * igt@kms_frontbuffer_tracking@fbc-suspend: - shard-kbl: [DMESG-WARN][63] ([i915#180]) -> [PASS][64] +5 similar issues [63]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8054/shard-kbl7/igt@kms_frontbuffer_tracking@fbc-suspend.html [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4247/shard-kbl1/igt@kms_frontbuffer_tracking@fbc-suspend.html * igt@kms_plane_lowres@pipe-a-tiling-x: - shard-glk: [FAIL][65] ([i915#899]) -> [PASS][66] [65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8054/shard-glk1/igt@kms_plane_lowres@pipe-a-tiling-x.html [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4247/shard-glk6/igt@kms_plane_lowres@pipe-a-tiling-x.html * igt@kms_psr2_su@frontbuffer: - shard-iclb: [SKIP][67] ([fdo#109642] / [fdo#111068]) -> [PASS][68] [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8054/shard-iclb1/igt@kms_psr2_su@frontbuffer.html [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4247/shard-iclb2/igt@kms_psr2_su@frontbuffer.html * igt@kms_psr@psr2_no_drrs: - shard-iclb: [SKIP][69] ([fdo#109441]) -> [PASS][70] +1 similar issue [69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8054/shard-iclb4/igt@kms_psr@psr2_no_drrs.html [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4247/shard-iclb2/igt@kms_psr@psr2_no_drrs.html * igt@kms_setmode@basic: - shard-apl: [FAIL][71] ([i915#31]) -> [PASS][72] [71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8054/shard-apl8/igt@kms_setmode@basic.html [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4247/shard-apl2/igt@kms_setmode@basic.html * igt@perf@gen12-mi-rpc: - shard-tglb: [FAIL][73] ([i915#1085]) -> [PASS][74] [73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8054/shard-tglb8/igt@perf@gen12-mi-rpc.html [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4247/shard-tglb8/igt@perf@gen12-mi-rpc.html * igt@perf_pmu@busy-accuracy-98-vcs1: - shard-iclb: [SKIP][75] ([fdo#112080]) -> [PASS][76] +12 similar issues [75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8054/shard-iclb7/igt@perf_pmu@busy-accuracy-98-vcs1.html [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4247/shard-iclb1/igt@perf_pmu@busy-accuracy-98-vcs1.html * igt@prime_vgem@fence-wait-bsd2: - shard-iclb: [SKIP][77] ([fdo#109276]) -> [PASS][78] +16 similar issues [77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8054/shard-iclb5/igt@prime_vgem@fence-wait-bsd2.html [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4247/shard-iclb2/igt@prime_vgem@fence-wait-bsd2.html #### Warnings #### * igt@gem_userptr_blits@sync-unmap-after-close: - shard-hsw: [DMESG-WARN][79] ([fdo#111870]) -> [DMESG-WARN][80] ([fdo#110789] / [fdo#111870]) [79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8054/shard-hsw7/igt@gem_userptr_blits@sync-unmap-after-close.html [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4247/shard-hsw7/igt@gem_userptr_blits@sync-unmap-after-close.html - shard-snb: [DMESG-WARN][81] ([fdo#111870] / [i915#478]) -> [DMESG-WARN][82] ([fdo#110789] / [fdo#111870] / [i915#478]) [81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8054/shard-snb6/igt@gem_userptr_blits@sync-unmap-after-close.html [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4247/shard-snb5/igt@gem_userptr_blits@sync-unmap-after-close.html [fdo#103665]: https://bugs.freedesktop.org/show_bug.cgi?id=103665 [fdo#103927]: https://bugs.freedesktop.org/show_bug.cgi?id=103927 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109276]: https://bugs.freedesktop.org/show_bug.cgi?id=109276 [fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278 [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441 [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642 [fdo#110789]: https://bugs.freedesktop.org/show_bug.cgi?id=110789 [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [fdo#111870]: https://bugs.freedesktop.org/show_bug.cgi?id=111870 [fdo#112015]: https://bugs.freedesktop.org/show_bug.cgi?id=112015 [fdo#112080]: https://bugs.freedesktop.org/show_bug.cgi?id=112080 [fdo#112146]: https://bugs.freedesktop.org/show_bug.cgi?id=112146 [i915#1085]: https://gitlab.freedesktop.org/drm/intel/issues/1085 [i915#1297]: https://gitlab.freedesktop.org/drm/intel/issues/1297 [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180 [i915#31]: https://gitlab.freedesktop.org/drm/intel/issues/31 [i915#413]: https://gitlab.freedesktop.org/drm/intel/issues/413 [i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454 [i915#478]: https://gitlab.freedesktop.org/drm/intel/issues/478 [i915#58]: https://gitlab.freedesktop.org/drm/intel/issues/58 [i915#644]: https://gitlab.freedesktop.org/drm/intel/issues/644 [i915#677]: https://gitlab.freedesktop.org/drm/intel/issues/677 [i915#899]: https://gitlab.freedesktop.org/drm/intel/issues/899 [k.org#198133]: https://bugzilla.kernel.org/show_bug.cgi?id=198133 Participating hosts (10 -> 8) ------------------------------ Missing (2): pig-skl-6260u pig-glk-j5005 Build changes ------------- * CI: CI-20190529 -> None * IGT: IGT_5484 -> IGTPW_4247 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_8054: 00395f50bbdc5b9eb3e287e85465566d1ec094a6 @ git://anongit.freedesktop.org/gfx-ci/linux IGTPW_4247: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4247/index.html IGT_5484: 91b36b61e76901a2bd09fe93ac7bf7b8a60f258c @ 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_4247/index.html _______________________________________________ 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:[~2020-03-05 15:07 UTC | newest] Thread overview: 5+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2020-03-03 10:34 [igt-dev] [PATCH i-g-t] lib: move upper_32_bits() and lower_32_bits() to library Daniel Mrzyglod 2020-03-03 11:14 ` Petri Latvala 2020-03-05 15:07 ` Mrzyglod, Daniel T 2020-03-03 12:24 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork 2020-03-03 23:48 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox