All of lore.kernel.org
 help / color / mirror / Atom feed
* [igt-dev] [PATCH igt 1/2] lib: Add helper to wait and close fence fd
@ 2022-12-11 19:52 Rob Clark
  2022-12-11 19:52 ` [igt-dev] [PATCH igt 2/2] tests/msm: Add GEM shrinker/eviction test Rob Clark
                   ` (4 more replies)
  0 siblings, 5 replies; 7+ messages in thread
From: Rob Clark @ 2022-12-11 19:52 UTC (permalink / raw)
  To: igt-dev; +Cc: Rob Clark

From: Rob Clark <robdclark@chromium.org>

Get rid of some copy/pasta and open coding of a common pattern, waiting
for GPU commands to complete.

Signed-off-by: Rob Clark <robdclark@chromium.org>
---
 lib/igt_aux.c            | 11 +++++++++++
 lib/igt_aux.h            |  2 ++
 tests/msm/msm_mapping.c  |  4 +---
 tests/msm/msm_recovery.c | 15 ++-------------
 4 files changed, 16 insertions(+), 16 deletions(-)

diff --git a/lib/igt_aux.c b/lib/igt_aux.c
index 15e30440..672d7d4b 100644
--- a/lib/igt_aux.c
+++ b/lib/igt_aux.c
@@ -1919,3 +1919,14 @@ void *igt_memdup(const void *ptr, size_t len)
 
 	return dup;
 }
+
+/**
+ * igt_wait_and_close: helper to wait on a fence-fd and then close it
+ *
+ * @fence_fd: the fence-fd to wait on and close
+ */
+void igt_wait_and_close(int fence_fd)
+{
+	poll(&(struct pollfd){fence_fd, POLLIN}, 1, -1);
+	close(fence_fd);
+}
diff --git a/lib/igt_aux.h b/lib/igt_aux.h
index e734c87b..fb76b031 100644
--- a/lib/igt_aux.h
+++ b/lib/igt_aux.h
@@ -337,4 +337,6 @@ uint64_t vfs_file_max(void);
 
 void *igt_memdup(const void *ptr, size_t len);
 
+void igt_wait_and_close(int fence_fd);
+
 #endif /* IGT_AUX_H */
diff --git a/tests/msm/msm_mapping.c b/tests/msm/msm_mapping.c
index 21cdc8e1..e2461860 100644
--- a/tests/msm/msm_mapping.c
+++ b/tests/msm/msm_mapping.c
@@ -25,7 +25,6 @@
 #include <fcntl.h>
 #include <glob.h>
 #include <string.h>
-#include <sys/poll.h>
 #include <sys/stat.h>
 
 #include "igt.h"
@@ -197,8 +196,7 @@ do_mapping_test(struct msm_pipe *pipe, const char *buffername, bool write)
 	fence_fd = igt_msm_cmd_submit(cmd);
 
 	/* Wait for submit to complete: */
-	poll(&(struct pollfd){fence_fd, POLLIN}, 1, -1);
-	close(fence_fd);
+	igt_wait_and_close(fence_fd);
 
 	igt_msm_bo_free(scratch_bo);
 
diff --git a/tests/msm/msm_recovery.c b/tests/msm/msm_recovery.c
index 890c543a..e01087b4 100644
--- a/tests/msm/msm_recovery.c
+++ b/tests/msm/msm_recovery.c
@@ -22,7 +22,6 @@
  */
 
 #include <fcntl.h>
-#include <sys/poll.h>
 
 #include "igt.h"
 #include "igt_msm.h"
@@ -52,16 +51,6 @@ mem_write(struct msm_cmd *cmd, uint32_t offset_dwords, uint32_t val)
 	msm_cmd_emit(cmd, val);                            /* VAL */
 }
 
-/*
- * Helper to wait on a fence-fd:
- */
-static void
-wait_and_close(int fence_fd)
-{
-	poll(&(struct pollfd){fence_fd, POLLIN}, 1, -1);
-	close(fence_fd);
-}
-
 /*
  * Helper for hang tests.  Emits multiple submits, with one in the middle
  * that triggers a fault, and confirms that the submits before and after
@@ -107,7 +96,7 @@ do_hang_test(struct msm_pipe *pipe)
 	scratch[0] = 1;
 
 	for (unsigned i = 0; i < ARRAY_SIZE(cmds); i++) {
-		wait_and_close(fence_fds[i]);
+		igt_wait_and_close(fence_fds[i]);
 		igt_msm_cmd_free(cmds[i]);
 		if (i == 10)
 			continue;
@@ -163,7 +152,7 @@ igt_main
 		msm_cmd_emit(cmd, 0x1);                  /* ADDR_HI */
 		msm_cmd_emit(cmd, 0x123);                /* VAL */
 
