All of lore.kernel.org
 help / color / mirror / Atom feed
* [igt-dev] [PATCH i-g-t] lib/xe_query: Rename for_each_gt macro for Xe tests
@ 2023-03-16 16:08 Zbigniew Kempczyński
  2023-03-16 16:24 ` Mauro Carvalho Chehab
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Zbigniew Kempczyński @ 2023-03-16 16:08 UTC (permalink / raw)
  To: igt-dev

As i915 and xe start to coexist in igt ensure gt iterator for Xe
tests is unique and won't conflict in the future merges.

Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
---
 lib/xe/xe_query.h           |  2 +-
 tests/xe/xe_debugfs.c       |  2 +-
 tests/xe/xe_exec_balancer.c | 22 +++++++++++-----------
 tests/xe/xe_exec_reset.c    | 14 +++++++-------
 tests/xe/xe_exec_threads.c  |  4 ++--
 tests/xe/xe_guc_pc.c        | 24 ++++++++++++------------
 6 files changed, 34 insertions(+), 34 deletions(-)

diff --git a/lib/xe/xe_query.h b/lib/xe/xe_query.h
index beea9d0949..7ee45ef286 100644
--- a/lib/xe/xe_query.h
+++ b/lib/xe/xe_query.h
@@ -69,7 +69,7 @@ struct xe_device {
 #define for_each_hw_engine_class(__class) \
 	for (__class = 0; __class < DRM_XE_ENGINE_CLASS_COMPUTE + 1; \
 	     ++__class)
-#define for_each_gt(__fd, __gt) \
+#define xe_for_each_gt(__fd, __gt) \
 	for (__gt = 0; __gt < xe_number_gt(__fd); ++__gt)
 
 #define XE_IS_CLASS_SYSMEM(__region) ((__region)->mem_class == XE_MEM_REGION_CLASS_SYSMEM)
diff --git a/tests/xe/xe_debugfs.c b/tests/xe/xe_debugfs.c
index 38c8beccc5..29b0078f39 100644
--- a/tests/xe/xe_debugfs.c
+++ b/tests/xe/xe_debugfs.c
@@ -260,7 +260,7 @@ igt_main_args("", long_options, help_str, opt_handler, NULL)
 
 
 	igt_subtest("gt") {
-		for_each_gt(fd, gt) {
+		xe_for_each_gt(fd, gt) {
 			snprintf(devnode, sizeof(devnode), "gt%d", gt);
 			igt_require(igt_debugfs_exists(fd, devnode, O_RDONLY));
 			test_gt(fd, gt);
diff --git a/tests/xe/xe_exec_balancer.c b/tests/xe/xe_exec_balancer.c
index a247b1d268..566ec88a41 100644
--- a/tests/xe/xe_exec_balancer.c
+++ b/tests/xe/xe_exec_balancer.c
@@ -632,25 +632,25 @@ igt_main
 	}
 
 	igt_subtest("virtual-all-active")
-		for_each_gt(fd, gt)
+		xe_for_each_gt(fd, gt)
 			for_each_hw_engine_class(class)
 				test_all_active(fd, gt, class);
 
 	for (const struct section *s = sections; s->name; s++) {
 		igt_subtest_f("once-%s", s->name)
-			for_each_gt(fd, gt)
+			xe_for_each_gt(fd, gt)
 				for_each_hw_engine_class(class)
 					test_exec(fd, gt, class, 1, 1,
 						  s->flags);
 
 		igt_subtest_f("twice-%s", s->name)
-			for_each_gt(fd, gt)
+			xe_for_each_gt(fd, gt)
 				for_each_hw_engine_class(class)
 					test_exec(fd, gt, class, 1, 2,
 						  s->flags);
 
 		igt_subtest_f("many-%s", s->name)
-			for_each_gt(fd, gt)
+			xe_for_each_gt(fd, gt)
 				for_each_hw_engine_class(class)
 					test_exec(fd, gt, class, 1,
 						  s->flags & (REBIND | INVALIDATE) ?
@@ -658,7 +658,7 @@ igt_main
 						  s->flags);
 
 		igt_subtest_f("many-engines-%s", s->name)
-			for_each_gt(fd, gt)
+			xe_for_each_gt(fd, gt)
 				for_each_hw_engine_class(class)
 					test_exec(fd, gt, class, 16,
 						  s->flags & (REBIND | INVALIDATE) ?
@@ -666,7 +666,7 @@ igt_main
 						  s->flags);
 
 		igt_subtest_f("no-exec-%s", s->name)
-			for_each_gt(fd, gt)
+			xe_for_each_gt(fd, gt)
 				for_each_hw_engine_class(class)
 					test_exec(fd, gt, class, 1, 0,
 						  s->flags);
@@ -675,17 +675,17 @@ igt_main
 			continue;
 
 		igt_subtest_f("once-cm-%s", s->name)
-			for_each_gt(fd, gt)
+			xe_for_each_gt(fd, gt)
 				for_each_hw_engine_class(class)
 					test_cm(fd, gt, class, 1, 1, s->flags);
 
 		igt_subtest_f("twice-cm-%s", s->name)
-			for_each_gt(fd, gt)
+			xe_for_each_gt(fd, gt)
 				for_each_hw_engine_class(class)
 					test_cm(fd, gt, class, 1, 2, s->flags);
 
 		igt_subtest_f("many-cm-%s", s->name)
-			for_each_gt(fd, gt)
+			xe_for_each_gt(fd, gt)
 				for_each_hw_engine_class(class)
 					test_cm(fd, gt, class, 1,
 						s->flags & (REBIND | INVALIDATE) ?
@@ -693,7 +693,7 @@ igt_main
 						s->flags);
 
 		igt_subtest_f("many-engines-cm-%s", s->name)
-			for_each_gt(fd, gt)
+			xe_for_each_gt(fd, gt)
 				for_each_hw_engine_class(class)
 					test_cm(fd, gt, class, 16,
 						s->flags & (REBIND | INVALIDATE) ?
@@ -701,7 +701,7 @@ igt_main
 						s->flags);
 
 		igt_subtest_f("no-exec-cm-%s", s->name)
-			for_each_gt(fd, gt)
+			xe_for_each_gt(fd, gt)
 				for_each_hw_engine_class(class)
 					test_cm(fd, gt, class, 1, 0, s->flags);
 	}
diff --git a/tests/xe/xe_exec_reset.c b/tests/xe/xe_exec_reset.c
index 106fe941c1..f86525f78e 100644
--- a/tests/xe/xe_exec_reset.c
+++ b/tests/xe/xe_exec_reset.c
@@ -896,46 +896,46 @@ igt_main
 
 	for (const struct section *s = sections; s->name; s++) {
 		igt_subtest_f("%s-cancel", s->name)
-			for_each_gt(fd, gt)
+			xe_for_each_gt(fd, gt)
 				for_each_hw_engine_class(class)
 					test_balancer(fd, gt, class, 1, 1,
 						      CANCEL | s->flags);
 
 		igt_subtest_f("%s-engine-reset", s->name)
-			for_each_gt(fd, gt)
+			xe_for_each_gt(fd, gt)
 				for_each_hw_engine_class(class)
 					test_balancer(fd, gt, class, MAX_INSTANCE + 1,
 						      MAX_INSTANCE + 1,
 						      ENGINE_RESET | s->flags);
 
 		igt_subtest_f("%s-cat-error", s->name)
-			for_each_gt(fd, gt)
+			xe_for_each_gt(fd, gt)
 				for_each_hw_engine_class(class)
 					test_balancer(fd, gt, class, MAX_INSTANCE + 1,
 						      MAX_INSTANCE + 1,
 						      CAT_ERROR | s->flags);
 
 		igt_subtest_f("%s-gt-reset", s->name)
-			for_each_gt(fd, gt)
+			xe_for_each_gt(fd, gt)
 				for_each_hw_engine_class(class)
 					test_balancer(fd, gt, class, MAX_INSTANCE + 1,
 						      MAX_INSTANCE + 1,
 						      GT_RESET | s->flags);
 
 		igt_subtest_f("%s-close-fd-no-exec", s->name)
-			for_each_gt(fd, gt)
+			xe_for_each_gt(fd, gt)
 				for_each_hw_engine_class(class)
 					test_balancer(-1, gt, class, 16, 0,
 						      CLOSE_FD | s->flags);
 
 		igt_subtest_f("%s-close-fd", s->name)
-			for_each_gt(fd, gt)
+			xe_for_each_gt(fd, gt)
 				for_each_hw_engine_class(class)
 					test_balancer(-1, gt, class, 16, 256,
 						      CLOSE_FD | s->flags);
 
 		igt_subtest_f("%s-close-engines-close-fd", s->name)
-			for_each_gt(fd, gt)
+			xe_for_each_gt(fd, gt)
 				for_each_hw_engine_class(class)
 					test_balancer(-1, gt, class, 16, 256, CLOSE_FD |
 						      CLOSE_ENGINES | s->flags);
diff --git a/tests/xe/xe_exec_threads.c b/tests/xe/xe_exec_threads.c
index 69055a829b..37c42029e9 100644
--- a/tests/xe/xe_exec_threads.c
+++ b/tests/xe/xe_exec_threads.c
@@ -1042,7 +1042,7 @@ static void threads(int fd, int flags)
 		++n_hw_engines;
 
 	if (flags & BALANCER) {
-		for_each_gt(fd, gt)
+		xe_for_each_gt(fd, gt)
 			for_each_hw_engine_class(class) {
 				int num_placements = 0;
 
@@ -1126,7 +1126,7 @@ static void threads(int fd, int flags)
 	}
 
 	if (flags & BALANCER) {
-		for_each_gt(fd, gt)
+		xe_for_each_gt(fd, gt)
 			for_each_hw_engine_class(class) {
 				int num_placements = 0;
 
diff --git a/tests/xe/xe_guc_pc.c b/tests/xe/xe_guc_pc.c
index 3f520d7bf4..91c826d853 100644
--- a/tests/xe/xe_guc_pc.c
+++ b/tests/xe/xe_guc_pc.c
@@ -398,18 +398,18 @@ igt_main
 	}
 
 	igt_subtest("freq_basic_api") {
-		for_each_gt(fd, gt)
+		xe_for_each_gt(fd, gt)
 			test_freq_basic_api(sysfs, gt);
 	}
 
 	igt_subtest("freq_fixed_idle") {
-		for_each_gt(fd, gt) {
+		xe_for_each_gt(fd, gt) {
 			test_freq_fixed(sysfs, gt);
 		}
 	}
 
 	igt_subtest("freq_fixed_exec") {
-		for_each_gt(fd, gt) {
+		xe_for_each_gt(fd, gt) {
 			for_each_hw_engine(fd, hwe)
 				igt_fork(child, ncpus) {
 					igt_debug("Execution Started\n");
@@ -423,13 +423,13 @@ igt_main
 	}
 
 	igt_subtest("freq_range_idle") {
-		for_each_gt(fd, gt) {
+		xe_for_each_gt(fd, gt) {
 			test_freq_range(sysfs, gt);
 		}
 	}
 
 	igt_subtest("freq_range_exec") {
-		for_each_gt(fd, gt) {
+		xe_for_each_gt(fd, gt) {
 			for_each_hw_engine(fd, hwe)
 				igt_fork(child, ncpus) {
 					igt_debug("Execution Started\n");
@@ -443,37 +443,37 @@ igt_main
 	}
 
 	igt_subtest("freq_low_max") {
-		for_each_gt(fd, gt) {
+		xe_for_each_gt(fd, gt) {
 			test_freq_low_max(sysfs, gt);
 		}
 	}
 
 	igt_subtest("freq_suspend") {
-		for_each_gt(fd, gt) {
+		xe_for_each_gt(fd, gt) {
 			test_suspend(sysfs, gt);
 		}
 	}
 
 	igt_subtest("freq_reset") {
-		for_each_gt(fd, gt) {
+		xe_for_each_gt(fd, gt) {
 			test_reset(fd, sysfs, gt, 1);
 		}
 	}
 
 	igt_subtest("freq_reset_multiple") {
-		for_each_gt(fd, gt) {
+		xe_for_each_gt(fd, gt) {
 			test_reset(fd, sysfs, gt, 50);
 		}
 	}
 
 	igt_subtest("rc6_on_idle") {
-		for_each_gt(fd, gt) {
+		xe_for_each_gt(fd, gt) {
 			assert(igt_wait(in_rc6(sysfs, gt), 1000, 1));
 		}
 	}
 
 	igt_subtest("rc0_on_exec") {
-		for_each_gt(fd, gt) {
+		xe_for_each_gt(fd, gt) {
 			assert(igt_wait(in_rc6(sysfs, gt), 1000, 1));
 			for_each_hw_engine(fd, hwe)
 				igt_fork(child, ncpus) {
@@ -488,7 +488,7 @@ igt_main
 	}
 
 	igt_fixture {
-		for_each_gt(fd, gt) {
+		xe_for_each_gt(fd, gt) {
 			set_freq(sysfs, gt, "min", stash_min);
 			set_freq(sysfs, gt, "max", stash_max);
 		}
-- 
2.34.1

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [igt-dev] [PATCH i-g-t] lib/xe_query: Rename for_each_gt macro for Xe tests
  2023-03-16 16:08 [igt-dev] [PATCH i-g-t] lib/xe_query: Rename for_each_gt macro for Xe tests Zbigniew Kempczyński
@ 2023-03-16 16:24 ` Mauro Carvalho Chehab
  2023-03-16 19:38 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
  2023-03-16 23:42 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
  2 siblings, 0 replies; 4+ messages in thread
From: Mauro Carvalho Chehab @ 2023-03-16 16:24 UTC (permalink / raw)
  To: Zbigniew Kempczyński; +Cc: igt-dev

On Thu, 16 Mar 2023 17:08:56 +0100
Zbigniew Kempczyński <zbigniew.kempczynski@intel.com> wrote:

> As i915 and xe start to coexist in igt ensure gt iterator for Xe
> tests is unique and won't conflict in the future merges.
> 
> Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>

Reviewed-by: Mauro Carvalho Chehab <mchehab@kernel.org>

> ---
>  lib/xe/xe_query.h           |  2 +-
>  tests/xe/xe_debugfs.c       |  2 +-
>  tests/xe/xe_exec_balancer.c | 22 +++++++++++-----------
>  tests/xe/xe_exec_reset.c    | 14 +++++++-------
>  tests/xe/xe_exec_threads.c  |  4 ++--
>  tests/xe/xe_guc_pc.c        | 24 ++++++++++++------------
>  6 files changed, 34 insertions(+), 34 deletions(-)
> 
> diff --git a/lib/xe/xe_query.h b/lib/xe/xe_query.h
> index beea9d0949..7ee45ef286 100644
> --- a/lib/xe/xe_query.h
> +++ b/lib/xe/xe_query.h
> @@ -69,7 +69,7 @@ struct xe_device {
>  #define for_each_hw_engine_class(__class) \
>  	for (__class = 0; __class < DRM_XE_ENGINE_CLASS_COMPUTE + 1; \
>  	     ++__class)
> -#define for_each_gt(__fd, __gt) \
> +#define xe_for_each_gt(__fd, __gt) \
>  	for (__gt = 0; __gt < xe_number_gt(__fd); ++__gt)
>  
>  #define XE_IS_CLASS_SYSMEM(__region) ((__region)->mem_class == XE_MEM_REGION_CLASS_SYSMEM)
> diff --git a/tests/xe/xe_debugfs.c b/tests/xe/xe_debugfs.c
> index 38c8beccc5..29b0078f39 100644
> --- a/tests/xe/xe_debugfs.c
> +++ b/tests/xe/xe_debugfs.c
> @@ -260,7 +260,7 @@ igt_main_args("", long_options, help_str, opt_handler, NULL)
>  
>  
>  	igt_subtest("gt") {
> -		for_each_gt(fd, gt) {
> +		xe_for_each_gt(fd, gt) {
>  			snprintf(devnode, sizeof(devnode), "gt%d", gt);
>  			igt_require(igt_debugfs_exists(fd, devnode, O_RDONLY));
>  			test_gt(fd, gt);
> diff --git a/tests/xe/xe_exec_balancer.c b/tests/xe/xe_exec_balancer.c
> index a247b1d268..566ec88a41 100644
> --- a/tests/xe/xe_exec_balancer.c
> +++ b/tests/xe/xe_exec_balancer.c
> @@ -632,25 +632,25 @@ igt_main
>  	}
>  
>  	igt_subtest("virtual-all-active")
> -		for_each_gt(fd, gt)
> +		xe_for_each_gt(fd, gt)
>  			for_each_hw_engine_class(class)
>  				test_all_active(fd, gt, class);
>  
>  	for (const struct section *s = sections; s->name; s++) {
>  		igt_subtest_f("once-%s", s->name)
> -			for_each_gt(fd, gt)
> +			xe_for_each_gt(fd, gt)
>  				for_each_hw_engine_class(class)
>  					test_exec(fd, gt, class, 1, 1,
>  						  s->flags);
>  
>  		igt_subtest_f("twice-%s", s->name)
> -			for_each_gt(fd, gt)
> +			xe_for_each_gt(fd, gt)
>  				for_each_hw_engine_class(class)
>  					test_exec(fd, gt, class, 1, 2,
>  						  s->flags);
>  
>  		igt_subtest_f("many-%s", s->name)
> -			for_each_gt(fd, gt)
> +			xe_for_each_gt(fd, gt)
>  				for_each_hw_engine_class(class)
>  					test_exec(fd, gt, class, 1,
>  						  s->flags & (REBIND | INVALIDATE) ?
> @@ -658,7 +658,7 @@ igt_main
>  						  s->flags);
>  
>  		igt_subtest_f("many-engines-%s", s->name)
> -			for_each_gt(fd, gt)
> +			xe_for_each_gt(fd, gt)
>  				for_each_hw_engine_class(class)
>  					test_exec(fd, gt, class, 16,
>  						  s->flags & (REBIND | INVALIDATE) ?
> @@ -666,7 +666,7 @@ igt_main
>  						  s->flags);
>  
>  		igt_subtest_f("no-exec-%s", s->name)
> -			for_each_gt(fd, gt)
> +			xe_for_each_gt(fd, gt)
>  				for_each_hw_engine_class(class)
>  					test_exec(fd, gt, class, 1, 0,
>  						  s->flags);
> @@ -675,17 +675,17 @@ igt_main
>  			continue;
>  
>  		igt_subtest_f("once-cm-%s", s->name)
> -			for_each_gt(fd, gt)
> +			xe_for_each_gt(fd, gt)
>  				for_each_hw_engine_class(class)
>  					test_cm(fd, gt, class, 1, 1, s->flags);
>  
>  		igt_subtest_f("twice-cm-%s", s->name)
> -			for_each_gt(fd, gt)
> +			xe_for_each_gt(fd, gt)
>  				for_each_hw_engine_class(class)
>  					test_cm(fd, gt, class, 1, 2, s->flags);
>  
>  		igt_subtest_f("many-cm-%s", s->name)
> -			for_each_gt(fd, gt)
> +			xe_for_each_gt(fd, gt)
>  				for_each_hw_engine_class(class)
>  					test_cm(fd, gt, class, 1,
>  						s->flags & (REBIND | INVALIDATE) ?
> @@ -693,7 +693,7 @@ igt_main
>  						s->flags);
>  
>  		igt_subtest_f("many-engines-cm-%s", s->name)
> -			for_each_gt(fd, gt)
> +			xe_for_each_gt(fd, gt)
>  				for_each_hw_engine_class(class)
>  					test_cm(fd, gt, class, 16,
>  						s->flags & (REBIND | INVALIDATE) ?
> @@ -701,7 +701,7 @@ igt_main
>  						s->flags);
>  
>  		igt_subtest_f("no-exec-cm-%s", s->name)
> -			for_each_gt(fd, gt)
> +			xe_for_each_gt(fd, gt)
>  				for_each_hw_engine_class(class)
>  					test_cm(fd, gt, class, 1, 0, s->flags);
>  	}
> diff --git a/tests/xe/xe_exec_reset.c b/tests/xe/xe_exec_reset.c
> index 106fe941c1..f86525f78e 100644
> --- a/tests/xe/xe_exec_reset.c
> +++ b/tests/xe/xe_exec_reset.c
> @@ -896,46 +896,46 @@ igt_main
>  
>  	for (const struct section *s = sections; s->name; s++) {
>  		igt_subtest_f("%s-cancel", s->name)
> -			for_each_gt(fd, gt)
> +			xe_for_each_gt(fd, gt)
>  				for_each_hw_engine_class(class)
>  					test_balancer(fd, gt, class, 1, 1,
>  						      CANCEL | s->flags);
>  
>  		igt_subtest_f("%s-engine-reset", s->name)
> -			for_each_gt(fd, gt)
> +			xe_for_each_gt(fd, gt)
>  				for_each_hw_engine_class(class)
>  					test_balancer(fd, gt, class, MAX_INSTANCE + 1,
>  						      MAX_INSTANCE + 1,
>  						      ENGINE_RESET | s->flags);
>  
>  		igt_subtest_f("%s-cat-error", s->name)
> -			for_each_gt(fd, gt)
> +			xe_for_each_gt(fd, gt)
>  				for_each_hw_engine_class(class)
>  					test_balancer(fd, gt, class, MAX_INSTANCE + 1,
>  						      MAX_INSTANCE + 1,
>  						      CAT_ERROR | s->flags);
>  
>  		igt_subtest_f("%s-gt-reset", s->name)
> -			for_each_gt(fd, gt)
> +			xe_for_each_gt(fd, gt)
>  				for_each_hw_engine_class(class)
>  					test_balancer(fd, gt, class, MAX_INSTANCE + 1,
>  						      MAX_INSTANCE + 1,
>  						      GT_RESET | s->flags);
>  
>  		igt_subtest_f("%s-close-fd-no-exec", s->name)
> -			for_each_gt(fd, gt)
> +			xe_for_each_gt(fd, gt)
>  				for_each_hw_engine_class(class)
>  					test_balancer(-1, gt, class, 16, 0,
>  						      CLOSE_FD | s->flags);
>  
>  		igt_subtest_f("%s-close-fd", s->name)
> -			for_each_gt(fd, gt)
> +			xe_for_each_gt(fd, gt)
>  				for_each_hw_engine_class(class)
>  					test_balancer(-1, gt, class, 16, 256,
>  						      CLOSE_FD | s->flags);
>  
>  		igt_subtest_f("%s-close-engines-close-fd", s->name)
> -			for_each_gt(fd, gt)
> +			xe_for_each_gt(fd, gt)
>  				for_each_hw_engine_class(class)
>  					test_balancer(-1, gt, class, 16, 256, CLOSE_FD |
>  						      CLOSE_ENGINES | s->flags);
> diff --git a/tests/xe/xe_exec_threads.c b/tests/xe/xe_exec_threads.c
> index 69055a829b..37c42029e9 100644
> --- a/tests/xe/xe_exec_threads.c
> +++ b/tests/xe/xe_exec_threads.c
> @@ -1042,7 +1042,7 @@ static void threads(int fd, int flags)
>  		++n_hw_engines;
>  
>  	if (flags & BALANCER) {
> -		for_each_gt(fd, gt)
> +		xe_for_each_gt(fd, gt)
>  			for_each_hw_engine_class(class) {
>  				int num_placements = 0;
>  
> @@ -1126,7 +1126,7 @@ static void threads(int fd, int flags)
>  	}
>  
>  	if (flags & BALANCER) {
> -		for_each_gt(fd, gt)
> +		xe_for_each_gt(fd, gt)
>  			for_each_hw_engine_class(class) {
>  				int num_placements = 0;
>  
> diff --git a/tests/xe/xe_guc_pc.c b/tests/xe/xe_guc_pc.c
> index 3f520d7bf4..91c826d853 100644
> --- a/tests/xe/xe_guc_pc.c
> +++ b/tests/xe/xe_guc_pc.c
> @@ -398,18 +398,18 @@ igt_main
>  	}
>  
>  	igt_subtest("freq_basic_api") {
> -		for_each_gt(fd, gt)
> +		xe_for_each_gt(fd, gt)
>  			test_freq_basic_api(sysfs, gt);
>  	}
>  
>  	igt_subtest("freq_fixed_idle") {
> -		for_each_gt(fd, gt) {
> +		xe_for_each_gt(fd, gt) {
>  			test_freq_fixed(sysfs, gt);
>  		}
>  	}
>  
>  	igt_subtest("freq_fixed_exec") {
> -		for_each_gt(fd, gt) {
> +		xe_for_each_gt(fd, gt) {
>  			for_each_hw_engine(fd, hwe)
>  				igt_fork(child, ncpus) {
>  					igt_debug("Execution Started\n");
> @@ -423,13 +423,13 @@ igt_main
>  	}
>  
>  	igt_subtest("freq_range_idle") {
> -		for_each_gt(fd, gt) {
> +		xe_for_each_gt(fd, gt) {
>  			test_freq_range(sysfs, gt);
>  		}
>  	}
>  
>  	igt_subtest("freq_range_exec") {
> -		for_each_gt(fd, gt) {
> +		xe_for_each_gt(fd, gt) {
>  			for_each_hw_engine(fd, hwe)
>  				igt_fork(child, ncpus) {
>  					igt_debug("Execution Started\n");
> @@ -443,37 +443,37 @@ igt_main
>  	}
>  
>  	igt_subtest("freq_low_max") {
> -		for_each_gt(fd, gt) {
> +		xe_for_each_gt(fd, gt) {
>  			test_freq_low_max(sysfs, gt);
>  		}
>  	}
>  
>  	igt_subtest("freq_suspend") {
> -		for_each_gt(fd, gt) {
> +		xe_for_each_gt(fd, gt) {
>  			test_suspend(sysfs, gt);
>  		}
>  	}
>  
>  	igt_subtest("freq_reset") {
> -		for_each_gt(fd, gt) {
> +		xe_for_each_gt(fd, gt) {
>  			test_reset(fd, sysfs, gt, 1);
>  		}
>  	}
>  
>  	igt_subtest("freq_reset_multiple") {
> -		for_each_gt(fd, gt) {
> +		xe_for_each_gt(fd, gt) {
>  			test_reset(fd, sysfs, gt, 50);
>  		}
>  	}
>  
>  	igt_subtest("rc6_on_idle") {
> -		for_each_gt(fd, gt) {
> +		xe_for_each_gt(fd, gt) {
>  			assert(igt_wait(in_rc6(sysfs, gt), 1000, 1));
>  		}
>  	}
>  
>  	igt_subtest("rc0_on_exec") {
> -		for_each_gt(fd, gt) {
> +		xe_for_each_gt(fd, gt) {
>  			assert(igt_wait(in_rc6(sysfs, gt), 1000, 1));
>  			for_each_hw_engine(fd, hwe)
>  				igt_fork(child, ncpus) {
> @@ -488,7 +488,7 @@ igt_main
>  	}
>  
>  	igt_fixture {
> -		for_each_gt(fd, gt) {
> +		xe_for_each_gt(fd, gt) {
>  			set_freq(sysfs, gt, "min", stash_min);
>  			set_freq(sysfs, gt, "max", stash_max);
>  		}

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [igt-dev] ✓ Fi.CI.BAT: success for lib/xe_query: Rename for_each_gt macro for Xe tests
  2023-03-16 16:08 [igt-dev] [PATCH i-g-t] lib/xe_query: Rename for_each_gt macro for Xe tests Zbigniew Kempczyński
  2023-03-16 16:24 ` Mauro Carvalho Chehab
@ 2023-03-16 19:38 ` Patchwork
  2023-03-16 23:42 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
  2 siblings, 0 replies; 4+ messages in thread
From: Patchwork @ 2023-03-16 19:38 UTC (permalink / raw)
  To: Zbigniew Kempczyński; +Cc: igt-dev

[-- Attachment #1: Type: text/plain, Size: 2496 bytes --]

== Series Details ==

Series: lib/xe_query: Rename for_each_gt macro for Xe tests
URL   : https://patchwork.freedesktop.org/series/115280/
State : success

== Summary ==

CI Bug Log - changes from IGT_7202 -> IGTPW_8627
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8627/index.html

Participating hosts (36 -> 34)
------------------------------

  Missing    (2): bat-atsm-1 fi-snb-2520m 

Known issues
------------

  Here are the changes found in IGTPW_8627 that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@i915_selftest@live@execlists:
    - fi-bsw-nick:        [PASS][1] -> [ABORT][2] ([i915#7911] / [i915#7913])
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7202/fi-bsw-nick/igt@i915_selftest@live@execlists.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8627/fi-bsw-nick/igt@i915_selftest@live@execlists.html

  * igt@i915_selftest@live@gt_heartbeat:
    - bat-jsl-1:          [PASS][3] -> [DMESG-FAIL][4] ([i915#5334])
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7202/bat-jsl-1/igt@i915_selftest@live@gt_heartbeat.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8627/bat-jsl-1/igt@i915_selftest@live@gt_heartbeat.html

  * igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-hdmi-a-3:
    - bat-dg2-11:         [PASS][5] -> [INCOMPLETE][6] ([i915#7908])
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7202/bat-dg2-11/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-hdmi-a-3.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8627/bat-dg2-11/igt@kms_pipe_crc_basic@suspend-read-crc@pipe-c-hdmi-a-3.html

  
  [i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334
  [i915#7908]: https://gitlab.freedesktop.org/drm/intel/issues/7908
  [i915#7911]: https://gitlab.freedesktop.org/drm/intel/issues/7911
  [i915#7913]: https://gitlab.freedesktop.org/drm/intel/issues/7913


Build changes
-------------

  * CI: CI-20190529 -> None
  * IGT: IGT_7202 -> IGTPW_8627

  CI-20190529: 20190529
  CI_DRM_12871: 8774b945454da4b6e473271d6d098f573cd09787 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_8627: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8627/index.html
  IGT_7202: b4ec7dac375eed2dda89c64d4de94c4c9205b601 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8627/index.html

[-- Attachment #2: Type: text/html, Size: 3146 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [igt-dev] ✗ Fi.CI.IGT: failure for lib/xe_query: Rename for_each_gt macro for Xe tests
  2023-03-16 16:08 [igt-dev] [PATCH i-g-t] lib/xe_query: Rename for_each_gt macro for Xe tests Zbigniew Kempczyński
  2023-03-16 16:24 ` Mauro Carvalho Chehab
  2023-03-16 19:38 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
@ 2023-03-16 23:42 ` Patchwork
  2 siblings, 0 replies; 4+ messages in thread
From: Patchwork @ 2023-03-16 23:42 UTC (permalink / raw)
  To: Zbigniew Kempczyński; +Cc: igt-dev

[-- Attachment #1: Type: text/plain, Size: 28430 bytes --]

== Series Details ==

Series: lib/xe_query: Rename for_each_gt macro for Xe tests
URL   : https://patchwork.freedesktop.org/series/115280/
State : failure

== Summary ==

CI Bug Log - changes from IGT_7202_full -> IGTPW_8627_full
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with IGTPW_8627_full absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in IGTPW_8627_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://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8627/index.html

Participating hosts (7 -> 8)
------------------------------

  Additional (1): shard-rkl0 

Possible new issues
-------------------

  Here are the unknown changes that may have been introduced in IGTPW_8627_full:

### IGT changes ###

#### Possible regressions ####

  * igt@i915_pm_rps@reset:
    - shard-snb:          [PASS][1] -> [DMESG-FAIL][2]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7202/shard-snb5/igt@i915_pm_rps@reset.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8627/shard-snb7/igt@i915_pm_rps@reset.html

  
#### Suppressed ####

  The following results come from untrusted machines, tests, or statuses.
  They do not affect the overall result.

  * igt@gem_eio@in-flight-external:
    - {shard-tglu}:       [PASS][3] -> [ABORT][4]
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7202/shard-tglu-9/igt@gem_eio@in-flight-external.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8627/shard-tglu-10/igt@gem_eio@in-flight-external.html

  * {igt@kms_plane_scaling@i915-max-src-size}:
    - {shard-tglu}:       NOTRUN -> [SKIP][5]
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8627/shard-tglu-8/igt@kms_plane_scaling@i915-max-src-size.html

  
Known issues
------------

  Here are the changes found in IGTPW_8627_full that come from known issues:

### IGT changes ###

#### Issues hit ####

  * igt@gem_eio@in-flight-contexts-10ms:
    - shard-apl:          [PASS][6] -> [TIMEOUT][7] ([i915#3063])
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7202/shard-apl3/igt@gem_eio@in-flight-contexts-10ms.html
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8627/shard-apl4/igt@gem_eio@in-flight-contexts-10ms.html

  * igt@gem_eio@reset-stress:
    - shard-snb:          [PASS][8] -> [TIMEOUT][9] ([i915#3063])
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7202/shard-snb5/igt@gem_eio@reset-stress.html
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8627/shard-snb2/igt@gem_eio@reset-stress.html

  * igt@gem_exec_fair@basic-none-solo@rcs0:
    - shard-apl:          [PASS][10] -> [FAIL][11] ([i915#2842])
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7202/shard-apl7/igt@gem_exec_fair@basic-none-solo@rcs0.html
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8627/shard-apl4/igt@gem_exec_fair@basic-none-solo@rcs0.html

  * igt@gem_lmem_swapping@verify:
    - shard-apl:          NOTRUN -> [SKIP][12] ([fdo#109271] / [i915#4613]) +2 similar issues
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8627/shard-apl7/igt@gem_lmem_swapping@verify.html

  * igt@gen9_exec_parse@allowed-single:
    - shard-glk:          [PASS][13] -> [ABORT][14] ([i915#5566])
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7202/shard-glk9/igt@gen9_exec_parse@allowed-single.html
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8627/shard-glk6/igt@gen9_exec_parse@allowed-single.html

  * igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_mc_ccs:
    - shard-apl:          NOTRUN -> [SKIP][15] ([fdo#109271] / [i915#3886]) +3 similar issues
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8627/shard-apl6/igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_mc_ccs.html

  * igt@kms_ccs@pipe-d-bad-pixel-format-y_tiled_gen12_mc_ccs:
    - shard-apl:          NOTRUN -> [SKIP][16] ([fdo#109271]) +101 similar issues
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8627/shard-apl1/igt@kms_ccs@pipe-d-bad-pixel-format-y_tiled_gen12_mc_ccs.html

  * igt@kms_content_protection@atomic-dpms@pipe-a-dp-1:
    - shard-apl:          NOTRUN -> [TIMEOUT][17] ([i915#7173])
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8627/shard-apl4/igt@kms_content_protection@atomic-dpms@pipe-a-dp-1.html

  * igt@kms_cursor_crc@cursor-suspend@pipe-a-dp-1:
    - shard-apl:          [PASS][18] -> [ABORT][19] ([i915#180]) +1 similar issue
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7202/shard-apl4/igt@kms_cursor_crc@cursor-suspend@pipe-a-dp-1.html
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8627/shard-apl4/igt@kms_cursor_crc@cursor-suspend@pipe-a-dp-1.html

  * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
    - shard-glk:          [PASS][20] -> [FAIL][21] ([i915#2346])
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7202/shard-glk5/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8627/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html

  * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1:
    - shard-glk:          NOTRUN -> [SKIP][22] ([fdo#109271])
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8627/shard-glk3/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html

  * igt@kms_writeback@writeback-pixel-formats:
    - shard-apl:          NOTRUN -> [SKIP][23] ([fdo#109271] / [i915#2437])
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8627/shard-apl6/igt@kms_writeback@writeback-pixel-formats.html

  * igt@perf@stress-open-close:
    - shard-glk:          [PASS][24] -> [ABORT][25] ([i915#5213])
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7202/shard-glk3/igt@perf@stress-open-close.html
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8627/shard-glk4/igt@perf@stress-open-close.html

  * igt@perf_pmu@module-unload:
    - shard-snb:          [PASS][26] -> [ABORT][27] ([i915#4528])
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7202/shard-snb5/igt@perf_pmu@module-unload.html
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8627/shard-snb2/igt@perf_pmu@module-unload.html

  
#### Possible fixes ####

  * igt@drm_fdinfo@most-busy-check-all@rcs0:
    - {shard-rkl}:        [FAIL][28] ([i915#7742]) -> [PASS][29]
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7202/shard-rkl-1/igt@drm_fdinfo@most-busy-check-all@rcs0.html
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8627/shard-rkl-4/igt@drm_fdinfo@most-busy-check-all@rcs0.html

  * igt@fbdev@eof:
    - {shard-tglu}:       [SKIP][30] ([i915#2582]) -> [PASS][31] +1 similar issue
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7202/shard-tglu-9/igt@fbdev@eof.html
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8627/shard-tglu-6/igt@fbdev@eof.html

  * igt@fbdev@info:
    - {shard-rkl}:        [SKIP][32] ([i915#2582]) -> [PASS][33] +1 similar issue
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7202/shard-rkl-4/igt@fbdev@info.html
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8627/shard-rkl-6/igt@fbdev@info.html

  * igt@gem_exec_fair@basic-none-rrul@rcs0:
    - shard-glk:          [FAIL][34] ([i915#2842]) -> [PASS][35] +3 similar issues
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7202/shard-glk6/igt@gem_exec_fair@basic-none-rrul@rcs0.html
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8627/shard-glk7/igt@gem_exec_fair@basic-none-rrul@rcs0.html

  * igt@gem_exec_fair@basic-none-vip@rcs0:
    - {shard-rkl}:        [FAIL][36] ([i915#2842]) -> [PASS][37]
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7202/shard-rkl-4/igt@gem_exec_fair@basic-none-vip@rcs0.html
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8627/shard-rkl-4/igt@gem_exec_fair@basic-none-vip@rcs0.html

  * igt@gem_exec_fair@basic-throttle@rcs0:
    - {shard-tglu}:       [FAIL][38] ([i915#2842]) -> [PASS][39]
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7202/shard-tglu-7/igt@gem_exec_fair@basic-throttle@rcs0.html
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8627/shard-tglu-8/igt@gem_exec_fair@basic-throttle@rcs0.html

  * igt@gem_exec_reloc@basic-wc-read-noreloc:
    - {shard-rkl}:        [SKIP][40] ([i915#3281]) -> [PASS][41] +12 similar issues
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7202/shard-rkl-2/igt@gem_exec_reloc@basic-wc-read-noreloc.html
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8627/shard-rkl-5/igt@gem_exec_reloc@basic-wc-read-noreloc.html

  * igt@gem_pread@bench:
    - {shard-rkl}:        [SKIP][42] ([i915#3282]) -> [PASS][43] +4 similar issues
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7202/shard-rkl-4/igt@gem_pread@bench.html
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8627/shard-rkl-5/igt@gem_pread@bench.html

  * igt@gen9_exec_parse@allowed-single:
    - shard-apl:          [ABORT][44] ([i915#5566]) -> [PASS][45]
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7202/shard-apl2/igt@gen9_exec_parse@allowed-single.html
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8627/shard-apl2/igt@gen9_exec_parse@allowed-single.html

  * igt@gen9_exec_parse@cmd-crossing-page:
    - {shard-rkl}:        [SKIP][46] ([i915#2527]) -> [PASS][47] +2 similar issues
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7202/shard-rkl-3/igt@gen9_exec_parse@cmd-crossing-page.html
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8627/shard-rkl-5/igt@gen9_exec_parse@cmd-crossing-page.html

  * igt@i915_hangman@engine-engine-error@bcs0:
    - {shard-rkl}:        [SKIP][48] ([i915#6258]) -> [PASS][49]
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7202/shard-rkl-5/igt@i915_hangman@engine-engine-error@bcs0.html
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8627/shard-rkl-4/igt@i915_hangman@engine-engine-error@bcs0.html

  * igt@i915_pipe_stress@stress-xrgb8888-ytiled:
    - {shard-rkl}:        [SKIP][50] ([i915#4098]) -> [PASS][51] +1 similar issue
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7202/shard-rkl-1/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8627/shard-rkl-6/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html

  * igt@i915_pm_dc@dc9-dpms:
    - {shard-rkl}:        [SKIP][52] ([i915#3361]) -> [PASS][53]
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7202/shard-rkl-5/igt@i915_pm_dc@dc9-dpms.html
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8627/shard-rkl-1/igt@i915_pm_dc@dc9-dpms.html
    - shard-apl:          [SKIP][54] ([fdo#109271]) -> [PASS][55]
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7202/shard-apl1/igt@i915_pm_dc@dc9-dpms.html
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8627/shard-apl4/igt@i915_pm_dc@dc9-dpms.html

  * igt@i915_pm_rpm@modeset-lpsp-stress:
    - {shard-rkl}:        [SKIP][56] ([i915#1397]) -> [PASS][57]
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7202/shard-rkl-5/igt@i915_pm_rpm@modeset-lpsp-stress.html
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8627/shard-rkl-6/igt@i915_pm_rpm@modeset-lpsp-stress.html

  * igt@i915_pm_rpm@modeset-lpsp-stress-no-wait:
    - {shard-tglu}:       [SKIP][58] ([i915#1397]) -> [PASS][59]
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7202/shard-tglu-10/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8627/shard-tglu-1/igt@i915_pm_rpm@modeset-lpsp-stress-no-wait.html

  * igt@i915_pm_sseu@full-enable:
    - {shard-rkl}:        [SKIP][60] ([i915#4387]) -> [PASS][61]
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7202/shard-rkl-3/igt@i915_pm_sseu@full-enable.html
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8627/shard-rkl-5/igt@i915_pm_sseu@full-enable.html

  * igt@i915_suspend@debugfs-reader:
    - shard-apl:          [ABORT][62] ([i915#180]) -> [PASS][63] +1 similar issue
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7202/shard-apl4/igt@i915_suspend@debugfs-reader.html
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8627/shard-apl7/igt@i915_suspend@debugfs-reader.html

  * igt@kms_cursor_legacy@cursor-vs-flip-varying-size:
    - {shard-tglu}:       [SKIP][64] ([i915#1845]) -> [PASS][65] +29 similar issues
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7202/shard-tglu-9/igt@kms_cursor_legacy@cursor-vs-flip-varying-size.html
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8627/shard-tglu-5/igt@kms_cursor_legacy@cursor-vs-flip-varying-size.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a2:
    - shard-glk:          [FAIL][66] ([i915#2122]) -> [PASS][67]
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7202/shard-glk3/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a2.html
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8627/shard-glk4/igt@kms_flip@flip-vs-expired-vblank-interruptible@a-hdmi-a2.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt:
    - {shard-tglu}:       [SKIP][68] ([i915#1849]) -> [PASS][69] +12 similar issues
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7202/shard-tglu-9/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt.html
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8627/shard-tglu-5/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-indfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite:
    - {shard-rkl}:        [SKIP][70] ([i915#1849] / [i915#4098]) -> [PASS][71] +14 similar issues
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7202/shard-rkl-3/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite.html
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8627/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite.html

  * {igt@kms_plane@invalid-pixel-format-settings}:
    - {shard-tglu}:       [SKIP][72] ([i915#8152]) -> [PASS][73]
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7202/shard-tglu-9/igt@kms_plane@invalid-pixel-format-settings.html
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8627/shard-tglu-6/igt@kms_plane@invalid-pixel-format-settings.html

  * igt@kms_plane@plane-panning-bottom-right@pipe-a-planes:
    - {shard-rkl}:        [SKIP][74] ([i915#1849]) -> [PASS][75] +3 similar issues
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7202/shard-rkl-1/igt@kms_plane@plane-panning-bottom-right@pipe-a-planes.html
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8627/shard-rkl-6/igt@kms_plane@plane-panning-bottom-right@pipe-a-planes.html

  * igt@kms_psr@primary_blt:
    - {shard-rkl}:        [SKIP][76] ([i915#1072]) -> [PASS][77] +1 similar issue
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7202/shard-rkl-3/igt@kms_psr@primary_blt.html
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8627/shard-rkl-6/igt@kms_psr@primary_blt.html

  * igt@kms_universal_plane@disable-primary-vs-flip-pipe-a:
    - {shard-tglu}:       [SKIP][78] ([fdo#109274]) -> [PASS][79] +4 similar issues
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7202/shard-tglu-9/igt@kms_universal_plane@disable-primary-vs-flip-pipe-a.html
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8627/shard-tglu-8/igt@kms_universal_plane@disable-primary-vs-flip-pipe-a.html

  * igt@kms_vblank@pipe-b-ts-continuation-idle:
    - {shard-rkl}:        [SKIP][80] ([i915#1845] / [i915#4098]) -> [PASS][81] +17 similar issues
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7202/shard-rkl-4/igt@kms_vblank@pipe-b-ts-continuation-idle.html
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8627/shard-rkl-6/igt@kms_vblank@pipe-b-ts-continuation-idle.html

  * igt@kms_vblank@pipe-d-wait-forked-busy:
    - {shard-tglu}:       [SKIP][82] ([i915#1845] / [i915#7651]) -> [PASS][83] +28 similar issues
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7202/shard-tglu-9/igt@kms_vblank@pipe-d-wait-forked-busy.html
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8627/shard-tglu-3/igt@kms_vblank@pipe-d-wait-forked-busy.html

  * igt@perf@gen12-mi-rpc:
    - {shard-rkl}:        [SKIP][84] ([fdo#109289]) -> [PASS][85]
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7202/shard-rkl-5/igt@perf@gen12-mi-rpc.html
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8627/shard-rkl-1/igt@perf@gen12-mi-rpc.html

  * igt@perf@gen8-unprivileged-single-ctx-counters:
    - {shard-rkl}:        [SKIP][86] ([i915#2436]) -> [PASS][87]
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7202/shard-rkl-1/igt@perf@gen8-unprivileged-single-ctx-counters.html
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8627/shard-rkl-5/igt@perf@gen8-unprivileged-single-ctx-counters.html

  
  {name}: This element is suppressed. This means it is ignored when computing
          the status of the difference (SUCCESS, WARNING, or FAILURE).

  [IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2
  [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
  [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
  [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
  [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
  [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
  [fdo#109307]: https://bugs.freedesktop.org/show_bug.cgi?id=109307
  [fdo#109312]: https://bugs.freedesktop.org/show_bug.cgi?id=109312
  [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
  [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#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#1755]: https://gitlab.freedesktop.org/drm/intel/issues/1755
  [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180
  [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#2122]: https://gitlab.freedesktop.org/drm/intel/issues/2122
  [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
  [i915#2433]: https://gitlab.freedesktop.org/drm/intel/issues/2433
  [i915#2435]: https://gitlab.freedesktop.org/drm/intel/issues/2435
  [i915#2436]: https://gitlab.freedesktop.org/drm/intel/issues/2436
  [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#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658
  [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
  [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#3063]: https://gitlab.freedesktop.org/drm/intel/issues/3063
  [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281
  [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
  [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
  [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299
  [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
  [i915#3361]: https://gitlab.freedesktop.org/drm/intel/issues/3361
  [i915#3371]: https://gitlab.freedesktop.org/drm/intel/issues/3371
  [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458
  [i915#3536]: https://gitlab.freedesktop.org/drm/intel/issues/3536
  [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#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#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742
  [i915#3804]: https://gitlab.freedesktop.org/drm/intel/issues/3804
  [i915#3825]: https://gitlab.freedesktop.org/drm/intel/issues/3825
  [i915#3826]: https://gitlab.freedesktop.org/drm/intel/issues/3826
  [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840
  [i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886
  [i915#3952]: https://gitlab.freedesktop.org/drm/intel/issues/3952
  [i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955
  [i915#3989]: https://gitlab.freedesktop.org/drm/intel/issues/3989
  [i915#404]: https://gitlab.freedesktop.org/drm/intel/issues/404
  [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#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
  [i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212
  [i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213
  [i915#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215
  [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
  [i915#4387]: https://gitlab.freedesktop.org/drm/intel/issues/4387
  [i915#4528]: https://gitlab.freedesktop.org/drm/intel/issues/4528
  [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#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771
  [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812
  [i915#4818]: https://gitlab.freedesktop.org/drm/intel/issues/4818
  [i915#4833]: https://gitlab.freedesktop.org/drm/intel/issues/4833
  [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852
  [i915#4854]: https://gitlab.freedesktop.org/drm/intel/issues/4854
  [i915#4859]: https://gitlab.freedesktop.org/drm/intel/issues/4859
  [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860
  [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880
  [i915#4881]: https://gitlab.freedesktop.org/drm/intel/issues/4881
  [i915#5030]: https://gitlab.freedesktop.org/drm/intel/issues/5030
  [i915#5115]: https://gitlab.freedesktop.org/drm/intel/issues/5115
  [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#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#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784
  [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
  [i915#6230]: https://gitlab.freedesktop.org/drm/intel/issues/6230
  [i915#6247]: https://gitlab.freedesktop.org/drm/intel/issues/6247
  [i915#6248]: https://gitlab.freedesktop.org/drm/intel/issues/6248
  [i915#6252]: https://gitlab.freedesktop.org/drm/intel/issues/6252
  [i915#6258]: https://gitlab.freedesktop.org/drm/intel/issues/6258
  [i915#6259]: https://gitlab.freedesktop.org/drm/intel/issues/6259
  [i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301
  [i915#6334]: https://gitlab.freedesktop.org/drm/intel/issues/6334
  [i915#6355]: https://gitlab.freedesktop.org/drm/intel/issues/6355
  [i915#6433]: https://gitlab.freedesktop.org/drm/intel/issues/6433
  [i915#6493]: https://gitlab.freedesktop.org/drm/intel/issues/6493
  [i915#6497]: https://gitlab.freedesktop.org/drm/intel/issues/6497
  [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524
  [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#7128]: https://gitlab.freedesktop.org/drm/intel/issues/7128
  [i915#7173]: https://gitlab.freedesktop.org/drm/intel/issues/7173
  [i915#7294]: https://gitlab.freedesktop.org/drm/intel/issues/7294
  [i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561
  [i915#7651]: https://gitlab.freedesktop.org/drm/intel/issues/7651
  [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697
  [i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701
  [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711
  [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742
  [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
  [i915#7949]: https://gitlab.freedesktop.org/drm/intel/issues/7949
  [i915#7957]: https://gitlab.freedesktop.org/drm/intel/issues/7957
  [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975
  [i915#7984]: https://gitlab.freedesktop.org/drm/intel/issues/7984
  [i915#8152]: https://gitlab.freedesktop.org/drm/intel/issues/8152
  [i915#8154]: https://gitlab.freedesktop.org/drm/intel/issues/8154
  [i915#8155]: https://gitlab.freedesktop.org/drm/intel/issues/8155
  [i915#8211]: https://gitlab.freedesktop.org/drm/intel/issues/8211
  [i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228
  [i915#8282]: https://gitlab.freedesktop.org/drm/intel/issues/8282


Build changes
-------------

  * CI: CI-20190529 -> None
  * IGT: IGT_7202 -> IGTPW_8627

  CI-20190529: 20190529
  CI_DRM_12871: 8774b945454da4b6e473271d6d098f573cd09787 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_8627: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8627/index.html
  IGT_7202: b4ec7dac375eed2dda89c64d4de94c4c9205b601 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8627/index.html

[-- Attachment #2: Type: text/html, Size: 22745 bytes --]

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2023-03-16 23:42 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2023-03-16 16:08 [igt-dev] [PATCH i-g-t] lib/xe_query: Rename for_each_gt macro for Xe tests Zbigniew Kempczyński
2023-03-16 16:24 ` Mauro Carvalho Chehab
2023-03-16 19:38 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
2023-03-16 23:42 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.