* [Intel-gfx] [PATCH] drm/i915: Use helper func to find out map type
@ 2022-12-16 15:27 Nirmoy Das
2022-12-16 15:43 ` Matthew Auld
` (3 more replies)
0 siblings, 4 replies; 7+ messages in thread
From: Nirmoy Das @ 2022-12-16 15:27 UTC (permalink / raw)
To: intel-gfx; +Cc: matthew.auld, andrzej.hajda, Nirmoy Das
Use i915_coherent_map_type() function to find out
map_type of the shmem obj.
Signed-off-by: Nirmoy Das <nirmoy.das@intel.com>
---
drivers/gpu/drm/i915/gt/shmem_utils.c | 7 +++++--
1 file changed, 5 insertions(+), 2 deletions(-)
diff --git a/drivers/gpu/drm/i915/gt/shmem_utils.c b/drivers/gpu/drm/i915/gt/shmem_utils.c
index 402f085f3a02..e1a69803624f 100644
--- a/drivers/gpu/drm/i915/gt/shmem_utils.c
+++ b/drivers/gpu/drm/i915/gt/shmem_utils.c
@@ -8,6 +8,7 @@
#include <linux/pagemap.h>
#include <linux/shmem_fs.h>
+#include "i915_drv.h"
#include "gem/i915_gem_object.h"
#include "gem/i915_gem_lmem.h"
#include "shmem_utils.h"
@@ -32,6 +33,8 @@ struct file *shmem_create_from_data(const char *name, void *data, size_t len)
struct file *shmem_create_from_object(struct drm_i915_gem_object *obj)
{
+ struct drm_i915_private *i915 = to_i915(obj->base.dev);
+ enum i915_map_type map_type;
struct file *file;
void *ptr;
@@ -41,8 +44,8 @@ struct file *shmem_create_from_object(struct drm_i915_gem_object *obj)
return file;
}
- ptr = i915_gem_object_pin_map_unlocked(obj, i915_gem_object_is_lmem(obj) ?
- I915_MAP_WC : I915_MAP_WB);
+ map_type = i915_coherent_map_type(i915, obj, false);
+ ptr = i915_gem_object_pin_map_unlocked(obj, map_type);
if (IS_ERR(ptr))
return ERR_CAST(ptr);
--
2.38.0
^ permalink raw reply related [flat|nested] 7+ messages in thread* Re: [Intel-gfx] [PATCH] drm/i915: Use helper func to find out map type 2022-12-16 15:27 [Intel-gfx] [PATCH] drm/i915: Use helper func to find out map type Nirmoy Das @ 2022-12-16 15:43 ` Matthew Auld 2022-12-16 15:59 ` Andrzej Hajda 2022-12-18 23:00 ` [Intel-gfx] ✗ Fi.CI.SPARSE: warning for " Patchwork ` (2 subsequent siblings) 3 siblings, 1 reply; 7+ messages in thread From: Matthew Auld @ 2022-12-16 15:43 UTC (permalink / raw) To: Nirmoy Das, intel-gfx; +Cc: andrzej.hajda On 16/12/2022 15:27, Nirmoy Das wrote: > Use i915_coherent_map_type() function to find out > map_type of the shmem obj. > > Signed-off-by: Nirmoy Das <nirmoy.das@intel.com> > --- > drivers/gpu/drm/i915/gt/shmem_utils.c | 7 +++++-- > 1 file changed, 5 insertions(+), 2 deletions(-) > > diff --git a/drivers/gpu/drm/i915/gt/shmem_utils.c b/drivers/gpu/drm/i915/gt/shmem_utils.c > index 402f085f3a02..e1a69803624f 100644 > --- a/drivers/gpu/drm/i915/gt/shmem_utils.c > +++ b/drivers/gpu/drm/i915/gt/shmem_utils.c > @@ -8,6 +8,7 @@ > #include <linux/pagemap.h> > #include <linux/shmem_fs.h> > > +#include "i915_drv.h" > #include "gem/i915_gem_object.h" > #include "gem/i915_gem_lmem.h" > #include "shmem_utils.h" > @@ -32,6 +33,8 @@ struct file *shmem_create_from_data(const char *name, void *data, size_t len) > > struct file *shmem_create_from_object(struct drm_i915_gem_object *obj) > { > + struct drm_i915_private *i915 = to_i915(obj->base.dev); > + enum i915_map_type map_type; > struct file *file; > void *ptr; > > @@ -41,8 +44,8 @@ struct file *shmem_create_from_object(struct drm_i915_gem_object *obj) > return file; > } > > - ptr = i915_gem_object_pin_map_unlocked(obj, i915_gem_object_is_lmem(obj) ? > - I915_MAP_WC : I915_MAP_WB); > + map_type = i915_coherent_map_type(i915, obj, false); This will now use wc on non-llc. > + ptr = i915_gem_object_pin_map_unlocked(obj, map_type); > if (IS_ERR(ptr)) > return ERR_CAST(ptr); > ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [Intel-gfx] [PATCH] drm/i915: Use helper func to find out map type 2022-12-16 15:43 ` Matthew Auld @ 2022-12-16 15:59 ` Andrzej Hajda 2022-12-16 16:33 ` Das, Nirmoy 0 siblings, 1 reply; 7+ messages in thread From: Andrzej Hajda @ 2022-12-16 15:59 UTC (permalink / raw) To: Matthew Auld, Nirmoy Das, intel-gfx On 16.12.2022 16:43, Matthew Auld wrote: > On 16/12/2022 15:27, Nirmoy Das wrote: >> Use i915_coherent_map_type() function to find out >> map_type of the shmem obj. >> >> Signed-off-by: Nirmoy Das <nirmoy.das@intel.com> >> --- >> drivers/gpu/drm/i915/gt/shmem_utils.c | 7 +++++-- >> 1 file changed, 5 insertions(+), 2 deletions(-) >> >> diff --git a/drivers/gpu/drm/i915/gt/shmem_utils.c >> b/drivers/gpu/drm/i915/gt/shmem_utils.c >> index 402f085f3a02..e1a69803624f 100644 >> --- a/drivers/gpu/drm/i915/gt/shmem_utils.c >> +++ b/drivers/gpu/drm/i915/gt/shmem_utils.c >> @@ -8,6 +8,7 @@ >> #include <linux/pagemap.h> >> #include <linux/shmem_fs.h> >> +#include "i915_drv.h" >> #include "gem/i915_gem_object.h" >> #include "gem/i915_gem_lmem.h" >> #include "shmem_utils.h" >> @@ -32,6 +33,8 @@ struct file *shmem_create_from_data(const char >> *name, void *data, size_t len) >> struct file *shmem_create_from_object(struct drm_i915_gem_object *obj) >> { >> + struct drm_i915_private *i915 = to_i915(obj->base.dev); >> + enum i915_map_type map_type; >> struct file *file; >> void *ptr; >> @@ -41,8 +44,8 @@ struct file *shmem_create_from_object(struct >> drm_i915_gem_object *obj) >> return file; >> } >> - ptr = i915_gem_object_pin_map_unlocked(obj, >> i915_gem_object_is_lmem(obj) ? >> - I915_MAP_WC : I915_MAP_WB); >> + map_type = i915_coherent_map_type(i915, obj, false); > > This will now use wc on non-llc. i915_coherent_map_type(i915, obj, true) should do the trick. Regards Andrzej > >> + ptr = i915_gem_object_pin_map_unlocked(obj, map_type); >> if (IS_ERR(ptr)) >> return ERR_CAST(ptr); ^ permalink raw reply [flat|nested] 7+ messages in thread
* Re: [Intel-gfx] [PATCH] drm/i915: Use helper func to find out map type 2022-12-16 15:59 ` Andrzej Hajda @ 2022-12-16 16:33 ` Das, Nirmoy 0 siblings, 0 replies; 7+ messages in thread From: Das, Nirmoy @ 2022-12-16 16:33 UTC (permalink / raw) To: Andrzej Hajda, Matthew Auld, Nirmoy Das, intel-gfx On 12/16/2022 4:59 PM, Andrzej Hajda wrote: > On 16.12.2022 16:43, Matthew Auld wrote: >> On 16/12/2022 15:27, Nirmoy Das wrote: >>> Use i915_coherent_map_type() function to find out >>> map_type of the shmem obj. >>> >>> Signed-off-by: Nirmoy Das <nirmoy.das@intel.com> >>> --- >>> drivers/gpu/drm/i915/gt/shmem_utils.c | 7 +++++-- >>> 1 file changed, 5 insertions(+), 2 deletions(-) >>> >>> diff --git a/drivers/gpu/drm/i915/gt/shmem_utils.c >>> b/drivers/gpu/drm/i915/gt/shmem_utils.c >>> index 402f085f3a02..e1a69803624f 100644 >>> --- a/drivers/gpu/drm/i915/gt/shmem_utils.c >>> +++ b/drivers/gpu/drm/i915/gt/shmem_utils.c >>> @@ -8,6 +8,7 @@ >>> #include <linux/pagemap.h> >>> #include <linux/shmem_fs.h> >>> +#include "i915_drv.h" >>> #include "gem/i915_gem_object.h" >>> #include "gem/i915_gem_lmem.h" >>> #include "shmem_utils.h" >>> @@ -32,6 +33,8 @@ struct file *shmem_create_from_data(const char >>> *name, void *data, size_t len) >>> struct file *shmem_create_from_object(struct drm_i915_gem_object >>> *obj) >>> { >>> + struct drm_i915_private *i915 = to_i915(obj->base.dev); >>> + enum i915_map_type map_type; >>> struct file *file; >>> void *ptr; >>> @@ -41,8 +44,8 @@ struct file *shmem_create_from_object(struct >>> drm_i915_gem_object *obj) >>> return file; >>> } >>> - ptr = i915_gem_object_pin_map_unlocked(obj, >>> i915_gem_object_is_lmem(obj) ? >>> - I915_MAP_WC : I915_MAP_WB); >>> + map_type = i915_coherent_map_type(i915, obj, false); >> >> This will now use wc on non-llc. > > i915_coherent_map_type(i915, obj, true) should do the trick. Thanks Matt and Andrzej for catching this. I will resend. Nirmoy > > Regards > Andrzej > >> >>> + ptr = i915_gem_object_pin_map_unlocked(obj, map_type); >>> if (IS_ERR(ptr)) >>> return ERR_CAST(ptr); > ^ permalink raw reply [flat|nested] 7+ messages in thread
* [Intel-gfx] ✗ Fi.CI.SPARSE: warning for drm/i915: Use helper func to find out map type 2022-12-16 15:27 [Intel-gfx] [PATCH] drm/i915: Use helper func to find out map type Nirmoy Das 2022-12-16 15:43 ` Matthew Auld @ 2022-12-18 23:00 ` Patchwork 2022-12-18 23:24 ` [Intel-gfx] ✓ Fi.CI.BAT: success " Patchwork 2022-12-19 1:25 ` [Intel-gfx] ✓ Fi.CI.IGT: " Patchwork 3 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2022-12-18 23:00 UTC (permalink / raw) To: Nirmoy Das; +Cc: intel-gfx == Series Details == Series: drm/i915: Use helper func to find out map type URL : https://patchwork.freedesktop.org/series/112013/ State : warning == Summary == Error: dim sparse failed Sparse version: v0.6.2 Fast mode used, each commit won't be checked separately. ^ permalink raw reply [flat|nested] 7+ messages in thread
* [Intel-gfx] ✓ Fi.CI.BAT: success for drm/i915: Use helper func to find out map type 2022-12-16 15:27 [Intel-gfx] [PATCH] drm/i915: Use helper func to find out map type Nirmoy Das 2022-12-16 15:43 ` Matthew Auld 2022-12-18 23:00 ` [Intel-gfx] ✗ Fi.CI.SPARSE: warning for " Patchwork @ 2022-12-18 23:24 ` Patchwork 2022-12-19 1:25 ` [Intel-gfx] ✓ Fi.CI.IGT: " Patchwork 3 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2022-12-18 23:24 UTC (permalink / raw) To: Nirmoy Das; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 4478 bytes --] == Series Details == Series: drm/i915: Use helper func to find out map type URL : https://patchwork.freedesktop.org/series/112013/ State : success == Summary == CI Bug Log - changes from CI_DRM_12512 -> Patchwork_112013v1 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_112013v1/index.html Participating hosts (42 -> 41) ------------------------------ Missing (1): fi-snb-2520m Known issues ------------ Here are the changes found in Patchwork_112013v1 that come from known issues: ### IGT changes ### #### Issues hit #### * igt@gem_exec_suspend@basic-s3@smem: - fi-rkl-11600: NOTRUN -> [FAIL][1] ([fdo#103375]) [1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_112013v1/fi-rkl-11600/igt@gem_exec_suspend@basic-s3@smem.html * igt@i915_selftest@live@gt_lrc: - fi-rkl-guc: NOTRUN -> [INCOMPLETE][2] ([i915#4983]) [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_112013v1/fi-rkl-guc/igt@i915_selftest@live@gt_lrc.html * igt@kms_chamelium@common-hpd-after-suspend: - fi-rkl-11600: NOTRUN -> [SKIP][3] ([fdo#111827]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_112013v1/fi-rkl-11600/igt@kms_chamelium@common-hpd-after-suspend.html #### Possible fixes #### * igt@gem_exec_gttfill@basic: - fi-pnv-d510: [FAIL][4] ([i915#7229]) -> [PASS][5] [4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12512/fi-pnv-d510/igt@gem_exec_gttfill@basic.html [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_112013v1/fi-pnv-d510/igt@gem_exec_gttfill@basic.html * igt@i915_selftest@live@reset: - {bat-rpls-2}: [DMESG-FAIL][6] ([i915#4983]) -> [PASS][7] [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12512/bat-rpls-2/igt@i915_selftest@live@reset.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_112013v1/bat-rpls-2/igt@i915_selftest@live@reset.html * igt@i915_selftest@live@workarounds: - fi-rkl-guc: [INCOMPLETE][8] ([i915#4983]) -> [PASS][9] [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12512/fi-rkl-guc/igt@i915_selftest@live@workarounds.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_112013v1/fi-rkl-guc/igt@i915_selftest@live@workarounds.html * igt@i915_suspend@basic-s3-without-i915: - fi-rkl-11600: [INCOMPLETE][10] ([i915#4817]) -> [PASS][11] [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12512/fi-rkl-11600/igt@i915_suspend@basic-s3-without-i915.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_112013v1/fi-rkl-11600/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor@atomic-transitions: - fi-bsw-kefka: [FAIL][12] ([i915#6298]) -> [PASS][13] [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12512/fi-bsw-kefka/igt@kms_cursor_legacy@basic-busy-flip-before-cursor@atomic-transitions.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_112013v1/fi-bsw-kefka/igt@kms_cursor_legacy@basic-busy-flip-before-cursor@atomic-transitions.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845 [i915#4817]: https://gitlab.freedesktop.org/drm/intel/issues/4817 [i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983 [i915#6298]: https://gitlab.freedesktop.org/drm/intel/issues/6298 [i915#6367]: https://gitlab.freedesktop.org/drm/intel/issues/6367 [i915#7229]: https://gitlab.freedesktop.org/drm/intel/issues/7229 Build changes ------------- * Linux: CI_DRM_12512 -> Patchwork_112013v1 CI-20190529: 20190529 CI_DRM_12512: 32c0d1e3ac9cf7e7b64a53dcafeeb7173a2f511b @ git://anongit.freedesktop.org/gfx-ci/linux IGT_7096: f2f515390fb11554d22c7b78b94e288026545326 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Patchwork_112013v1: 32c0d1e3ac9cf7e7b64a53dcafeeb7173a2f511b @ git://anongit.freedesktop.org/gfx-ci/linux ### Linux commits 0872659a4d7f drm/i915: Use helper func to find out map type == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_112013v1/index.html [-- Attachment #2: Type: text/html, Size: 5288 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
* [Intel-gfx] ✓ Fi.CI.IGT: success for drm/i915: Use helper func to find out map type 2022-12-16 15:27 [Intel-gfx] [PATCH] drm/i915: Use helper func to find out map type Nirmoy Das ` (2 preceding siblings ...) 2022-12-18 23:24 ` [Intel-gfx] ✓ Fi.CI.BAT: success " Patchwork @ 2022-12-19 1:25 ` Patchwork 3 siblings, 0 replies; 7+ messages in thread From: Patchwork @ 2022-12-19 1:25 UTC (permalink / raw) To: Nirmoy Das; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 24063 bytes --] == Series Details == Series: drm/i915: Use helper func to find out map type URL : https://patchwork.freedesktop.org/series/112013/ State : success == Summary == CI Bug Log - changes from CI_DRM_12512_full -> Patchwork_112013v1_full ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_112013v1/index.html Participating hosts (13 -> 11) ------------------------------ Additional (1): shard-rkl0 Missing (3): pig-skl-6260u pig-kbl-iris pig-glk-j5005 Possible new issues ------------------- Here are the unknown changes that may have been introduced in Patchwork_112013v1_full: ### IGT changes ### #### Suppressed #### The following results come from untrusted machines, tests, or statuses. They do not affect the overall result. * {igt@i915_hwmon@hwmon-write}: - {shard-tglu}: NOTRUN -> [SKIP][1] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_112013v1/shard-tglu-3/igt@i915_hwmon@hwmon-write.html * igt@kms_ccs@pipe-a-bad-rotation-90-y_tiled_gen12_rc_ccs_cc: - {shard-dg1}: [PASS][2] -> [DMESG-WARN][3] [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12512/shard-dg1-15/igt@kms_ccs@pipe-a-bad-rotation-90-y_tiled_gen12_rc_ccs_cc.html [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_112013v1/shard-dg1-17/igt@kms_ccs@pipe-a-bad-rotation-90-y_tiled_gen12_rc_ccs_cc.html * igt@kms_vblank@pipe-a-query-forked-busy-hang: - {shard-dg1}: NOTRUN -> [SKIP][4] [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_112013v1/shard-dg1-16/igt@kms_vblank@pipe-a-query-forked-busy-hang.html Known issues ------------ Here are the changes found in Patchwork_112013v1_full that come from known issues: ### IGT changes ### #### Issues hit #### * igt@feature_discovery@display-4x: - shard-glk: NOTRUN -> [SKIP][5] ([fdo#109271]) +5 similar issues [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_112013v1/shard-glk6/igt@feature_discovery@display-4x.html * igt@gem_exec_fair@basic-deadline: - shard-glk: [PASS][6] -> [FAIL][7] ([i915#2846]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12512/shard-glk3/igt@gem_exec_fair@basic-deadline.html [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_112013v1/shard-glk6/igt@gem_exec_fair@basic-deadline.html * igt@gem_exec_fair@basic-none-rrul@rcs0: - shard-glk: NOTRUN -> [FAIL][8] ([i915#2842]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_112013v1/shard-glk2/igt@gem_exec_fair@basic-none-rrul@rcs0.html * igt@gen9_exec_parse@allowed-single: - shard-glk: [PASS][9] -> [DMESG-WARN][10] ([i915#5566] / [i915#716]) [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12512/shard-glk3/igt@gen9_exec_parse@allowed-single.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_112013v1/shard-glk7/igt@gen9_exec_parse@allowed-single.html * igt@kms_ccs@pipe-c-bad-aux-stride-y_tiled_gen12_mc_ccs: - shard-glk: NOTRUN -> [SKIP][11] ([fdo#109271] / [i915#3886]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_112013v1/shard-glk1/igt@kms_ccs@pipe-c-bad-aux-stride-y_tiled_gen12_mc_ccs.html * igt@kms_flip@2x-flip-vs-expired-vblank@ab-hdmi-a1-hdmi-a2: - shard-glk: [PASS][12] -> [FAIL][13] ([i915#79]) [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12512/shard-glk8/igt@kms_flip@2x-flip-vs-expired-vblank@ab-hdmi-a1-hdmi-a2.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_112013v1/shard-glk7/igt@kms_flip@2x-flip-vs-expired-vblank@ab-hdmi-a1-hdmi-a2.html * igt@kms_flip@2x-plain-flip-ts-check-interruptible@ac-hdmi-a1-hdmi-a2: - shard-glk: [PASS][14] -> [FAIL][15] ([i915#2122]) [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12512/shard-glk2/igt@kms_flip@2x-plain-flip-ts-check-interruptible@ac-hdmi-a1-hdmi-a2.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_112013v1/shard-glk8/igt@kms_flip@2x-plain-flip-ts-check-interruptible@ac-hdmi-a1-hdmi-a2.html * igt@perf@stress-open-close: - shard-glk: [PASS][16] -> [INCOMPLETE][17] ([i915#5213]) [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12512/shard-glk1/igt@perf@stress-open-close.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_112013v1/shard-glk1/igt@perf@stress-open-close.html #### Possible fixes #### * igt@drm_read@fault-buffer: - {shard-rkl}: [SKIP][18] ([i915#4098]) -> [PASS][19] [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12512/shard-rkl-3/igt@drm_read@fault-buffer.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_112013v1/shard-rkl-6/igt@drm_read@fault-buffer.html * igt@fbdev@write: - {shard-rkl}: [SKIP][20] ([i915#2582]) -> [PASS][21] [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12512/shard-rkl-1/igt@fbdev@write.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_112013v1/shard-rkl-4/igt@fbdev@write.html * igt@gem_blits@basic: - {shard-rkl}: [FAIL][22] ([i915#7673]) -> [PASS][23] [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12512/shard-rkl-3/igt@gem_blits@basic.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_112013v1/shard-rkl-5/igt@gem_blits@basic.html * igt@gem_exec_fair@basic-pace@vcs0: - shard-glk: [FAIL][24] ([i915#2842]) -> [PASS][25] +2 similar issues [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12512/shard-glk6/igt@gem_exec_fair@basic-pace@vcs0.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_112013v1/shard-glk9/igt@gem_exec_fair@basic-pace@vcs0.html * igt@gem_exec_reloc@basic-gtt-noreloc: - {shard-rkl}: [SKIP][26] ([i915#3281]) -> [PASS][27] +2 similar issues [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12512/shard-rkl-3/igt@gem_exec_reloc@basic-gtt-noreloc.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_112013v1/shard-rkl-5/igt@gem_exec_reloc@basic-gtt-noreloc.html * igt@gen9_exec_parse@cmd-crossing-page: - {shard-rkl}: [SKIP][28] ([i915#2527]) -> [PASS][29] +1 similar issue [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12512/shard-rkl-3/igt@gen9_exec_parse@cmd-crossing-page.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_112013v1/shard-rkl-5/igt@gen9_exec_parse@cmd-crossing-page.html * igt@i915_pm_rc6_residency@rc6-idle@vcs0: - {shard-dg1}: [FAIL][30] ([i915#3591]) -> [PASS][31] [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12512/shard-dg1-15/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_112013v1/shard-dg1-19/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html * igt@i915_pm_rpm@dpms-mode-unset-lpsp: - {shard-rkl}: [SKIP][32] ([i915#1397]) -> [PASS][33] [32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12512/shard-rkl-5/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_112013v1/shard-rkl-6/igt@i915_pm_rpm@dpms-mode-unset-lpsp.html * igt@i915_pm_rpm@modeset-lpsp: - {shard-tglu}: [SKIP][34] ([i915#1397]) -> [PASS][35] [34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12512/shard-tglu-6/igt@i915_pm_rpm@modeset-lpsp.html [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_112013v1/shard-tglu-1/igt@i915_pm_rpm@modeset-lpsp.html * igt@i915_pm_rpm@modeset-lpsp-stress-no-wait: - {shard-dg1}: [SKIP][36] ([i915#1397]) -> [PASS][37] [36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12512/shard-dg1-15/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_112013v1/shard-dg1-14/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html * igt@kms_big_fb@y-tiled-16bpp-rotate-0: - shard-glk: [FAIL][38] ([i915#5138]) -> [PASS][39] [38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12512/shard-glk6/igt@kms_big_fb@y-tiled-16bpp-rotate-0.html [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_112013v1/shard-glk1/igt@kms_big_fb@y-tiled-16bpp-rotate-0.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip: - {shard-tglu}: [SKIP][40] -> [PASS][41] +4 similar issues [40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12512/shard-tglu-6/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_112013v1/shard-tglu-1/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html * igt@kms_flip@modeset-vs-vblank-race@c-hdmi-a2: - shard-glk: [FAIL][42] ([i915#407]) -> [PASS][43] [42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12512/shard-glk2/igt@kms_flip@modeset-vs-vblank-race@c-hdmi-a2.html [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_112013v1/shard-glk2/igt@kms_flip@modeset-vs-vblank-race@c-hdmi-a2.html * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-gtt: - {shard-tglu}: [SKIP][44] ([i915#1849]) -> [PASS][45] +2 similar issues [44]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12512/shard-tglu-6/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-gtt.html [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_112013v1/shard-tglu-1/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-rgb565-draw-pwrite: - {shard-tglu}: ([PASS][46], [SKIP][47]) ([i915#1849]) -> [PASS][48] +1 similar issue [46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12512/shard-tglu-5/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-pwrite.html [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12512/shard-tglu-6/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-pwrite.html [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_112013v1/shard-tglu-1/igt@kms_frontbuffer_tracking@fbc-rgb565-draw-pwrite.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite: - {shard-rkl}: [SKIP][49] ([i915#1849] / [i915#4098]) -> [PASS][50] +11 similar issues [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12512/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite.html [50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_112013v1/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite.html * igt@kms_psr@sprite_plane_onoff: - {shard-rkl}: [SKIP][51] ([i915#1072]) -> [PASS][52] +3 similar issues [51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12512/shard-rkl-2/igt@kms_psr@sprite_plane_onoff.html [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_112013v1/shard-rkl-6/igt@kms_psr@sprite_plane_onoff.html * igt@kms_universal_plane@universal-plane-pipe-c-functional: - {shard-tglu}: [SKIP][53] ([fdo#109274]) -> [PASS][54] [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12512/shard-tglu-6/igt@kms_universal_plane@universal-plane-pipe-c-functional.html [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_112013v1/shard-tglu-1/igt@kms_universal_plane@universal-plane-pipe-c-functional.html * igt@kms_vblank@pipe-b-query-forked: - {shard-rkl}: [SKIP][55] ([i915#1845] / [i915#4098]) -> [PASS][56] +18 similar issues [55]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12512/shard-rkl-2/igt@kms_vblank@pipe-b-query-forked.html [56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_112013v1/shard-rkl-6/igt@kms_vblank@pipe-b-query-forked.html * igt@kms_vblank@pipe-b-ts-continuation-idle-hang: - {shard-tglu}: [SKIP][57] ([i915#1845]) -> [PASS][58] [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12512/shard-tglu-6/igt@kms_vblank@pipe-b-ts-continuation-idle-hang.html [58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_112013v1/shard-tglu-1/igt@kms_vblank@pipe-b-ts-continuation-idle-hang.html * igt@kms_vblank@pipe-c-wait-forked: - {shard-tglu}: ([PASS][59], [SKIP][60]) -> [PASS][61] [59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12512/shard-tglu-4/igt@kms_vblank@pipe-c-wait-forked.html [60]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12512/shard-tglu-6/igt@kms_vblank@pipe-c-wait-forked.html [61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_112013v1/shard-tglu-1/igt@kms_vblank@pipe-c-wait-forked.html * igt@perf@gen12-mi-rpc: - {shard-rkl}: [SKIP][62] ([fdo#109289]) -> [PASS][63] [62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12512/shard-rkl-5/igt@perf@gen12-mi-rpc.html [63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_112013v1/shard-rkl-4/igt@perf@gen12-mi-rpc.html * igt@prime_vgem@basic-write: - {shard-rkl}: [SKIP][64] ([fdo#109295] / [i915#3291] / [i915#3708]) -> [PASS][65] [64]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12512/shard-rkl-4/igt@prime_vgem@basic-write.html [65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_112013v1/shard-rkl-5/igt@prime_vgem@basic-write.html {name}: This element is suppressed. This means it is ignored when computing the status of the difference (SUCCESS, WARNING, or FAILURE). [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375 [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271 [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274 [fdo#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279 [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280 [fdo#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [fdo#109300]: https://bugs.freedesktop.org/show_bug.cgi?id=109300 [fdo#109302]: https://bugs.freedesktop.org/show_bug.cgi?id=109302 [fdo#109313]: https://bugs.freedesktop.org/show_bug.cgi?id=109313 [fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506 [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#111644]: https://bugs.freedesktop.org/show_bug.cgi?id=111644 [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825 [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827 [fdo#112054]: https://bugs.freedesktop.org/show_bug.cgi?id=112054 [fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283 [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072 [i915#132]: https://gitlab.freedesktop.org/drm/intel/issues/132 [i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397 [i915#1722]: https://gitlab.freedesktop.org/drm/intel/issues/1722 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845 [i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849 [i915#1902]: https://gitlab.freedesktop.org/drm/intel/issues/1902 [i915#2122]: https://gitlab.freedesktop.org/drm/intel/issues/2122 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#2433]: https://gitlab.freedesktop.org/drm/intel/issues/2433 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582 [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672 [i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280 [i915#284]: https://gitlab.freedesktop.org/drm/intel/issues/284 [i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#2920]: https://gitlab.freedesktop.org/drm/intel/issues/2920 [i915#2994]: https://gitlab.freedesktop.org/drm/intel/issues/2994 [i915#3002]: https://gitlab.freedesktop.org/drm/intel/issues/3002 [i915#3063]: https://gitlab.freedesktop.org/drm/intel/issues/3063 [i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 [i915#3318]: https://gitlab.freedesktop.org/drm/intel/issues/3318 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469 [i915#3528]: https://gitlab.freedesktop.org/drm/intel/issues/3528 [i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539 [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546 [i915#3547]: https://gitlab.freedesktop.org/drm/intel/issues/3547 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3558]: https://gitlab.freedesktop.org/drm/intel/issues/3558 [i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638 [i915#3639]: https://gitlab.freedesktop.org/drm/intel/issues/3639 [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734 [i915#3810]: https://gitlab.freedesktop.org/drm/intel/issues/3810 [i915#3825]: https://gitlab.freedesktop.org/drm/intel/issues/3825 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886 [i915#3989]: https://gitlab.freedesktop.org/drm/intel/issues/3989 [i915#404]: https://gitlab.freedesktop.org/drm/intel/issues/404 [i915#407]: https://gitlab.freedesktop.org/drm/intel/issues/407 [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077 [i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079 [i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083 [i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098 [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212 [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270 [i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312 [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525 [i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538 [i915#454]: https://gitlab.freedesktop.org/drm/intel/issues/454 [i915#4565]: https://gitlab.freedesktop.org/drm/intel/issues/4565 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#4767]: https://gitlab.freedesktop.org/drm/intel/issues/4767 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4833]: https://gitlab.freedesktop.org/drm/intel/issues/4833 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4877]: https://gitlab.freedesktop.org/drm/intel/issues/4877 [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880 [i915#4991]: https://gitlab.freedesktop.org/drm/intel/issues/4991 [i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138 [i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176 [i915#5213]: https://gitlab.freedesktop.org/drm/intel/issues/5213 [i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235 [i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286 [i915#5288]: https://gitlab.freedesktop.org/drm/intel/issues/5288 [i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289 [i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325 [i915#5327]: https://gitlab.freedesktop.org/drm/intel/issues/5327 [i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533 [i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439 [i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461 [i915#5563]: https://gitlab.freedesktop.org/drm/intel/issues/5563 [i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566 [i915#5723]: https://gitlab.freedesktop.org/drm/intel/issues/5723 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6117]: https://gitlab.freedesktop.org/drm/intel/issues/6117 [i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227 [i915#6245]: https://gitlab.freedesktop.org/drm/intel/issues/6245 [i915#6247]: https://gitlab.freedesktop.org/drm/intel/issues/6247 [i915#6248]: https://gitlab.freedesktop.org/drm/intel/issues/6248 [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 [i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301 [i915#6334]: https://gitlab.freedesktop.org/drm/intel/issues/6334 [i915#6335]: https://gitlab.freedesktop.org/drm/intel/issues/6335 [i915#6497]: https://gitlab.freedesktop.org/drm/intel/issues/6497 [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658 [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621 [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768 [i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944 [i915#6946]: https://gitlab.freedesktop.org/drm/intel/issues/6946 [i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953 [i915#7052]: https://gitlab.freedesktop.org/drm/intel/issues/7052 [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116 [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118 [i915#716]: https://gitlab.freedesktop.org/drm/intel/issues/716 [i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561 [i915#7651]: https://gitlab.freedesktop.org/drm/intel/issues/7651 [i915#7673]: https://gitlab.freedesktop.org/drm/intel/issues/7673 [i915#7678]: https://gitlab.freedesktop.org/drm/intel/issues/7678 [i915#7679]: https://gitlab.freedesktop.org/drm/intel/issues/7679 [i915#7681]: https://gitlab.freedesktop.org/drm/intel/issues/7681 [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697 [i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701 [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79 Build changes ------------- * Linux: CI_DRM_12512 -> Patchwork_112013v1 * Piglit: piglit_4509 -> None CI-20190529: 20190529 CI_DRM_12512: 32c0d1e3ac9cf7e7b64a53dcafeeb7173a2f511b @ git://anongit.freedesktop.org/gfx-ci/linux IGT_7096: f2f515390fb11554d22c7b78b94e288026545326 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git Patchwork_112013v1: 32c0d1e3ac9cf7e7b64a53dcafeeb7173a2f511b @ git://anongit.freedesktop.org/gfx-ci/linux piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_112013v1/index.html [-- Attachment #2: Type: text/html, Size: 17802 bytes --] ^ permalink raw reply [flat|nested] 7+ messages in thread
end of thread, other threads:[~2022-12-19 1:25 UTC | newest] Thread overview: 7+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2022-12-16 15:27 [Intel-gfx] [PATCH] drm/i915: Use helper func to find out map type Nirmoy Das 2022-12-16 15:43 ` Matthew Auld 2022-12-16 15:59 ` Andrzej Hajda 2022-12-16 16:33 ` Das, Nirmoy 2022-12-18 23:00 ` [Intel-gfx] ✗ Fi.CI.SPARSE: warning for " Patchwork 2022-12-18 23:24 ` [Intel-gfx] ✓ Fi.CI.BAT: success " Patchwork 2022-12-19 1:25 ` [Intel-gfx] ✓ 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