-		wait_and_close(igt_msm_cmd_submit(cmd));
+		igt_wait_and_close(igt_msm_cmd_submit(cmd));
 	}
 
 	igt_fixture {
-- 
2.38.1

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

* [igt-dev] [PATCH igt 2/2] tests/msm: Add GEM shrinker/eviction test
  2022-12-11 19:52 [igt-dev] [PATCH igt 1/2] lib: Add helper to wait and close fence fd Rob Clark
@ 2022-12-11 19:52 ` Rob Clark
  2023-02-20 21:04   ` Kamil Konieczny
  2022-12-11 21:00 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [1/2] lib: Add helper to wait and close fence fd Patchwork
                   ` (3 subsequent siblings)
  4 siblings, 1 reply; 7+ messages in thread
From: Rob Clark @ 2022-12-11 19:52 UTC (permalink / raw)
  To: igt-dev; +Cc: Rob Clark

From: Rob Clark <robdclark@chromium.org>

Adds a test to various subtests to stress shrinker/eviction.  Various
subtests also add mmap and dma-buf mmap into the mix (the latter because
it uncovered a memory corruption bug due to page mappings not being
correctly shot down).

Signed-off-by: Rob Clark <robdclark@chromium.org>
---
 lib/igt_msm.c          |   2 +-
 lib/igt_msm.h          |   6 +-
 tests/meson.build      |   1 +
 tests/msm/msm_shrink.c | 314 +++++++++++++++++++++++++++++++++++++++++
 4 files changed, 321 insertions(+), 2 deletions(-)
 create mode 100644 tests/msm/msm_shrink.c

diff --git a/lib/igt_msm.c b/lib/igt_msm.c
index e9cf588f..8c0380f4 100644
--- a/lib/igt_msm.c
+++ b/lib/igt_msm.c
@@ -268,7 +268,7 @@ igt_msm_cmd_submit(struct msm_cmd *cmd)
 		},
 	};
 	struct drm_msm_gem_submit req = {
-			.flags   = cmd->pipe->pipe | MSM_SUBMIT_FENCE_FD_OUT,
+			.flags   = cmd->pipe->pipe | MSM_SUBMIT_FENCE_FD_OUT | MSM_SUBMIT_NO_IMPLICIT,
 			.queueid = cmd->pipe->submitqueue_id,
 			.nr_cmds = ARRAY_SIZE(cmds),
 			.cmds    = VOID2U64(cmds),
diff --git a/lib/igt_msm.h b/lib/igt_msm.h
index 6008020b..413c7ea6 100644
--- a/lib/igt_msm.h
+++ b/lib/igt_msm.h
@@ -97,10 +97,14 @@ enum adreno_pm4_packet_type {
 
 enum adreno_pm4_type3_packets {
 	CP_NOP = 16,
+	CP_WAIT_MEM_WRITES = 18,
+	CP_WAIT_FOR_ME = 19,
 	CP_WAIT_MEM_GTE = 20,
+	CP_WAIT_FOR_IDLE = 38,
 	CP_WAIT_REG_MEM = 60,
 	CP_MEM_WRITE = 61,
 	CP_MEM_TO_MEM = 115,
+	CP_MEMCPY = 117,
 };
 
 static inline unsigned
@@ -157,7 +161,7 @@ struct msm_cmd {
 	struct msm_bo *cmdstream_bo;
 	uint32_t *cur;
 	uint32_t nr_bos;
-	struct msm_bo *bos[8];
+	struct msm_bo *bos[128];
 };
 
 struct msm_cmd *igt_msm_cmd_new(struct msm_pipe *pipe, size_t size);
diff --git a/tests/meson.build b/tests/meson.build
index 619c18b2..424f050f 100644
--- a/tests/meson.build
+++ b/tests/meson.build
@@ -253,6 +253,7 @@ i915_progs = [
 msm_progs = [
 	'msm_mapping',
 	'msm_recovery',
+	'msm_shrink',
 	'msm_submit'
 ]
 
diff --git a/tests/msm/msm_shrink.c b/tests/msm/msm_shrink.c
new file mode 100644
index 00000000..d0b098aa
--- /dev/null
+++ b/tests/msm/msm_shrink.c
@@ -0,0 +1,314 @@
+/*
+ * Copyright © 2022 Google, Inc.
+ * Copyright © 2016 Intel Corporation
+ *
+ * Permission is hereby granted, free of charge, to any person obtaining a
+ * copy of this software and associated documentation files (the "Software"),
+ * to deal in the Software without restriction, including without limitation
+ * the rights to use, copy, modify, merge, publish, distribute, sublicense,
+ * and/or sell copies of the Software, and to permit persons to whom the
+ * Software is furnished to do so, subject to the following conditions:
+ *
+ * The above copyright notice and this permission notice (including the next
+ * paragraph) shall be included in all copies or substantial portions of the
+ * Software.
+ *
+ * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
+ * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
+ * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
+ * IN THE SOFTWARE.
+ */
+
+#include <fcntl.h>
+#include <sys/mman.h>
+
+#include "igt.h"
+#include "igt_msm.h"
+#include "igt_os.h"
+#include "igt_sysfs.h"
+
+#define SZ_1M (1024 * 1024)
+
+static void leak(uint64_t alloc)
+{
+	char *ptr;
+
+	ptr = mmap(NULL, alloc, PROT_READ | PROT_WRITE,
+		   MAP_ANON | MAP_PRIVATE | MAP_POPULATE,
+		   -1, 0);
+	if (ptr == MAP_FAILED)
+		return;
+
+	while (alloc > 4096) {
+		alloc -= 4096;
+		ptr[alloc] = 0;
+	}
+}
+
+static void madvise_dontneed(struct msm_bo *bo)
+{
+	struct drm_msm_gem_madvise req = {
+		.handle = bo->handle,
+		.madv = MSM_MADV_DONTNEED,
+	};
+	do_ioctl(bo->dev->fd, DRM_IOCTL_MSM_GEM_MADVISE, &req);
+}
+
+static struct msm_cmd *cmd_copy_gpu(struct msm_pipe *pipe, unsigned num_bos, struct msm_bo **bos)
+{
+	struct msm_cmd *cmd = igt_msm_cmd_new(pipe, 0x1000);
+
+	assert((num_bos % 2) == 0);
+
+	for (unsigned i = 0; i < (num_bos / 2); i++) {
+		struct msm_bo *dst = bos[2*i];
+		struct msm_bo *src = bos[2*i+1];
+
+		unsigned dwords = min(0x2000u, dst->size / 4);
+
+		msm_cmd_pkt7(cmd, CP_MEMCPY, 5);
+		msm_cmd_emit(cmd, dwords);          /* DWORDS */
+		msm_cmd_bo  (cmd, src, 0);          /* SRC_LO/HI */
+		msm_cmd_bo  (cmd, dst, 0);          /* DST_LO/HI */
+		msm_cmd_pkt7(cmd, CP_WAIT_MEM_WRITES, 0);
+		msm_cmd_pkt7(cmd, CP_WAIT_FOR_IDLE, 0);
+		msm_cmd_pkt7(cmd, CP_WAIT_FOR_ME, 0);
+	}
+
+	return cmd;
+}
+
+static void *map_dmabuf(struct msm_bo *bo)
+{
+	int fd, ret;
+	void *ptr;
+
+	ret = drmPrimeHandleToFD(bo->dev->fd, bo->handle, DRM_CLOEXEC | DRM_RDWR, &fd);
+	igt_assert_eq(ret, 0);
+
+	ptr = mmap(0, bo->size, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0);
+	igt_assert(ptr != MAP_FAILED);
+
+	close(fd);
+
+	return ptr;
+}
+
+struct test {
+	const char *name;
+	struct msm_cmd *(*cmd)(struct msm_pipe *pipe, unsigned num_bos, struct msm_bo **bos);
+	void *(*map)(struct msm_bo *bo);
+} tests[] = {
+	{ "copy-gpu", cmd_copy_gpu },
+	{ "copy-mmap", cmd_copy_gpu, igt_msm_bo_map },
+	{ "copy-mmap-dmabuf", cmd_copy_gpu, map_dmabuf },
+	{},
+};
+
+enum testmode {
+	SANITY_CHECK	= BIT(0),
+	SINGLE_THREAD	= BIT(1),
+	MADVISE		= BIT(2),
+	OOM		= BIT(3),
+};
+
+static const struct mode {
+	const char *suffix;
+	unsigned flags;
+} modes[] = {
+	{ "-sanitycheck", SANITY_CHECK },
+/* Disable by default to keep test runtime down:
+	{ "-singlethread", SINGLE_THREAD },
+ */
+	{ "", 0 },
+	{ "-madvise", MADVISE },
+	{ "-oom", OOM },
+	{ NULL },
+};
+
+static void do_test(int num_submits, uint64_t alloc_size_kb, int num_bos,
+		    unsigned timeout, bool do_madvise, const struct test *test)
+{
+	struct msm_device *dev = igt_msm_dev_open();
+	struct msm_pipe *pipe = igt_msm_pipe_open(dev, 0);
+	struct msm_bo *bo[num_submits][num_bos];
+	struct msm_cmd *cmd[num_submits];
+	void *map[num_submits][num_bos];
+	int fence_fd = -1;
+
+	/* Allocate the buffer objects and prepare the cmds: */
+	for (int i = 0; i < num_submits; i++) {
+		for (int j = 0; j < num_bos; j++) {
+			bo[i][j] = igt_msm_bo_new(dev, alloc_size_kb * 1024, MSM_BO_WC);
+		}
+		cmd[i] = test->cmd(pipe, num_bos, bo[i]);
+	}
+
+	/* Prepare the CPU maps, if necessary: */
+	if (test->map) {
+		for (int i = 0; i < num_submits; i++) {
+			for (int j = 0; j < num_bos; j++) {
+				map[i][j] = test->map(bo[i][j]);
+				memset(map[i][j], 0xde, bo[i][j]->size);
+			}
+		}
+	}
+
+	igt_until_timeout(timeout) {
+		for (int i = 0; i < num_submits / 2; i++) {
+			if (fence_fd > 0)
+				close(fence_fd);
+			fence_fd = igt_msm_cmd_submit(cmd[i]);
+		}
+
+		igt_wait_and_close(fence_fd);
+		fence_fd = -1;
+
+		if (test->map) {
+			for (int i = 0; i < num_submits; i++) {
+				for (int j = 0; j < num_bos; j++) {
+					memset(map[i][j], 0xde, bo[i][j]->size);
+				}
+			}
+		}
+
+		for (int i = num_submits / 2; i < num_submits; i++) {
+			if (fence_fd > 0)
+				close(fence_fd);
+			fence_fd = igt_msm_cmd_submit(cmd[i]);
+		}
+		igt_wait_and_close(fence_fd);
+		fence_fd = -1;
+	}
+
+	if (do_madvise) {
+		for (int i = 0; i < num_submits; i++) {
+			if (fence_fd > 0)
+				close(fence_fd);
+			fence_fd = igt_msm_cmd_submit(cmd[i]);
+			for (int j = 0; j < num_bos; j++) {
+				madvise_dontneed(bo[i][j]);
+			}
+		}
+		igt_wait_and_close(fence_fd);
+		fence_fd = -1;
+	}
+}
+
+static void run_test(int nchildren, uint64_t alloc_size_mb, unsigned num_bos,
+		     const struct test *test, unsigned flags)
+{
+	const int timeout = (test->map) || (flags & (SANITY_CHECK | MADVISE)) ? 1 : 10;
+	bool madvise = !!(flags & MADVISE);
+	uint64_t alloc_size_kb;
+
+	/* We are trying to use more GEM buffers that will fit in
+	 * memory, but less than 2x avail RAM.  Split across at
+	 * least two submits so we aren't getting into a scenario
+	 * where all the children are trying to pin all the memory
+	 * at the same time and get into a situation where no one
+	 * can make forward progress.
+	 */
+	unsigned num_submits = 8;
+
+	if (flags & SANITY_CHECK)
+		nchildren = 1;
+
+	alloc_size_kb = DIV_ROUND_UP(alloc_size_mb * 1024, num_bos * num_submits);
+
+	if (flags & SINGLE_THREAD) {
+		num_submits *= nchildren;
+		nchildren = 1;
+	}
+
+	igt_info("%s, %d submits, %d processes, and %d x %'"PRIu64"KiB bos per submit for total size of %'"PRIu64"KiB\n",
+		 test->name, num_submits, nchildren, num_bos, alloc_size_kb,
+		 num_bos * num_submits * nchildren * alloc_size_kb);
+
+	/* Background load */
+	if (flags & OOM) {
+		igt_fork(child, nchildren) {
+			for (int pass = 0; pass < nchildren; pass++)
+				leak(alloc_size_kb / 1024);
+		}
+	}
+
+	/* Exercise major ioctls */
+	igt_fork(child, nchildren) {
+		do_test(num_submits, alloc_size_kb, num_bos, timeout, madvise, test);
+	}
+	igt_waitchildren();
+}
+
+static const unsigned num_bos[] = { 8, 32 };
+
+igt_main
+{
+	struct msm_device *dev = NULL;
+	uint64_t alloc_size_mb = 0;
+	int num_processes = 0;
+
+	igt_fixture {
+		int params, ncpus;
+		uint64_t mem_size;
+		uint64_t swap_size;
+
+		/* Make sure we are running on the right hw: */
+		dev = igt_msm_dev_open();
+
+		igt_require(dev->gen >= 6);
+
+		/* Ensure that eviction is enabled: */
+		params = igt_params_open(dev->fd);
+		igt_sysfs_set(params, "enable_eviction", "1");
+		igt_sysfs_set(params, "address_space_size", "0x400000000");
+		close(params);
+
+		/* Figure out # of processes and allocation size: */
+		ncpus = sysconf(_SC_NPROCESSORS_ONLN);
+		mem_size = igt_get_total_ram_mb();
+		swap_size = igt_get_total_swap_mb();
+
+		igt_require(swap_size > 0);
+
+		/*
+		 * Spawn enough processes to use all memory, but each only
+		 * uses a fraction of the available per-cpu memory.
+		 * Individually the processes would be ok, but en masse
+		 * we expect the shrinker to start purging objects,
+		 * and possibly fail.
+		 *
+		 * Note, consider only a fraction of avail swap when
+		 * calculating target size, as we have no good way to
+		 * determine if it is zram swap (which will consume an
+		 * increasing portion of RAM as it is filled)
+		 */
+		mem_size += swap_size / 4;
+		alloc_size_mb = (mem_size + ncpus - 1) / ncpus / 8;
+		num_processes = ncpus + (mem_size / alloc_size_mb);
+
+		igt_info("Using %d processes and %'"PRIu64"MiB per process for total size of %'"PRIu64"MiB\n",
+			 num_processes, alloc_size_mb, num_processes * alloc_size_mb);
+
+		igt_require_memory(num_processes, alloc_size_mb,
+				   CHECK_SWAP | CHECK_RAM);
+	}
+
+	for(const struct test *t = tests; t->name; t++) {
+		for(const struct mode *m = modes; m->suffix; m++) {
+			for (int i = 0; i < ARRAY_SIZE(num_bos); i++) {
+				igt_subtest_f("%s%s-%u", t->name, m->suffix, num_bos[i]) {
+					run_test(num_processes, alloc_size_mb,
+						 num_bos[i], t, m->flags);
+				}
+			}
+		}
+	}
+
+	igt_fixture {
+		igt_msm_dev_close(dev);
+	}
+}
-- 
2.38.1

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

* [igt-dev] ✓ Fi.CI.BAT: success for series starting with [1/2] lib: Add helper to wait and close fence fd
  2022-12-11 19:52 [igt-dev] [PATCH igt 1/2] lib: Add helper to wait and close fence fd Rob Clark
  2022-12-11 19:52 ` [igt-dev] [PATCH igt 2/2] tests/msm: Add GEM shrinker/eviction test Rob Clark
@ 2022-12-11 21:00 ` Patchwork
  2022-12-11 22:04 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2022-12-11 21:00 UTC (permalink / raw)
  To: Rob Clark; +Cc: igt-dev

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

== Series Details ==

Series: series starting with [1/2] lib: Add helper to wait and close fence fd
URL   : https://patchwork.freedesktop.org/series/111827/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_12491 -> IGTPW_8218
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

Participating hosts (41 -> 22)
------------------------------

  Missing    (19): fi-kbl-soraka bat-adls-5 bat-dg1-6 bat-dg1-5 bat-adlp-6 bat-rpls-2 fi-skl-6600u fi-bsw-n3050 bat-dg2-8 bat-adlm-1 bat-dg2-9 fi-hsw-4770 bat-atsm-1 bat-jsl-3 bat-dg2-11 fi-bsw-nick bat-kbl-2 bat-adlp-9 bat-adlp-4 

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

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

### IGT changes ###

#### Issues hit ####

  * igt@i915_selftest@live@gt_lrc:
    - fi-rkl-guc:         [PASS][1] -> [INCOMPLETE][2] ([i915#4983])
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12491/fi-rkl-guc/igt@i915_selftest@live@gt_lrc.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8218/fi-rkl-guc/igt@i915_selftest@live@gt_lrc.html

  * igt@i915_suspend@basic-s3-without-i915:
    - fi-rkl-11600:       [PASS][3] -> [INCOMPLETE][4] ([i915#4817])
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12491/fi-rkl-11600/igt@i915_suspend@basic-s3-without-i915.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8218/fi-rkl-11600/igt@i915_suspend@basic-s3-without-i915.html

  
#### Possible fixes ####

  * igt@i915_selftest@live@gt_pm:
    - {bat-adln-1}:       [DMESG-FAIL][5] ([i915#4258]) -> [PASS][6]
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12491/bat-adln-1/igt@i915_selftest@live@gt_pm.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8218/bat-adln-1/igt@i915_selftest@live@gt_pm.html

  * igt@kms_cursor_legacy@basic-busy-flip-before-cursor@atomic-transitions-varying-size:
    - fi-bsw-kefka:       [FAIL][7] ([i915#6298]) -> [PASS][8]
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12491/fi-bsw-kefka/igt@kms_cursor_legacy@basic-busy-flip-before-cursor@atomic-transitions-varying-size.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8218/fi-bsw-kefka/igt@kms_cursor_legacy@basic-busy-flip-before-cursor@atomic-transitions-varying-size.html

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

  [i915#4258]: https://gitlab.freedesktop.org/drm/intel/issues/4258
  [i915#4817]: https://gitlab.freedesktop.org/drm/intel/issues/4817
  [i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983
  [i915#6298]: https://gitlab.freedesktop.org/drm/intel/issues/6298


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

  * CI: CI-20190529 -> None
  * IGT: IGT_7090 -> IGTPW_8218

  CI-20190529: 20190529
  CI_DRM_12491: d322881f7e33af24901ee8ccaec3beef82f21203 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_8218: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8218/index.html
  IGT_7090: 5aafcf060b6dfbb2fa7aace76c8074d98ac7da8f @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git


Testlist changes
----------------

+igt@msm_shrink@copy-gpu-8
+igt@msm_shrink@copy-gpu-32
+igt@msm_shrink@copy-gpu-madvise-8
+igt@msm_shrink@copy-gpu-madvise-32
+igt@msm_shrink@copy-gpu-oom-8
+igt@msm_shrink@copy-gpu-oom-32
+igt@msm_shrink@copy-gpu-sanitycheck-8
+igt@msm_shrink@copy-gpu-sanitycheck-32
+igt@msm_shrink@copy-mmap-8
+igt@msm_shrink@copy-mmap-32
+igt@msm_shrink@copy-mmap-dmabuf-8
+igt@msm_shrink@copy-mmap-dmabuf-32
+igt@msm_shrink@copy-mmap-dmabuf-madvise-8
+igt@msm_shrink@copy-mmap-dmabuf-madvise-32
+igt@msm_shrink@copy-mmap-dmabuf-oom-8
+igt@msm_shrink@copy-mmap-dmabuf-oom-32
+igt@msm_shrink@copy-mmap-dmabuf-sanitycheck-8
+igt@msm_shrink@copy-mmap-dmabuf-sanitycheck-32
+igt@msm_shrink@copy-mmap-madvise-8
+igt@msm_shrink@copy-mmap-madvise-32
+igt@msm_shrink@copy-mmap-oom-8
+igt@msm_shrink@copy-mmap-oom-32
+igt@msm_shrink@copy-mmap-sanitycheck-8
+igt@msm_shrink@copy-mmap-sanitycheck-32

== Logs ==

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

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

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

* [igt-dev] ✗ Fi.CI.IGT: failure for series starting with [1/2] lib: Add helper to wait and close fence fd
  2022-12-11 19:52 [igt-dev] [PATCH igt 1/2] lib: Add helper to wait and close fence fd Rob Clark
  2022-12-11 19:52 ` [igt-dev] [PATCH igt 2/2] tests/msm: Add GEM shrinker/eviction test Rob Clark
  2022-12-11 21:00 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [1/2] lib: Add helper to wait and close fence fd Patchwork
@ 2022-12-11 22:04 ` Patchwork
  2023-02-17 19:18 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [1/2] lib: Add helper to wait and close fence fd (rev2) Patchwork
  2023-02-18  6:50 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
  4 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2022-12-11 22:04 UTC (permalink / raw)
  To: Rob Clark; +Cc: igt-dev

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

== Series Details ==

Series: series starting with [1/2] lib: Add helper to wait and close fence fd
URL   : https://patchwork.freedesktop.org/series/111827/
State : failure

== Summary ==

CI Bug Log - changes from CI_DRM_12491_full -> IGTPW_8218_full
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with IGTPW_8218_full absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in IGTPW_8218_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_8218/index.html

Participating hosts (14 -> 6)
------------------------------

  ERROR: It appears as if the changes made in IGTPW_8218_full prevented too many machines from booting.

  Missing    (8): pig-kbl-iris shard-tglu shard-tglu-10 shard-tglu-9 pig-glk-j5005 pig-skl-6260u shard-rkl shard-dg1 

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

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

### IGT changes ###

#### Issues hit ####

  * igt@gem_ctx_persistence@engines-persistence:
    - shard-snb:          NOTRUN -> [SKIP][1] ([fdo#109271] / [i915#1099]) +1 similar issue
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8218/shard-snb4/igt@gem_ctx_persistence@engines-persistence.html

  * igt@gem_exec_fair@basic-none-solo@rcs0:
    - shard-apl:          [PASS][2] -> [FAIL][3] ([i915#2842])
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12491/shard-apl3/igt@gem_exec_fair@basic-none-solo@rcs0.html
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8218/shard-apl6/igt@gem_exec_fair@basic-none-solo@rcs0.html

  * igt@gem_exec_fair@basic-pace@vcs1:
    - shard-iclb:         NOTRUN -> [FAIL][4] ([i915#2842])
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8218/shard-iclb2/igt@gem_exec_fair@basic-pace@vcs1.html

  * igt@gem_lmem_swapping@parallel-random-engines:
    - shard-iclb:         NOTRUN -> [SKIP][5] ([i915#4613])
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8218/shard-iclb6/igt@gem_lmem_swapping@parallel-random-engines.html
    - shard-apl:          NOTRUN -> [SKIP][6] ([fdo#109271] / [i915#4613])
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8218/shard-apl1/igt@gem_lmem_swapping@parallel-random-engines.html
    - shard-tglb:         NOTRUN -> [SKIP][7] ([i915#4613])
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8218/shard-tglb3/igt@gem_lmem_swapping@parallel-random-engines.html

  * igt@gem_softpin@evict-single-offset:
    - shard-apl:          NOTRUN -> [FAIL][8] ([i915#4171])
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8218/shard-apl1/igt@gem_softpin@evict-single-offset.html

  * igt@gem_userptr_blits@access-control:
    - shard-iclb:         NOTRUN -> [SKIP][9] ([i915#3297])
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8218/shard-iclb3/igt@gem_userptr_blits@access-control.html
    - shard-tglb:         NOTRUN -> [SKIP][10] ([i915#3297])
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8218/shard-tglb6/igt@gem_userptr_blits@access-control.html

  * igt@gen9_exec_parse@bb-oversize:
    - shard-tglb:         NOTRUN -> [SKIP][11] ([i915#2527] / [i915#2856]) +1 similar issue
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8218/shard-tglb5/igt@gen9_exec_parse@bb-oversize.html

  * igt@gen9_exec_parse@bb-start-param:
    - shard-iclb:         NOTRUN -> [SKIP][12] ([i915#2856]) +1 similar issue
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8218/shard-iclb8/igt@gen9_exec_parse@bb-start-param.html

  * igt@i915_selftest@live@hangcheck:
    - shard-tglb:         [PASS][13] -> [DMESG-WARN][14] ([i915#5591])
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12491/shard-tglb1/igt@i915_selftest@live@hangcheck.html
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8218/shard-tglb3/igt@i915_selftest@live@hangcheck.html

  * igt@kms_big_fb@4-tiled-64bpp-rotate-180:
    - shard-iclb:         NOTRUN -> [SKIP][15] ([i915#5286])
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8218/shard-iclb6/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
    - shard-tglb:         NOTRUN -> [SKIP][16] ([i915#5286])
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8218/shard-tglb6/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip:
    - shard-tglb:         NOTRUN -> [SKIP][17] ([fdo#111615])
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8218/shard-tglb6/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip.html

  * igt@kms_big_joiner@basic:
    - shard-iclb:         NOTRUN -> [SKIP][18] ([i915#2705])
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8218/shard-iclb8/igt@kms_big_joiner@basic.html

  * igt@kms_ccs@pipe-a-bad-pixel-format-yf_tiled_ccs:
    - shard-tglb:         NOTRUN -> [SKIP][19] ([fdo#111615] / [i915#3689]) +1 similar issue
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8218/shard-tglb2/igt@kms_ccs@pipe-a-bad-pixel-format-yf_tiled_ccs.html

  * igt@kms_ccs@pipe-a-crc-primary-rotation-180-4_tiled_dg2_rc_ccs_cc:
    - shard-iclb:         NOTRUN -> [SKIP][20] ([fdo#109278]) +3 similar issues
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8218/shard-iclb8/igt@kms_ccs@pipe-a-crc-primary-rotation-180-4_tiled_dg2_rc_ccs_cc.html

  * igt@kms_ccs@pipe-a-random-ccs-data-4_tiled_dg2_mc_ccs:
    - shard-tglb:         NOTRUN -> [SKIP][21] ([i915#6095])
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8218/shard-tglb1/igt@kms_ccs@pipe-a-random-ccs-data-4_tiled_dg2_mc_ccs.html

  * igt@kms_ccs@pipe-c-ccs-on-another-bo-yf_tiled_ccs:
    - shard-snb:          NOTRUN -> [SKIP][22] ([fdo#109271]) +135 similar issues
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8218/shard-snb4/igt@kms_ccs@pipe-c-ccs-on-another-bo-yf_tiled_ccs.html

  * igt@kms_ccs@pipe-c-crc-primary-rotation-180-4_tiled_dg2_rc_ccs:
    - shard-tglb:         NOTRUN -> [SKIP][23] ([i915#3689] / [i915#6095]) +1 similar issue
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8218/shard-tglb6/igt@kms_ccs@pipe-c-crc-primary-rotation-180-4_tiled_dg2_rc_ccs.html

  * igt@kms_ccs@pipe-d-bad-pixel-format-y_tiled_gen12_mc_ccs:
    - shard-apl:          NOTRUN -> [SKIP][24] ([fdo#109271]) +58 similar issues
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8218/shard-apl3/igt@kms_ccs@pipe-d-bad-pixel-format-y_tiled_gen12_mc_ccs.html
    - shard-tglb:         NOTRUN -> [SKIP][25] ([i915#3689]) +1 similar issue
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8218/shard-tglb6/igt@kms_ccs@pipe-d-bad-pixel-format-y_tiled_gen12_mc_ccs.html

  * igt@kms_chamelium@hdmi-aspect-ratio:
    - shard-apl:          NOTRUN -> [SKIP][26] ([fdo#109271] / [fdo#111827]) +1 similar issue
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8218/shard-apl7/igt@kms_chamelium@hdmi-aspect-ratio.html

  * igt@kms_chamelium@vga-hpd:
    - shard-snb:          NOTRUN -> [SKIP][27] ([fdo#109271] / [fdo#111827]) +3 similar issues
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8218/shard-snb7/igt@kms_chamelium@vga-hpd.html

  * igt@kms_color_chamelium@ctm-0-75:
    - shard-iclb:         NOTRUN -> [SKIP][28] ([fdo#109284] / [fdo#111827])
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8218/shard-iclb6/igt@kms_color_chamelium@ctm-0-75.html
    - shard-tglb:         NOTRUN -> [SKIP][29] ([fdo#109284] / [fdo#111827])
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8218/shard-tglb6/igt@kms_color_chamelium@ctm-0-75.html

  * igt@kms_content_protection@legacy@pipe-a-dp-1:
    - shard-apl:          NOTRUN -> [TIMEOUT][30] ([i915#7173])
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8218/shard-apl6/igt@kms_content_protection@legacy@pipe-a-dp-1.html

  * igt@kms_content_protection@uevent:
    - shard-iclb:         NOTRUN -> [SKIP][31] ([i915#7118])
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8218/shard-iclb7/igt@kms_content_protection@uevent.html
    - shard-tglb:         NOTRUN -> [SKIP][32] ([i915#6944] / [i915#7118])
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8218/shard-tglb5/igt@kms_content_protection@uevent.html

  * igt@kms_content_protection@uevent@pipe-a-dp-1:
    - shard-apl:          NOTRUN -> [FAIL][33] ([i915#1339])
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8218/shard-apl3/igt@kms_content_protection@uevent@pipe-a-dp-1.html

  * igt@kms_cursor_legacy@flip-vs-cursor@varying-size:
    - shard-iclb:         NOTRUN -> [FAIL][34] ([i915#2346]) +1 similar issue
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8218/shard-iclb7/igt@kms_cursor_legacy@flip-vs-cursor@varying-size.html

  * igt@kms_dsc@dsc-with-bpc:
    - shard-iclb:         NOTRUN -> [SKIP][35] ([i915#3840])
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8218/shard-iclb2/igt@kms_dsc@dsc-with-bpc.html

  * igt@kms_fbcon_fbt@fbc:
    - shard-apl:          NOTRUN -> [FAIL][36] ([i915#4767])
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8218/shard-apl1/igt@kms_fbcon_fbt@fbc.html
    - shard-tglb:         NOTRUN -> [FAIL][37] ([i915#4767])
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8218/shard-tglb3/igt@kms_fbcon_fbt@fbc.html
    - shard-iclb:         NOTRUN -> [FAIL][38] ([i915#4767])
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8218/shard-iclb7/igt@kms_fbcon_fbt@fbc.html

  * igt@kms_flip@2x-flip-vs-suspend:
    - shard-iclb:         NOTRUN -> [SKIP][39] ([fdo#109274]) +2 similar issues
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8218/shard-iclb5/igt@kms_flip@2x-flip-vs-suspend.html

  * igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset:
    - shard-tglb:         NOTRUN -> [SKIP][40] ([fdo#109274] / [fdo#111825] / [i915#3637]) +2 similar issues
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8218/shard-tglb1/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html

  * igt@kms_flip@flip-vs-suspend-interruptible@c-edp1:
    - shard-tglb:         [PASS][41] -> [INCOMPLETE][42] ([i915#2411])
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12491/shard-tglb1/igt@kms_flip@flip-vs-suspend-interruptible@c-edp1.html
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8218/shard-tglb5/igt@kms_flip@flip-vs-suspend-interruptible@c-edp1.html

  * igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode:
    - shard-iclb:         NOTRUN -> [SKIP][43] ([i915#2672]) +4 similar issues
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8218/shard-iclb2/igt@kms_flip_scaled_crc@flip-32bpp-4tile-to-32bpp-4tiledg2rcccs-upscaling@pipe-a-default-mode.html

  * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling@pipe-a-default-mode:
    - shard-iclb:         NOTRUN -> [SKIP][44] ([i915#3555]) +1 similar issue
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8218/shard-iclb2/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling@pipe-a-default-mode.html

  * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-valid-mode:
    - shard-iclb:         NOTRUN -> [SKIP][45] ([i915#2587] / [i915#2672]) +1 similar issue
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8218/shard-iclb6/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-downscaling@pipe-a-valid-mode.html

  * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt:
    - shard-tglb:         NOTRUN -> [SKIP][46] ([fdo#109280] / [fdo#111825]) +11 similar issues
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8218/shard-tglb6/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-gtt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt:
    - shard-tglb:         NOTRUN -> [SKIP][47] ([i915#6497]) +3 similar issues
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8218/shard-tglb3/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-indfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-pgflip-blt:
    - shard-iclb:         NOTRUN -> [SKIP][48] ([fdo#109280]) +11 similar issues
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8218/shard-iclb2/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-indfb-pgflip-blt.html

  * igt@kms_plane_alpha_blend@alpha-basic@pipe-a-dp-1:
    - shard-apl:          NOTRUN -> [FAIL][49] ([i915#4573]) +2 similar issues
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8218/shard-apl7/igt@kms_plane_alpha_blend@alpha-basic@pipe-a-dp-1.html

  * igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-5@pipe-b-edp-1:
    - shard-iclb:         [PASS][50] -> [SKIP][51] ([i915#5176]) +4 similar issues
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12491/shard-iclb8/igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-5@pipe-b-edp-1.html
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8218/shard-iclb2/igt@kms_plane_scaling@plane-downscale-with-pixel-format-factor-0-5@pipe-b-edp-1.html

  * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-c-edp-1:
    - shard-iclb:         [PASS][52] -> [SKIP][53] ([i915#5235]) +2 similar issues
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12491/shard-iclb3/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-c-edp-1.html
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8218/shard-iclb2/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-5@pipe-c-edp-1.html

  * igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf:
    - shard-tglb:         NOTRUN -> [SKIP][54] ([i915#2920])
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8218/shard-tglb2/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf.html
    - shard-iclb:         NOTRUN -> [SKIP][55] ([i915#2920])
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8218/shard-iclb2/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf.html
    - shard-apl:          NOTRUN -> [SKIP][56] ([fdo#109271] / [i915#658])
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8218/shard-apl7/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-sf.html

  * igt@kms_psr@psr2_cursor_mmap_gtt:
    - shard-iclb:         [PASS][57] -> [SKIP][58] ([fdo#109441]) +2 similar issues
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12491/shard-iclb2/igt@kms_psr@psr2_cursor_mmap_gtt.html
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8218/shard-iclb6/igt@kms_psr@psr2_cursor_mmap_gtt.html

  * igt@kms_psr@psr2_cursor_plane_move:
    - shard-tglb:         NOTRUN -> [FAIL][59] ([i915#132] / [i915#3467]) +1 similar issue
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8218/shard-tglb3/igt@kms_psr@psr2_cursor_plane_move.html

  * igt@kms_psr_stress_test@flip-primary-invalidate-overlay:
    - shard-tglb:         NOTRUN -> [SKIP][60] ([i915#5519])
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8218/shard-tglb6/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html
    - shard-iclb:         NOTRUN -> [SKIP][61] ([i915#5519])
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8218/shard-iclb6/igt@kms_psr_stress_test@flip-primary-invalidate-overlay.html

  * igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
    - shard-tglb:         [PASS][62] -> [SKIP][63] ([i915#5519])
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12491/shard-tglb5/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8218/shard-tglb7/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html

  * igt@sysfs_clients@create:
    - shard-iclb:         NOTRUN -> [SKIP][64] ([i915#2994])
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8218/shard-iclb6/igt@sysfs_clients@create.html
    - shard-apl:          NOTRUN -> [SKIP][65] ([fdo#109271] / [i915#2994])
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8218/shard-apl3/igt@sysfs_clients@create.html
    - shard-tglb:         NOTRUN -> [SKIP][66] ([i915#2994])
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8218/shard-tglb6/igt@sysfs_clients@create.html

  
#### Possible fixes ####

  * {igt@gem_exec_balancer@parallel-dmabuf-import-out-fence}:
    - shard-iclb:         [SKIP][67] -> [PASS][68]
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12491/shard-iclb5/igt@gem_exec_balancer@parallel-dmabuf-import-out-fence.html
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8218/shard-iclb1/igt@gem_exec_balancer@parallel-dmabuf-import-out-fence.html

  * igt@gem_exec_balancer@parallel-keep-in-fence:
    - shard-iclb:         [SKIP][69] ([i915#4525]) -> [PASS][70]
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12491/shard-iclb3/igt@gem_exec_balancer@parallel-keep-in-fence.html
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8218/shard-iclb2/igt@gem_exec_balancer@parallel-keep-in-fence.html

  * igt@gem_exec_fair@basic-none-share@rcs0:
    - shard-tglb:         [FAIL][71] ([i915#2842]) -> [PASS][72]
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12491/shard-tglb2/igt@gem_exec_fair@basic-none-share@rcs0.html
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8218/shard-tglb2/igt@gem_exec_fair@basic-none-share@rcs0.html

  * igt@i915_pm_dc@dc9-dpms:
    - shard-apl:          [SKIP][73] ([fdo#109271]) -> [PASS][74]
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12491/shard-apl8/igt@i915_pm_dc@dc9-dpms.html
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8218/shard-apl3/igt@i915_pm_dc@dc9-dpms.html

  * igt@i915_suspend@fence-restore-untiled:
    - shard-snb:          [DMESG-WARN][75] ([i915#5090]) -> [PASS][76]
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12491/shard-snb4/igt@i915_suspend@fence-restore-untiled.html
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8218/shard-snb5/igt@i915_suspend@fence-restore-untiled.html

  * igt@kms_psr@psr2_no_drrs:
    - shard-iclb:         [SKIP][77] ([fdo#109441]) -> [PASS][78] +2 similar issues
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12491/shard-iclb5/igt@kms_psr@psr2_no_drrs.html
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8218/shard-iclb2/igt@kms_psr@psr2_no_drrs.html

  * igt@perf_pmu@rc6-suspend:
    - shard-apl:          [DMESG-WARN][79] ([i915#180]) -> [PASS][80]
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12491/shard-apl8/igt@perf_pmu@rc6-suspend.html
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8218/shard-apl2/igt@perf_pmu@rc6-suspend.html

  
#### Warnings ####

  * igt@gem_exec_balancer@parallel-ordering:
    - shard-iclb:         [SKIP][81] ([i915#4525]) -> [FAIL][82] ([i915#6117])
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12491/shard-iclb7/igt@gem_exec_balancer@parallel-ordering.html
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8218/shard-iclb2/igt@gem_exec_balancer@parallel-ordering.html

  * igt@i915_pm_dc@dc3co-vpb-simulation:
    - shard-iclb:         [SKIP][83] ([i915#658]) -> [SKIP][84] ([i915#588])
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12491/shard-iclb3/igt@i915_pm_dc@dc3co-vpb-simulation.html
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8218/shard-iclb2/igt@i915_pm_dc@dc3co-vpb-simulation.html

  * igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf:
    - shard-iclb:         [SKIP][85] ([i915#658]) -> [SKIP][86] ([i915#2920])
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12491/shard-iclb5/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf.html
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8218/shard-iclb2/igt@kms_psr2_sf@cursor-plane-move-continuous-exceed-fully-sf.html

  * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area:
    - shard-iclb:         [SKIP][87] ([fdo#111068] / [i915#658]) -> [SKIP][88] ([i915#2920])
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12491/shard-iclb8/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area.html
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8218/shard-iclb2/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area.html

  * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb:
    - shard-iclb:         [SKIP][89] ([i915#2920]) -> [SKIP][90] ([i915#658])
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_12491/shard-iclb2/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb.html
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8218/shard-iclb7/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area-big-fb.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#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
  [fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278
  [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
  [fdo#109284]: https://bugs.freedesktop.org/show_bug.cgi?id=109284
  [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441
  [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
  [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
  [fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
  [fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
  [i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099
  [i915#132]: https://gitlab.freedesktop.org/drm/intel/issues/132
  [i915#1339]: https://gitlab.freedesktop.org/drm/intel/issues/1339
  [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180
  [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
  [i915#2411]: https://gitlab.freedesktop.org/drm/intel/issues/2411
  [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527
  [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587
  [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
  [i915#2705]: https://gitlab.freedesktop.org/drm/intel/issues/2705
  [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#2994]: https://gitlab.freedesktop.org/drm/intel/issues/2994
  [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
  [i915#3467]: https://gitlab.freedesktop.org/drm/intel/issues/3467
  [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
  [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637
  [i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689
  [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840
  [i915#4171]: https://gitlab.freedesktop.org/drm/intel/issues/4171
  [i915#4525]: https://gitlab.freedesktop.org/drm/intel/issues/4525
  [i915#4573]: https://gitlab.freedesktop.org/drm/intel/issues/4573
  [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
  [i915#4767]: https://gitlab.freedesktop.org/drm/intel/issues/4767
  [i915#5090]: https://gitlab.freedesktop.org/drm/intel/issues/5090
  [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#5519]: https://gitlab.freedesktop.org/drm/intel/issues/5519
  [i915#5591]: https://gitlab.freedesktop.org/drm/intel/issues/5591
  [i915#588]: https://gitlab.freedesktop.org/drm/intel/issues/588
  [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
  [i915#6117]: https://gitlab.freedesktop.org/drm/intel/issues/6117
  [i915#6497]: https://gitlab.freedesktop.org/drm/intel/issues/6497
  [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
  [i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944
  [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118
  [i915#7173]: https://gitlab.freedesktop.org/drm/intel/issues/7173


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

  * CI: CI-20190529 -> None
  * IGT: IGT_7090 -> IGTPW_8218
  * Piglit: piglit_4509 -> None

  CI-20190529: 20190529
  CI_DRM_12491: d322881f7e33af24901ee8ccaec3beef82f21203 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_8218: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8218/index.html
  IGT_7090: 5aafcf060b6dfbb2fa7aace76c8074d98ac7da8f @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
  piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit

== Logs ==

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

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

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

* [igt-dev] ✓ Fi.CI.BAT: success for series starting with [1/2] lib: Add helper to wait and close fence fd (rev2)
  2022-12-11 19:52 [igt-dev] [PATCH igt 1/2] lib: Add helper to wait and close fence fd Rob Clark
                   ` (2 preceding siblings ...)
  2022-12-11 22:04 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
@ 2023-02-17 19:18 ` Patchwork
  2023-02-18  6:50 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork
  4 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2023-02-17 19:18 UTC (permalink / raw)
  To: Rob Clark; +Cc: igt-dev

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

== Series Details ==

Series: series starting with [1/2] lib: Add helper to wait and close fence fd (rev2)
URL   : https://patchwork.freedesktop.org/series/111827/
State : success

== Summary ==

CI Bug Log - changes from IGT_7165 -> IGTPW_8507
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

Participating hosts (38 -> 36)
------------------------------

  Missing    (2): bat-kbl-2 fi-snb-2520m 

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

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

### IGT changes ###

#### Issues hit ####

  * igt@i915_selftest@live@hangcheck:
    - bat-dg2-11:         [PASS][1] -> [ABORT][2] ([i915#7913])
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7165/bat-dg2-11/igt@i915_selftest@live@hangcheck.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8507/bat-dg2-11/igt@i915_selftest@live@hangcheck.html

  * igt@i915_selftest@live@migrate:
    - bat-dg2-11:         [PASS][3] -> [DMESG-WARN][4] ([i915#7699])
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7165/bat-dg2-11/igt@i915_selftest@live@migrate.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8507/bat-dg2-11/igt@i915_selftest@live@migrate.html

  * igt@i915_selftest@live@requests:
    - bat-rpls-2:         [PASS][5] -> [ABORT][6] ([i915#4983])
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7165/bat-rpls-2/igt@i915_selftest@live@requests.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8507/bat-rpls-2/igt@i915_selftest@live@requests.html

  * igt@kms_chamelium_hpd@common-hpd-after-suspend:
    - bat-rpls-1:         NOTRUN -> [SKIP][7] ([i915#7828])
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8507/bat-rpls-1/igt@kms_chamelium_hpd@common-hpd-after-suspend.html

  * igt@kms_cursor_legacy@basic-busy-flip-before-cursor@atomic-transitions:
    - fi-bsw-n3050:       [PASS][8] -> [FAIL][9] ([i915#6298])
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7165/fi-bsw-n3050/igt@kms_cursor_legacy@basic-busy-flip-before-cursor@atomic-transitions.html
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8507/fi-bsw-n3050/igt@kms_cursor_legacy@basic-busy-flip-before-cursor@atomic-transitions.html

  * igt@kms_pipe_crc_basic@read-crc:
    - bat-adlp-9:         NOTRUN -> [SKIP][10] ([i915#3546]) +1 similar issue
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8507/bat-adlp-9/igt@kms_pipe_crc_basic@read-crc.html

  * igt@kms_pipe_crc_basic@suspend-read-crc:
    - bat-rpls-1:         NOTRUN -> [SKIP][11] ([i915#1845])
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8507/bat-rpls-1/igt@kms_pipe_crc_basic@suspend-read-crc.html

  
#### Possible fixes ####

  * igt@gem_exec_suspend@basic-s3@smem:
    - bat-rpls-1:         [ABORT][12] ([i915#6687] / [i915#7978]) -> [PASS][13]
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7165/bat-rpls-1/igt@gem_exec_suspend@basic-s3@smem.html
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8507/bat-rpls-1/igt@gem_exec_suspend@basic-s3@smem.html

  * igt@i915_selftest@live@gt_heartbeat:
    - fi-apl-guc:         [DMESG-FAIL][14] ([i915#5334]) -> [PASS][15]
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7165/fi-apl-guc/igt@i915_selftest@live@gt_heartbeat.html
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8507/fi-apl-guc/igt@i915_selftest@live@gt_heartbeat.html

  * igt@i915_selftest@live@migrate:
    - bat-atsm-1:         [DMESG-FAIL][16] ([i915#7699]) -> [PASS][17]
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7165/bat-atsm-1/igt@i915_selftest@live@migrate.html
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8507/bat-atsm-1/igt@i915_selftest@live@migrate.html

  
#### Warnings ####

  * igt@i915_selftest@live@slpc:
    - bat-rpls-1:         [DMESG-FAIL][18] ([i915#6367]) -> [DMESG-FAIL][19] ([i915#6367] / [i915#7996])
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7165/bat-rpls-1/igt@i915_selftest@live@slpc.html
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8507/bat-rpls-1/igt@i915_selftest@live@slpc.html

  
  [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845
  [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546
  [i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983
  [i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334
  [i915#6298]: https://gitlab.freedesktop.org/drm/intel/issues/6298
  [i915#6367]: https://gitlab.freedesktop.org/drm/intel/issues/6367
  [i915#6687]: https://gitlab.freedesktop.org/drm/intel/issues/6687
  [i915#7699]: https://gitlab.freedesktop.org/drm/intel/issues/7699
  [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
  [i915#7913]: https://gitlab.freedesktop.org/drm/intel/issues/7913
  [i915#7978]: https://gitlab.freedesktop.org/drm/intel/issues/7978
  [i915#7996]: https://gitlab.freedesktop.org/drm/intel/issues/7996


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

  * CI: CI-20190529 -> None
  * IGT: IGT_7165 -> IGTPW_8507

  CI-20190529: 20190529
  CI_DRM_12757: 6653ef2d4663783ddec0ce1622ebbb4d47a2747f @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_8507: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8507/index.html
  IGT_7165: 509e7e63c6377d0fe77d1bd209857fb191f4a84c @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git


Testlist changes
----------------

+igt@msm_shrink@copy-gpu-8
+igt@msm_shrink@copy-gpu-32
+igt@msm_shrink@copy-gpu-madvise-8
+igt@msm_shrink@copy-gpu-madvise-32
+igt@msm_shrink@copy-gpu-oom-8
+igt@msm_shrink@copy-gpu-oom-32
+igt@msm_shrink@copy-gpu-sanitycheck-8
+igt@msm_shrink@copy-gpu-sanitycheck-32
+igt@msm_shrink@copy-mmap-8
+igt@msm_shrink@copy-mmap-32
+igt@msm_shrink@copy-mmap-dmabuf-8
+igt@msm_shrink@copy-mmap-dmabuf-32
+igt@msm_shrink@copy-mmap-dmabuf-madvise-8
+igt@msm_shrink@copy-mmap-dmabuf-madvise-32
+igt@msm_shrink@copy-mmap-dmabuf-oom-8
+igt@msm_shrink@copy-mmap-dmabuf-oom-32
+igt@msm_shrink@copy-mmap-dmabuf-sanitycheck-8
+igt@msm_shrink@copy-mmap-dmabuf-sanitycheck-32
+igt@msm_shrink@copy-mmap-madvise-8
+igt@msm_shrink@copy-mmap-madvise-32
+igt@msm_shrink@copy-mmap-oom-8
+igt@msm_shrink@copy-mmap-oom-32
+igt@msm_shrink@copy-mmap-sanitycheck-8
+igt@msm_shrink@copy-mmap-sanitycheck-32
-igt@kms_dsc@dsc-with-output-formats

== Logs ==

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

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

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

* [igt-dev] ✓ Fi.CI.IGT: success for series starting with [1/2] lib: Add helper to wait and close fence fd (rev2)
  2022-12-11 19:52 [igt-dev] [PATCH igt 1/2] lib: Add helper to wait and close fence fd Rob Clark
                   ` (3 preceding siblings ...)
  2023-02-17 19:18 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [1/2] lib: Add helper to wait and close fence fd (rev2) Patchwork
@ 2023-02-18  6:50 ` Patchwork
  4 siblings, 0 replies; 7+ messages in thread
From: Patchwork @ 2023-02-18  6:50 UTC (permalink / raw)
  To: Rob Clark; +Cc: igt-dev

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

== Series Details ==

Series: series starting with [1/2] lib: Add helper to wait and close fence fd (rev2)
URL   : https://patchwork.freedesktop.org/series/111827/
State : success

== Summary ==

CI Bug Log - changes from IGT_7165_full -> IGTPW_8507_full
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

Participating hosts (11 -> 10)
------------------------------

  Missing    (1): shard-rkl0 

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

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

### IGT changes ###

#### Suppressed ####

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

  * igt@gem_mmap_offset@clear@smem0:
    - {shard-rkl}:        [PASS][1] -> [ABORT][2]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7165/shard-rkl-4/igt@gem_mmap_offset@clear@smem0.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8507/shard-rkl-1/igt@gem_mmap_offset@clear@smem0.html

  * {igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b-hdmi-a-1}:
    - {shard-tglu}:       NOTRUN -> [SKIP][3] +3 similar issues
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8507/shard-tglu-3/igt@kms_plane_scaling@planes-downscale-factor-0-25-unity-scaling@pipe-b-hdmi-a-1.html

  * {igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling}:
    - {shard-rkl}:        NOTRUN -> [SKIP][4] +1 similar issue
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8507/shard-rkl-2/igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling.html

  * {igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20}:
    - shard-tglu-9:       NOTRUN -> [SKIP][5]
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8507/shard-tglu-9/igt@kms_plane_scaling@planes-downscale-factor-0-5-upscale-20x20.html

  * {igt@v3d/v3d_submit_csd@multisync-out-syncs}:
    - {shard-dg1}:        NOTRUN -> [SKIP][6]
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8507/shard-dg1-16/igt@v3d/v3d_submit_csd@multisync-out-syncs.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@api_intel_bb@crc32:
    - shard-tglu-10:      NOTRUN -> [SKIP][7] ([i915#6230])
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8507/shard-tglu-10/igt@api_intel_bb@crc32.html

  * igt@drm_read@invalid-buffer:
    - shard-tglu-9:       NOTRUN -> [SKIP][8] ([i915#1845]) +8 similar issues
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8507/shard-tglu-9/igt@drm_read@invalid-buffer.html

  * igt@fbdev@write:
    - shard-tglu-9:       NOTRUN -> [SKIP][9] ([i915#2582])
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8507/shard-tglu-9/igt@fbdev@write.html

  * igt@gem_ccs@ctrl-surf-copy:
    - shard-tglu-10:      NOTRUN -> [SKIP][10] ([i915#3555] / [i915#5325])
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8507/shard-tglu-10/igt@gem_ccs@ctrl-surf-copy.html

  * igt@gem_close_race@multigpu-basic-threads:
    - shard-tglu-10:      NOTRUN -> [SKIP][11] ([i915#7697])
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8507/shard-tglu-10/igt@gem_close_race@multigpu-basic-threads.html

  * igt@gem_exec_fair@basic-none-vip@rcs0:
    - shard-tglu-10:      NOTRUN -> [FAIL][12] ([i915#2842]) +1 similar issue
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8507/shard-tglu-10/igt@gem_exec_fair@basic-none-vip@rcs0.html

  * igt@gem_exec_schedule@wide@rcs0:
    - shard-apl:          [PASS][13] -> [FAIL][14] ([i915#6659])
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7165/shard-apl4/igt@gem_exec_schedule@wide@rcs0.html
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8507/shard-apl4/igt@gem_exec_schedule@wide@rcs0.html

  * igt@gem_lmem_evict@dontneed-evict-race:
    - shard-tglu-10:      NOTRUN -> [SKIP][15] ([i915#7582])
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8507/shard-tglu-10/igt@gem_lmem_evict@dontneed-evict-race.html

  * igt@gem_lmem_swapping@heavy-verify-random-ccs:
    - shard-apl:          NOTRUN -> [SKIP][16] ([fdo#109271] / [i915#4613])
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8507/shard-apl1/igt@gem_lmem_swapping@heavy-verify-random-ccs.html
    - shard-tglu-10:      NOTRUN -> [SKIP][17] ([i915#4613]) +2 similar issues
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8507/shard-tglu-10/igt@gem_lmem_swapping@heavy-verify-random-ccs.html

  * igt@gem_lmem_swapping@parallel-multi:
    - shard-tglu-9:       NOTRUN -> [SKIP][18] ([i915#4613]) +2 similar issues
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8507/shard-tglu-9/igt@gem_lmem_swapping@parallel-multi.html

  * igt@gem_media_vme:
    - shard-tglu-9:       NOTRUN -> [SKIP][19] ([i915#284])
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8507/shard-tglu-9/igt@gem_media_vme.html

  * igt@gem_ppgtt@blt-vs-render-ctx0:
    - shard-snb:          [PASS][20] -> [FAIL][21] ([i915#4998])
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7165/shard-snb5/igt@gem_ppgtt@blt-vs-render-ctx0.html
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8507/shard-snb1/igt@gem_ppgtt@blt-vs-render-ctx0.html

  * igt@gem_pxp@protected-encrypted-src-copy-not-readible:
    - shard-tglu-10:      NOTRUN -> [SKIP][22] ([i915#4270])
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8507/shard-tglu-10/igt@gem_pxp@protected-encrypted-src-copy-not-readible.html

  * igt@gem_pxp@verify-pxp-stale-buf-execution:
    - shard-tglu-9:       NOTRUN -> [SKIP][23] ([i915#4270]) +1 similar issue
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8507/shard-tglu-9/igt@gem_pxp@verify-pxp-stale-buf-execution.html

  * igt@gem_userptr_blits@unsync-overlap:
    - shard-tglu-10:      NOTRUN -> [SKIP][24] ([i915#3297])
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8507/shard-tglu-10/igt@gem_userptr_blits@unsync-overlap.html

  * igt@gen7_exec_parse@cmd-crossing-page:
    - shard-tglu-10:      NOTRUN -> [SKIP][25] ([fdo#109289]) +3 similar issues
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8507/shard-tglu-10/igt@gen7_exec_parse@cmd-crossing-page.html

  * igt@gen9_exec_parse@allowed-single:
    - shard-apl:          [PASS][26] -> [ABORT][27] ([i915#5566])
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7165/shard-apl1/igt@gen9_exec_parse@allowed-single.html
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8507/shard-apl3/igt@gen9_exec_parse@allowed-single.html

  * igt@gen9_exec_parse@basic-rejected:
    - shard-tglu-10:      NOTRUN -> [SKIP][28] ([i915#2527] / [i915#2856]) +3 similar issues
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8507/shard-tglu-10/igt@gen9_exec_parse@basic-rejected.html

  * igt@gen9_exec_parse@bb-start-cmd:
    - shard-tglu-9:       NOTRUN -> [SKIP][29] ([i915#2527] / [i915#2856]) +1 similar issue
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8507/shard-tglu-9/igt@gen9_exec_parse@bb-start-cmd.html

  * igt@i915_pm_backlight@bad-brightness:
    - shard-tglu-10:      NOTRUN -> [SKIP][30] ([i915#7561])
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8507/shard-tglu-10/igt@i915_pm_backlight@bad-brightness.html

  * igt@i915_pm_backlight@fade-with-suspend:
    - shard-tglu-9:       NOTRUN -> [SKIP][31] ([i915#7561]) +1 similar issue
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8507/shard-tglu-9/igt@i915_pm_backlight@fade-with-suspend.html

  * igt@i915_pm_lpsp@screens-disabled:
    - shard-tglu-10:      NOTRUN -> [SKIP][32] ([i915#1902])
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8507/shard-tglu-10/igt@i915_pm_lpsp@screens-disabled.html

  * igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait:
    - shard-tglu-9:       NOTRUN -> [SKIP][33] ([fdo#111644] / [i915#1397])
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8507/shard-tglu-9/igt@i915_pm_rpm@modeset-non-lpsp-stress-no-wait.html

  * igt@i915_pm_rps@engine-order:
    - shard-apl:          [PASS][34] -> [FAIL][35] ([i915#6537])
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7165/shard-apl6/igt@i915_pm_rps@engine-order.html
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8507/shard-apl6/igt@i915_pm_rps@engine-order.html

  * igt@i915_query@hwconfig_table:
    - shard-tglu-9:       NOTRUN -> [SKIP][36] ([i915#6245])
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8507/shard-tglu-9/igt@i915_query@hwconfig_table.html

  * igt@i915_query@query-topology-known-pci-ids:
    - shard-tglu-9:       NOTRUN -> [SKIP][37] ([fdo#109303])
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8507/shard-tglu-9/igt@i915_query@query-topology-known-pci-ids.html

  * igt@kms_atomic@plane-primary-overlay-mutable-zpos:
    - shard-tglu-10:      NOTRUN -> [SKIP][38] ([i915#404])
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8507/shard-tglu-10/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html

  * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip:
    - shard-tglu-10:      NOTRUN -> [SKIP][39] ([i915#5286]) +4 similar issues
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8507/shard-tglu-10/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-async-flip.html

  * igt@kms_big_fb@linear-16bpp-rotate-180:
    - shard-tglu-9:       NOTRUN -> [SKIP][40] ([i915#1845] / [i915#7651]) +43 similar issues
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8507/shard-tglu-9/igt@kms_big_fb@linear-16bpp-rotate-180.html

  * igt@kms_big_fb@linear-16bpp-rotate-90:
    - shard-tglu-10:      NOTRUN -> [SKIP][41] ([fdo#111614]) +2 similar issues
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8507/shard-tglu-10/igt@kms_big_fb@linear-16bpp-rotate-90.html

  * igt@kms_big_fb@yf-tiled-64bpp-rotate-180:
    - shard-tglu-10:      NOTRUN -> [SKIP][42] ([fdo#111615]) +3 similar issues
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8507/shard-tglu-10/igt@kms_big_fb@yf-tiled-64bpp-rotate-180.html

  * igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180:
    - shard-tglu-9:       NOTRUN -> [SKIP][43] ([fdo#111615] / [i915#1845] / [i915#7651]) +4 similar issues
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8507/shard-tglu-9/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180.html

  * igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_rc_ccs:
    - shard-glk:          NOTRUN -> [SKIP][44] ([fdo#109271]) +21 similar issues
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8507/shard-glk4/igt@kms_ccs@pipe-a-ccs-on-another-bo-y_tiled_gen12_rc_ccs.html

  * igt@kms_ccs@pipe-a-crc-primary-rotation-180-y_tiled_gen12_mc_ccs:
    - shard-apl:          NOTRUN -> [SKIP][45] ([fdo#109271] / [i915#3886]) +3 similar issues
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8507/shard-apl2/igt@kms_ccs@pipe-a-crc-primary-rotation-180-y_tiled_gen12_mc_ccs.html

  * igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_gen12_mc_ccs:
    - shard-tglu-10:      NOTRUN -> [SKIP][46] ([i915#3689] / [i915#3886]) +6 similar issues
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8507/shard-tglu-10/igt@kms_ccs@pipe-a-missing-ccs-buffer-y_tiled_gen12_mc_ccs.html

  * igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_mc_ccs:
    - shard-glk:          NOTRUN -> [SKIP][47] ([fdo#109271] / [i915#3886]) +1 similar issue
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8507/shard-glk9/igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_mc_ccs.html

  * igt@kms_ccs@pipe-c-bad-rotation-90-4_tiled_dg2_mc_ccs:
    - shard-tglu-10:      NOTRUN -> [SKIP][48] ([i915#6095]) +2 similar issues
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8507/shard-tglu-10/igt@kms_ccs@pipe-c-bad-rotation-90-4_tiled_dg2_mc_ccs.html

  * igt@kms_ccs@pipe-c-crc-primary-basic-4_tiled_dg2_mc_ccs:
    - shard-tglu-10:      NOTRUN -> [SKIP][49] ([i915#3689] / [i915#6095]) +2 similar issues
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8507/shard-tglu-10/igt@kms_ccs@pipe-c-crc-primary-basic-4_tiled_dg2_mc_ccs.html

  * igt@kms_ccs@pipe-d-bad-pixel-format-4_tiled_dg2_rc_ccs_cc:
    - shard-tglu-10:      NOTRUN -> [SKIP][50] ([i915#3689]) +5 similar issues
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8507/shard-tglu-10/igt@kms_ccs@pipe-d-bad-pixel-format-4_tiled_dg2_rc_ccs_cc.html

  * igt@kms_ccs@pipe-d-ccs-on-another-bo-yf_tiled_ccs:
    - shard-tglu-10:      NOTRUN -> [SKIP][51] ([fdo#111615] / [i915#3689]) +1 similar issue
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8507/shard-tglu-10/igt@kms_ccs@pipe-d-ccs-on-another-bo-yf_tiled_ccs.html

  * igt@kms_cdclk@mode-transition-all-outputs:
    - shard-tglu-10:      NOTRUN -> [SKIP][52] ([i915#3742])
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8507/shard-tglu-10/igt@kms_cdclk@mode-transition-all-outputs.html

  * igt@kms_chamelium_color@ctm-0-75:
    - shard-tglu-10:      NOTRUN -> [SKIP][53] ([fdo#111827]) +1 similar issue
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8507/shard-tglu-10/igt@kms_chamelium_color@ctm-0-75.html

  * igt@kms_chamelium_color@ctm-green-to-red:
    - shard-tglu-9:       NOTRUN -> [SKIP][54] ([fdo#111827])
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8507/shard-tglu-9/igt@kms_chamelium_color@ctm-green-to-red.html

  * igt@kms_chamelium_hpd@hdmi-hpd:
    - shard-tglu-10:      NOTRUN -> [SKIP][55] ([i915#7828]) +6 similar issues
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8507/shard-tglu-10/igt@kms_chamelium_hpd@hdmi-hpd.html

  * igt@kms_chamelium_hpd@vga-hpd-fast:
    - shard-tglu-9:       NOTRUN -> [SKIP][56] ([i915#7828]) +3 similar issues
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8507/shard-tglu-9/igt@kms_chamelium_hpd@vga-hpd-fast.html

  * igt@kms_color@ctm-green-to-red@pipe-a-hdmi-a-1:
    - shard-snb:          NOTRUN -> [SKIP][57] ([fdo#109271]) +45 similar issues
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8507/shard-snb1/igt@kms_color@ctm-green-to-red@pipe-a-hdmi-a-1.html

  * igt@kms_content_protection@dp-mst-type-1:
    - shard-tglu-10:      NOTRUN -> [SKIP][58] ([i915#3116] / [i915#3299])
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8507/shard-tglu-10/igt@kms_content_protection@dp-mst-type-1.html

  * igt@kms_content_protection@uevent:
    - shard-tglu-10:      NOTRUN -> [SKIP][59] ([i915#6944] / [i915#7116] / [i915#7118]) +1 similar issue
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8507/shard-tglu-10/igt@kms_content_protection@uevent.html

  * igt@kms_cursor_crc@cursor-offscreen-max-size:
    - shard-tglu-10:      NOTRUN -> [SKIP][60] ([i915#3555]) +1 similar issue
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8507/shard-tglu-10/igt@kms_cursor_crc@cursor-offscreen-max-size.html

  * igt@kms_cursor_crc@cursor-sliding-512x170:
    - shard-tglu-10:      NOTRUN -> [SKIP][61] ([i915#3359])
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8507/shard-tglu-10/igt@kms_cursor_crc@cursor-sliding-512x170.html

  * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic:
    - shard-tglu-10:      NOTRUN -> [SKIP][62] ([fdo#109274]) +1 similar issue
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8507/shard-tglu-10/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-atomic.html

  * igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size:
    - shard-apl:          [PASS][63] -> [FAIL][64] ([i915#2346])
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7165/shard-apl1/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size.html
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8507/shard-apl3/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size.html

  * igt@kms_fbcon_fbt@fbc-suspend:
    - shard-apl:          [PASS][65] -> [FAIL][66] ([i915#4767])
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7165/shard-apl3/igt@kms_fbcon_fbt@fbc-suspend.html
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8507/shard-apl1/igt@kms_fbcon_fbt@fbc-suspend.html

  * igt@kms_flip@2x-dpms-vs-vblank-race-interruptible:
    - shard-tglu-10:      NOTRUN -> [SKIP][67] ([fdo#109274] / [i915#3637]) +10 similar issues
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8507/shard-tglu-10/igt@kms_flip@2x-dpms-vs-vblank-race-interruptible.html

  * igt@kms_flip@2x-flip-vs-modeset-vs-hang:
    - shard-tglu-9:       NOTRUN -> [SKIP][68] ([fdo#109274] / [i915#3637])
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8507/shard-tglu-9/igt@kms_flip@2x-flip-vs-modeset-vs-hang.html

  * igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp1:
    - shard-apl:          [PASS][69] -> [FAIL][70] ([i915#79])
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7165/shard-apl6/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp1.html
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8507/shard-apl2/igt@kms_flip@flip-vs-expired-vblank-interruptible@b-dp1.html

  * igt@kms_flip@modeset-vs-vblank-race-interruptible:
    - shard-tglu-9:       NOTRUN -> [SKIP][71] ([i915#3637]) +3 similar issues
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8507/shard-tglu-9/igt@kms_flip@modeset-vs-vblank-race-interruptible.html

  * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling:
    - shard-tglu-9:       NOTRUN -> [SKIP][72] ([i915#3555]) +7 similar issues
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8507/shard-tglu-9/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling.html

  * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode:
    - shard-tglu-10:      NOTRUN -> [SKIP][73] ([i915#2587] / [i915#2672]) +1 similar issue
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8507/shard-tglu-10/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-upscaling@pipe-a-valid-mode.html

  * igt@kms_force_connector_basic@force-load-detect:
    - shard-tglu-10:      NOTRUN -> [SKIP][74] ([fdo#109285])
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8507/shard-tglu-10/igt@kms_force_connector_basic@force-load-detect.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-blt:
    - shard-tglu-10:      NOTRUN -> [SKIP][75] ([fdo#110189]) +26 similar issues
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8507/shard-tglu-10/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-blt.html

  * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt:
    - shard-tglu-9:       NOTRUN -> [SKIP][76] ([i915#1849]) +28 similar issues
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8507/shard-tglu-9/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-shrfb-plflip-blt.html

  * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-fullscreen:
    - shard-tglu-10:      NOTRUN -> [SKIP][77] ([fdo#109280]) +27 similar issues
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8507/shard-tglu-10/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-spr-indfb-fullscreen.html

  * igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-c-dp-1:
    - shard-apl:          NOTRUN -> [SKIP][78] ([fdo#109271]) +47 similar issues
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8507/shard-apl7/igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-c-dp-1.html

  * igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-c-hdmi-a-1:
    - shard-tglu-10:      NOTRUN -> [SKIP][79] ([i915#5176]) +3 similar issues
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8507/shard-tglu-10/igt@kms_plane_scaling@plane-downscale-with-modifiers-factor-0-25@pipe-c-hdmi-a-1.html

  * igt@kms_plane_scaling@plane-scaler-with-pixel-format-unity-scaling:
    - shard-tglu-9:       NOTRUN -> [SKIP][80] ([i915#3555] / [i915#6953])
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8507/shard-tglu-9/igt@kms_plane_scaling@plane-scaler-with-pixel-format-unity-scaling.html

  * igt@kms_prime@basic-crc-hybrid:
    - shard-tglu-10:      NOTRUN -> [SKIP][81] ([i915#6524])
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8507/shard-tglu-10/igt@kms_prime@basic-crc-hybrid.html

  * igt@kms_prime@basic-crc-vgem:
    - shard-tglu-9:       NOTRUN -> [SKIP][82] ([i915#6524])
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8507/shard-tglu-9/igt@kms_prime@basic-crc-vgem.html

  * igt@kms_psr2_sf@primary-plane-update-sf-dmg-area:
    - shard-tglu-10:      NOTRUN -> [SKIP][83] ([fdo#111068] / [i915#658])
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8507/shard-tglu-10/igt@kms_psr2_sf@primary-plane-update-sf-dmg-area.html

  * igt@kms_psr2_su@page_flip-p010:
    - shard-tglu-9:       NOTRUN -> [SKIP][84] ([fdo#109642] / [fdo#111068] / [i915#658])
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8507/shard-tglu-9/igt@kms_psr2_su@page_flip-p010.html

  * igt@kms_psr@psr2_primary_page_flip:
    - shard-tglu-9:       NOTRUN -> [SKIP][85] ([fdo#110189]) +3 similar issues
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8507/shard-tglu-9/igt@kms_psr@psr2_primary_page_flip.html

  * igt@kms_psr_stress_test@invalidate-primary-flip-overlay:
    - shard-tglu-10:      NOTRUN -> [SKIP][86] ([i915#5461])
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8507/shard-tglu-10/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html

  * igt@kms_rotation_crc@primary-4-tiled-reflect-x-0:
    - shard-tglu-10:      NOTRUN -> [SKIP][87] ([i915#5289]) +1 similar issue
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8507/shard-tglu-10/igt@kms_rotation_crc@primary-4-tiled-reflect-x-0.html

  * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
    - shard-tglu-10:      NOTRUN -> [SKIP][88] ([fdo#111615] / [i915#5289])
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8507/shard-tglu-10/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html

  * igt@kms_selftest@all-tests:
    - shard-tglu-10:      NOTRUN -> [SKIP][89] ([i915#6433])
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8507/shard-tglu-10/igt@kms_selftest@all-tests.html

  * igt@kms_setmode@basic@pipe-a-vga-1:
    - shard-snb:          NOTRUN -> [FAIL][90] ([i915#5465]) +1 similar issue
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8507/shard-snb5/igt@kms_setmode@basic@pipe-a-vga-1.html

  * igt@kms_tv_load_detect@load-detect:
    - shard-tglu-10:      NOTRUN -> [SKIP][91] ([fdo#109309])
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8507/shard-tglu-10/igt@kms_tv_load_detect@load-detect.html

  * igt@perf@gen8-unprivileged-single-ctx-counters:
    - shard-tglu-9:       NOTRUN -> [SKIP][92] ([fdo#109289])
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8507/shard-tglu-9/igt@perf@gen8-unprivileged-single-ctx-counters.html

  * igt@prime_vgem@coherency-gtt:
    - shard-tglu-9:       NOTRUN -> [SKIP][93] ([fdo#109295] / [fdo#111656])
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8507/shard-tglu-9/igt@prime_vgem@coherency-gtt.html

  * igt@prime_vgem@fence-read-hang:
    - shard-tglu-9:       NOTRUN -> [SKIP][94] ([fdo#109295])
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8507/shard-tglu-9/igt@prime_vgem@fence-read-hang.html

  * igt@v3d/v3d_mmap@mmap-bo:
    - shard-tglu-9:       NOTRUN -> [SKIP][95] ([fdo#109315] / [i915#2575])
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8507/shard-tglu-9/igt@v3d/v3d_mmap@mmap-bo.html

  * igt@v3d/v3d_perfmon@destroy-valid-perfmon:
    - shard-tglu-10:      NOTRUN -> [SKIP][96] ([fdo#109315] / [i915#2575]) +1 similar issue
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8507/shard-tglu-10/igt@v3d/v3d_perfmon@destroy-valid-perfmon.html

  * igt@vc4/vc4_mmap@mmap-bad-handle:
    - shard-tglu-9:       NOTRUN -> [SKIP][97] ([i915#2575]) +2 similar issues
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8507/shard-tglu-9/igt@vc4/vc4_mmap@mmap-bad-handle.html

  * igt@vc4/vc4_purgeable_bo@access-purged-bo-mem:
    - shard-tglu-10:      NOTRUN -> [SKIP][98] ([i915#2575]) +6 similar issues
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8507/shard-tglu-10/igt@vc4/vc4_purgeable_bo@access-purged-bo-mem.html

  
#### Possible fixes ####

  * {igt@gem_barrier_race@remote-request@rcs0}:
    - shard-apl:          [ABORT][99] -> [PASS][100]
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7165/shard-apl6/igt@gem_barrier_race@remote-request@rcs0.html
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8507/shard-apl1/igt@gem_barrier_race@remote-request@rcs0.html

  * igt@gem_exec_fair@basic-none-share@rcs0:
    - shard-glk:          [FAIL][101] ([i915#2842]) -> [PASS][102] +4 similar issues
   [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7165/shard-glk9/igt@gem_exec_fair@basic-none-share@rcs0.html
   [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8507/shard-glk3/igt@gem_exec_fair@basic-none-share@rcs0.html

  * igt@gem_exec_reloc@basic-cpu-gtt-noreloc:
    - {shard-rkl}:        [SKIP][103] ([i915#3281]) -> [PASS][104] +9 similar issues
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7165/shard-rkl-4/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html
   [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8507/shard-rkl-5/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html

  * igt@gem_mmap_wc@set-cache-level:
    - {shard-rkl}:        [SKIP][105] ([i915#1850]) -> [PASS][106]
   [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7165/shard-rkl-3/igt@gem_mmap_wc@set-cache-level.html
   [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8507/shard-rkl-6/igt@gem_mmap_wc@set-cache-level.html

  * igt@gem_partial_pwrite_pread@writes-after-reads-uncached:
    - {shard-rkl}:        [SKIP][107] ([i915#3282]) -> [PASS][108] +7 similar issues
   [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7165/shard-rkl-1/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html
   [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8507/shard-rkl-5/igt@gem_partial_pwrite_pread@writes-after-reads-uncached.html

  * igt@gen9_exec_parse@allowed-single:
    - shard-glk:          [ABORT][109] ([i915#5566]) -> [PASS][110]
   [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7165/shard-glk5/igt@gen9_exec_parse@allowed-single.html
   [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8507/shard-glk6/igt@gen9_exec_parse@allowed-single.html

  * igt@gen9_exec_parse@bb-chained:
    - {shard-rkl}:        [SKIP][111] ([i915#2527]) -> [PASS][112] +2 similar issues
   [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7165/shard-rkl-6/igt@gen9_exec_parse@bb-chained.html
   [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8507/shard-rkl-5/igt@gen9_exec_parse@bb-chained.html

  * igt@i915_pm_dc@dc9-dpms:
    - {shard-rkl}:        [SKIP][113] ([i915#3361]) -> [PASS][114]
   [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7165/shard-rkl-5/igt@i915_pm_dc@dc9-dpms.html
   [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8507/shard-rkl-2/igt@i915_pm_dc@dc9-dpms.html

  * igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a:
    - {shard-dg1}:        [SKIP][115] ([i915#1937]) -> [PASS][116]
   [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7165/shard-dg1-16/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html
   [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8507/shard-dg1-14/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html

  * igt@i915_pm_rpm@drm-resources-equal:
    - {shard-rkl}:        [SKIP][117] ([fdo#109308]) -> [PASS][118]
   [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7165/shard-rkl-4/igt@i915_pm_rpm@drm-resources-equal.html
   [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8507/shard-rkl-6/igt@i915_pm_rpm@drm-resources-equal.html

  * igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_rc_ccs_cc:
    - {shard-rkl}:        [SKIP][119] ([i915#1845] / [i915#4098]) -> [PASS][120] +22 similar issues
   [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7165/shard-rkl-5/igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_rc_ccs_cc.html
   [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8507/shard-rkl-6/igt@kms_ccs@pipe-b-ccs-on-another-bo-y_tiled_gen12_rc_ccs_cc.html

  * igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size:
    - shard-glk:          [FAIL][121] ([i915#2346]) -> [PASS][122] +1 similar issue
   [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7165/shard-glk9/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size.html
   [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8507/shard-glk2/igt@kms_cursor_legacy@flip-vs-cursor@atomic-transitions-varying-size.html

  * igt@kms_frontbuffer_tracking@psr-suspend:
    - {shard-rkl}:        [SKIP][123] ([i915#1849] / [i915#4098]) -> [PASS][124] +11 similar issues
   [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7165/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-suspend.html
   [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8507/shard-rkl-6/igt@kms_frontbuffer_tracking@psr-suspend.html

  * igt@kms_plane@plane-panning-top-left@pipe-a-planes:
    - {shard-rkl}:        [SKIP][125] ([i915#1849]) -> [PASS][126] +2 similar issues
   [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7165/shard-rkl-1/igt@kms_plane@plane-panning-top-left@pipe-a-planes.html
   [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8507/shard-rkl-6/igt@kms_plane@plane-panning-top-left@pipe-a-planes.html

  * igt@kms_psr@cursor_mmap_cpu:
    - {shard-rkl}:        [SKIP][127] ([i915#1072]) -> [PASS][128] +2 similar issues
   [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7165/shard-rkl-1/igt@kms_psr@cursor_mmap_cpu.html
   [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8507/shard-rkl-6/igt@kms_psr@cursor_mmap_cpu.html

  * igt@perf_pmu@render-node-busy-idle@vcs0:
    - {shard-dg1}:        [FAIL][129] ([i915#4349]) -> [PASS][130] +2 similar issues
   [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_7165/shard-dg1-18/igt@perf_pmu@render-node-busy-idle@vcs0.html
   [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8507/shard-dg1-15/igt@perf_pmu@render-node-busy-idle@vcs0.html

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

  [IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2
  [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
  [fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
  [fdo#109279]: https://bugs.freedesktop.org/show_bug.cgi?id=109279
  [fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
  [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
  [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
  [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295
  [fdo#109302]: https://bugs.freedesktop.org/show_bug.cgi?id=109302
  [fdo#109303]: https://bugs.freedesktop.org/show_bug.cgi?id=109303
  [fdo#109308]: https://bugs.freedesktop.org/show_bug.cgi?id=109308
  [fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309
  [fdo#109312]: https://bugs.freedesktop.org/show_bug.cgi?id=109312
  [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#110542]: https://bugs.freedesktop.org/show_bug.cgi?id=110542
  [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#1850]: https://gitlab.freedesktop.org/drm/intel/issues/1850
  [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#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437
  [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527
  [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575
  [i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582
  [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587
  [i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
  [i915#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#3318]: https://gitlab.freedesktop.org/drm/intel/issues/3318
  [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#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#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#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955
  [i915#4036]: https://gitlab.freedesktop.org/drm/intel/issues/4036
  [i915#404]: https://gitlab.freedesktop.org/drm/intel/issues/404
  [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070
  [i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
  [i915#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#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215
  [i915#426]: https://gitlab.freedesktop.org/drm/intel/issues/426
  [i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
  [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#4767]: https://gitlab.freedesktop.org/drm/intel/issues/4767
  [i915#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771
  [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#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880
  [i915#4884]: https://gitlab.freedesktop.org/drm/intel/issues/4884
  [i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885
  [i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983
  [i915#4998]: https://gitlab.freedesktop.org/drm/intel/issues/4998
  [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#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#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566
  [i915#5723]: https://gitlab.freedesktop.org/drm/intel/issues/5723
  [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784
  [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
  [i915#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#6252]: https://gitlab.freedesktop.org/drm/intel/issues/6252
  [i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301
  [i915#6433]: https://gitlab.freedesktop.org/drm/intel/issues/6433
  [i915#6493]: https://gitlab.freedesktop.org/drm/intel/issues/6493
  [i915#6497]: https://gitlab.freedesktop.org/drm/intel/issues/6497
  [i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524
  [i915#6537]: https://gitlab.freedesktop.org/drm/intel/issues/6537
  [i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
  [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
  [i915#6659]: https://gitlab.freedesktop.org/drm/intel/issues/6659
  [i915#6768]: https://gitlab.freedesktop.org/drm/intel/issues/6768
  [i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944
  [i915#6946]: https://gitlab.freedesktop.org/drm/intel/issues/6946
  [i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953
  [i915#7116]: https://gitlab.freedesktop.org/drm/intel/issues/7116
  [i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118
  [i915#7178]: https://gitlab.freedesktop.org/drm/intel/issues/7178
  [i915#7276]: https://gitlab.freedesktop.org/drm/intel/issues/7276
  [i915#7456]: https://gitlab.freedesktop.org/drm/intel/issues/7456
  [i915#7561]: https://gitlab.freedesktop.org/drm/intel/issues/7561
  [i915#7582]: https://gitlab.freedesktop.org/drm/intel/issues/7582
  [i915#7651]: https://gitlab.freedesktop.org/drm/intel/issues/7651
  [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697
  [i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701
  [i915#7707]: https://gitlab.freedesktop.org/drm/intel/issues/7707
  [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711
  [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#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975
  [i915#7981]: https://gitlab.freedesktop.org/drm/intel/issues/7981
  [i915#8152]: https://gitlab.freedesktop.org/drm/intel/issues/8152


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

  * CI: CI-20190529 -> None
  * IGT: IGT_7165 -> IGTPW_8507

  CI-20190529: 20190529
  CI_DRM_12757: 6653ef2d4663783ddec0ce1622ebbb4d47a2747f @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_8507: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_8507/index.html
  IGT_7165: 509e7e63c6377d0fe77d1bd209857fb191f4a84c @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git

== Logs ==

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

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

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

* Re: [igt-dev] [PATCH igt 2/2] tests/msm: Add GEM shrinker/eviction test
  2022-12-11 19:52 ` [igt-dev] [PATCH igt 2/2] tests/msm: Add GEM shrinker/eviction test Rob Clark
@ 2023-02-20 21:04   ` Kamil Konieczny
  0 siblings, 0 replies; 7+ messages in thread
From: Kamil Konieczny @ 2023-02-20 21:04 UTC (permalink / raw)
  To: igt-dev; +Cc: Rob Clark

Hi Rob,

I have few small nits, see below. Also please ask someone from
chromium and/or msm dev team for review.

On 2022-12-11 at 11:52:38 -0800, Rob Clark wrote:
> From: Rob Clark <robdclark@chromium.org>
> 
> Adds a test to various subtests to stress shrinker/eviction.  Various
> subtests also add mmap and dma-buf mmap into the mix (the latter because
> it uncovered a memory corruption bug due to page mappings not being
> correctly shot down).
> 
> Signed-off-by: Rob Clark <robdclark@chromium.org>
> ---
>  lib/igt_msm.c          |   2 +-
>  lib/igt_msm.h          |   6 +-
>  tests/meson.build      |   1 +
>  tests/msm/msm_shrink.c | 314 +++++++++++++++++++++++++++++++++++++++++
>  4 files changed, 321 insertions(+), 2 deletions(-)
>  create mode 100644 tests/msm/msm_shrink.c
> 
> diff --git a/lib/igt_msm.c b/lib/igt_msm.c
> index e9cf588f..8c0380f4 100644
> --- a/lib/igt_msm.c
> +++ b/lib/igt_msm.c
> @@ -268,7 +268,7 @@ igt_msm_cmd_submit(struct msm_cmd *cmd)
>  		},
>  	};
>  	struct drm_msm_gem_submit req = {
> -			.flags   = cmd->pipe->pipe | MSM_SUBMIT_FENCE_FD_OUT,
> +			.flags   = cmd->pipe->pipe | MSM_SUBMIT_FENCE_FD_OUT | MSM_SUBMIT_NO_IMPLICIT,
>  			.queueid = cmd->pipe->submitqueue_id,
>  			.nr_cmds = ARRAY_SIZE(cmds),
>  			.cmds    = VOID2U64(cmds),
> diff --git a/lib/igt_msm.h b/lib/igt_msm.h
> index 6008020b..413c7ea6 100644
> --- a/lib/igt_msm.h
> +++ b/lib/igt_msm.h
> @@ -97,10 +97,14 @@ enum adreno_pm4_packet_type {
>  
>  enum adreno_pm4_type3_packets {
>  	CP_NOP = 16,
> +	CP_WAIT_MEM_WRITES = 18,
> +	CP_WAIT_FOR_ME = 19,
>  	CP_WAIT_MEM_GTE = 20,
> +	CP_WAIT_FOR_IDLE = 38,
>  	CP_WAIT_REG_MEM = 60,
>  	CP_MEM_WRITE = 61,
>  	CP_MEM_TO_MEM = 115,
> +	CP_MEMCPY = 117,
>  };
>  
>  static inline unsigned
> @@ -157,7 +161,7 @@ struct msm_cmd {
>  	struct msm_bo *cmdstream_bo;
>  	uint32_t *cur;
>  	uint32_t nr_bos;
> -	struct msm_bo *bos[8];
> +	struct msm_bo *bos[128];
>  };
>  
>  struct msm_cmd *igt_msm_cmd_new(struct msm_pipe *pipe, size_t size);
> diff --git a/tests/meson.build b/tests/meson.build
> index 619c18b2..424f050f 100644
> --- a/tests/meson.build
> +++ b/tests/meson.build
> @@ -253,6 +253,7 @@ i915_progs = [
>  msm_progs = [
>  	'msm_mapping',
>  	'msm_recovery',
> +	'msm_shrink',
>  	'msm_submit'
>  ]
>  
> diff --git a/tests/msm/msm_shrink.c b/tests/msm/msm_shrink.c
> new file mode 100644
> index 00000000..d0b098aa
> --- /dev/null
> +++ b/tests/msm/msm_shrink.c
> @@ -0,0 +1,314 @@
> +/*

Put SPDX licence here.

> + * Copyright © 2022 Google, Inc.
> + * Copyright © 2016 Intel Corporation
> + *

Delete below text, SPDX is replacing it.

> + * Permission is hereby granted, free of charge, to any person obtaining a
> + * copy of this software and associated documentation files (the "Software"),
> + * to deal in the Software without restriction, including without limitation
> + * the rights to use, copy, modify, merge, publish, distribute, sublicense,
> + * and/or sell copies of the Software, and to permit persons to whom the
> + * Software is furnished to do so, subject to the following conditions:
> + *
> + * The above copyright notice and this permission notice (including the next
> + * paragraph) shall be included in all copies or substantial portions of the
> + * Software.
> + *
> + * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
> + * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
> + * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
> + * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
> + * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
> + * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
> + * IN THE SOFTWARE.
> + */
> +
> +#include <fcntl.h>
> +#include <sys/mman.h>
> +
> +#include "igt.h"
> +#include "igt_msm.h"
> +#include "igt_os.h"
> +#include "igt_sysfs.h"
> +
> +#define SZ_1M (1024 * 1024)

Put global test description here by using

IGT_TEST_DESCRIPTION("Short description of tests")

> +
> +static void leak(uint64_t alloc)
> +{
> +	char *ptr;
> +
> +	ptr = mmap(NULL, alloc, PROT_READ | PROT_WRITE,
> +		   MAP_ANON | MAP_PRIVATE | MAP_POPULATE,
> +		   -1, 0);
> +	if (ptr == MAP_FAILED)
> +		return;
> +
> +	while (alloc > 4096) {
> +		alloc -= 4096;
> +		ptr[alloc] = 0;
> +	}
> +}
> +
> +static void madvise_dontneed(struct msm_bo *bo)
> +{
> +	struct drm_msm_gem_madvise req = {
> +		.handle = bo->handle,
> +		.madv = MSM_MADV_DONTNEED,
> +	};
> +	do_ioctl(bo->dev->fd, DRM_IOCTL_MSM_GEM_MADVISE, &req);
> +}
> +
> +static struct msm_cmd *cmd_copy_gpu(struct msm_pipe *pipe, unsigned num_bos, struct msm_bo **bos)
> +{
> +	struct msm_cmd *cmd = igt_msm_cmd_new(pipe, 0x1000);
> +
> +	assert((num_bos % 2) == 0);
> +
> +	for (unsigned i = 0; i < (num_bos / 2); i++) {
> +		struct msm_bo *dst = bos[2*i];
> +		struct msm_bo *src = bos[2*i+1];
> +
> +		unsigned dwords = min(0x2000u, dst->size / 4);
> +
> +		msm_cmd_pkt7(cmd, CP_MEMCPY, 5);
> +		msm_cmd_emit(cmd, dwords);          /* DWORDS */
> +		msm_cmd_bo  (cmd, src, 0);          /* SRC_LO/HI */
> +		msm_cmd_bo  (cmd, dst, 0);          /* DST_LO/HI */
> +		msm_cmd_pkt7(cmd, CP_WAIT_MEM_WRITES, 0);
> +		msm_cmd_pkt7(cmd, CP_WAIT_FOR_IDLE, 0);
> +		msm_cmd_pkt7(cmd, CP_WAIT_FOR_ME, 0);
> +	}
> +
> +	return cmd;
> +}
> +
> +static void *map_dmabuf(struct msm_bo *bo)
> +{
> +	int fd, ret;
> +	void *ptr;
> +
> +	ret = drmPrimeHandleToFD(bo->dev->fd, bo->handle, DRM_CLOEXEC | DRM_RDWR, &fd);
> +	igt_assert_eq(ret, 0);
> +
> +	ptr = mmap(0, bo->size, PROT_READ | PROT_WRITE, MAP_SHARED, fd, 0);
> +	igt_assert(ptr != MAP_FAILED);
> +
> +	close(fd);
> +
> +	return ptr;
> +}
> +
> +struct test {
> +	const char *name;

Put also description here and use it with igt_describe_f() before test.

Regards,
Kamil

> +	struct msm_cmd *(*cmd)(struct msm_pipe *pipe, unsigned num_bos, struct msm_bo **bos);
> +	void *(*map)(struct msm_bo *bo);
> +} tests[] = {
> +	{ "copy-gpu", cmd_copy_gpu },
> +	{ "copy-mmap", cmd_copy_gpu, igt_msm_bo_map },
> +	{ "copy-mmap-dmabuf", cmd_copy_gpu, map_dmabuf },
> +	{},
> +};
> +
> +enum testmode {
> +	SANITY_CHECK	= BIT(0),
> +	SINGLE_THREAD	= BIT(1),
> +	MADVISE		= BIT(2),
> +	OOM		= BIT(3),
> +};
> +
> +static const struct mode {
> +	const char *suffix;
> +	unsigned flags;
> +} modes[] = {
> +	{ "-sanitycheck", SANITY_CHECK },
> +/* Disable by default to keep test runtime down:
> +	{ "-singlethread", SINGLE_THREAD },
> + */
> +	{ "", 0 },
> +	{ "-madvise", MADVISE },
> +	{ "-oom", OOM },
> +	{ NULL },
> +};
> +
> +static void do_test(int num_submits, uint64_t alloc_size_kb, int num_bos,
> +		    unsigned timeout, bool do_madvise, const struct test *test)
> +{
> +	struct msm_device *dev = igt_msm_dev_open();
> +	struct msm_pipe *pipe = igt_msm_pipe_open(dev, 0);
> +	struct msm_bo *bo[num_submits][num_bos];
> +	struct msm_cmd *cmd[num_submits];
> +	void *map[num_submits][num_bos];
> +	int fence_fd = -1;
> +
> +	/* Allocate the buffer objects and prepare the cmds: */
> +	for (int i = 0; i < num_submits; i++) {
> +		for (int j = 0; j < num_bos; j++) {
> +			bo[i][j] = igt_msm_bo_new(dev, alloc_size_kb * 1024, MSM_BO_WC);
> +		}
> +		cmd[i] = test->cmd(pipe, num_bos, bo[i]);
> +	}
> +
> +	/* Prepare the CPU maps, if necessary: */
> +	if (test->map) {
> +		for (int i = 0; i < num_submits; i++) {
> +			for (int j = 0; j < num_bos; j++) {
> +				map[i][j] = test->map(bo[i][j]);
> +				memset(map[i][j], 0xde, bo[i][j]->size);
> +			}
> +		}
> +	}
> +
> +	igt_until_timeout(timeout) {
> +		for (int i = 0; i < num_submits / 2; i++) {
> +			if (fence_fd > 0)
> +				close(fence_fd);
> +			fence_fd = igt_msm_cmd_submit(cmd[i]);
> +		}
> +
> +		igt_wait_and_close(fence_fd);
> +		fence_fd = -1;
> +
> +		if (test->map) {
> +			for (int i = 0; i < num_submits; i++) {
> +				for (int j = 0; j < num_bos; j++) {
> +					memset(map[i][j], 0xde, bo[i][j]->size);
> +				}
> +			}
> +		}
> +
> +		for (int i = num_submits / 2; i < num_submits; i++) {
> +			if (fence_fd > 0)
> +				close(fence_fd);
> +			fence_fd = igt_msm_cmd_submit(cmd[i]);
> +		}
> +		igt_wait_and_close(fence_fd);
> +		fence_fd = -1;
> +	}
> +
> +	if (do_madvise) {
> +		for (int i = 0; i < num_submits; i++) {
> +			if (fence_fd > 0)
> +				close(fence_fd);
> +			fence_fd = igt_msm_cmd_submit(cmd[i]);
> +			for (int j = 0; j < num_bos; j++) {
> +				madvise_dontneed(bo[i][j]);
> +			}
> +		}
> +		igt_wait_and_close(fence_fd);
> +		fence_fd = -1;
> +	}
> +}
> +
> +static void run_test(int nchildren, uint64_t alloc_size_mb, unsigned num_bos,
> +		     const struct test *test, unsigned flags)
> +{
> +	const int timeout = (test->map) || (flags & (SANITY_CHECK | MADVISE)) ? 1 : 10;
> +	bool madvise = !!(flags & MADVISE);
> +	uint64_t alloc_size_kb;
> +
> +	/* We are trying to use more GEM buffers that will fit in
> +	 * memory, but less than 2x avail RAM.  Split across at
> +	 * least two submits so we aren't getting into a scenario
> +	 * where all the children are trying to pin all the memory
> +	 * at the same time and get into a situation where no one
> +	 * can make forward progress.
> +	 */
> +	unsigned num_submits = 8;
> +
> +	if (flags & SANITY_CHECK)
> +		nchildren = 1;
> +
> +	alloc_size_kb = DIV_ROUND_UP(alloc_size_mb * 1024, num_bos * num_submits);
> +
> +	if (flags & SINGLE_THREAD) {
> +		num_submits *= nchildren;
> +		nchildren = 1;
> +	}
> +
> +	igt_info("%s, %d submits, %d processes, and %d x %'"PRIu64"KiB bos per submit for total size of %'"PRIu64"KiB\n",
> +		 test->name, num_submits, nchildren, num_bos, alloc_size_kb,
> +		 num_bos * num_submits * nchildren * alloc_size_kb);
> +
> +	/* Background load */
> +	if (flags & OOM) {
> +		igt_fork(child, nchildren) {
> +			for (int pass = 0; pass < nchildren; pass++)
> +				leak(alloc_size_kb / 1024);
> +		}
> +	}
> +
> +	/* Exercise major ioctls */
> +	igt_fork(child, nchildren) {
> +		do_test(num_submits, alloc_size_kb, num_bos, timeout, madvise, test);
> +	}
> +	igt_waitchildren();
> +}
> +
> +static const unsigned num_bos[] = { 8, 32 };
> +
> +igt_main
> +{
> +	struct msm_device *dev = NULL;
> +	uint64_t alloc_size_mb = 0;
> +	int num_processes = 0;
> +
> +	igt_fixture {
> +		int params, ncpus;
> +		uint64_t mem_size;
> +		uint64_t swap_size;
> +
> +		/* Make sure we are running on the right hw: */
> +		dev = igt_msm_dev_open();
> +
> +		igt_require(dev->gen >= 6);
> +
> +		/* Ensure that eviction is enabled: */
> +		params = igt_params_open(dev->fd);
> +		igt_sysfs_set(params, "enable_eviction", "1");
> +		igt_sysfs_set(params, "address_space_size", "0x400000000");
> +		close(params);
> +
> +		/* Figure out # of processes and allocation size: */
> +		ncpus = sysconf(_SC_NPROCESSORS_ONLN);
> +		mem_size = igt_get_total_ram_mb();
> +		swap_size = igt_get_total_swap_mb();
> +
> +		igt_require(swap_size > 0);
> +
> +		/*
> +		 * Spawn enough processes to use all memory, but each only
> +		 * uses a fraction of the available per-cpu memory.
> +		 * Individually the processes would be ok, but en masse
> +		 * we expect the shrinker to start purging objects,
> +		 * and possibly fail.
> +		 *
> +		 * Note, consider only a fraction of avail swap when
> +		 * calculating target size, as we have no good way to
> +		 * determine if it is zram swap (which will consume an
> +		 * increasing portion of RAM as it is filled)
> +		 */
> +		mem_size += swap_size / 4;
> +		alloc_size_mb = (mem_size + ncpus - 1) / ncpus / 8;
> +		num_processes = ncpus + (mem_size / alloc_size_mb);
> +
> +		igt_info("Using %d processes and %'"PRIu64"MiB per process for total size of %'"PRIu64"MiB\n",
> +			 num_processes, alloc_size_mb, num_processes * alloc_size_mb);
> +
> +		igt_require_memory(num_processes, alloc_size_mb,
> +				   CHECK_SWAP | CHECK_RAM);
> +	}
> +
> +	for(const struct test *t = tests; t->name; t++) {
> +		for(const struct mode *m = modes; m->suffix; m++) {
> +			for (int i = 0; i < ARRAY_SIZE(num_bos); i++) {
> +				igt_subtest_f("%s%s-%u", t->name, m->suffix, num_bos[i]) {
> +					run_test(num_processes, alloc_size_mb,
> +						 num_bos[i], t, m->flags);
> +				}
> +			}
> +		}
> +	}
> +
> +	igt_fixture {
> +		igt_msm_dev_close(dev);
> +	}
> +}
> -- 
> 2.38.1
> 

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

end of thread, other threads:[~2023-02-20 21:04 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2022-12-11 19:52 [igt-dev] [PATCH igt 1/2] lib: Add helper to wait and close fence fd Rob Clark
2022-12-11 19:52 ` [igt-dev] [PATCH igt 2/2] tests/msm: Add GEM shrinker/eviction test Rob Clark
2023-02-20 21:04   ` Kamil Konieczny
2022-12-11 21:00 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [1/2] lib: Add helper to wait and close fence fd Patchwork
2022-12-11 22:04 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
2023-02-17 19:18 ` [igt-dev] ✓ Fi.CI.BAT: success for series starting with [1/2] lib: Add helper to wait and close fence fd (rev2) Patchwork
2023-02-18  6:50 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork

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