* [igt-dev] [PATCH i-g-t 2/2] tests/api_intel_allocator: Add default-alignment test
2022-02-23 10:33 [igt-dev] [PATCH i-g-t 0/2] Use safe alignment as a default Zbigniew Kempczyński
@ 2022-02-23 10:33 ` Zbigniew Kempczyński
0 siblings, 0 replies; 14+ messages in thread
From: Zbigniew Kempczyński @ 2022-02-23 10:33 UTC (permalink / raw)
To: igt-dev
Test verifies that intel-allocator uses caller default-alignment setting
during open() instead of choosing safe alignment instead. Also check
does alloc() can overwrite default setting used by the allocator.
Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
Cc: Ashutosh Dixit <ashutosh.dixit@intel.com>
---
tests/i915/api_intel_allocator.c | 33 ++++++++++++++++++++++++++++++++
1 file changed, 33 insertions(+)
diff --git a/tests/i915/api_intel_allocator.c b/tests/i915/api_intel_allocator.c
index 7ae4a00b7..daf771363 100644
--- a/tests/i915/api_intel_allocator.c
+++ b/tests/i915/api_intel_allocator.c
@@ -120,6 +120,34 @@ static void reserve(int fd, uint8_t type)
igt_assert_eq(intel_allocator_close(ahnd), true);
}
+static void alignment(int fd)
+{
+ struct test_obj obj[3];
+ uint64_t ahnd, default_alignment = 0x4000;
+
+ ahnd = intel_allocator_open_full(fd, 0, 0, 0, INTEL_ALLOCATOR_SIMPLE,
+ ALLOC_STRATEGY_LOW_TO_HIGH,
+ default_alignment);
+
+ for (int i = 0; i < ARRAY_SIZE(obj); i++) {
+ obj[i].handle = gem_handle_gen();
+ obj[i].offset = intel_allocator_alloc(ahnd, obj[i].handle, 4096,
+ i == 2 ? 4096 : 0);
+ igt_debug("obj[%d].offset: %llx, handle: %u\n", i,
+ (long long) obj[i].offset, obj[i].handle);
+ }
+
+ igt_assert_eq(obj[1].offset - obj[0].offset, default_alignment);
+ /* obj[2] should be between obj[0] and obj[1] */
+ igt_assert(obj[0].offset < obj[2].offset);
+ igt_assert(obj[2].offset < obj[1].offset);
+
+ for (int i = 0; i < ARRAY_SIZE(obj); i++)
+ intel_allocator_free(ahnd, obj[i].handle);
+
+ igt_assert_eq(intel_allocator_close(ahnd), true);
+}
+
static bool overlaps(struct test_obj *buf1, struct test_obj *buf2)
{
uint64_t begin1 = buf1->offset;
@@ -692,6 +720,11 @@ igt_main
igt_subtest_f("reserve")
reserve(fd, INTEL_ALLOCATOR_SIMPLE);
+ igt_describe("For simple allocator check does default alignment is "
+ "properly handled for open and alloc functions");
+ igt_subtest_f("alignment")
+ alignment(fd);
+
for (a = als; a->name; a++) {
igt_subtest_with_dynamic_f("%s-allocator", a->name) {
igt_dynamic("basic")
--
2.32.0
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [igt-dev] [PATCH i-g-t 0/2] Use safe alignment as a default
@ 2022-02-24 7:54 Zbigniew Kempczyński
2022-02-24 7:54 ` [igt-dev] [PATCH i-g-t 1/2] lib/intel_allocator: Add " Zbigniew Kempczyński
` (5 more replies)
0 siblings, 6 replies; 14+ messages in thread
From: Zbigniew Kempczyński @ 2022-02-24 7:54 UTC (permalink / raw)
To: igt-dev
To avoid rewriting many tests use safe alignment as a default
when intel-allocator open is being called.
v2: Renaming alignment -> default-alignment test name.
Cc: Ashutosh Dixit <ashutosh.dixit@intel.com>
Zbigniew Kempczyński (2):
lib/intel_allocator: Add safe alignment as a default
tests/api_intel_allocator: Add default-alignment test
lib/intel_allocator.c | 64 +++++++++++++++++++++---------
lib/intel_allocator.h | 13 ++++--
lib/intel_allocator_msgchannel.h | 1 +
lib/intel_batchbuffer.c | 5 ++-
tests/i915/api_intel_allocator.c | 38 +++++++++++++++++-
tests/i915/gem_softpin.c | 4 +-
tests/i915/gem_tiled_fence_blits.c | 2 +-
7 files changed, 97 insertions(+), 30 deletions(-)
--
2.32.0
^ permalink raw reply [flat|nested] 14+ messages in thread
* [igt-dev] [PATCH i-g-t 1/2] lib/intel_allocator: Add safe alignment as a default
2022-02-24 7:54 [igt-dev] [PATCH i-g-t 0/2] Use safe alignment as a default Zbigniew Kempczyński
@ 2022-02-24 7:54 ` Zbigniew Kempczyński
2022-02-24 20:50 ` Dixit, Ashutosh
2022-02-24 7:54 ` [igt-dev] [PATCH i-g-t 2/2] tests/api_intel_allocator: Add default-alignment test Zbigniew Kempczyński
` (4 subsequent siblings)
5 siblings, 1 reply; 14+ messages in thread
From: Zbigniew Kempczyński @ 2022-02-24 7:54 UTC (permalink / raw)
To: igt-dev
For DG2 and beyond regions alignment may vary so many tests would need
to be rewritten to handle this constraint. As Ashutosh noticed most of
tests can use safe alignment as a default.
Adopt intel-allocator to use safe or user defined power-of-two alignment.
Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
Suggested-by: Ashutosh Dixit <ashutosh.dixit@intel.com>
Cc: Ashutosh Dixit <ashutosh.dixit@intel.com>
---
lib/intel_allocator.c | 64 +++++++++++++++++++++---------
lib/intel_allocator.h | 13 ++++--
lib/intel_allocator_msgchannel.h | 1 +
lib/intel_batchbuffer.c | 5 ++-
tests/i915/api_intel_allocator.c | 5 ++-
tests/i915/gem_softpin.c | 4 +-
tests/i915/gem_tiled_fence_blits.c | 2 +-
7 files changed, 64 insertions(+), 30 deletions(-)
diff --git a/lib/intel_allocator.c b/lib/intel_allocator.c
index eabff1f9a..340b88828 100644
--- a/lib/intel_allocator.c
+++ b/lib/intel_allocator.c
@@ -283,7 +283,8 @@ static bool __allocator_put(struct allocator *al)
static struct intel_allocator *intel_allocator_create(int fd,
uint64_t start, uint64_t end,
uint8_t allocator_type,
- uint8_t allocator_strategy)
+ uint8_t allocator_strategy,
+ uint64_t default_alignment)
{
struct intel_allocator *ial = NULL;
@@ -321,6 +322,7 @@ static struct intel_allocator *intel_allocator_create(int fd,
ial->type = allocator_type;
ial->strategy = allocator_strategy;
+ ial->default_alignment = default_alignment;
pthread_mutex_init(&ial->mutex, NULL);
return ial;
@@ -337,6 +339,7 @@ static struct allocator *allocator_open(int fd, uint32_t ctx, uint32_t vm,
uint64_t start, uint64_t end,
uint8_t allocator_type,
uint8_t allocator_strategy,
+ uint64_t default_alignment,
uint64_t *ahndp)
{
struct intel_allocator *ial;
@@ -347,11 +350,14 @@ static struct allocator *allocator_open(int fd, uint32_t ctx, uint32_t vm,
al = __allocator_find(fd, ctx, vm);
if (!al) {
- alloc_info("Allocator fd: %d, ctx: %u, vm: %u, <0x%llx : 0x%llx> "
- "not found, creating one\n",
- fd, ctx, vm, (long long) start, (long long) end);
+ alloc_info("Allocator fd: %d, ctx: %u, vm: %u, <0x%llx : 0x%llx>, "
+ "default alignment: 0x%llx "
+ "not found, creating one\n",
+ fd, ctx, vm, (long long) start, (long long) end,
+ (long long) alignment);
ial = intel_allocator_create(fd, start, end, allocator_type,
- allocator_strategy);
+ allocator_strategy,
+ default_alignment);
al = __allocator_create(fd, ctx, vm, ial);
}
@@ -363,6 +369,9 @@ static struct allocator *allocator_open(int fd, uint32_t ctx, uint32_t vm,
igt_assert_f(ial->strategy == allocator_strategy,
"Allocator strategy must be same or fd/%s\n", idstr);
+ igt_assert_f(ial->default_alignment == default_alignment,
+ "Allocator default alignment must be same or fd/%s\n", idstr);
+
__allocator_get(al);
*ahndp = __handle_create(al);
@@ -484,6 +493,7 @@ static int handle_request(struct alloc_req *req, struct alloc_resp *resp)
req->open.start, req->open.end,
req->open.allocator_type,
req->open.allocator_strategy,
+ req->open.default_alignment,
&ahnd);
refcnt = atomic_load(&al->refcount);
ret = atomic_load(&al->ial->refcount);
@@ -494,11 +504,13 @@ static int handle_request(struct alloc_req *req, struct alloc_resp *resp)
alloc_info("<open> [tid: %ld] fd: %d, ahnd: %" PRIx64
", ctx: %u, vm: %u"
- ", alloc_type: %u, al->refcnt: %ld->%ld"
+ ", alloc_type: %u, defalign: %llx"
+ ", al->refcnt: %ld->%ld"
", refcnt: %d->%d\n",
(long) req->tid, req->open.fd, ahnd,
- req->open.ctx,
- req->open.vm, req->open.allocator_type,
+ req->open.ctx, req->open.vm,
+ req->open.allocator_type,
+ (long long) req->open.default_alignment,
refcnt - 1, refcnt, ret - 1, ret);
break;
@@ -588,6 +600,9 @@ static int handle_request(struct alloc_req *req, struct alloc_resp *resp)
break;
case REQ_ALLOC:
+ if (!req->alloc.alignment)
+ req->alloc.alignment = ial->default_alignment;
+
resp->response_type = RESP_ALLOC;
resp->alloc.offset = ial->alloc(ial,
req->alloc.handle,
@@ -879,7 +894,8 @@ static uint64_t __intel_allocator_open_full(int fd, uint32_t ctx,
uint32_t vm,
uint64_t start, uint64_t end,
uint8_t allocator_type,
- enum allocator_strategy strategy)
+ enum allocator_strategy strategy,
+ uint64_t default_alignment)
{
struct alloc_req req = { .request_type = REQ_OPEN,
.open.fd = fd,
@@ -888,7 +904,8 @@ static uint64_t __intel_allocator_open_full(int fd, uint32_t ctx,
.open.start = start,
.open.end = end,
.open.allocator_type = allocator_type,
- .open.allocator_strategy = strategy };
+ .open.allocator_strategy = strategy,
+ .open.default_alignment = default_alignment };
struct alloc_resp resp;
uint64_t gtt_size;
@@ -903,6 +920,9 @@ static uint64_t __intel_allocator_open_full(int fd, uint32_t ctx,
req.open.end = gtt_size;
}
+ if (!default_alignment)
+ req.open.default_alignment = gem_detect_safe_alignment(fd);
+
/* Get child_tid only once at open() */
if (child_tid == -1)
child_tid = gettid();
@@ -922,7 +942,9 @@ static uint64_t __intel_allocator_open_full(int fd, uint32_t ctx,
* @end: address of the end
* @allocator_type: one of INTEL_ALLOCATOR_* define
* @strategy: passed to the allocator to define the strategy (like order
- * of allocation, see notes below).
+ * of allocation, see notes below)
+ * @default_alignment: default objects alignment - power-of-two requested
+ * alignment, if 0 then safe alignment will be chosen
*
* Function opens an allocator instance within <@start, @end) vm for given
* @fd and @ctx and returns its handle. If the allocator for such pair
@@ -948,20 +970,24 @@ static uint64_t __intel_allocator_open_full(int fd, uint32_t ctx,
uint64_t intel_allocator_open_full(int fd, uint32_t ctx,
uint64_t start, uint64_t end,
uint8_t allocator_type,
- enum allocator_strategy strategy)
+ enum allocator_strategy strategy,
+ uint64_t default_alignment)
{
return __intel_allocator_open_full(fd, ctx, 0, start, end,
- allocator_type, strategy);
+ allocator_type, strategy,
+ default_alignment);
}
uint64_t intel_allocator_open_vm_full(int fd, uint32_t vm,
uint64_t start, uint64_t end,
uint8_t allocator_type,
- enum allocator_strategy strategy)
+ enum allocator_strategy strategy,
+ uint64_t default_alignment)
{
igt_assert(vm != 0);
return __intel_allocator_open_full(fd, 0, vm, start, end,
- allocator_type, strategy);
+ allocator_type, strategy,
+ default_alignment);
}
/**
@@ -983,13 +1009,13 @@ uint64_t intel_allocator_open_vm_full(int fd, uint32_t vm,
uint64_t intel_allocator_open(int fd, uint32_t ctx, uint8_t allocator_type)
{
return intel_allocator_open_full(fd, ctx, 0, 0, allocator_type,
- ALLOC_STRATEGY_HIGH_TO_LOW);
+ ALLOC_STRATEGY_HIGH_TO_LOW, 0);
}
uint64_t intel_allocator_open_vm(int fd, uint32_t vm, uint8_t allocator_type)
{
return intel_allocator_open_vm_full(fd, vm, 0, 0, allocator_type,
- ALLOC_STRATEGY_HIGH_TO_LOW);
+ ALLOC_STRATEGY_HIGH_TO_LOW, 0);
}
uint64_t intel_allocator_open_vm_as(uint64_t allocator_handle, uint32_t new_vm)
@@ -1084,11 +1110,11 @@ uint64_t __intel_allocator_alloc(uint64_t allocator_handle, uint32_t handle,
.allocator_handle = allocator_handle,
.alloc.handle = handle,
.alloc.size = size,
- .alloc.strategy = strategy };
+ .alloc.strategy = strategy,
+ .alloc.alignment = alignment };
struct alloc_resp resp;
igt_assert((alignment & (alignment-1)) == 0);
- req.alloc.alignment = max_t(uint64_t, alignment, 1 << 12);
igt_assert(handle_request(&req, &resp) == 0);
igt_assert(resp.response_type == RESP_ALLOC);
diff --git a/lib/intel_allocator.h b/lib/intel_allocator.h
index e8d807f9a..c237e8e44 100644
--- a/lib/intel_allocator.h
+++ b/lib/intel_allocator.h
@@ -133,6 +133,7 @@ struct intel_allocator {
int fd;
uint8_t type;
enum allocator_strategy strategy;
+ uint64_t default_alignment;
_Atomic(int32_t) refcount;
pthread_mutex_t mutex;
@@ -171,12 +172,14 @@ uint64_t intel_allocator_open(int fd, uint32_t ctx, uint8_t allocator_type);
uint64_t intel_allocator_open_full(int fd, uint32_t ctx,
uint64_t start, uint64_t end,
uint8_t allocator_type,
- enum allocator_strategy strategy);
+ enum allocator_strategy strategy,
+ uint64_t default_alignment);
uint64_t intel_allocator_open_vm(int fd, uint32_t vm, uint8_t allocator_type);
uint64_t intel_allocator_open_vm_full(int fd, uint32_t vm,
uint64_t start, uint64_t end,
uint8_t allocator_type,
- enum allocator_strategy strategy);
+ enum allocator_strategy strategy,
+ uint64_t default_alignment);
uint64_t intel_allocator_open_vm_as(uint64_t allocator_handle, uint32_t new_vm);
bool intel_allocator_close(uint64_t allocator_handle);
@@ -242,7 +245,8 @@ static inline uint64_t get_simple_l2h_ahnd(int fd, uint32_t ctx)
return do_relocs ? 0 : intel_allocator_open_full(fd, ctx, 0, 0,
INTEL_ALLOCATOR_SIMPLE,
- ALLOC_STRATEGY_LOW_TO_HIGH);
+ ALLOC_STRATEGY_LOW_TO_HIGH,
+ 0);
}
static inline uint64_t get_simple_h2l_ahnd(int fd, uint32_t ctx)
@@ -251,7 +255,8 @@ static inline uint64_t get_simple_h2l_ahnd(int fd, uint32_t ctx)
return do_relocs ? 0 : intel_allocator_open_full(fd, ctx, 0, 0,
INTEL_ALLOCATOR_SIMPLE,
- ALLOC_STRATEGY_LOW_TO_HIGH);
+ ALLOC_STRATEGY_HIGH_TO_LOW,
+ 0);
}
static inline uint64_t get_reloc_ahnd(int fd, uint32_t ctx)
diff --git a/lib/intel_allocator_msgchannel.h b/lib/intel_allocator_msgchannel.h
index c7a738a08..ef129c307 100644
--- a/lib/intel_allocator_msgchannel.h
+++ b/lib/intel_allocator_msgchannel.h
@@ -55,6 +55,7 @@ struct alloc_req {
uint64_t end;
uint8_t allocator_type;
uint8_t allocator_strategy;
+ uint64_t default_alignment;
} open;
struct {
diff --git a/lib/intel_batchbuffer.c b/lib/intel_batchbuffer.c
index e5666cd4f..ddb8d8c1f 100644
--- a/lib/intel_batchbuffer.c
+++ b/lib/intel_batchbuffer.c
@@ -1360,7 +1360,7 @@ __intel_bb_create(int i915, uint32_t ctx, uint32_t size, bool do_relocs,
ibb->allocator_handle = intel_allocator_open_full(i915, ctx,
start, end,
allocator_type,
- strategy);
+ strategy, 0);
ibb->allocator_type = allocator_type;
ibb->allocator_strategy = strategy;
ibb->allocator_start = start;
@@ -3010,7 +3010,8 @@ static void __intel_bb_reinit_alloc(struct intel_bb *ibb)
ibb->allocator_handle = intel_allocator_open_full(ibb->i915, ibb->ctx,
ibb->allocator_start, ibb->allocator_end,
ibb->allocator_type,
- ibb->allocator_strategy);
+ ibb->allocator_strategy,
+ 0);
intel_bb_reset(ibb, true);
}
diff --git a/tests/i915/api_intel_allocator.c b/tests/i915/api_intel_allocator.c
index bb1b3838b..7ae4a00b7 100644
--- a/tests/i915/api_intel_allocator.c
+++ b/tests/i915/api_intel_allocator.c
@@ -174,6 +174,7 @@ static void reuse(int fd, uint8_t type)
{
struct test_obj obj[128], tmp;
uint64_t ahnd, prev_offset;
+ uint64_t align = 0x40;
int i;
ahnd = intel_allocator_open(fd, 0, type);
@@ -182,7 +183,7 @@ static void reuse(int fd, uint8_t type)
obj[i].handle = gem_handle_gen();
obj[i].size = OBJ_SIZE;
obj[i].offset = intel_allocator_alloc(ahnd, obj[i].handle,
- obj[i].size, 0x40);
+ obj[i].size, align);
}
/* check simple reuse */
@@ -198,7 +199,7 @@ static void reuse(int fd, uint8_t type)
intel_allocator_free(ahnd, obj[i].handle);
/* alloc different buffer to fill freed hole */
tmp.handle = gem_handle_gen();
- tmp.offset = intel_allocator_alloc(ahnd, tmp.handle, OBJ_SIZE, 0);
+ tmp.offset = intel_allocator_alloc(ahnd, tmp.handle, OBJ_SIZE, align);
igt_assert(prev_offset == tmp.offset);
obj[i].offset = intel_allocator_alloc(ahnd, obj[i].handle,
diff --git a/tests/i915/gem_softpin.c b/tests/i915/gem_softpin.c
index 2778a90b3..34fc9983f 100644
--- a/tests/i915/gem_softpin.c
+++ b/tests/i915/gem_softpin.c
@@ -991,7 +991,7 @@ static void test_allocator_evict(int fd, const intel_ctx_t *ctx,
intel_allocator_multiprocess_start();
ahnd = intel_allocator_open_full(fd, 0, 0, size / 16,
INTEL_ALLOCATOR_RELOC,
- ALLOC_STRATEGY_NONE);
+ ALLOC_STRATEGY_NONE, 0);
intel_require_memory(count, BATCH_SIZE, CHECK_RAM);
intel_detect_and_clear_missed_interrupts(fd);
@@ -1038,7 +1038,7 @@ static void test_allocator_evict(int fd, const intel_ctx_t *ctx,
/* We need to open the allocator again in the new process */
ahnd = intel_allocator_open_full(fd, 0, 0, size / 16,
INTEL_ALLOCATOR_RELOC,
- ALLOC_STRATEGY_NONE);
+ ALLOC_STRATEGY_NONE, 0);
igt_until_timeout(timeout) {
submit(fd, gen, &execbuf, batches, count, ahnd);
diff --git a/tests/i915/gem_tiled_fence_blits.c b/tests/i915/gem_tiled_fence_blits.c
index 9ea61f110..dc0ffc1e1 100644
--- a/tests/i915/gem_tiled_fence_blits.c
+++ b/tests/i915/gem_tiled_fence_blits.c
@@ -155,7 +155,7 @@ static void run_test(int fd, int count, uint64_t end)
if (!gem_has_relocations(fd))
ahnd = intel_allocator_open_full(fd, 0, 0, end,
INTEL_ALLOCATOR_RELOC,
- ALLOC_STRATEGY_LOW_TO_HIGH);
+ ALLOC_STRATEGY_LOW_TO_HIGH, 0);
memset(reloc, 0, sizeof(reloc));
memset(obj, 0, sizeof(obj));
obj[0].flags = EXEC_OBJECT_NEEDS_FENCE;
--
2.32.0
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [igt-dev] [PATCH i-g-t 2/2] tests/api_intel_allocator: Add default-alignment test
2022-02-24 7:54 [igt-dev] [PATCH i-g-t 0/2] Use safe alignment as a default Zbigniew Kempczyński
2022-02-24 7:54 ` [igt-dev] [PATCH i-g-t 1/2] lib/intel_allocator: Add " Zbigniew Kempczyński
@ 2022-02-24 7:54 ` Zbigniew Kempczyński
2022-02-24 20:16 ` Dixit, Ashutosh
2022-02-24 8:57 ` [igt-dev] ✓ Fi.CI.BAT: success for Use safe alignment as a default (rev2) Patchwork
` (3 subsequent siblings)
5 siblings, 1 reply; 14+ messages in thread
From: Zbigniew Kempczyński @ 2022-02-24 7:54 UTC (permalink / raw)
To: igt-dev
Test verifies that intel-allocator uses caller default-alignment setting
during open() instead of choosing safe alignment instead. Also check
does alloc() can overwrite default setting used by the allocator.
v2: rename allocator -> default-allocator test name
Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
Cc: Ashutosh Dixit <ashutosh.dixit@intel.com>
---
tests/i915/api_intel_allocator.c | 33 ++++++++++++++++++++++++++++++++
1 file changed, 33 insertions(+)
diff --git a/tests/i915/api_intel_allocator.c b/tests/i915/api_intel_allocator.c
index 7ae4a00b7..32d1aad70 100644
--- a/tests/i915/api_intel_allocator.c
+++ b/tests/i915/api_intel_allocator.c
@@ -120,6 +120,34 @@ static void reserve(int fd, uint8_t type)
igt_assert_eq(intel_allocator_close(ahnd), true);
}
+static void default_alignment(int fd)
+{
+ struct test_obj obj[3];
+ uint64_t ahnd, default_alignment = 0x4000;
+
+ ahnd = intel_allocator_open_full(fd, 0, 0, 0, INTEL_ALLOCATOR_SIMPLE,
+ ALLOC_STRATEGY_LOW_TO_HIGH,
+ default_alignment);
+
+ for (int i = 0; i < ARRAY_SIZE(obj); i++) {
+ obj[i].handle = gem_handle_gen();
+ obj[i].offset = intel_allocator_alloc(ahnd, obj[i].handle, 4096,
+ i == 2 ? 4096 : 0);
+ igt_debug("obj[%d].offset: %llx, handle: %u\n", i,
+ (long long) obj[i].offset, obj[i].handle);
+ }
+
+ igt_assert_eq(obj[1].offset - obj[0].offset, default_alignment);
+ /* obj[2] should be between obj[0] and obj[1] */
+ igt_assert(obj[0].offset < obj[2].offset);
+ igt_assert(obj[2].offset < obj[1].offset);
+
+ for (int i = 0; i < ARRAY_SIZE(obj); i++)
+ intel_allocator_free(ahnd, obj[i].handle);
+
+ igt_assert_eq(intel_allocator_close(ahnd), true);
+}
+
static bool overlaps(struct test_obj *buf1, struct test_obj *buf2)
{
uint64_t begin1 = buf1->offset;
@@ -692,6 +720,11 @@ igt_main
igt_subtest_f("reserve")
reserve(fd, INTEL_ALLOCATOR_SIMPLE);
+ igt_describe("For simple allocator check does default alignment is "
+ "properly handled in open and alloc functions");
+ igt_subtest_f("default-alignment")
+ default_alignment(fd);
+
for (a = als; a->name; a++) {
igt_subtest_with_dynamic_f("%s-allocator", a->name) {
igt_dynamic("basic")
--
2.32.0
^ permalink raw reply related [flat|nested] 14+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for Use safe alignment as a default (rev2)
2022-02-24 7:54 [igt-dev] [PATCH i-g-t 0/2] Use safe alignment as a default Zbigniew Kempczyński
2022-02-24 7:54 ` [igt-dev] [PATCH i-g-t 1/2] lib/intel_allocator: Add " Zbigniew Kempczyński
2022-02-24 7:54 ` [igt-dev] [PATCH i-g-t 2/2] tests/api_intel_allocator: Add default-alignment test Zbigniew Kempczyński
@ 2022-02-24 8:57 ` Patchwork
2022-02-24 21:20 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
` (2 subsequent siblings)
5 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2022-02-24 8:57 UTC (permalink / raw)
To: Zbigniew Kempczyński; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 4830 bytes --]
== Series Details ==
Series: Use safe alignment as a default (rev2)
URL : https://patchwork.freedesktop.org/series/100627/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_11277 -> IGTPW_6696
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/index.html
Participating hosts (45 -> 42)
------------------------------
Missing (3): fi-bsw-cyan fi-bdw-samus fi-pnv-d510
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_6696:
### IGT changes ###
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* igt@i915_selftest@live@requests:
- {bat-rpls-2}: NOTRUN -> [INCOMPLETE][1]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/bat-rpls-2/igt@i915_selftest@live@requests.html
Known issues
------------
Here are the changes found in IGTPW_6696 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@amdgpu/amd_cs_nop@fork-compute0:
- fi-ivb-3770: NOTRUN -> [SKIP][2] ([fdo#109271]) +17 similar issues
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/fi-ivb-3770/igt@amdgpu/amd_cs_nop@fork-compute0.html
* igt@i915_pm_rps@basic-api:
- bat-dg1-5: [PASS][3] -> [FAIL][4] ([i915#4032])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11277/bat-dg1-5/igt@i915_pm_rps@basic-api.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/bat-dg1-5/igt@i915_pm_rps@basic-api.html
* igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a:
- fi-skl-6600u: [PASS][5] -> [INCOMPLETE][6] ([i915#5128])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11277/fi-skl-6600u/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/fi-skl-6600u/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html
#### Possible fixes ####
* igt@gem_exec_suspend@basic-s3@smem:
- {bat-rpls-2}: [INCOMPLETE][7] ([i915#4898]) -> [PASS][8]
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11277/bat-rpls-2/igt@gem_exec_suspend@basic-s3@smem.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/bat-rpls-2/igt@gem_exec_suspend@basic-s3@smem.html
* igt@i915_selftest@live@hangcheck:
- fi-ivb-3770: [INCOMPLETE][9] ([i915#3303]) -> [PASS][10]
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11277/fi-ivb-3770/igt@i915_selftest@live@hangcheck.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/fi-ivb-3770/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
[fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
[fdo#109308]: https://bugs.freedesktop.org/show_bug.cgi?id=109308
[fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
[fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
[i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
[i915#1155]: https://gitlab.freedesktop.org/drm/intel/issues/1155
[i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845
[i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849
[i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
[i915#3303]: https://gitlab.freedesktop.org/drm/intel/issues/3303
[i915#3576]: https://gitlab.freedesktop.org/drm/intel/issues/3576
[i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637
[i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
[i915#4032]: https://gitlab.freedesktop.org/drm/intel/issues/4032
[i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
[i915#4312]: https://gitlab.freedesktop.org/drm/intel/issues/4312
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#4898]: https://gitlab.freedesktop.org/drm/intel/issues/4898
[i915#5128]: https://gitlab.freedesktop.org/drm/intel/issues/5128
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_6355 -> IGTPW_6696
CI-20190529: 20190529
CI_DRM_11277: a9d1ffee8dbe2c5506cccf9077eab8fe439eea46 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_6696: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/index.html
IGT_6355: 83ec34916bd8268bc331105cf77c4d3d3cd352be @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Testlist changes ==
+igt@api_intel_allocator@default-alignment
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/index.html
[-- Attachment #2: Type: text/html, Size: 4573 bytes --]
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [igt-dev] [PATCH i-g-t 2/2] tests/api_intel_allocator: Add default-alignment test
2022-02-24 7:54 ` [igt-dev] [PATCH i-g-t 2/2] tests/api_intel_allocator: Add default-alignment test Zbigniew Kempczyński
@ 2022-02-24 20:16 ` Dixit, Ashutosh
2022-02-25 7:22 ` Zbigniew Kempczyński
0 siblings, 1 reply; 14+ messages in thread
From: Dixit, Ashutosh @ 2022-02-24 20:16 UTC (permalink / raw)
To: Zbigniew Kempczyński; +Cc: igt-dev
On Wed, 23 Feb 2022 23:54:15 -0800, Zbigniew Kempczyński wrote:
>
> diff --git a/tests/i915/api_intel_allocator.c b/tests/i915/api_intel_allocator.c
> index 7ae4a00b7..32d1aad70 100644
> --- a/tests/i915/api_intel_allocator.c
> +++ b/tests/i915/api_intel_allocator.c
> @@ -120,6 +120,34 @@ static void reserve(int fd, uint8_t type)
> igt_assert_eq(intel_allocator_close(ahnd), true);
> }
>
> +static void default_alignment(int fd)
> +{
> + struct test_obj obj[3];
> + uint64_t ahnd, default_alignment = 0x4000;
> +
> + ahnd = intel_allocator_open_full(fd, 0, 0, 0, INTEL_ALLOCATOR_SIMPLE,
> + ALLOC_STRATEGY_LOW_TO_HIGH,
> + default_alignment);
> +
> + for (int i = 0; i < ARRAY_SIZE(obj); i++) {
> + obj[i].handle = gem_handle_gen();
> + obj[i].offset = intel_allocator_alloc(ahnd, obj[i].handle, 4096,
> + i == 2 ? 4096 : 0);
> + igt_debug("obj[%d].offset: %llx, handle: %u\n", i,
> + (long long) obj[i].offset, obj[i].handle);
> + }
> +
> + igt_assert_eq(obj[1].offset - obj[0].offset, default_alignment);
What would happen here if we had not specified default_alignment (i.e. let
the allocator choose safe_alignment silently)? Do we need a
"get_alignment()" API? Or clients know that the default default_alignment
is safe_alignment?
In any case, this patch is fine so:
Reviewed-by: Ashutosh Dixit <ashutosh.dixit@intel.com>
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [igt-dev] [PATCH i-g-t 1/2] lib/intel_allocator: Add safe alignment as a default
2022-02-24 7:54 ` [igt-dev] [PATCH i-g-t 1/2] lib/intel_allocator: Add " Zbigniew Kempczyński
@ 2022-02-24 20:50 ` Dixit, Ashutosh
2022-02-25 7:04 ` Zbigniew Kempczyński
0 siblings, 1 reply; 14+ messages in thread
From: Dixit, Ashutosh @ 2022-02-24 20:50 UTC (permalink / raw)
To: Zbigniew Kempczyński; +Cc: igt-dev
On Wed, 23 Feb 2022 23:54:14 -0800, Zbigniew Kempczyński wrote:
>
> diff --git a/lib/intel_allocator.c b/lib/intel_allocator.c
> index eabff1f9a..340b88828 100644
> --- a/lib/intel_allocator.c
> +++ b/lib/intel_allocator.c
> @@ -283,7 +283,8 @@ static bool __allocator_put(struct allocator *al)
> static struct intel_allocator *intel_allocator_create(int fd,
> uint64_t start, uint64_t end,
> uint8_t allocator_type,
> - uint8_t allocator_strategy)
> + uint8_t allocator_strategy,
> + uint64_t default_alignment)
> {
> struct intel_allocator *ial = NULL;
>
> @@ -321,6 +322,7 @@ static struct intel_allocator *intel_allocator_create(int fd,
>
> ial->type = allocator_type;
> ial->strategy = allocator_strategy;
> + ial->default_alignment = default_alignment;
Isn't this a better place to set default_alignment to
gem_detect_safe_alignment() rather than in __intel_allocator_open_full()
below (though I understand they are roughly equivalent)?
> @@ -903,6 +920,9 @@ static uint64_t __intel_allocator_open_full(int fd, uint32_t ctx,
> req.open.end = gtt_size;
> }
>
> + if (!default_alignment)
> + req.open.default_alignment = gem_detect_safe_alignment(fd);
> +
/snip/
> @@ -948,20 +970,24 @@ static uint64_t __intel_allocator_open_full(int fd, uint32_t ctx,
> uint64_t intel_allocator_open_full(int fd, uint32_t ctx,
> uint64_t start, uint64_t end,
> uint8_t allocator_type,
> - enum allocator_strategy strategy)
> + enum allocator_strategy strategy,
> + uint64_t default_alignment)
So we have added default_alignment to all these API's now and that does
provide additional flexibility but I am wondering if the additional
flexibility is really needed and will any IGT ever set default_alignment
other than 0 (i.e. let allocator choose safe_alignment)? And also does
having a different default_alignment improve test coverage in any way?
In any case, this is:
Reviewed-by: Ashutosh Dixit <ashutosh.dixit@intel.com>
^ permalink raw reply [flat|nested] 14+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for Use safe alignment as a default (rev2)
2022-02-24 7:54 [igt-dev] [PATCH i-g-t 0/2] Use safe alignment as a default Zbigniew Kempczyński
` (2 preceding siblings ...)
2022-02-24 8:57 ` [igt-dev] ✓ Fi.CI.BAT: success for Use safe alignment as a default (rev2) Patchwork
@ 2022-02-24 21:20 ` Patchwork
2022-02-25 7:26 ` Zbigniew Kempczyński
2022-02-25 15:41 ` Patchwork
2022-02-25 16:04 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork
5 siblings, 1 reply; 14+ messages in thread
From: Patchwork @ 2022-02-24 21:20 UTC (permalink / raw)
To: Zbigniew Kempczyński; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 30253 bytes --]
== Series Details ==
Series: Use safe alignment as a default (rev2)
URL : https://patchwork.freedesktop.org/series/100627/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_11277_full -> IGTPW_6696_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_6696_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_6696_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_6696/index.html
Participating hosts (11 -> 8)
------------------------------
Missing (3): pig-skl-6260u pig-kbl-iris pig-glk-j5005
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_6696_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_plane_cursor@pipe-c-primary-size-256:
- shard-iclb: [PASS][1] -> [FAIL][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11277/shard-iclb4/igt@kms_plane_cursor@pipe-c-primary-size-256.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-iclb8/igt@kms_plane_cursor@pipe-c-primary-size-256.html
- shard-glk: [PASS][3] -> [FAIL][4]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11277/shard-glk6/igt@kms_plane_cursor@pipe-c-primary-size-256.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-glk4/igt@kms_plane_cursor@pipe-c-primary-size-256.html
New tests
---------
New tests have been introduced between CI_DRM_11277_full and IGTPW_6696_full:
### New IGT tests (1) ###
* igt@api_intel_allocator@default-alignment:
- Statuses : 6 pass(s)
- Exec time: [0.0] s
Known issues
------------
Here are the changes found in IGTPW_6696_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_create@create-massive:
- shard-apl: NOTRUN -> [DMESG-WARN][5] ([i915#4991])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-apl8/igt@gem_create@create-massive.html
* igt@gem_ctx_isolation@preservation-s3@vcs0:
- shard-kbl: [PASS][6] -> [DMESG-WARN][7] ([i915#180]) +1 similar issue
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11277/shard-kbl1/igt@gem_ctx_isolation@preservation-s3@vcs0.html
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-kbl7/igt@gem_ctx_isolation@preservation-s3@vcs0.html
* igt@gem_ctx_persistence@file:
- shard-snb: NOTRUN -> [SKIP][8] ([fdo#109271] / [i915#1099])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-snb7/igt@gem_ctx_persistence@file.html
* igt@gem_exec_balancer@parallel:
- shard-kbl: NOTRUN -> [DMESG-WARN][9] ([i915#5076])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-kbl3/igt@gem_exec_balancer@parallel.html
* igt@gem_exec_fair@basic-deadline:
- shard-glk: [PASS][10] -> [FAIL][11] ([i915#2846])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11277/shard-glk2/igt@gem_exec_fair@basic-deadline.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-glk7/igt@gem_exec_fair@basic-deadline.html
* igt@gem_exec_fair@basic-none-vip@rcs0:
- shard-tglb: NOTRUN -> [FAIL][12] ([i915#2842])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-tglb2/igt@gem_exec_fair@basic-none-vip@rcs0.html
* igt@gem_exec_fair@basic-none@vcs0:
- shard-kbl: [PASS][13] -> [FAIL][14] ([i915#2842]) +2 similar issues
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11277/shard-kbl3/igt@gem_exec_fair@basic-none@vcs0.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-kbl7/igt@gem_exec_fair@basic-none@vcs0.html
* igt@gem_exec_fair@basic-none@vecs0:
- shard-apl: [PASS][15] -> [FAIL][16] ([i915#2842])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11277/shard-apl4/igt@gem_exec_fair@basic-none@vecs0.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-apl7/igt@gem_exec_fair@basic-none@vecs0.html
* igt@gem_exec_fair@basic-pace-solo@rcs0:
- shard-kbl: NOTRUN -> [FAIL][17] ([i915#2842])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-kbl6/igt@gem_exec_fair@basic-pace-solo@rcs0.html
* igt@gem_exec_fair@basic-throttle@rcs0:
- shard-iclb: [PASS][18] -> [FAIL][19] ([i915#2849])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11277/shard-iclb7/igt@gem_exec_fair@basic-throttle@rcs0.html
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-iclb8/igt@gem_exec_fair@basic-throttle@rcs0.html
* igt@gem_exec_flush@basic-batch-kernel-default-cmd:
- shard-snb: NOTRUN -> [SKIP][20] ([fdo#109271]) +106 similar issues
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-snb4/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html
- shard-iclb: NOTRUN -> [SKIP][21] ([fdo#109313])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-iclb2/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html
- shard-tglb: NOTRUN -> [SKIP][22] ([fdo#109313])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-tglb1/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html
* igt@gem_exec_params@no-blt:
- shard-tglb: NOTRUN -> [SKIP][23] ([fdo#109283])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-tglb3/igt@gem_exec_params@no-blt.html
* igt@gem_exec_params@secure-non-root:
- shard-tglb: NOTRUN -> [SKIP][24] ([fdo#112283]) +1 similar issue
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-tglb5/igt@gem_exec_params@secure-non-root.html
* igt@gem_huc_copy@huc-copy:
- shard-apl: NOTRUN -> [SKIP][25] ([fdo#109271] / [i915#2190])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-apl6/igt@gem_huc_copy@huc-copy.html
- shard-glk: NOTRUN -> [SKIP][26] ([fdo#109271] / [i915#2190])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-glk5/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@heavy-random:
- shard-apl: NOTRUN -> [SKIP][27] ([fdo#109271] / [i915#4613])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-apl7/igt@gem_lmem_swapping@heavy-random.html
* igt@gem_lmem_swapping@parallel-random:
- shard-iclb: NOTRUN -> [SKIP][28] ([i915#4613])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-iclb1/igt@gem_lmem_swapping@parallel-random.html
- shard-kbl: NOTRUN -> [SKIP][29] ([fdo#109271] / [i915#4613]) +1 similar issue
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-kbl4/igt@gem_lmem_swapping@parallel-random.html
* igt@gem_lmem_swapping@parallel-random-verify:
- shard-tglb: NOTRUN -> [SKIP][30] ([i915#4613]) +1 similar issue
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-tglb7/igt@gem_lmem_swapping@parallel-random-verify.html
- shard-glk: NOTRUN -> [SKIP][31] ([fdo#109271] / [i915#4613])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-glk2/igt@gem_lmem_swapping@parallel-random-verify.html
* igt@gem_pread@exhaustion:
- shard-tglb: NOTRUN -> [WARN][32] ([i915#2658])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-tglb6/igt@gem_pread@exhaustion.html
- shard-iclb: NOTRUN -> [WARN][33] ([i915#2658])
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-iclb3/igt@gem_pread@exhaustion.html
- shard-kbl: NOTRUN -> [WARN][34] ([i915#2658])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-kbl7/igt@gem_pread@exhaustion.html
* igt@gem_pxp@protected-encrypted-src-copy-not-readible:
- shard-tglb: NOTRUN -> [SKIP][35] ([i915#4270]) +4 similar issues
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-tglb2/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html
* igt@gem_pxp@verify-pxp-stale-ctx-execution:
- shard-iclb: NOTRUN -> [SKIP][36] ([i915#4270]) +2 similar issues
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-iclb7/igt@gem_pxp@verify-pxp-stale-ctx-execution.html
* igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled:
- shard-iclb: NOTRUN -> [SKIP][37] ([i915#768]) +2 similar issues
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-iclb8/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled.html
* igt@gen7_exec_parse@oacontrol-tracking:
- shard-iclb: NOTRUN -> [SKIP][38] ([fdo#109289]) +1 similar issue
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-iclb4/igt@gen7_exec_parse@oacontrol-tracking.html
- shard-tglb: NOTRUN -> [SKIP][39] ([fdo#109289]) +2 similar issues
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-tglb2/igt@gen7_exec_parse@oacontrol-tracking.html
* igt@gen9_exec_parse@basic-rejected:
- shard-iclb: NOTRUN -> [SKIP][40] ([i915#2856]) +1 similar issue
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-iclb5/igt@gen9_exec_parse@basic-rejected.html
* igt@gen9_exec_parse@basic-rejected-ctx-param:
- shard-tglb: NOTRUN -> [SKIP][41] ([i915#2527] / [i915#2856]) +1 similar issue
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-tglb1/igt@gen9_exec_parse@basic-rejected-ctx-param.html
* igt@i915_pm_dc@dc6-dpms:
- shard-kbl: NOTRUN -> [FAIL][42] ([i915#454])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-kbl1/igt@i915_pm_dc@dc6-dpms.html
- shard-tglb: NOTRUN -> [FAIL][43] ([i915#454])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-tglb2/igt@i915_pm_dc@dc6-dpms.html
* igt@i915_pm_rc6_residency@rc6-idle:
- shard-tglb: NOTRUN -> [WARN][44] ([i915#2681] / [i915#2684])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-tglb3/igt@i915_pm_rc6_residency@rc6-idle.html
* igt@i915_pm_rpm@dpms-non-lpsp:
- shard-tglb: NOTRUN -> [SKIP][45] ([fdo#111644] / [i915#1397] / [i915#2411])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-tglb2/igt@i915_pm_rpm@dpms-non-lpsp.html
- shard-iclb: NOTRUN -> [SKIP][46] ([fdo#110892])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-iclb1/igt@i915_pm_rpm@dpms-non-lpsp.html
* igt@i915_query@query-topology-known-pci-ids:
- shard-tglb: NOTRUN -> [SKIP][47] ([fdo#109303])
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-tglb5/igt@i915_query@query-topology-known-pci-ids.html
* igt@kms_atomic@atomic_plane_damage:
- shard-iclb: NOTRUN -> [SKIP][48] ([i915#4765])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-iclb5/igt@kms_atomic@atomic_plane_damage.html
* igt@kms_big_fb@linear-16bpp-rotate-270:
- shard-tglb: NOTRUN -> [SKIP][49] ([fdo#111614]) +3 similar issues
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-tglb3/igt@kms_big_fb@linear-16bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-270:
- shard-iclb: NOTRUN -> [SKIP][50] ([fdo#110725] / [fdo#111614]) +2 similar issues
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-iclb6/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-kbl: NOTRUN -> [SKIP][51] ([fdo#109271] / [i915#3777]) +7 similar issues
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-kbl7/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip:
- shard-glk: NOTRUN -> [SKIP][52] ([fdo#109271] / [i915#3777])
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-glk7/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
- shard-apl: NOTRUN -> [SKIP][53] ([fdo#109271] / [i915#3777])
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-apl8/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-270:
- shard-tglb: NOTRUN -> [SKIP][54] ([fdo#111615]) +3 similar issues
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-tglb3/igt@kms_big_fb@yf-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0:
- shard-apl: NOTRUN -> [SKIP][55] ([fdo#109271]) +148 similar issues
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-apl7/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-iclb: NOTRUN -> [SKIP][56] ([fdo#110723])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-iclb5/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_ccs:
- shard-tglb: NOTRUN -> [SKIP][57] ([i915#3689]) +5 similar issues
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-tglb6/igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_ccs.html
* igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_mc_ccs:
- shard-apl: NOTRUN -> [SKIP][58] ([fdo#109271] / [i915#3886]) +8 similar issues
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-apl6/igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-b-crc-primary-basic-y_tiled_gen12_mc_ccs:
- shard-kbl: NOTRUN -> [SKIP][59] ([fdo#109271] / [i915#3886]) +16 similar issues
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-kbl4/igt@kms_ccs@pipe-b-crc-primary-basic-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-b-crc-primary-basic-yf_tiled_ccs:
- shard-tglb: NOTRUN -> [SKIP][60] ([fdo#111615] / [i915#3689]) +7 similar issues
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-tglb1/igt@kms_ccs@pipe-b-crc-primary-basic-yf_tiled_ccs.html
* igt@kms_ccs@pipe-b-crc-primary-rotation-180-y_tiled_gen12_mc_ccs:
- shard-glk: NOTRUN -> [SKIP][61] ([fdo#109271] / [i915#3886]) +5 similar issues
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-glk1/igt@kms_ccs@pipe-b-crc-primary-rotation-180-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-c-crc-primary-rotation-180-y_tiled_gen12_rc_ccs_cc:
- shard-iclb: NOTRUN -> [SKIP][62] ([fdo#109278] / [i915#3886]) +5 similar issues
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-iclb7/igt@kms_ccs@pipe-c-crc-primary-rotation-180-y_tiled_gen12_rc_ccs_cc.html
* igt@kms_ccs@pipe-c-random-ccs-data-y_tiled_gen12_mc_ccs:
- shard-tglb: NOTRUN -> [SKIP][63] ([i915#3689] / [i915#3886]) +4 similar issues
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-tglb5/igt@kms_ccs@pipe-c-random-ccs-data-y_tiled_gen12_mc_ccs.html
* igt@kms_cdclk@mode-transition:
- shard-tglb: NOTRUN -> [SKIP][64] ([i915#3742])
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-tglb5/igt@kms_cdclk@mode-transition.html
* igt@kms_chamelium@hdmi-aspect-ratio:
- shard-glk: NOTRUN -> [SKIP][65] ([fdo#109271] / [fdo#111827]) +7 similar issues
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-glk9/igt@kms_chamelium@hdmi-aspect-ratio.html
* igt@kms_color@pipe-d-degamma:
- shard-iclb: NOTRUN -> [SKIP][66] ([fdo#109278] / [i915#1149])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-iclb5/igt@kms_color@pipe-d-degamma.html
* igt@kms_color_chamelium@pipe-a-ctm-blue-to-red:
- shard-kbl: NOTRUN -> [SKIP][67] ([fdo#109271] / [fdo#111827]) +27 similar issues
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-kbl4/igt@kms_color_chamelium@pipe-a-ctm-blue-to-red.html
* igt@kms_color_chamelium@pipe-a-ctm-negative:
- shard-snb: NOTRUN -> [SKIP][68] ([fdo#109271] / [fdo#111827]) +5 similar issues
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-snb5/igt@kms_color_chamelium@pipe-a-ctm-negative.html
* igt@kms_color_chamelium@pipe-b-ctm-0-75:
- shard-tglb: NOTRUN -> [SKIP][69] ([fdo#109284] / [fdo#111827]) +15 similar issues
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-tglb5/igt@kms_color_chamelium@pipe-b-ctm-0-75.html
* igt@kms_color_chamelium@pipe-b-ctm-red-to-blue:
- shard-iclb: NOTRUN -> [SKIP][70] ([fdo#109284] / [fdo#111827]) +10 similar issues
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-iclb4/igt@kms_color_chamelium@pipe-b-ctm-red-to-blue.html
* igt@kms_color_chamelium@pipe-c-ctm-0-25:
- shard-apl: NOTRUN -> [SKIP][71] ([fdo#109271] / [fdo#111827]) +10 similar issues
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-apl8/igt@kms_color_chamelium@pipe-c-ctm-0-25.html
* igt@kms_color_chamelium@pipe-d-ctm-max:
- shard-iclb: NOTRUN -> [SKIP][72] ([fdo#109278] / [fdo#109284] / [fdo#111827]) +1 similar issue
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-iclb8/igt@kms_color_chamelium@pipe-d-ctm-max.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-tglb: NOTRUN -> [SKIP][73] ([i915#3116] / [i915#3299])
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-tglb3/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_cursor_crc@pipe-a-cursor-512x170-offscreen:
- shard-iclb: NOTRUN -> [SKIP][74] ([fdo#109278] / [fdo#109279]) +1 similar issue
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-iclb4/igt@kms_cursor_crc@pipe-a-cursor-512x170-offscreen.html
* igt@kms_cursor_crc@pipe-b-cursor-32x32-onscreen:
- shard-tglb: NOTRUN -> [SKIP][75] ([i915#3319]) +5 similar issues
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-tglb7/igt@kms_cursor_crc@pipe-b-cursor-32x32-onscreen.html
* igt@kms_cursor_crc@pipe-c-cursor-512x170-onscreen:
- shard-tglb: NOTRUN -> [SKIP][76] ([fdo#109279] / [i915#3359]) +2 similar issues
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-tglb7/igt@kms_cursor_crc@pipe-c-cursor-512x170-onscreen.html
* igt@kms_cursor_crc@pipe-d-cursor-256x256-onscreen:
- shard-kbl: NOTRUN -> [SKIP][77] ([fdo#109271]) +312 similar issues
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-kbl7/igt@kms_cursor_crc@pipe-d-cursor-256x256-onscreen.html
* igt@kms_cursor_crc@pipe-d-cursor-512x170-rapid-movement:
- shard-tglb: NOTRUN -> [SKIP][78] ([i915#3359]) +8 similar issues
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-tglb2/igt@kms_cursor_crc@pipe-d-cursor-512x170-rapid-movement.html
* igt@kms_cursor_edge_walk@pipe-d-128x128-top-edge:
- shard-iclb: NOTRUN -> [SKIP][79] ([fdo#109278]) +33 similar issues
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-iclb2/igt@kms_cursor_edge_walk@pipe-d-128x128-top-edge.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-tglb: NOTRUN -> [SKIP][80] ([i915#4103]) +1 similar issue
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-tglb1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@cursor-vs-flip-toggle:
- shard-iclb: NOTRUN -> [FAIL][81] ([i915#5072])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-iclb7/igt@kms_cursor_legacy@cursor-vs-flip-toggle.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
- shard-iclb: NOTRUN -> [SKIP][82] ([fdo#109274] / [fdo#109278]) +1 similar issue
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-iclb5/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic:
- shard-tglb: NOTRUN -> [SKIP][83] ([fdo#109274] / [fdo#111825]) +14 similar issues
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-tglb6/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html
* igt@kms_dither@fb-8bpc-vs-panel-8bpc@edp-1-pipe-a:
- shard-tglb: NOTRUN -> [SKIP][84] ([i915#3788])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-tglb5/igt@kms_dither@fb-8bpc-vs-panel-8bpc@edp-1-pipe-a.html
* igt@kms_dp_tiled_display@basic-test-pattern:
- shard-iclb: NOTRUN -> [SKIP][85] ([i915#426])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-iclb2/igt@kms_dp_tiled_display@basic-test-pattern.html
- shard-tglb: NOTRUN -> [SKIP][86] ([i915#426])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-tglb5/igt@kms_dp_tiled_display@basic-test-pattern.html
* igt@kms_dsc@xrgb8888-dsc-compression:
- shard-tglb: NOTRUN -> [SKIP][87] ([i915#3828])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-tglb1/igt@kms_dsc@xrgb8888-dsc-compression.html
* igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a1-hdmi-a2:
- shard-glk: [PASS][88] -> [FAIL][89] ([i915#79])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11277/shard-glk1/igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a1-hdmi-a2.html
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-glk3/igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a1-hdmi-a2.html
* igt@kms_flip@2x-modeset-vs-vblank-race-interruptible:
- shard-iclb: NOTRUN -> [SKIP][90] ([fdo#109274]) +6 similar issues
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-iclb4/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible.html
* igt@kms_flip@flip-vs-suspend-interruptible@a-dp1:
- shard-kbl: NOTRUN -> [DMESG-WARN][91] ([i915#180]) +4 similar issues
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-kbl4/igt@kms_flip@flip-vs-suspend-interruptible@a-dp1.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling:
- shard-tglb: NOTRUN -> [SKIP][92] ([i915#2587])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-tglb3/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-gtt:
- shard-glk: [PASS][93] -> [FAIL][94] ([i915#2546])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11277/shard-glk9/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-gtt.html
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-glk4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt:
- shard-tglb: NOTRUN -> [SKIP][95] ([fdo#109280] / [fdo#111825]) +56 similar issues
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-tglb6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt:
- shard-iclb: NOTRUN -> [SKIP][96] ([fdo#109280]) +30 similar issues
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-iclb5/igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-suspend:
- shard-glk: NOTRUN -> [SKIP][97] ([fdo#109271]) +72 similar issues
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-glk8/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html
* igt@kms_hdr@static-swap:
- shard-tglb: NOTRUN -> [SKIP][98] ([i915#1187])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-tglb7/igt@kms_hdr@static-swap.html
- shard-iclb: NOTRUN -> [SKIP][99] ([i915#1187])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-iclb3/igt@kms_hdr@static-swap.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-tglb: NOTRUN -> [SKIP][100] ([i915#1839])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-tglb7/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
- shard-iclb: NOTRUN -> [SKIP][101] ([i915#1839])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-iclb3/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-d:
- shard-glk: NOTRUN -> [SKIP][102] ([fdo#109271] / [i915#533])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-glk6/igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-d.html
- shard-kbl: NOTRUN -> [SKIP][103] ([fdo#109271] / [i915#533]) +1 similar issue
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-kbl7/igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-d.html
* igt@kms_plane_alpha_blend@pipe-a-alpha-transparent-fb:
- shard-apl: NOTRUN -> [FAIL][104] ([i915#265])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-apl1/igt@kms_plane_alpha_blend@pipe-a-alpha-transparent-fb.html
* igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb:
- shard-kbl: NOTRUN -> [FAIL][105] ([i915#265])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-kbl7/igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb.html
* igt@kms_plane_alpha_blend@pipe-c-alpha-7efc:
- shard-apl: NOTRUN -> [FAIL][106] ([fdo#108145] / [i915#265])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-apl2/igt@kms_plane_alpha_blend@pipe-c-alpha-7efc.html
* igt@kms_plane_alpha_blend@pipe-c-alpha-basic:
- shard-kbl: NOTRUN -> [FAIL][107] ([fdo#108145] / [i915#265]) +2 similar issues
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-kbl6/igt@kms_plane_alpha_blend@pipe-c-alpha-basic.html
* igt@kms_plane_lowres@pipe-a-tiling-x:
- shard-tglb: NOTRUN -> [SKIP][108] ([i915#3536])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-tglb3/igt@kms_plane_lowres@pipe-a-tiling-x.html
* igt@kms_plane_lowres@pipe-d-tiling-yf:
- shard-tglb: NOTRUN -> [SKIP][109] ([fdo#111615] / [fdo#112054])
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-tglb1/igt@kms_plane_lowres@pipe-d-tiling-yf.html
* igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area:
- shard-kbl: NOTRUN -> [SKIP][110] ([fdo#109271] / [i915#658]) +1 similar issue
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-kbl6/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html
* igt@kms_psr@psr2_cursor_render:
- shard-iclb: [PASS][111] -> [SKIP][112] ([fdo#109441]) +2 similar issues
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11277/shard-iclb2/igt@kms_psr@psr2_cursor_render.html
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-iclb5/igt@kms_psr@psr2_cursor_render.html
* igt@kms_psr@psr2_no_drrs:
- shard-iclb: NOTRUN -> [SKIP][113] ([fdo#109441]) +2 similar issues
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-iclb7/igt@kms_psr@psr2_no_drrs.html
* igt@kms_psr@psr2_sprite_render:
- shard-tglb: NOTRUN -> [FAIL][114] ([i915#132] / [i915#3467]) +3 similar issues
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-tglb7/igt@kms_psr@psr2_sprite_render.html
* igt@kms_vblank@pipe-a-ts-continuation-suspend:
- shard-kbl: NOTRUN -> [DMESG-WARN][115] ([i915#180] / [i915#295])
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-kbl6/igt@kms_vblank@pipe-a-ts-continuation-suspend.html
* igt@kms_vrr@flip-basic:
- shard-tglb: NOTRUN -> [SKIP][116] ([fdo#109502])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-tglb2/igt@kms_vrr@flip-basic.html
* igt@kms_writeback@writeback-fb-id:
- shard-kbl: NOTRUN -> [SKIP][117] ([fdo#109271] / [i915#2437]) +1 similar issue
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-kbl3/igt@kms_writeback@writeback-fb-id.html
* igt@kms_writeback@writeback-invalid-parameters:
- shard-tglb: NOTRUN -> [SKIP][118] ([i915#2437]) +1 similar issue
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-tglb7/igt@kms_writeback@writeback-invalid-parameters.html
* igt@kms_writeback@writeback-pixel-formats:
- shard-glk: NOTRUN -> [SKIP][119] ([fdo#109271] / [i915#2437])
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-glk1/igt@kms_writeback@writeback-pixel-formats.html
- shard-iclb: NOTRUN -> [SKIP][120] ([i915#2437])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-iclb6/igt@kms_writeback@writeback-pixel-formats.html
- shard-apl: NOTRUN -> [SKIP][121] ([fdo#109271] / [i915#2437])
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-apl7/igt@kms_writeback@writeback-pixel-formats.html
* igt@nouveau_crc@pipe-c-source-outp-complete:
- shard-tglb: NOTRUN -> [SKIP][122] ([i915#2530]) +6 similar issues
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-tglb1/igt@nouveau_crc@pipe-c-source-outp-complete.html
* igt@nouveau_crc@pipe-c-source-rg:
- shard-iclb: NOTRUN -> [SKIP][123] ([i915#2530]) +3 similar issues
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-iclb1/igt@nouveau_crc@pipe-c-source-rg.html
* igt@perf_pmu@event-wait@rcs0:
- shard-iclb: NOTRUN -> [SKIP][124] ([fdo#112283]) +1 similar issue
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-iclb1/igt@perf_pmu@event-wait@rcs0.html
* igt@prime_nv_pcopy@test3_2:
- shard-tglb: NOTRUN -> [SKIP][125] ([fdo#109291]) +4 similar issues
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/index.html
[-- Attachment #2: Type: text/html, Size: 33995 bytes --]
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [igt-dev] [PATCH i-g-t 1/2] lib/intel_allocator: Add safe alignment as a default
2022-02-24 20:50 ` Dixit, Ashutosh
@ 2022-02-25 7:04 ` Zbigniew Kempczyński
0 siblings, 0 replies; 14+ messages in thread
From: Zbigniew Kempczyński @ 2022-02-25 7:04 UTC (permalink / raw)
To: Dixit, Ashutosh; +Cc: igt-dev
On Thu, Feb 24, 2022 at 12:50:24PM -0800, Dixit, Ashutosh wrote:
> On Wed, 23 Feb 2022 23:54:14 -0800, Zbigniew Kempczyński wrote:
> >
> > diff --git a/lib/intel_allocator.c b/lib/intel_allocator.c
> > index eabff1f9a..340b88828 100644
> > --- a/lib/intel_allocator.c
> > +++ b/lib/intel_allocator.c
> > @@ -283,7 +283,8 @@ static bool __allocator_put(struct allocator *al)
> > static struct intel_allocator *intel_allocator_create(int fd,
> > uint64_t start, uint64_t end,
> > uint8_t allocator_type,
> > - uint8_t allocator_strategy)
> > + uint8_t allocator_strategy,
> > + uint64_t default_alignment)
> > {
> > struct intel_allocator *ial = NULL;
> >
> > @@ -321,6 +322,7 @@ static struct intel_allocator *intel_allocator_create(int fd,
> >
> > ial->type = allocator_type;
> > ial->strategy = allocator_strategy;
> > + ial->default_alignment = default_alignment;
>
> Isn't this a better place to set default_alignment to
> gem_detect_safe_alignment() rather than in __intel_allocator_open_full()
> below (though I understand they are roughly equivalent)?
No, default alignment which will be used in simple allocator should
be caller specific. If user doesn't care and it want to have safe
alignment it passes 0 as a requested default alignment. Then using
alloc() you can request specific alignment. I think place where
establishing default alignment is correct, we should evaluate this
in same place where we decide about start/end of vm space.
>
> > @@ -903,6 +920,9 @@ static uint64_t __intel_allocator_open_full(int fd, uint32_t ctx,
> > req.open.end = gtt_size;
> > }
> >
> > + if (!default_alignment)
> > + req.open.default_alignment = gem_detect_safe_alignment(fd);
> > +
>
> /snip/
>
> > @@ -948,20 +970,24 @@ static uint64_t __intel_allocator_open_full(int fd, uint32_t ctx,
> > uint64_t intel_allocator_open_full(int fd, uint32_t ctx,
> > uint64_t start, uint64_t end,
> > uint8_t allocator_type,
> > - enum allocator_strategy strategy)
> > + enum allocator_strategy strategy,
> > + uint64_t default_alignment)
>
> So we have added default_alignment to all these API's now and that does
> provide additional flexibility but I am wondering if the additional
> flexibility is really needed and will any IGT ever set default_alignment
> other than 0 (i.e. let allocator choose safe_alignment)? And also does
> having a different default_alignment improve test coverage in any way?
>
> In any case, this is:
>
> Reviewed-by: Ashutosh Dixit <ashutosh.dixit@intel.com>
We just started to handle discrete so I prefer to have this flexibility
than try to add this later if you don't mind.
Thank you for the review. I dare to commit as it is.
--
Zbigniew
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [igt-dev] [PATCH i-g-t 2/2] tests/api_intel_allocator: Add default-alignment test
2022-02-24 20:16 ` Dixit, Ashutosh
@ 2022-02-25 7:22 ` Zbigniew Kempczyński
0 siblings, 0 replies; 14+ messages in thread
From: Zbigniew Kempczyński @ 2022-02-25 7:22 UTC (permalink / raw)
To: Dixit, Ashutosh; +Cc: igt-dev
On Thu, Feb 24, 2022 at 12:16:38PM -0800, Dixit, Ashutosh wrote:
> On Wed, 23 Feb 2022 23:54:15 -0800, Zbigniew Kempczyński wrote:
> >
> > diff --git a/tests/i915/api_intel_allocator.c b/tests/i915/api_intel_allocator.c
> > index 7ae4a00b7..32d1aad70 100644
> > --- a/tests/i915/api_intel_allocator.c
> > +++ b/tests/i915/api_intel_allocator.c
> > @@ -120,6 +120,34 @@ static void reserve(int fd, uint8_t type)
> > igt_assert_eq(intel_allocator_close(ahnd), true);
> > }
> >
> > +static void default_alignment(int fd)
> > +{
> > + struct test_obj obj[3];
> > + uint64_t ahnd, default_alignment = 0x4000;
> > +
> > + ahnd = intel_allocator_open_full(fd, 0, 0, 0, INTEL_ALLOCATOR_SIMPLE,
> > + ALLOC_STRATEGY_LOW_TO_HIGH,
> > + default_alignment);
> > +
> > + for (int i = 0; i < ARRAY_SIZE(obj); i++) {
> > + obj[i].handle = gem_handle_gen();
> > + obj[i].offset = intel_allocator_alloc(ahnd, obj[i].handle, 4096,
> > + i == 2 ? 4096 : 0);
> > + igt_debug("obj[%d].offset: %llx, handle: %u\n", i,
> > + (long long) obj[i].offset, obj[i].handle);
> > + }
> > +
> > + igt_assert_eq(obj[1].offset - obj[0].offset, default_alignment);
>
> What would happen here if we had not specified default_alignment (i.e. let
> the allocator choose safe_alignment silently)? Do we need a
> "get_alignment()" API? Or clients know that the default default_alignment
> is safe_alignment?
>
> In any case, this patch is fine so:
>
> Reviewed-by: Ashutosh Dixit <ashutosh.dixit@intel.com>
I think caller shouldn't do any assumptions regarding default alignment
setting if it passes 0. At the moment I haven't seen any reason to
export this value - this is simple change and it can be done if someone
will require it.
Test above exercises possibility to explicitly set alignment we want
and objects will be placed according to our alignment requirements
in alloc(). BTW take a look to api_intel_allocator.c:reuse(). We use 0x40
as default alignment there.
Thanks for the review.
--
Zbigniew
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [igt-dev] ✗ Fi.CI.IGT: failure for Use safe alignment as a default (rev2)
2022-02-24 21:20 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
@ 2022-02-25 7:26 ` Zbigniew Kempczyński
2022-02-25 16:25 ` Vudum, Lakshminarayana
0 siblings, 1 reply; 14+ messages in thread
From: Zbigniew Kempczyński @ 2022-02-25 7:26 UTC (permalink / raw)
To: igt-dev; +Cc: Vudum, Lakshminarayana
On Thu, Feb 24, 2022 at 09:20:13PM +0000, Patchwork wrote:
> Patch Details
>
> Series: Use safe alignment as a default (rev2)
> URL: https://patchwork.freedesktop.org/series/100627/
> State: failure
> Details: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/index.html
>
> CI Bug Log - changes from CI_DRM_11277_full -> IGTPW_6696_full
>
> Summary
>
> FAILURE
>
> Serious unknown changes coming with IGTPW_6696_full absolutely need to be
> verified manually.
>
> If you think the reported changes have nothing to do with the changes
> introduced in IGTPW_6696_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_6696/index.html
>
> Participating hosts (11 -> 8)
>
> Missing (3): pig-skl-6260u pig-kbl-iris pig-glk-j5005
>
> Possible new issues
>
> Here are the unknown changes that may have been introduced in
> IGTPW_6696_full:
>
> IGT changes
>
> Possible regressions
>
> * igt@kms_plane_cursor@pipe-c-primary-size-256:
>
> * shard-iclb: PASS -> FAIL
>
> * shard-glk: PASS -> FAIL
Test doesn't have influence on above. Previous series completed properly
and v2 only does subtest rename.
--
Zbigniew
>
> New tests
>
> New tests have been introduced between CI_DRM_11277_full and
> IGTPW_6696_full:
>
> New IGT tests (1)
>
> * igt@api_intel_allocator@default-alignment:
> * Statuses : 6 pass(s)
> * Exec time: [0.0] s
>
> Known issues
>
> Here are the changes found in IGTPW_6696_full that come from known issues:
>
> IGT changes
>
> Issues hit
>
> * igt@gem_create@create-massive:
>
> * shard-apl: NOTRUN -> DMESG-WARN ([i915#4991])
> * igt@gem_ctx_isolation@preservation-s3@vcs0:
>
> * shard-kbl: PASS -> DMESG-WARN ([i915#180]) +1 similar issue
> * igt@gem_ctx_persistence@file:
>
> * shard-snb: NOTRUN -> SKIP ([fdo#109271] / [i915#1099])
> * igt@gem_exec_balancer@parallel:
>
> * shard-kbl: NOTRUN -> DMESG-WARN ([i915#5076])
> * igt@gem_exec_fair@basic-deadline:
>
> * shard-glk: PASS -> FAIL ([i915#2846])
> * igt@gem_exec_fair@basic-none-vip@rcs0:
>
> * shard-tglb: NOTRUN -> FAIL ([i915#2842])
> * igt@gem_exec_fair@basic-none@vcs0:
>
> * shard-kbl: PASS -> FAIL ([i915#2842]) +2 similar issues
> * igt@gem_exec_fair@basic-none@vecs0:
>
> * shard-apl: PASS -> FAIL ([i915#2842])
> * igt@gem_exec_fair@basic-pace-solo@rcs0:
>
> * shard-kbl: NOTRUN -> FAIL ([i915#2842])
> * igt@gem_exec_fair@basic-throttle@rcs0:
>
> * shard-iclb: PASS -> FAIL ([i915#2849])
> * igt@gem_exec_flush@basic-batch-kernel-default-cmd:
>
> * shard-snb: NOTRUN -> SKIP ([fdo#109271]) +106 similar issues
>
> * shard-iclb: NOTRUN -> SKIP ([fdo#109313])
>
> * shard-tglb: NOTRUN -> SKIP ([fdo#109313])
>
> * igt@gem_exec_params@no-blt:
>
> * shard-tglb: NOTRUN -> SKIP ([fdo#109283])
> * igt@gem_exec_params@secure-non-root:
>
> * shard-tglb: NOTRUN -> SKIP ([fdo#112283]) +1 similar issue
> * igt@gem_huc_copy@huc-copy:
>
> * shard-apl: NOTRUN -> SKIP ([fdo#109271] / [i915#2190])
>
> * shard-glk: NOTRUN -> SKIP ([fdo#109271] / [i915#2190])
>
> * igt@gem_lmem_swapping@heavy-random:
>
> * shard-apl: NOTRUN -> SKIP ([fdo#109271] / [i915#4613])
> * igt@gem_lmem_swapping@parallel-random:
>
> * shard-iclb: NOTRUN -> SKIP ([i915#4613])
>
> * shard-kbl: NOTRUN -> SKIP ([fdo#109271] / [i915#4613]) +1 similar
> issue
>
> * igt@gem_lmem_swapping@parallel-random-verify:
>
> * shard-tglb: NOTRUN -> SKIP ([i915#4613]) +1 similar issue
>
> * shard-glk: NOTRUN -> SKIP ([fdo#109271] / [i915#4613])
>
> * igt@gem_pread@exhaustion:
>
> * shard-tglb: NOTRUN -> WARN ([i915#2658])
>
> * shard-iclb: NOTRUN -> WARN ([i915#2658])
>
> * shard-kbl: NOTRUN -> WARN ([i915#2658])
>
> * igt@gem_pxp@protected-encrypted-src-copy-not-readible:
>
> * shard-tglb: NOTRUN -> SKIP ([i915#4270]) +4 similar issues
> * igt@gem_pxp@verify-pxp-stale-ctx-execution:
>
> * shard-iclb: NOTRUN -> SKIP ([i915#4270]) +2 similar issues
> * igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled:
>
> * shard-iclb: NOTRUN -> SKIP ([i915#768]) +2 similar issues
> * igt@gen7_exec_parse@oacontrol-tracking:
>
> * shard-iclb: NOTRUN -> SKIP ([fdo#109289]) +1 similar issue
>
> * shard-tglb: NOTRUN -> SKIP ([fdo#109289]) +2 similar issues
>
> * igt@gen9_exec_parse@basic-rejected:
>
> * shard-iclb: NOTRUN -> SKIP ([i915#2856]) +1 similar issue
> * igt@gen9_exec_parse@basic-rejected-ctx-param:
>
> * shard-tglb: NOTRUN -> SKIP ([i915#2527] / [i915#2856]) +1 similar
> issue
> * igt@i915_pm_dc@dc6-dpms:
>
> * shard-kbl: NOTRUN -> FAIL ([i915#454])
>
> * shard-tglb: NOTRUN -> FAIL ([i915#454])
>
> * igt@i915_pm_rc6_residency@rc6-idle:
>
> * shard-tglb: NOTRUN -> WARN ([i915#2681] / [i915#2684])
> * igt@i915_pm_rpm@dpms-non-lpsp:
>
> * shard-tglb: NOTRUN -> SKIP ([fdo#111644] / [i915#1397] /
> [i915#2411])
>
> * shard-iclb: NOTRUN -> SKIP ([fdo#110892])
>
> * igt@i915_query@query-topology-known-pci-ids:
>
> * shard-tglb: NOTRUN -> SKIP ([fdo#109303])
> * igt@kms_atomic@atomic_plane_damage:
>
> * shard-iclb: NOTRUN -> SKIP ([i915#4765])
> * igt@kms_big_fb@linear-16bpp-rotate-270:
>
> * shard-tglb: NOTRUN -> SKIP ([fdo#111614]) +3 similar issues
> * igt@kms_big_fb@x-tiled-16bpp-rotate-270:
>
> * shard-iclb: NOTRUN -> SKIP ([fdo#110725] / [fdo#111614]) +2
> similar issues
> * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
>
> * shard-kbl: NOTRUN -> SKIP ([fdo#109271] / [i915#3777]) +7 similar
> issues
> * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip:
>
> * shard-glk: NOTRUN -> SKIP ([fdo#109271] / [i915#3777])
> * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
>
> * shard-apl: NOTRUN -> SKIP ([fdo#109271] / [i915#3777])
> * igt@kms_big_fb@yf-tiled-32bpp-rotate-270:
>
> * shard-tglb: NOTRUN -> SKIP ([fdo#111615]) +3 similar issues
> * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0:
>
> * shard-apl: NOTRUN -> SKIP ([fdo#109271]) +148 similar issues
> * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip:
>
> * shard-iclb: NOTRUN -> SKIP ([fdo#110723])
> * igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_ccs:
>
> * shard-tglb: NOTRUN -> SKIP ([i915#3689]) +5 similar issues
> * igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_mc_ccs:
>
> * shard-apl: NOTRUN -> SKIP ([fdo#109271] / [i915#3886]) +8 similar
> issues
> * igt@kms_ccs@pipe-b-crc-primary-basic-y_tiled_gen12_mc_ccs:
>
> * shard-kbl: NOTRUN -> SKIP ([fdo#109271] / [i915#3886]) +16
> similar issues
> * igt@kms_ccs@pipe-b-crc-primary-basic-yf_tiled_ccs:
>
> * shard-tglb: NOTRUN -> SKIP ([fdo#111615] / [i915#3689]) +7
> similar issues
> * igt@kms_ccs@pipe-b-crc-primary-rotation-180-y_tiled_gen12_mc_ccs:
>
> * shard-glk: NOTRUN -> SKIP ([fdo#109271] / [i915#3886]) +5 similar
> issues
> * igt@kms_ccs@pipe-c-crc-primary-rotation-180-y_tiled_gen12_rc_ccs_cc:
>
> * shard-iclb: NOTRUN -> SKIP ([fdo#109278] / [i915#3886]) +5
> similar issues
> * igt@kms_ccs@pipe-c-random-ccs-data-y_tiled_gen12_mc_ccs:
>
> * shard-tglb: NOTRUN -> SKIP ([i915#3689] / [i915#3886]) +4 similar
> issues
> * igt@kms_cdclk@mode-transition:
>
> * shard-tglb: NOTRUN -> SKIP ([i915#3742])
> * igt@kms_chamelium@hdmi-aspect-ratio:
>
> * shard-glk: NOTRUN -> SKIP ([fdo#109271] / [fdo#111827]) +7
> similar issues
> * igt@kms_color@pipe-d-degamma:
>
> * shard-iclb: NOTRUN -> SKIP ([fdo#109278] / [i915#1149])
> * igt@kms_color_chamelium@pipe-a-ctm-blue-to-red:
>
> * shard-kbl: NOTRUN -> SKIP ([fdo#109271] / [fdo#111827]) +27
> similar issues
> * igt@kms_color_chamelium@pipe-a-ctm-negative:
>
> * shard-snb: NOTRUN -> SKIP ([fdo#109271] / [fdo#111827]) +5
> similar issues
> * igt@kms_color_chamelium@pipe-b-ctm-0-75:
>
> * shard-tglb: NOTRUN -> SKIP ([fdo#109284] / [fdo#111827]) +15
> similar issues
> * igt@kms_color_chamelium@pipe-b-ctm-red-to-blue:
>
> * shard-iclb: NOTRUN -> SKIP ([fdo#109284] / [fdo#111827]) +10
> similar issues
> * igt@kms_color_chamelium@pipe-c-ctm-0-25:
>
> * shard-apl: NOTRUN -> SKIP ([fdo#109271] / [fdo#111827]) +10
> similar issues
> * igt@kms_color_chamelium@pipe-d-ctm-max:
>
> * shard-iclb: NOTRUN -> SKIP ([fdo#109278] / [fdo#109284] /
> [fdo#111827]) +1 similar issue
> * igt@kms_content_protection@dp-mst-type-0:
>
> * shard-tglb: NOTRUN -> SKIP ([i915#3116] / [i915#3299])
> * igt@kms_cursor_crc@pipe-a-cursor-512x170-offscreen:
>
> * shard-iclb: NOTRUN -> SKIP ([fdo#109278] / [fdo#109279]) +1
> similar issue
> * igt@kms_cursor_crc@pipe-b-cursor-32x32-onscreen:
>
> * shard-tglb: NOTRUN -> SKIP ([i915#3319]) +5 similar issues
> * igt@kms_cursor_crc@pipe-c-cursor-512x170-onscreen:
>
> * shard-tglb: NOTRUN -> SKIP ([fdo#109279] / [i915#3359]) +2
> similar issues
> * igt@kms_cursor_crc@pipe-d-cursor-256x256-onscreen:
>
> * shard-kbl: NOTRUN -> SKIP ([fdo#109271]) +312 similar issues
> * igt@kms_cursor_crc@pipe-d-cursor-512x170-rapid-movement:
>
> * shard-tglb: NOTRUN -> SKIP ([i915#3359]) +8 similar issues
> * igt@kms_cursor_edge_walk@pipe-d-128x128-top-edge:
>
> * shard-iclb: NOTRUN -> SKIP ([fdo#109278]) +33 similar issues
> * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
>
> * shard-tglb: NOTRUN -> SKIP ([i915#4103]) +1 similar issue
> * igt@kms_cursor_legacy@cursor-vs-flip-toggle:
>
> * shard-iclb: NOTRUN -> FAIL ([i915#5072])
> * igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
>
> * shard-iclb: NOTRUN -> SKIP ([fdo#109274] / [fdo#109278]) +1
> similar issue
> * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic:
>
> * shard-tglb: NOTRUN -> SKIP ([fdo#109274] / [fdo#111825]) +14
> similar issues
> * igt@kms_dither@fb-8bpc-vs-panel-8bpc@edp-1-pipe-a:
>
> * shard-tglb: NOTRUN -> SKIP ([i915#3788])
> * igt@kms_dp_tiled_display@basic-test-pattern:
>
> * shard-iclb: NOTRUN -> SKIP ([i915#426])
>
> * shard-tglb: NOTRUN -> SKIP ([i915#426])
>
> * igt@kms_dsc@xrgb8888-dsc-compression:
>
> * shard-tglb: NOTRUN -> SKIP ([i915#3828])
> * igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a1-hdmi-a2:
>
> * shard-glk: PASS -> FAIL ([i915#79])
> * igt@kms_flip@2x-modeset-vs-vblank-race-interruptible:
>
> * shard-iclb: NOTRUN -> SKIP ([fdo#109274]) +6 similar issues
> * igt@kms_flip@flip-vs-suspend-interruptible@a-dp1:
>
> * shard-kbl: NOTRUN -> DMESG-WARN ([i915#180]) +4 similar issues
> * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling:
>
> * shard-tglb: NOTRUN -> SKIP ([i915#2587])
> * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-gtt:
>
> * shard-glk: PASS -> FAIL ([i915#2546])
> * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt:
>
> * shard-tglb: NOTRUN -> SKIP ([fdo#109280] / [fdo#111825]) +56
> similar issues
> * igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt:
>
> * shard-iclb: NOTRUN -> SKIP ([fdo#109280]) +30 similar issues
> * igt@kms_frontbuffer_tracking@fbcpsr-suspend:
>
> * shard-glk: NOTRUN -> SKIP ([fdo#109271]) +72 similar issues
> * igt@kms_hdr@static-swap:
>
> * shard-tglb: NOTRUN -> SKIP ([i915#1187])
>
> * shard-iclb: NOTRUN -> SKIP ([i915#1187])
>
> * igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
>
> * shard-tglb: NOTRUN -> SKIP ([i915#1839])
>
> * shard-iclb: NOTRUN -> SKIP ([i915#1839])
>
> * igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-d:
>
> * shard-glk: NOTRUN -> SKIP ([fdo#109271] / [i915#533])
>
> * shard-kbl: NOTRUN -> SKIP ([fdo#109271] / [i915#533]) +1 similar
> issue
>
> * igt@kms_plane_alpha_blend@pipe-a-alpha-transparent-fb:
>
> * shard-apl: NOTRUN -> FAIL ([i915#265])
> * igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb:
>
> * shard-kbl: NOTRUN -> FAIL ([i915#265])
> * igt@kms_plane_alpha_blend@pipe-c-alpha-7efc:
>
> * shard-apl: NOTRUN -> FAIL ([fdo#108145] / [i915#265])
> * igt@kms_plane_alpha_blend@pipe-c-alpha-basic:
>
> * shard-kbl: NOTRUN -> FAIL ([fdo#108145] / [i915#265]) +2 similar
> issues
> * igt@kms_plane_lowres@pipe-a-tiling-x:
>
> * shard-tglb: NOTRUN -> SKIP ([i915#3536])
> * igt@kms_plane_lowres@pipe-d-tiling-yf:
>
> * shard-tglb: NOTRUN -> SKIP ([fdo#111615] / [fdo#112054])
> * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area:
>
> * shard-kbl: NOTRUN -> SKIP ([fdo#109271] / [i915#658]) +1 similar
> issue
> * igt@kms_psr@psr2_cursor_render:
>
> * shard-iclb: PASS -> SKIP ([fdo#109441]) +2 similar issues
> * igt@kms_psr@psr2_no_drrs:
>
> * shard-iclb: NOTRUN -> SKIP ([fdo#109441]) +2 similar issues
> * igt@kms_psr@psr2_sprite_render:
>
> * shard-tglb: NOTRUN -> FAIL ([i915#132] / [i915#3467]) +3 similar
> issues
> * igt@kms_vblank@pipe-a-ts-continuation-suspend:
>
> * shard-kbl: NOTRUN -> DMESG-WARN ([i915#180] / [i915#295])
> * igt@kms_vrr@flip-basic:
>
> * shard-tglb: NOTRUN -> SKIP ([fdo#109502])
> * igt@kms_writeback@writeback-fb-id:
>
> * shard-kbl: NOTRUN -> SKIP ([fdo#109271] / [i915#2437]) +1 similar
> issue
> * igt@kms_writeback@writeback-invalid-parameters:
>
> * shard-tglb: NOTRUN -> SKIP ([i915#2437]) +1 similar issue
> * igt@kms_writeback@writeback-pixel-formats:
>
> * shard-glk: NOTRUN -> SKIP ([fdo#109271] / [i915#2437])
>
> * shard-iclb: NOTRUN -> SKIP ([i915#2437])
>
> * shard-apl: NOTRUN -> SKIP ([fdo#109271] / [i915#2437])
>
> * igt@nouveau_crc@pipe-c-source-outp-complete:
>
> * shard-tglb: NOTRUN -> SKIP ([i915#2530]) +6 similar issues
> * igt@nouveau_crc@pipe-c-source-rg:
>
> * shard-iclb: NOTRUN -> SKIP ([i915#2530]) +3 similar issues
> * igt@perf_pmu@event-wait@rcs0:
>
> * shard-iclb: NOTRUN -> SKIP ([fdo#112283]) +1 similar issue
> * igt@prime_nv_pcopy@test3_2:
>
> * shard-tglb: NOTRUN -> [SKIP][125] ([fdo#109291]) +4 similar
> issues
^ permalink raw reply [flat|nested] 14+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for Use safe alignment as a default (rev2)
2022-02-24 7:54 [igt-dev] [PATCH i-g-t 0/2] Use safe alignment as a default Zbigniew Kempczyński
` (3 preceding siblings ...)
2022-02-24 21:20 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
@ 2022-02-25 15:41 ` Patchwork
2022-02-25 16:04 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork
5 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2022-02-25 15:41 UTC (permalink / raw)
To: Zbigniew Kempczyński; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 30255 bytes --]
== Series Details ==
Series: Use safe alignment as a default (rev2)
URL : https://patchwork.freedesktop.org/series/100627/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_11277_full -> IGTPW_6696_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_6696_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_6696_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_6696/index.html
Participating hosts (11 -> 8)
------------------------------
Missing (3): pig-skl-6260u pig-kbl-iris pig-glk-j5005
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_6696_full:
### IGT changes ###
#### Possible regressions ####
* igt@kms_plane_cursor@pipe-c-primary-size-256:
- shard-iclb: [PASS][1] -> [FAIL][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11277/shard-iclb4/igt@kms_plane_cursor@pipe-c-primary-size-256.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-iclb8/igt@kms_plane_cursor@pipe-c-primary-size-256.html
New tests
---------
New tests have been introduced between CI_DRM_11277_full and IGTPW_6696_full:
### New IGT tests (1) ###
* igt@api_intel_allocator@default-alignment:
- Statuses : 6 pass(s)
- Exec time: [0.0] s
Known issues
------------
Here are the changes found in IGTPW_6696_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_create@create-massive:
- shard-apl: NOTRUN -> [DMESG-WARN][3] ([i915#4991])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-apl8/igt@gem_create@create-massive.html
* igt@gem_ctx_isolation@preservation-s3@vcs0:
- shard-kbl: [PASS][4] -> [DMESG-WARN][5] ([i915#180]) +1 similar issue
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11277/shard-kbl1/igt@gem_ctx_isolation@preservation-s3@vcs0.html
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-kbl7/igt@gem_ctx_isolation@preservation-s3@vcs0.html
* igt@gem_ctx_persistence@file:
- shard-snb: NOTRUN -> [SKIP][6] ([fdo#109271] / [i915#1099])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-snb7/igt@gem_ctx_persistence@file.html
* igt@gem_exec_balancer@parallel:
- shard-kbl: NOTRUN -> [DMESG-WARN][7] ([i915#5076])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-kbl3/igt@gem_exec_balancer@parallel.html
* igt@gem_exec_fair@basic-deadline:
- shard-glk: [PASS][8] -> [FAIL][9] ([i915#2846])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11277/shard-glk2/igt@gem_exec_fair@basic-deadline.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-glk7/igt@gem_exec_fair@basic-deadline.html
* igt@gem_exec_fair@basic-none-vip@rcs0:
- shard-tglb: NOTRUN -> [FAIL][10] ([i915#2842])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-tglb2/igt@gem_exec_fair@basic-none-vip@rcs0.html
* igt@gem_exec_fair@basic-none@vcs0:
- shard-kbl: [PASS][11] -> [FAIL][12] ([i915#2842]) +2 similar issues
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11277/shard-kbl3/igt@gem_exec_fair@basic-none@vcs0.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-kbl7/igt@gem_exec_fair@basic-none@vcs0.html
* igt@gem_exec_fair@basic-none@vecs0:
- shard-apl: [PASS][13] -> [FAIL][14] ([i915#2842])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11277/shard-apl4/igt@gem_exec_fair@basic-none@vecs0.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-apl7/igt@gem_exec_fair@basic-none@vecs0.html
* igt@gem_exec_fair@basic-pace-solo@rcs0:
- shard-kbl: NOTRUN -> [FAIL][15] ([i915#2842])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-kbl6/igt@gem_exec_fair@basic-pace-solo@rcs0.html
* igt@gem_exec_fair@basic-throttle@rcs0:
- shard-iclb: [PASS][16] -> [FAIL][17] ([i915#2849])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11277/shard-iclb7/igt@gem_exec_fair@basic-throttle@rcs0.html
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-iclb8/igt@gem_exec_fair@basic-throttle@rcs0.html
* igt@gem_exec_flush@basic-batch-kernel-default-cmd:
- shard-snb: NOTRUN -> [SKIP][18] ([fdo#109271]) +106 similar issues
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-snb4/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html
- shard-iclb: NOTRUN -> [SKIP][19] ([fdo#109313])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-iclb2/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html
- shard-tglb: NOTRUN -> [SKIP][20] ([fdo#109313])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-tglb1/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html
* igt@gem_exec_params@no-blt:
- shard-tglb: NOTRUN -> [SKIP][21] ([fdo#109283])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-tglb3/igt@gem_exec_params@no-blt.html
* igt@gem_exec_params@secure-non-root:
- shard-tglb: NOTRUN -> [SKIP][22] ([fdo#112283]) +1 similar issue
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-tglb5/igt@gem_exec_params@secure-non-root.html
* igt@gem_huc_copy@huc-copy:
- shard-apl: NOTRUN -> [SKIP][23] ([fdo#109271] / [i915#2190])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-apl6/igt@gem_huc_copy@huc-copy.html
- shard-glk: NOTRUN -> [SKIP][24] ([fdo#109271] / [i915#2190])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-glk5/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@heavy-random:
- shard-apl: NOTRUN -> [SKIP][25] ([fdo#109271] / [i915#4613])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-apl7/igt@gem_lmem_swapping@heavy-random.html
* igt@gem_lmem_swapping@parallel-random:
- shard-iclb: NOTRUN -> [SKIP][26] ([i915#4613])
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-iclb1/igt@gem_lmem_swapping@parallel-random.html
- shard-kbl: NOTRUN -> [SKIP][27] ([fdo#109271] / [i915#4613]) +1 similar issue
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-kbl4/igt@gem_lmem_swapping@parallel-random.html
* igt@gem_lmem_swapping@parallel-random-verify:
- shard-tglb: NOTRUN -> [SKIP][28] ([i915#4613]) +1 similar issue
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-tglb7/igt@gem_lmem_swapping@parallel-random-verify.html
- shard-glk: NOTRUN -> [SKIP][29] ([fdo#109271] / [i915#4613])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-glk2/igt@gem_lmem_swapping@parallel-random-verify.html
* igt@gem_pread@exhaustion:
- shard-tglb: NOTRUN -> [WARN][30] ([i915#2658])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-tglb6/igt@gem_pread@exhaustion.html
- shard-iclb: NOTRUN -> [WARN][31] ([i915#2658])
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-iclb3/igt@gem_pread@exhaustion.html
- shard-kbl: NOTRUN -> [WARN][32] ([i915#2658])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-kbl7/igt@gem_pread@exhaustion.html
* igt@gem_pxp@protected-encrypted-src-copy-not-readible:
- shard-tglb: NOTRUN -> [SKIP][33] ([i915#4270]) +4 similar issues
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-tglb2/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html
* igt@gem_pxp@verify-pxp-stale-ctx-execution:
- shard-iclb: NOTRUN -> [SKIP][34] ([i915#4270]) +2 similar issues
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-iclb7/igt@gem_pxp@verify-pxp-stale-ctx-execution.html
* igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled:
- shard-iclb: NOTRUN -> [SKIP][35] ([i915#768]) +2 similar issues
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-iclb8/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled.html
* igt@gen7_exec_parse@oacontrol-tracking:
- shard-iclb: NOTRUN -> [SKIP][36] ([fdo#109289]) +1 similar issue
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-iclb4/igt@gen7_exec_parse@oacontrol-tracking.html
- shard-tglb: NOTRUN -> [SKIP][37] ([fdo#109289]) +2 similar issues
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-tglb2/igt@gen7_exec_parse@oacontrol-tracking.html
* igt@gen9_exec_parse@basic-rejected:
- shard-iclb: NOTRUN -> [SKIP][38] ([i915#2856]) +1 similar issue
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-iclb5/igt@gen9_exec_parse@basic-rejected.html
* igt@gen9_exec_parse@basic-rejected-ctx-param:
- shard-tglb: NOTRUN -> [SKIP][39] ([i915#2527] / [i915#2856]) +1 similar issue
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-tglb1/igt@gen9_exec_parse@basic-rejected-ctx-param.html
* igt@i915_pm_dc@dc6-dpms:
- shard-kbl: NOTRUN -> [FAIL][40] ([i915#454])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-kbl1/igt@i915_pm_dc@dc6-dpms.html
- shard-tglb: NOTRUN -> [FAIL][41] ([i915#454])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-tglb2/igt@i915_pm_dc@dc6-dpms.html
* igt@i915_pm_rc6_residency@rc6-idle:
- shard-tglb: NOTRUN -> [WARN][42] ([i915#2681] / [i915#2684])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-tglb3/igt@i915_pm_rc6_residency@rc6-idle.html
* igt@i915_pm_rpm@dpms-non-lpsp:
- shard-tglb: NOTRUN -> [SKIP][43] ([fdo#111644] / [i915#1397] / [i915#2411])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-tglb2/igt@i915_pm_rpm@dpms-non-lpsp.html
- shard-iclb: NOTRUN -> [SKIP][44] ([fdo#110892])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-iclb1/igt@i915_pm_rpm@dpms-non-lpsp.html
* igt@i915_query@query-topology-known-pci-ids:
- shard-tglb: NOTRUN -> [SKIP][45] ([fdo#109303])
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-tglb5/igt@i915_query@query-topology-known-pci-ids.html
* igt@kms_atomic@atomic_plane_damage:
- shard-iclb: NOTRUN -> [SKIP][46] ([i915#4765])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-iclb5/igt@kms_atomic@atomic_plane_damage.html
* igt@kms_big_fb@linear-16bpp-rotate-270:
- shard-tglb: NOTRUN -> [SKIP][47] ([fdo#111614]) +3 similar issues
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-tglb3/igt@kms_big_fb@linear-16bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-270:
- shard-iclb: NOTRUN -> [SKIP][48] ([fdo#110725] / [fdo#111614]) +2 similar issues
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-iclb6/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-kbl: NOTRUN -> [SKIP][49] ([fdo#109271] / [i915#3777]) +7 similar issues
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-kbl7/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip:
- shard-glk: NOTRUN -> [SKIP][50] ([fdo#109271] / [i915#3777])
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-glk7/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
- shard-apl: NOTRUN -> [SKIP][51] ([fdo#109271] / [i915#3777])
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-apl8/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-270:
- shard-tglb: NOTRUN -> [SKIP][52] ([fdo#111615]) +3 similar issues
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-tglb3/igt@kms_big_fb@yf-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0:
- shard-apl: NOTRUN -> [SKIP][53] ([fdo#109271]) +148 similar issues
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-apl7/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-iclb: NOTRUN -> [SKIP][54] ([fdo#110723])
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-iclb5/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_ccs:
- shard-tglb: NOTRUN -> [SKIP][55] ([i915#3689]) +5 similar issues
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-tglb6/igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_ccs.html
* igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_mc_ccs:
- shard-apl: NOTRUN -> [SKIP][56] ([fdo#109271] / [i915#3886]) +8 similar issues
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-apl6/igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-b-crc-primary-basic-y_tiled_gen12_mc_ccs:
- shard-kbl: NOTRUN -> [SKIP][57] ([fdo#109271] / [i915#3886]) +16 similar issues
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-kbl4/igt@kms_ccs@pipe-b-crc-primary-basic-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-b-crc-primary-basic-yf_tiled_ccs:
- shard-tglb: NOTRUN -> [SKIP][58] ([fdo#111615] / [i915#3689]) +7 similar issues
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-tglb1/igt@kms_ccs@pipe-b-crc-primary-basic-yf_tiled_ccs.html
* igt@kms_ccs@pipe-b-crc-primary-rotation-180-y_tiled_gen12_mc_ccs:
- shard-glk: NOTRUN -> [SKIP][59] ([fdo#109271] / [i915#3886]) +5 similar issues
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-glk1/igt@kms_ccs@pipe-b-crc-primary-rotation-180-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-c-crc-primary-rotation-180-y_tiled_gen12_rc_ccs_cc:
- shard-iclb: NOTRUN -> [SKIP][60] ([fdo#109278] / [i915#3886]) +5 similar issues
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-iclb7/igt@kms_ccs@pipe-c-crc-primary-rotation-180-y_tiled_gen12_rc_ccs_cc.html
* igt@kms_ccs@pipe-c-random-ccs-data-y_tiled_gen12_mc_ccs:
- shard-tglb: NOTRUN -> [SKIP][61] ([i915#3689] / [i915#3886]) +4 similar issues
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-tglb5/igt@kms_ccs@pipe-c-random-ccs-data-y_tiled_gen12_mc_ccs.html
* igt@kms_cdclk@mode-transition:
- shard-tglb: NOTRUN -> [SKIP][62] ([i915#3742])
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-tglb5/igt@kms_cdclk@mode-transition.html
* igt@kms_chamelium@hdmi-aspect-ratio:
- shard-glk: NOTRUN -> [SKIP][63] ([fdo#109271] / [fdo#111827]) +7 similar issues
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-glk9/igt@kms_chamelium@hdmi-aspect-ratio.html
* igt@kms_color@pipe-d-degamma:
- shard-iclb: NOTRUN -> [SKIP][64] ([fdo#109278] / [i915#1149])
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-iclb5/igt@kms_color@pipe-d-degamma.html
* igt@kms_color_chamelium@pipe-a-ctm-blue-to-red:
- shard-kbl: NOTRUN -> [SKIP][65] ([fdo#109271] / [fdo#111827]) +27 similar issues
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-kbl4/igt@kms_color_chamelium@pipe-a-ctm-blue-to-red.html
* igt@kms_color_chamelium@pipe-a-ctm-negative:
- shard-snb: NOTRUN -> [SKIP][66] ([fdo#109271] / [fdo#111827]) +5 similar issues
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-snb5/igt@kms_color_chamelium@pipe-a-ctm-negative.html
* igt@kms_color_chamelium@pipe-b-ctm-0-75:
- shard-tglb: NOTRUN -> [SKIP][67] ([fdo#109284] / [fdo#111827]) +15 similar issues
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-tglb5/igt@kms_color_chamelium@pipe-b-ctm-0-75.html
* igt@kms_color_chamelium@pipe-b-ctm-red-to-blue:
- shard-iclb: NOTRUN -> [SKIP][68] ([fdo#109284] / [fdo#111827]) +10 similar issues
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-iclb4/igt@kms_color_chamelium@pipe-b-ctm-red-to-blue.html
* igt@kms_color_chamelium@pipe-c-ctm-0-25:
- shard-apl: NOTRUN -> [SKIP][69] ([fdo#109271] / [fdo#111827]) +10 similar issues
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-apl8/igt@kms_color_chamelium@pipe-c-ctm-0-25.html
* igt@kms_color_chamelium@pipe-d-ctm-max:
- shard-iclb: NOTRUN -> [SKIP][70] ([fdo#109278] / [fdo#109284] / [fdo#111827]) +1 similar issue
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-iclb8/igt@kms_color_chamelium@pipe-d-ctm-max.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-tglb: NOTRUN -> [SKIP][71] ([i915#3116] / [i915#3299])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-tglb3/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_cursor_crc@pipe-a-cursor-512x170-offscreen:
- shard-iclb: NOTRUN -> [SKIP][72] ([fdo#109278] / [fdo#109279]) +1 similar issue
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-iclb4/igt@kms_cursor_crc@pipe-a-cursor-512x170-offscreen.html
* igt@kms_cursor_crc@pipe-b-cursor-32x32-onscreen:
- shard-tglb: NOTRUN -> [SKIP][73] ([i915#3319]) +5 similar issues
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-tglb7/igt@kms_cursor_crc@pipe-b-cursor-32x32-onscreen.html
* igt@kms_cursor_crc@pipe-c-cursor-512x170-onscreen:
- shard-tglb: NOTRUN -> [SKIP][74] ([fdo#109279] / [i915#3359]) +2 similar issues
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-tglb7/igt@kms_cursor_crc@pipe-c-cursor-512x170-onscreen.html
* igt@kms_cursor_crc@pipe-d-cursor-256x256-onscreen:
- shard-kbl: NOTRUN -> [SKIP][75] ([fdo#109271]) +312 similar issues
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-kbl7/igt@kms_cursor_crc@pipe-d-cursor-256x256-onscreen.html
* igt@kms_cursor_crc@pipe-d-cursor-512x170-rapid-movement:
- shard-tglb: NOTRUN -> [SKIP][76] ([i915#3359]) +8 similar issues
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-tglb2/igt@kms_cursor_crc@pipe-d-cursor-512x170-rapid-movement.html
* igt@kms_cursor_edge_walk@pipe-d-128x128-top-edge:
- shard-iclb: NOTRUN -> [SKIP][77] ([fdo#109278]) +33 similar issues
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-iclb2/igt@kms_cursor_edge_walk@pipe-d-128x128-top-edge.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-tglb: NOTRUN -> [SKIP][78] ([i915#4103]) +1 similar issue
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-tglb1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@cursor-vs-flip-toggle:
- shard-iclb: NOTRUN -> [FAIL][79] ([i915#5072])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-iclb7/igt@kms_cursor_legacy@cursor-vs-flip-toggle.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
- shard-iclb: NOTRUN -> [SKIP][80] ([fdo#109274] / [fdo#109278]) +1 similar issue
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-iclb5/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic:
- shard-tglb: NOTRUN -> [SKIP][81] ([fdo#109274] / [fdo#111825]) +14 similar issues
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-tglb6/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html
* igt@kms_dither@fb-8bpc-vs-panel-8bpc@edp-1-pipe-a:
- shard-tglb: NOTRUN -> [SKIP][82] ([i915#3788])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-tglb5/igt@kms_dither@fb-8bpc-vs-panel-8bpc@edp-1-pipe-a.html
* igt@kms_dp_tiled_display@basic-test-pattern:
- shard-iclb: NOTRUN -> [SKIP][83] ([i915#426])
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-iclb2/igt@kms_dp_tiled_display@basic-test-pattern.html
- shard-tglb: NOTRUN -> [SKIP][84] ([i915#426])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-tglb5/igt@kms_dp_tiled_display@basic-test-pattern.html
* igt@kms_dsc@xrgb8888-dsc-compression:
- shard-tglb: NOTRUN -> [SKIP][85] ([i915#3828])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-tglb1/igt@kms_dsc@xrgb8888-dsc-compression.html
* igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a1-hdmi-a2:
- shard-glk: [PASS][86] -> [FAIL][87] ([i915#79])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11277/shard-glk1/igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a1-hdmi-a2.html
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-glk3/igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a1-hdmi-a2.html
* igt@kms_flip@2x-modeset-vs-vblank-race-interruptible:
- shard-iclb: NOTRUN -> [SKIP][88] ([fdo#109274]) +6 similar issues
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-iclb4/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible.html
* igt@kms_flip@flip-vs-suspend-interruptible@a-dp1:
- shard-kbl: NOTRUN -> [DMESG-WARN][89] ([i915#180]) +4 similar issues
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-kbl4/igt@kms_flip@flip-vs-suspend-interruptible@a-dp1.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling:
- shard-tglb: NOTRUN -> [SKIP][90] ([i915#2587])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-tglb3/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-gtt:
- shard-glk: [PASS][91] -> [FAIL][92] ([i915#2546])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11277/shard-glk9/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-gtt.html
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-glk4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt:
- shard-tglb: NOTRUN -> [SKIP][93] ([fdo#109280] / [fdo#111825]) +56 similar issues
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-tglb6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt:
- shard-iclb: NOTRUN -> [SKIP][94] ([fdo#109280]) +30 similar issues
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-iclb5/igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-suspend:
- shard-glk: NOTRUN -> [SKIP][95] ([fdo#109271]) +72 similar issues
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-glk8/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html
* igt@kms_hdr@static-swap:
- shard-tglb: NOTRUN -> [SKIP][96] ([i915#1187])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-tglb7/igt@kms_hdr@static-swap.html
- shard-iclb: NOTRUN -> [SKIP][97] ([i915#1187])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-iclb3/igt@kms_hdr@static-swap.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-tglb: NOTRUN -> [SKIP][98] ([i915#1839])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-tglb7/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
- shard-iclb: NOTRUN -> [SKIP][99] ([i915#1839])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-iclb3/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-d:
- shard-glk: NOTRUN -> [SKIP][100] ([fdo#109271] / [i915#533])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-glk6/igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-d.html
- shard-kbl: NOTRUN -> [SKIP][101] ([fdo#109271] / [i915#533]) +1 similar issue
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-kbl7/igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-d.html
* igt@kms_plane_alpha_blend@pipe-a-alpha-transparent-fb:
- shard-apl: NOTRUN -> [FAIL][102] ([i915#265])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-apl1/igt@kms_plane_alpha_blend@pipe-a-alpha-transparent-fb.html
* igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb:
- shard-kbl: NOTRUN -> [FAIL][103] ([i915#265])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-kbl7/igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb.html
* igt@kms_plane_alpha_blend@pipe-c-alpha-7efc:
- shard-apl: NOTRUN -> [FAIL][104] ([fdo#108145] / [i915#265])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-apl2/igt@kms_plane_alpha_blend@pipe-c-alpha-7efc.html
* igt@kms_plane_alpha_blend@pipe-c-alpha-basic:
- shard-kbl: NOTRUN -> [FAIL][105] ([fdo#108145] / [i915#265]) +2 similar issues
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-kbl6/igt@kms_plane_alpha_blend@pipe-c-alpha-basic.html
* igt@kms_plane_cursor@pipe-c-primary-size-256:
- shard-glk: [PASS][106] -> [FAIL][107] ([i915#5184])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11277/shard-glk6/igt@kms_plane_cursor@pipe-c-primary-size-256.html
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-glk4/igt@kms_plane_cursor@pipe-c-primary-size-256.html
* igt@kms_plane_lowres@pipe-a-tiling-x:
- shard-tglb: NOTRUN -> [SKIP][108] ([i915#3536])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-tglb3/igt@kms_plane_lowres@pipe-a-tiling-x.html
* igt@kms_plane_lowres@pipe-d-tiling-yf:
- shard-tglb: NOTRUN -> [SKIP][109] ([fdo#111615] / [fdo#112054])
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-tglb1/igt@kms_plane_lowres@pipe-d-tiling-yf.html
* igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area:
- shard-kbl: NOTRUN -> [SKIP][110] ([fdo#109271] / [i915#658]) +1 similar issue
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-kbl6/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html
* igt@kms_psr@psr2_cursor_render:
- shard-iclb: [PASS][111] -> [SKIP][112] ([fdo#109441]) +2 similar issues
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11277/shard-iclb2/igt@kms_psr@psr2_cursor_render.html
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-iclb5/igt@kms_psr@psr2_cursor_render.html
* igt@kms_psr@psr2_no_drrs:
- shard-iclb: NOTRUN -> [SKIP][113] ([fdo#109441]) +2 similar issues
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-iclb7/igt@kms_psr@psr2_no_drrs.html
* igt@kms_psr@psr2_sprite_render:
- shard-tglb: NOTRUN -> [FAIL][114] ([i915#132] / [i915#3467]) +3 similar issues
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-tglb7/igt@kms_psr@psr2_sprite_render.html
* igt@kms_vblank@pipe-a-ts-continuation-suspend:
- shard-kbl: NOTRUN -> [DMESG-WARN][115] ([i915#180] / [i915#295])
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-kbl6/igt@kms_vblank@pipe-a-ts-continuation-suspend.html
* igt@kms_vrr@flip-basic:
- shard-tglb: NOTRUN -> [SKIP][116] ([fdo#109502])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-tglb2/igt@kms_vrr@flip-basic.html
* igt@kms_writeback@writeback-fb-id:
- shard-kbl: NOTRUN -> [SKIP][117] ([fdo#109271] / [i915#2437]) +1 similar issue
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-kbl3/igt@kms_writeback@writeback-fb-id.html
* igt@kms_writeback@writeback-invalid-parameters:
- shard-tglb: NOTRUN -> [SKIP][118] ([i915#2437]) +1 similar issue
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-tglb7/igt@kms_writeback@writeback-invalid-parameters.html
* igt@kms_writeback@writeback-pixel-formats:
- shard-glk: NOTRUN -> [SKIP][119] ([fdo#109271] / [i915#2437])
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-glk1/igt@kms_writeback@writeback-pixel-formats.html
- shard-iclb: NOTRUN -> [SKIP][120] ([i915#2437])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-iclb6/igt@kms_writeback@writeback-pixel-formats.html
- shard-apl: NOTRUN -> [SKIP][121] ([fdo#109271] / [i915#2437])
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-apl7/igt@kms_writeback@writeback-pixel-formats.html
* igt@nouveau_crc@pipe-c-source-outp-complete:
- shard-tglb: NOTRUN -> [SKIP][122] ([i915#2530]) +6 similar issues
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-tglb1/igt@nouveau_crc@pipe-c-source-outp-complete.html
* igt@nouveau_crc@pipe-c-source-rg:
- shard-iclb: NOTRUN -> [SKIP][123] ([i915#2530]) +3 similar issues
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-iclb1/igt@nouveau_crc@pipe-c-source-rg.html
* igt@perf_pmu@event-wait@rcs0:
- shard-iclb: NOTRUN -> [SKIP][124] ([fdo#112283]) +1 similar issue
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-iclb1/igt@perf_pmu@event-wait@rcs0.html
* igt@prime_nv_pcopy@test3_2:
- shard-tglb:
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/index.html
[-- Attachment #2: Type: text/html, Size: 33991 bytes --]
^ permalink raw reply [flat|nested] 14+ messages in thread
* [igt-dev] ✓ Fi.CI.IGT: success for Use safe alignment as a default (rev2)
2022-02-24 7:54 [igt-dev] [PATCH i-g-t 0/2] Use safe alignment as a default Zbigniew Kempczyński
` (4 preceding siblings ...)
2022-02-25 15:41 ` Patchwork
@ 2022-02-25 16:04 ` Patchwork
5 siblings, 0 replies; 14+ messages in thread
From: Patchwork @ 2022-02-25 16:04 UTC (permalink / raw)
To: Zbigniew Kempczyński; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 30257 bytes --]
== Series Details ==
Series: Use safe alignment as a default (rev2)
URL : https://patchwork.freedesktop.org/series/100627/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_11277_full -> IGTPW_6696_full
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/index.html
Participating hosts (11 -> 8)
------------------------------
Missing (3): pig-skl-6260u pig-kbl-iris pig-glk-j5005
New tests
---------
New tests have been introduced between CI_DRM_11277_full and IGTPW_6696_full:
### New IGT tests (1) ###
* igt@api_intel_allocator@default-alignment:
- Statuses : 6 pass(s)
- Exec time: [0.0] s
Known issues
------------
Here are the changes found in IGTPW_6696_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_create@create-massive:
- shard-apl: NOTRUN -> [DMESG-WARN][1] ([i915#4991])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-apl8/igt@gem_create@create-massive.html
* igt@gem_ctx_isolation@preservation-s3@vcs0:
- shard-kbl: [PASS][2] -> [DMESG-WARN][3] ([i915#180]) +1 similar issue
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11277/shard-kbl1/igt@gem_ctx_isolation@preservation-s3@vcs0.html
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-kbl7/igt@gem_ctx_isolation@preservation-s3@vcs0.html
* igt@gem_ctx_persistence@file:
- shard-snb: NOTRUN -> [SKIP][4] ([fdo#109271] / [i915#1099])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-snb7/igt@gem_ctx_persistence@file.html
* igt@gem_exec_balancer@parallel:
- shard-kbl: NOTRUN -> [DMESG-WARN][5] ([i915#5076])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-kbl3/igt@gem_exec_balancer@parallel.html
* igt@gem_exec_fair@basic-deadline:
- shard-glk: [PASS][6] -> [FAIL][7] ([i915#2846])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11277/shard-glk2/igt@gem_exec_fair@basic-deadline.html
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-glk7/igt@gem_exec_fair@basic-deadline.html
* igt@gem_exec_fair@basic-none-vip@rcs0:
- shard-tglb: NOTRUN -> [FAIL][8] ([i915#2842])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-tglb2/igt@gem_exec_fair@basic-none-vip@rcs0.html
* igt@gem_exec_fair@basic-none@vcs0:
- shard-kbl: [PASS][9] -> [FAIL][10] ([i915#2842]) +2 similar issues
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11277/shard-kbl3/igt@gem_exec_fair@basic-none@vcs0.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-kbl7/igt@gem_exec_fair@basic-none@vcs0.html
* igt@gem_exec_fair@basic-none@vecs0:
- shard-apl: [PASS][11] -> [FAIL][12] ([i915#2842])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11277/shard-apl4/igt@gem_exec_fair@basic-none@vecs0.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-apl7/igt@gem_exec_fair@basic-none@vecs0.html
* igt@gem_exec_fair@basic-pace-solo@rcs0:
- shard-kbl: NOTRUN -> [FAIL][13] ([i915#2842])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-kbl6/igt@gem_exec_fair@basic-pace-solo@rcs0.html
* igt@gem_exec_fair@basic-throttle@rcs0:
- shard-iclb: [PASS][14] -> [FAIL][15] ([i915#2849])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11277/shard-iclb7/igt@gem_exec_fair@basic-throttle@rcs0.html
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-iclb8/igt@gem_exec_fair@basic-throttle@rcs0.html
* igt@gem_exec_flush@basic-batch-kernel-default-cmd:
- shard-snb: NOTRUN -> [SKIP][16] ([fdo#109271]) +106 similar issues
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-snb4/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html
- shard-iclb: NOTRUN -> [SKIP][17] ([fdo#109313])
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-iclb2/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html
- shard-tglb: NOTRUN -> [SKIP][18] ([fdo#109313])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-tglb1/igt@gem_exec_flush@basic-batch-kernel-default-cmd.html
* igt@gem_exec_params@no-blt:
- shard-tglb: NOTRUN -> [SKIP][19] ([fdo#109283])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-tglb3/igt@gem_exec_params@no-blt.html
* igt@gem_exec_params@secure-non-root:
- shard-tglb: NOTRUN -> [SKIP][20] ([fdo#112283]) +1 similar issue
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-tglb5/igt@gem_exec_params@secure-non-root.html
* igt@gem_huc_copy@huc-copy:
- shard-apl: NOTRUN -> [SKIP][21] ([fdo#109271] / [i915#2190])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-apl6/igt@gem_huc_copy@huc-copy.html
- shard-glk: NOTRUN -> [SKIP][22] ([fdo#109271] / [i915#2190])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-glk5/igt@gem_huc_copy@huc-copy.html
* igt@gem_lmem_swapping@heavy-random:
- shard-apl: NOTRUN -> [SKIP][23] ([fdo#109271] / [i915#4613])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-apl7/igt@gem_lmem_swapping@heavy-random.html
* igt@gem_lmem_swapping@parallel-random:
- shard-iclb: NOTRUN -> [SKIP][24] ([i915#4613])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-iclb1/igt@gem_lmem_swapping@parallel-random.html
- shard-kbl: NOTRUN -> [SKIP][25] ([fdo#109271] / [i915#4613]) +1 similar issue
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-kbl4/igt@gem_lmem_swapping@parallel-random.html
* igt@gem_lmem_swapping@parallel-random-verify:
- shard-tglb: NOTRUN -> [SKIP][26] ([i915#4613]) +1 similar issue
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-tglb7/igt@gem_lmem_swapping@parallel-random-verify.html
- shard-glk: NOTRUN -> [SKIP][27] ([fdo#109271] / [i915#4613])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-glk2/igt@gem_lmem_swapping@parallel-random-verify.html
* igt@gem_pread@exhaustion:
- shard-tglb: NOTRUN -> [WARN][28] ([i915#2658])
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-tglb6/igt@gem_pread@exhaustion.html
- shard-iclb: NOTRUN -> [WARN][29] ([i915#2658])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-iclb3/igt@gem_pread@exhaustion.html
- shard-kbl: NOTRUN -> [WARN][30] ([i915#2658])
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-kbl7/igt@gem_pread@exhaustion.html
* igt@gem_pxp@protected-encrypted-src-copy-not-readible:
- shard-tglb: NOTRUN -> [SKIP][31] ([i915#4270]) +4 similar issues
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-tglb2/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html
* igt@gem_pxp@verify-pxp-stale-ctx-execution:
- shard-iclb: NOTRUN -> [SKIP][32] ([i915#4270]) +2 similar issues
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-iclb7/igt@gem_pxp@verify-pxp-stale-ctx-execution.html
* igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled:
- shard-iclb: NOTRUN -> [SKIP][33] ([i915#768]) +2 similar issues
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-iclb8/igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled.html
* igt@gen7_exec_parse@oacontrol-tracking:
- shard-iclb: NOTRUN -> [SKIP][34] ([fdo#109289]) +1 similar issue
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-iclb4/igt@gen7_exec_parse@oacontrol-tracking.html
- shard-tglb: NOTRUN -> [SKIP][35] ([fdo#109289]) +2 similar issues
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-tglb2/igt@gen7_exec_parse@oacontrol-tracking.html
* igt@gen9_exec_parse@basic-rejected:
- shard-iclb: NOTRUN -> [SKIP][36] ([i915#2856]) +1 similar issue
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-iclb5/igt@gen9_exec_parse@basic-rejected.html
* igt@gen9_exec_parse@basic-rejected-ctx-param:
- shard-tglb: NOTRUN -> [SKIP][37] ([i915#2527] / [i915#2856]) +1 similar issue
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-tglb1/igt@gen9_exec_parse@basic-rejected-ctx-param.html
* igt@i915_pm_dc@dc6-dpms:
- shard-kbl: NOTRUN -> [FAIL][38] ([i915#454])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-kbl1/igt@i915_pm_dc@dc6-dpms.html
- shard-tglb: NOTRUN -> [FAIL][39] ([i915#454])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-tglb2/igt@i915_pm_dc@dc6-dpms.html
* igt@i915_pm_rc6_residency@rc6-idle:
- shard-tglb: NOTRUN -> [WARN][40] ([i915#2681] / [i915#2684])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-tglb3/igt@i915_pm_rc6_residency@rc6-idle.html
* igt@i915_pm_rpm@dpms-non-lpsp:
- shard-tglb: NOTRUN -> [SKIP][41] ([fdo#111644] / [i915#1397] / [i915#2411])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-tglb2/igt@i915_pm_rpm@dpms-non-lpsp.html
- shard-iclb: NOTRUN -> [SKIP][42] ([fdo#110892])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-iclb1/igt@i915_pm_rpm@dpms-non-lpsp.html
* igt@i915_query@query-topology-known-pci-ids:
- shard-tglb: NOTRUN -> [SKIP][43] ([fdo#109303])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-tglb5/igt@i915_query@query-topology-known-pci-ids.html
* igt@kms_atomic@atomic_plane_damage:
- shard-iclb: NOTRUN -> [SKIP][44] ([i915#4765])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-iclb5/igt@kms_atomic@atomic_plane_damage.html
* igt@kms_big_fb@linear-16bpp-rotate-270:
- shard-tglb: NOTRUN -> [SKIP][45] ([fdo#111614]) +3 similar issues
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-tglb3/igt@kms_big_fb@linear-16bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-16bpp-rotate-270:
- shard-iclb: NOTRUN -> [SKIP][46] ([fdo#110725] / [fdo#111614]) +2 similar issues
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-iclb6/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html
* igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-kbl: NOTRUN -> [SKIP][47] ([fdo#109271] / [i915#3777]) +7 similar issues
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-kbl7/igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip:
- shard-glk: NOTRUN -> [SKIP][48] ([fdo#109271] / [i915#3777])
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-glk7/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip.html
* igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
- shard-apl: NOTRUN -> [SKIP][49] ([fdo#109271] / [i915#3777])
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-apl8/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip.html
* igt@kms_big_fb@yf-tiled-32bpp-rotate-270:
- shard-tglb: NOTRUN -> [SKIP][50] ([fdo#111615]) +3 similar issues
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-tglb3/igt@kms_big_fb@yf-tiled-32bpp-rotate-270.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0:
- shard-apl: NOTRUN -> [SKIP][51] ([fdo#109271]) +148 similar issues
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-apl7/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-iclb: NOTRUN -> [SKIP][52] ([fdo#110723])
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-iclb5/igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_ccs:
- shard-tglb: NOTRUN -> [SKIP][53] ([i915#3689]) +5 similar issues
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-tglb6/igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_ccs.html
* igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_mc_ccs:
- shard-apl: NOTRUN -> [SKIP][54] ([fdo#109271] / [i915#3886]) +8 similar issues
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-apl6/igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-b-crc-primary-basic-y_tiled_gen12_mc_ccs:
- shard-kbl: NOTRUN -> [SKIP][55] ([fdo#109271] / [i915#3886]) +16 similar issues
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-kbl4/igt@kms_ccs@pipe-b-crc-primary-basic-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-b-crc-primary-basic-yf_tiled_ccs:
- shard-tglb: NOTRUN -> [SKIP][56] ([fdo#111615] / [i915#3689]) +7 similar issues
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-tglb1/igt@kms_ccs@pipe-b-crc-primary-basic-yf_tiled_ccs.html
* igt@kms_ccs@pipe-b-crc-primary-rotation-180-y_tiled_gen12_mc_ccs:
- shard-glk: NOTRUN -> [SKIP][57] ([fdo#109271] / [i915#3886]) +5 similar issues
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-glk1/igt@kms_ccs@pipe-b-crc-primary-rotation-180-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-c-crc-primary-rotation-180-y_tiled_gen12_rc_ccs_cc:
- shard-iclb: NOTRUN -> [SKIP][58] ([fdo#109278] / [i915#3886]) +5 similar issues
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-iclb7/igt@kms_ccs@pipe-c-crc-primary-rotation-180-y_tiled_gen12_rc_ccs_cc.html
* igt@kms_ccs@pipe-c-random-ccs-data-y_tiled_gen12_mc_ccs:
- shard-tglb: NOTRUN -> [SKIP][59] ([i915#3689] / [i915#3886]) +4 similar issues
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-tglb5/igt@kms_ccs@pipe-c-random-ccs-data-y_tiled_gen12_mc_ccs.html
* igt@kms_cdclk@mode-transition:
- shard-tglb: NOTRUN -> [SKIP][60] ([i915#3742])
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-tglb5/igt@kms_cdclk@mode-transition.html
* igt@kms_chamelium@hdmi-aspect-ratio:
- shard-glk: NOTRUN -> [SKIP][61] ([fdo#109271] / [fdo#111827]) +7 similar issues
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-glk9/igt@kms_chamelium@hdmi-aspect-ratio.html
* igt@kms_color@pipe-d-degamma:
- shard-iclb: NOTRUN -> [SKIP][62] ([fdo#109278] / [i915#1149])
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-iclb5/igt@kms_color@pipe-d-degamma.html
* igt@kms_color_chamelium@pipe-a-ctm-blue-to-red:
- shard-kbl: NOTRUN -> [SKIP][63] ([fdo#109271] / [fdo#111827]) +27 similar issues
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-kbl4/igt@kms_color_chamelium@pipe-a-ctm-blue-to-red.html
* igt@kms_color_chamelium@pipe-a-ctm-negative:
- shard-snb: NOTRUN -> [SKIP][64] ([fdo#109271] / [fdo#111827]) +5 similar issues
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-snb5/igt@kms_color_chamelium@pipe-a-ctm-negative.html
* igt@kms_color_chamelium@pipe-b-ctm-0-75:
- shard-tglb: NOTRUN -> [SKIP][65] ([fdo#109284] / [fdo#111827]) +15 similar issues
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-tglb5/igt@kms_color_chamelium@pipe-b-ctm-0-75.html
* igt@kms_color_chamelium@pipe-b-ctm-red-to-blue:
- shard-iclb: NOTRUN -> [SKIP][66] ([fdo#109284] / [fdo#111827]) +10 similar issues
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-iclb4/igt@kms_color_chamelium@pipe-b-ctm-red-to-blue.html
* igt@kms_color_chamelium@pipe-c-ctm-0-25:
- shard-apl: NOTRUN -> [SKIP][67] ([fdo#109271] / [fdo#111827]) +10 similar issues
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-apl8/igt@kms_color_chamelium@pipe-c-ctm-0-25.html
* igt@kms_color_chamelium@pipe-d-ctm-max:
- shard-iclb: NOTRUN -> [SKIP][68] ([fdo#109278] / [fdo#109284] / [fdo#111827]) +1 similar issue
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-iclb8/igt@kms_color_chamelium@pipe-d-ctm-max.html
* igt@kms_content_protection@dp-mst-type-0:
- shard-tglb: NOTRUN -> [SKIP][69] ([i915#3116] / [i915#3299])
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-tglb3/igt@kms_content_protection@dp-mst-type-0.html
* igt@kms_cursor_crc@pipe-a-cursor-512x170-offscreen:
- shard-iclb: NOTRUN -> [SKIP][70] ([fdo#109278] / [fdo#109279]) +1 similar issue
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-iclb4/igt@kms_cursor_crc@pipe-a-cursor-512x170-offscreen.html
* igt@kms_cursor_crc@pipe-b-cursor-32x32-onscreen:
- shard-tglb: NOTRUN -> [SKIP][71] ([i915#3319]) +5 similar issues
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-tglb7/igt@kms_cursor_crc@pipe-b-cursor-32x32-onscreen.html
* igt@kms_cursor_crc@pipe-c-cursor-512x170-onscreen:
- shard-tglb: NOTRUN -> [SKIP][72] ([fdo#109279] / [i915#3359]) +2 similar issues
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-tglb7/igt@kms_cursor_crc@pipe-c-cursor-512x170-onscreen.html
* igt@kms_cursor_crc@pipe-d-cursor-256x256-onscreen:
- shard-kbl: NOTRUN -> [SKIP][73] ([fdo#109271]) +312 similar issues
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-kbl7/igt@kms_cursor_crc@pipe-d-cursor-256x256-onscreen.html
* igt@kms_cursor_crc@pipe-d-cursor-512x170-rapid-movement:
- shard-tglb: NOTRUN -> [SKIP][74] ([i915#3359]) +8 similar issues
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-tglb2/igt@kms_cursor_crc@pipe-d-cursor-512x170-rapid-movement.html
* igt@kms_cursor_edge_walk@pipe-d-128x128-top-edge:
- shard-iclb: NOTRUN -> [SKIP][75] ([fdo#109278]) +33 similar issues
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-iclb2/igt@kms_cursor_edge_walk@pipe-d-128x128-top-edge.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
- shard-tglb: NOTRUN -> [SKIP][76] ([i915#4103]) +1 similar issue
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-tglb1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html
* igt@kms_cursor_legacy@cursor-vs-flip-toggle:
- shard-iclb: NOTRUN -> [FAIL][77] ([i915#5072])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-iclb7/igt@kms_cursor_legacy@cursor-vs-flip-toggle.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
- shard-iclb: NOTRUN -> [SKIP][78] ([fdo#109274] / [fdo#109278]) +1 similar issue
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-iclb5/igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic:
- shard-tglb: NOTRUN -> [SKIP][79] ([fdo#109274] / [fdo#111825]) +14 similar issues
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-tglb6/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html
* igt@kms_dither@fb-8bpc-vs-panel-8bpc@edp-1-pipe-a:
- shard-tglb: NOTRUN -> [SKIP][80] ([i915#3788])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-tglb5/igt@kms_dither@fb-8bpc-vs-panel-8bpc@edp-1-pipe-a.html
* igt@kms_dp_tiled_display@basic-test-pattern:
- shard-iclb: NOTRUN -> [SKIP][81] ([i915#426])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-iclb2/igt@kms_dp_tiled_display@basic-test-pattern.html
- shard-tglb: NOTRUN -> [SKIP][82] ([i915#426])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-tglb5/igt@kms_dp_tiled_display@basic-test-pattern.html
* igt@kms_dsc@xrgb8888-dsc-compression:
- shard-tglb: NOTRUN -> [SKIP][83] ([i915#3828])
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-tglb1/igt@kms_dsc@xrgb8888-dsc-compression.html
* igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a1-hdmi-a2:
- shard-glk: [PASS][84] -> [FAIL][85] ([i915#79])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11277/shard-glk1/igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a1-hdmi-a2.html
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-glk3/igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a1-hdmi-a2.html
* igt@kms_flip@2x-modeset-vs-vblank-race-interruptible:
- shard-iclb: NOTRUN -> [SKIP][86] ([fdo#109274]) +6 similar issues
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-iclb4/igt@kms_flip@2x-modeset-vs-vblank-race-interruptible.html
* igt@kms_flip@flip-vs-suspend-interruptible@a-dp1:
- shard-kbl: NOTRUN -> [DMESG-WARN][87] ([i915#180]) +4 similar issues
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-kbl4/igt@kms_flip@flip-vs-suspend-interruptible@a-dp1.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling:
- shard-tglb: NOTRUN -> [SKIP][88] ([i915#2587])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-tglb3/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-gtt:
- shard-glk: [PASS][89] -> [FAIL][90] ([i915#2546])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11277/shard-glk9/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-gtt.html
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-glk4/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt:
- shard-tglb: NOTRUN -> [SKIP][91] ([fdo#109280] / [fdo#111825]) +56 similar issues
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-tglb6/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt:
- shard-iclb: NOTRUN -> [SKIP][92] ([fdo#109280]) +30 similar issues
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-iclb5/igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-suspend:
- shard-glk: NOTRUN -> [SKIP][93] ([fdo#109271]) +72 similar issues
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-glk8/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html
* igt@kms_hdr@static-swap:
- shard-tglb: NOTRUN -> [SKIP][94] ([i915#1187])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-tglb7/igt@kms_hdr@static-swap.html
- shard-iclb: NOTRUN -> [SKIP][95] ([i915#1187])
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-iclb3/igt@kms_hdr@static-swap.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-tglb: NOTRUN -> [SKIP][96] ([i915#1839])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-tglb7/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
- shard-iclb: NOTRUN -> [SKIP][97] ([i915#1839])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-iclb3/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-d:
- shard-glk: NOTRUN -> [SKIP][98] ([fdo#109271] / [i915#533])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-glk6/igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-d.html
- shard-kbl: NOTRUN -> [SKIP][99] ([fdo#109271] / [i915#533]) +1 similar issue
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-kbl7/igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-d.html
* igt@kms_plane_alpha_blend@pipe-a-alpha-transparent-fb:
- shard-apl: NOTRUN -> [FAIL][100] ([i915#265])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-apl1/igt@kms_plane_alpha_blend@pipe-a-alpha-transparent-fb.html
* igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb:
- shard-kbl: NOTRUN -> [FAIL][101] ([i915#265])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-kbl7/igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb.html
* igt@kms_plane_alpha_blend@pipe-c-alpha-7efc:
- shard-apl: NOTRUN -> [FAIL][102] ([fdo#108145] / [i915#265])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-apl2/igt@kms_plane_alpha_blend@pipe-c-alpha-7efc.html
* igt@kms_plane_alpha_blend@pipe-c-alpha-basic:
- shard-kbl: NOTRUN -> [FAIL][103] ([fdo#108145] / [i915#265]) +2 similar issues
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-kbl6/igt@kms_plane_alpha_blend@pipe-c-alpha-basic.html
* igt@kms_plane_cursor@pipe-c-primary-size-256:
- shard-iclb: [PASS][104] -> [FAIL][105] ([i915#5184])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11277/shard-iclb4/igt@kms_plane_cursor@pipe-c-primary-size-256.html
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-iclb8/igt@kms_plane_cursor@pipe-c-primary-size-256.html
- shard-glk: [PASS][106] -> [FAIL][107] ([i915#5184])
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11277/shard-glk6/igt@kms_plane_cursor@pipe-c-primary-size-256.html
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-glk4/igt@kms_plane_cursor@pipe-c-primary-size-256.html
* igt@kms_plane_lowres@pipe-a-tiling-x:
- shard-tglb: NOTRUN -> [SKIP][108] ([i915#3536])
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-tglb3/igt@kms_plane_lowres@pipe-a-tiling-x.html
* igt@kms_plane_lowres@pipe-d-tiling-yf:
- shard-tglb: NOTRUN -> [SKIP][109] ([fdo#111615] / [fdo#112054])
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-tglb1/igt@kms_plane_lowres@pipe-d-tiling-yf.html
* igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area:
- shard-kbl: NOTRUN -> [SKIP][110] ([fdo#109271] / [i915#658]) +1 similar issue
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-kbl6/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html
* igt@kms_psr@psr2_cursor_render:
- shard-iclb: [PASS][111] -> [SKIP][112] ([fdo#109441]) +2 similar issues
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_11277/shard-iclb2/igt@kms_psr@psr2_cursor_render.html
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-iclb5/igt@kms_psr@psr2_cursor_render.html
* igt@kms_psr@psr2_no_drrs:
- shard-iclb: NOTRUN -> [SKIP][113] ([fdo#109441]) +2 similar issues
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-iclb7/igt@kms_psr@psr2_no_drrs.html
* igt@kms_psr@psr2_sprite_render:
- shard-tglb: NOTRUN -> [FAIL][114] ([i915#132] / [i915#3467]) +3 similar issues
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-tglb7/igt@kms_psr@psr2_sprite_render.html
* igt@kms_vblank@pipe-a-ts-continuation-suspend:
- shard-kbl: NOTRUN -> [DMESG-WARN][115] ([i915#180] / [i915#295])
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-kbl6/igt@kms_vblank@pipe-a-ts-continuation-suspend.html
* igt@kms_vrr@flip-basic:
- shard-tglb: NOTRUN -> [SKIP][116] ([fdo#109502])
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-tglb2/igt@kms_vrr@flip-basic.html
* igt@kms_writeback@writeback-fb-id:
- shard-kbl: NOTRUN -> [SKIP][117] ([fdo#109271] / [i915#2437]) +1 similar issue
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-kbl3/igt@kms_writeback@writeback-fb-id.html
* igt@kms_writeback@writeback-invalid-parameters:
- shard-tglb: NOTRUN -> [SKIP][118] ([i915#2437]) +1 similar issue
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-tglb7/igt@kms_writeback@writeback-invalid-parameters.html
* igt@kms_writeback@writeback-pixel-formats:
- shard-glk: NOTRUN -> [SKIP][119] ([fdo#109271] / [i915#2437])
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-glk1/igt@kms_writeback@writeback-pixel-formats.html
- shard-iclb: NOTRUN -> [SKIP][120] ([i915#2437])
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-iclb6/igt@kms_writeback@writeback-pixel-formats.html
- shard-apl: NOTRUN -> [SKIP][121] ([fdo#109271] / [i915#2437])
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-apl7/igt@kms_writeback@writeback-pixel-formats.html
* igt@nouveau_crc@pipe-c-source-outp-complete:
- shard-tglb: NOTRUN -> [SKIP][122] ([i915#2530]) +6 similar issues
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-tglb1/igt@nouveau_crc@pipe-c-source-outp-complete.html
* igt@nouveau_crc@pipe-c-source-rg:
- shard-iclb: NOTRUN -> [SKIP][123] ([i915#2530]) +3 similar issues
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-iclb1/igt@nouveau_crc@pipe-c-source-rg.html
* igt@perf_pmu@event-wait@rcs0:
- shard-iclb: NOTRUN -> [SKIP][124] ([fdo#112283]) +1 similar issue
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-iclb1/igt@perf_pmu@event-wait@rcs0.html
* igt@prime_nv_pcopy@test3_2:
- shard-tglb: NOTRUN -> [SKIP][125] ([fdo#109291]) +4 similar issues
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-tglb3/igt@prime_nv_pcopy@test3_2.html
* igt@prime_nv_test@nv_i915_sharing:
- shard-iclb: NOTRUN -> [SKIP][126] ([fdo#109291]) +3 similar issues
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/shard-iclb8/igt@prime_nv_test@nv_i915_sharing.html
* igt@prime_vgem@coherency-gtt:
- shard-tglb: NOTRUN -> [SKIP][127] ([fdo#111656])
[127]: https:/
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/index.html
[-- Attachment #2: Type: text/html, Size: 34032 bytes --]
^ permalink raw reply [flat|nested] 14+ messages in thread
* Re: [igt-dev] ✗ Fi.CI.IGT: failure for Use safe alignment as a default (rev2)
2022-02-25 7:26 ` Zbigniew Kempczyński
@ 2022-02-25 16:25 ` Vudum, Lakshminarayana
0 siblings, 0 replies; 14+ messages in thread
From: Vudum, Lakshminarayana @ 2022-02-25 16:25 UTC (permalink / raw)
To: Kempczynski, Zbigniew, igt-dev@lists.freedesktop.org
Filed https://gitlab.freedesktop.org/drm/intel/-/issues/5184 and re-reported.
igt@kms_plane_cursor@pipe-c-primary-size-256 - fail - Failed assertion: !mismatch || igt_skip_crc_compare
Lakshmi.
-----Original Message-----
From: Kempczynski, Zbigniew <zbigniew.kempczynski@intel.com>
Sent: Thursday, February 24, 2022 11:26 PM
To: igt-dev@lists.freedesktop.org
Cc: Vudum, Lakshminarayana <lakshminarayana.vudum@intel.com>
Subject: Re: ✗ Fi.CI.IGT: failure for Use safe alignment as a default (rev2)
On Thu, Feb 24, 2022 at 09:20:13PM +0000, Patchwork wrote:
> Patch Details
>
> Series: Use safe alignment as a default (rev2)
> URL: https://patchwork.freedesktop.org/series/100627/
> State: failure
> Details:
> https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_6696/index.html
>
> CI Bug Log - changes from CI_DRM_11277_full ->
> IGTPW_6696_full
>
> Summary
>
> FAILURE
>
> Serious unknown changes coming with IGTPW_6696_full absolutely need to be
> verified manually.
>
> If you think the reported changes have nothing to do with the changes
> introduced in IGTPW_6696_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_6696/index.html
>
> Participating hosts (11 -> 8)
>
> Missing (3): pig-skl-6260u pig-kbl-iris pig-glk-j5005
>
> Possible new issues
>
> Here are the unknown changes that may have been introduced in
> IGTPW_6696_full:
>
> IGT changes
>
> Possible regressions
>
> * igt@kms_plane_cursor@pipe-c-primary-size-256:
>
> * shard-iclb: PASS -> FAIL
>
> * shard-glk: PASS -> FAIL
Test doesn't have influence on above. Previous series completed properly and v2 only does subtest rename.
--
Zbigniew
>
> New tests
>
> New tests have been introduced between CI_DRM_11277_full and
> IGTPW_6696_full:
>
> New IGT tests (1)
>
> * igt@api_intel_allocator@default-alignment:
> * Statuses : 6 pass(s)
> * Exec time: [0.0] s
>
> Known issues
>
> Here are the changes found in IGTPW_6696_full that come from known issues:
>
> IGT changes
>
> Issues hit
>
> * igt@gem_create@create-massive:
>
> * shard-apl: NOTRUN -> DMESG-WARN ([i915#4991])
> * igt@gem_ctx_isolation@preservation-s3@vcs0:
>
> * shard-kbl: PASS -> DMESG-WARN ([i915#180]) +1 similar issue
> * igt@gem_ctx_persistence@file:
>
> * shard-snb: NOTRUN -> SKIP ([fdo#109271] / [i915#1099])
> * igt@gem_exec_balancer@parallel:
>
> * shard-kbl: NOTRUN -> DMESG-WARN ([i915#5076])
> * igt@gem_exec_fair@basic-deadline:
>
> * shard-glk: PASS -> FAIL ([i915#2846])
> * igt@gem_exec_fair@basic-none-vip@rcs0:
>
> * shard-tglb: NOTRUN -> FAIL ([i915#2842])
> * igt@gem_exec_fair@basic-none@vcs0:
>
> * shard-kbl: PASS -> FAIL ([i915#2842]) +2 similar issues
> * igt@gem_exec_fair@basic-none@vecs0:
>
> * shard-apl: PASS -> FAIL ([i915#2842])
> * igt@gem_exec_fair@basic-pace-solo@rcs0:
>
> * shard-kbl: NOTRUN -> FAIL ([i915#2842])
> * igt@gem_exec_fair@basic-throttle@rcs0:
>
> * shard-iclb: PASS -> FAIL ([i915#2849])
> * igt@gem_exec_flush@basic-batch-kernel-default-cmd:
>
> * shard-snb: NOTRUN -> SKIP ([fdo#109271]) +106 similar
> issues
>
> * shard-iclb: NOTRUN -> SKIP ([fdo#109313])
>
> * shard-tglb: NOTRUN -> SKIP ([fdo#109313])
>
> * igt@gem_exec_params@no-blt:
>
> * shard-tglb: NOTRUN -> SKIP ([fdo#109283])
> * igt@gem_exec_params@secure-non-root:
>
> * shard-tglb: NOTRUN -> SKIP ([fdo#112283]) +1 similar issue
> * igt@gem_huc_copy@huc-copy:
>
> * shard-apl: NOTRUN -> SKIP ([fdo#109271] / [i915#2190])
>
> * shard-glk: NOTRUN -> SKIP ([fdo#109271] / [i915#2190])
>
> * igt@gem_lmem_swapping@heavy-random:
>
> * shard-apl: NOTRUN -> SKIP ([fdo#109271] / [i915#4613])
> * igt@gem_lmem_swapping@parallel-random:
>
> * shard-iclb: NOTRUN -> SKIP ([i915#4613])
>
> * shard-kbl: NOTRUN -> SKIP ([fdo#109271] / [i915#4613]) +1 similar
> issue
>
> * igt@gem_lmem_swapping@parallel-random-verify:
>
> * shard-tglb: NOTRUN -> SKIP ([i915#4613]) +1 similar issue
>
> * shard-glk: NOTRUN -> SKIP ([fdo#109271] / [i915#4613])
>
> * igt@gem_pread@exhaustion:
>
> * shard-tglb: NOTRUN -> WARN ([i915#2658])
>
> * shard-iclb: NOTRUN -> WARN ([i915#2658])
>
> * shard-kbl: NOTRUN -> WARN ([i915#2658])
>
> * igt@gem_pxp@protected-encrypted-src-copy-not-readible:
>
> * shard-tglb: NOTRUN -> SKIP ([i915#4270]) +4 similar issues
> * igt@gem_pxp@verify-pxp-stale-ctx-execution:
>
> * shard-iclb: NOTRUN -> SKIP ([i915#4270]) +2 similar issues
> * igt@gem_render_copy@yf-tiled-mc-ccs-to-vebox-yf-tiled:
>
> * shard-iclb: NOTRUN -> SKIP ([i915#768]) +2 similar issues
> * igt@gen7_exec_parse@oacontrol-tracking:
>
> * shard-iclb: NOTRUN -> SKIP ([fdo#109289]) +1 similar issue
>
> * shard-tglb: NOTRUN -> SKIP ([fdo#109289]) +2 similar
> issues
>
> * igt@gen9_exec_parse@basic-rejected:
>
> * shard-iclb: NOTRUN -> SKIP ([i915#2856]) +1 similar issue
> * igt@gen9_exec_parse@basic-rejected-ctx-param:
>
> * shard-tglb: NOTRUN -> SKIP ([i915#2527] / [i915#2856]) +1 similar
> issue
> * igt@i915_pm_dc@dc6-dpms:
>
> * shard-kbl: NOTRUN -> FAIL ([i915#454])
>
> * shard-tglb: NOTRUN -> FAIL ([i915#454])
>
> * igt@i915_pm_rc6_residency@rc6-idle:
>
> * shard-tglb: NOTRUN -> WARN ([i915#2681] / [i915#2684])
> * igt@i915_pm_rpm@dpms-non-lpsp:
>
> * shard-tglb: NOTRUN -> SKIP ([fdo#111644] / [i915#1397] /
> [i915#2411])
>
> * shard-iclb: NOTRUN -> SKIP ([fdo#110892])
>
> * igt@i915_query@query-topology-known-pci-ids:
>
> * shard-tglb: NOTRUN -> SKIP ([fdo#109303])
> * igt@kms_atomic@atomic_plane_damage:
>
> * shard-iclb: NOTRUN -> SKIP ([i915#4765])
> * igt@kms_big_fb@linear-16bpp-rotate-270:
>
> * shard-tglb: NOTRUN -> SKIP ([fdo#111614]) +3 similar issues
> * igt@kms_big_fb@x-tiled-16bpp-rotate-270:
>
> * shard-iclb: NOTRUN -> SKIP ([fdo#110725] / [fdo#111614]) +2
> similar issues
> * igt@kms_big_fb@x-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
>
> * shard-kbl: NOTRUN -> SKIP ([fdo#109271] / [i915#3777]) +7 similar
> issues
> * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-hflip:
>
> * shard-glk: NOTRUN -> SKIP ([fdo#109271] / [i915#3777])
> * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-0-hflip-async-flip:
>
> * shard-apl: NOTRUN -> SKIP ([fdo#109271] / [i915#3777])
> * igt@kms_big_fb@yf-tiled-32bpp-rotate-270:
>
> * shard-tglb: NOTRUN -> SKIP ([fdo#111615]) +3 similar issues
> * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-0:
>
> * shard-apl: NOTRUN -> SKIP ([fdo#109271]) +148 similar issues
> * igt@kms_big_fb@yf-tiled-max-hw-stride-64bpp-rotate-180-hflip:
>
> * shard-iclb: NOTRUN -> SKIP ([fdo#110723])
> * igt@kms_ccs@pipe-a-bad-pixel-format-y_tiled_ccs:
>
> * shard-tglb: NOTRUN -> SKIP ([i915#3689]) +5 similar issues
> * igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_mc_ccs:
>
> * shard-apl: NOTRUN -> SKIP ([fdo#109271] / [i915#3886]) +8 similar
> issues
> * igt@kms_ccs@pipe-b-crc-primary-basic-y_tiled_gen12_mc_ccs:
>
> * shard-kbl: NOTRUN -> SKIP ([fdo#109271] / [i915#3886]) +16
> similar issues
> * igt@kms_ccs@pipe-b-crc-primary-basic-yf_tiled_ccs:
>
> * shard-tglb: NOTRUN -> SKIP ([fdo#111615] / [i915#3689]) +7
> similar issues
> * igt@kms_ccs@pipe-b-crc-primary-rotation-180-y_tiled_gen12_mc_ccs:
>
> * shard-glk: NOTRUN -> SKIP ([fdo#109271] / [i915#3886]) +5 similar
> issues
> * igt@kms_ccs@pipe-c-crc-primary-rotation-180-y_tiled_gen12_rc_ccs_cc:
>
> * shard-iclb: NOTRUN -> SKIP ([fdo#109278] / [i915#3886]) +5
> similar issues
> * igt@kms_ccs@pipe-c-random-ccs-data-y_tiled_gen12_mc_ccs:
>
> * shard-tglb: NOTRUN -> SKIP ([i915#3689] / [i915#3886]) +4 similar
> issues
> * igt@kms_cdclk@mode-transition:
>
> * shard-tglb: NOTRUN -> SKIP ([i915#3742])
> * igt@kms_chamelium@hdmi-aspect-ratio:
>
> * shard-glk: NOTRUN -> SKIP ([fdo#109271] / [fdo#111827]) +7
> similar issues
> * igt@kms_color@pipe-d-degamma:
>
> * shard-iclb: NOTRUN -> SKIP ([fdo#109278] / [i915#1149])
> * igt@kms_color_chamelium@pipe-a-ctm-blue-to-red:
>
> * shard-kbl: NOTRUN -> SKIP ([fdo#109271] / [fdo#111827]) +27
> similar issues
> * igt@kms_color_chamelium@pipe-a-ctm-negative:
>
> * shard-snb: NOTRUN -> SKIP ([fdo#109271] / [fdo#111827]) +5
> similar issues
> * igt@kms_color_chamelium@pipe-b-ctm-0-75:
>
> * shard-tglb: NOTRUN -> SKIP ([fdo#109284] / [fdo#111827]) +15
> similar issues
> * igt@kms_color_chamelium@pipe-b-ctm-red-to-blue:
>
> * shard-iclb: NOTRUN -> SKIP ([fdo#109284] / [fdo#111827]) +10
> similar issues
> * igt@kms_color_chamelium@pipe-c-ctm-0-25:
>
> * shard-apl: NOTRUN -> SKIP ([fdo#109271] / [fdo#111827]) +10
> similar issues
> * igt@kms_color_chamelium@pipe-d-ctm-max:
>
> * shard-iclb: NOTRUN -> SKIP ([fdo#109278] / [fdo#109284] /
> [fdo#111827]) +1 similar issue
> * igt@kms_content_protection@dp-mst-type-0:
>
> * shard-tglb: NOTRUN -> SKIP ([i915#3116] / [i915#3299])
> * igt@kms_cursor_crc@pipe-a-cursor-512x170-offscreen:
>
> * shard-iclb: NOTRUN -> SKIP ([fdo#109278] / [fdo#109279]) +1
> similar issue
> * igt@kms_cursor_crc@pipe-b-cursor-32x32-onscreen:
>
> * shard-tglb: NOTRUN -> SKIP ([i915#3319]) +5 similar issues
> * igt@kms_cursor_crc@pipe-c-cursor-512x170-onscreen:
>
> * shard-tglb: NOTRUN -> SKIP ([fdo#109279] / [i915#3359]) +2
> similar issues
> * igt@kms_cursor_crc@pipe-d-cursor-256x256-onscreen:
>
> * shard-kbl: NOTRUN -> SKIP ([fdo#109271]) +312 similar issues
> * igt@kms_cursor_crc@pipe-d-cursor-512x170-rapid-movement:
>
> * shard-tglb: NOTRUN -> SKIP ([i915#3359]) +8 similar issues
> * igt@kms_cursor_edge_walk@pipe-d-128x128-top-edge:
>
> * shard-iclb: NOTRUN -> SKIP ([fdo#109278]) +33 similar issues
> * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic:
>
> * shard-tglb: NOTRUN -> SKIP ([i915#4103]) +1 similar issue
> * igt@kms_cursor_legacy@cursor-vs-flip-toggle:
>
> * shard-iclb: NOTRUN -> FAIL ([i915#5072])
> * igt@kms_cursor_legacy@cursorb-vs-flipa-varying-size:
>
> * shard-iclb: NOTRUN -> SKIP ([fdo#109274] / [fdo#109278]) +1
> similar issue
> * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic:
>
> * shard-tglb: NOTRUN -> SKIP ([fdo#109274] / [fdo#111825]) +14
> similar issues
> * igt@kms_dither@fb-8bpc-vs-panel-8bpc@edp-1-pipe-a:
>
> * shard-tglb: NOTRUN -> SKIP ([i915#3788])
> * igt@kms_dp_tiled_display@basic-test-pattern:
>
> * shard-iclb: NOTRUN -> SKIP ([i915#426])
>
> * shard-tglb: NOTRUN -> SKIP ([i915#426])
>
> * igt@kms_dsc@xrgb8888-dsc-compression:
>
> * shard-tglb: NOTRUN -> SKIP ([i915#3828])
> * igt@kms_flip@2x-flip-vs-expired-vblank@bc-hdmi-a1-hdmi-a2:
>
> * shard-glk: PASS -> FAIL ([i915#79])
> * igt@kms_flip@2x-modeset-vs-vblank-race-interruptible:
>
> * shard-iclb: NOTRUN -> SKIP ([fdo#109274]) +6 similar issues
> * igt@kms_flip@flip-vs-suspend-interruptible@a-dp1:
>
> * shard-kbl: NOTRUN -> DMESG-WARN ([i915#180]) +4 similar issues
> * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-upscaling:
>
> * shard-tglb: NOTRUN -> SKIP ([i915#2587])
> * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-draw-mmap-gtt:
>
> * shard-glk: PASS -> FAIL ([i915#2546])
> * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt:
>
> * shard-tglb: NOTRUN -> SKIP ([fdo#109280] / [fdo#111825]) +56
> similar issues
> * igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt:
>
> * shard-iclb: NOTRUN -> SKIP ([fdo#109280]) +30 similar issues
> * igt@kms_frontbuffer_tracking@fbcpsr-suspend:
>
> * shard-glk: NOTRUN -> SKIP ([fdo#109271]) +72 similar issues
> * igt@kms_hdr@static-swap:
>
> * shard-tglb: NOTRUN -> SKIP ([i915#1187])
>
> * shard-iclb: NOTRUN -> SKIP ([i915#1187])
>
> * igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
>
> * shard-tglb: NOTRUN -> SKIP ([i915#1839])
>
> * shard-iclb: NOTRUN -> SKIP ([i915#1839])
>
> * igt@kms_pipe_crc_basic@disable-crc-after-crtc-pipe-d:
>
> * shard-glk: NOTRUN -> SKIP ([fdo#109271] / [i915#533])
>
> * shard-kbl: NOTRUN -> SKIP ([fdo#109271] / [i915#533]) +1 similar
> issue
>
> * igt@kms_plane_alpha_blend@pipe-a-alpha-transparent-fb:
>
> * shard-apl: NOTRUN -> FAIL ([i915#265])
> * igt@kms_plane_alpha_blend@pipe-b-alpha-transparent-fb:
>
> * shard-kbl: NOTRUN -> FAIL ([i915#265])
> * igt@kms_plane_alpha_blend@pipe-c-alpha-7efc:
>
> * shard-apl: NOTRUN -> FAIL ([fdo#108145] / [i915#265])
> * igt@kms_plane_alpha_blend@pipe-c-alpha-basic:
>
> * shard-kbl: NOTRUN -> FAIL ([fdo#108145] / [i915#265]) +2 similar
> issues
> * igt@kms_plane_lowres@pipe-a-tiling-x:
>
> * shard-tglb: NOTRUN -> SKIP ([i915#3536])
> * igt@kms_plane_lowres@pipe-d-tiling-yf:
>
> * shard-tglb: NOTRUN -> SKIP ([fdo#111615] / [fdo#112054])
> * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area:
>
> * shard-kbl: NOTRUN -> SKIP ([fdo#109271] / [i915#658]) +1 similar
> issue
> * igt@kms_psr@psr2_cursor_render:
>
> * shard-iclb: PASS -> SKIP ([fdo#109441]) +2 similar issues
> * igt@kms_psr@psr2_no_drrs:
>
> * shard-iclb: NOTRUN -> SKIP ([fdo#109441]) +2 similar issues
> * igt@kms_psr@psr2_sprite_render:
>
> * shard-tglb: NOTRUN -> FAIL ([i915#132] / [i915#3467]) +3 similar
> issues
> * igt@kms_vblank@pipe-a-ts-continuation-suspend:
>
> * shard-kbl: NOTRUN -> DMESG-WARN ([i915#180] / [i915#295])
> * igt@kms_vrr@flip-basic:
>
> * shard-tglb: NOTRUN -> SKIP ([fdo#109502])
> * igt@kms_writeback@writeback-fb-id:
>
> * shard-kbl: NOTRUN -> SKIP ([fdo#109271] / [i915#2437]) +1 similar
> issue
> * igt@kms_writeback@writeback-invalid-parameters:
>
> * shard-tglb: NOTRUN -> SKIP ([i915#2437]) +1 similar issue
> * igt@kms_writeback@writeback-pixel-formats:
>
> * shard-glk: NOTRUN -> SKIP ([fdo#109271] / [i915#2437])
>
> * shard-iclb: NOTRUN -> SKIP ([i915#2437])
>
> * shard-apl: NOTRUN -> SKIP ([fdo#109271] / [i915#2437])
>
> * igt@nouveau_crc@pipe-c-source-outp-complete:
>
> * shard-tglb: NOTRUN -> SKIP ([i915#2530]) +6 similar issues
> * igt@nouveau_crc@pipe-c-source-rg:
>
> * shard-iclb: NOTRUN -> SKIP ([i915#2530]) +3 similar issues
> * igt@perf_pmu@event-wait@rcs0:
>
> * shard-iclb: NOTRUN -> SKIP ([fdo#112283]) +1 similar issue
> * igt@prime_nv_pcopy@test3_2:
>
> * shard-tglb: NOTRUN -> [SKIP][125] ([fdo#109291]) +4 similar
> issues
^ permalink raw reply [flat|nested] 14+ messages in thread
end of thread, other threads:[~2022-02-25 16:25 UTC | newest]
Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2022-02-24 7:54 [igt-dev] [PATCH i-g-t 0/2] Use safe alignment as a default Zbigniew Kempczyński
2022-02-24 7:54 ` [igt-dev] [PATCH i-g-t 1/2] lib/intel_allocator: Add " Zbigniew Kempczyński
2022-02-24 20:50 ` Dixit, Ashutosh
2022-02-25 7:04 ` Zbigniew Kempczyński
2022-02-24 7:54 ` [igt-dev] [PATCH i-g-t 2/2] tests/api_intel_allocator: Add default-alignment test Zbigniew Kempczyński
2022-02-24 20:16 ` Dixit, Ashutosh
2022-02-25 7:22 ` Zbigniew Kempczyński
2022-02-24 8:57 ` [igt-dev] ✓ Fi.CI.BAT: success for Use safe alignment as a default (rev2) Patchwork
2022-02-24 21:20 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
2022-02-25 7:26 ` Zbigniew Kempczyński
2022-02-25 16:25 ` Vudum, Lakshminarayana
2022-02-25 15:41 ` Patchwork
2022-02-25 16:04 ` [igt-dev] ✓ Fi.CI.IGT: success " Patchwork
-- strict thread matches above, loose matches on Subject: below --
2022-02-23 10:33 [igt-dev] [PATCH i-g-t 0/2] Use safe alignment as a default Zbigniew Kempczyński
2022-02-23 10:33 ` [igt-dev] [PATCH i-g-t 2/2] tests/api_intel_allocator: Add default-alignment test Zbigniew Kempczyński
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox