* [igt-dev] [PATCH i-g-t 1/3] lib/igt_map: Add 32-bit and 64-bit hash helper functions
@ 2023-02-23 10:53 Zbigniew Kempczyński
2023-02-23 10:53 ` [igt-dev] [PATCH i-g-t 2/3] lib/intel_allocator_*: Use common hash helpers Zbigniew Kempczyński
` (4 more replies)
0 siblings, 5 replies; 9+ messages in thread
From: Zbigniew Kempczyński @ 2023-02-23 10:53 UTC (permalink / raw)
To: igt-dev
Creating igt_map requires hashing and comparing function. Common case
is using 32-bit (like fd, etc.) or 64-bit keys (offsets) so adding
such helpers reduces code duplication.
Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
---
lib/igt_map.c | 59 +++++++++++++++++++++++++++++++++++++++++++++++++++
lib/igt_map.h | 5 +++++
2 files changed, 64 insertions(+)
diff --git a/lib/igt_map.c b/lib/igt_map.c
index da8713a186..ffa1e6beaa 100644
--- a/lib/igt_map.c
+++ b/lib/igt_map.c
@@ -196,6 +196,7 @@ igt_map_search(struct igt_map *map, const void *key)
* Returns: map entry or %NULL if no entry is found.
* Note that the data pointer may be modified by the user.
*/
+
struct igt_map_entry *
igt_map_search_entry(struct igt_map *map, const void *key)
{
@@ -500,3 +501,61 @@ igt_map_random_entry(struct igt_map *map,
return NULL;
}
+
+#define GOLDEN_RATIO_PRIME_32 0x9e370001UL
+/**
+ * igt_map_hash_32:
+ * @key: pointer to 32-bit key
+ *
+ * Function is hashing function for 32-bit keys. Key is pointer to 32-bit
+ * value so it must be dereferenced.
+ */
+uint32_t igt_map_hash_32(const void *key)
+{
+ uint32_t hash = *(uint32_t *)key;
+
+ hash = hash * GOLDEN_RATIO_PRIME_32;
+ return hash;
+}
+
+/**
+ * igt_map_equal_32:
+ * @key1: pointer to first 32-bit key
+ * @key2: pointer to second 32-bit key
+ *
+ * Function compares 32-bit keys.
+ */
+int igt_map_equal_32(const void *key1, const void *key2)
+{
+ return *(uint32_t *)key1 == *(uint32_t *)key2;
+}
+
+/* 2^63 + 2^61 - 2^57 + 2^54 - 2^51 - 2^18 + 1 */
+#define GOLDEN_RATIO_PRIME_64 0x9e37fffffffc0001ULL
+/**
+ * igt_map_hash_64:
+ * @key: pointer to 64-bit key
+ *
+ * Function is hashing function for 64-bit keys. Key is pointer to 64-bit
+ * value so it must be dereferenced.
+ */
+uint32_t igt_map_hash_64(const void *key)
+{
+ uint64_t hash = *(uint64_t *)key;
+
+ hash = hash * GOLDEN_RATIO_PRIME_64;
+ /* High bits are more random, so use them. */
+ return hash >> 32;
+}
+
+/**
+ * igt_map_equal_64:
+ * @key1: pointer to first 64-bit key
+ * @key2: pointer to second 64-bit key
+ *
+ * Function compares 64-bit keys.
+ */
+int igt_map_equal_64(const void *key1, const void *key2)
+{
+ return *(uint64_t *)key1 == *(uint64_t *)key2;
+}
diff --git a/lib/igt_map.h b/lib/igt_map.h
index cadcd6e35f..a0fbd1419f 100644
--- a/lib/igt_map.h
+++ b/lib/igt_map.h
@@ -171,4 +171,9 @@ igt_map_insert_pre_hashed(struct igt_map *map,
uint32_t hash,
const void *key, void *data);
+uint32_t igt_map_hash_32(const void *key);
+int igt_map_equal_32(const void *key1, const void *key2);
+uint32_t igt_map_hash_64(const void *key);
+int igt_map_equal_64(const void *key1, const void *key2);
+
#endif
--
2.34.1
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [igt-dev] [PATCH i-g-t 2/3] lib/intel_allocator_*: Use common hash helpers
2023-02-23 10:53 [igt-dev] [PATCH i-g-t 1/3] lib/igt_map: Add 32-bit and 64-bit hash helper functions Zbigniew Kempczyński
@ 2023-02-23 10:53 ` Zbigniew Kempczyński
2023-02-23 11:26 ` Mauro Carvalho Chehab
2023-02-23 10:53 ` [igt-dev] [PATCH i-g-t 3/3] lib/i915/gem_create: Use hash helper for gem bo pool Zbigniew Kempczyński
` (3 subsequent siblings)
4 siblings, 1 reply; 9+ messages in thread
From: Zbigniew Kempczyński @ 2023-02-23 10:53 UTC (permalink / raw)
To: igt-dev
Reduce code duplication by using common hash helpers from igt_map.
Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
---
lib/intel_allocator_reloc.c | 23 +-------------------
lib/intel_allocator_simple.c | 41 ++----------------------------------
2 files changed, 3 insertions(+), 61 deletions(-)
diff --git a/lib/intel_allocator_reloc.c b/lib/intel_allocator_reloc.c
index 60cbb88511..3aa9ebe763 100644
--- a/lib/intel_allocator_reloc.c
+++ b/lib/intel_allocator_reloc.c
@@ -34,27 +34,6 @@ struct intel_allocator_record {
/* Keep the low 256k clear, for negative deltas */
#define BIAS (256 << 10)
-/* 2^31 + 2^29 - 2^25 + 2^22 - 2^19 - 2^16 + 1 */
-#define GOLDEN_RATIO_PRIME_32 0x9e370001UL
-
-/* 2^63 + 2^61 - 2^57 + 2^54 - 2^51 - 2^18 + 1 */
-#define GOLDEN_RATIO_PRIME_64 0x9e37fffffffc0001ULL
-
-static inline uint32_t hash_handles(const void *val)
-{
- uint32_t hash = *(uint32_t *) val;
-
- hash = hash * GOLDEN_RATIO_PRIME_32;
- return hash;
-}
-
-static int equal_handles(const void *a, const void *b)
-{
- uint32_t *key1 = (uint32_t *) a, *key2 = (uint32_t *) b;
-
- return *key1 == *key2;
-}
-
static void map_entry_free_func(struct igt_map_entry *entry)
{
free(entry->data);
@@ -252,7 +231,7 @@ intel_allocator_reloc_create(int fd, uint64_t start, uint64_t end)
ialr = ial->priv = calloc(1, sizeof(*ialr));
igt_assert(ial->priv);
- ialr->objects = igt_map_create(hash_handles, equal_handles);
+ ialr->objects = igt_map_create(igt_map_hash_32, igt_map_equal_32);
ialr->prng = (uint32_t) to_user_pointer(ial);
start = max_t(uint64_t, start, BIAS);
diff --git a/lib/intel_allocator_simple.c b/lib/intel_allocator_simple.c
index 8d5105f114..3d5e45870e 100644
--- a/lib/intel_allocator_simple.c
+++ b/lib/intel_allocator_simple.c
@@ -59,43 +59,6 @@ struct intel_allocator_record {
#define simple_vma_foreach_hole_safe_rev(_hole, _heap, _tmp) \
igt_list_for_each_entry_safe_reverse(_hole, _tmp, &(_heap)->holes, link)
-/* 2^31 + 2^29 - 2^25 + 2^22 - 2^19 - 2^16 + 1 */
-#define GOLDEN_RATIO_PRIME_32 0x9e370001UL
-
-/* 2^63 + 2^61 - 2^57 + 2^54 - 2^51 - 2^18 + 1 */
-#define GOLDEN_RATIO_PRIME_64 0x9e37fffffffc0001ULL
-
-static inline uint32_t hash_handles(const void *val)
-{
- uint32_t hash = *(uint32_t *) val;
-
- hash = hash * GOLDEN_RATIO_PRIME_32;
- return hash;
-}
-
-static int equal_handles(const void *a, const void *b)
-{
- uint32_t *key1 = (uint32_t *) a, *key2 = (uint32_t *) b;
-
- return *key1 == *key2;
-}
-
-static inline uint32_t hash_offsets(const void *val)
-{
- uint64_t hash = *(uint64_t *) val;
-
- hash = hash * GOLDEN_RATIO_PRIME_64;
- /* High bits are more random, so use them. */
- return hash >> 32;
-}
-
-static int equal_offsets(const void *a, const void *b)
-{
- uint64_t *key1 = (uint64_t *) a, *key2 = (uint64_t *) b;
-
- return *key1 == *key2;
-}
-
static void map_entry_free_func(struct igt_map_entry *entry)
{
free(entry->data);
@@ -755,8 +718,8 @@ intel_allocator_simple_create(int fd, uint64_t start, uint64_t end,
ials = ial->priv = malloc(sizeof(struct intel_allocator_simple));
igt_assert(ials);
- ials->objects = igt_map_create(hash_handles, equal_handles);
- ials->reserved = igt_map_create(hash_offsets, equal_offsets);
+ ials->objects = igt_map_create(igt_map_hash_32, igt_map_equal_32);
+ ials->reserved = igt_map_create(igt_map_hash_64, igt_map_equal_64);
igt_assert(ials->objects && ials->reserved);
ials->start = start;
--
2.34.1
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [igt-dev] [PATCH i-g-t 3/3] lib/i915/gem_create: Use hash helper for gem bo pool
2023-02-23 10:53 [igt-dev] [PATCH i-g-t 1/3] lib/igt_map: Add 32-bit and 64-bit hash helper functions Zbigniew Kempczyński
2023-02-23 10:53 ` [igt-dev] [PATCH i-g-t 2/3] lib/intel_allocator_*: Use common hash helpers Zbigniew Kempczyński
@ 2023-02-23 10:53 ` Zbigniew Kempczyński
2023-02-23 11:26 ` Mauro Carvalho Chehab
2023-02-23 11:26 ` [igt-dev] [PATCH i-g-t 1/3] lib/igt_map: Add 32-bit and 64-bit hash helper functions Mauro Carvalho Chehab
` (2 subsequent siblings)
4 siblings, 1 reply; 9+ messages in thread
From: Zbigniew Kempczyński @ 2023-02-23 10:53 UTC (permalink / raw)
To: igt-dev
Remove local 64-bit hash and use common one defined in igt_map.
Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
---
lib/i915/gem_create.c | 11 +----------
1 file changed, 1 insertion(+), 10 deletions(-)
diff --git a/lib/i915/gem_create.c b/lib/i915/gem_create.c
index 1f9b7fcc01..99c839d7db 100644
--- a/lib/i915/gem_create.c
+++ b/lib/i915/gem_create.c
@@ -252,15 +252,6 @@ void gem_pool_dump(void)
pthread_mutex_unlock(&pool_mutex);
}
-#define GOLDEN_RATIO_PRIME_64 0x9e37fffffffc0001ULL
-static inline uint32_t hash_pool(const void *val)
-{
- uint64_t hash = *(uint64_t *) val;
-
- hash = hash * GOLDEN_RATIO_PRIME_64;
- return hash >> 32;
-}
-
static int equal_pool(const void *a, const void *b)
{
struct pool_list *p1 = (struct pool_list *) a;
@@ -356,7 +347,7 @@ void gem_pool_init(void)
{
pthread_mutex_init(&pool_mutex, NULL);
__destroy_pool(pool, &pool_mutex);
- pool = igt_map_create(hash_pool, equal_pool);
+ pool = igt_map_create(igt_map_hash_64, equal_pool);
}
igt_constructor {
--
2.34.1
^ permalink raw reply related [flat|nested] 9+ messages in thread
* Re: [igt-dev] [PATCH i-g-t 1/3] lib/igt_map: Add 32-bit and 64-bit hash helper functions
2023-02-23 10:53 [igt-dev] [PATCH i-g-t 1/3] lib/igt_map: Add 32-bit and 64-bit hash helper functions Zbigniew Kempczyński
2023-02-23 10:53 ` [igt-dev] [PATCH i-g-t 2/3] lib/intel_allocator_*: Use common hash helpers Zbigniew Kempczyński
2023-02-23 10:53 ` [igt-dev] [PATCH i-g-t 3/3] lib/i915/gem_create: Use hash helper for gem bo pool Zbigniew Kempczyński
@ 2023-02-23 11:26 ` Mauro Carvalho Chehab
2023-02-23 12:28 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/3] " Patchwork
2023-02-23 15:15 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
4 siblings, 0 replies; 9+ messages in thread
From: Mauro Carvalho Chehab @ 2023-02-23 11:26 UTC (permalink / raw)
To: Zbigniew Kempczyński; +Cc: igt-dev
On Thu, 23 Feb 2023 11:53:19 +0100
Zbigniew Kempczyński <zbigniew.kempczynski@intel.com> wrote:
> Creating igt_map requires hashing and comparing function. Common case
> is using 32-bit (like fd, etc.) or 64-bit keys (offsets) so adding
> such helpers reduces code duplication.
>
> Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
Reviewed-by: Mauro Carvalho Chehab <mchehab@kernel.org>
> ---
> lib/igt_map.c | 59 +++++++++++++++++++++++++++++++++++++++++++++++++++
> lib/igt_map.h | 5 +++++
> 2 files changed, 64 insertions(+)
>
> diff --git a/lib/igt_map.c b/lib/igt_map.c
> index da8713a186..ffa1e6beaa 100644
> --- a/lib/igt_map.c
> +++ b/lib/igt_map.c
> @@ -196,6 +196,7 @@ igt_map_search(struct igt_map *map, const void *key)
> * Returns: map entry or %NULL if no entry is found.
> * Note that the data pointer may be modified by the user.
> */
> +
> struct igt_map_entry *
> igt_map_search_entry(struct igt_map *map, const void *key)
> {
> @@ -500,3 +501,61 @@ igt_map_random_entry(struct igt_map *map,
>
> return NULL;
> }
> +
> +#define GOLDEN_RATIO_PRIME_32 0x9e370001UL
> +/**
> + * igt_map_hash_32:
> + * @key: pointer to 32-bit key
> + *
> + * Function is hashing function for 32-bit keys. Key is pointer to 32-bit
> + * value so it must be dereferenced.
> + */
> +uint32_t igt_map_hash_32(const void *key)
> +{
> + uint32_t hash = *(uint32_t *)key;
> +
> + hash = hash * GOLDEN_RATIO_PRIME_32;
> + return hash;
> +}
> +
> +/**
> + * igt_map_equal_32:
> + * @key1: pointer to first 32-bit key
> + * @key2: pointer to second 32-bit key
> + *
> + * Function compares 32-bit keys.
> + */
> +int igt_map_equal_32(const void *key1, const void *key2)
> +{
> + return *(uint32_t *)key1 == *(uint32_t *)key2;
> +}
> +
> +/* 2^63 + 2^61 - 2^57 + 2^54 - 2^51 - 2^18 + 1 */
> +#define GOLDEN_RATIO_PRIME_64 0x9e37fffffffc0001ULL
> +/**
> + * igt_map_hash_64:
> + * @key: pointer to 64-bit key
> + *
> + * Function is hashing function for 64-bit keys. Key is pointer to 64-bit
> + * value so it must be dereferenced.
> + */
> +uint32_t igt_map_hash_64(const void *key)
> +{
> + uint64_t hash = *(uint64_t *)key;
> +
> + hash = hash * GOLDEN_RATIO_PRIME_64;
> + /* High bits are more random, so use them. */
> + return hash >> 32;
> +}
> +
> +/**
> + * igt_map_equal_64:
> + * @key1: pointer to first 64-bit key
> + * @key2: pointer to second 64-bit key
> + *
> + * Function compares 64-bit keys.
> + */
> +int igt_map_equal_64(const void *key1, const void *key2)
> +{
> + return *(uint64_t *)key1 == *(uint64_t *)key2;
> +}
> diff --git a/lib/igt_map.h b/lib/igt_map.h
> index cadcd6e35f..a0fbd1419f 100644
> --- a/lib/igt_map.h
> +++ b/lib/igt_map.h
> @@ -171,4 +171,9 @@ igt_map_insert_pre_hashed(struct igt_map *map,
> uint32_t hash,
> const void *key, void *data);
>
> +uint32_t igt_map_hash_32(const void *key);
> +int igt_map_equal_32(const void *key1, const void *key2);
> +uint32_t igt_map_hash_64(const void *key);
> +int igt_map_equal_64(const void *key1, const void *key2);
> +
> #endif
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [igt-dev] [PATCH i-g-t 2/3] lib/intel_allocator_*: Use common hash helpers
2023-02-23 10:53 ` [igt-dev] [PATCH i-g-t 2/3] lib/intel_allocator_*: Use common hash helpers Zbigniew Kempczyński
@ 2023-02-23 11:26 ` Mauro Carvalho Chehab
0 siblings, 0 replies; 9+ messages in thread
From: Mauro Carvalho Chehab @ 2023-02-23 11:26 UTC (permalink / raw)
To: Zbigniew Kempczyński; +Cc: igt-dev
On Thu, 23 Feb 2023 11:53:20 +0100
Zbigniew Kempczyński <zbigniew.kempczynski@intel.com> wrote:
> Reduce code duplication by using common hash helpers from igt_map.
>
> Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
Reviewed-by: Mauro Carvalho Chehab <mchehab@kernel.org>
> ---
> lib/intel_allocator_reloc.c | 23 +-------------------
> lib/intel_allocator_simple.c | 41 ++----------------------------------
> 2 files changed, 3 insertions(+), 61 deletions(-)
>
> diff --git a/lib/intel_allocator_reloc.c b/lib/intel_allocator_reloc.c
> index 60cbb88511..3aa9ebe763 100644
> --- a/lib/intel_allocator_reloc.c
> +++ b/lib/intel_allocator_reloc.c
> @@ -34,27 +34,6 @@ struct intel_allocator_record {
> /* Keep the low 256k clear, for negative deltas */
> #define BIAS (256 << 10)
>
> -/* 2^31 + 2^29 - 2^25 + 2^22 - 2^19 - 2^16 + 1 */
> -#define GOLDEN_RATIO_PRIME_32 0x9e370001UL
> -
> -/* 2^63 + 2^61 - 2^57 + 2^54 - 2^51 - 2^18 + 1 */
> -#define GOLDEN_RATIO_PRIME_64 0x9e37fffffffc0001ULL
> -
> -static inline uint32_t hash_handles(const void *val)
> -{
> - uint32_t hash = *(uint32_t *) val;
> -
> - hash = hash * GOLDEN_RATIO_PRIME_32;
> - return hash;
> -}
> -
> -static int equal_handles(const void *a, const void *b)
> -{
> - uint32_t *key1 = (uint32_t *) a, *key2 = (uint32_t *) b;
> -
> - return *key1 == *key2;
> -}
> -
> static void map_entry_free_func(struct igt_map_entry *entry)
> {
> free(entry->data);
> @@ -252,7 +231,7 @@ intel_allocator_reloc_create(int fd, uint64_t start, uint64_t end)
>
> ialr = ial->priv = calloc(1, sizeof(*ialr));
> igt_assert(ial->priv);
> - ialr->objects = igt_map_create(hash_handles, equal_handles);
> + ialr->objects = igt_map_create(igt_map_hash_32, igt_map_equal_32);
> ialr->prng = (uint32_t) to_user_pointer(ial);
>
> start = max_t(uint64_t, start, BIAS);
> diff --git a/lib/intel_allocator_simple.c b/lib/intel_allocator_simple.c
> index 8d5105f114..3d5e45870e 100644
> --- a/lib/intel_allocator_simple.c
> +++ b/lib/intel_allocator_simple.c
> @@ -59,43 +59,6 @@ struct intel_allocator_record {
> #define simple_vma_foreach_hole_safe_rev(_hole, _heap, _tmp) \
> igt_list_for_each_entry_safe_reverse(_hole, _tmp, &(_heap)->holes, link)
>
> -/* 2^31 + 2^29 - 2^25 + 2^22 - 2^19 - 2^16 + 1 */
> -#define GOLDEN_RATIO_PRIME_32 0x9e370001UL
> -
> -/* 2^63 + 2^61 - 2^57 + 2^54 - 2^51 - 2^18 + 1 */
> -#define GOLDEN_RATIO_PRIME_64 0x9e37fffffffc0001ULL
> -
> -static inline uint32_t hash_handles(const void *val)
> -{
> - uint32_t hash = *(uint32_t *) val;
> -
> - hash = hash * GOLDEN_RATIO_PRIME_32;
> - return hash;
> -}
> -
> -static int equal_handles(const void *a, const void *b)
> -{
> - uint32_t *key1 = (uint32_t *) a, *key2 = (uint32_t *) b;
> -
> - return *key1 == *key2;
> -}
> -
> -static inline uint32_t hash_offsets(const void *val)
> -{
> - uint64_t hash = *(uint64_t *) val;
> -
> - hash = hash * GOLDEN_RATIO_PRIME_64;
> - /* High bits are more random, so use them. */
> - return hash >> 32;
> -}
> -
> -static int equal_offsets(const void *a, const void *b)
> -{
> - uint64_t *key1 = (uint64_t *) a, *key2 = (uint64_t *) b;
> -
> - return *key1 == *key2;
> -}
> -
> static void map_entry_free_func(struct igt_map_entry *entry)
> {
> free(entry->data);
> @@ -755,8 +718,8 @@ intel_allocator_simple_create(int fd, uint64_t start, uint64_t end,
> ials = ial->priv = malloc(sizeof(struct intel_allocator_simple));
> igt_assert(ials);
>
> - ials->objects = igt_map_create(hash_handles, equal_handles);
> - ials->reserved = igt_map_create(hash_offsets, equal_offsets);
> + ials->objects = igt_map_create(igt_map_hash_32, igt_map_equal_32);
> + ials->reserved = igt_map_create(igt_map_hash_64, igt_map_equal_64);
> igt_assert(ials->objects && ials->reserved);
>
> ials->start = start;
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [igt-dev] [PATCH i-g-t 3/3] lib/i915/gem_create: Use hash helper for gem bo pool
2023-02-23 10:53 ` [igt-dev] [PATCH i-g-t 3/3] lib/i915/gem_create: Use hash helper for gem bo pool Zbigniew Kempczyński
@ 2023-02-23 11:26 ` Mauro Carvalho Chehab
0 siblings, 0 replies; 9+ messages in thread
From: Mauro Carvalho Chehab @ 2023-02-23 11:26 UTC (permalink / raw)
To: Zbigniew Kempczyński; +Cc: igt-dev
On Thu, 23 Feb 2023 11:53:21 +0100
Zbigniew Kempczyński <zbigniew.kempczynski@intel.com> wrote:
> Remove local 64-bit hash and use common one defined in igt_map.
>
> Signed-off-by: Zbigniew Kempczyński <zbigniew.kempczynski@intel.com>
Reviewed-by: Mauro Carvalho Chehab <mchehab@kernel.org>
> ---
> lib/i915/gem_create.c | 11 +----------
> 1 file changed, 1 insertion(+), 10 deletions(-)
>
> diff --git a/lib/i915/gem_create.c b/lib/i915/gem_create.c
> index 1f9b7fcc01..99c839d7db 100644
> --- a/lib/i915/gem_create.c
> +++ b/lib/i915/gem_create.c
> @@ -252,15 +252,6 @@ void gem_pool_dump(void)
> pthread_mutex_unlock(&pool_mutex);
> }
>
> -#define GOLDEN_RATIO_PRIME_64 0x9e37fffffffc0001ULL
> -static inline uint32_t hash_pool(const void *val)
> -{
> - uint64_t hash = *(uint64_t *) val;
> -
> - hash = hash * GOLDEN_RATIO_PRIME_64;
> - return hash >> 32;
> -}
> -
> static int equal_pool(const void *a, const void *b)
> {
> struct pool_list *p1 = (struct pool_list *) a;
> @@ -356,7 +347,7 @@ void gem_pool_init(void)
> {
> pthread_mutex_init(&pool_mutex, NULL);
> __destroy_pool(pool, &pool_mutex);
> - pool = igt_map_create(hash_pool, equal_pool);
> + pool = igt_map_create(igt_map_hash_64, equal_pool);
> }
>
> igt_constructor {
^ permalink raw reply [flat|nested] 9+ messages in thread
* [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/3] lib/igt_map: Add 32-bit and 64-bit hash helper functions
2023-02-23 10:53 [igt-dev] [PATCH i-g-t 1/3] lib/igt_map: Add 32-bit and 64-bit hash helper functions Zbigniew Kempczyński
` (2 preceding siblings ...)
2023-02-23 11:26 ` [igt-dev] [PATCH i-g-t 1/3] lib/igt_map: Add 32-bit and 64-bit hash helper functions Mauro Carvalho Chehab
@ 2023-02-23 12:28 ` Patchwork
2023-02-23 15:15 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
4 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2023-02-23 12:28 UTC (permalink / raw)
To: Zbigniew Kempczyński; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 5477 bytes --]
== Series Details ==
Series: series starting with [i-g-t,1/3] lib/igt_map: Add 32-bit and 64-bit hash helper functions
URL : https://patchwork.freedesktop.org/series/114287/
State : success
== Summary ==
CI Bug Log - changes from IGT_7170 -> IGTPW_8521
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8521/index.html
Participating hosts (39 -> 38)
------------------------------
Missing (1): fi-snb-2520m
Known issues
------------
Here are the changes found in IGTPW_8521 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_lmem_swapping@random-engines:
- bat-adlp-6: NOTRUN -> [SKIP][1] ([i915#4613]) +3 similar issues
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8521/bat-adlp-6/igt@gem_lmem_swapping@random-engines.html
* igt@i915_pm_rps@basic-api:
- bat-adlp-6: NOTRUN -> [SKIP][2] ([i915#6621])
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8521/bat-adlp-6/igt@i915_pm_rps@basic-api.html
* igt@i915_selftest@live@reset:
- bat-rpls-2: [PASS][3] -> [ABORT][4] ([i915#4983])
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7170/bat-rpls-2/igt@i915_selftest@live@reset.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8521/bat-rpls-2/igt@i915_selftest@live@reset.html
- bat-rpls-1: [PASS][5] -> [ABORT][6] ([i915#4983])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7170/bat-rpls-1/igt@i915_selftest@live@reset.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8521/bat-rpls-1/igt@i915_selftest@live@reset.html
* igt@kms_chamelium_hpd@common-hpd-after-suspend:
- bat-adlp-6: NOTRUN -> [SKIP][7] ([i915#7828])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8521/bat-adlp-6/igt@kms_chamelium_hpd@common-hpd-after-suspend.html
- bat-adln-1: NOTRUN -> [SKIP][8] ([i915#7828])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8521/bat-adln-1/igt@kms_chamelium_hpd@common-hpd-after-suspend.html
* igt@prime_vgem@basic-fence-read:
- bat-adlp-6: NOTRUN -> [SKIP][9] ([fdo#109295] / [i915#3291] / [i915#3708]) +2 similar issues
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8521/bat-adlp-6/igt@prime_vgem@basic-fence-read.html
* igt@prime_vgem@basic-userptr:
- bat-adlp-6: NOTRUN -> [SKIP][10] ([fdo#109295] / [i915#3301] / [i915#3708])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8521/bat-adlp-6/igt@prime_vgem@basic-userptr.html
#### Possible fixes ####
* igt@dmabuf@all-tests@dma_fence:
- bat-adln-1: [DMESG-FAIL][11] -> [PASS][12]
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7170/bat-adln-1/igt@dmabuf@all-tests@dma_fence.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8521/bat-adln-1/igt@dmabuf@all-tests@dma_fence.html
* igt@dmabuf@all-tests@sanitycheck:
- bat-adln-1: [ABORT][13] -> [PASS][14]
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7170/bat-adln-1/igt@dmabuf@all-tests@sanitycheck.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8521/bat-adln-1/igt@dmabuf@all-tests@sanitycheck.html
* igt@i915_pm_rpm@basic-rte:
- bat-adlp-6: [ABORT][15] ([i915#7977]) -> [PASS][16]
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7170/bat-adlp-6/igt@i915_pm_rpm@basic-rte.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8521/bat-adlp-6/igt@i915_pm_rpm@basic-rte.html
* igt@i915_selftest@live@migrate:
- bat-dg2-11: [DMESG-FAIL][17] ([i915#7699]) -> [PASS][18]
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7170/bat-dg2-11/igt@i915_selftest@live@migrate.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8521/bat-dg2-11/igt@i915_selftest@live@migrate.html
* igt@kms_flip@basic-flip-vs-wf_vblank@b-vga1:
- fi-pnv-d510: [FAIL][19] ([i915#2122]) -> [PASS][20]
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7170/fi-pnv-d510/igt@kms_flip@basic-flip-vs-wf_vblank@b-vga1.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8521/fi-pnv-d510/igt@kms_flip@basic-flip-vs-wf_vblank@b-vga1.html
[fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295
[i915#2122]: https://gitlab.freedesktop.org/drm/intel/issues/2122
[i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291
[i915#3301]: https://gitlab.freedesktop.org/drm/intel/issues/3301
[i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983
[i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
[i915#7699]: https://gitlab.freedesktop.org/drm/intel/issues/7699
[i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
[i915#7977]: https://gitlab.freedesktop.org/drm/intel/issues/7977
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7170 -> IGTPW_8521
CI-20190529: 20190529
CI_DRM_12771: ece65b96d1b8f85b072394700a32cd30831c4f33 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_8521: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8521/index.html
IGT_7170: e6d15f2d2f299ce70206a40609bebf661f7fdc65 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8521/index.html
[-- Attachment #2: Type: text/html, Size: 6650 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* [igt-dev] ✗ Fi.CI.IGT: failure for series starting with [i-g-t,1/3] lib/igt_map: Add 32-bit and 64-bit hash helper functions
2023-02-23 10:53 [igt-dev] [PATCH i-g-t 1/3] lib/igt_map: Add 32-bit and 64-bit hash helper functions Zbigniew Kempczyński
` (3 preceding siblings ...)
2023-02-23 12:28 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/3] " Patchwork
@ 2023-02-23 15:15 ` Patchwork
2023-02-23 17:07 ` Zbigniew Kempczyński
4 siblings, 1 reply; 9+ messages in thread
From: Patchwork @ 2023-02-23 15:15 UTC (permalink / raw)
To: Zbigniew Kempczyński; +Cc: igt-dev
[-- Attachment #1: Type: text/plain, Size: 38665 bytes --]
== Series Details ==
Series: series starting with [i-g-t,1/3] lib/igt_map: Add 32-bit and 64-bit hash helper functions
URL : https://patchwork.freedesktop.org/series/114287/
State : failure
== Summary ==
CI Bug Log - changes from IGT_7170_full -> IGTPW_8521_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with IGTPW_8521_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in IGTPW_8521_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_8521/index.html
Participating hosts (9 -> 9)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in IGTPW_8521_full:
### IGT changes ###
#### Possible regressions ####
* igt@i915_selftest@live@migrate:
- shard-glk: [PASS][1] -> [DMESG-FAIL][2]
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7170/shard-glk1/igt@i915_selftest@live@migrate.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8521/shard-glk1/igt@i915_selftest@live@migrate.html
#### Suppressed ####
The following results come from untrusted machines, tests, or statuses.
They do not affect the overall result.
* {igt@kms_hdr@invalid-hdr}:
- {shard-tglu}: NOTRUN -> [SKIP][3]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8521/shard-tglu-4/igt@kms_hdr@invalid-hdr.html
* {igt@kms_hdr@invalid-metadata-sizes}:
- shard-tglu-10: NOTRUN -> [SKIP][4]
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8521/shard-tglu-10/igt@kms_hdr@invalid-metadata-sizes.html
Known issues
------------
Here are the changes found in IGTPW_8521_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@debugfs_test@basic-hwmon:
- shard-tglu-10: NOTRUN -> [SKIP][5] ([i915#7456])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8521/shard-tglu-10/igt@debugfs_test@basic-hwmon.html
* igt@drm_mm@all-tests:
- shard-tglu-10: NOTRUN -> [SKIP][6] ([i915#6433])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8521/shard-tglu-10/igt@drm_mm@all-tests.html
* igt@feature_discovery@display-2x:
- shard-tglu-10: NOTRUN -> [SKIP][7] ([i915#1839])
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8521/shard-tglu-10/igt@feature_discovery@display-2x.html
* igt@gem_ccs@suspend-resume:
- shard-tglu-10: NOTRUN -> [SKIP][8] ([i915#5325])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8521/shard-tglu-10/igt@gem_ccs@suspend-resume.html
* igt@gem_exec_fair@basic-none@rcs0:
- shard-tglu-10: NOTRUN -> [FAIL][9] ([i915#2842]) +6 similar issues
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8521/shard-tglu-10/igt@gem_exec_fair@basic-none@rcs0.html
* igt@gem_exec_fair@basic-throttle@rcs0:
- shard-glk: [PASS][10] -> [FAIL][11] ([i915#2842]) +2 similar issues
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7170/shard-glk5/igt@gem_exec_fair@basic-throttle@rcs0.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8521/shard-glk1/igt@gem_exec_fair@basic-throttle@rcs0.html
* igt@gem_exec_params@rsvd2-dirt:
- shard-tglu-10: NOTRUN -> [SKIP][12] ([fdo#109283])
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8521/shard-tglu-10/igt@gem_exec_params@rsvd2-dirt.html
* igt@gem_lmem_swapping@heavy-verify-multi-ccs:
- shard-tglu-10: NOTRUN -> [SKIP][13] ([i915#4613]) +4 similar issues
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8521/shard-tglu-10/igt@gem_lmem_swapping@heavy-verify-multi-ccs.html
* igt@gem_lmem_swapping@heavy-verify-random-ccs:
- shard-apl: NOTRUN -> [SKIP][14] ([fdo#109271] / [i915#4613])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8521/shard-apl7/igt@gem_lmem_swapping@heavy-verify-random-ccs.html
* igt@gem_pxp@create-regular-buffer:
- shard-tglu-10: NOTRUN -> [SKIP][15] ([i915#4270]) +2 similar issues
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8521/shard-tglu-10/igt@gem_pxp@create-regular-buffer.html
* igt@gem_userptr_blits@readonly-pwrite-unsync:
- shard-tglu-10: NOTRUN -> [SKIP][16] ([i915#3297]) +2 similar issues
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8521/shard-tglu-10/igt@gem_userptr_blits@readonly-pwrite-unsync.html
* igt@gen9_exec_parse@batch-without-end:
- shard-tglu-10: NOTRUN -> [SKIP][17] ([i915#2527] / [i915#2856]) +3 similar issues
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8521/shard-tglu-10/igt@gen9_exec_parse@batch-without-end.html
* igt@i915_pm_rpm@modeset-pc8-residency-stress:
- shard-tglu-10: NOTRUN -> [SKIP][18] ([fdo#109506]) +1 similar issue
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8521/shard-tglu-10/igt@i915_pm_rpm@modeset-pc8-residency-stress.html
* igt@i915_query@query-topology-known-pci-ids:
- shard-tglu-10: NOTRUN -> [SKIP][19] ([fdo#109303])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8521/shard-tglu-10/igt@i915_query@query-topology-known-pci-ids.html
* igt@i915_query@test-query-geometry-subslices:
- shard-tglu-10: NOTRUN -> [SKIP][20] ([i915#5723])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8521/shard-tglu-10/igt@i915_query@test-query-geometry-subslices.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
- shard-tglu-10: NOTRUN -> [SKIP][21] ([i915#5286]) +6 similar issues
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8521/shard-tglu-10/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_fb@linear-32bpp-rotate-90:
- shard-tglu-10: NOTRUN -> [SKIP][22] ([fdo#111614])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8521/shard-tglu-10/igt@kms_big_fb@linear-32bpp-rotate-90.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-tglu-10: NOTRUN -> [SKIP][23] ([fdo#111615]) +7 similar issues
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8521/shard-tglu-10/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_big_joiner@2x-modeset:
- shard-tglu-10: NOTRUN -> [SKIP][24] ([i915#2705]) +1 similar issue
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8521/shard-tglu-10/igt@kms_big_joiner@2x-modeset.html
* igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_mc_ccs:
- shard-tglu-10: NOTRUN -> [SKIP][25] ([i915#3689] / [i915#3886]) +5 similar issues
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8521/shard-tglu-10/igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-a-bad-rotation-90-4_tiled_dg2_rc_ccs:
- shard-tglu-10: NOTRUN -> [SKIP][26] ([i915#3689] / [i915#6095]) +6 similar issues
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8521/shard-tglu-10/igt@kms_ccs@pipe-a-bad-rotation-90-4_tiled_dg2_rc_ccs.html
* igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_rc_ccs_cc:
- shard-apl: NOTRUN -> [SKIP][27] ([fdo#109271] / [i915#3886]) +1 similar issue
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8521/shard-apl1/igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_rc_ccs_cc.html
* igt@kms_ccs@pipe-c-bad-aux-stride-yf_tiled_ccs:
- shard-tglu-10: NOTRUN -> [SKIP][28] ([fdo#111615] / [i915#3689]) +8 similar issues
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8521/shard-tglu-10/igt@kms_ccs@pipe-c-bad-aux-stride-yf_tiled_ccs.html
* igt@kms_ccs@pipe-c-random-ccs-data-4_tiled_dg2_mc_ccs:
- shard-tglu-10: NOTRUN -> [SKIP][29] ([i915#6095]) +7 similar issues
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8521/shard-tglu-10/igt@kms_ccs@pipe-c-random-ccs-data-4_tiled_dg2_mc_ccs.html
* igt@kms_ccs@pipe-d-crc-primary-rotation-180-4_tiled_dg2_mc_ccs:
- shard-tglu-10: NOTRUN -> [SKIP][30] ([i915#3689]) +8 similar issues
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8521/shard-tglu-10/igt@kms_ccs@pipe-d-crc-primary-rotation-180-4_tiled_dg2_mc_ccs.html
* igt@kms_chamelium_color@gamma:
- shard-tglu-10: NOTRUN -> [SKIP][31] ([fdo#111827]) +1 similar issue
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8521/shard-tglu-10/igt@kms_chamelium_color@gamma.html
* igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k:
- shard-tglu-10: NOTRUN -> [SKIP][32] ([i915#7828]) +9 similar issues
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8521/shard-tglu-10/igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k.html
* igt@kms_color@ctm-max@pipe-a-hdmi-a-1:
- shard-snb: NOTRUN -> [SKIP][33] ([fdo#109271]) +43 similar issues
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8521/shard-snb1/igt@kms_color@ctm-max@pipe-a-hdmi-a-1.html
* igt@kms_content_protection@lic:
- shard-tglu-10: NOTRUN -> [SKIP][34] ([i915#6944] / [i915#7116] / [i915#7118]) +2 similar issues
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8521/shard-tglu-10/igt@kms_content_protection@lic.html
* igt@kms_content_protection@srm@pipe-a-dp-1:
- shard-apl: NOTRUN -> [TIMEOUT][35] ([i915#7173])
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8521/shard-apl7/igt@kms_content_protection@srm@pipe-a-dp-1.html
* igt@kms_cursor_crc@cursor-offscreen-512x512:
- shard-tglu-10: NOTRUN -> [SKIP][36] ([i915#3359])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8521/shard-tglu-10/igt@kms_cursor_crc@cursor-offscreen-512x512.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
- shard-tglu-10: NOTRUN -> [SKIP][37] ([fdo#109274]) +5 similar issues
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8521/shard-tglu-10/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
- shard-apl: [PASS][38] -> [FAIL][39] ([i915#2346])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7170/shard-apl4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8521/shard-apl3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-tglu-10: NOTRUN -> [SKIP][40] ([i915#4103])
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8521/shard-tglu-10/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-tglu-10: NOTRUN -> [SKIP][41] ([i915#3840])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8521/shard-tglu-10/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-tglu-10: NOTRUN -> [SKIP][42] ([i915#3469])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8521/shard-tglu-10/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_flip@2x-absolute-wf_vblank:
- shard-tglu-10: NOTRUN -> [SKIP][43] ([fdo#109274] / [i915#3637] / [i915#3966])
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8521/shard-tglu-10/igt@kms_flip@2x-absolute-wf_vblank.html
* igt@kms_flip@2x-flip-vs-expired-vblank@ac-hdmi-a1-hdmi-a2:
- shard-glk: [PASS][44] -> [FAIL][45] ([i915#79]) +2 similar issues
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7170/shard-glk9/igt@kms_flip@2x-flip-vs-expired-vblank@ac-hdmi-a1-hdmi-a2.html
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8521/shard-glk1/igt@kms_flip@2x-flip-vs-expired-vblank@ac-hdmi-a1-hdmi-a2.html
* igt@kms_flip@2x-flip-vs-suspend:
- shard-tglu-10: NOTRUN -> [SKIP][46] ([fdo#109274] / [i915#3637]) +8 similar issues
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8521/shard-tglu-10/igt@kms_flip@2x-flip-vs-suspend.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode:
- shard-tglu-10: NOTRUN -> [SKIP][47] ([i915#2587] / [i915#2672]) +3 similar issues
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8521/shard-tglu-10/igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@fbcpsr-suspend:
- shard-tglu-10: NOTRUN -> [SKIP][48] ([fdo#110189]) +33 similar issues
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8521/shard-tglu-10/igt@kms_frontbuffer_tracking@fbcpsr-suspend.html
* igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
- shard-tglu-10: NOTRUN -> [SKIP][49] ([i915#5439]) +1 similar issue
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8521/shard-tglu-10/igt@kms_frontbuffer_tracking@fbcpsr-tiling-4.html
* igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt:
- shard-tglu-10: NOTRUN -> [SKIP][50] ([fdo#109280]) +40 similar issues
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8521/shard-tglu-10/igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt.html
* igt@kms_panel_fitting@atomic-fastset:
- shard-tglu-10: NOTRUN -> [SKIP][51] ([i915#6301])
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8521/shard-tglu-10/igt@kms_panel_fitting@atomic-fastset.html
* igt@kms_pipe_b_c_ivb@pipe-b-double-modeset-then-modeset-pipe-c:
- shard-tglu-10: NOTRUN -> [SKIP][52] ([fdo#109289]) +3 similar issues
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8521/shard-tglu-10/igt@kms_pipe_b_c_ivb@pipe-b-double-modeset-then-modeset-pipe-c.html
* igt@kms_plane_lowres@tiling-4:
- shard-tglu-10: NOTRUN -> [SKIP][53] ([fdo#112054] / [i915#5288]) +1 similar issue
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8521/shard-tglu-10/igt@kms_plane_lowres@tiling-4.html
* igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-75@pipe-a-hdmi-a-1:
- shard-tglu-10: NOTRUN -> [SKIP][54] ([i915#5176]) +11 similar issues
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8521/shard-tglu-10/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-75@pipe-a-hdmi-a-1.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-1:
- shard-tglu-10: NOTRUN -> [SKIP][55] ([i915#5235]) +3 similar issues
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8521/shard-tglu-10/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-1.html
* igt@kms_prime@basic-modeset-hybrid:
- shard-tglu-10: NOTRUN -> [SKIP][56] ([i915#6524])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8521/shard-tglu-10/igt@kms_prime@basic-modeset-hybrid.html
* igt@kms_psr2_sf@overlay-plane-move-continuous-sf:
- shard-tglu-10: NOTRUN -> [SKIP][57] ([i915#658]) +2 similar issues
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8521/shard-tglu-10/igt@kms_psr2_sf@overlay-plane-move-continuous-sf.html
* igt@kms_psr2_sf@overlay-plane-update-continuous-sf:
- shard-tglu-10: NOTRUN -> [SKIP][58] ([fdo#111068] / [i915#658]) +1 similar issue
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8521/shard-tglu-10/igt@kms_psr2_sf@overlay-plane-update-continuous-sf.html
* igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
- shard-tglu-10: NOTRUN -> [SKIP][59] ([i915#5461])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8521/shard-tglu-10/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
* igt@kms_setmode@basic@pipe-a-vga-1:
- shard-snb: NOTRUN -> [FAIL][60] ([i915#5465]) +1 similar issue
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8521/shard-snb7/igt@kms_setmode@basic@pipe-a-vga-1.html
* igt@kms_tv_load_detect@load-detect:
- shard-tglu-10: NOTRUN -> [SKIP][61] ([fdo#109309])
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8521/shard-tglu-10/igt@kms_tv_load_detect@load-detect.html
* igt@kms_vblank@pipe-d-ts-continuation-dpms-rpm:
- shard-apl: NOTRUN -> [SKIP][62] ([fdo#109271]) +26 similar issues
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8521/shard-apl1/igt@kms_vblank@pipe-d-ts-continuation-dpms-rpm.html
* igt@kms_vrr@negative-basic:
- shard-tglu-10: NOTRUN -> [SKIP][63] ([i915#3555]) +4 similar issues
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8521/shard-tglu-10/igt@kms_vrr@negative-basic.html
* igt@kms_writeback@writeback-pixel-formats:
- shard-tglu-10: NOTRUN -> [SKIP][64] ([i915#2437]) +1 similar issue
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8521/shard-tglu-10/igt@kms_writeback@writeback-pixel-formats.html
* igt@v3d/v3d_get_param@get-bad-flags:
- shard-tglu-10: NOTRUN -> [SKIP][65] ([fdo#109315] / [i915#2575]) +4 similar issues
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8521/shard-tglu-10/igt@v3d/v3d_get_param@get-bad-flags.html
* igt@vc4/vc4_purgeable_bo@mark-willneed:
- shard-tglu-10: NOTRUN -> [SKIP][66] ([i915#2575]) +9 similar issues
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8521/shard-tglu-10/igt@vc4/vc4_purgeable_bo@mark-willneed.html
#### Possible fixes ####
* igt@device_reset@unbind-reset-rebind:
- {shard-rkl}: [FAIL][67] ([i915#4778]) -> [PASS][68]
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7170/shard-rkl-5/igt@device_reset@unbind-reset-rebind.html
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8521/shard-rkl-3/igt@device_reset@unbind-reset-rebind.html
* igt@drm_fdinfo@most-busy-idle-check-all@rcs0:
- {shard-rkl}: [FAIL][69] ([i915#7742]) -> [PASS][70]
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7170/shard-rkl-6/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8521/shard-rkl-1/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html
* igt@fbdev@unaligned-write:
- {shard-rkl}: [SKIP][71] ([i915#2582]) -> [PASS][72]
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7170/shard-rkl-3/igt@fbdev@unaligned-write.html
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8521/shard-rkl-6/igt@fbdev@unaligned-write.html
* igt@gem_ctx_persistence@heartbeat-many:
- {shard-rkl}: [SKIP][73] ([fdo#109315]) -> [PASS][74] +9 similar issues
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7170/shard-rkl-5/igt@gem_ctx_persistence@heartbeat-many.html
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8521/shard-rkl-5/igt@gem_ctx_persistence@heartbeat-many.html
* igt@gem_exec_fair@basic-none-rrul@rcs0:
- {shard-rkl}: [FAIL][75] ([i915#2842]) -> [PASS][76]
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7170/shard-rkl-2/igt@gem_exec_fair@basic-none-rrul@rcs0.html
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8521/shard-rkl-5/igt@gem_exec_fair@basic-none-rrul@rcs0.html
* igt@gem_exec_fair@basic-none-solo@rcs0:
- shard-apl: [FAIL][77] ([i915#2842]) -> [PASS][78]
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7170/shard-apl7/igt@gem_exec_fair@basic-none-solo@rcs0.html
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8521/shard-apl6/igt@gem_exec_fair@basic-none-solo@rcs0.html
* igt@gem_exec_fair@basic-pace@vcs0:
- shard-glk: [FAIL][79] ([i915#2842]) -> [PASS][80] +2 similar issues
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7170/shard-glk5/igt@gem_exec_fair@basic-pace@vcs0.html
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8521/shard-glk6/igt@gem_exec_fair@basic-pace@vcs0.html
* igt@gem_exec_reloc@basic-gtt:
- {shard-rkl}: [SKIP][81] ([i915#3281]) -> [PASS][82] +3 similar issues
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7170/shard-rkl-4/igt@gem_exec_reloc@basic-gtt.html
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8521/shard-rkl-5/igt@gem_exec_reloc@basic-gtt.html
* igt@gem_mmap_gtt@coherency:
- {shard-rkl}: [SKIP][83] ([fdo#111656]) -> [PASS][84]
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7170/shard-rkl-1/igt@gem_mmap_gtt@coherency.html
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8521/shard-rkl-5/igt@gem_mmap_gtt@coherency.html
* igt@gem_pwrite@basic-self:
- {shard-rkl}: [SKIP][85] ([i915#3282]) -> [PASS][86]
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7170/shard-rkl-2/igt@gem_pwrite@basic-self.html
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8521/shard-rkl-5/igt@gem_pwrite@basic-self.html
* igt@gen9_exec_parse@bb-secure:
- {shard-rkl}: [SKIP][87] ([i915#2527]) -> [PASS][88]
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7170/shard-rkl-1/igt@gen9_exec_parse@bb-secure.html
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8521/shard-rkl-5/igt@gen9_exec_parse@bb-secure.html
* igt@i915_pipe_stress@stress-xrgb8888-ytiled:
- {shard-rkl}: [SKIP][89] ([i915#4098]) -> [PASS][90]
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7170/shard-rkl-5/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8521/shard-rkl-6/igt@i915_pipe_stress@stress-xrgb8888-ytiled.html
* igt@i915_pm_dc@dc6-psr:
- {shard-rkl}: [SKIP][91] ([i915#658]) -> [PASS][92]
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7170/shard-rkl-3/igt@i915_pm_dc@dc6-psr.html
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8521/shard-rkl-6/igt@i915_pm_dc@dc6-psr.html
* igt@i915_pm_dc@dc9-dpms:
- {shard-tglu}: [SKIP][93] ([i915#4281]) -> [PASS][94]
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7170/shard-tglu-1/igt@i915_pm_dc@dc9-dpms.html
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8521/shard-tglu-2/igt@i915_pm_dc@dc9-dpms.html
* igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a:
- {shard-tglu}: [FAIL][95] ([i915#3825]) -> [PASS][96]
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7170/shard-tglu-5/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8521/shard-tglu-1/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html
* igt@i915_pm_rpm@system-suspend-devices:
- {shard-rkl}: [SKIP][97] ([i915#5174]) -> [PASS][98]
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7170/shard-rkl-5/igt@i915_pm_rpm@system-suspend-devices.html
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8521/shard-rkl-1/igt@i915_pm_rpm@system-suspend-devices.html
* igt@i915_suspend@basic-s2idle-without-i915:
- {shard-rkl}: [FAIL][99] ([fdo#103375]) -> [PASS][100]
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7170/shard-rkl-3/igt@i915_suspend@basic-s2idle-without-i915.html
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8521/shard-rkl-3/igt@i915_suspend@basic-s2idle-without-i915.html
* igt@kms_ccs@pipe-b-bad-pixel-format-y_tiled_gen12_rc_ccs_cc:
- {shard-rkl}: [SKIP][101] ([i915#1845] / [i915#4098]) -> [PASS][102] +5 similar issues
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7170/shard-rkl-2/igt@kms_ccs@pipe-b-bad-pixel-format-y_tiled_gen12_rc_ccs_cc.html
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8521/shard-rkl-6/igt@kms_ccs@pipe-b-bad-pixel-format-y_tiled_gen12_rc_ccs_cc.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-apl: [FAIL][103] ([i915#2346]) -> [PASS][104]
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7170/shard-apl1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8521/shard-apl7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
- shard-glk: [FAIL][105] ([i915#2346]) -> [PASS][106]
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7170/shard-glk7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8521/shard-glk9/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a2:
- shard-glk: [FAIL][107] ([i915#79]) -> [PASS][108]
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7170/shard-glk9/igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a2.html
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8521/shard-glk6/igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a2.html
* igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt:
- {shard-rkl}: [SKIP][109] ([i915#1849] / [i915#4098]) -> [PASS][110] +4 similar issues
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7170/shard-rkl-1/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt.html
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8521/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt.html
* igt@kms_psr@primary_blt:
- {shard-rkl}: [SKIP][111] ([i915#1072]) -> [PASS][112]
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7170/shard-rkl-5/igt@kms_psr@primary_blt.html
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8521/shard-rkl-6/igt@kms_psr@primary_blt.html
* igt@perf_pmu@cpu-hotplug:
- {shard-rkl}: [SKIP][113] ([i915#5608]) -> [PASS][114] +1 similar issue
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7170/shard-rkl-5/igt@perf_pmu@cpu-hotplug.html
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8521/shard-rkl-3/igt@perf_pmu@cpu-hotplug.html
* igt@prime_vgem@basic-write:
- {shard-rkl}: [SKIP][115] ([fdo#109295] / [i915#3291] / [i915#3708]) -> [PASS][116]
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7170/shard-rkl-3/igt@prime_vgem@basic-write.html
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8521/shard-rkl-5/igt@prime_vgem@basic-write.html
* igt@prime_vgem@coherency-gtt:
- {shard-rkl}: [SKIP][117] ([fdo#109295] / [fdo#111656] / [i915#3708]) -> [PASS][118]
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7170/shard-rkl-1/igt@prime_vgem@coherency-gtt.html
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8521/shard-rkl-5/igt@prime_vgem@coherency-gtt.html
* igt@syncobj_wait@wait-any-interrupted:
- {shard-rkl}: [SKIP][119] ([i915#2575]) -> [PASS][120] +3 similar issues
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7170/shard-rkl-5/igt@syncobj_wait@wait-any-interrupted.html
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8521/shard-rkl-1/igt@syncobj_wait@wait-any-interrupted.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
[fdo#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279
[fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
[fdo#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283
[fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
[fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295
[fdo#109303]: https://bugs.freedesktop.org/show_bug.cgi?id=109303
[fdo#109307]: https://bugs.freedesktop.org/show_bug.cgi?id=109307
[fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309
[fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314
[fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
[fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506
[fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642
[fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
[fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723
[fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
[fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
[fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
[fdo#111644]: https://bugs.freedesktop.org/show_bug.cgi?id=111644
[fdo#111656]: https://bugs.freedesktop.org/show_bug.cgi?id=111656
[fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
[fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
[fdo#112054]: https://bugs.freedesktop.org/show_bug.cgi?id=112054
[fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283
[i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
[i915#132]: https://gitlab.freedesktop.org/drm/intel/issues/132
[i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397
[i915#1755]: https://gitlab.freedesktop.org/drm/intel/issues/1755
[i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839
[i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845
[i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849
[i915#1902]: https://gitlab.freedesktop.org/drm/intel/issues/1902
[i915#1937]: https://gitlab.freedesktop.org/drm/intel/issues/1937
[i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
[i915#2433]: https://gitlab.freedesktop.org/drm/intel/issues/2433
[i915#2436]: https://gitlab.freedesktop.org/drm/intel/issues/2436
[i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437
[i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527
[i915#2532]: https://gitlab.freedesktop.org/drm/intel/issues/2532
[i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575
[i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582
[i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587
[i915#2658]: https://gitlab.freedesktop.org/drm/intel/issues/2658
[i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
[i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681
[i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705
[i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280
[i915#284]: https://gitlab.freedesktop.org/drm/intel/issues/284
[i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
[i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856
[i915#2920]: https://gitlab.freedesktop.org/drm/intel/issues/2920
[i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116
[i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
[i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291
[i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
[i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299
[i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
[i915#3361]: https://gitlab.freedesktop.org/drm/intel/issues/3361
[i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458
[i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469
[i915#3536]: https://gitlab.freedesktop.org/drm/intel/issues/3536
[i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539
[i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638
[i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689
[i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
[i915#3734]: https://gitlab.freedesktop.org/drm/intel/issues/3734
[i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742
[i915#3804]: https://gitlab.freedesktop.org/drm/intel/issues/3804
[i915#3825]: https://gitlab.freedesktop.org/drm/intel/issues/3825
[i915#3826]: https://gitlab.freedesktop.org/drm/intel/issues/3826
[i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840
[i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886
[i915#3936]: https://gitlab.freedesktop.org/drm/intel/issues/3936
[i915#3938]: https://gitlab.freedesktop.org/drm/intel/issues/3938
[i915#3952]: https://gitlab.freedesktop.org/drm/intel/issues/3952
[i915#3966]: https://gitlab.freedesktop.org/drm/intel/issues/3966
[i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070
[i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
[i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078
[i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
[i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098
[i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213
[i915#426]: https://gitlab.freedesktop.org/drm/intel/issues/426
[i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
[i915#4281]: https://gitlab.freedesktop.org/drm/intel/issues/4281
[i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349
[i915#4387]: https://gitlab.freedesktop.org/drm/intel/issues/4387
[i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525
[i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538
[i915#4565]: https://gitlab.freedesktop.org/drm/intel/issues/4565
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#4778]: https://gitlab.freedesktop.org/drm/intel/issues/4778
[i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812
[i915#4833]: https://gitlab.freedesktop.org/drm/intel/issues/4833
[i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852
[i915#4859]: https://gitlab.freedesktop.org/drm/intel/issues/4859
[i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860
[i915#4873]: https://gitlab.freedesktop.org/drm/intel/issues/4873
[i915#4884]: https://gitlab.freedesktop.org/drm/intel/issues/4884
[i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983
[i915#5115]: https://gitlab.freedesktop.org/drm/intel/issues/5115
[i915#5174]: https://gitlab.freedesktop.org/drm/intel/issues/5174
[i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176
[i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
[i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286
[i915#5288]: https://gitlab.freedesktop.org/drm/intel/issues/5288
[i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289
[i915#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325
[i915#533]: https://gitlab.freedesktop.org/drm/intel/issues/533
[i915#5431]: https://gitlab.freedesktop.org/drm/intel/issues/5431
[i915#5439]: https://gitlab.freedesktop.org/drm/intel/issues/5439
[i915#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461
[i915#5465]: https://gitlab.freedesktop.org/drm/intel/issues/5465
[i915#5563]: https://gitlab.freedesktop.org/drm/intel/issues/5563
[i915#5608]: https://gitlab.freedesktop.org/drm/intel/issues/5608
[i915#5723]: https://gitlab.freedesktop.org/drm/intel/issues/5723
[i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784
[i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
[i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227
[i915#6230]: https://gitlab.freedesktop.org/drm/intel/issues/6230
[i915#6245]: https://gitlab.freedesktop.org/drm/intel/issues/6245
[i915#6248]: https://gitlab.freedesktop.org/drm/intel/issues/6248
[i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268
[i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301
[i915#6333]: https://gitlab.freedesktop.org/drm/intel/issues/6333
[i915#6334]: https://gitlab.freedesktop.org/drm/intel/issues/6334
[i915#6335]: https://gitlab.freedesktop.org/drm/intel/issues/6335
[i915#6433]: https://gitlab.freedesktop.org/drm/intel/issues/6433
[i915#6497]: https://gitlab.freedesktop.org/drm/intel/issues/6497
[i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524
[i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
[i915#6590]: https://gitlab.freedesktop.org/drm/intel/issues/6590
[i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
[i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768
[i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944
[i915#7052]: https://gitlab.freedesktop.org/drm/intel/issues/7052
[i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116
[i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118
[i915#7173]: https://gitlab.freedesktop.org/drm/intel/issues/7173
[i915#7330]: https://gitlab.freedesktop.org/drm/intel/issues/7330
[i915#7456]: https://gitlab.freedesktop.org/drm/intel/issues/7456
[i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561
[i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697
[i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701
[i915#7707]: https://gitlab.freedesktop.org/drm/intel/issues/7707
[i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711
[i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742
[i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
[i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79
[i915#7949]: https://gitlab.freedesktop.org/drm/intel/issues/7949
[i915#7957]: https://gitlab.freedesktop.org/drm/intel/issues/7957
[i915#7981]: https://gitlab.freedesktop.org/drm/intel/issues/7981
[i915#8018]: https://gitlab.freedesktop.org/drm/intel/issues/8018
[i915#8151]: https://gitlab.freedesktop.org/drm/intel/issues/8151
[i915#8152]: https://gitlab.freedesktop.org/drm/intel/issues/8152
[i915#8155]: https://gitlab.freedesktop.org/drm/intel/issues/8155
Build changes
-------------
* CI: CI-20190529 -> None
* IGT: IGT_7170 -> IGTPW_8521
CI-20190529: 20190529
CI_DRM_12771: ece65b96d1b8f85b072394700a32cd30831c4f33 @ git://anongit.freedesktop.org/gfx-ci/linux
IGTPW_8521: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8521/index.html
IGT_7170: e6d15f2d2f299ce70206a40609bebf661f7fdc65 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8521/index.html
[-- Attachment #2: Type: text/html, Size: 37441 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [igt-dev] ✗ Fi.CI.IGT: failure for series starting with [i-g-t,1/3] lib/igt_map: Add 32-bit and 64-bit hash helper functions
2023-02-23 15:15 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
@ 2023-02-23 17:07 ` Zbigniew Kempczyński
0 siblings, 0 replies; 9+ messages in thread
From: Zbigniew Kempczyński @ 2023-02-23 17:07 UTC (permalink / raw)
To: igt-dev; +Cc: Lakshminarayana Vudum
On Thu, Feb 23, 2023 at 03:15:41PM +0000, Patchwork wrote:
> Patch Details
>
> Series: series starting with [i-g-t,1/3] lib/igt_map: Add 32-bit and
> 64-bit hash helper functions
> URL: https://patchwork.freedesktop.org/series/114287/
> State: failure
> Details: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8521/index.html
>
> CI Bug Log - changes from IGT_7170_full -> IGTPW_8521_full
>
> Summary
>
> FAILURE
>
> Serious unknown changes coming with IGTPW_8521_full absolutely need to be
> verified manually.
>
> If you think the reported changes have nothing to do with the changes
> introduced in IGTPW_8521_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_8521/index.html
>
> Participating hosts (9 -> 9)
>
> No changes in participating hosts
>
> Possible new issues
>
> Here are the unknown changes that may have been introduced in
> IGTPW_8521_full:
>
> IGT changes
>
> Possible regressions
>
> * igt@i915_selftest@live@migrate:
> * shard-glk: PASS -> DMESG-FAIL
Unrelated to the change.
--
Zbigniew
>
> Suppressed
>
> The following results come from untrusted machines, tests, or statuses.
> They do not affect the overall result.
>
> * {igt@kms_hdr@invalid-hdr}:
>
> * {shard-tglu}: NOTRUN -> SKIP
> * {igt@kms_hdr@invalid-metadata-sizes}:
>
> * shard-tglu-10: NOTRUN -> SKIP
>
> Known issues
>
> Here are the changes found in IGTPW_8521_full that come from known issues:
>
> IGT changes
>
> Issues hit
>
> * igt@debugfs_test@basic-hwmon:
>
> * shard-tglu-10: NOTRUN -> SKIP (i915#7456)
> * igt@drm_mm@all-tests:
>
> * shard-tglu-10: NOTRUN -> SKIP (i915#6433)
> * igt@feature_discovery@display-2x:
>
> * shard-tglu-10: NOTRUN -> SKIP (i915#1839)
> * igt@gem_ccs@suspend-resume:
>
> * shard-tglu-10: NOTRUN -> SKIP (i915#5325)
> * igt@gem_exec_fair@basic-none@rcs0:
>
> * shard-tglu-10: NOTRUN -> FAIL (i915#2842) +6 similar issues
> * igt@gem_exec_fair@basic-throttle@rcs0:
>
> * shard-glk: PASS -> FAIL (i915#2842) +2 similar issues
> * igt@gem_exec_params@rsvd2-dirt:
>
> * shard-tglu-10: NOTRUN -> SKIP (fdo#109283)
> * igt@gem_lmem_swapping@heavy-verify-multi-ccs:
>
> * shard-tglu-10: NOTRUN -> SKIP (i915#4613) +4 similar issues
> * igt@gem_lmem_swapping@heavy-verify-random-ccs:
>
> * shard-apl: NOTRUN -> SKIP (fdo#109271 / i915#4613)
> * igt@gem_pxp@create-regular-buffer:
>
> * shard-tglu-10: NOTRUN -> SKIP (i915#4270) +2 similar issues
> * igt@gem_userptr_blits@readonly-pwrite-unsync:
>
> * shard-tglu-10: NOTRUN -> SKIP (i915#3297) +2 similar issues
> * igt@gen9_exec_parse@batch-without-end:
>
> * shard-tglu-10: NOTRUN -> SKIP (i915#2527 / i915#2856) +3 similar
> issues
> * igt@i915_pm_rpm@modeset-pc8-residency-stress:
>
> * shard-tglu-10: NOTRUN -> SKIP (fdo#109506) +1 similar issue
> * igt@i915_query@query-topology-known-pci-ids:
>
> * shard-tglu-10: NOTRUN -> SKIP (fdo#109303)
> * igt@i915_query@test-query-geometry-subslices:
>
> * shard-tglu-10: NOTRUN -> SKIP (i915#5723)
> * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip-async-flip:
>
> * shard-tglu-10: NOTRUN -> SKIP (i915#5286) +6 similar issues
> * igt@kms_big_fb@linear-32bpp-rotate-90:
>
> * shard-tglu-10: NOTRUN -> SKIP (fdo#111614)
> * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
>
> * shard-tglu-10: NOTRUN -> SKIP (fdo#111615) +7 similar issues
> * igt@kms_big_joiner@2x-modeset:
>
> * shard-tglu-10: NOTRUN -> SKIP (i915#2705) +1 similar issue
> * igt@kms_ccs@pipe-a-bad-aux-stride-y_tiled_gen12_mc_ccs:
>
> * shard-tglu-10: NOTRUN -> SKIP (i915#3689 / i915#3886) +5 similar
> issues
> * igt@kms_ccs@pipe-a-bad-rotation-90-4_tiled_dg2_rc_ccs:
>
> * shard-tglu-10: NOTRUN -> SKIP (i915#3689 / i915#6095) +6 similar
> issues
> * igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_rc_ccs_cc:
>
> * shard-apl: NOTRUN -> SKIP (fdo#109271 / i915#3886) +1 similar
> issue
> * igt@kms_ccs@pipe-c-bad-aux-stride-yf_tiled_ccs:
>
> * shard-tglu-10: NOTRUN -> SKIP (fdo#111615 / i915#3689) +8 similar
> issues
> * igt@kms_ccs@pipe-c-random-ccs-data-4_tiled_dg2_mc_ccs:
>
> * shard-tglu-10: NOTRUN -> SKIP (i915#6095) +7 similar issues
> * igt@kms_ccs@pipe-d-crc-primary-rotation-180-4_tiled_dg2_mc_ccs:
>
> * shard-tglu-10: NOTRUN -> SKIP (i915#3689) +8 similar issues
> * igt@kms_chamelium_color@gamma:
>
> * shard-tglu-10: NOTRUN -> SKIP (fdo#111827) +1 similar issue
> * igt@kms_chamelium_edid@hdmi-edid-stress-resolution-4k:
>
> * shard-tglu-10: NOTRUN -> SKIP (i915#7828) +9 similar issues
> * igt@kms_color@ctm-max@pipe-a-hdmi-a-1:
>
> * shard-snb: NOTRUN -> SKIP (fdo#109271) +43 similar issues
> * igt@kms_content_protection@lic:
>
> * shard-tglu-10: NOTRUN -> SKIP (i915#6944 / i915#7116 / i915#7118)
> +2 similar issues
> * igt@kms_content_protection@srm@pipe-a-dp-1:
>
> * shard-apl: NOTRUN -> TIMEOUT (i915#7173)
> * igt@kms_cursor_crc@cursor-offscreen-512x512:
>
> * shard-tglu-10: NOTRUN -> SKIP (i915#3359)
> * igt@kms_cursor_legacy@cursorb-vs-flipa-atomic-transitions-varying-size:
>
> * shard-tglu-10: NOTRUN -> SKIP (fdo#109274) +5 similar issues
> * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
>
> * shard-apl: PASS -> FAIL (i915#2346)
> * igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
>
> * shard-tglu-10: NOTRUN -> SKIP (i915#4103)
> * igt@kms_dsc@dsc-with-bpc-formats:
>
> * shard-tglu-10: NOTRUN -> SKIP (i915#3840)
> * igt@kms_fbcon_fbt@psr-suspend:
>
> * shard-tglu-10: NOTRUN -> SKIP (i915#3469)
> * igt@kms_flip@2x-absolute-wf_vblank:
>
> * shard-tglu-10: NOTRUN -> SKIP (fdo#109274 / i915#3637 /
> i915#3966)
> * igt@kms_flip@2x-flip-vs-expired-vblank@ac-hdmi-a1-hdmi-a2:
>
> * shard-glk: PASS -> FAIL (i915#79) +2 similar issues
> * igt@kms_flip@2x-flip-vs-suspend:
>
> * shard-tglu-10: NOTRUN -> SKIP (fdo#109274 / i915#3637) +8 similar
> issues
> * igt@kms_flip_scaled_crc@flip-32bpp-ytileccs-to-64bpp-ytile-downscaling@pipe-a-valid-mode:
>
> * shard-tglu-10: NOTRUN -> SKIP (i915#2587 / i915#2672) +3 similar
> issues
> * igt@kms_frontbuffer_tracking@fbcpsr-suspend:
>
> * shard-tglu-10: NOTRUN -> SKIP (fdo#110189) +33 similar issues
> * igt@kms_frontbuffer_tracking@fbcpsr-tiling-4:
>
> * shard-tglu-10: NOTRUN -> SKIP (i915#5439) +1 similar issue
> * igt@kms_frontbuffer_tracking@psr-2p-primscrn-shrfb-msflip-blt:
>
> * shard-tglu-10: NOTRUN -> SKIP (fdo#109280) +40 similar issues
> * igt@kms_panel_fitting@atomic-fastset:
>
> * shard-tglu-10: NOTRUN -> SKIP (i915#6301)
> * igt@kms_pipe_b_c_ivb@pipe-b-double-modeset-then-modeset-pipe-c:
>
> * shard-tglu-10: NOTRUN -> SKIP (fdo#109289) +3 similar issues
> * igt@kms_plane_lowres@tiling-4:
>
> * shard-tglu-10: NOTRUN -> SKIP (fdo#112054 / i915#5288) +1 similar
> issue
> * igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-75@pipe-a-hdmi-a-1:
>
> * shard-tglu-10: NOTRUN -> SKIP (i915#5176) +11 similar issues
> * igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-a-hdmi-a-1:
>
> * shard-tglu-10: NOTRUN -> SKIP (i915#5235) +3 similar issues
> * igt@kms_prime@basic-modeset-hybrid:
>
> * shard-tglu-10: NOTRUN -> SKIP (i915#6524)
> * igt@kms_psr2_sf@overlay-plane-move-continuous-sf:
>
> * shard-tglu-10: NOTRUN -> SKIP (i915#658) +2 similar issues
> * igt@kms_psr2_sf@overlay-plane-update-continuous-sf:
>
> * shard-tglu-10: NOTRUN -> SKIP (fdo#111068 / i915#658) +1 similar
> issue
> * igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
>
> * shard-tglu-10: NOTRUN -> SKIP (i915#5461)
> * igt@kms_setmode@basic@pipe-a-vga-1:
>
> * shard-snb: NOTRUN -> FAIL (i915#5465) +1 similar issue
> * igt@kms_tv_load_detect@load-detect:
>
> * shard-tglu-10: NOTRUN -> SKIP (fdo#109309)
> * igt@kms_vblank@pipe-d-ts-continuation-dpms-rpm:
>
> * shard-apl: NOTRUN -> SKIP (fdo#109271) +26 similar issues
> * igt@kms_vrr@negative-basic:
>
> * shard-tglu-10: NOTRUN -> SKIP (i915#3555) +4 similar issues
> * igt@kms_writeback@writeback-pixel-formats:
>
> * shard-tglu-10: NOTRUN -> SKIP (i915#2437) +1 similar issue
> * igt@v3d/v3d_get_param@get-bad-flags:
>
> * shard-tglu-10: NOTRUN -> SKIP (fdo#109315 / i915#2575) +4 similar
> issues
> * igt@vc4/vc4_purgeable_bo@mark-willneed:
>
> * shard-tglu-10: NOTRUN -> SKIP (i915#2575) +9 similar issues
>
> Possible fixes
>
> * igt@device_reset@unbind-reset-rebind:
>
> * {shard-rkl}: FAIL (i915#4778) -> PASS
> * igt@drm_fdinfo@most-busy-idle-check-all@rcs0:
>
> * {shard-rkl}: FAIL (i915#7742) -> PASS
> * igt@fbdev@unaligned-write:
>
> * {shard-rkl}: SKIP (i915#2582) -> PASS
> * igt@gem_ctx_persistence@heartbeat-many:
>
> * {shard-rkl}: SKIP (fdo#109315) -> PASS +9 similar issues
> * igt@gem_exec_fair@basic-none-rrul@rcs0:
>
> * {shard-rkl}: FAIL (i915#2842) -> PASS
> * igt@gem_exec_fair@basic-none-solo@rcs0:
>
> * shard-apl: FAIL (i915#2842) -> PASS
> * igt@gem_exec_fair@basic-pace@vcs0:
>
> * shard-glk: FAIL (i915#2842) -> PASS +2 similar issues
> * igt@gem_exec_reloc@basic-gtt:
>
> * {shard-rkl}: SKIP (i915#3281) -> PASS +3 similar issues
> * igt@gem_mmap_gtt@coherency:
>
> * {shard-rkl}: SKIP (fdo#111656) -> PASS
> * igt@gem_pwrite@basic-self:
>
> * {shard-rkl}: SKIP (i915#3282) -> PASS
> * igt@gen9_exec_parse@bb-secure:
>
> * {shard-rkl}: SKIP (i915#2527) -> PASS
> * igt@i915_pipe_stress@stress-xrgb8888-ytiled:
>
> * {shard-rkl}: SKIP (i915#4098) -> PASS
> * igt@i915_pm_dc@dc6-psr:
>
> * {shard-rkl}: SKIP (i915#658) -> PASS
> * igt@i915_pm_dc@dc9-dpms:
>
> * {shard-tglu}: SKIP (i915#4281) -> PASS
> * igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a:
>
> * {shard-tglu}: FAIL (i915#3825) -> PASS
> * igt@i915_pm_rpm@system-suspend-devices:
>
> * {shard-rkl}: SKIP (i915#5174) -> PASS
> * igt@i915_suspend@basic-s2idle-without-i915:
>
> * {shard-rkl}: FAIL (fdo#103375) -> PASS
> * igt@kms_ccs@pipe-b-bad-pixel-format-y_tiled_gen12_rc_ccs_cc:
>
> * {shard-rkl}: SKIP (i915#1845 / i915#4098) -> PASS +5 similar
> issues
> * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
>
> * shard-apl: FAIL (i915#2346) -> PASS
>
> * shard-glk: FAIL (i915#2346) -> PASS
>
> * igt@kms_flip@flip-vs-expired-vblank@a-hdmi-a2:
>
> * shard-glk: FAIL (i915#79) -> PASS
> * igt@kms_frontbuffer_tracking@psr-rgb101010-draw-mmap-gtt:
>
> * {shard-rkl}: SKIP (i915#1849 / i915#4098) -> PASS +4 similar
> issues
> * igt@kms_psr@primary_blt:
>
> * {shard-rkl}: SKIP (i915#1072) -> PASS
> * igt@perf_pmu@cpu-hotplug:
>
> * {shard-rkl}: SKIP (i915#5608) -> PASS +1 similar issue
> * igt@prime_vgem@basic-write:
>
> * {shard-rkl}: SKIP (fdo#109295 / i915#3291 / i915#3708) -> PASS
> * igt@prime_vgem@coherency-gtt:
>
> * {shard-rkl}: SKIP (fdo#109295 / fdo#111656 / i915#3708) -> PASS
> * igt@syncobj_wait@wait-any-interrupted:
>
> * {shard-rkl}: SKIP (i915#2575) -> PASS +3 similar issues
>
> {name}: This element is suppressed. This means it is ignored when
> computing
> the status of the difference (SUCCESS, WARNING, or FAILURE).
>
> Build changes
>
> * CI: CI-20190529 -> None
> * IGT: IGT_7170 -> IGTPW_8521
>
> CI-20190529: 20190529
> CI_DRM_12771: ece65b96d1b8f85b072394700a32cd30831c4f33 @
> git://anongit.freedesktop.org/gfx-ci/linux
> IGTPW_8521: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8521/index.html
> IGT_7170: e6d15f2d2f299ce70206a40609bebf661f7fdc65 @
> https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2023-02-23 17:09 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-02-23 10:53 [igt-dev] [PATCH i-g-t 1/3] lib/igt_map: Add 32-bit and 64-bit hash helper functions Zbigniew Kempczyński
2023-02-23 10:53 ` [igt-dev] [PATCH i-g-t 2/3] lib/intel_allocator_*: Use common hash helpers Zbigniew Kempczyński
2023-02-23 11:26 ` Mauro Carvalho Chehab
2023-02-23 10:53 ` [igt-dev] [PATCH i-g-t 3/3] lib/i915/gem_create: Use hash helper for gem bo pool Zbigniew Kempczyński
2023-02-23 11:26 ` Mauro Carvalho Chehab
2023-02-23 11:26 ` [igt-dev] [PATCH i-g-t 1/3] lib/igt_map: Add 32-bit and 64-bit hash helper functions Mauro Carvalho Chehab
2023-02-23 12:28 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [i-g-t,1/3] " Patchwork
2023-02-23 15:15 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
2023-02-23 17:07 ` 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