* [igt-dev] [PATCH 1/5] tests/intel: Add multi-gt support for rc6-idle test
2023-11-09 6:32 [igt-dev] [PATCH 0/5] Add multi-gt support for RC6 residency test Sujaritha Sundaresan
@ 2023-11-09 6:32 ` Sujaritha Sundaresan
2023-11-09 6:32 ` [igt-dev] [PATCH 2/5] tests/intel: Add multi-gt support for rc6-fence test Sujaritha Sundaresan
` (7 subsequent siblings)
8 siblings, 0 replies; 11+ messages in thread
From: Sujaritha Sundaresan @ 2023-11-09 6:32 UTC (permalink / raw)
To: igt-dev
Adding multi-gt support for the rc6-idle subtest.
Signed-off-by: Sujaritha Sundaresan <sujaritha.sundaresan@intel.com>
---
tests/intel/i915_pm_rc6_residency.c | 18 +++++++++++-------
1 file changed, 11 insertions(+), 7 deletions(-)
diff --git a/tests/intel/i915_pm_rc6_residency.c b/tests/intel/i915_pm_rc6_residency.c
index b266680ac..57ac5c721 100644
--- a/tests/intel/i915_pm_rc6_residency.c
+++ b/tests/intel/i915_pm_rc6_residency.c
@@ -376,7 +376,7 @@ static void kill_children(int sig)
signal(sig, old);
}
-static void rc6_idle(int i915, uint32_t ctx_id, uint64_t flags)
+static void rc6_idle(int i915, uint32_t ctx_id, uint64_t flags, unsigned int gt)
{
const int64_t duration_ns = SLEEP_DURATION * (int64_t)NSEC_PER_SEC;
const int tolerance = 20; /* Some RC6 is better than none! */
@@ -397,7 +397,7 @@ static void rc6_idle(int i915, uint32_t ctx_id, uint64_t flags)
struct igt_power gpu;
int fd;
- fd = open_pmu(i915, I915_PMU_RC6_RESIDENCY);
+ fd = open_pmu(i915, __I915_PMU_RC6_RESIDENCY(gt));
igt_drop_caches_set(i915, DROP_IDLE);
igt_require(__pmu_wait_for_rc6(fd));
igt_power_open(i915, &gpu, "gpu");
@@ -558,6 +558,7 @@ static void rc6_fence(int i915, const intel_ctx_t *ctx)
igt_main
{
int i915 = -1;
+ unsigned int dirfd, gt;
const intel_ctx_t *ctx;
/* Use drm_open_driver to verify device existence */
@@ -572,11 +573,15 @@ igt_main
igt_require_gem(i915);
gem_quiescent_gpu(i915);
- for_each_ctx_engine(i915, ctx, e) {
- if (e->instance == 0) {
- igt_dynamic_f("%s", e->name)
- rc6_idle(i915, ctx->id, e->flags);
+ i915_for_each_gt(i915, dirfd, gt) {
+ ctx = intel_ctx_create_for_gt(i915, gt);
+ for_each_ctx_engine(i915, ctx, e) {
+ if (e->instance == 0) {
+ igt_dynamic_f("gt%u-%s", gt, e->name)
+ rc6_idle(i915, ctx->id, e->flags, gt);
+ }
}
+ intel_ctx_destroy(i915, ctx);
}
}
@@ -626,7 +631,6 @@ igt_main
}
igt_fixture {
- intel_ctx_destroy(i915, ctx);
drm_close_driver(i915);
}
}
--
2.25.1
^ permalink raw reply related [flat|nested] 11+ messages in thread* [igt-dev] [PATCH 2/5] tests/intel: Add multi-gt support for rc6-fence test
2023-11-09 6:32 [igt-dev] [PATCH 0/5] Add multi-gt support for RC6 residency test Sujaritha Sundaresan
2023-11-09 6:32 ` [igt-dev] [PATCH 1/5] tests/intel: Add multi-gt support for rc6-idle test Sujaritha Sundaresan
@ 2023-11-09 6:32 ` Sujaritha Sundaresan
2023-11-09 6:32 ` [igt-dev] [PATCH 3/5] tests/intel: Add multi-gt support for rc6-accuracy test Sujaritha Sundaresan
` (6 subsequent siblings)
8 siblings, 0 replies; 11+ messages in thread
From: Sujaritha Sundaresan @ 2023-11-09 6:32 UTC (permalink / raw)
To: igt-dev
Add multi-gt support for the rc6-fence subtest.
Signed-off-by: Sujaritha Sundaresan <sujaritha.sundaresan@intel.com>
---
tests/intel/i915_pm_rc6_residency.c | 13 +++++++++----
1 file changed, 9 insertions(+), 4 deletions(-)
diff --git a/tests/intel/i915_pm_rc6_residency.c b/tests/intel/i915_pm_rc6_residency.c
index 57ac5c721..5dc785792 100644
--- a/tests/intel/i915_pm_rc6_residency.c
+++ b/tests/intel/i915_pm_rc6_residency.c
@@ -471,12 +471,13 @@ static void rc6_idle(int i915, uint32_t ctx_id, uint64_t flags, unsigned int gt)
}
}
-static void rc6_fence(int i915, const intel_ctx_t *ctx)
+static void rc6_fence(int i915, unsigned int gt)
{
const int64_t duration_ns = SLEEP_DURATION * (int64_t)NSEC_PER_SEC;
const int tolerance = 20; /* Some RC6 is better than none! */
const unsigned int gen = intel_gen(intel_get_drm_devid(i915));
const struct intel_execution_engine2 *e;
+ const intel_ctx_t *ctx;
struct power_sample sample[2];
unsigned long slept;
uint64_t rc6, ts[2], ahnd;
@@ -485,7 +486,7 @@ static void rc6_fence(int i915, const intel_ctx_t *ctx)
igt_require_sw_sync();
- fd = open_pmu(i915, I915_PMU_RC6_RESIDENCY);
+ fd = open_pmu(i915, __I915_PMU_RC6_RESIDENCY(gt));
igt_drop_caches_set(i915, DROP_IDLE);
igt_require(__pmu_wait_for_rc6(fd));
igt_power_open(i915, &gpu, "gpu");
@@ -509,6 +510,7 @@ static void rc6_fence(int i915, const intel_ctx_t *ctx)
assert_within_epsilon(rc6, ts[1] - ts[0], 5);
/* Submit but delay execution, we should be idle and conserving power */
+ ctx = intel_ctx_create_for_gt(i915, gt);
ahnd = get_reloc_ahnd(i915, ctx->id);
for_each_ctx_engine(i915, ctx, e) {
igt_spin_t *spin;
@@ -550,6 +552,7 @@ static void rc6_fence(int i915, const intel_ctx_t *ctx)
gem_quiescent_gpu(i915);
}
put_ahnd(ahnd);
+ intel_ctx_destroy(i915, ctx);
igt_power_close(&gpu);
close(fd);
@@ -585,11 +588,13 @@ igt_main
}
}
- igt_subtest("rc6-fence") {
+ igt_subtest_with_dynamic("rc6-fence") {
igt_require_gem(i915);
gem_quiescent_gpu(i915);
- rc6_fence(i915, ctx);
+ i915_for_each_gt(i915, dirfd, gt)
+ igt_dynamic_f("gt%u", gt)
+ rc6_fence(i915, gt);
}
igt_subtest_group {
--
2.25.1
^ permalink raw reply related [flat|nested] 11+ messages in thread* [igt-dev] [PATCH 3/5] tests/intel: Add multi-gt support for rc6-accuracy test
2023-11-09 6:32 [igt-dev] [PATCH 0/5] Add multi-gt support for RC6 residency test Sujaritha Sundaresan
2023-11-09 6:32 ` [igt-dev] [PATCH 1/5] tests/intel: Add multi-gt support for rc6-idle test Sujaritha Sundaresan
2023-11-09 6:32 ` [igt-dev] [PATCH 2/5] tests/intel: Add multi-gt support for rc6-fence test Sujaritha Sundaresan
@ 2023-11-09 6:32 ` Sujaritha Sundaresan
2023-11-09 6:32 ` [igt-dev] [PATCH 4/5] tests/intel: Print drpc info for rc6_residency test Sujaritha Sundaresan
` (5 subsequent siblings)
8 siblings, 0 replies; 11+ messages in thread
From: Sujaritha Sundaresan @ 2023-11-09 6:32 UTC (permalink / raw)
To: igt-dev
Add multi-gt support for rc6-accuracy subtest.
Signed-off-by: Sujaritha Sundaresan <sujaritha.sundaresan@intel.com>
---
tests/intel/i915_pm_rc6_residency.c | 55 +++++++++++++++--------------
1 file changed, 28 insertions(+), 27 deletions(-)
diff --git a/tests/intel/i915_pm_rc6_residency.c b/tests/intel/i915_pm_rc6_residency.c
index 5dc785792..6c8ba52ae 100644
--- a/tests/intel/i915_pm_rc6_residency.c
+++ b/tests/intel/i915_pm_rc6_residency.c
@@ -82,23 +82,19 @@ static unsigned long get_rc6_enabled_mask(void)
return enabled;
}
-static bool has_rc6_residency(const char *name)
+static bool has_rc6_residency(int dirfd, enum i915_attr_id id)
{
unsigned long residency;
- char path[128];
- sprintf(path, "power/%s_residency_ms", name);
- return igt_sysfs_scanf(sysfs, path, "%lu", &residency) == 1;
+ return igt_sysfs_rps_scanf(dirfd, id, "%lu", &residency) == 1;
}
-static unsigned long read_rc6_residency(const char *name)
+static unsigned long read_rc6_residency(int dirfd, enum i915_attr_id id)
{
unsigned long residency;
- char path[128];
residency = 0;
- sprintf(path, "power/%s_residency_ms", name);
- igt_assert(igt_sysfs_scanf(sysfs, path, "%lu", &residency) == 1);
+ igt_assert(igt_sysfs_rps_scanf(dirfd, id, "%lu", &residency) == 1);
return residency;
}
@@ -107,11 +103,14 @@ static void residency_accuracy(unsigned int diff,
const char *name_of_rc6_residency)
{
double ratio;
+ int gt = 0, gt_current;
ratio = (double)diff / duration;
- igt_info("Residency in %s or deeper state: %u ms (sleep duration %u ms) (%.1f%% of expected duration)\n",
- name_of_rc6_residency, diff, duration, 100*ratio);
+ gt_current = igt_sysfs_get_u32(gt, "id");
+
+ igt_info("GT[%d]: Residency in %s or deeper state: %u ms (sleep duration %u ms) (%.1f%% of expected duration)\n",
+ gt_current, name_of_rc6_residency, diff, duration, 100*ratio);
igt_assert_f(ratio > 0.9 && ratio < 1.05,
"Sysfs RC6 residency counter is inaccurate.\n");
}
@@ -125,28 +124,28 @@ static unsigned long gettime_ms(void)
return ts.tv_sec * 1000 + ts.tv_nsec / 1000000;
}
-static void read_residencies(int devid, unsigned int mask,
+static void read_residencies(int devid, int dirfd, unsigned int mask,
struct residencies *res)
{
res->duration = gettime_ms();
if (mask & RC6_ENABLED)
- res->rc6 = read_rc6_residency("rc6");
+ res->rc6 = read_rc6_residency(dirfd, RC6_RESIDENCY_MS);
if ((mask & RC6_ENABLED) &&
(IS_VALLEYVIEW(devid) || IS_CHERRYVIEW(devid)))
- res->media_rc6 = read_rc6_residency("media_rc6");
+ res->media_rc6 = read_rc6_residency(dirfd, MEDIA_RC6_RESIDENCY_MS);
if (mask & RC6P_ENABLED)
- res->rc6p = read_rc6_residency("rc6p");
+ res->rc6p = read_rc6_residency(dirfd, RC6P_RESIDENCY_MS);
if (mask & RC6PP_ENABLED)
- res->rc6pp = read_rc6_residency("rc6pp");
+ res->rc6pp = read_rc6_residency(dirfd, RC6PP_RESIDENCY_MS);
res->duration += (gettime_ms() - res->duration) / 2;
}
-static void measure_residencies(int devid, unsigned int mask,
+static void measure_residencies(int devid, int dirfd, unsigned int mask,
struct residencies *res)
{
struct residencies start = { };
@@ -158,13 +157,13 @@ static void measure_residencies(int devid, unsigned int mask,
* measurement, since the valid counter range is different on
* different platforms and so fixing it up would be non-trivial.
*/
- read_residencies(devid, mask, &end);
+ read_residencies(devid, dirfd, mask, &end);
igt_debug("time=%d: rc6=(%d, %d), rc6p=%d, rc6pp=%d\n",
end.duration, end.rc6, end.media_rc6, end.rc6p, end.rc6pp);
for (retry = 0; retry < 2; retry++) {
start = end;
sleep(SLEEP_DURATION);
- read_residencies(devid, mask, &end);
+ read_residencies(devid, dirfd, mask, &end);
igt_debug("time=%d: rc6=(%d, %d), rc6p=%d, rc6pp=%d\n",
end.duration,
@@ -196,7 +195,7 @@ static void measure_residencies(int devid, unsigned int mask,
res->rc6 += res->rc6p;
}
-static bool wait_for_rc6(void)
+static bool wait_for_rc6(int dirfd)
{
struct timespec tv = {};
unsigned long start, now;
@@ -205,11 +204,11 @@ static bool wait_for_rc6(void)
usleep(160 * 1000);
/* Then poll for RC6 to start ticking */
- now = read_rc6_residency("rc6");
+ now = read_rc6_residency(dirfd, RC6_RESIDENCY_MS);
do {
start = now;
usleep(5000);
- now = read_rc6_residency("rc6");
+ now = read_rc6_residency(dirfd, RC6_RESIDENCY_MS);
if (now - start > 1)
return true;
} while (!igt_seconds_elapsed(&tv));
@@ -605,21 +604,23 @@ igt_main
devid = intel_get_drm_devid(i915);
sysfs = igt_sysfs_open(i915);
- igt_require(has_rc6_residency("rc6"));
+ igt_require(has_rc6_residency(dirfd, RC6_RESIDENCY_MS));
/* Make sure rc6 counters are running */
igt_drop_caches_set(i915, DROP_IDLE);
- igt_require(wait_for_rc6());
+ igt_require(wait_for_rc6(dirfd));
rc6_enabled = get_rc6_enabled_mask();
igt_require(rc6_enabled & RC6_ENABLED);
}
igt_subtest("rc6-accuracy") {
- struct residencies res;
+ for_each_sysfs_gt_dirfd(i915, dirfd, gt) {
+ struct residencies res;
- measure_residencies(devid, rc6_enabled, &res);
- residency_accuracy(res.rc6, res.duration, "rc6");
+ measure_residencies(devid, dirfd, rc6_enabled, &res);
+ residency_accuracy(res.rc6, res.duration, "rc6");
+ }
}
igt_subtest("media-rc6-accuracy") {
@@ -627,7 +628,7 @@ igt_main
igt_require(IS_VALLEYVIEW(devid) || IS_CHERRYVIEW(devid));
- measure_residencies(devid, rc6_enabled, &res);
+ measure_residencies(devid, sysfs, rc6_enabled, &res);
residency_accuracy(res.media_rc6, res.duration, "media_rc6");
}
--
2.25.1
^ permalink raw reply related [flat|nested] 11+ messages in thread* [igt-dev] [PATCH 4/5] tests/intel: Print drpc info for rc6_residency test
2023-11-09 6:32 [igt-dev] [PATCH 0/5] Add multi-gt support for RC6 residency test Sujaritha Sundaresan
` (2 preceding siblings ...)
2023-11-09 6:32 ` [igt-dev] [PATCH 3/5] tests/intel: Add multi-gt support for rc6-accuracy test Sujaritha Sundaresan
@ 2023-11-09 6:32 ` Sujaritha Sundaresan
2023-11-09 10:24 ` Riana Tauro
2023-11-09 6:32 ` [igt-dev] [PATCH 5/5] HAX: Add rc6 residency to fast-feedback.testlist Sujaritha Sundaresan
` (4 subsequent siblings)
8 siblings, 1 reply; 11+ messages in thread
From: Sujaritha Sundaresan @ 2023-11-09 6:32 UTC (permalink / raw)
To: igt-dev
Add drpc debug info for the rc6_residency test.
Signed-off-by: Sujaritha Sundaresan <sujaritha.sundaresan@intel.com>
---
tests/intel/i915_pm_rc6_residency.c | 47 ++++++++++++++++++++++-------
1 file changed, 36 insertions(+), 11 deletions(-)
diff --git a/tests/intel/i915_pm_rc6_residency.c b/tests/intel/i915_pm_rc6_residency.c
index 6c8ba52ae..a929a2175 100644
--- a/tests/intel/i915_pm_rc6_residency.c
+++ b/tests/intel/i915_pm_rc6_residency.c
@@ -36,6 +36,7 @@
#include "i915/gem.h"
#include "i915/gem_create.h"
#include "igt.h"
+#include "igt_debugfs.h"
#include "igt_perf.h"
#include "igt_power.h"
#include "igt_sysfs.h"
@@ -233,14 +234,27 @@ static uint64_t pmu_read_single(int fd)
return __pmu_read_single(fd, NULL);
}
-#define __assert_within_epsilon(x, ref, tol_up, tol_down) \
- igt_assert_f((x) <= (ref) * (1.0 + (tol_up)/100.) && \
- (x) >= (ref) * (1.0 - (tol_down)/100.), \
- "'%s' != '%s' (%.3g not within +%d%%/-%d%% tolerance of %.3g)\n",\
- #x, #ref, (double)(x), (tol_up), (tol_down), (double)(ref))
+#define __assert_within_epsilon(x, ref, tol_up, tol_down, debug_data) \
+ igt_assert_f((double)(x) <= (1.0 + (tol_up)) * (double)(ref) && \
+ (double)(x) >= (1.0 - (tol_down)) * (double)(ref), \
+ "'%s' != '%s' (%f not within +%.1f%%/-%.1f%% tolerance of %f)\n %s\n",\
+ #x, #ref, (double)(x), \
+ (tol_up) * 100.0, (tol_down) * 100.0, \
+ (double)(ref), debug_data)
-#define assert_within_epsilon(x, ref, tolerance) \
- __assert_within_epsilon(x, ref, tolerance, tolerance)
+#define assert_within_epsilon(x, ref, tolerance, debug_data) \
+ __assert_within_epsilon(x, ref, tolerance, tolerance, debug_data)
+
+char *drpc;
+
+static char *get_drpc(int i915, int gt_id)
+{
+ int gt_dir;
+
+ gt_dir = igt_debugfs_gt_dir(i915, gt_id);
+ igt_assert(gt_dir != -1);
+ return igt_sysfs_get(gt_dir, "drpc");
+}
static bool __pmu_wait_for_rc6(int fd)
{
@@ -417,7 +431,9 @@ static void rc6_idle(int i915, uint32_t ctx_id, uint64_t flags, unsigned int gt)
"Total energy used while idle: %.1fmJ (%.1fmW)\n",
idle, (idle * 1e9) / slept);
}
- assert_within_epsilon(rc6, ts[1] - ts[0], 5);
+ drpc = get_drpc(i915, igt_sysfs_get_u32(gt, "id"));
+
+ assert_within_epsilon(rc6, ts[1] - ts[0], 5, drpc);
done = mmap(0, 4096, PROT_WRITE, MAP_SHARED | MAP_ANON, -1, 0);
@@ -453,7 +469,10 @@ static void rc6_idle(int i915, uint32_t ctx_id, uint64_t flags, unsigned int gt)
igt_assert(cycles >= SLEEP_DURATION);
/* While very nearly idle, expect full RC6 */
- assert_within_epsilon(rc6, ts[1] - ts[0], tolerance);
+ assert_within_epsilon(rc6, ts[1] - ts[0], tolerance, drpc);
+
+ free(drpc);
+ drpc = NULL;
}
munmap(done, 4096);
@@ -506,7 +525,9 @@ static void rc6_fence(int i915, unsigned int gt)
"Total energy used while idle: %.1fmJ (%.1fmW)\n",
idle, (idle * 1e9) / slept);
}
- assert_within_epsilon(rc6, ts[1] - ts[0], 5);
+ drpc = get_drpc(i915, igt_sysfs_get_u32(gt, "id"));
+
+ assert_within_epsilon(rc6, ts[1] - ts[0], 5, drpc);
/* Submit but delay execution, we should be idle and conserving power */
ctx = intel_ctx_create_for_gt(i915, gt);
@@ -547,8 +568,11 @@ static void rc6_fence(int i915, unsigned int gt)
close(timeline);
- assert_within_epsilon(rc6, ts[1] - ts[0], tolerance);
+ assert_within_epsilon(rc6, ts[1] - ts[0], tolerance, drpc);
gem_quiescent_gpu(i915);
+
+ free(drpc);
+ drpc = NULL;
}
put_ahnd(ahnd);
intel_ctx_destroy(i915, ctx);
@@ -637,6 +661,7 @@ igt_main
}
igt_fixture {
+ free(drpc);
drm_close_driver(i915);
}
}
--
2.25.1
^ permalink raw reply related [flat|nested] 11+ messages in thread* Re: [igt-dev] [PATCH 4/5] tests/intel: Print drpc info for rc6_residency test
2023-11-09 6:32 ` [igt-dev] [PATCH 4/5] tests/intel: Print drpc info for rc6_residency test Sujaritha Sundaresan
@ 2023-11-09 10:24 ` Riana Tauro
0 siblings, 0 replies; 11+ messages in thread
From: Riana Tauro @ 2023-11-09 10:24 UTC (permalink / raw)
To: Sujaritha Sundaresan, igt-dev
Hi Suja
On 11/9/2023 12:02 PM, Sujaritha Sundaresan wrote:
> Add drpc debug info for the rc6_residency test.
>
> Signed-off-by: Sujaritha Sundaresan <sujaritha.sundaresan@intel.com>
> ---
> tests/intel/i915_pm_rc6_residency.c | 47 ++++++++++++++++++++++-------
> 1 file changed, 36 insertions(+), 11 deletions(-)
>
> diff --git a/tests/intel/i915_pm_rc6_residency.c b/tests/intel/i915_pm_rc6_residency.c
> index 6c8ba52ae..a929a2175 100644
> --- a/tests/intel/i915_pm_rc6_residency.c
> +++ b/tests/intel/i915_pm_rc6_residency.c
> @@ -36,6 +36,7 @@
> #include "i915/gem.h"
> #include "i915/gem_create.h"
> #include "igt.h"
> +#include "igt_debugfs.h"
> #include "igt_perf.h"
> #include "igt_power.h"
> #include "igt_sysfs.h"
> @@ -233,14 +234,27 @@ static uint64_t pmu_read_single(int fd)
> return __pmu_read_single(fd, NULL);
> }
>
> -#define __assert_within_epsilon(x, ref, tol_up, tol_down) \
> - igt_assert_f((x) <= (ref) * (1.0 + (tol_up)/100.) && \
> - (x) >= (ref) * (1.0 - (tol_down)/100.), \
> - "'%s' != '%s' (%.3g not within +%d%%/-%d%% tolerance of %.3g)\n",\
> - #x, #ref, (double)(x), (tol_up), (tol_down), (double)(ref))
> +#define __assert_within_epsilon(x, ref, tol_up, tol_down, debug_data) \
> + igt_assert_f((double)(x) <= (1.0 + (tol_up)) * (double)(ref) && \
> + (double)(x) >= (1.0 - (tol_down)) * (double)(ref), \
> + "'%s' != '%s' (%f not within +%.1f%%/-%.1f%% tolerance of %f)\n %s\n",\
> + #x, #ref, (double)(x), \
> + (tol_up) * 100.0, (tol_down) * 100.0, \
> + (double)(ref), debug_data)
>
> -#define assert_within_epsilon(x, ref, tolerance) \
> - __assert_within_epsilon(x, ref, tolerance, tolerance)
> +#define assert_within_epsilon(x, ref, tolerance, debug_data) \
> + __assert_within_epsilon(x, ref, tolerance, tolerance, debug_data)
> +
> +char *drpc;
> +
> +static char *get_drpc(int i915, int gt_id)
> +{
> + int gt_dir;
> +
> + gt_dir = igt_debugfs_gt_dir(i915, gt_id);
> + igt_assert(gt_dir != -1);
> + return igt_sysfs_get(gt_dir, "drpc");
> +}
>
> static bool __pmu_wait_for_rc6(int fd)
> {
> @@ -417,7 +431,9 @@ static void rc6_idle(int i915, uint32_t ctx_id, uint64_t flags, unsigned int gt)
> "Total energy used while idle: %.1fmJ (%.1fmW)\n",
> idle, (idle * 1e9) / slept);
> }
> - assert_within_epsilon(rc6, ts[1] - ts[0], 5);
> + drpc = get_drpc(i915, igt_sysfs_get_u32(gt, "id"));
This should be get_drpc(i915,gt);
> +
> + assert_within_epsilon(rc6, ts[1] - ts[0], 5, drpc);
>
> done = mmap(0, 4096, PROT_WRITE, MAP_SHARED | MAP_ANON, -1, 0);
>
> @@ -453,7 +469,10 @@ static void rc6_idle(int i915, uint32_t ctx_id, uint64_t flags, unsigned int gt)
> igt_assert(cycles >= SLEEP_DURATION);
>
> /* While very nearly idle, expect full RC6 */
> - assert_within_epsilon(rc6, ts[1] - ts[0], tolerance);
> + assert_within_epsilon(rc6, ts[1] - ts[0], tolerance, drpc);
> +
> + free(drpc);
> + drpc = NULL;
> }
>
> munmap(done, 4096);
> @@ -506,7 +525,9 @@ static void rc6_fence(int i915, unsigned int gt)
> "Total energy used while idle: %.1fmJ (%.1fmW)\n",
> idle, (idle * 1e9) / slept);
> }
> - assert_within_epsilon(rc6, ts[1] - ts[0], 5);
> + drpc = get_drpc(i915, igt_sysfs_get_u32(gt, "id"));
> +
> + assert_within_epsilon(rc6, ts[1] - ts[0], 5, drpc);
>
> /* Submit but delay execution, we should be idle and conserving power */
> ctx = intel_ctx_create_for_gt(i915, gt);
> @@ -547,8 +568,11 @@ static void rc6_fence(int i915, unsigned int gt)
>
> close(timeline);
>
> - assert_within_epsilon(rc6, ts[1] - ts[0], tolerance);
> + assert_within_epsilon(rc6, ts[1] - ts[0], tolerance, drpc);
This will print old drpc value. call the function here as well
> gem_quiescent_gpu(i915);
> +
> + free(drpc);
> + drpc = NULL;
> }
> put_ahnd(ahnd);
> intel_ctx_destroy(i915, ctx);
> @@ -637,6 +661,7 @@ igt_main
> }
>
> igt_fixture {
> + free(drpc);
> drm_close_driver(i915);
> }
> }
^ permalink raw reply [flat|nested] 11+ messages in thread
* [igt-dev] [PATCH 5/5] HAX: Add rc6 residency to fast-feedback.testlist
2023-11-09 6:32 [igt-dev] [PATCH 0/5] Add multi-gt support for RC6 residency test Sujaritha Sundaresan
` (3 preceding siblings ...)
2023-11-09 6:32 ` [igt-dev] [PATCH 4/5] tests/intel: Print drpc info for rc6_residency test Sujaritha Sundaresan
@ 2023-11-09 6:32 ` Sujaritha Sundaresan
2023-11-09 7:46 ` [igt-dev] ✗ CI.xeBAT: failure for Add multi-gt support for RC6 residency test (rev2) Patchwork
` (3 subsequent siblings)
8 siblings, 0 replies; 11+ messages in thread
From: Sujaritha Sundaresan @ 2023-11-09 6:32 UTC (permalink / raw)
To: igt-dev
Add the rc6 residency test to fast-feedback.testlist
Signed-off-by: Sujaritha Sundaresan <sujaritha.sundaresan@intel.com>
---
tests/intel-ci/fast-feedback.testlist | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/tests/intel-ci/fast-feedback.testlist b/tests/intel-ci/fast-feedback.testlist
index c252e2cf0..a5861203f 100644
--- a/tests/intel-ci/fast-feedback.testlist
+++ b/tests/intel-ci/fast-feedback.testlist
@@ -54,6 +54,10 @@ igt@i915_getparams_basic@basic-eu-total
igt@i915_getparams_basic@basic-subslice-total
igt@i915_hangman@error-state-basic
igt@i915_pciid
+igt@i915_pm_rc6_residency@media-rc6-accuracy
+igt@i915_pm_rc6_residency@rc6-accuracy
+igt@i915_pm_rc6_residency@rc6-fence
+igt@i915_pm_rc6_residency@rc6-idle
igt@kms_addfb_basic@addfb25-4-tiled
igt@kms_addfb_basic@addfb25-bad-modifier
igt@kms_addfb_basic@addfb25-framebuffer-vs-set-tiling
--
2.25.1
^ permalink raw reply related [flat|nested] 11+ messages in thread* [igt-dev] ✗ CI.xeBAT: failure for Add multi-gt support for RC6 residency test (rev2)
2023-11-09 6:32 [igt-dev] [PATCH 0/5] Add multi-gt support for RC6 residency test Sujaritha Sundaresan
` (4 preceding siblings ...)
2023-11-09 6:32 ` [igt-dev] [PATCH 5/5] HAX: Add rc6 residency to fast-feedback.testlist Sujaritha Sundaresan
@ 2023-11-09 7:46 ` Patchwork
2023-11-09 7:55 ` [igt-dev] ✗ Fi.CI.BAT: " Patchwork
` (2 subsequent siblings)
8 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2023-11-09 7:46 UTC (permalink / raw)
To: Sujaritha Sundaresan; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 5856 bytes --]
== Series Details ==
Series: Add multi-gt support for RC6 residency test (rev2)
URL : https://patchwork.freedesktop.org/series/126169/
State : failure
== Summary ==
CI Bug Log - changes from XEIGT_7578_BAT -> XEIGTPW_10142_BAT
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with XEIGTPW_10142_BAT absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in XEIGTPW_10142_BAT, please notify your bug team (lgci.bug.filing@intel.com) to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (3 -> 4)
------------------------------
Additional (1): bat-dg2-oem2
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in XEIGTPW_10142_BAT:
### IGT changes ###
#### Possible regressions ####
* igt@kms_cursor_legacy@basic-flip-after-cursor-legacy:
- bat-adlp-7: [PASS][1] -> [FAIL][2]
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7578/bat-adlp-7/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10142/bat-adlp-7/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html
Known issues
------------
Here are the changes found in XEIGTPW_10142_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- bat-dg2-oem2: NOTRUN -> [SKIP][3] ([Intel XE#623])
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10142/bat-dg2-oem2/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_addfb_basic@basic-y-tiled-legacy:
- bat-dg2-oem2: NOTRUN -> [SKIP][4] ([Intel XE#624])
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10142/bat-dg2-oem2/igt@kms_addfb_basic@basic-y-tiled-legacy.html
* igt@kms_addfb_basic@tile-pitch-mismatch:
- bat-dg2-oem2: NOTRUN -> [FAIL][5] ([Intel XE#609]) +1 other test fail
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10142/bat-dg2-oem2/igt@kms_addfb_basic@tile-pitch-mismatch.html
* igt@kms_dsc@dsc-basic:
- bat-dg2-oem2: NOTRUN -> [SKIP][6] ([Intel XE#423])
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10142/bat-dg2-oem2/igt@kms_dsc@dsc-basic.html
* igt@kms_flip@basic-flip-vs-wf_vblank:
- bat-dg2-oem2: NOTRUN -> [FAIL][7] ([Intel XE#480]) +1 other test fail
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10142/bat-dg2-oem2/igt@kms_flip@basic-flip-vs-wf_vblank.html
* igt@kms_force_connector_basic@prune-stale-modes:
- bat-dg2-oem2: NOTRUN -> [SKIP][8] ([i915#5274])
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10142/bat-dg2-oem2/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_frontbuffer_tracking@basic:
- bat-dg2-oem2: NOTRUN -> [FAIL][9] ([Intel XE#608])
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10142/bat-dg2-oem2/igt@kms_frontbuffer_tracking@basic.html
* igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12:
- bat-dg2-oem2: NOTRUN -> [FAIL][10] ([Intel XE#400] / [Intel XE#616]) +2 other tests fail
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10142/bat-dg2-oem2/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12.html
* igt@kms_psr@primary_page_flip:
- bat-dg2-oem2: NOTRUN -> [SKIP][11] ([Intel XE#535]) +2 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10142/bat-dg2-oem2/igt@kms_psr@primary_page_flip.html
* igt@xe_compute@compute-square:
- bat-dg2-oem2: NOTRUN -> [SKIP][12] ([Intel XE#672])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10142/bat-dg2-oem2/igt@xe_compute@compute-square.html
* igt@xe_exec_fault_mode@twice-invalid-fault:
- bat-dg2-oem2: NOTRUN -> [SKIP][13] ([Intel XE#288]) +17 other tests skip
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10142/bat-dg2-oem2/igt@xe_exec_fault_mode@twice-invalid-fault.html
* igt@xe_huc_copy@huc_copy:
- bat-dg2-oem2: NOTRUN -> [SKIP][14] ([Intel XE#255])
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10142/bat-dg2-oem2/igt@xe_huc_copy@huc_copy.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#255]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/255
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#400]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/400
[Intel XE#423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/423
[Intel XE#480]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/480
[Intel XE#524]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/524
[Intel XE#535]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/535
[Intel XE#608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/608
[Intel XE#609]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/609
[Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616
[Intel XE#623]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/623
[Intel XE#624]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/624
[Intel XE#672]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/672
[i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274
Build changes
-------------
* IGT: IGT_7578 -> IGTPW_10142
IGTPW_10142: 10142
IGT_7578: 2cf20c8dc5e372674ec3e3dd30b042794e9520ab @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-481-7a0da606f1fcf4b59d7164419f1ccd1c48d366af: 7a0da606f1fcf4b59d7164419f1ccd1c48d366af
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10142/index.html
[-- Attachment #2: Type: text/html, Size: 6666 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread* [igt-dev] ✗ Fi.CI.BAT: failure for Add multi-gt support for RC6 residency test (rev2)
2023-11-09 6:32 [igt-dev] [PATCH 0/5] Add multi-gt support for RC6 residency test Sujaritha Sundaresan
` (5 preceding siblings ...)
2023-11-09 7:46 ` [igt-dev] ✗ CI.xeBAT: failure for Add multi-gt support for RC6 residency test (rev2) Patchwork
@ 2023-11-09 7:55 ` Patchwork
2023-11-09 9:38 ` [igt-dev] ✓ CI.xeBAT: success for Add multi-gt support for RC6 residency test (rev3) Patchwork
2023-11-09 9:49 ` [igt-dev] ✗ Fi.CI.BAT: failure " Patchwork
8 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2023-11-09 7:55 UTC (permalink / raw)
To: Sujaritha Sundaresan; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 20220 bytes --]
== Series Details ==
Series: Add multi-gt support for RC6 residency test (rev2)
URL : https://patchwork.freedesktop.org/series/126169/
State : failure
== Summary ==
CI Bug Log - changes from IGT_7578 -> IGTPW_10142
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_10142 absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_10142, please notify your bug team (lgci.bug.filing@intel.com) 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_10142/index.html
Participating hosts (34 -> 32)
------------------------------
Additional (1): bat-adlp-11
Missing (3): fi-hsw-4770 bat-dg2-9 fi-pnv-d510
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_10142:
### IGT changes ###
#### Possible regressions ####
* igt@i915_pm_rc6_residency@media-rc6-accuracy:
- bat-rplp-1: NOTRUN -> [SKIP][1] +1 other test skip
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10142/bat-rplp-1/igt@i915_pm_rc6_residency@media-rc6-accuracy.html
- fi-rkl-11600: NOTRUN -> [SKIP][2] +1 other test skip
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10142/fi-rkl-11600/igt@i915_pm_rc6_residency@media-rc6-accuracy.html
- bat-adls-5: NOTRUN -> [SKIP][3] +1 other test skip
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10142/bat-adls-5/igt@i915_pm_rc6_residency@media-rc6-accuracy.html
- bat-atsm-1: NOTRUN -> [SKIP][4] +1 other test skip
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10142/bat-atsm-1/igt@i915_pm_rc6_residency@media-rc6-accuracy.html
- bat-jsl-3: NOTRUN -> [SKIP][5] +1 other test skip
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10142/bat-jsl-3/igt@i915_pm_rc6_residency@media-rc6-accuracy.html
- bat-adlp-11: NOTRUN -> [SKIP][6] +1 other test skip
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10142/bat-adlp-11/igt@i915_pm_rc6_residency@media-rc6-accuracy.html
- bat-adln-1: NOTRUN -> [SKIP][7] +1 other test skip
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10142/bat-adln-1/igt@i915_pm_rc6_residency@media-rc6-accuracy.html
- bat-mtlp-8: NOTRUN -> [SKIP][8] +1 other test skip
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10142/bat-mtlp-8/igt@i915_pm_rc6_residency@media-rc6-accuracy.html
- bat-adlm-1: NOTRUN -> [SKIP][9] +1 other test skip
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10142/bat-adlm-1/igt@i915_pm_rc6_residency@media-rc6-accuracy.html
- fi-tgl-1115g4: NOTRUN -> [SKIP][10] +1 other test skip
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10142/fi-tgl-1115g4/igt@i915_pm_rc6_residency@media-rc6-accuracy.html
* igt@i915_pm_rc6_residency@rc6-accuracy:
- bat-rpls-1: NOTRUN -> [SKIP][11] +1 other test skip
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10142/bat-rpls-1/igt@i915_pm_rc6_residency@rc6-accuracy.html
- bat-adlp-6: NOTRUN -> [SKIP][12] +1 other test skip
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10142/bat-adlp-6/igt@i915_pm_rc6_residency@rc6-accuracy.html
- bat-mtlp-6: NOTRUN -> [SKIP][13] +1 other test skip
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10142/bat-mtlp-6/igt@i915_pm_rc6_residency@rc6-accuracy.html
- bat-adlp-9: NOTRUN -> [SKIP][14] +1 other test skip
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10142/bat-adlp-9/igt@i915_pm_rc6_residency@rc6-accuracy.html
- bat-dg2-11: NOTRUN -> [SKIP][15] +1 other test skip
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10142/bat-dg2-11/igt@i915_pm_rc6_residency@rc6-accuracy.html
* {igt@i915_pm_rc6_residency@rc6-fence@gt0} (NEW):
- bat-atsm-1: NOTRUN -> [FAIL][16] +5 other tests fail
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10142/bat-atsm-1/igt@i915_pm_rc6_residency@rc6-fence@gt0.html
- fi-cfl-guc: NOTRUN -> [FAIL][17] +4 other tests fail
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10142/fi-cfl-guc/igt@i915_pm_rc6_residency@rc6-fence@gt0.html
- bat-mtlp-6: NOTRUN -> [FAIL][18] +6 other tests fail
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10142/bat-mtlp-6/igt@i915_pm_rc6_residency@rc6-fence@gt0.html
- bat-jsl-3: NOTRUN -> [FAIL][19] +4 other tests fail
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10142/bat-jsl-3/igt@i915_pm_rc6_residency@rc6-fence@gt0.html
- fi-ivb-3770: NOTRUN -> [FAIL][20] +3 other tests fail
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10142/fi-ivb-3770/igt@i915_pm_rc6_residency@rc6-fence@gt0.html
* {igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0} (NEW):
- fi-rkl-11600: NOTRUN -> [FAIL][21] +4 other tests fail
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10142/fi-rkl-11600/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html
- fi-skl-6600u: NOTRUN -> [FAIL][22] +4 other tests fail
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10142/fi-skl-6600u/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html
- bat-adls-5: NOTRUN -> [FAIL][23] +4 other tests fail
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10142/bat-adls-5/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html
- fi-apl-guc: NOTRUN -> [FAIL][24] +4 other tests fail
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10142/fi-apl-guc/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html
- fi-glk-j4005: NOTRUN -> [FAIL][25] +4 other tests fail
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10142/fi-glk-j4005/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html
- bat-adlp-9: NOTRUN -> [FAIL][26] +4 other tests fail
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10142/bat-adlp-9/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html
- fi-skl-guc: NOTRUN -> [FAIL][27] +4 other tests fail
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10142/fi-skl-guc/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html
- bat-dg2-11: NOTRUN -> [FAIL][28] +5 other tests fail
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10142/bat-dg2-11/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html
- fi-kbl-7567u: NOTRUN -> [FAIL][29] +4 other tests fail
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10142/fi-kbl-7567u/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html
- bat-adln-1: NOTRUN -> [FAIL][30] +4 other tests fail
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10142/bat-adln-1/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html
- fi-cfl-8700k: NOTRUN -> [FAIL][31] +4 other tests fail
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10142/fi-cfl-8700k/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html
- {bat-dg2-14}: NOTRUN -> [FAIL][32] +5 other tests fail
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10142/bat-dg2-14/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html
- fi-bsw-nick: NOTRUN -> [FAIL][33] +4 other tests fail
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10142/fi-bsw-nick/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html
- bat-adlm-1: NOTRUN -> [FAIL][34] +4 other tests fail
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10142/bat-adlm-1/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html
- bat-rplp-1: NOTRUN -> [FAIL][35] +4 other tests fail
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10142/bat-rplp-1/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html
- fi-tgl-1115g4: NOTRUN -> [FAIL][36] +4 other tests fail
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10142/fi-tgl-1115g4/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html
* {igt@i915_pm_rc6_residency@rc6-idle@gt0-ccs0} (NEW):
- bat-mtlp-8: NOTRUN -> [FAIL][37] +6 other tests fail
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10142/bat-mtlp-8/igt@i915_pm_rc6_residency@rc6-idle@gt0-ccs0.html
* {igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0} (NEW):
- fi-kbl-guc: NOTRUN -> [FAIL][38] +4 other tests fail
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10142/fi-kbl-guc/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html
- bat-rpls-1: NOTRUN -> [FAIL][39] +4 other tests fail
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10142/bat-rpls-1/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html
- bat-adlp-6: NOTRUN -> [FAIL][40] +4 other tests fail
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10142/bat-adlp-6/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html
* {igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0} (NEW):
- fi-kbl-x1275: NOTRUN -> [FAIL][41] +4 other tests fail
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10142/fi-kbl-x1275/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html
- bat-adlp-11: NOTRUN -> [FAIL][42] +4 other tests fail
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10142/bat-adlp-11/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html
- fi-cfl-8109u: NOTRUN -> [FAIL][43] +4 other tests fail
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10142/fi-cfl-8109u/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html
* igt@kms_psr@sprite_plane_onoff:
- bat-jsl-3: [PASS][44] -> [SKIP][45] +3 other tests skip
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7578/bat-jsl-3/igt@kms_psr@sprite_plane_onoff.html
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10142/bat-jsl-3/igt@kms_psr@sprite_plane_onoff.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* igt@i915_pm_rc6_residency@media-rc6-accuracy:
- {bat-dg2-14}: NOTRUN -> [SKIP][46] +1 other test skip
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10142/bat-dg2-14/igt@i915_pm_rc6_residency@media-rc6-accuracy.html
New tests
---------
New tests have been introduced between IGT_7578 and IGTPW_10142:
### New IGT tests (9) ###
* igt@i915_pm_rc6_residency@rc6-fence@gt0:
- Statuses : 28 fail(s) 3 skip(s)
- Exec time: [0.0] s
* igt@i915_pm_rc6_residency@rc6-fence@gt1:
- Statuses : 2 fail(s)
- Exec time: [0.0] s
* igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0:
- Statuses : 28 fail(s)
- Exec time: [0.0] s
* igt@i915_pm_rc6_residency@rc6-idle@gt0-ccs0:
- Statuses : 5 fail(s)
- Exec time: [0.0] s
* igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0:
- Statuses : 28 fail(s) 3 skip(s)
- Exec time: [0.0] s
* igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0:
- Statuses : 26 fail(s) 2 skip(s)
- Exec time: [0.0] s
* igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0:
- Statuses : 25 fail(s)
- Exec time: [0.0] s
* igt@i915_pm_rc6_residency@rc6-idle@gt1-vcs0:
- Statuses : 2 fail(s)
- Exec time: [0.0] s
* igt@i915_pm_rc6_residency@rc6-idle@gt1-vecs0:
- Statuses : 2 fail(s)
- Exec time: [0.0] s
Known issues
------------
Here are the changes found in IGTPW_10142 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@debugfs_test@basic-hwmon:
- bat-adlp-11: NOTRUN -> [SKIP][47] ([i915#9318])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10142/bat-adlp-11/igt@debugfs_test@basic-hwmon.html
* igt@gem_tiled_pread_basic:
- bat-adlp-11: NOTRUN -> [SKIP][48] ([i915#3282])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10142/bat-adlp-11/igt@gem_tiled_pread_basic.html
* igt@i915_pm_rc6_residency@media-rc6-accuracy:
- fi-cfl-8700k: NOTRUN -> [SKIP][49] ([fdo#109271]) +1 other test skip
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10142/fi-cfl-8700k/igt@i915_pm_rc6_residency@media-rc6-accuracy.html
- fi-bsw-nick: NOTRUN -> [SKIP][50] ([fdo#109271]) +1 other test skip
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10142/fi-bsw-nick/igt@i915_pm_rc6_residency@media-rc6-accuracy.html
- fi-cfl-guc: NOTRUN -> [SKIP][51] ([fdo#109271]) +1 other test skip
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10142/fi-cfl-guc/igt@i915_pm_rc6_residency@media-rc6-accuracy.html
- fi-kbl-x1275: NOTRUN -> [SKIP][52] ([fdo#109271]) +1 other test skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10142/fi-kbl-x1275/igt@i915_pm_rc6_residency@media-rc6-accuracy.html
- fi-cfl-8109u: NOTRUN -> [SKIP][53] ([fdo#109271]) +1 other test skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10142/fi-cfl-8109u/igt@i915_pm_rc6_residency@media-rc6-accuracy.html
- fi-ivb-3770: NOTRUN -> [SKIP][54] ([fdo#109271]) +1 other test skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10142/fi-ivb-3770/igt@i915_pm_rc6_residency@media-rc6-accuracy.html
- fi-kbl-guc: NOTRUN -> [SKIP][55] ([fdo#109271]) +1 other test skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10142/fi-kbl-guc/igt@i915_pm_rc6_residency@media-rc6-accuracy.html
* igt@i915_pm_rc6_residency@rc6-accuracy:
- fi-blb-e6850: NOTRUN -> [SKIP][56] ([fdo#109271]) +3 other tests skip
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10142/fi-blb-e6850/igt@i915_pm_rc6_residency@rc6-accuracy.html
- fi-skl-6600u: NOTRUN -> [SKIP][57] ([fdo#109271]) +1 other test skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10142/fi-skl-6600u/igt@i915_pm_rc6_residency@rc6-accuracy.html
- fi-apl-guc: NOTRUN -> [SKIP][58] ([fdo#109271]) +1 other test skip
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10142/fi-apl-guc/igt@i915_pm_rc6_residency@rc6-accuracy.html
- fi-glk-j4005: NOTRUN -> [SKIP][59] ([fdo#109271]) +1 other test skip
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10142/fi-glk-j4005/igt@i915_pm_rc6_residency@rc6-accuracy.html
- fi-skl-guc: NOTRUN -> [SKIP][60] ([fdo#109271]) +1 other test skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10142/fi-skl-guc/igt@i915_pm_rc6_residency@rc6-accuracy.html
- fi-kbl-7567u: NOTRUN -> [SKIP][61] ([fdo#109271]) +1 other test skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10142/fi-kbl-7567u/igt@i915_pm_rc6_residency@rc6-accuracy.html
* {igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0} (NEW):
- fi-ilk-650: NOTRUN -> [SKIP][62] ([fdo#109271]) +4 other tests skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10142/fi-ilk-650/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html
* {igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0} (NEW):
- fi-elk-e7500: NOTRUN -> [SKIP][63] ([fdo#109271]) +4 other tests skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10142/fi-elk-e7500/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- bat-adlp-11: NOTRUN -> [SKIP][64] ([i915#4103] / [i915#5608]) +1 other test skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10142/bat-adlp-11/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_dsc@dsc-basic:
- bat-adlp-11: NOTRUN -> [SKIP][65] ([i915#3555] / [i915#3840])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10142/bat-adlp-11/igt@kms_dsc@dsc-basic.html
* igt@kms_force_connector_basic@prune-stale-modes:
- bat-adlp-11: NOTRUN -> [SKIP][66] ([i915#4093]) +3 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10142/bat-adlp-11/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_hdmi_inject@inject-audio:
- bat-adlp-11: NOTRUN -> [SKIP][67] ([i915#4369])
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10142/bat-adlp-11/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence:
- bat-adlp-9: NOTRUN -> [SKIP][68] ([i915#1845] / [i915#3546]) +2 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10142/bat-adlp-9/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html
#### Possible fixes ####
* igt@i915_selftest@live@hangcheck:
- fi-skl-guc: [DMESG-FAIL][69] ([i915#9549]) -> [PASS][70]
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7578/fi-skl-guc/igt@i915_selftest@live@hangcheck.html
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10142/fi-skl-guc/igt@i915_selftest@live@hangcheck.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845
[i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
[i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840
[i915#4093]: https://gitlab.freedesktop.org/drm/intel/issues/4093
[i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
[i915#4369]: https://gitlab.freedesktop.org/drm/intel/issues/4369
[i915#5608]: https://gitlab.freedesktop.org/drm/intel/issues/5608
[i915#7359]: https://gitlab.freedesktop.org/drm/intel/issues/7359
[i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668
[i915#8981]: https://gitlab.freedesktop.org/drm/intel/issues/8981
[i915#9318]: https://gitlab.freedesktop.org/drm/intel/issues/9318
[i915#9549]: https://gitlab.freedesktop.org/drm/intel/issues/9549
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7578 -> IGTPW_10142
CI-20190529: 20190529
CI_DRM_13852: 8040e9d346531d98ca164092c860c24c1dd6e845 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_10142: 10142
IGT_7578: 2cf20c8dc5e372674ec3e3dd30b042794e9520ab @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Testlist changes
----------------
+igt@kms_psr@basic
+igt@kms_psr@cursor_blt
+igt@kms_psr@cursor_mmap_cpu
+igt@kms_psr@cursor_mmap_gtt
+igt@kms_psr@cursor_plane_move
+igt@kms_psr@cursor_plane_onoff
+igt@kms_psr@cursor_render
+igt@kms_psr@dpms
+igt@kms_psr@no_drrs
+igt@kms_psr@primary_blt
+igt@kms_psr@primary_mmap_cpu
+igt@kms_psr@primary_mmap_gtt
+igt@kms_psr@primary_page_flip
+igt@kms_psr@primary_render
+igt@kms_psr@sprite_blt
+igt@kms_psr@sprite_mmap_cpu
+igt@kms_psr@sprite_mmap_gtt
+igt@kms_psr@sprite_plane_move
+igt@kms_psr@sprite_plane_onoff
+igt@kms_psr@sprite_render
+igt@kms_psr@suspend
-igt@kms_psr@pr_basic
-igt@kms_psr@pr_cursor_blt
-igt@kms_psr@pr_cursor_mmap_cpu
-igt@kms_psr@pr_cursor_mmap_gtt
-igt@kms_psr@pr_cursor_plane_move
-igt@kms_psr@pr_cursor_plane_onoff
-igt@kms_psr@pr_cursor_render
-igt@kms_psr@pr_dpms
-igt@kms_psr@pr_no_drrs
-igt@kms_psr@pr_primary_blt
-igt@kms_psr@pr_primary_mmap_cpu
-igt@kms_psr@pr_primary_mmap_gtt
-igt@kms_psr@pr_primary_page_flip
-igt@kms_psr@pr_primary_render
-igt@kms_psr@pr_sprite_blt
-igt@kms_psr@pr_sprite_mmap_cpu
-igt@kms_psr@pr_sprite_mmap_gtt
-igt@kms_psr@pr_sprite_plane_move
-igt@kms_psr@pr_sprite_plane_onoff
-igt@kms_psr@pr_sprite_render
-igt@kms_psr@pr_suspend
-igt@kms_psr@psr_basic
-igt@kms_psr@psr_cursor_blt
-igt@kms_psr@psr_cursor_mmap_cpu
-igt@kms_psr@psr_cursor_mmap_gtt
-igt@kms_psr@psr_cursor_plane_move
-igt@kms_psr@psr_cursor_plane_onoff
-igt@kms_psr@psr_cursor_render
-igt@kms_psr@psr_dpms
-igt@kms_psr@psr_no_drrs
-igt@kms_psr@psr_primary_blt
-igt@kms_psr@psr_primary_mmap_cpu
-igt@kms_psr@psr_primary_mmap_gtt
-igt@kms_psr@psr_primary_page_flip
-igt@kms_psr@psr_primary_render
-igt@kms_psr@psr_sprite_blt
-igt@kms_psr@psr_sprite_mmap_cpu
-igt@kms_psr@psr_sprite_mmap_gtt
-igt@kms_psr@psr_sprite_plane_move
-igt@kms_psr@psr_sprite_plane_onoff
-igt@kms_psr@psr_sprite_render
-igt@kms_psr@psr_suspend
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10142/index.html
[-- Attachment #2: Type: text/html, Size: 23482 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread* [igt-dev] ✓ CI.xeBAT: success for Add multi-gt support for RC6 residency test (rev3)
2023-11-09 6:32 [igt-dev] [PATCH 0/5] Add multi-gt support for RC6 residency test Sujaritha Sundaresan
` (6 preceding siblings ...)
2023-11-09 7:55 ` [igt-dev] ✗ Fi.CI.BAT: " Patchwork
@ 2023-11-09 9:38 ` Patchwork
2023-11-09 9:49 ` [igt-dev] ✗ Fi.CI.BAT: failure " Patchwork
8 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2023-11-09 9:38 UTC (permalink / raw)
To: Sujaritha Sundaresan; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 5599 bytes --]
== Series Details ==
Series: Add multi-gt support for RC6 residency test (rev3)
URL : https://patchwork.freedesktop.org/series/126169/
State : success
== Summary ==
CI Bug Log - changes from XEIGT_7578_BAT -> XEIGTPW_10146_BAT
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (3 -> 4)
------------------------------
Additional (1): bat-dg2-oem2
Known issues
------------
Here are the changes found in XEIGTPW_10146_BAT that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- bat-dg2-oem2: NOTRUN -> [SKIP][1] ([Intel XE#623])
[1]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10146/bat-dg2-oem2/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_addfb_basic@basic-y-tiled-legacy:
- bat-dg2-oem2: NOTRUN -> [SKIP][2] ([Intel XE#624])
[2]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10146/bat-dg2-oem2/igt@kms_addfb_basic@basic-y-tiled-legacy.html
* igt@kms_addfb_basic@tile-pitch-mismatch:
- bat-dg2-oem2: NOTRUN -> [FAIL][3] ([Intel XE#609]) +1 other test fail
[3]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10146/bat-dg2-oem2/igt@kms_addfb_basic@tile-pitch-mismatch.html
* igt@kms_dsc@dsc-basic:
- bat-dg2-oem2: NOTRUN -> [SKIP][4] ([Intel XE#423])
[4]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10146/bat-dg2-oem2/igt@kms_dsc@dsc-basic.html
* igt@kms_flip@basic-flip-vs-wf_vblank:
- bat-dg2-oem2: NOTRUN -> [FAIL][5] ([Intel XE#480]) +2 other tests fail
[5]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10146/bat-dg2-oem2/igt@kms_flip@basic-flip-vs-wf_vblank.html
* igt@kms_force_connector_basic@prune-stale-modes:
- bat-dg2-oem2: NOTRUN -> [SKIP][6] ([i915#5274])
[6]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10146/bat-dg2-oem2/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_frontbuffer_tracking@basic:
- bat-dg2-oem2: NOTRUN -> [FAIL][7] ([Intel XE#608])
[7]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10146/bat-dg2-oem2/igt@kms_frontbuffer_tracking@basic.html
* igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12:
- bat-dg2-oem2: NOTRUN -> [FAIL][8] ([Intel XE#400] / [Intel XE#616]) +2 other tests fail
[8]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10146/bat-dg2-oem2/igt@kms_pipe_crc_basic@compare-crc-sanitycheck-nv12.html
* igt@kms_psr@primary_page_flip:
- bat-dg2-oem2: NOTRUN -> [SKIP][9] ([Intel XE#535]) +2 other tests skip
[9]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10146/bat-dg2-oem2/igt@kms_psr@primary_page_flip.html
* igt@xe_compute@compute-square:
- bat-dg2-oem2: NOTRUN -> [SKIP][10] ([Intel XE#672])
[10]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10146/bat-dg2-oem2/igt@xe_compute@compute-square.html
* igt@xe_exec_fault_mode@twice-invalid-fault:
- bat-dg2-oem2: NOTRUN -> [SKIP][11] ([Intel XE#288]) +17 other tests skip
[11]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10146/bat-dg2-oem2/igt@xe_exec_fault_mode@twice-invalid-fault.html
* igt@xe_huc_copy@huc_copy:
- bat-dg2-oem2: NOTRUN -> [SKIP][12] ([Intel XE#255])
[12]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10146/bat-dg2-oem2/igt@xe_huc_copy@huc_copy.html
#### Warnings ####
* igt@kms_frontbuffer_tracking@basic:
- bat-adlp-7: [DMESG-FAIL][13] ([Intel XE#282] / [i915#2017]) -> [FAIL][14] ([Intel XE#616] / [Intel XE#750])
[13]: https://intel-gfx-ci.01.org/tree/intel-xe/IGT_7578/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html
[14]: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10146/bat-adlp-7/igt@kms_frontbuffer_tracking@basic.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[Intel XE#255]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/255
[Intel XE#282]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/282
[Intel XE#288]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/288
[Intel XE#400]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/400
[Intel XE#423]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/423
[Intel XE#480]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/480
[Intel XE#524]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/524
[Intel XE#535]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/535
[Intel XE#608]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/608
[Intel XE#609]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/609
[Intel XE#616]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/616
[Intel XE#623]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/623
[Intel XE#624]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/624
[Intel XE#672]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/672
[Intel XE#750]: https://gitlab.freedesktop.org/drm/xe/kernel/issues/750
[i915#2017]: https://gitlab.freedesktop.org/drm/intel/issues/2017
[i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274
Build changes
-------------
* IGT: IGT_7578 -> IGTPW_10146
IGTPW_10146: 10146
IGT_7578: 2cf20c8dc5e372674ec3e3dd30b042794e9520ab @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
xe-481-7a0da606f1fcf4b59d7164419f1ccd1c48d366af: 7a0da606f1fcf4b59d7164419f1ccd1c48d366af
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/intel-xe/IGTPW_10146/index.html
[-- Attachment #2: Type: text/html, Size: 6450 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread* [igt-dev] ✗ Fi.CI.BAT: failure for Add multi-gt support for RC6 residency test (rev3)
2023-11-09 6:32 [igt-dev] [PATCH 0/5] Add multi-gt support for RC6 residency test Sujaritha Sundaresan
` (7 preceding siblings ...)
2023-11-09 9:38 ` [igt-dev] ✓ CI.xeBAT: success for Add multi-gt support for RC6 residency test (rev3) Patchwork
@ 2023-11-09 9:49 ` Patchwork
8 siblings, 0 replies; 11+ messages in thread
From: Patchwork @ 2023-11-09 9:49 UTC (permalink / raw)
To: Sujaritha Sundaresan; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 19890 bytes --]
== Series Details ==
Series: Add multi-gt support for RC6 residency test (rev3)
URL : https://patchwork.freedesktop.org/series/126169/
State : failure
== Summary ==
CI Bug Log - changes from IGT_7578 -> IGTPW_10146
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_10146 absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_10146, please notify your bug team (lgci.bug.filing@intel.com) 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_10146/index.html
Participating hosts (34 -> 34)
------------------------------
Additional (2): fi-kbl-soraka bat-adlp-11
Missing (2): fi-hsw-4770 fi-pnv-d510
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_10146:
### IGT changes ###
#### Possible regressions ####
* igt@i915_pm_rc6_residency@media-rc6-accuracy:
- bat-rplp-1: NOTRUN -> [SKIP][1] +1 other test skip
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10146/bat-rplp-1/igt@i915_pm_rc6_residency@media-rc6-accuracy.html
- fi-rkl-11600: NOTRUN -> [SKIP][2] +1 other test skip
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10146/fi-rkl-11600/igt@i915_pm_rc6_residency@media-rc6-accuracy.html
- bat-adls-5: NOTRUN -> [SKIP][3] +1 other test skip
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10146/bat-adls-5/igt@i915_pm_rc6_residency@media-rc6-accuracy.html
- bat-atsm-1: NOTRUN -> [SKIP][4] +1 other test skip
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10146/bat-atsm-1/igt@i915_pm_rc6_residency@media-rc6-accuracy.html
- bat-jsl-3: NOTRUN -> [SKIP][5] +1 other test skip
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10146/bat-jsl-3/igt@i915_pm_rc6_residency@media-rc6-accuracy.html
- bat-dg2-9: NOTRUN -> [SKIP][6] +1 other test skip
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10146/bat-dg2-9/igt@i915_pm_rc6_residency@media-rc6-accuracy.html
- bat-adlp-11: NOTRUN -> [SKIP][7] +1 other test skip
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10146/bat-adlp-11/igt@i915_pm_rc6_residency@media-rc6-accuracy.html
- bat-adln-1: NOTRUN -> [SKIP][8] +1 other test skip
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10146/bat-adln-1/igt@i915_pm_rc6_residency@media-rc6-accuracy.html
- bat-mtlp-8: NOTRUN -> [SKIP][9] +1 other test skip
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10146/bat-mtlp-8/igt@i915_pm_rc6_residency@media-rc6-accuracy.html
- bat-adlm-1: NOTRUN -> [SKIP][10] +1 other test skip
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10146/bat-adlm-1/igt@i915_pm_rc6_residency@media-rc6-accuracy.html
- fi-tgl-1115g4: NOTRUN -> [SKIP][11] +1 other test skip
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10146/fi-tgl-1115g4/igt@i915_pm_rc6_residency@media-rc6-accuracy.html
* igt@i915_pm_rc6_residency@rc6-accuracy:
- bat-rpls-1: NOTRUN -> [SKIP][12] +1 other test skip
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10146/bat-rpls-1/igt@i915_pm_rc6_residency@rc6-accuracy.html
- bat-adlp-6: NOTRUN -> [SKIP][13] +1 other test skip
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10146/bat-adlp-6/igt@i915_pm_rc6_residency@rc6-accuracy.html
- bat-mtlp-6: NOTRUN -> [SKIP][14] +1 other test skip
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10146/bat-mtlp-6/igt@i915_pm_rc6_residency@rc6-accuracy.html
- bat-adlp-9: NOTRUN -> [SKIP][15] +1 other test skip
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10146/bat-adlp-9/igt@i915_pm_rc6_residency@rc6-accuracy.html
- bat-dg2-11: NOTRUN -> [SKIP][16] +1 other test skip
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10146/bat-dg2-11/igt@i915_pm_rc6_residency@rc6-accuracy.html
* {igt@i915_pm_rc6_residency@rc6-fence@gt0} (NEW):
- bat-atsm-1: NOTRUN -> [FAIL][17] +5 other tests fail
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10146/bat-atsm-1/igt@i915_pm_rc6_residency@rc6-fence@gt0.html
- fi-cfl-guc: NOTRUN -> [FAIL][18] +4 other tests fail
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10146/fi-cfl-guc/igt@i915_pm_rc6_residency@rc6-fence@gt0.html
- bat-mtlp-6: NOTRUN -> [FAIL][19] +6 other tests fail
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10146/bat-mtlp-6/igt@i915_pm_rc6_residency@rc6-fence@gt0.html
- bat-jsl-3: NOTRUN -> [FAIL][20] +4 other tests fail
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10146/bat-jsl-3/igt@i915_pm_rc6_residency@rc6-fence@gt0.html
- bat-dg2-9: NOTRUN -> [FAIL][21] +5 other tests fail
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10146/bat-dg2-9/igt@i915_pm_rc6_residency@rc6-fence@gt0.html
- fi-ivb-3770: NOTRUN -> [FAIL][22] +3 other tests fail
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10146/fi-ivb-3770/igt@i915_pm_rc6_residency@rc6-fence@gt0.html
* {igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0} (NEW):
- fi-rkl-11600: NOTRUN -> [FAIL][23] +4 other tests fail
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10146/fi-rkl-11600/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html
- fi-skl-6600u: NOTRUN -> [FAIL][24] +4 other tests fail
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10146/fi-skl-6600u/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html
- bat-adls-5: NOTRUN -> [FAIL][25] +4 other tests fail
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10146/bat-adls-5/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html
- fi-apl-guc: NOTRUN -> [FAIL][26] +4 other tests fail
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10146/fi-apl-guc/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html
- fi-glk-j4005: NOTRUN -> [FAIL][27] +4 other tests fail
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10146/fi-glk-j4005/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html
- bat-adlp-9: NOTRUN -> [FAIL][28] +4 other tests fail
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10146/bat-adlp-9/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html
- fi-skl-guc: NOTRUN -> [FAIL][29] +4 other tests fail
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10146/fi-skl-guc/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html
- bat-dg2-11: NOTRUN -> [FAIL][30] +5 other tests fail
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10146/bat-dg2-11/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html
- fi-kbl-soraka: NOTRUN -> [FAIL][31] +4 other tests fail
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10146/fi-kbl-soraka/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html
- fi-kbl-7567u: NOTRUN -> [FAIL][32] +4 other tests fail
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10146/fi-kbl-7567u/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html
- bat-adln-1: NOTRUN -> [FAIL][33] +4 other tests fail
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10146/bat-adln-1/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html
- fi-cfl-8700k: NOTRUN -> [FAIL][34] +4 other tests fail
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10146/fi-cfl-8700k/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html
- {bat-dg2-14}: NOTRUN -> [FAIL][35] +5 other tests fail
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10146/bat-dg2-14/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html
- fi-bsw-nick: NOTRUN -> [FAIL][36] +4 other tests fail
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10146/fi-bsw-nick/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html
- bat-adlm-1: NOTRUN -> [FAIL][37] +4 other tests fail
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10146/bat-adlm-1/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html
- bat-rplp-1: NOTRUN -> [FAIL][38] +4 other tests fail
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10146/bat-rplp-1/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html
- fi-tgl-1115g4: NOTRUN -> [FAIL][39] +4 other tests fail
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10146/fi-tgl-1115g4/igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0.html
* {igt@i915_pm_rc6_residency@rc6-idle@gt0-ccs0} (NEW):
- bat-mtlp-8: NOTRUN -> [FAIL][40] +6 other tests fail
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10146/bat-mtlp-8/igt@i915_pm_rc6_residency@rc6-idle@gt0-ccs0.html
* {igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0} (NEW):
- fi-kbl-guc: NOTRUN -> [FAIL][41] +4 other tests fail
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10146/fi-kbl-guc/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html
- bat-rpls-1: NOTRUN -> [FAIL][42] +4 other tests fail
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10146/bat-rpls-1/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html
- bat-adlp-6: NOTRUN -> [FAIL][43] +4 other tests fail
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10146/bat-adlp-6/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html
* {igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0} (NEW):
- fi-kbl-x1275: NOTRUN -> [FAIL][44] +4 other tests fail
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10146/fi-kbl-x1275/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html
- bat-adlp-11: NOTRUN -> [FAIL][45] +4 other tests fail
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10146/bat-adlp-11/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html
- fi-cfl-8109u: NOTRUN -> [FAIL][46] +4 other tests fail
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10146/fi-cfl-8109u/igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* igt@i915_pm_rc6_residency@media-rc6-accuracy:
- {bat-dg2-14}: NOTRUN -> [SKIP][47] +1 other test skip
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10146/bat-dg2-14/igt@i915_pm_rc6_residency@media-rc6-accuracy.html
New tests
---------
New tests have been introduced between IGT_7578 and IGTPW_10146:
### New IGT tests (9) ###
* igt@i915_pm_rc6_residency@rc6-fence@gt0:
- Statuses : 30 fail(s) 3 skip(s)
- Exec time: [0.0] s
* igt@i915_pm_rc6_residency@rc6-fence@gt1:
- Statuses : 2 fail(s)
- Exec time: [0.0] s
* igt@i915_pm_rc6_residency@rc6-idle@gt0-bcs0:
- Statuses : 30 fail(s)
- Exec time: [0.0] s
* igt@i915_pm_rc6_residency@rc6-idle@gt0-ccs0:
- Statuses : 6 fail(s)
- Exec time: [0.0] s
* igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0:
- Statuses : 30 fail(s) 3 skip(s)
- Exec time: [0.0] s
* igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0:
- Statuses : 28 fail(s) 2 skip(s)
- Exec time: [0.0] s
* igt@i915_pm_rc6_residency@rc6-idle@gt0-vecs0:
- Statuses : 27 fail(s)
- Exec time: [0.0] s
* igt@i915_pm_rc6_residency@rc6-idle@gt1-vcs0:
- Statuses : 2 fail(s)
- Exec time: [0.0] s
* igt@i915_pm_rc6_residency@rc6-idle@gt1-vecs0:
- Statuses : 2 fail(s)
- Exec time: [0.0] s
Known issues
------------
Here are the changes found in IGTPW_10146 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@debugfs_test@basic-hwmon:
- bat-adlp-11: NOTRUN -> [SKIP][48] ([i915#9318])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10146/bat-adlp-11/igt@debugfs_test@basic-hwmon.html
* igt@gem_huc_copy@huc-copy:
- fi-kbl-soraka: NOTRUN -> [SKIP][49] ([fdo#109271] / [i915#2190])
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10146/fi-kbl-soraka/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@basic:
- fi-kbl-soraka: NOTRUN -> [SKIP][50] ([fdo#109271] / [i915#4613]) +3 other tests skip
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10146/fi-kbl-soraka/igt@gem_lmem_swapping@basic.html
* igt@gem_tiled_pread_basic:
- bat-adlp-11: NOTRUN -> [SKIP][51] ([i915#3282])
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10146/bat-adlp-11/igt@gem_tiled_pread_basic.html
* igt@i915_pm_rc6_residency@media-rc6-accuracy:
- fi-cfl-8700k: NOTRUN -> [SKIP][52] ([fdo#109271]) +1 other test skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10146/fi-cfl-8700k/igt@i915_pm_rc6_residency@media-rc6-accuracy.html
- fi-bsw-nick: NOTRUN -> [SKIP][53] ([fdo#109271]) +1 other test skip
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10146/fi-bsw-nick/igt@i915_pm_rc6_residency@media-rc6-accuracy.html
- fi-cfl-guc: NOTRUN -> [SKIP][54] ([fdo#109271]) +1 other test skip
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10146/fi-cfl-guc/igt@i915_pm_rc6_residency@media-rc6-accuracy.html
- fi-kbl-x1275: NOTRUN -> [SKIP][55] ([fdo#109271]) +1 other test skip
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10146/fi-kbl-x1275/igt@i915_pm_rc6_residency@media-rc6-accuracy.html
- fi-cfl-8109u: NOTRUN -> [SKIP][56] ([fdo#109271]) +1 other test skip
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10146/fi-cfl-8109u/igt@i915_pm_rc6_residency@media-rc6-accuracy.html
- fi-ivb-3770: NOTRUN -> [SKIP][57] ([fdo#109271]) +1 other test skip
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10146/fi-ivb-3770/igt@i915_pm_rc6_residency@media-rc6-accuracy.html
- fi-kbl-guc: NOTRUN -> [SKIP][58] ([fdo#109271]) +1 other test skip
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10146/fi-kbl-guc/igt@i915_pm_rc6_residency@media-rc6-accuracy.html
* igt@i915_pm_rc6_residency@rc6-accuracy:
- fi-blb-e6850: NOTRUN -> [SKIP][59] ([fdo#109271]) +3 other tests skip
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10146/fi-blb-e6850/igt@i915_pm_rc6_residency@rc6-accuracy.html
- fi-skl-6600u: NOTRUN -> [SKIP][60] ([fdo#109271]) +1 other test skip
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10146/fi-skl-6600u/igt@i915_pm_rc6_residency@rc6-accuracy.html
- fi-apl-guc: NOTRUN -> [SKIP][61] ([fdo#109271]) +1 other test skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10146/fi-apl-guc/igt@i915_pm_rc6_residency@rc6-accuracy.html
- fi-glk-j4005: NOTRUN -> [SKIP][62] ([fdo#109271]) +1 other test skip
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10146/fi-glk-j4005/igt@i915_pm_rc6_residency@rc6-accuracy.html
- fi-skl-guc: NOTRUN -> [SKIP][63] ([fdo#109271]) +1 other test skip
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10146/fi-skl-guc/igt@i915_pm_rc6_residency@rc6-accuracy.html
- fi-kbl-7567u: NOTRUN -> [SKIP][64] ([fdo#109271]) +1 other test skip
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10146/fi-kbl-7567u/igt@i915_pm_rc6_residency@rc6-accuracy.html
* {igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0} (NEW):
- fi-ilk-650: NOTRUN -> [SKIP][65] ([fdo#109271]) +4 other tests skip
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10146/fi-ilk-650/igt@i915_pm_rc6_residency@rc6-idle@gt0-rcs0.html
* {igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0} (NEW):
- fi-elk-e7500: NOTRUN -> [SKIP][66] ([fdo#109271]) +4 other tests skip
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10146/fi-elk-e7500/igt@i915_pm_rc6_residency@rc6-idle@gt0-vcs0.html
* igt@i915_selftest@live@gt_pm:
- fi-kbl-soraka: NOTRUN -> [DMESG-FAIL][67] ([i915#1886])
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10146/fi-kbl-soraka/igt@i915_selftest@live@gt_pm.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- bat-adlp-11: NOTRUN -> [SKIP][68] ([i915#4103] / [i915#5608]) +1 other test skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10146/bat-adlp-11/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_dsc@dsc-basic:
- fi-kbl-soraka: NOTRUN -> [SKIP][69] ([fdo#109271]) +11 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10146/fi-kbl-soraka/igt@kms_dsc@dsc-basic.html
- bat-adlp-11: NOTRUN -> [SKIP][70] ([i915#3555] / [i915#3840])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10146/bat-adlp-11/igt@kms_dsc@dsc-basic.html
* igt@kms_force_connector_basic@prune-stale-modes:
- bat-adlp-11: NOTRUN -> [SKIP][71] ([i915#4093]) +3 other tests skip
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10146/bat-adlp-11/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_hdmi_inject@inject-audio:
- bat-adlp-11: NOTRUN -> [SKIP][72] ([i915#4369])
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10146/bat-adlp-11/igt@kms_hdmi_inject@inject-audio.html
* igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence:
- bat-adlp-9: NOTRUN -> [SKIP][73] ([i915#1845] / [i915#3546]) +2 other tests skip
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10146/bat-adlp-9/igt@kms_pipe_crc_basic@nonblocking-crc-frame-sequence.html
#### Possible fixes ####
* igt@i915_selftest@live@hangcheck:
- fi-skl-guc: [DMESG-FAIL][74] ([i915#9549]) -> [PASS][75]
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7578/fi-skl-guc/igt@i915_selftest@live@hangcheck.html
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10146/fi-skl-guc/igt@i915_selftest@live@hangcheck.html
* igt@kms_hdmi_inject@inject-audio:
- fi-kbl-guc: [FAIL][76] ([IGT#3]) -> [PASS][77]
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7578/fi-kbl-guc/igt@kms_hdmi_inject@inject-audio.html
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10146/fi-kbl-guc/igt@kms_hdmi_inject@inject-audio.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[IGT#3]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/3
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845
[i915#1886]: https://gitlab.freedesktop.org/drm/intel/issues/1886
[i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190
[i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
[i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840
[i915#4093]: https://gitlab.freedesktop.org/drm/intel/issues/4093
[i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
[i915#4369]: https://gitlab.freedesktop.org/drm/intel/issues/4369
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#5608]: https://gitlab.freedesktop.org/drm/intel/issues/5608
[i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668
[i915#9318]: https://gitlab.freedesktop.org/drm/intel/issues/9318
[i915#9549]: https://gitlab.freedesktop.org/drm/intel/issues/9549
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7578 -> IGTPW_10146
CI-20190529: 20190529
CI_DRM_13852: 8040e9d346531d98ca164092c860c24c1dd6e845 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_10146: 10146
IGT_7578: 2cf20c8dc5e372674ec3e3dd30b042794e9520ab @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_10146/index.html
[-- Attachment #2: Type: text/html, Size: 23265 bytes --]
^ permalink raw reply [flat|nested] 11+ messages in thread