All of lore.kernel.org
 help / color / mirror / Atom feed
* [Intel-gfx] [PATCH i-g-t v13] tests: Add a test for device hot unplug
@ 2020-04-09 12:18 ` Janusz Krzysztofik
  0 siblings, 0 replies; 5+ messages in thread
From: Janusz Krzysztofik @ 2020-04-09 12:18 UTC (permalink / raw)
  To: igt-dev; +Cc: Janusz Krzysztofik, intel-gfx, Chris Wilson

From: Janusz Krzysztofik <janusz.krzysztofik@intel.com>

There is a test which verifies unloading of i915 driver module but no
test exists that checks how a driver behaves when it gets unbound from
a device or when the device gets unplugged.  Implement such test using
sysfs interface.

Two minimalistic subtests - "unbind-rebind" and "unplug-rescan" -
perform the named operations on a DRM device which is believed to be
not in use.  Another pair of subtests named "hotunbind-lateclose" and
hotunplug-lateclose" do the same on a DRM device while keeping its file
descriptor open and close it thereafter.

v2: Run a subprocess with dummy_load instead of external command
    (Antonio).
v3: Run dummy_load from the test process directly (Antonio).
v4: Run dummy_load from inside subtests (Antonio).
v5: Try to restore the device to a working state after each subtest
    (Petri, Daniel).
v6: Run workload inside an igt helper subprocess so resources consumed
    by the workload are cleaned up automatically on workload subprocess
    crash, without affecting test results,
  - move the igt helper with workload back from subtests to initial
    fixture so workload crash also does not affect test results,
  - other cleanups suggested by Katarzyna and Chris.
v7: No changes.
v8: Move workload functions back from fixture to subtests,
  - register different actions and different workloads in respective
    tables and iterate over those tables while enumerating subtests,
  - introduce new subtest flavors by simply omitting module unload step,
  - instead of simply requesting bus rescan or not, introduce action
    specific device recovery helpers, required specifically with those
    new subtests not touching the module,
  - split workload functions in two parts, one spawning the workload,
    the other waiting for its completion,
  - for the new subtests not requiring module unload, run workload
    functions directly from the test process and use new workload
    completion wait functions in place of subprocess completion wait,
  - take more control over logging, longjumps and exit codes in
    workload subprocesses,
  - add some debug messages for easy progress watching,
  - move function API descriptions on top of respective typedefs.
v9: All changes after Daniel's comments - thanks!
  - flatten the code, don't try to create a midlayer (Daniel),
  - provide minimal subtests that even don't keep device open (Daniel),
  - don't use driver unbind in more advanced subtests (Daniel),
  - provide subtests with different level of resources allocated
    during device unplug (Daniel),
  - provide subtests which check driver behavior after device hot
    unplug (Daniel).
v10 Rename variables and function arguments to something that
    indicates they're file descriptors (Daniel),
  - introduce a data structure that contains various file descriptors
    and a helper function to set them all (Daniel),
  - fix strange indentation (Daniel),
  - limit scope to first three subtests as the initial set of tests to
    merge (Daniel).
v11 Fix typos in some comments,
  - use SPDX license identifier,
  - include a per-patch changelog in the commit message (Daniel).
v12 We don't use SPDX license identifiers nor GPL-2.0 in IGT (Petri),
  - avoid chipset, make sure we reopen the same device (Chris),
  - rename subtest "drm_open-hotunplug" to "hotunplug-lateclose",
  - add subtest "hotunbind-lateclose" (less affected by IOMMU issues),
  - move some redundant code to helpers,
  - reorder some helpers,
  - reword some messages and comments,
  - clean up headers.
v13 Add test / subtest descriptions (patchwork).

Signed-off-by: Janusz Krzysztofik <janusz.krzysztofik@intel.com>
Cc: Antonio Argenziano <antonio.argenziano@intel.com>
Cc: Petri Latvala <petri.latvala@intel.com>
Cc: Daniel Vetter <daniel@ffwll.ch>
Cc: Katarzyna Dec <katarzyna.dec@intel.com>
Acked-by: Chris Wilson <chris@chris-wilson.co.uk>
---
 tests/Makefile.sources |   1 +
 tests/core_hotunplug.c | 282 +++++++++++++++++++++++++++++++++++++++++
 tests/meson.build      |   1 +
 3 files changed, 284 insertions(+)
 create mode 100644 tests/core_hotunplug.c

diff --git a/tests/Makefile.sources b/tests/Makefile.sources
index 4e44c98c2..32cbbf4f9 100644
--- a/tests/Makefile.sources
+++ b/tests/Makefile.sources
@@ -18,6 +18,7 @@ TESTS_progs = \
 	core_getclient \
 	core_getstats \
 	core_getversion \
+	core_hotunplug \
 	core_setmaster \
 	core_setmaster_vs_auth \
 	debugfs_test \
diff --git a/tests/core_hotunplug.c b/tests/core_hotunplug.c
new file mode 100644
index 000000000..6705e0199
--- /dev/null
+++ b/tests/core_hotunplug.c
@@ -0,0 +1,282 @@
+/*
+ * Copyright © 2019 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 <limits.h>
+#include <stdlib.h>
+#include <string.h>
+#include <sys/stat.h>
+#include <sys/types.h>
+#include <unistd.h>
+
+#include "igt.h"
+#include "igt_device_scan.h"
+#include "igt_sysfs.h"
+
+IGT_TEST_DESCRIPTION("Examine behavior of a driver on device hot unplug");
+
+struct hotunplug {
+	struct {
+		int drm;
+		int sysfs_dev;
+		int sysfs_bus;
+		int sysfs_drv;
+	} fd;
+	char *dev_bus_addr;
+};
+
+/* Helpers */
+
+static void prepare_for_unbind(struct hotunplug *priv, char *buf, int buflen)
+{
+	int len;
+
+	igt_assert(buflen);
+
+	priv->fd.sysfs_drv = openat(priv->fd.sysfs_dev, "device/driver",
+				    O_DIRECTORY);
+	igt_assert(priv->fd.sysfs_drv >= 0);
+
+	len = readlinkat(priv->fd.sysfs_dev, "device", buf, buflen - 1);
+	buf[len] = '\0';
+	priv->dev_bus_addr = strrchr(buf, '/');
+	igt_assert(priv->dev_bus_addr++);
+
+	/* sysfs_dev no longer needed */
+	close(priv->fd.sysfs_dev);
+}
+
+static void prepare(struct hotunplug *priv, char *buf, int buflen)
+{
+	igt_debug("opening device\n");
+	priv->fd.drm = __drm_open_driver(DRIVER_ANY);
+	igt_assert(priv->fd.drm >= 0);
+
+	priv->fd.sysfs_dev = igt_sysfs_open(priv->fd.drm);
+	igt_assert(priv->fd.sysfs_dev >= 0);
+
+	if (buf) {
+		prepare_for_unbind(priv, buf, buflen);
+	} else {
+		/* prepare for bus rescan */
+		priv->fd.sysfs_bus = openat(priv->fd.sysfs_dev,
+					    "device/subsystem", O_DIRECTORY);
+		igt_assert(priv->fd.sysfs_bus >= 0);
+	}
+}
+
+/* Unbind the driver from the device */
+static void driver_unbind(int fd_sysfs_drv, const char *dev_bus_addr)
+{
+	igt_set_timeout(60, "Driver unbind timeout!");
+	igt_sysfs_set(fd_sysfs_drv, "unbind", dev_bus_addr);
+	igt_reset_timeout();
+
+	/* don't close fd_sysfs_drv, it will be used for driver rebinding */
+}
+
+/* Re-bind the driver to the device */
+static void driver_bind(int fd_sysfs_drv, const char *dev_bus_addr)
+{
+	igt_set_timeout(60, "Driver re-bind timeout!");
+	igt_sysfs_set(fd_sysfs_drv, "bind", dev_bus_addr);
+	igt_reset_timeout();
+
+	close(fd_sysfs_drv);
+}
+
+/* Remove (virtually unplug) the device from its bus */
+static void device_unplug(int fd_sysfs_dev)
+{
+	igt_set_timeout(60, "Device unplug timeout!");
+	igt_sysfs_set(fd_sysfs_dev, "device/remove", "1");
+	igt_reset_timeout();
+
+	close(fd_sysfs_dev);
+}
+
+/* Re-discover the device by rescanning its bus */
+static void bus_rescan(int fd_sysfs_bus)
+{
+	igt_set_timeout(60, "Bus rescan timeout!");
+	igt_sysfs_set(fd_sysfs_bus, "rescan", "1");
+	igt_reset_timeout();
+
+	close(fd_sysfs_bus);
+}
+
+static void set_filter_from_device(int fd)
+{
+	const char *filter_type = "sys:";
+	char filter[strlen(filter_type) + PATH_MAX + 1];
+	char *dst = stpcpy(filter, filter_type);
+	char path[PATH_MAX + 1];
+
+	igt_assert(igt_sysfs_path(fd, path, PATH_MAX));
+	strncat(path, "/device", PATH_MAX - strlen(path));
+	igt_assert(realpath(path, dst));
+
+	igt_device_filter_set(filter);
+}
+
+/* Subtests */
+
+static void unbind_rebind(void)
+{
+	struct hotunplug priv;
+	char buf[PATH_MAX];
+
+	prepare(&priv, buf, sizeof(buf));
+
+	igt_debug("closing the device\n");
+	close(priv.fd.drm);
+
+	igt_debug("unbinding the driver from the device\n");
+	driver_unbind(priv.fd.sysfs_drv, priv.dev_bus_addr);
+
+	igt_debug("rebinding the driver to the device\n");
+	driver_bind(priv.fd.sysfs_drv, priv.dev_bus_addr);
+
+	/* device name may have changed, rebuild IGT device list */
+	igt_devices_scan(true);
+
+	igt_debug("reopening the device\n");
+	priv.fd.drm = __drm_open_driver(DRIVER_ANY);
+	igt_assert(priv.fd.drm >= 0);
+
+	close(priv.fd.drm);
+}
+
+static void unplug_rescan(void)
+{
+	struct hotunplug priv;
+
+	prepare(&priv, NULL, 0);
+
+	igt_debug("closing the device\n");
+	close(priv.fd.drm);
+
+	igt_debug("unplugging the device\n");
+	device_unplug(priv.fd.sysfs_dev);
+
+	igt_debug("recovering the device\n");
+	bus_rescan(priv.fd.sysfs_bus);
+
+	/* device name may have changed, rebuild IGT device list */
+	igt_devices_scan(true);
+
+	igt_debug("reopening the device\n");
+	priv.fd.drm = __drm_open_driver(DRIVER_ANY);
+	igt_assert(priv.fd.drm >= 0);
+
+	close(priv.fd.drm);
+}
+
+static void hotunbind_lateclose(void)
+{
+	struct hotunplug priv;
+	char buf[PATH_MAX];
+
+	prepare(&priv, buf, sizeof(buf));
+
+	igt_debug("hot unbinding the driver from the device\n");
+	driver_unbind(priv.fd.sysfs_drv, priv.dev_bus_addr);
+
+	igt_debug("rebinding the driver to the device\n");
+	driver_bind(priv.fd.sysfs_drv, priv.dev_bus_addr);
+
+	igt_debug("late closing the unbound device instance\n");
+	close(priv.fd.drm);
+
+	/* device name has changed, rebuild IGT device list */
+	igt_devices_scan(true);
+
+	igt_debug("reopening the device\n");
+	priv.fd.drm = __drm_open_driver(DRIVER_ANY);
+	igt_assert(priv.fd.drm >= 0);
+
+	close(priv.fd.drm);
+}
+
+static void hotunplug_lateclose(void)
+{
+	struct hotunplug priv;
+
+	prepare(&priv, NULL, 0);
+
+	igt_debug("hot unplugging the device\n");
+	device_unplug(priv.fd.sysfs_dev);
+
+	igt_debug("recovering the device\n");
+	bus_rescan(priv.fd.sysfs_bus);
+
+	igt_debug("late closing the removed device instance\n");
+	close(priv.fd.drm);
+
+	/* device name has changed, rebuild IGT device list */
+	igt_devices_scan(true);
+
+	igt_debug("reopening the device\n");
+	priv.fd.drm = __drm_open_driver(DRIVER_ANY);
+	igt_assert(priv.fd.drm >= 0);
+
+	close(priv.fd.drm);
+}
+
+/* Main */
+
+igt_main
+{
+	igt_fixture {
+		int fd_drm;
+
+		/**
+		 * As subtests must be able to close examined devices
+		 * completely, don't use drm_open_driver() as it keeps
+		 * a device file descriptor open for exit handler use.
+		 */
+		fd_drm = __drm_open_driver(DRIVER_ANY);
+		igt_assert(fd_drm >= 0);
+
+		/* Make sure subtests always reopen the same device */
+		set_filter_from_device(fd_drm);
+
+		close(fd_drm);
+	}
+
+	igt_describe("Check if the driver can be cleanly unbound from a device believed to be closed");
+	igt_subtest("unbind-rebind")
+		unbind_rebind();
+
+	igt_describe("Check if a device believed to be closed can be cleanly unplugged");
+	igt_subtest("unplug-rescan")
+		unplug_rescan();
+
+	igt_describe("Check if the driver can be cleanly unbound from a still open device, then released");
+	igt_subtest("hotunbind-lateclose")
+		hotunbind_lateclose();
+
+	igt_describe("Check if a still open device can be cleanly unplugged, then released");
+	igt_subtest("hotunplug-lateclose")
+		hotunplug_lateclose();
+}
diff --git a/tests/meson.build b/tests/meson.build
index e882f4dcd..0bdcfbe4c 100644
--- a/tests/meson.build
+++ b/tests/meson.build
@@ -3,6 +3,7 @@ test_progs = [
 	'core_getclient',
 	'core_getstats',
 	'core_getversion',
+	'core_hotunplug',
 	'core_setmaster',
 	'core_setmaster_vs_auth',
 	'debugfs_test',
-- 
2.21.1

_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

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

* [igt-dev] [PATCH i-g-t v13] tests: Add a test for device hot unplug
@ 2020-04-09 12:18 ` Janusz Krzysztofik
  0 siblings, 0 replies; 5+ messages in thread
From: Janusz Krzysztofik @ 2020-04-09 12:18 UTC (permalink / raw)
  To: igt-dev
  Cc: Janusz Krzysztofik, Petri Latvala, intel-gfx, Chris Wilson,
	Daniel Vetter

From: Janusz Krzysztofik <janusz.krzysztofik@intel.com>

There is a test which verifies unloading of i915 driver module but no
test exists that checks how a driver behaves when it gets unbound from
a device or when the device gets unplugged.  Implement such test using
sysfs interface.

Two minimalistic subtests - "unbind-rebind" and "unplug-rescan" -
perform the named operations on a DRM device which is believed to be
not in use.  Another pair of subtests named "hotunbind-lateclose" and
hotunplug-lateclose" do the same on a DRM device while keeping its file
descriptor open and close it thereafter.

v2: Run a subprocess with dummy_load instead of external command
    (Antonio).
v3: Run dummy_load from the test process directly (Antonio).
v4: Run dummy_load from inside subtests (Antonio).
v5: Try to restore the device to a working state after each subtest
    (Petri, Daniel).
v6: Run workload inside an igt helper subprocess so resources consumed
    by the workload are cleaned up automatically on workload subprocess
    crash, without affecting test results,
  - move the igt helper with workload back from subtests to initial
    fixture so workload crash also does not affect test results,
  - other cleanups suggested by Katarzyna and Chris.
v7: No changes.
v8: Move workload functions back from fixture to subtests,
  - register different actions and different workloads in respective
    tables and iterate over those tables while enumerating subtests,
  - introduce new subtest flavors by simply omitting module unload step,
  - instead of simply requesting bus rescan or not, introduce action
    specific device recovery helpers, required specifically with those
    new subtests not touching the module,
  - split workload functions in two parts, one spawning the workload,
    the other waiting for its completion,
  - for the new subtests not requiring module unload, run workload
    functions directly from the test process and use new workload
    completion wait functions in place of subprocess completion wait,
  - take more control over logging, longjumps and exit codes in
    workload subprocesses,
  - add some debug messages for easy progress watching,
  - move function API descriptions on top of respective typedefs.
v9: All changes after Daniel's comments - thanks!
  - flatten the code, don't try to create a midlayer (Daniel),
  - provide minimal subtests that even don't keep device open (Daniel),
  - don't use driver unbind in more advanced subtests (Daniel),
  - provide subtests with different level of resources allocated
    during device unplug (Daniel),
  - provide subtests which check driver behavior after device hot
    unplug (Daniel).
v10 Rename variables and function arguments to something that
    indicates they're file descriptors (Daniel),
  - introduce a data structure that contains various file descriptors
    and a helper function to set them all (Daniel),
  - fix strange indentation (Daniel),
  - limit scope to first three subtests as the initial set of tests to
    merge (Daniel).
v11 Fix typos in some comments,
  - use SPDX license identifier,
  - include a per-patch changelog in the commit message (Daniel).
v12 We don't use SPDX license identifiers nor GPL-2.0 in IGT (Petri),
  - avoid chipset, make sure we reopen the same device (Chris),
  - rename subtest "drm_open-hotunplug" to "hotunplug-lateclose",
  - add subtest "hotunbind-lateclose" (less affected by IOMMU issues),
  - move some redundant code to helpers,
  - reorder some helpers,
  - reword some messages and comments,
  - clean up headers.
v13 Add test / subtest descriptions (patchwork).

Signed-off-by: Janusz Krzysztofik <janusz.krzysztofik@intel.com>
Cc: Antonio Argenziano <antonio.argenziano@intel.com>
Cc: Petri Latvala <petri.latvala@intel.com>
Cc: Daniel Vetter <daniel@ffwll.ch>
Cc: Katarzyna Dec <katarzyna.dec@intel.com>
Acked-by: Chris Wilson <chris@chris-wilson.co.uk>
---
 tests/Makefile.sources |   1 +
 tests/core_hotunplug.c | 282 +++++++++++++++++++++++++++++++++++++++++
 tests/meson.build      |   1 +
 3 files changed, 284 insertions(+)
 create mode 100644 tests/core_hotunplug.c

diff --git a/tests/Makefile.sources b/tests/Makefile.sources
index 4e44c98c2..32cbbf4f9 100644
--- a/tests/Makefile.sources
+++ b/tests/Makefile.sources
@@ -18,6 +18,7 @@ TESTS_progs = \
 	core_getclient \
 	core_getstats \
 	core_getversion \
+	core_hotunplug \
 	core_setmaster \
 	core_setmaster_vs_auth \
 	debugfs_test \
diff --git a/tests/core_hotunplug.c b/tests/core_hotunplug.c
new file mode 100644
index 000000000..6705e0199
--- /dev/null
+++ b/tests/core_hotunplug.c
@@ -0,0 +1,282 @@
+/*
+ * Copyright © 2019 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 <limits.h>
+#include <stdlib.h>
+#include <string.h>
+#include <sys/stat.h>
+#include <sys/types.h>
+#include <unistd.h>
+
+#include "igt.h"
+#include "igt_device_scan.h"
+#include "igt_sysfs.h"
+
+IGT_TEST_DESCRIPTION("Examine behavior of a driver on device hot unplug");
+
+struct hotunplug {
+	struct {
+		int drm;
+		int sysfs_dev;
+		int sysfs_bus;
+		int sysfs_drv;
+	} fd;
+	char *dev_bus_addr;
+};
+
+/* Helpers */
+
+static void prepare_for_unbind(struct hotunplug *priv, char *buf, int buflen)
+{
+	int len;
+
+	igt_assert(buflen);
+
+	priv->fd.sysfs_drv = openat(priv->fd.sysfs_dev, "device/driver",
+				    O_DIRECTORY);
+	igt_assert(priv->fd.sysfs_drv >= 0);
+
+	len = readlinkat(priv->fd.sysfs_dev, "device", buf, buflen - 1);
+	buf[len] = '\0';
+	priv->dev_bus_addr = strrchr(buf, '/');
+	igt_assert(priv->dev_bus_addr++);
+
+	/* sysfs_dev no longer needed */
+	close(priv->fd.sysfs_dev);
+}
+
+static void prepare(struct hotunplug *priv, char *buf, int buflen)
+{
+	igt_debug("opening device\n");
+	priv->fd.drm = __drm_open_driver(DRIVER_ANY);
+	igt_assert(priv->fd.drm >= 0);
+
+	priv->fd.sysfs_dev = igt_sysfs_open(priv->fd.drm);
+	igt_assert(priv->fd.sysfs_dev >= 0);
+
+	if (buf) {
+		prepare_for_unbind(priv, buf, buflen);
+	} else {
+		/* prepare for bus rescan */
+		priv->fd.sysfs_bus = openat(priv->fd.sysfs_dev,
+					    "device/subsystem", O_DIRECTORY);
+		igt_assert(priv->fd.sysfs_bus >= 0);
+	}
+}
+
+/* Unbind the driver from the device */
+static void driver_unbind(int fd_sysfs_drv, const char *dev_bus_addr)
+{
+	igt_set_timeout(60, "Driver unbind timeout!");
+	igt_sysfs_set(fd_sysfs_drv, "unbind", dev_bus_addr);
+	igt_reset_timeout();
+
+	/* don't close fd_sysfs_drv, it will be used for driver rebinding */
+}
+
+/* Re-bind the driver to the device */
+static void driver_bind(int fd_sysfs_drv, const char *dev_bus_addr)
+{
+	igt_set_timeout(60, "Driver re-bind timeout!");
+	igt_sysfs_set(fd_sysfs_drv, "bind", dev_bus_addr);
+	igt_reset_timeout();
+
+	close(fd_sysfs_drv);
+}
+
+/* Remove (virtually unplug) the device from its bus */
+static void device_unplug(int fd_sysfs_dev)
+{
+	igt_set_timeout(60, "Device unplug timeout!");
+	igt_sysfs_set(fd_sysfs_dev, "device/remove", "1");
+	igt_reset_timeout();
+
+	close(fd_sysfs_dev);
+}
+
+/* Re-discover the device by rescanning its bus */
+static void bus_rescan(int fd_sysfs_bus)
+{
+	igt_set_timeout(60, "Bus rescan timeout!");
+	igt_sysfs_set(fd_sysfs_bus, "rescan", "1");
+	igt_reset_timeout();
+
+	close(fd_sysfs_bus);
+}
+
+static void set_filter_from_device(int fd)
+{
+	const char *filter_type = "sys:";
+	char filter[strlen(filter_type) + PATH_MAX + 1];
+	char *dst = stpcpy(filter, filter_type);
+	char path[PATH_MAX + 1];
+
+	igt_assert(igt_sysfs_path(fd, path, PATH_MAX));
+	strncat(path, "/device", PATH_MAX - strlen(path));
+	igt_assert(realpath(path, dst));
+
+	igt_device_filter_set(filter);
+}
+
+/* Subtests */
+
+static void unbind_rebind(void)
+{
+	struct hotunplug priv;
+	char buf[PATH_MAX];
+
+	prepare(&priv, buf, sizeof(buf));
+
+	igt_debug("closing the device\n");
+	close(priv.fd.drm);
+
+	igt_debug("unbinding the driver from the device\n");
+	driver_unbind(priv.fd.sysfs_drv, priv.dev_bus_addr);
+
+	igt_debug("rebinding the driver to the device\n");
+	driver_bind(priv.fd.sysfs_drv, priv.dev_bus_addr);
+
+	/* device name may have changed, rebuild IGT device list */
+	igt_devices_scan(true);
+
+	igt_debug("reopening the device\n");
+	priv.fd.drm = __drm_open_driver(DRIVER_ANY);
+	igt_assert(priv.fd.drm >= 0);
+
+	close(priv.fd.drm);
+}
+
+static void unplug_rescan(void)
+{
+	struct hotunplug priv;
+
+	prepare(&priv, NULL, 0);
+
+	igt_debug("closing the device\n");
+	close(priv.fd.drm);
+
+	igt_debug("unplugging the device\n");
+	device_unplug(priv.fd.sysfs_dev);
+
+	igt_debug("recovering the device\n");
+	bus_rescan(priv.fd.sysfs_bus);
+
+	/* device name may have changed, rebuild IGT device list */
+	igt_devices_scan(true);
+
+	igt_debug("reopening the device\n");
+	priv.fd.drm = __drm_open_driver(DRIVER_ANY);
+	igt_assert(priv.fd.drm >= 0);
+
+	close(priv.fd.drm);
+}
+
+static void hotunbind_lateclose(void)
+{
+	struct hotunplug priv;
+	char buf[PATH_MAX];
+
+	prepare(&priv, buf, sizeof(buf));
+
+	igt_debug("hot unbinding the driver from the device\n");
+	driver_unbind(priv.fd.sysfs_drv, priv.dev_bus_addr);
+
+	igt_debug("rebinding the driver to the device\n");
+	driver_bind(priv.fd.sysfs_drv, priv.dev_bus_addr);
+
+	igt_debug("late closing the unbound device instance\n");
+	close(priv.fd.drm);
+
+	/* device name has changed, rebuild IGT device list */
+	igt_devices_scan(true);
+
+	igt_debug("reopening the device\n");
+	priv.fd.drm = __drm_open_driver(DRIVER_ANY);
+	igt_assert(priv.fd.drm >= 0);
+
+	close(priv.fd.drm);
+}
+
+static void hotunplug_lateclose(void)
+{
+	struct hotunplug priv;
+
+	prepare(&priv, NULL, 0);
+
+	igt_debug("hot unplugging the device\n");
+	device_unplug(priv.fd.sysfs_dev);
+
+	igt_debug("recovering the device\n");
+	bus_rescan(priv.fd.sysfs_bus);
+
+	igt_debug("late closing the removed device instance\n");
+	close(priv.fd.drm);
+
+	/* device name has changed, rebuild IGT device list */
+	igt_devices_scan(true);
+
+	igt_debug("reopening the device\n");
+	priv.fd.drm = __drm_open_driver(DRIVER_ANY);
+	igt_assert(priv.fd.drm >= 0);
+
+	close(priv.fd.drm);
+}
+
+/* Main */
+
+igt_main
+{
+	igt_fixture {
+		int fd_drm;
+
+		/**
+		 * As subtests must be able to close examined devices
+		 * completely, don't use drm_open_driver() as it keeps
+		 * a device file descriptor open for exit handler use.
+		 */
+		fd_drm = __drm_open_driver(DRIVER_ANY);
+		igt_assert(fd_drm >= 0);
+
+		/* Make sure subtests always reopen the same device */
+		set_filter_from_device(fd_drm);
+
+		close(fd_drm);
+	}
+
+	igt_describe("Check if the driver can be cleanly unbound from a device believed to be closed");
+	igt_subtest("unbind-rebind")
+		unbind_rebind();
+
+	igt_describe("Check if a device believed to be closed can be cleanly unplugged");
+	igt_subtest("unplug-rescan")
+		unplug_rescan();
+
+	igt_describe("Check if the driver can be cleanly unbound from a still open device, then released");
+	igt_subtest("hotunbind-lateclose")
+		hotunbind_lateclose();
+
+	igt_describe("Check if a still open device can be cleanly unplugged, then released");
+	igt_subtest("hotunplug-lateclose")
+		hotunplug_lateclose();
+}
diff --git a/tests/meson.build b/tests/meson.build
index e882f4dcd..0bdcfbe4c 100644
--- a/tests/meson.build
+++ b/tests/meson.build
@@ -3,6 +3,7 @@ test_progs = [
 	'core_getclient',
 	'core_getstats',
 	'core_getversion',
+	'core_hotunplug',
 	'core_setmaster',
 	'core_setmaster_vs_auth',
 	'debugfs_test',
-- 
2.21.1

_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

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

* [igt-dev] ✓ Fi.CI.BAT: success for tests: Add a test for device hot unplug (rev2)
  2020-04-09 12:18 ` [igt-dev] " Janusz Krzysztofik
  (?)
@ 2020-04-09 13:27 ` Patchwork
  -1 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2020-04-09 13:27 UTC (permalink / raw)
  To: Janusz Krzysztofik; +Cc: igt-dev

== Series Details ==

Series: tests: Add a test for device hot unplug (rev2)
URL   : https://patchwork.freedesktop.org/series/75692/
State : success

== Summary ==

CI Bug Log - changes from IGT_5586 -> IGTPW_4440
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

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

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

### IGT changes ###

#### Warnings ####

  * igt@i915_pm_rpm@basic-pci-d3-state:
    - fi-kbl-guc:         [SKIP][1] ([fdo#109271]) -> [FAIL][2] ([i915#138])
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5586/fi-kbl-guc/igt@i915_pm_rpm@basic-pci-d3-state.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/fi-kbl-guc/igt@i915_pm_rpm@basic-pci-d3-state.html

  
  [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
  [i915#138]: https://gitlab.freedesktop.org/drm/intel/issues/138


Participating hosts (54 -> 47)
------------------------------

  Missing    (7): fi-ilk-m540 fi-hsw-4200u fi-byt-squawks fi-bsw-cyan fi-ctg-p8600 fi-byt-clapper fi-bdw-samus 


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

  * CI: CI-20190529 -> None
  * IGT: IGT_5586 -> IGTPW_4440

  CI-20190529: 20190529
  CI_DRM_8283: a6f4f55d343fea03e11e754b1094dda8cf2538ac @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_4440: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/index.html
  IGT_5586: 29fad328e6a1b105c8d688cafe19b1b5c19ad0c8 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools



== Testlist changes ==

+igt@core_hotunplug@hotunbind-lateclose
+igt@core_hotunplug@hotunplug-lateclose
+igt@core_hotunplug@unbind-rebind
+igt@core_hotunplug@unplug-rescan

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/index.html
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

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

* [igt-dev] ✗ Fi.CI.IGT: failure for tests: Add a test for device hot unplug (rev2)
  2020-04-09 12:18 ` [igt-dev] " Janusz Krzysztofik
  (?)
  (?)
@ 2020-04-10  6:05 ` Patchwork
  -1 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2020-04-10  6:05 UTC (permalink / raw)
  To: Janusz Krzysztofik; +Cc: igt-dev

== Series Details ==

Series: tests: Add a test for device hot unplug (rev2)
URL   : https://patchwork.freedesktop.org/series/75692/
State : failure

== Summary ==

CI Bug Log - changes from IGT_5586_full -> IGTPW_4440_full
====================================================

Summary
-------

  **FAILURE**

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

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

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

### IGT changes ###

#### Possible regressions ####

  * {igt@core_hotunplug@hotunplug-lateclose} (NEW):
    - shard-tglb:         NOTRUN -> [INCOMPLETE][1]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-tglb6/igt@core_hotunplug@hotunplug-lateclose.html
    - shard-apl:          NOTRUN -> [INCOMPLETE][2]
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-apl8/igt@core_hotunplug@hotunplug-lateclose.html
    - shard-iclb:         NOTRUN -> [INCOMPLETE][3]
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-iclb1/igt@core_hotunplug@hotunplug-lateclose.html
    - shard-kbl:          NOTRUN -> [INCOMPLETE][4]
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-kbl6/igt@core_hotunplug@hotunplug-lateclose.html

  * igt@gem_ctx_param@vm:
    - shard-apl:          [PASS][5] -> [FAIL][6] +1 similar issue
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5586/shard-apl3/igt@gem_ctx_param@vm.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-apl2/igt@gem_ctx_param@vm.html
    - shard-tglb:         [PASS][7] -> [FAIL][8] +1 similar issue
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5586/shard-tglb8/igt@gem_ctx_param@vm.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-tglb2/igt@gem_ctx_param@vm.html
    - shard-kbl:          [PASS][9] -> [FAIL][10] +1 similar issue
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5586/shard-kbl6/igt@gem_ctx_param@vm.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-kbl2/igt@gem_ctx_param@vm.html

  * igt@gem_ctx_persistence@engines-hang:
    - shard-iclb:         NOTRUN -> [SKIP][11]
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-iclb1/igt@gem_ctx_persistence@engines-hang.html

  * igt@gem_exec_flush@basic-uc-pro-default:
    - shard-iclb:         [PASS][12] -> [SKIP][13] +18 similar issues
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5586/shard-iclb4/igt@gem_exec_flush@basic-uc-pro-default.html
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-iclb1/igt@gem_exec_flush@basic-uc-pro-default.html

  * igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled-ccs:
    - shard-glk:          [PASS][14] -> [FAIL][15] +1 similar issue
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5586/shard-glk7/igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled-ccs.html
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-glk4/igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled-ccs.html

  * igt@kms_big_fb@yf-tiled-32bpp-rotate-90:
    - shard-iclb:         [PASS][16] -> [FAIL][17] +6 similar issues
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5586/shard-iclb2/igt@kms_big_fb@yf-tiled-32bpp-rotate-90.html
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-iclb1/igt@kms_big_fb@yf-tiled-32bpp-rotate-90.html

  * igt@kms_cursor_edge_walk@pipe-c-256x256-left-edge:
    - shard-iclb:         [PASS][18] -> [WARN][19] +8 similar issues
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5586/shard-iclb5/igt@kms_cursor_edge_walk@pipe-c-256x256-left-edge.html
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-iclb1/igt@kms_cursor_edge_walk@pipe-c-256x256-left-edge.html

  * igt@runner@aborted:
    - shard-hsw:          NOTRUN -> ([FAIL][20], [FAIL][21], [FAIL][22])
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-hsw4/igt@runner@aborted.html
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-hsw4/igt@runner@aborted.html
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-hsw2/igt@runner@aborted.html
    - shard-tglb:         NOTRUN -> [FAIL][23]
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-tglb6/igt@runner@aborted.html
    - shard-snb:          NOTRUN -> [FAIL][24]
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-snb2/igt@runner@aborted.html

  * igt@testdisplay:
    - shard-apl:          [PASS][25] -> [INCOMPLETE][26]
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5586/shard-apl8/igt@testdisplay.html
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-apl7/igt@testdisplay.html
    - shard-kbl:          [PASS][27] -> [INCOMPLETE][28]
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5586/shard-kbl4/igt@testdisplay.html
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-kbl6/igt@testdisplay.html

  
#### Warnings ####

  * igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled-ccs:
    - shard-snb:          [SKIP][29] ([fdo#109271]) -> [FAIL][30] +1 similar issue
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5586/shard-snb1/igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled-ccs.html
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-snb2/igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled-ccs.html

  * igt@gen7_exec_parse@basic-allocation:
    - shard-iclb:         [SKIP][31] ([fdo#109289]) -> [SKIP][32]
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5586/shard-iclb7/igt@gen7_exec_parse@basic-allocation.html
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-iclb1/igt@gen7_exec_parse@basic-allocation.html

  
#### Suppressed ####

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

  * {igt@gem_exec_schedule@preempt-other-chain}:
    - shard-iclb:         NOTRUN -> [SKIP][33] +3 similar issues
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-iclb1/igt@gem_exec_schedule@preempt-other-chain.html

  
New tests
---------

  New tests have been introduced between IGT_5586_full and IGTPW_4440_full:

### New IGT tests (4) ###

  * igt@core_hotunplug@hotunbind-lateclose:
    - Statuses : 1 incomplete(s) 6 pass(s)
    - Exec time: [0.0, 1.81] s

  * igt@core_hotunplug@hotunplug-lateclose:
    - Statuses : 7 incomplete(s)
    - Exec time: [0.0] s

  * igt@core_hotunplug@unbind-rebind:
    - Statuses : 1 incomplete(s) 6 pass(s)
    - Exec time: [0.0, 1.97] s

  * igt@core_hotunplug@unplug-rescan:
    - Statuses : 2 incomplete(s) 5 pass(s)
    - Exec time: [0.0, 3.97] s

  

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

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

### IGT changes ###

#### Issues hit ####

  * igt@gem_exec_params@invalid-bsd-ring:
    - shard-iclb:         [PASS][34] -> [SKIP][35] ([fdo#109276])
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5586/shard-iclb2/igt@gem_exec_params@invalid-bsd-ring.html
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-iclb7/igt@gem_exec_params@invalid-bsd-ring.html

  * igt@gem_softpin@noreloc-s3:
    - shard-kbl:          [PASS][36] -> [DMESG-WARN][37] ([i915#180])
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5586/shard-kbl2/igt@gem_softpin@noreloc-s3.html
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-kbl4/igt@gem_softpin@noreloc-s3.html

  * igt@i915_suspend@fence-restore-untiled:
    - shard-apl:          [PASS][38] -> [DMESG-WARN][39] ([i915#180]) +1 similar issue
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5586/shard-apl7/igt@i915_suspend@fence-restore-untiled.html
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-apl6/igt@i915_suspend@fence-restore-untiled.html

  * igt@kms_color@pipe-b-ctm-green-to-red:
    - shard-iclb:         [PASS][40] -> [WARN][41] ([i915#1149]) +1 similar issue
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5586/shard-iclb8/igt@kms_color@pipe-b-ctm-green-to-red.html
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-iclb1/igt@kms_color@pipe-b-ctm-green-to-red.html

  * igt@kms_cursor_crc@pipe-a-cursor-128x42-offscreen:
    - shard-kbl:          [PASS][42] -> [FAIL][43] ([i915#54] / [i915#93] / [i915#95])
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5586/shard-kbl6/igt@kms_cursor_crc@pipe-a-cursor-128x42-offscreen.html
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-kbl2/igt@kms_cursor_crc@pipe-a-cursor-128x42-offscreen.html

  * igt@kms_cursor_crc@pipe-c-cursor-256x85-onscreen:
    - shard-apl:          [PASS][44] -> [FAIL][45] ([i915#54])
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5586/shard-apl1/igt@kms_cursor_crc@pipe-c-cursor-256x85-onscreen.html
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-apl3/igt@kms_cursor_crc@pipe-c-cursor-256x85-onscreen.html
    - shard-kbl:          [PASS][46] -> [FAIL][47] ([i915#54])
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5586/shard-kbl7/igt@kms_cursor_crc@pipe-c-cursor-256x85-onscreen.html
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-kbl4/igt@kms_cursor_crc@pipe-c-cursor-256x85-onscreen.html

  * igt@kms_cursor_edge_walk@pipe-a-256x256-left-edge:
    - shard-iclb:         [PASS][48] -> [FAIL][49] ([i915#70])
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5586/shard-iclb2/igt@kms_cursor_edge_walk@pipe-a-256x256-left-edge.html
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-iclb1/igt@kms_cursor_edge_walk@pipe-a-256x256-left-edge.html

  * igt@kms_draw_crc@draw-method-rgb565-render-untiled:
    - shard-glk:          [PASS][50] -> [FAIL][51] ([i915#52] / [i915#54]) +5 similar issues
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5586/shard-glk3/igt@kms_draw_crc@draw-method-rgb565-render-untiled.html
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-glk1/igt@kms_draw_crc@draw-method-rgb565-render-untiled.html

  * igt@kms_draw_crc@draw-method-xrgb8888-pwrite-untiled:
    - shard-kbl:          [PASS][52] -> [FAIL][53] ([i915#177] / [i915#52] / [i915#54] / [i915#93] / [i915#95])
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5586/shard-kbl2/igt@kms_draw_crc@draw-method-xrgb8888-pwrite-untiled.html
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-kbl1/igt@kms_draw_crc@draw-method-xrgb8888-pwrite-untiled.html
    - shard-apl:          [PASS][54] -> [FAIL][55] ([i915#52] / [i915#54] / [i915#95])
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5586/shard-apl2/igt@kms_draw_crc@draw-method-xrgb8888-pwrite-untiled.html
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-apl6/igt@kms_draw_crc@draw-method-xrgb8888-pwrite-untiled.html

  * igt@kms_flip_tiling@flip-changes-tiling-yf:
    - shard-kbl:          [PASS][56] -> [FAIL][57] ([i915#699] / [i915#93] / [i915#95])
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5586/shard-kbl1/igt@kms_flip_tiling@flip-changes-tiling-yf.html
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-kbl2/igt@kms_flip_tiling@flip-changes-tiling-yf.html
    - shard-apl:          [PASS][58] -> [FAIL][59] ([i915#95])
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5586/shard-apl6/igt@kms_flip_tiling@flip-changes-tiling-yf.html
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-apl8/igt@kms_flip_tiling@flip-changes-tiling-yf.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move:
    - shard-apl:          [PASS][60] -> [FAIL][61] ([i915#49])
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5586/shard-apl6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move.html
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-apl6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move.html
    - shard-kbl:          [PASS][62] -> [FAIL][63] ([i915#49])
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5586/shard-kbl1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move.html
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-kbl6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move.html

  * igt@kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw:
    - shard-glk:          [PASS][64] -> [FAIL][65] ([i915#49])
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5586/shard-glk4/igt@kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw.html
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-glk4/igt@kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-gtt:
    - shard-iclb:         [PASS][66] -> [FAIL][67] ([i915#1564]) +8 similar issues
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5586/shard-iclb6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-gtt.html
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-iclb1/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-gtt.html

  * igt@kms_plane_cursor@pipe-a-overlay-size-64:
    - shard-apl:          [PASS][68] -> [FAIL][69] ([i915#1559] / [i915#95])
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5586/shard-apl4/igt@kms_plane_cursor@pipe-a-overlay-size-64.html
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-apl1/igt@kms_plane_cursor@pipe-a-overlay-size-64.html
    - shard-kbl:          [PASS][70] -> [FAIL][71] ([i915#1559] / [i915#93] / [i915#95])
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5586/shard-kbl4/igt@kms_plane_cursor@pipe-a-overlay-size-64.html
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-kbl7/igt@kms_plane_cursor@pipe-a-overlay-size-64.html

  * igt@kms_plane_lowres@pipe-a-tiling-x:
    - shard-glk:          [PASS][72] -> [FAIL][73] ([i915#899])
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5586/shard-glk3/igt@kms_plane_lowres@pipe-a-tiling-x.html
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-glk4/igt@kms_plane_lowres@pipe-a-tiling-x.html

  * igt@kms_psr@psr2_sprite_plane_move:
    - shard-iclb:         [PASS][74] -> [SKIP][75] ([fdo#109441]) +3 similar issues
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5586/shard-iclb2/igt@kms_psr@psr2_sprite_plane_move.html
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-iclb7/igt@kms_psr@psr2_sprite_plane_move.html

  * igt@kms_setmode@basic:
    - shard-apl:          [PASS][76] -> [FAIL][77] ([i915#31])
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5586/shard-apl2/igt@kms_setmode@basic.html
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-apl6/igt@kms_setmode@basic.html

  * igt@kms_vblank@pipe-a-wait-forked-busy-hang:
    - shard-iclb:         [PASS][78] -> [SKIP][79] ([fdo#109278])
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5586/shard-iclb2/igt@kms_vblank@pipe-a-wait-forked-busy-hang.html
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-iclb1/igt@kms_vblank@pipe-a-wait-forked-busy-hang.html

  
#### Possible fixes ####

  * igt@gem_ctx_persistence@close-replace-race:
    - shard-apl:          [TIMEOUT][80] ([i915#1340]) -> [PASS][81]
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5586/shard-apl6/igt@gem_ctx_persistence@close-replace-race.html
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-apl7/igt@gem_ctx_persistence@close-replace-race.html

  * igt@i915_pm_rpm@cursor:
    - shard-tglb:         [SKIP][82] ([i915#1316] / [i915#579]) -> [PASS][83]
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5586/shard-tglb2/igt@i915_pm_rpm@cursor.html
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-tglb2/igt@i915_pm_rpm@cursor.html
    - shard-iclb:         [SKIP][84] ([i915#1316] / [i915#579]) -> [PASS][85]
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5586/shard-iclb7/igt@i915_pm_rpm@cursor.html
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-iclb4/igt@i915_pm_rpm@cursor.html

  * igt@i915_suspend@sysfs-reader:
    - shard-apl:          [DMESG-WARN][86] ([i915#180]) -> [PASS][87] +3 similar issues
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5586/shard-apl4/igt@i915_suspend@sysfs-reader.html
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-apl1/igt@i915_suspend@sysfs-reader.html

  * igt@kms_cursor_crc@pipe-a-cursor-suspend:
    - shard-kbl:          [DMESG-WARN][88] ([i915#180]) -> [PASS][89] +2 similar issues
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5586/shard-kbl4/igt@kms_cursor_crc@pipe-a-cursor-suspend.html
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-kbl7/igt@kms_cursor_crc@pipe-a-cursor-suspend.html
    - shard-snb:          [SKIP][90] ([fdo#109271]) -> [PASS][91] +2 similar issues
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5586/shard-snb2/igt@kms_cursor_crc@pipe-a-cursor-suspend.html
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-snb5/igt@kms_cursor_crc@pipe-a-cursor-suspend.html

  * igt@kms_cursor_legacy@flip-vs-cursor-crc-legacy:
    - shard-kbl:          [FAIL][92] ([i915#1566] / [i915#93] / [i915#95]) -> [PASS][93]
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5586/shard-kbl2/igt@kms_cursor_legacy@flip-vs-cursor-crc-legacy.html
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-kbl7/igt@kms_cursor_legacy@flip-vs-cursor-crc-legacy.html

  * igt@kms_draw_crc@draw-method-rgb565-pwrite-untiled:
    - shard-glk:          [FAIL][94] ([i915#177] / [i915#52] / [i915#54]) -> [PASS][95]
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5586/shard-glk3/igt@kms_draw_crc@draw-method-rgb565-pwrite-untiled.html
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-glk3/igt@kms_draw_crc@draw-method-rgb565-pwrite-untiled.html

  * igt@kms_draw_crc@draw-method-rgb565-pwrite-ytiled:
    - shard-glk:          [FAIL][96] ([i915#52] / [i915#54]) -> [PASS][97] +2 similar issues
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5586/shard-glk3/igt@kms_draw_crc@draw-method-rgb565-pwrite-ytiled.html
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-glk9/igt@kms_draw_crc@draw-method-rgb565-pwrite-ytiled.html

  * igt@kms_flip@2x-flip-vs-expired-vblank:
    - shard-glk:          [FAIL][98] ([i915#79]) -> [PASS][99]
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5586/shard-glk3/igt@kms_flip@2x-flip-vs-expired-vblank.html
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-glk8/igt@kms_flip@2x-flip-vs-expired-vblank.html

  * igt@kms_mmap_write_crc@main:
    - shard-kbl:          [FAIL][100] ([i915#93] / [i915#95]) -> [PASS][101]
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5586/shard-kbl2/igt@kms_mmap_write_crc@main.html
   [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-kbl3/igt@kms_mmap_write_crc@main.html

  * igt@kms_pipe_crc_basic@read-crc-pipe-a:
    - shard-apl:          [FAIL][102] ([i915#53] / [i915#95]) -> [PASS][103]
   [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5586/shard-apl6/igt@kms_pipe_crc_basic@read-crc-pipe-a.html
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-apl2/igt@kms_pipe_crc_basic@read-crc-pipe-a.html

  * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a:
    - shard-kbl:          [FAIL][104] ([i915#53] / [i915#93] / [i915#95]) -> [PASS][105] +1 similar issue
   [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5586/shard-kbl1/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html
   [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-kbl3/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html

  * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes:
    - shard-kbl:          [DMESG-WARN][106] ([i915#180] / [i915#93] / [i915#95]) -> [PASS][107]
   [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5586/shard-kbl3/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes.html
   [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-kbl2/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes.html

  * igt@kms_plane_cursor@pipe-a-viewport-size-256:
    - shard-apl:          [FAIL][108] ([i915#1559] / [i915#95]) -> [PASS][109]
   [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5586/shard-apl4/igt@kms_plane_cursor@pipe-a-viewport-size-256.html
   [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-apl8/igt@kms_plane_cursor@pipe-a-viewport-size-256.html
    - shard-kbl:          [FAIL][110] ([i915#1559] / [i915#93] / [i915#95]) -> [PASS][111]
   [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5586/shard-kbl2/igt@kms_plane_cursor@pipe-a-viewport-size-256.html
   [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-kbl2/igt@kms_plane_cursor@pipe-a-viewport-size-256.html

  * {igt@perf@blocking-parameterized}:
    - shard-hsw:          [FAIL][112] ([i915#1542]) -> [PASS][113] +1 similar issue
   [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5586/shard-hsw6/igt@perf@blocking-parameterized.html
   [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-hsw1/igt@perf@blocking-parameterized.html

  * igt@perf@oa-formats:
    - shard-iclb:         [SKIP][114] ([i915#405]) -> [PASS][115]
   [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5586/shard-iclb4/igt@perf@oa-formats.html
   [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-iclb3/igt@perf@oa-formats.html
    - shard-glk:          [SKIP][116] ([fdo#109271]) -> [PASS][117] +1 similar issue
   [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5586/shard-glk9/igt@perf@oa-formats.html
   [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-glk5/igt@perf@oa-formats.html
    - shard-apl:          [SKIP][118] ([fdo#109271]) -> [PASS][119]
   [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5586/shard-apl2/igt@perf@oa-formats.html
   [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-apl1/igt@perf@oa-formats.html
    - shard-kbl:          [SKIP][120] ([fdo#109271]) -> [PASS][121]
   [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5586/shard-kbl2/igt@perf@oa-formats.html
   [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-kbl7/igt@perf@oa-formats.html
    - shard-hsw:          [SKIP][122] ([fdo#109271]) -> [PASS][123]
   [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5586/shard-hsw2/igt@perf@oa-formats.html
   [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-hsw6/igt@perf@oa-formats.html
    - shard-tglb:         [SKIP][124] ([i915#405]) -> [PASS][125]
   [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5586/shard-tglb7/igt@perf@oa-formats.html
   [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-tglb8/igt@perf@oa-formats.html

  
#### Warnings ####

  * igt@i915_suspend@sysfs-reader:
    - shard-kbl:          [INCOMPLETE][126] ([CI#80] / [i915#155]) -> [DMESG-WARN][127] ([i915#180])
   [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5586/shard-kbl2/igt@i915_suspend@sysfs-reader.html
   [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-kbl7/igt@i915_suspend@sysfs-reader.html

  * igt@kms_flip@flip-vs-suspend-interruptible:
    - shard-apl:          [DMESG-WARN][128] ([i915#180] / [i915#95]) -> [DMESG-WARN][129] ([i915#180])
   [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5586/shard-apl1/igt@kms_flip@flip-vs-suspend-interruptible.html
   [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-apl1/igt@kms_flip@flip-vs-suspend-interruptible.html
    - shard-kbl:          [DMESG-WARN][130] ([i915#180] / [i915#93] / [i915#95]) -> [DMESG-WARN][131] ([i915#180])
   [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5586/shard-kbl7/igt@kms_flip@flip-vs-suspend-interruptible.html
   [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-kbl7/igt@kms_flip@flip-vs-suspend-interruptible.html

  * igt@kms_plane_alpha_blend@pipe-b-alpha-opaque-fb:
    - shard-apl:          [FAIL][132] ([fdo#108145] / [i915#265]) -> [FAIL][133] ([fdo#108145] / [i915#265] / [i915#95])
   [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5586/shard-apl3/igt@kms_plane_alpha_blend@pipe-b-alpha-opaque-fb.html
   [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-apl1/igt@kms_plane_alpha_blend@pipe-b-alpha-opaque-fb.html
    - shard-kbl:          [FAIL][134] ([fdo#108145] / [i915#265]) -> [FAIL][135] ([fdo#108145] / [i915#265] / [i915#93] / [i915#95])
   [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5586/shard-kbl6/igt@kms_plane_alpha_blend@pipe-b-alpha-opaque-fb.html
   [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-kbl7/igt@kms_plane_alpha_blend@pipe-b-alpha-opaque-fb.html

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

  [CI#80]: https://gitlab.freedesktop.org/gfx-ci/i915-infra/issues/80
  [fdo#108145]: https://bugs.freedesktop.org/show_bug.cgi?id=108145
  [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
  [fdo#109276]: https://bugs.freedesktop.org/show_bug.cgi?id=109276
  [fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278
  [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
  [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441
  [i915#1149]: https://gitlab.freedesktop.org/drm/intel/issues/1149
  [i915#1316]: https://gitlab.freedesktop.org/drm/intel/issues/1316
  [i915#1340]: https://gitlab.freedesktop.org/drm/intel/issues/1340
  [i915#1542]: https://gitlab.freedesktop.org/drm/intel/issues/1542
  [i915#155]: https://gitlab.freedesktop.org/drm/intel/issues/155
  [i915#1559]: https://gitlab.freedesktop.org/drm/intel/issues/1559
  [i915#1564]: https://gitlab.freedesktop.org/drm/intel/issues/1564
  [i915#1566]: https://gitlab.freedesktop.org/drm/intel/issues/1566
  [i915#177]: https://gitlab.freedesktop.org/drm/intel/issues/177
  [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180
  [i915#265]: https://gitlab.freedesktop.org/drm/intel/issues/265
  [i915#31]: https://gitlab.freedesktop.org/drm/intel/issues/31
  [i915#405]: https://gitlab.freedesktop.org/drm/intel/issues/405
  [i915#49]: https://gitlab.freedesktop.org/drm/intel/issues/49
  [i915#52]: https://gitlab.freedesktop.org/drm/intel/issues/52
  [i915#53]: https://gitlab.freedesktop.org/drm/intel/issues/53
  [i915#54]: https://gitlab.freedesktop.org/drm/intel/issues/54
  [i915#579]: https://gitlab.freedesktop.org/drm/intel/issues/579
  [i915#699]: https://gitlab.freedesktop.org/drm/intel/issues/699
  [i915#70]: https://gitlab.freedesktop.org/drm/intel/issues/70
  [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79
  [i915#899]: https://gitlab.freedesktop.org/drm/intel/issues/899
  [i915#93]: https://gitlab.freedesktop.org/drm/intel/issues/93
  [i915#95]: https://gitlab.freedesktop.org/drm/intel/issues/95


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

  No changes in participating hosts


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

  * CI: CI-20190529 -> None
  * IGT: IGT_5586 -> IGTPW_4440

  CI-20190529: 20190529
  CI_DRM_8283: a6f4f55d343fea03e11e754b1094dda8cf2538ac @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_4440: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/index.html
  IGT_5586: 29fad328e6a1b105c8d688cafe19b1b5c19ad0c8 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/index.html
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

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

* [igt-dev] ✗ Fi.CI.IGT: failure for tests: Add a test for device hot unplug (rev2)
  2020-04-09 12:18 ` [igt-dev] " Janusz Krzysztofik
                   ` (2 preceding siblings ...)
  (?)
@ 2020-04-10  9:19 ` Patchwork
  -1 siblings, 0 replies; 5+ messages in thread
From: Patchwork @ 2020-04-10  9:19 UTC (permalink / raw)
  To: Janusz Krzysztofik; +Cc: igt-dev

== Series Details ==

Series: tests: Add a test for device hot unplug (rev2)
URL   : https://patchwork.freedesktop.org/series/75692/
State : failure

== Summary ==

CI Bug Log - changes from IGT_5586_full -> IGTPW_4440_full
====================================================

Summary
-------

  **FAILURE**

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

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

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

### IGT changes ###

#### Possible regressions ####

  * {igt@core_hotunplug@hotunplug-lateclose} (NEW):
    - shard-tglb:         NOTRUN -> [INCOMPLETE][1]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-tglb6/igt@core_hotunplug@hotunplug-lateclose.html
    - shard-apl:          NOTRUN -> [INCOMPLETE][2]
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-apl8/igt@core_hotunplug@hotunplug-lateclose.html
    - shard-iclb:         NOTRUN -> [INCOMPLETE][3]
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-iclb1/igt@core_hotunplug@hotunplug-lateclose.html
    - shard-kbl:          NOTRUN -> [INCOMPLETE][4]
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-kbl6/igt@core_hotunplug@hotunplug-lateclose.html

  * igt@gem_ctx_bad_destroy@invalid-ctx:
    - shard-iclb:         [PASS][5] -> [SKIP][6]
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5586/shard-iclb3/igt@gem_ctx_bad_destroy@invalid-ctx.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-iclb1/igt@gem_ctx_bad_destroy@invalid-ctx.html

  * igt@i915_pm_rpm@fences:
    - shard-iclb:         [PASS][7] -> [FAIL][8] +4 similar issues
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5586/shard-iclb2/igt@i915_pm_rpm@fences.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-iclb1/igt@i915_pm_rpm@fences.html

  * igt@kms_plane_multiple@atomic-pipe-b-tiling-none:
    - shard-iclb:         [PASS][9] -> [WARN][10] +7 similar issues
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5586/shard-iclb2/igt@kms_plane_multiple@atomic-pipe-b-tiling-none.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-iclb1/igt@kms_plane_multiple@atomic-pipe-b-tiling-none.html

  * igt@runner@aborted:
    - shard-hsw:          NOTRUN -> ([FAIL][11], [FAIL][12], [FAIL][13])
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-hsw4/igt@runner@aborted.html
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-hsw4/igt@runner@aborted.html
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-hsw2/igt@runner@aborted.html
    - shard-tglb:         NOTRUN -> [FAIL][14]
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-tglb6/igt@runner@aborted.html
    - shard-snb:          NOTRUN -> [FAIL][15]
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-snb2/igt@runner@aborted.html

  
#### Warnings ####

  * igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled-ccs:
    - shard-snb:          [SKIP][16] ([fdo#109271]) -> [FAIL][17] +1 similar issue
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5586/shard-snb1/igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled-ccs.html
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-snb2/igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled-ccs.html

  
New tests
---------

  New tests have been introduced between IGT_5586_full and IGTPW_4440_full:

### New IGT tests (4) ###

  * igt@core_hotunplug@hotunbind-lateclose:
    - Statuses : 1 incomplete(s) 6 pass(s)
    - Exec time: [0.0, 1.81] s

  * igt@core_hotunplug@hotunplug-lateclose:
    - Statuses : 7 incomplete(s)
    - Exec time: [0.0] s

  * igt@core_hotunplug@unbind-rebind:
    - Statuses : 1 incomplete(s) 6 pass(s)
    - Exec time: [0.0, 1.97] s

  * igt@core_hotunplug@unplug-rescan:
    - Statuses : 2 incomplete(s) 5 pass(s)
    - Exec time: [0.0, 3.97] s

  

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

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

### IGT changes ###

#### Issues hit ####

  * igt@gem_ctx_param@vm:
    - shard-apl:          [PASS][18] -> [FAIL][19] ([i915#1690]) +1 similar issue
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5586/shard-apl3/igt@gem_ctx_param@vm.html
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-apl2/igt@gem_ctx_param@vm.html
    - shard-tglb:         [PASS][20] -> [FAIL][21] ([i915#1690]) +1 similar issue
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5586/shard-tglb8/igt@gem_ctx_param@vm.html
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-tglb2/igt@gem_ctx_param@vm.html
    - shard-kbl:          [PASS][22] -> [FAIL][23] ([i915#1690]) +1 similar issue
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5586/shard-kbl6/igt@gem_ctx_param@vm.html
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-kbl2/igt@gem_ctx_param@vm.html

  * igt@gem_exec_flush@basic-uc-pro-default:
    - shard-iclb:         [PASS][24] -> [SKIP][25] ([i915#1570]) +17 similar issues
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5586/shard-iclb4/igt@gem_exec_flush@basic-uc-pro-default.html
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-iclb1/igt@gem_exec_flush@basic-uc-pro-default.html

  * igt@gem_exec_params@invalid-bsd-ring:
    - shard-iclb:         [PASS][26] -> [SKIP][27] ([fdo#109276])
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5586/shard-iclb2/igt@gem_exec_params@invalid-bsd-ring.html
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-iclb7/igt@gem_exec_params@invalid-bsd-ring.html

  * igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled-ccs:
    - shard-glk:          [PASS][28] -> [FAIL][29] ([i915#1690]) +1 similar issue
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5586/shard-glk7/igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled-ccs.html
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-glk4/igt@gem_render_copy@yf-tiled-ccs-to-yf-tiled-ccs.html

  * igt@gem_softpin@noreloc-s3:
    - shard-kbl:          [PASS][30] -> [DMESG-WARN][31] ([i915#180])
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5586/shard-kbl2/igt@gem_softpin@noreloc-s3.html
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-kbl4/igt@gem_softpin@noreloc-s3.html

  * igt@i915_suspend@fence-restore-untiled:
    - shard-apl:          [PASS][32] -> [DMESG-WARN][33] ([i915#180]) +1 similar issue
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5586/shard-apl7/igt@i915_suspend@fence-restore-untiled.html
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-apl6/igt@i915_suspend@fence-restore-untiled.html

  * igt@kms_big_fb@yf-tiled-32bpp-rotate-90:
    - shard-iclb:         [PASS][34] -> [FAIL][35] ([i915#1563]) +1 similar issue
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5586/shard-iclb2/igt@kms_big_fb@yf-tiled-32bpp-rotate-90.html
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-iclb1/igt@kms_big_fb@yf-tiled-32bpp-rotate-90.html

  * igt@kms_color@pipe-b-ctm-green-to-red:
    - shard-iclb:         [PASS][36] -> [WARN][37] ([i915#1149]) +1 similar issue
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5586/shard-iclb8/igt@kms_color@pipe-b-ctm-green-to-red.html
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-iclb1/igt@kms_color@pipe-b-ctm-green-to-red.html

  * igt@kms_cursor_crc@pipe-a-cursor-128x42-offscreen:
    - shard-kbl:          [PASS][38] -> [FAIL][39] ([i915#54] / [i915#93] / [i915#95])
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5586/shard-kbl6/igt@kms_cursor_crc@pipe-a-cursor-128x42-offscreen.html
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-kbl2/igt@kms_cursor_crc@pipe-a-cursor-128x42-offscreen.html

  * igt@kms_cursor_crc@pipe-c-cursor-256x85-onscreen:
    - shard-apl:          [PASS][40] -> [FAIL][41] ([i915#54])
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5586/shard-apl1/igt@kms_cursor_crc@pipe-c-cursor-256x85-onscreen.html
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-apl3/igt@kms_cursor_crc@pipe-c-cursor-256x85-onscreen.html
    - shard-kbl:          [PASS][42] -> [FAIL][43] ([i915#54])
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5586/shard-kbl7/igt@kms_cursor_crc@pipe-c-cursor-256x85-onscreen.html
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-kbl4/igt@kms_cursor_crc@pipe-c-cursor-256x85-onscreen.html

  * igt@kms_cursor_edge_walk@pipe-a-256x256-left-edge:
    - shard-iclb:         [PASS][44] -> [FAIL][45] ([i915#70])
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5586/shard-iclb2/igt@kms_cursor_edge_walk@pipe-a-256x256-left-edge.html
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-iclb1/igt@kms_cursor_edge_walk@pipe-a-256x256-left-edge.html

  * igt@kms_cursor_edge_walk@pipe-c-256x256-left-edge:
    - shard-iclb:         [PASS][46] -> [WARN][47] ([i915#1691])
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5586/shard-iclb5/igt@kms_cursor_edge_walk@pipe-c-256x256-left-edge.html
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-iclb1/igt@kms_cursor_edge_walk@pipe-c-256x256-left-edge.html

  * igt@kms_draw_crc@draw-method-rgb565-render-untiled:
    - shard-glk:          [PASS][48] -> [FAIL][49] ([i915#52] / [i915#54]) +5 similar issues
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5586/shard-glk3/igt@kms_draw_crc@draw-method-rgb565-render-untiled.html
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-glk1/igt@kms_draw_crc@draw-method-rgb565-render-untiled.html

  * igt@kms_draw_crc@draw-method-xrgb8888-pwrite-untiled:
    - shard-kbl:          [PASS][50] -> [FAIL][51] ([i915#177] / [i915#52] / [i915#54] / [i915#93] / [i915#95])
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5586/shard-kbl2/igt@kms_draw_crc@draw-method-xrgb8888-pwrite-untiled.html
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-kbl1/igt@kms_draw_crc@draw-method-xrgb8888-pwrite-untiled.html
    - shard-apl:          [PASS][52] -> [FAIL][53] ([i915#52] / [i915#54] / [i915#95])
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5586/shard-apl2/igt@kms_draw_crc@draw-method-xrgb8888-pwrite-untiled.html
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-apl6/igt@kms_draw_crc@draw-method-xrgb8888-pwrite-untiled.html

  * igt@kms_flip_tiling@flip-changes-tiling-yf:
    - shard-kbl:          [PASS][54] -> [FAIL][55] ([i915#699] / [i915#93] / [i915#95])
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5586/shard-kbl1/igt@kms_flip_tiling@flip-changes-tiling-yf.html
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-kbl2/igt@kms_flip_tiling@flip-changes-tiling-yf.html
    - shard-apl:          [PASS][56] -> [FAIL][57] ([i915#95])
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5586/shard-apl6/igt@kms_flip_tiling@flip-changes-tiling-yf.html
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-apl8/igt@kms_flip_tiling@flip-changes-tiling-yf.html

  * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move:
    - shard-apl:          [PASS][58] -> [FAIL][59] ([i915#49])
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5586/shard-apl6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move.html
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-apl6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move.html
    - shard-kbl:          [PASS][60] -> [FAIL][61] ([i915#49])
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5586/shard-kbl1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move.html
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-kbl6/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-move.html

  * igt@kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw:
    - shard-glk:          [PASS][62] -> [FAIL][63] ([i915#49])
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5586/shard-glk4/igt@kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw.html
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-glk4/igt@kms_frontbuffer_tracking@fbc-2p-pri-indfb-multidraw.html

  * igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-gtt:
    - shard-iclb:         [PASS][64] -> [FAIL][65] ([i915#1564]) +8 similar issues
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5586/shard-iclb6/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-gtt.html
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-iclb1/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-gtt.html

  * igt@kms_plane_cursor@pipe-a-overlay-size-64:
    - shard-apl:          [PASS][66] -> [FAIL][67] ([i915#1559] / [i915#95])
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5586/shard-apl4/igt@kms_plane_cursor@pipe-a-overlay-size-64.html
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-apl1/igt@kms_plane_cursor@pipe-a-overlay-size-64.html
    - shard-kbl:          [PASS][68] -> [FAIL][69] ([i915#1559] / [i915#93] / [i915#95])
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5586/shard-kbl4/igt@kms_plane_cursor@pipe-a-overlay-size-64.html
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-kbl7/igt@kms_plane_cursor@pipe-a-overlay-size-64.html

  * igt@kms_plane_lowres@pipe-a-tiling-x:
    - shard-glk:          [PASS][70] -> [FAIL][71] ([i915#899])
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5586/shard-glk3/igt@kms_plane_lowres@pipe-a-tiling-x.html
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-glk4/igt@kms_plane_lowres@pipe-a-tiling-x.html

  * igt@kms_psr@psr2_sprite_plane_move:
    - shard-iclb:         [PASS][72] -> [SKIP][73] ([fdo#109441]) +3 similar issues
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5586/shard-iclb2/igt@kms_psr@psr2_sprite_plane_move.html
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-iclb7/igt@kms_psr@psr2_sprite_plane_move.html

  * igt@kms_setmode@basic:
    - shard-apl:          [PASS][74] -> [FAIL][75] ([i915#31])
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5586/shard-apl2/igt@kms_setmode@basic.html
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-apl6/igt@kms_setmode@basic.html

  * igt@kms_vblank@pipe-a-wait-forked-busy-hang:
    - shard-iclb:         [PASS][76] -> [SKIP][77] ([fdo#109278])
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5586/shard-iclb2/igt@kms_vblank@pipe-a-wait-forked-busy-hang.html
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-iclb1/igt@kms_vblank@pipe-a-wait-forked-busy-hang.html

  * igt@testdisplay:
    - shard-apl:          [PASS][78] -> [INCOMPLETE][79] ([i915#1692])
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5586/shard-apl8/igt@testdisplay.html
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-apl7/igt@testdisplay.html
    - shard-kbl:          [PASS][80] -> [INCOMPLETE][81] ([i915#1692])
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5586/shard-kbl4/igt@testdisplay.html
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-kbl6/igt@testdisplay.html

  
#### Possible fixes ####

  * igt@gem_ctx_persistence@close-replace-race:
    - shard-apl:          [TIMEOUT][82] ([i915#1340]) -> [PASS][83]
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5586/shard-apl6/igt@gem_ctx_persistence@close-replace-race.html
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-apl7/igt@gem_ctx_persistence@close-replace-race.html

  * igt@i915_pm_rpm@cursor:
    - shard-tglb:         [SKIP][84] ([i915#1316] / [i915#579]) -> [PASS][85]
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5586/shard-tglb2/igt@i915_pm_rpm@cursor.html
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-tglb2/igt@i915_pm_rpm@cursor.html
    - shard-iclb:         [SKIP][86] ([i915#1316] / [i915#579]) -> [PASS][87]
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5586/shard-iclb7/igt@i915_pm_rpm@cursor.html
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-iclb4/igt@i915_pm_rpm@cursor.html

  * igt@i915_suspend@sysfs-reader:
    - shard-apl:          [DMESG-WARN][88] ([i915#180]) -> [PASS][89] +3 similar issues
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5586/shard-apl4/igt@i915_suspend@sysfs-reader.html
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-apl1/igt@i915_suspend@sysfs-reader.html

  * igt@kms_cursor_crc@pipe-a-cursor-suspend:
    - shard-kbl:          [DMESG-WARN][90] ([i915#180]) -> [PASS][91] +2 similar issues
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5586/shard-kbl4/igt@kms_cursor_crc@pipe-a-cursor-suspend.html
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-kbl7/igt@kms_cursor_crc@pipe-a-cursor-suspend.html
    - shard-snb:          [SKIP][92] ([fdo#109271]) -> [PASS][93] +2 similar issues
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5586/shard-snb2/igt@kms_cursor_crc@pipe-a-cursor-suspend.html
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-snb5/igt@kms_cursor_crc@pipe-a-cursor-suspend.html

  * igt@kms_cursor_legacy@flip-vs-cursor-crc-legacy:
    - shard-kbl:          [FAIL][94] ([i915#1566] / [i915#93] / [i915#95]) -> [PASS][95]
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5586/shard-kbl2/igt@kms_cursor_legacy@flip-vs-cursor-crc-legacy.html
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-kbl7/igt@kms_cursor_legacy@flip-vs-cursor-crc-legacy.html

  * igt@kms_draw_crc@draw-method-rgb565-pwrite-untiled:
    - shard-glk:          [FAIL][96] ([i915#177] / [i915#52] / [i915#54]) -> [PASS][97]
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5586/shard-glk3/igt@kms_draw_crc@draw-method-rgb565-pwrite-untiled.html
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-glk3/igt@kms_draw_crc@draw-method-rgb565-pwrite-untiled.html

  * igt@kms_draw_crc@draw-method-rgb565-pwrite-ytiled:
    - shard-glk:          [FAIL][98] ([i915#52] / [i915#54]) -> [PASS][99] +2 similar issues
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5586/shard-glk3/igt@kms_draw_crc@draw-method-rgb565-pwrite-ytiled.html
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-glk9/igt@kms_draw_crc@draw-method-rgb565-pwrite-ytiled.html

  * igt@kms_flip@2x-flip-vs-expired-vblank:
    - shard-glk:          [FAIL][100] ([i915#79]) -> [PASS][101]
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5586/shard-glk3/igt@kms_flip@2x-flip-vs-expired-vblank.html
   [101]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-glk8/igt@kms_flip@2x-flip-vs-expired-vblank.html

  * igt@kms_mmap_write_crc@main:
    - shard-kbl:          [FAIL][102] ([i915#93] / [i915#95]) -> [PASS][103]
   [102]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5586/shard-kbl2/igt@kms_mmap_write_crc@main.html
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-kbl3/igt@kms_mmap_write_crc@main.html

  * igt@kms_pipe_crc_basic@read-crc-pipe-a:
    - shard-apl:          [FAIL][104] ([i915#53] / [i915#95]) -> [PASS][105]
   [104]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5586/shard-apl6/igt@kms_pipe_crc_basic@read-crc-pipe-a.html
   [105]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-apl2/igt@kms_pipe_crc_basic@read-crc-pipe-a.html

  * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a:
    - shard-kbl:          [FAIL][106] ([i915#53] / [i915#93] / [i915#95]) -> [PASS][107] +1 similar issue
   [106]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5586/shard-kbl1/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html
   [107]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-kbl3/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-a.html

  * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes:
    - shard-kbl:          [DMESG-WARN][108] ([i915#180] / [i915#93] / [i915#95]) -> [PASS][109]
   [108]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5586/shard-kbl3/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes.html
   [109]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-kbl2/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-a-planes.html

  * igt@kms_plane_cursor@pipe-a-viewport-size-256:
    - shard-apl:          [FAIL][110] ([i915#1559] / [i915#95]) -> [PASS][111]
   [110]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5586/shard-apl4/igt@kms_plane_cursor@pipe-a-viewport-size-256.html
   [111]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-apl8/igt@kms_plane_cursor@pipe-a-viewport-size-256.html
    - shard-kbl:          [FAIL][112] ([i915#1559] / [i915#93] / [i915#95]) -> [PASS][113]
   [112]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5586/shard-kbl2/igt@kms_plane_cursor@pipe-a-viewport-size-256.html
   [113]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-kbl2/igt@kms_plane_cursor@pipe-a-viewport-size-256.html

  * {igt@perf@blocking-parameterized}:
    - shard-hsw:          [FAIL][114] ([i915#1542]) -> [PASS][115] +1 similar issue
   [114]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5586/shard-hsw6/igt@perf@blocking-parameterized.html
   [115]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-hsw1/igt@perf@blocking-parameterized.html

  * igt@perf@oa-formats:
    - shard-iclb:         [SKIP][116] ([i915#405]) -> [PASS][117]
   [116]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5586/shard-iclb4/igt@perf@oa-formats.html
   [117]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-iclb3/igt@perf@oa-formats.html
    - shard-glk:          [SKIP][118] ([fdo#109271]) -> [PASS][119] +1 similar issue
   [118]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5586/shard-glk9/igt@perf@oa-formats.html
   [119]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-glk5/igt@perf@oa-formats.html
    - shard-apl:          [SKIP][120] ([fdo#109271]) -> [PASS][121]
   [120]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5586/shard-apl2/igt@perf@oa-formats.html
   [121]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-apl1/igt@perf@oa-formats.html
    - shard-kbl:          [SKIP][122] ([fdo#109271]) -> [PASS][123]
   [122]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5586/shard-kbl2/igt@perf@oa-formats.html
   [123]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-kbl7/igt@perf@oa-formats.html
    - shard-hsw:          [SKIP][124] ([fdo#109271]) -> [PASS][125]
   [124]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5586/shard-hsw2/igt@perf@oa-formats.html
   [125]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-hsw6/igt@perf@oa-formats.html
    - shard-tglb:         [SKIP][126] ([i915#405]) -> [PASS][127]
   [126]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5586/shard-tglb7/igt@perf@oa-formats.html
   [127]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-tglb8/igt@perf@oa-formats.html

  
#### Warnings ####

  * igt@gen7_exec_parse@basic-allocation:
    - shard-iclb:         [SKIP][128] ([fdo#109289]) -> [SKIP][129] ([i915#1570])
   [128]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5586/shard-iclb7/igt@gen7_exec_parse@basic-allocation.html
   [129]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-iclb1/igt@gen7_exec_parse@basic-allocation.html

  * igt@i915_suspend@sysfs-reader:
    - shard-kbl:          [INCOMPLETE][130] ([CI#80] / [i915#155]) -> [DMESG-WARN][131] ([i915#180])
   [130]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5586/shard-kbl2/igt@i915_suspend@sysfs-reader.html
   [131]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-kbl7/igt@i915_suspend@sysfs-reader.html

  * igt@kms_flip@flip-vs-suspend-interruptible:
    - shard-apl:          [DMESG-WARN][132] ([i915#180] / [i915#95]) -> [DMESG-WARN][133] ([i915#180])
   [132]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5586/shard-apl1/igt@kms_flip@flip-vs-suspend-interruptible.html
   [133]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-apl1/igt@kms_flip@flip-vs-suspend-interruptible.html
    - shard-kbl:          [DMESG-WARN][134] ([i915#180] / [i915#93] / [i915#95]) -> [DMESG-WARN][135] ([i915#180])
   [134]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5586/shard-kbl7/igt@kms_flip@flip-vs-suspend-interruptible.html
   [135]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-kbl7/igt@kms_flip@flip-vs-suspend-interruptible.html

  * igt@kms_plane_alpha_blend@pipe-b-alpha-opaque-fb:
    - shard-apl:          [FAIL][136] ([fdo#108145] / [i915#265]) -> [FAIL][137] ([fdo#108145] / [i915#265] / [i915#95])
   [136]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5586/shard-apl3/igt@kms_plane_alpha_blend@pipe-b-alpha-opaque-fb.html
   [137]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-apl1/igt@kms_plane_alpha_blend@pipe-b-alpha-opaque-fb.html
    - shard-kbl:          [FAIL][138] ([fdo#108145] / [i915#265]) -> [FAIL][139] ([fdo#108145] / [i915#265] / [i915#93] / [i915#95])
   [138]: https://intel-gfx-ci.01.org/tree/drm-tip/IGT_5586/shard-kbl6/igt@kms_plane_alpha_blend@pipe-b-alpha-opaque-fb.html
   [139]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/shard-kbl7/igt@kms_plane_alpha_blend@pipe-b-alpha-opaque-fb.html

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

  [CI#80]: https://gitlab.freedesktop.org/gfx-ci/i915-infra/issues/80
  [fdo#108145]: https://bugs.freedesktop.org/show_bug.cgi?id=108145
  [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
  [fdo#109276]: https://bugs.freedesktop.org/show_bug.cgi?id=109276
  [fdo#109278]: https://bugs.freedesktop.org/show_bug.cgi?id=109278
  [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
  [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441
  [i915#1149]: https://gitlab.freedesktop.org/drm/intel/issues/1149
  [i915#1316]: https://gitlab.freedesktop.org/drm/intel/issues/1316
  [i915#1340]: https://gitlab.freedesktop.org/drm/intel/issues/1340
  [i915#1542]: https://gitlab.freedesktop.org/drm/intel/issues/1542
  [i915#155]: https://gitlab.freedesktop.org/drm/intel/issues/155
  [i915#1559]: https://gitlab.freedesktop.org/drm/intel/issues/1559
  [i915#1563]: https://gitlab.freedesktop.org/drm/intel/issues/1563
  [i915#1564]: https://gitlab.freedesktop.org/drm/intel/issues/1564
  [i915#1566]: https://gitlab.freedesktop.org/drm/intel/issues/1566
  [i915#1570]: https://gitlab.freedesktop.org/drm/intel/issues/1570
  [i915#1690]: https://gitlab.freedesktop.org/drm/intel/issues/1690
  [i915#1691]: https://gitlab.freedesktop.org/drm/intel/issues/1691
  [i915#1692]: https://gitlab.freedesktop.org/drm/intel/issues/1692
  [i915#177]: https://gitlab.freedesktop.org/drm/intel/issues/177
  [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180
  [i915#265]: https://gitlab.freedesktop.org/drm/intel/issues/265
  [i915#31]: https://gitlab.freedesktop.org/drm/intel/issues/31
  [i915#405]: https://gitlab.freedesktop.org/drm/intel/issues/405
  [i915#49]: https://gitlab.freedesktop.org/drm/intel/issues/49
  [i915#52]: https://gitlab.freedesktop.org/drm/intel/issues/52
  [i915#53]: https://gitlab.freedesktop.org/drm/intel/issues/53
  [i915#54]: https://gitlab.freedesktop.org/drm/intel/issues/54
  [i915#579]: https://gitlab.freedesktop.org/drm/intel/issues/579
  [i915#699]: https://gitlab.freedesktop.org/drm/intel/issues/699
  [i915#70]: https://gitlab.freedesktop.org/drm/intel/issues/70
  [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79
  [i915#899]: https://gitlab.freedesktop.org/drm/intel/issues/899
  [i915#93]: https://gitlab.freedesktop.org/drm/intel/issues/93
  [i915#95]: https://gitlab.freedesktop.org/drm/intel/issues/95


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

  No changes in participating hosts


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

  * CI: CI-20190529 -> None
  * IGT: IGT_5586 -> IGTPW_4440

  CI-20190529: 20190529
  CI_DRM_8283: a6f4f55d343fea03e11e754b1094dda8cf2538ac @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_4440: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/index.html
  IGT_5586: 29fad328e6a1b105c8d688cafe19b1b5c19ad0c8 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_4440/index.html
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

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

end of thread, other threads:[~2020-04-10  9:19 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-04-09 12:18 [Intel-gfx] [PATCH i-g-t v13] tests: Add a test for device hot unplug Janusz Krzysztofik
2020-04-09 12:18 ` [igt-dev] " Janusz Krzysztofik
2020-04-09 13:27 ` [igt-dev] ✓ Fi.CI.BAT: success for tests: Add a test for device hot unplug (rev2) Patchwork
2020-04-10  6:05 ` [igt-dev] ✗ Fi.CI.IGT: failure " Patchwork
2020-04-10  9:19 ` 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.