* [Intel-gfx] [PATCH v2 0/4] drm/i915: Convert fbdev to DRM client
@ 2023-09-13 14:58 Thomas Zimmermann
2023-09-13 14:58 ` [Intel-gfx] [PATCH v2 1/4] drm/i915: Move fbdev functions Thomas Zimmermann
` (5 more replies)
0 siblings, 6 replies; 10+ messages in thread
From: Thomas Zimmermann @ 2023-09-13 14:58 UTC (permalink / raw)
To: jani.nikula, joonas.lahtinen, rodrigo.vivi, tvrtko.ursulin,
ville.syrjala, imre.deak, tejas.upadhyay, javierm, airlied,
daniel
Cc: intel-gfx, Thomas Zimmermann, dri-devel
Convert i915's fbdev code to struct drm_client. Replaces the current
ad-hoc integration. The conversion includes a number of cleanups.
As with most other driver's fbdev emulation, fbdev in i915 is now
just another DRM client that runs after the DRM device has been
registered. This allows to remove the asynchronous initialization.
I've long wanted to send out an update for this patchset. i915
is the last driver with an fbdev emulation that is not build upon
struct drm_client. Once reviewed, the patches would ideally go
into drm-misc-next, so that the old fbdev helper code can be removed.
We can also attempt to add additional in-kernel clients. A DRM-based
dmesg log or a bootsplash are commonly mentioned. DRM can then switch
easily among the existing clients if/when required.
v2:
* fix error handling (Jani)
* fix non-fbdev builds
* various minor fixes and cleanups
Thomas Zimmermann (4):
drm/i915: Move fbdev functions
drm/i915: Initialize fbdev DRM client with callback functions
drm/i915: Implement fbdev client callbacks
drm/i915: Implement fbdev emulation as in-kernel client
drivers/gpu/drm/i915/display/intel_display.c | 1 -
.../drm/i915/display/intel_display_driver.c | 19 --
drivers/gpu/drm/i915/display/intel_fbdev.c | 250 ++++++++++--------
drivers/gpu/drm/i915/display/intel_fbdev.h | 29 +-
drivers/gpu/drm/i915/i915_driver.c | 24 +-
5 files changed, 139 insertions(+), 184 deletions(-)
base-commit: f8d21cb17a99b75862196036bb4bb93ee9637b74
--
2.42.0
^ permalink raw reply [flat|nested] 10+ messages in thread
* [Intel-gfx] [PATCH v2 1/4] drm/i915: Move fbdev functions
2023-09-13 14:58 [Intel-gfx] [PATCH v2 0/4] drm/i915: Convert fbdev to DRM client Thomas Zimmermann
@ 2023-09-13 14:58 ` Thomas Zimmermann
2023-09-13 14:58 ` [Intel-gfx] [PATCH v2 2/4] drm/i915: Initialize fbdev DRM client with callback functions Thomas Zimmermann
` (4 subsequent siblings)
5 siblings, 0 replies; 10+ messages in thread
From: Thomas Zimmermann @ 2023-09-13 14:58 UTC (permalink / raw)
To: jani.nikula, joonas.lahtinen, rodrigo.vivi, tvrtko.ursulin,
ville.syrjala, imre.deak, tejas.upadhyay, javierm, airlied,
daniel
Cc: intel-gfx, Thomas Zimmermann, dri-devel
Move functions within intel_fbdev.c to simplify later updates. No
functional changes.
Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de>
---
drivers/gpu/drm/i915/display/intel_fbdev.c | 154 ++++++++++-----------
1 file changed, 77 insertions(+), 77 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_fbdev.c b/drivers/gpu/drm/i915/display/intel_fbdev.c
index 31d0d695d5671..8d51550e18fd5 100644
--- a/drivers/gpu/drm/i915/display/intel_fbdev.c
+++ b/drivers/gpu/drm/i915/display/intel_fbdev.c
@@ -545,58 +545,6 @@ static void intel_fbdev_suspend_worker(struct work_struct *work)
true);
}
-int intel_fbdev_init(struct drm_device *dev)
-{
- struct drm_i915_private *dev_priv = to_i915(dev);
- struct intel_fbdev *ifbdev;
- int ret;
-
- if (drm_WARN_ON(dev, !HAS_DISPLAY(dev_priv)))
- return -ENODEV;
-
- ifbdev = kzalloc(sizeof(struct intel_fbdev), GFP_KERNEL);
- if (ifbdev == NULL)
- return -ENOMEM;
-
- mutex_init(&ifbdev->hpd_lock);
- drm_fb_helper_prepare(dev, &ifbdev->helper, 32, &intel_fb_helper_funcs);
-
- if (intel_fbdev_init_bios(dev, ifbdev))
- ifbdev->helper.preferred_bpp = ifbdev->preferred_bpp;
- else
- ifbdev->preferred_bpp = ifbdev->helper.preferred_bpp;
-
- ret = drm_fb_helper_init(dev, &ifbdev->helper);
- if (ret) {
- kfree(ifbdev);
- return ret;
- }
-
- dev_priv->display.fbdev.fbdev = ifbdev;
- INIT_WORK(&dev_priv->display.fbdev.suspend_work, intel_fbdev_suspend_worker);
-
- return 0;
-}
-
-static void intel_fbdev_initial_config(void *data, async_cookie_t cookie)
-{
- struct intel_fbdev *ifbdev = data;
-
- /* Due to peculiar init order wrt to hpd handling this is separate. */
- if (drm_fb_helper_initial_config(&ifbdev->helper))
- intel_fbdev_unregister(to_i915(ifbdev->helper.dev));
-}
-
-void intel_fbdev_initial_config_async(struct drm_i915_private *dev_priv)
-{
- struct intel_fbdev *ifbdev = dev_priv->display.fbdev.fbdev;
-
- if (!ifbdev)
- return;
-
- ifbdev->cookie = async_schedule(intel_fbdev_initial_config, ifbdev);
-}
-
static void intel_fbdev_sync(struct intel_fbdev *ifbdev)
{
if (!ifbdev->cookie)
@@ -607,31 +555,6 @@ static void intel_fbdev_sync(struct intel_fbdev *ifbdev)
ifbdev->cookie = 0;
}
-void intel_fbdev_unregister(struct drm_i915_private *dev_priv)
-{
- struct intel_fbdev *ifbdev = dev_priv->display.fbdev.fbdev;
-
- if (!ifbdev)
- return;
-
- intel_fbdev_set_suspend(&dev_priv->drm, FBINFO_STATE_SUSPENDED, true);
-
- if (!current_is_async())
- intel_fbdev_sync(ifbdev);
-
- drm_fb_helper_unregister_info(&ifbdev->helper);
-}
-
-void intel_fbdev_fini(struct drm_i915_private *dev_priv)
-{
- struct intel_fbdev *ifbdev = fetch_and_zero(&dev_priv->display.fbdev.fbdev);
-
- if (!ifbdev)
- return;
-
- intel_fbdev_destroy(ifbdev);
-}
-
/* Suspends/resumes fbdev processing of incoming HPD events. When resuming HPD
* processing, fbdev will perform a full connector reprobe if a hotplug event
* was received while HPD was suspended.
@@ -748,6 +671,83 @@ void intel_fbdev_restore_mode(struct drm_i915_private *dev_priv)
intel_fbdev_invalidate(ifbdev);
}
+int intel_fbdev_init(struct drm_device *dev)
+{
+ struct drm_i915_private *dev_priv = to_i915(dev);
+ struct intel_fbdev *ifbdev;
+ int ret;
+
+ if (drm_WARN_ON(dev, !HAS_DISPLAY(dev_priv)))
+ return -ENODEV;
+
+ ifbdev = kzalloc(sizeof(struct intel_fbdev), GFP_KERNEL);
+ if (ifbdev == NULL)
+ return -ENOMEM;
+
+ mutex_init(&ifbdev->hpd_lock);
+ drm_fb_helper_prepare(dev, &ifbdev->helper, 32, &intel_fb_helper_funcs);
+
+ if (intel_fbdev_init_bios(dev, ifbdev))
+ ifbdev->helper.preferred_bpp = ifbdev->preferred_bpp;
+ else
+ ifbdev->preferred_bpp = ifbdev->helper.preferred_bpp;
+
+ ret = drm_fb_helper_init(dev, &ifbdev->helper);
+ if (ret) {
+ kfree(ifbdev);
+ return ret;
+ }
+
+ dev_priv->display.fbdev.fbdev = ifbdev;
+ INIT_WORK(&dev_priv->display.fbdev.suspend_work, intel_fbdev_suspend_worker);
+
+ return 0;
+}
+
+static void intel_fbdev_initial_config(void *data, async_cookie_t cookie)
+{
+ struct intel_fbdev *ifbdev = data;
+
+ /* Due to peculiar init order wrt to hpd handling this is separate. */
+ if (drm_fb_helper_initial_config(&ifbdev->helper))
+ intel_fbdev_unregister(to_i915(ifbdev->helper.dev));
+}
+
+void intel_fbdev_initial_config_async(struct drm_i915_private *dev_priv)
+{
+ struct intel_fbdev *ifbdev = dev_priv->display.fbdev.fbdev;
+
+ if (!ifbdev)
+ return;
+
+ ifbdev->cookie = async_schedule(intel_fbdev_initial_config, ifbdev);
+}
+
+void intel_fbdev_unregister(struct drm_i915_private *dev_priv)
+{
+ struct intel_fbdev *ifbdev = dev_priv->display.fbdev.fbdev;
+
+ if (!ifbdev)
+ return;
+
+ intel_fbdev_set_suspend(&dev_priv->drm, FBINFO_STATE_SUSPENDED, true);
+
+ if (!current_is_async())
+ intel_fbdev_sync(ifbdev);
+
+ drm_fb_helper_unregister_info(&ifbdev->helper);
+}
+
+void intel_fbdev_fini(struct drm_i915_private *dev_priv)
+{
+ struct intel_fbdev *ifbdev = fetch_and_zero(&dev_priv->display.fbdev.fbdev);
+
+ if (!ifbdev)
+ return;
+
+ intel_fbdev_destroy(ifbdev);
+}
+
struct intel_framebuffer *intel_fbdev_framebuffer(struct intel_fbdev *fbdev)
{
if (!fbdev || !fbdev->helper.fb)
--
2.42.0
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [Intel-gfx] [PATCH v2 2/4] drm/i915: Initialize fbdev DRM client with callback functions
2023-09-13 14:58 [Intel-gfx] [PATCH v2 0/4] drm/i915: Convert fbdev to DRM client Thomas Zimmermann
2023-09-13 14:58 ` [Intel-gfx] [PATCH v2 1/4] drm/i915: Move fbdev functions Thomas Zimmermann
@ 2023-09-13 14:58 ` Thomas Zimmermann
2023-09-13 14:58 ` [Intel-gfx] [PATCH v2 3/4] drm/i915: Implement fbdev client callbacks Thomas Zimmermann
` (3 subsequent siblings)
5 siblings, 0 replies; 10+ messages in thread
From: Thomas Zimmermann @ 2023-09-13 14:58 UTC (permalink / raw)
To: jani.nikula, joonas.lahtinen, rodrigo.vivi, tvrtko.ursulin,
ville.syrjala, imre.deak, tejas.upadhyay, javierm, airlied,
daniel
Cc: intel-gfx, Thomas Zimmermann, dri-devel
Initialize i915's fbdev client by giving an instance of struct
drm_client_funcs to drm_client_init(). Also clean up with
drm_client_release().
Doing this in i915 prevents fbdev helpers from initializing and
releasing the client internally (see drm_fb_helper_init()). No
functional change yet; the client callbacks will be filled later.
v2:
* call drm_fb_helper_unprepare() in error hndling (Jani)
* fix typo in commit message (Sam)
Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de>
---
drivers/gpu/drm/i915/display/intel_fbdev.c | 43 ++++++++++++++++++++--
1 file changed, 39 insertions(+), 4 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_fbdev.c b/drivers/gpu/drm/i915/display/intel_fbdev.c
index 8d51550e18fd5..d8a165582fd59 100644
--- a/drivers/gpu/drm/i915/display/intel_fbdev.c
+++ b/drivers/gpu/drm/i915/display/intel_fbdev.c
@@ -378,6 +378,7 @@ static void intel_fbdev_destroy(struct intel_fbdev *ifbdev)
if (ifbdev->fb)
drm_framebuffer_remove(&ifbdev->fb->base);
+ drm_client_release(&ifbdev->helper.client);
drm_fb_helper_unprepare(&ifbdev->helper);
kfree(ifbdev);
}
@@ -671,6 +672,30 @@ void intel_fbdev_restore_mode(struct drm_i915_private *dev_priv)
intel_fbdev_invalidate(ifbdev);
}
+/*
+ * Fbdev client and struct drm_client_funcs
+ */
+
+static void intel_fbdev_client_unregister(struct drm_client_dev *client)
+{ }
+
+static int intel_fbdev_client_restore(struct drm_client_dev *client)
+{
+ return 0;
+}
+
+static int intel_fbdev_client_hotplug(struct drm_client_dev *client)
+{
+ return 0;
+}
+
+static const struct drm_client_funcs intel_fbdev_client_funcs = {
+ .owner = THIS_MODULE,
+ .unregister = intel_fbdev_client_unregister,
+ .restore = intel_fbdev_client_restore,
+ .hotplug = intel_fbdev_client_hotplug,
+};
+
int intel_fbdev_init(struct drm_device *dev)
{
struct drm_i915_private *dev_priv = to_i915(dev);
@@ -692,16 +717,26 @@ int intel_fbdev_init(struct drm_device *dev)
else
ifbdev->preferred_bpp = ifbdev->helper.preferred_bpp;
+ ret = drm_client_init(dev, &ifbdev->helper.client, "i915-fbdev",
+ &intel_fbdev_client_funcs);
+ if (ret)
+ goto err_drm_fb_helper_unprepare;
+
ret = drm_fb_helper_init(dev, &ifbdev->helper);
- if (ret) {
- kfree(ifbdev);
- return ret;
- }
+ if (ret)
+ goto err_drm_client_release;
dev_priv->display.fbdev.fbdev = ifbdev;
INIT_WORK(&dev_priv->display.fbdev.suspend_work, intel_fbdev_suspend_worker);
return 0;
+
+err_drm_client_release:
+ drm_client_release(&ifbdev->helper.client);
+err_drm_fb_helper_unprepare:
+ drm_fb_helper_unprepare(&ifbdev->helper);
+ kfree(ifbdev);
+ return ret;
}
static void intel_fbdev_initial_config(void *data, async_cookie_t cookie)
--
2.42.0
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [Intel-gfx] [PATCH v2 3/4] drm/i915: Implement fbdev client callbacks
2023-09-13 14:58 [Intel-gfx] [PATCH v2 0/4] drm/i915: Convert fbdev to DRM client Thomas Zimmermann
2023-09-13 14:58 ` [Intel-gfx] [PATCH v2 1/4] drm/i915: Move fbdev functions Thomas Zimmermann
2023-09-13 14:58 ` [Intel-gfx] [PATCH v2 2/4] drm/i915: Initialize fbdev DRM client with callback functions Thomas Zimmermann
@ 2023-09-13 14:58 ` Thomas Zimmermann
2023-09-13 14:58 ` [Intel-gfx] [PATCH v2 4/4] drm/i915: Implement fbdev emulation as in-kernel client Thomas Zimmermann
` (2 subsequent siblings)
5 siblings, 0 replies; 10+ messages in thread
From: Thomas Zimmermann @ 2023-09-13 14:58 UTC (permalink / raw)
To: jani.nikula, joonas.lahtinen, rodrigo.vivi, tvrtko.ursulin,
ville.syrjala, imre.deak, tejas.upadhyay, javierm, airlied,
daniel
Cc: intel-gfx, Thomas Zimmermann, dri-devel
Move code from ad-hoc fbdev callbacks into DRM client functions
and remove the old callbacks. The functions instruct the client
to poll for changed output or restore the display.
The DRM core calls both, the old callbacks and the new client
helpers, from the same places. The new functions perform the same
operation as before, so there's no change in functionality.
Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de>
---
.../drm/i915/display/intel_display_driver.c | 1 -
drivers/gpu/drm/i915/display/intel_fbdev.c | 11 ++++++++--
drivers/gpu/drm/i915/display/intel_fbdev.h | 9 --------
drivers/gpu/drm/i915/i915_driver.c | 22 -------------------
4 files changed, 9 insertions(+), 34 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_display_driver.c b/drivers/gpu/drm/i915/display/intel_display_driver.c
index 9d9b034b9bdc7..0650c0ed30a0c 100644
--- a/drivers/gpu/drm/i915/display/intel_display_driver.c
+++ b/drivers/gpu/drm/i915/display/intel_display_driver.c
@@ -96,7 +96,6 @@ void intel_display_driver_init_hw(struct drm_i915_private *i915)
static const struct drm_mode_config_funcs intel_mode_funcs = {
.fb_create = intel_user_framebuffer_create,
.get_format_info = intel_fb_get_format_info,
- .output_poll_changed = intel_fbdev_output_poll_changed,
.mode_valid = intel_mode_valid,
.atomic_check = intel_atomic_check,
.atomic_commit = intel_atomic_commit,
diff --git a/drivers/gpu/drm/i915/display/intel_fbdev.c b/drivers/gpu/drm/i915/display/intel_fbdev.c
index d8a165582fd59..31e8275a70fea 100644
--- a/drivers/gpu/drm/i915/display/intel_fbdev.c
+++ b/drivers/gpu/drm/i915/display/intel_fbdev.c
@@ -638,7 +638,7 @@ void intel_fbdev_set_suspend(struct drm_device *dev, int state, bool synchronous
intel_fbdev_hpd_set_suspend(dev_priv, state);
}
-void intel_fbdev_output_poll_changed(struct drm_device *dev)
+static void intel_fbdev_output_poll_changed(struct drm_device *dev)
{
struct intel_fbdev *ifbdev = to_i915(dev)->display.fbdev.fbdev;
bool send_hpd;
@@ -657,7 +657,7 @@ void intel_fbdev_output_poll_changed(struct drm_device *dev)
drm_fb_helper_hotplug_event(&ifbdev->helper);
}
-void intel_fbdev_restore_mode(struct drm_i915_private *dev_priv)
+static void intel_fbdev_restore_mode(struct drm_i915_private *dev_priv)
{
struct intel_fbdev *ifbdev = dev_priv->display.fbdev.fbdev;
@@ -681,11 +681,18 @@ static void intel_fbdev_client_unregister(struct drm_client_dev *client)
static int intel_fbdev_client_restore(struct drm_client_dev *client)
{
+ struct drm_i915_private *dev_priv = to_i915(client->dev);
+
+ intel_fbdev_restore_mode(dev_priv);
+ vga_switcheroo_process_delayed_switch();
+
return 0;
}
static int intel_fbdev_client_hotplug(struct drm_client_dev *client)
{
+ intel_fbdev_output_poll_changed(client->dev);
+
return 0;
}
diff --git a/drivers/gpu/drm/i915/display/intel_fbdev.h b/drivers/gpu/drm/i915/display/intel_fbdev.h
index 04fd523a50232..8c953f102ba22 100644
--- a/drivers/gpu/drm/i915/display/intel_fbdev.h
+++ b/drivers/gpu/drm/i915/display/intel_fbdev.h
@@ -19,8 +19,6 @@ void intel_fbdev_initial_config_async(struct drm_i915_private *dev_priv);
void intel_fbdev_unregister(struct drm_i915_private *dev_priv);
void intel_fbdev_fini(struct drm_i915_private *dev_priv);
void intel_fbdev_set_suspend(struct drm_device *dev, int state, bool synchronous);
-void intel_fbdev_output_poll_changed(struct drm_device *dev);
-void intel_fbdev_restore_mode(struct drm_i915_private *dev_priv);
struct intel_framebuffer *intel_fbdev_framebuffer(struct intel_fbdev *fbdev);
#else
static inline int intel_fbdev_init(struct drm_device *dev)
@@ -44,13 +42,6 @@ static inline void intel_fbdev_set_suspend(struct drm_device *dev, int state, bo
{
}
-static inline void intel_fbdev_output_poll_changed(struct drm_device *dev)
-{
-}
-
-static inline void intel_fbdev_restore_mode(struct drm_i915_private *i915)
-{
-}
static inline struct intel_framebuffer *intel_fbdev_framebuffer(struct intel_fbdev *fbdev)
{
return NULL;
diff --git a/drivers/gpu/drm/i915/i915_driver.c b/drivers/gpu/drm/i915/i915_driver.c
index f8dbee7a5af7f..14aa863dca60c 100644
--- a/drivers/gpu/drm/i915/i915_driver.c
+++ b/drivers/gpu/drm/i915/i915_driver.c
@@ -921,27 +921,6 @@ static int i915_driver_open(struct drm_device *dev, struct drm_file *file)
return 0;
}
-/**
- * i915_driver_lastclose - clean up after all DRM clients have exited
- * @dev: DRM device
- *
- * Take care of cleaning up after all DRM clients have exited. In the
- * mode setting case, we want to restore the kernel's initial mode (just
- * in case the last client left us in a bad state).
- *
- * Additionally, in the non-mode setting case, we'll tear down the GTT
- * and DMA structures, since the kernel won't be using them, and clea
- * up any GEM state.
- */
-static void i915_driver_lastclose(struct drm_device *dev)
-{
- struct drm_i915_private *i915 = to_i915(dev);
-
- intel_fbdev_restore_mode(i915);
-
- vga_switcheroo_process_delayed_switch();
-}
-
static void i915_driver_postclose(struct drm_device *dev, struct drm_file *file)
{
struct drm_i915_file_private *file_priv = file->driver_priv;
@@ -1822,7 +1801,6 @@ static const struct drm_driver i915_drm_driver = {
DRIVER_SYNCOBJ_TIMELINE,
.release = i915_driver_release,
.open = i915_driver_open,
- .lastclose = i915_driver_lastclose,
.postclose = i915_driver_postclose,
.show_fdinfo = PTR_IF(IS_ENABLED(CONFIG_PROC_FS), i915_drm_client_fdinfo),
--
2.42.0
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [Intel-gfx] [PATCH v2 4/4] drm/i915: Implement fbdev emulation as in-kernel client
2023-09-13 14:58 [Intel-gfx] [PATCH v2 0/4] drm/i915: Convert fbdev to DRM client Thomas Zimmermann
` (2 preceding siblings ...)
2023-09-13 14:58 ` [Intel-gfx] [PATCH v2 3/4] drm/i915: Implement fbdev client callbacks Thomas Zimmermann
@ 2023-09-13 14:58 ` Thomas Zimmermann
2023-09-13 22:34 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for drm/i915: Convert fbdev to DRM client (rev2) Patchwork
2023-09-13 22:50 ` [Intel-gfx] ✗ Fi.CI.BAT: failure " Patchwork
5 siblings, 0 replies; 10+ messages in thread
From: Thomas Zimmermann @ 2023-09-13 14:58 UTC (permalink / raw)
To: jani.nikula, joonas.lahtinen, rodrigo.vivi, tvrtko.ursulin,
ville.syrjala, imre.deak, tejas.upadhyay, javierm, airlied,
daniel
Cc: intel-gfx, Thomas Zimmermann, dri-devel
Replace all code that initializes or releases fbdev emulation
throughout the driver. Instead initialize the fbdev client by a
single call to i915_fbdev_setup() after i915 has registered its
DRM device. Just like similar code in other drivers, i915 fbdev
emulation now acts as a regular DRM client.
The fbdev client setup consists of the initial preparation and the
hot-plugging of the display. The latter creates the fbdev device
and sets up the fbdev framebuffer. The setup performs display
hot-plugging once. If no display can be detected, DRM probe helpers
re-run the detection on each hotplug event.
A call to drm_dev_unregister() releases the client automatically.
No further action is required within i915. If the fbdev framebuffer
has been fully set up, struct fb_ops.fb_destroy implements the
release. For partially initialized emulation, the fbdev client
reverts the initial setup.
v2:
* let drm_client_register() handle initial hotplug
* fix driver name in error message (Jani)
* fix non-fbdev build (kernel test robot)
Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de>
---
drivers/gpu/drm/i915/display/intel_display.c | 1 -
.../drm/i915/display/intel_display_driver.c | 18 --
drivers/gpu/drm/i915/display/intel_fbdev.c | 182 ++++++++----------
drivers/gpu/drm/i915/display/intel_fbdev.h | 20 +-
drivers/gpu/drm/i915/i915_driver.c | 2 +
5 files changed, 84 insertions(+), 139 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_display.c b/drivers/gpu/drm/i915/display/intel_display.c
index 83e1bc858b9fb..64578f991f41d 100644
--- a/drivers/gpu/drm/i915/display/intel_display.c
+++ b/drivers/gpu/drm/i915/display/intel_display.c
@@ -81,7 +81,6 @@
#include "intel_dvo.h"
#include "intel_fb.h"
#include "intel_fbc.h"
-#include "intel_fbdev.h"
#include "intel_fdi.h"
#include "intel_fifo_underrun.h"
#include "intel_frontbuffer.h"
diff --git a/drivers/gpu/drm/i915/display/intel_display_driver.c b/drivers/gpu/drm/i915/display/intel_display_driver.c
index 0650c0ed30a0c..7f0d6dbc47cae 100644
--- a/drivers/gpu/drm/i915/display/intel_display_driver.c
+++ b/drivers/gpu/drm/i915/display/intel_display_driver.c
@@ -364,10 +364,6 @@ int intel_display_driver_probe(struct drm_i915_private *i915)
intel_overlay_setup(i915);
- ret = intel_fbdev_init(&i915->drm);
- if (ret)
- return ret;
-
/* Only enable hotplug handling once the fbdev is fully set up. */
intel_hpd_init(i915);
intel_hpd_poll_disable(i915);
@@ -390,16 +386,6 @@ void intel_display_driver_register(struct drm_i915_private *i915)
intel_display_debugfs_register(i915);
- /*
- * Some ports require correctly set-up hpd registers for
- * detection to work properly (leading to ghost connected
- * connector status), e.g. VGA on gm45. Hence we can only set
- * up the initial fbdev config after hpd irqs are fully
- * enabled. We do it last so that the async config cannot run
- * before the connectors are registered.
- */
- intel_fbdev_initial_config_async(i915);
-
/*
* We need to coordinate the hotplugs with the asynchronous
* fbdev configuration, for which we use the
@@ -440,9 +426,6 @@ void intel_display_driver_remove_noirq(struct drm_i915_private *i915)
*/
intel_hpd_poll_fini(i915);
- /* poll work can call into fbdev, hence clean that up afterwards */
- intel_fbdev_fini(i915);
-
intel_unregister_dsm_handler();
/* flush any delayed tasks or pending work */
@@ -479,7 +462,6 @@ void intel_display_driver_unregister(struct drm_i915_private *i915)
if (!HAS_DISPLAY(i915))
return;
- intel_fbdev_unregister(i915);
intel_audio_deinit(i915);
/*
diff --git a/drivers/gpu/drm/i915/display/intel_fbdev.c b/drivers/gpu/drm/i915/display/intel_fbdev.c
index 31e8275a70fea..8a13909d3f0b2 100644
--- a/drivers/gpu/drm/i915/display/intel_fbdev.c
+++ b/drivers/gpu/drm/i915/display/intel_fbdev.c
@@ -24,7 +24,6 @@
* David Airlie
*/
-#include <linux/async.h>
#include <linux/console.h>
#include <linux/delay.h>
#include <linux/errno.h>
@@ -39,6 +38,7 @@
#include <linux/vga_switcheroo.h>
#include <drm/drm_crtc.h>
+#include <drm/drm_crtc_helper.h>
#include <drm/drm_fb_helper.h>
#include <drm/drm_fourcc.h>
#include <drm/drm_gem_framebuffer_helper.h>
@@ -58,7 +58,6 @@ struct intel_fbdev {
struct intel_framebuffer *fb;
struct i915_vma *vma;
unsigned long vma_flags;
- async_cookie_t cookie;
int preferred_bpp;
/* Whether or not fbdev hpd processing is temporarily suspended */
@@ -135,6 +134,26 @@ static int intel_fbdev_mmap(struct fb_info *info, struct vm_area_struct *vma)
return i915_gem_fb_mmap(obj, vma);
}
+static void intel_fbdev_fb_destroy(struct fb_info *info)
+{
+ struct drm_fb_helper *fb_helper = info->par;
+ struct intel_fbdev *ifbdev = container_of(fb_helper, struct intel_fbdev, helper);
+
+ drm_fb_helper_fini(&ifbdev->helper);
+
+ /*
+ * We rely on the object-free to release the VMA pinning for
+ * the info->screen_base mmaping. Leaking the VMA is simpler than
+ * trying to rectify all the possible error paths leading here.
+ */
+ intel_unpin_fb_vma(ifbdev->vma, ifbdev->vma_flags);
+ drm_framebuffer_remove(&ifbdev->fb->base);
+
+ drm_client_release(&fb_helper->client);
+ drm_fb_helper_unprepare(&ifbdev->helper);
+ kfree(ifbdev);
+}
+
static const struct fb_ops intelfb_ops = {
.owner = THIS_MODULE,
__FB_DEFAULT_DEFERRED_OPS_RDWR(intel_fbdev),
@@ -144,6 +163,7 @@ static const struct fb_ops intelfb_ops = {
.fb_pan_display = intel_fbdev_pan_display,
__FB_DEFAULT_DEFERRED_OPS_DRAW(intel_fbdev),
.fb_mmap = intel_fbdev_mmap,
+ .fb_destroy = intel_fbdev_fb_destroy,
};
static int intelfb_alloc(struct drm_fb_helper *helper,
@@ -212,7 +232,6 @@ static int intelfb_create(struct drm_fb_helper *helper,
struct intel_framebuffer *intel_fb = ifbdev->fb;
struct drm_device *dev = helper->dev;
struct drm_i915_private *dev_priv = to_i915(dev);
- struct pci_dev *pdev = to_pci_dev(dev_priv->drm.dev);
struct i915_ggtt *ggtt = to_gt(dev_priv)->ggtt;
const struct i915_gtt_view view = {
.type = I915_GTT_VIEW_NORMAL,
@@ -337,7 +356,7 @@ static int intelfb_create(struct drm_fb_helper *helper,
ifbdev->vma_flags = flags;
intel_runtime_pm_put(&dev_priv->runtime_pm, wakeref);
- vga_switcheroo_client_fb_set(pdev, info);
+
return 0;
out_unpin:
@@ -363,26 +382,6 @@ static const struct drm_fb_helper_funcs intel_fb_helper_funcs = {
.fb_dirty = intelfb_dirty,
};
-static void intel_fbdev_destroy(struct intel_fbdev *ifbdev)
-{
- /* We rely on the object-free to release the VMA pinning for
- * the info->screen_base mmaping. Leaking the VMA is simpler than
- * trying to rectify all the possible error paths leading here.
- */
-
- drm_fb_helper_fini(&ifbdev->helper);
-
- if (ifbdev->vma)
- intel_unpin_fb_vma(ifbdev->vma, ifbdev->vma_flags);
-
- if (ifbdev->fb)
- drm_framebuffer_remove(&ifbdev->fb->base);
-
- drm_client_release(&ifbdev->helper.client);
- drm_fb_helper_unprepare(&ifbdev->helper);
- kfree(ifbdev);
-}
-
/*
* Build an intel_fbdev struct using a BIOS allocated framebuffer, if possible.
* The core display code will have read out the current plane configuration,
@@ -546,16 +545,6 @@ static void intel_fbdev_suspend_worker(struct work_struct *work)
true);
}
-static void intel_fbdev_sync(struct intel_fbdev *ifbdev)
-{
- if (!ifbdev->cookie)
- return;
-
- /* Only serialises with all preceding async calls, hence +1 */
- async_synchronize_cookie(ifbdev->cookie + 1);
- ifbdev->cookie = 0;
-}
-
/* Suspends/resumes fbdev processing of incoming HPD events. When resuming HPD
* processing, fbdev will perform a full connector reprobe if a hotplug event
* was received while HPD was suspended.
@@ -646,8 +635,6 @@ static void intel_fbdev_output_poll_changed(struct drm_device *dev)
if (!ifbdev)
return;
- intel_fbdev_sync(ifbdev);
-
mutex_lock(&ifbdev->hpd_lock);
send_hpd = !ifbdev->hpd_suspended;
ifbdev->hpd_waiting = true;
@@ -664,7 +651,6 @@ static void intel_fbdev_restore_mode(struct drm_i915_private *dev_priv)
if (!ifbdev)
return;
- intel_fbdev_sync(ifbdev);
if (!ifbdev->vma)
return;
@@ -677,7 +663,20 @@ static void intel_fbdev_restore_mode(struct drm_i915_private *dev_priv)
*/
static void intel_fbdev_client_unregister(struct drm_client_dev *client)
-{ }
+{
+ struct drm_fb_helper *fb_helper = drm_fb_helper_from_client(client);
+ struct drm_device *dev = fb_helper->dev;
+ struct pci_dev *pdev = to_pci_dev(dev->dev);
+
+ if (fb_helper->info) {
+ vga_switcheroo_client_fb_set(pdev, NULL);
+ drm_fb_helper_unregister_info(fb_helper);
+ } else {
+ drm_fb_helper_unprepare(fb_helper);
+ drm_client_release(&fb_helper->client);
+ kfree(fb_helper);
+ }
+}
static int intel_fbdev_client_restore(struct drm_client_dev *client)
{
@@ -691,9 +690,36 @@ static int intel_fbdev_client_restore(struct drm_client_dev *client)
static int intel_fbdev_client_hotplug(struct drm_client_dev *client)
{
- intel_fbdev_output_poll_changed(client->dev);
+ struct drm_fb_helper *fb_helper = drm_fb_helper_from_client(client);
+ struct drm_device *dev = client->dev;
+ struct pci_dev *pdev = to_pci_dev(dev->dev);
+ int ret;
+
+ if (dev->fb_helper) {
+ intel_fbdev_output_poll_changed(dev);
+ return 0;
+ }
+
+ ret = drm_fb_helper_init(dev, fb_helper);
+ if (ret)
+ goto err_drm_err;
+
+ if (!drm_drv_uses_atomic_modeset(dev))
+ drm_helper_disable_unused_functions(dev);
+
+ ret = drm_fb_helper_initial_config(fb_helper);
+ if (ret)
+ goto err_drm_fb_helper_fini;
+
+ vga_switcheroo_client_fb_set(pdev, fb_helper->info);
return 0;
+
+err_drm_fb_helper_fini:
+ drm_fb_helper_fini(fb_helper);
+err_drm_err:
+ drm_err(dev, "Failed to setup i915 fbdev emulation (ret=%d)\n", ret);
+ return ret;
}
static const struct drm_client_funcs intel_fbdev_client_funcs = {
@@ -703,22 +729,23 @@ static const struct drm_client_funcs intel_fbdev_client_funcs = {
.hotplug = intel_fbdev_client_hotplug,
};
-int intel_fbdev_init(struct drm_device *dev)
+void intel_fbdev_setup(struct drm_i915_private *dev_priv)
{
- struct drm_i915_private *dev_priv = to_i915(dev);
+ struct drm_device *dev = &dev_priv->drm;
struct intel_fbdev *ifbdev;
int ret;
if (drm_WARN_ON(dev, !HAS_DISPLAY(dev_priv)))
- return -ENODEV;
-
- ifbdev = kzalloc(sizeof(struct intel_fbdev), GFP_KERNEL);
- if (ifbdev == NULL)
- return -ENOMEM;
+ return;
- mutex_init(&ifbdev->hpd_lock);
+ ifbdev = kzalloc(sizeof(*ifbdev), GFP_KERNEL);
+ if (!ifbdev)
+ return;
drm_fb_helper_prepare(dev, &ifbdev->helper, 32, &intel_fb_helper_funcs);
+ dev_priv->display.fbdev.fbdev = ifbdev;
+ INIT_WORK(&dev_priv->display.fbdev.suspend_work, intel_fbdev_suspend_worker);
+ mutex_init(&ifbdev->hpd_lock);
if (intel_fbdev_init_bios(dev, ifbdev))
ifbdev->helper.preferred_bpp = ifbdev->preferred_bpp;
else
@@ -726,68 +753,19 @@ int intel_fbdev_init(struct drm_device *dev)
ret = drm_client_init(dev, &ifbdev->helper.client, "i915-fbdev",
&intel_fbdev_client_funcs);
- if (ret)
+ if (ret) {
+ drm_err(dev, "Failed to register client: %d\n", ret);
goto err_drm_fb_helper_unprepare;
+ }
- ret = drm_fb_helper_init(dev, &ifbdev->helper);
- if (ret)
- goto err_drm_client_release;
-
- dev_priv->display.fbdev.fbdev = ifbdev;
- INIT_WORK(&dev_priv->display.fbdev.suspend_work, intel_fbdev_suspend_worker);
+ drm_client_register(&ifbdev->helper.client);
- return 0;
+ return;
-err_drm_client_release:
- drm_client_release(&ifbdev->helper.client);
err_drm_fb_helper_unprepare:
drm_fb_helper_unprepare(&ifbdev->helper);
+ mutex_destroy(&ifbdev->hpd_lock);
kfree(ifbdev);
- return ret;
-}
-
-static void intel_fbdev_initial_config(void *data, async_cookie_t cookie)
-{
- struct intel_fbdev *ifbdev = data;
-
- /* Due to peculiar init order wrt to hpd handling this is separate. */
- if (drm_fb_helper_initial_config(&ifbdev->helper))
- intel_fbdev_unregister(to_i915(ifbdev->helper.dev));
-}
-
-void intel_fbdev_initial_config_async(struct drm_i915_private *dev_priv)
-{
- struct intel_fbdev *ifbdev = dev_priv->display.fbdev.fbdev;
-
- if (!ifbdev)
- return;
-
- ifbdev->cookie = async_schedule(intel_fbdev_initial_config, ifbdev);
-}
-
-void intel_fbdev_unregister(struct drm_i915_private *dev_priv)
-{
- struct intel_fbdev *ifbdev = dev_priv->display.fbdev.fbdev;
-
- if (!ifbdev)
- return;
-
- intel_fbdev_set_suspend(&dev_priv->drm, FBINFO_STATE_SUSPENDED, true);
-
- if (!current_is_async())
- intel_fbdev_sync(ifbdev);
-
- drm_fb_helper_unregister_info(&ifbdev->helper);
-}
-
-void intel_fbdev_fini(struct drm_i915_private *dev_priv)
-{
- struct intel_fbdev *ifbdev = fetch_and_zero(&dev_priv->display.fbdev.fbdev);
-
- if (!ifbdev)
- return;
-
- intel_fbdev_destroy(ifbdev);
}
struct intel_framebuffer *intel_fbdev_framebuffer(struct intel_fbdev *fbdev)
diff --git a/drivers/gpu/drm/i915/display/intel_fbdev.h b/drivers/gpu/drm/i915/display/intel_fbdev.h
index 8c953f102ba22..08de2d5b34338 100644
--- a/drivers/gpu/drm/i915/display/intel_fbdev.h
+++ b/drivers/gpu/drm/i915/display/intel_fbdev.h
@@ -14,27 +14,11 @@ struct intel_fbdev;
struct intel_framebuffer;
#ifdef CONFIG_DRM_FBDEV_EMULATION
-int intel_fbdev_init(struct drm_device *dev);
-void intel_fbdev_initial_config_async(struct drm_i915_private *dev_priv);
-void intel_fbdev_unregister(struct drm_i915_private *dev_priv);
-void intel_fbdev_fini(struct drm_i915_private *dev_priv);
+void intel_fbdev_setup(struct drm_i915_private *dev_priv);
void intel_fbdev_set_suspend(struct drm_device *dev, int state, bool synchronous);
struct intel_framebuffer *intel_fbdev_framebuffer(struct intel_fbdev *fbdev);
#else
-static inline int intel_fbdev_init(struct drm_device *dev)
-{
- return 0;
-}
-
-static inline void intel_fbdev_initial_config_async(struct drm_i915_private *dev_priv)
-{
-}
-
-static inline void intel_fbdev_unregister(struct drm_i915_private *dev_priv)
-{
-}
-
-static inline void intel_fbdev_fini(struct drm_i915_private *dev_priv)
+static inline void intel_fbdev_setup(struct drm_i915_private *dev_priv)
{
}
diff --git a/drivers/gpu/drm/i915/i915_driver.c b/drivers/gpu/drm/i915/i915_driver.c
index 14aa863dca60c..200ed23a0d6f4 100644
--- a/drivers/gpu/drm/i915/i915_driver.c
+++ b/drivers/gpu/drm/i915/i915_driver.c
@@ -816,6 +816,8 @@ int i915_driver_probe(struct pci_dev *pdev, const struct pci_device_id *ent)
i915->do_release = true;
+ intel_fbdev_setup(i915);
+
return 0;
out_cleanup_gem:
--
2.42.0
^ permalink raw reply related [flat|nested] 10+ messages in thread
* [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for drm/i915: Convert fbdev to DRM client (rev2)
2023-09-13 14:58 [Intel-gfx] [PATCH v2 0/4] drm/i915: Convert fbdev to DRM client Thomas Zimmermann
` (3 preceding siblings ...)
2023-09-13 14:58 ` [Intel-gfx] [PATCH v2 4/4] drm/i915: Implement fbdev emulation as in-kernel client Thomas Zimmermann
@ 2023-09-13 22:34 ` Patchwork
2023-09-13 22:50 ` [Intel-gfx] ✗ Fi.CI.BAT: failure " Patchwork
5 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2023-09-13 22:34 UTC (permalink / raw)
To: Thomas Zimmermann; +Cc: intel-gfx
== Series Details ==
Series: drm/i915: Convert fbdev to DRM client (rev2)
URL : https://patchwork.freedesktop.org/series/115714/
State : warning
== Summary ==
Error: dim checkpatch failed
e92810deb3f2 drm/i915: Move fbdev functions
-:119: CHECK:ALLOC_SIZEOF_STRUCT: Prefer kzalloc(sizeof(*ifbdev)...) over kzalloc(sizeof(struct intel_fbdev)...)
#119: FILE: drivers/gpu/drm/i915/display/intel_fbdev.c:683:
+ ifbdev = kzalloc(sizeof(struct intel_fbdev), GFP_KERNEL);
-:120: CHECK:COMPARISON_TO_NULL: Comparison to NULL could be written "!ifbdev"
#120: FILE: drivers/gpu/drm/i915/display/intel_fbdev.c:684:
+ if (ifbdev == NULL)
total: 0 errors, 0 warnings, 2 checks, 172 lines checked
ee453b41ffc0 drm/i915: Initialize fbdev DRM client with callback functions
6c308c8ce62b drm/i915: Implement fbdev client callbacks
e8823e5a5cd3 drm/i915: Implement fbdev emulation as in-kernel client
^ permalink raw reply [flat|nested] 10+ messages in thread
* [Intel-gfx] ✗ Fi.CI.BAT: failure for drm/i915: Convert fbdev to DRM client (rev2)
2023-09-13 14:58 [Intel-gfx] [PATCH v2 0/4] drm/i915: Convert fbdev to DRM client Thomas Zimmermann
` (4 preceding siblings ...)
2023-09-13 22:34 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for drm/i915: Convert fbdev to DRM client (rev2) Patchwork
@ 2023-09-13 22:50 ` Patchwork
2023-09-21 14:24 ` Jani Nikula
5 siblings, 1 reply; 10+ messages in thread
From: Patchwork @ 2023-09-13 22:50 UTC (permalink / raw)
To: Thomas Zimmermann; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 35533 bytes --]
== Series Details ==
Series: drm/i915: Convert fbdev to DRM client (rev2)
URL : https://patchwork.freedesktop.org/series/115714/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_13627 -> Patchwork_115714v2
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with Patchwork_115714v2 absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in Patchwork_115714v2, please notify your bug team (lgci.bug.filing@intel.com) to allow them
to document this new failure mode, which will reduce false positives in CI.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/index.html
Participating hosts (42 -> 40)
------------------------------
Missing (2): fi-kbl-soraka fi-snb-2520m
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in Patchwork_115714v2:
### IGT changes ###
#### Possible regressions ####
* igt@gem_lmem_swapping@basic:
- bat-dg1-5: NOTRUN -> [FAIL][1] +3 other tests fail
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-dg1-5/igt@gem_lmem_swapping@basic.html
- bat-dg2-11: NOTRUN -> [FAIL][2] +5 other tests fail
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-dg2-11/igt@gem_lmem_swapping@basic.html
* igt@i915_module_load@load:
- bat-atsm-1: [PASS][3] -> [INCOMPLETE][4]
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/bat-atsm-1/igt@i915_module_load@load.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-atsm-1/igt@i915_module_load@load.html
* igt@i915_module_load@reload:
- bat-mtlp-6: NOTRUN -> [WARN][5]
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-mtlp-6/igt@i915_module_load@reload.html
- fi-skl-6600u: [PASS][6] -> [WARN][7]
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-skl-6600u/igt@i915_module_load@reload.html
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-skl-6600u/igt@i915_module_load@reload.html
- fi-apl-guc: [PASS][8] -> [WARN][9]
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-apl-guc/igt@i915_module_load@reload.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-apl-guc/igt@i915_module_load@reload.html
- bat-dg1-5: [PASS][10] -> [WARN][11]
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/bat-dg1-5/igt@i915_module_load@reload.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-dg1-5/igt@i915_module_load@reload.html
- fi-pnv-d510: [PASS][12] -> [WARN][13]
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-pnv-d510/igt@i915_module_load@reload.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-pnv-d510/igt@i915_module_load@reload.html
- fi-glk-j4005: [PASS][14] -> [WARN][15]
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-glk-j4005/igt@i915_module_load@reload.html
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-glk-j4005/igt@i915_module_load@reload.html
- bat-adlp-9: [PASS][16] -> [WARN][17]
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/bat-adlp-9/igt@i915_module_load@reload.html
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-adlp-9/igt@i915_module_load@reload.html
- fi-skl-guc: [PASS][18] -> [WARN][19]
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-skl-guc/igt@i915_module_load@reload.html
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-skl-guc/igt@i915_module_load@reload.html
- bat-dg2-11: [PASS][20] -> [WARN][21]
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/bat-dg2-11/igt@i915_module_load@reload.html
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-dg2-11/igt@i915_module_load@reload.html
- fi-cfl-8700k: [PASS][22] -> [WARN][23]
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-cfl-8700k/igt@i915_module_load@reload.html
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-cfl-8700k/igt@i915_module_load@reload.html
- fi-bsw-nick: [PASS][24] -> [WARN][25]
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-bsw-nick/igt@i915_module_load@reload.html
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-bsw-nick/igt@i915_module_load@reload.html
- bat-kbl-2: [PASS][26] -> [WARN][27]
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/bat-kbl-2/igt@i915_module_load@reload.html
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-kbl-2/igt@i915_module_load@reload.html
- fi-rkl-11600: [PASS][28] -> [WARN][29]
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-rkl-11600/igt@i915_module_load@reload.html
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-rkl-11600/igt@i915_module_load@reload.html
- bat-adls-5: [PASS][30] -> [WARN][31]
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/bat-adls-5/igt@i915_module_load@reload.html
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-adls-5/igt@i915_module_load@reload.html
- fi-cfl-guc: [PASS][32] -> [WARN][33]
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-cfl-guc/igt@i915_module_load@reload.html
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-cfl-guc/igt@i915_module_load@reload.html
- bat-jsl-3: [PASS][34] -> [WARN][35]
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/bat-jsl-3/igt@i915_module_load@reload.html
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-jsl-3/igt@i915_module_load@reload.html
- fi-kbl-x1275: [PASS][36] -> [WARN][37]
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-kbl-x1275/igt@i915_module_load@reload.html
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-kbl-x1275/igt@i915_module_load@reload.html
- fi-cfl-8109u: [PASS][38] -> [WARN][39]
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-cfl-8109u/igt@i915_module_load@reload.html
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-cfl-8109u/igt@i915_module_load@reload.html
- fi-kbl-8809g: [PASS][40] -> [WARN][41]
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-kbl-8809g/igt@i915_module_load@reload.html
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-kbl-8809g/igt@i915_module_load@reload.html
- fi-ivb-3770: [PASS][42] -> [WARN][43]
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-ivb-3770/igt@i915_module_load@reload.html
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-ivb-3770/igt@i915_module_load@reload.html
- bat-mtlp-8: [PASS][44] -> [WARN][45]
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/bat-mtlp-8/igt@i915_module_load@reload.html
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-mtlp-8/igt@i915_module_load@reload.html
- fi-elk-e7500: [PASS][46] -> [WARN][47]
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-elk-e7500/igt@i915_module_load@reload.html
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-elk-e7500/igt@i915_module_load@reload.html
- fi-kbl-guc: [PASS][48] -> [WARN][49]
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-kbl-guc/igt@i915_module_load@reload.html
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-kbl-guc/igt@i915_module_load@reload.html
- bat-adlm-1: [PASS][50] -> [WARN][51]
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/bat-adlm-1/igt@i915_module_load@reload.html
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-adlm-1/igt@i915_module_load@reload.html
- fi-ilk-650: [PASS][52] -> [WARN][53]
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-ilk-650/igt@i915_module_load@reload.html
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-ilk-650/igt@i915_module_load@reload.html
- bat-jsl-1: [PASS][54] -> [WARN][55]
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/bat-jsl-1/igt@i915_module_load@reload.html
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-jsl-1/igt@i915_module_load@reload.html
- fi-tgl-1115g4: [PASS][56] -> [WARN][57]
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-tgl-1115g4/igt@i915_module_load@reload.html
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-tgl-1115g4/igt@i915_module_load@reload.html
- fi-blb-e6850: [PASS][58] -> [WARN][59]
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-blb-e6850/igt@i915_module_load@reload.html
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-blb-e6850/igt@i915_module_load@reload.html
- fi-bsw-n3050: [PASS][60] -> [WARN][61]
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-bsw-n3050/igt@i915_module_load@reload.html
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-bsw-n3050/igt@i915_module_load@reload.html
- bat-rpls-1: [PASS][62] -> [WARN][63]
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/bat-rpls-1/igt@i915_module_load@reload.html
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-rpls-1/igt@i915_module_load@reload.html
* igt@i915_pm_rpm@module-reload:
- fi-bsw-nick: [PASS][64] -> [FAIL][65] +2 other tests fail
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-bsw-nick/igt@i915_pm_rpm@module-reload.html
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-bsw-nick/igt@i915_pm_rpm@module-reload.html
- bat-kbl-2: [PASS][66] -> [FAIL][67] +2 other tests fail
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/bat-kbl-2/igt@i915_pm_rpm@module-reload.html
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-kbl-2/igt@i915_pm_rpm@module-reload.html
- bat-dg2-11: [PASS][68] -> [FAIL][69]
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/bat-dg2-11/igt@i915_pm_rpm@module-reload.html
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-dg2-11/igt@i915_pm_rpm@module-reload.html
- fi-kbl-x1275: [PASS][70] -> [FAIL][71] +1 other test fail
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-kbl-x1275/igt@i915_pm_rpm@module-reload.html
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-kbl-x1275/igt@i915_pm_rpm@module-reload.html
- bat-mtlp-8: [PASS][72] -> [FAIL][73]
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/bat-mtlp-8/igt@i915_pm_rpm@module-reload.html
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-mtlp-8/igt@i915_pm_rpm@module-reload.html
- fi-kbl-guc: [PASS][74] -> [FAIL][75] +2 other tests fail
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-kbl-guc/igt@i915_pm_rpm@module-reload.html
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-kbl-guc/igt@i915_pm_rpm@module-reload.html
- bat-jsl-1: [PASS][76] -> [FAIL][77] +1 other test fail
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/bat-jsl-1/igt@i915_pm_rpm@module-reload.html
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-jsl-1/igt@i915_pm_rpm@module-reload.html
- fi-bsw-n3050: [PASS][78] -> [FAIL][79] +2 other tests fail
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-bsw-n3050/igt@i915_pm_rpm@module-reload.html
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-bsw-n3050/igt@i915_pm_rpm@module-reload.html
- bat-rpls-1: [PASS][80] -> [FAIL][81] +1 other test fail
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/bat-rpls-1/igt@i915_pm_rpm@module-reload.html
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-rpls-1/igt@i915_pm_rpm@module-reload.html
* igt@i915_selftest@live:
- bat-mtlp-8: NOTRUN -> [SKIP][82]
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-mtlp-8/igt@i915_selftest@live.html
- bat-adlm-1: NOTRUN -> [SKIP][83]
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-adlm-1/igt@i915_selftest@live.html
- bat-jsl-1: NOTRUN -> [SKIP][84]
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-jsl-1/igt@i915_selftest@live.html
- bat-rpls-1: NOTRUN -> [SKIP][85]
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-rpls-1/igt@i915_selftest@live.html
- bat-mtlp-6: NOTRUN -> [SKIP][86]
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-mtlp-6/igt@i915_selftest@live.html
- bat-dg1-5: NOTRUN -> [SKIP][87]
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-dg1-5/igt@i915_selftest@live.html
- bat-adlp-9: NOTRUN -> [SKIP][88]
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-adlp-9/igt@i915_selftest@live.html
- bat-dg2-11: NOTRUN -> [SKIP][89]
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-dg2-11/igt@i915_selftest@live.html
- fi-rkl-11600: NOTRUN -> [SKIP][90]
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-rkl-11600/igt@i915_selftest@live.html
- bat-adls-5: NOTRUN -> [SKIP][91]
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-adls-5/igt@i915_selftest@live.html
- bat-jsl-3: NOTRUN -> [SKIP][92]
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-jsl-3/igt@i915_selftest@live.html
* igt@i915_suspend@basic-s2idle-without-i915:
- fi-cfl-8109u: [PASS][93] -> [FAIL][94] +2 other tests fail
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-cfl-8109u/igt@i915_suspend@basic-s2idle-without-i915.html
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-cfl-8109u/igt@i915_suspend@basic-s2idle-without-i915.html
- fi-cfl-8700k: [PASS][95] -> [FAIL][96] +2 other tests fail
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-cfl-8700k/igt@i915_suspend@basic-s2idle-without-i915.html
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-cfl-8700k/igt@i915_suspend@basic-s2idle-without-i915.html
- fi-kbl-8809g: [PASS][97] -> [FAIL][98] +2 other tests fail
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-kbl-8809g/igt@i915_suspend@basic-s2idle-without-i915.html
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-kbl-8809g/igt@i915_suspend@basic-s2idle-without-i915.html
- fi-elk-e7500: [PASS][99] -> [FAIL][100] +1 other test fail
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-elk-e7500/igt@i915_suspend@basic-s2idle-without-i915.html
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-elk-e7500/igt@i915_suspend@basic-s2idle-without-i915.html
- bat-adlm-1: [PASS][101] -> [FAIL][102] +2 other tests fail
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/bat-adlm-1/igt@i915_suspend@basic-s2idle-without-i915.html
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-adlm-1/igt@i915_suspend@basic-s2idle-without-i915.html
- fi-tgl-1115g4: [PASS][103] -> [FAIL][104] +1 other test fail
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-tgl-1115g4/igt@i915_suspend@basic-s2idle-without-i915.html
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-tgl-1115g4/igt@i915_suspend@basic-s2idle-without-i915.html
- fi-cfl-guc: [PASS][105] -> [FAIL][106] +2 other tests fail
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-cfl-guc/igt@i915_suspend@basic-s2idle-without-i915.html
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-cfl-guc/igt@i915_suspend@basic-s2idle-without-i915.html
- fi-ilk-650: [PASS][107] -> [FAIL][108] +1 other test fail
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-ilk-650/igt@i915_suspend@basic-s2idle-without-i915.html
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-ilk-650/igt@i915_suspend@basic-s2idle-without-i915.html
- fi-blb-e6850: [PASS][109] -> [FAIL][110] +1 other test fail
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-blb-e6850/igt@i915_suspend@basic-s2idle-without-i915.html
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-blb-e6850/igt@i915_suspend@basic-s2idle-without-i915.html
* igt@i915_suspend@basic-s3-without-i915:
- fi-rkl-11600: [PASS][111] -> [FAIL][112] +2 other tests fail
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-rkl-11600/igt@i915_suspend@basic-s3-without-i915.html
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-rkl-11600/igt@i915_suspend@basic-s3-without-i915.html
- fi-skl-6600u: [PASS][113] -> [FAIL][114] +2 other tests fail
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-skl-6600u/igt@i915_suspend@basic-s3-without-i915.html
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-skl-6600u/igt@i915_suspend@basic-s3-without-i915.html
- bat-adls-5: [PASS][115] -> [FAIL][116] +2 other tests fail
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/bat-adls-5/igt@i915_suspend@basic-s3-without-i915.html
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-adls-5/igt@i915_suspend@basic-s3-without-i915.html
- fi-apl-guc: [PASS][117] -> [FAIL][118] +2 other tests fail
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-apl-guc/igt@i915_suspend@basic-s3-without-i915.html
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-apl-guc/igt@i915_suspend@basic-s3-without-i915.html
- bat-dg1-5: [PASS][119] -> [FAIL][120] +2 other tests fail
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/bat-dg1-5/igt@i915_suspend@basic-s3-without-i915.html
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-dg1-5/igt@i915_suspend@basic-s3-without-i915.html
- fi-pnv-d510: [PASS][121] -> [FAIL][122] +1 other test fail
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-pnv-d510/igt@i915_suspend@basic-s3-without-i915.html
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-pnv-d510/igt@i915_suspend@basic-s3-without-i915.html
- bat-jsl-3: [PASS][123] -> [FAIL][124] +2 other tests fail
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/bat-jsl-3/igt@i915_suspend@basic-s3-without-i915.html
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-jsl-3/igt@i915_suspend@basic-s3-without-i915.html
- fi-glk-j4005: [PASS][125] -> [FAIL][126] +2 other tests fail
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-glk-j4005/igt@i915_suspend@basic-s3-without-i915.html
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-glk-j4005/igt@i915_suspend@basic-s3-without-i915.html
- bat-adlp-9: [PASS][127] -> [FAIL][128] +2 other tests fail
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/bat-adlp-9/igt@i915_suspend@basic-s3-without-i915.html
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-adlp-9/igt@i915_suspend@basic-s3-without-i915.html
- fi-skl-guc: [PASS][129] -> [FAIL][130] +2 other tests fail
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-skl-guc/igt@i915_suspend@basic-s3-without-i915.html
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-skl-guc/igt@i915_suspend@basic-s3-without-i915.html
- bat-mtlp-6: NOTRUN -> [FAIL][131] +1 other test fail
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-mtlp-6/igt@i915_suspend@basic-s3-without-i915.html
#### Warnings ####
* igt@i915_suspend@basic-s2idle-without-i915:
- fi-ivb-3770: [DMESG-WARN][132] ([i915#8841]) -> [FAIL][133] +1 other test fail
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-ivb-3770/igt@i915_suspend@basic-s2idle-without-i915.html
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-ivb-3770/igt@i915_suspend@basic-s2idle-without-i915.html
* igt@i915_suspend@basic-s3-without-i915:
- fi-tgl-1115g4: [INCOMPLETE][134] ([i915#7443] / [i915#8102]) -> [FAIL][135]
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-tgl-1115g4/igt@i915_suspend@basic-s3-without-i915.html
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-tgl-1115g4/igt@i915_suspend@basic-s3-without-i915.html
- fi-kbl-x1275: [SKIP][136] ([fdo#109271]) -> [FAIL][137]
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-kbl-x1275/igt@i915_suspend@basic-s3-without-i915.html
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-kbl-x1275/igt@i915_suspend@basic-s3-without-i915.html
- bat-mtlp-8: [SKIP][138] ([i915#6645]) -> [FAIL][139]
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/bat-mtlp-8/igt@i915_suspend@basic-s3-without-i915.html
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-mtlp-8/igt@i915_suspend@basic-s3-without-i915.html
- bat-jsl-1: [FAIL][140] ([fdo#103375]) -> [FAIL][141]
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/bat-jsl-1/igt@i915_suspend@basic-s3-without-i915.html
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-jsl-1/igt@i915_suspend@basic-s3-without-i915.html
- bat-rpls-1: [ABORT][142] ([i915#7978] / [i915#8668]) -> [FAIL][143]
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/bat-rpls-1/igt@i915_suspend@basic-s3-without-i915.html
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-rpls-1/igt@i915_suspend@basic-s3-without-i915.html
Known issues
------------
Here are the changes found in Patchwork_115714v2 that come from known issues:
### CI changes ###
#### Issues hit ####
* boot:
- fi-hsw-4770: [PASS][144] -> [FAIL][145] ([i915#8293])
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-hsw-4770/boot.html
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-hsw-4770/boot.html
### IGT changes ###
#### Issues hit ####
* igt@gem_exec_suspend@basic-s3@smem:
- bat-rpls-1: NOTRUN -> [ABORT][146] ([i915#7978] / [i915#8668])
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-rpls-1/igt@gem_exec_suspend@basic-s3@smem.html
* igt@gem_lmem_swapping@verify-random:
- bat-mtlp-6: NOTRUN -> [SKIP][147] ([i915#4613]) +3 other tests skip
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-mtlp-6/igt@gem_lmem_swapping@verify-random.html
* igt@gem_mmap@basic:
- bat-mtlp-6: NOTRUN -> [SKIP][148] ([i915#4083])
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-mtlp-6/igt@gem_mmap@basic.html
* igt@gem_tiled_blits@basic:
- bat-mtlp-6: NOTRUN -> [SKIP][149] ([i915#4077]) +2 other tests skip
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-mtlp-6/igt@gem_tiled_blits@basic.html
* igt@gem_tiled_pread_basic:
- bat-mtlp-6: NOTRUN -> [SKIP][150] ([i915#4079]) +1 other test skip
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-mtlp-6/igt@gem_tiled_pread_basic.html
* igt@i915_pm_rps@basic-api:
- bat-mtlp-6: NOTRUN -> [SKIP][151] ([i915#6621])
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-mtlp-6/igt@i915_pm_rps@basic-api.html
* igt@i915_selftest@live:
- fi-kbl-x1275: NOTRUN -> [SKIP][152] ([fdo#109271])
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-kbl-x1275/igt@i915_selftest@live.html
- fi-cfl-8109u: NOTRUN -> [SKIP][153] ([fdo#109271])
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-cfl-8109u/igt@i915_selftest@live.html
- fi-kbl-8809g: NOTRUN -> [SKIP][154] ([fdo#109271])
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-kbl-8809g/igt@i915_selftest@live.html
- fi-ivb-3770: NOTRUN -> [SKIP][155] ([fdo#109271])
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-ivb-3770/igt@i915_selftest@live.html
- fi-elk-e7500: NOTRUN -> [SKIP][156] ([fdo#109271])
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-elk-e7500/igt@i915_selftest@live.html
- fi-kbl-guc: NOTRUN -> [SKIP][157] ([fdo#109271])
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-kbl-guc/igt@i915_selftest@live.html
- fi-ilk-650: NOTRUN -> [SKIP][158] ([fdo#109271])
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-ilk-650/igt@i915_selftest@live.html
- fi-tgl-1115g4: NOTRUN -> [SKIP][159] ([i915#1245])
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-tgl-1115g4/igt@i915_selftest@live.html
- fi-blb-e6850: NOTRUN -> [SKIP][160] ([fdo#109271])
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-blb-e6850/igt@i915_selftest@live.html
- fi-bsw-n3050: NOTRUN -> [SKIP][161] ([fdo#109271])
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-bsw-n3050/igt@i915_selftest@live.html
- fi-skl-6600u: NOTRUN -> [SKIP][162] ([fdo#109271])
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-skl-6600u/igt@i915_selftest@live.html
- fi-apl-guc: NOTRUN -> [SKIP][163] ([fdo#109271])
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-apl-guc/igt@i915_selftest@live.html
- fi-pnv-d510: NOTRUN -> [SKIP][164] ([fdo#109271])
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-pnv-d510/igt@i915_selftest@live.html
- fi-glk-j4005: NOTRUN -> [SKIP][165] ([fdo#109271])
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-glk-j4005/igt@i915_selftest@live.html
- fi-skl-guc: NOTRUN -> [SKIP][166] ([fdo#109271])
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-skl-guc/igt@i915_selftest@live.html
- fi-cfl-8700k: NOTRUN -> [SKIP][167] ([fdo#109271])
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-cfl-8700k/igt@i915_selftest@live.html
- fi-bsw-nick: NOTRUN -> [SKIP][168] ([fdo#109271])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-bsw-nick/igt@i915_selftest@live.html
- bat-kbl-2: NOTRUN -> [SKIP][169] ([fdo#109271])
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-kbl-2/igt@i915_selftest@live.html
- fi-cfl-guc: NOTRUN -> [SKIP][170] ([fdo#109271])
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-cfl-guc/igt@i915_selftest@live.html
* igt@i915_suspend@basic-s2idle-without-i915:
- bat-mtlp-6: NOTRUN -> [FAIL][171] ([i915#9092])
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-mtlp-6/igt@i915_suspend@basic-s2idle-without-i915.html
- bat-mtlp-8: [PASS][172] -> [FAIL][173] ([i915#9092])
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/bat-mtlp-8/igt@i915_suspend@basic-s2idle-without-i915.html
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-mtlp-8/igt@i915_suspend@basic-s2idle-without-i915.html
* igt@kms_addfb_basic@addfb25-x-tiled-legacy:
- bat-mtlp-6: NOTRUN -> [SKIP][174] ([i915#4212]) +8 other tests skip
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-mtlp-6/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- bat-mtlp-6: NOTRUN -> [SKIP][175] ([i915#5190])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-mtlp-6/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_cursor_legacy@basic-flip-after-cursor-legacy:
- bat-mtlp-6: NOTRUN -> [SKIP][176] ([i915#1845]) +12 other tests skip
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-mtlp-6/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html
* igt@kms_flip@basic-flip-vs-dpms:
- bat-mtlp-6: NOTRUN -> [SKIP][177] ([i915#3637]) +3 other tests skip
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-mtlp-6/igt@kms_flip@basic-flip-vs-dpms.html
* igt@kms_force_connector_basic@force-load-detect:
- bat-mtlp-6: NOTRUN -> [SKIP][178] ([fdo#109285])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-mtlp-6/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_force_connector_basic@prune-stale-modes:
- bat-mtlp-6: NOTRUN -> [SKIP][179] ([i915#5274])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-mtlp-6/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_frontbuffer_tracking@basic:
- bat-mtlp-6: NOTRUN -> [SKIP][180] ([i915#4342])
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-mtlp-6/igt@kms_frontbuffer_tracking@basic.html
* igt@kms_pipe_crc_basic@suspend-read-crc:
- bat-mtlp-6: NOTRUN -> [SKIP][181] ([i915#1845] / [i915#4078]) +4 other tests skip
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-mtlp-6/igt@kms_pipe_crc_basic@suspend-read-crc.html
* igt@kms_psr@cursor_plane_move:
- bat-mtlp-6: NOTRUN -> [SKIP][182] ([i915#1072]) +3 other tests skip
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-mtlp-6/igt@kms_psr@cursor_plane_move.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-mtlp-6: NOTRUN -> [SKIP][183] ([i915#3555] / [i915#8809])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-mtlp-6/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-fence-flip:
- bat-mtlp-6: NOTRUN -> [SKIP][184] ([i915#1845] / [i915#3708])
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-mtlp-6/igt@prime_vgem@basic-fence-flip.html
* igt@prime_vgem@basic-fence-mmap:
- bat-mtlp-6: NOTRUN -> [SKIP][185] ([i915#3708] / [i915#4077]) +1 other test skip
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-mtlp-6/igt@prime_vgem@basic-fence-mmap.html
* igt@prime_vgem@basic-write:
- bat-mtlp-6: NOTRUN -> [SKIP][186] ([i915#3708]) +2 other tests skip
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-mtlp-6/igt@prime_vgem@basic-write.html
#### Possible fixes ####
* igt@gem_exec_parallel@engines@fds:
- bat-mtlp-6: [ABORT][187] ([i915#9262]) -> [PASS][188]
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/bat-mtlp-6/igt@gem_exec_parallel@engines@fds.html
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-mtlp-6/igt@gem_exec_parallel@engines@fds.html
* igt@gem_exec_suspend@basic-s0@smem:
- bat-jsl-1: [INCOMPLETE][189] ([i915#9275]) -> [PASS][190]
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/bat-jsl-1/igt@gem_exec_suspend@basic-s0@smem.html
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-jsl-1/igt@gem_exec_suspend@basic-s0@smem.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
[i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
[i915#1245]: https://gitlab.freedesktop.org/drm/intel/issues/1245
[i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845
[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#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
[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#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212
[i915#4342]: https://gitlab.freedesktop.org/drm/intel/issues/4342
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190
[i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274
[i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
[i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
[i915#6645]: https://gitlab.freedesktop.org/drm/intel/issues/6645
[i915#7443]: https://gitlab.freedesktop.org/drm/intel/issues/7443
[i915#7978]: https://gitlab.freedesktop.org/drm/intel/issues/7978
[i915#8102]: https://gitlab.freedesktop.org/drm/intel/issues/8102
[i915#8293]: https://gitlab.freedesktop.org/drm/intel/issues/8293
[i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668
[i915#8809]: https://gitlab.freedesktop.org/drm/intel/issues/8809
[i915#8841]: https://gitlab.freedesktop.org/drm/intel/issues/8841
[i915#9092]: https://gitlab.freedesktop.org/drm/intel/issues/9092
[i915#9262]: https://gitlab.freedesktop.org/drm/intel/issues/9262
[i915#9273]: https://gitlab.freedesktop.org/drm/intel/issues/9273
[i915#9275]: https://gitlab.freedesktop.org/drm/intel/issues/9275
[i915#9279]: https://gitlab.freedesktop.org/drm/intel/issues/9279
Build changes
-------------
* Linux: CI_DRM_13627 -> Patchwork_115714v2
CI-20190529: 20190529
CI_DRM_13627: 45460a37f9be43072b509ca6044b215648f56221 @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_7486: afd9a940c8247291baadd1977fe881d4f2edf0c7 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
Patchwork_115714v2: 45460a37f9be43072b509ca6044b215648f56221 @ git://anongit.freedesktop.org/gfx-ci/linux
### Linux commits
a2a5b292def1 drm/i915: Implement fbdev emulation as in-kernel client
51bcff966a8f drm/i915: Implement fbdev client callbacks
141d36f2ce60 drm/i915: Initialize fbdev DRM client with callback functions
643d1d4e09f9 drm/i915: Move fbdev functions
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/index.html
[-- Attachment #2: Type: text/html, Size: 39521 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [Intel-gfx] ✗ Fi.CI.BAT: failure for drm/i915: Convert fbdev to DRM client (rev2)
2023-09-13 22:50 ` [Intel-gfx] ✗ Fi.CI.BAT: failure " Patchwork
@ 2023-09-21 14:24 ` Jani Nikula
2023-09-21 15:12 ` Thomas Zimmermann
2023-09-22 15:29 ` Thomas Zimmermann
0 siblings, 2 replies; 10+ messages in thread
From: Jani Nikula @ 2023-09-21 14:24 UTC (permalink / raw)
To: Patchwork, Thomas Zimmermann; +Cc: intel-gfx
On Wed, 13 Sep 2023, Patchwork <patchwork@emeril.freedesktop.org> wrote:
> == Series Details ==
>
> Series: drm/i915: Convert fbdev to DRM client (rev2)
> URL : https://patchwork.freedesktop.org/series/115714/
> State : failure
>
> == Summary ==
>
> CI Bug Log - changes from CI_DRM_13627 -> Patchwork_115714v2
> ====================================================
>
> Summary
> -------
>
> **FAILURE**
>
> Serious unknown changes coming with Patchwork_115714v2 absolutely need to be
> verified manually.
>
> If you think the reported changes have nothing to do with the changes
> introduced in Patchwork_115714v2, please notify your bug team (lgci.bug.filing@intel.com) to allow them
> to document this new failure mode, which will reduce false positives in CI.
>
> External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/index.html
>
> Participating hosts (42 -> 40)
> ------------------------------
>
> Missing (2): fi-kbl-soraka fi-snb-2520m
>
> Possible new issues
> -------------------
>
> Here are the unknown changes that may have been introduced in Patchwork_115714v2:
>
> ### IGT changes ###
>
> #### Possible regressions ####
>
> * igt@gem_lmem_swapping@basic:
> - bat-dg1-5: NOTRUN -> [FAIL][1] +3 other tests fail
> [1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-dg1-5/igt@gem_lmem_swapping@basic.html
> - bat-dg2-11: NOTRUN -> [FAIL][2] +5 other tests fail
> [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-dg2-11/igt@gem_lmem_swapping@basic.html
>
I haven't had time to look into it, but looks like this blocks module
unload across the board.
BR,
Jani.
> * igt@i915_module_load@load:
> - bat-atsm-1: [PASS][3] -> [INCOMPLETE][4]
> [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/bat-atsm-1/igt@i915_module_load@load.html
> [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-atsm-1/igt@i915_module_load@load.html
>
> * igt@i915_module_load@reload:
> - bat-mtlp-6: NOTRUN -> [WARN][5]
> [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-mtlp-6/igt@i915_module_load@reload.html
> - fi-skl-6600u: [PASS][6] -> [WARN][7]
> [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-skl-6600u/igt@i915_module_load@reload.html
> [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-skl-6600u/igt@i915_module_load@reload.html
> - fi-apl-guc: [PASS][8] -> [WARN][9]
> [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-apl-guc/igt@i915_module_load@reload.html
> [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-apl-guc/igt@i915_module_load@reload.html
> - bat-dg1-5: [PASS][10] -> [WARN][11]
> [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/bat-dg1-5/igt@i915_module_load@reload.html
> [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-dg1-5/igt@i915_module_load@reload.html
> - fi-pnv-d510: [PASS][12] -> [WARN][13]
> [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-pnv-d510/igt@i915_module_load@reload.html
> [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-pnv-d510/igt@i915_module_load@reload.html
> - fi-glk-j4005: [PASS][14] -> [WARN][15]
> [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-glk-j4005/igt@i915_module_load@reload.html
> [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-glk-j4005/igt@i915_module_load@reload.html
> - bat-adlp-9: [PASS][16] -> [WARN][17]
> [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/bat-adlp-9/igt@i915_module_load@reload.html
> [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-adlp-9/igt@i915_module_load@reload.html
> - fi-skl-guc: [PASS][18] -> [WARN][19]
> [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-skl-guc/igt@i915_module_load@reload.html
> [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-skl-guc/igt@i915_module_load@reload.html
> - bat-dg2-11: [PASS][20] -> [WARN][21]
> [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/bat-dg2-11/igt@i915_module_load@reload.html
> [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-dg2-11/igt@i915_module_load@reload.html
> - fi-cfl-8700k: [PASS][22] -> [WARN][23]
> [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-cfl-8700k/igt@i915_module_load@reload.html
> [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-cfl-8700k/igt@i915_module_load@reload.html
> - fi-bsw-nick: [PASS][24] -> [WARN][25]
> [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-bsw-nick/igt@i915_module_load@reload.html
> [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-bsw-nick/igt@i915_module_load@reload.html
> - bat-kbl-2: [PASS][26] -> [WARN][27]
> [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/bat-kbl-2/igt@i915_module_load@reload.html
> [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-kbl-2/igt@i915_module_load@reload.html
> - fi-rkl-11600: [PASS][28] -> [WARN][29]
> [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-rkl-11600/igt@i915_module_load@reload.html
> [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-rkl-11600/igt@i915_module_load@reload.html
> - bat-adls-5: [PASS][30] -> [WARN][31]
> [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/bat-adls-5/igt@i915_module_load@reload.html
> [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-adls-5/igt@i915_module_load@reload.html
> - fi-cfl-guc: [PASS][32] -> [WARN][33]
> [32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-cfl-guc/igt@i915_module_load@reload.html
> [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-cfl-guc/igt@i915_module_load@reload.html
> - bat-jsl-3: [PASS][34] -> [WARN][35]
> [34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/bat-jsl-3/igt@i915_module_load@reload.html
> [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-jsl-3/igt@i915_module_load@reload.html
> - fi-kbl-x1275: [PASS][36] -> [WARN][37]
> [36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-kbl-x1275/igt@i915_module_load@reload.html
> [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-kbl-x1275/igt@i915_module_load@reload.html
> - fi-cfl-8109u: [PASS][38] -> [WARN][39]
> [38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-cfl-8109u/igt@i915_module_load@reload.html
> [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-cfl-8109u/igt@i915_module_load@reload.html
> - fi-kbl-8809g: [PASS][40] -> [WARN][41]
> [40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-kbl-8809g/igt@i915_module_load@reload.html
> [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-kbl-8809g/igt@i915_module_load@reload.html
> - fi-ivb-3770: [PASS][42] -> [WARN][43]
> [42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-ivb-3770/igt@i915_module_load@reload.html
> [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-ivb-3770/igt@i915_module_load@reload.html
> - bat-mtlp-8: [PASS][44] -> [WARN][45]
> [44]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/bat-mtlp-8/igt@i915_module_load@reload.html
> [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-mtlp-8/igt@i915_module_load@reload.html
> - fi-elk-e7500: [PASS][46] -> [WARN][47]
> [46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-elk-e7500/igt@i915_module_load@reload.html
> [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-elk-e7500/igt@i915_module_load@reload.html
> - fi-kbl-guc: [PASS][48] -> [WARN][49]
> [48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-kbl-guc/igt@i915_module_load@reload.html
> [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-kbl-guc/igt@i915_module_load@reload.html
> - bat-adlm-1: [PASS][50] -> [WARN][51]
> [50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/bat-adlm-1/igt@i915_module_load@reload.html
> [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-adlm-1/igt@i915_module_load@reload.html
> - fi-ilk-650: [PASS][52] -> [WARN][53]
> [52]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-ilk-650/igt@i915_module_load@reload.html
> [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-ilk-650/igt@i915_module_load@reload.html
> - bat-jsl-1: [PASS][54] -> [WARN][55]
> [54]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/bat-jsl-1/igt@i915_module_load@reload.html
> [55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-jsl-1/igt@i915_module_load@reload.html
> - fi-tgl-1115g4: [PASS][56] -> [WARN][57]
> [56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-tgl-1115g4/igt@i915_module_load@reload.html
> [57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-tgl-1115g4/igt@i915_module_load@reload.html
> - fi-blb-e6850: [PASS][58] -> [WARN][59]
> [58]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-blb-e6850/igt@i915_module_load@reload.html
> [59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-blb-e6850/igt@i915_module_load@reload.html
> - fi-bsw-n3050: [PASS][60] -> [WARN][61]
> [60]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-bsw-n3050/igt@i915_module_load@reload.html
> [61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-bsw-n3050/igt@i915_module_load@reload.html
> - bat-rpls-1: [PASS][62] -> [WARN][63]
> [62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/bat-rpls-1/igt@i915_module_load@reload.html
> [63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-rpls-1/igt@i915_module_load@reload.html
>
> * igt@i915_pm_rpm@module-reload:
> - fi-bsw-nick: [PASS][64] -> [FAIL][65] +2 other tests fail
> [64]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-bsw-nick/igt@i915_pm_rpm@module-reload.html
> [65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-bsw-nick/igt@i915_pm_rpm@module-reload.html
> - bat-kbl-2: [PASS][66] -> [FAIL][67] +2 other tests fail
> [66]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/bat-kbl-2/igt@i915_pm_rpm@module-reload.html
> [67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-kbl-2/igt@i915_pm_rpm@module-reload.html
> - bat-dg2-11: [PASS][68] -> [FAIL][69]
> [68]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/bat-dg2-11/igt@i915_pm_rpm@module-reload.html
> [69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-dg2-11/igt@i915_pm_rpm@module-reload.html
> - fi-kbl-x1275: [PASS][70] -> [FAIL][71] +1 other test fail
> [70]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-kbl-x1275/igt@i915_pm_rpm@module-reload.html
> [71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-kbl-x1275/igt@i915_pm_rpm@module-reload.html
> - bat-mtlp-8: [PASS][72] -> [FAIL][73]
> [72]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/bat-mtlp-8/igt@i915_pm_rpm@module-reload.html
> [73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-mtlp-8/igt@i915_pm_rpm@module-reload.html
> - fi-kbl-guc: [PASS][74] -> [FAIL][75] +2 other tests fail
> [74]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-kbl-guc/igt@i915_pm_rpm@module-reload.html
> [75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-kbl-guc/igt@i915_pm_rpm@module-reload.html
> - bat-jsl-1: [PASS][76] -> [FAIL][77] +1 other test fail
> [76]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/bat-jsl-1/igt@i915_pm_rpm@module-reload.html
> [77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-jsl-1/igt@i915_pm_rpm@module-reload.html
> - fi-bsw-n3050: [PASS][78] -> [FAIL][79] +2 other tests fail
> [78]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-bsw-n3050/igt@i915_pm_rpm@module-reload.html
> [79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-bsw-n3050/igt@i915_pm_rpm@module-reload.html
> - bat-rpls-1: [PASS][80] -> [FAIL][81] +1 other test fail
> [80]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/bat-rpls-1/igt@i915_pm_rpm@module-reload.html
> [81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-rpls-1/igt@i915_pm_rpm@module-reload.html
>
> * igt@i915_selftest@live:
> - bat-mtlp-8: NOTRUN -> [SKIP][82]
> [82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-mtlp-8/igt@i915_selftest@live.html
> - bat-adlm-1: NOTRUN -> [SKIP][83]
> [83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-adlm-1/igt@i915_selftest@live.html
> - bat-jsl-1: NOTRUN -> [SKIP][84]
> [84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-jsl-1/igt@i915_selftest@live.html
> - bat-rpls-1: NOTRUN -> [SKIP][85]
> [85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-rpls-1/igt@i915_selftest@live.html
> - bat-mtlp-6: NOTRUN -> [SKIP][86]
> [86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-mtlp-6/igt@i915_selftest@live.html
> - bat-dg1-5: NOTRUN -> [SKIP][87]
> [87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-dg1-5/igt@i915_selftest@live.html
> - bat-adlp-9: NOTRUN -> [SKIP][88]
> [88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-adlp-9/igt@i915_selftest@live.html
> - bat-dg2-11: NOTRUN -> [SKIP][89]
> [89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-dg2-11/igt@i915_selftest@live.html
> - fi-rkl-11600: NOTRUN -> [SKIP][90]
> [90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-rkl-11600/igt@i915_selftest@live.html
> - bat-adls-5: NOTRUN -> [SKIP][91]
> [91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-adls-5/igt@i915_selftest@live.html
> - bat-jsl-3: NOTRUN -> [SKIP][92]
> [92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-jsl-3/igt@i915_selftest@live.html
>
> * igt@i915_suspend@basic-s2idle-without-i915:
> - fi-cfl-8109u: [PASS][93] -> [FAIL][94] +2 other tests fail
> [93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-cfl-8109u/igt@i915_suspend@basic-s2idle-without-i915.html
> [94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-cfl-8109u/igt@i915_suspend@basic-s2idle-without-i915.html
> - fi-cfl-8700k: [PASS][95] -> [FAIL][96] +2 other tests fail
> [95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-cfl-8700k/igt@i915_suspend@basic-s2idle-without-i915.html
> [96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-cfl-8700k/igt@i915_suspend@basic-s2idle-without-i915.html
> - fi-kbl-8809g: [PASS][97] -> [FAIL][98] +2 other tests fail
> [97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-kbl-8809g/igt@i915_suspend@basic-s2idle-without-i915.html
> [98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-kbl-8809g/igt@i915_suspend@basic-s2idle-without-i915.html
> - fi-elk-e7500: [PASS][99] -> [FAIL][100] +1 other test fail
> [99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-elk-e7500/igt@i915_suspend@basic-s2idle-without-i915.html
> [100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-elk-e7500/igt@i915_suspend@basic-s2idle-without-i915.html
> - bat-adlm-1: [PASS][101] -> [FAIL][102] +2 other tests fail
> [101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/bat-adlm-1/igt@i915_suspend@basic-s2idle-without-i915.html
> [102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-adlm-1/igt@i915_suspend@basic-s2idle-without-i915.html
> - fi-tgl-1115g4: [PASS][103] -> [FAIL][104] +1 other test fail
> [103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-tgl-1115g4/igt@i915_suspend@basic-s2idle-without-i915.html
> [104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-tgl-1115g4/igt@i915_suspend@basic-s2idle-without-i915.html
> - fi-cfl-guc: [PASS][105] -> [FAIL][106] +2 other tests fail
> [105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-cfl-guc/igt@i915_suspend@basic-s2idle-without-i915.html
> [106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-cfl-guc/igt@i915_suspend@basic-s2idle-without-i915.html
> - fi-ilk-650: [PASS][107] -> [FAIL][108] +1 other test fail
> [107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-ilk-650/igt@i915_suspend@basic-s2idle-without-i915.html
> [108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-ilk-650/igt@i915_suspend@basic-s2idle-without-i915.html
> - fi-blb-e6850: [PASS][109] -> [FAIL][110] +1 other test fail
> [109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-blb-e6850/igt@i915_suspend@basic-s2idle-without-i915.html
> [110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-blb-e6850/igt@i915_suspend@basic-s2idle-without-i915.html
>
> * igt@i915_suspend@basic-s3-without-i915:
> - fi-rkl-11600: [PASS][111] -> [FAIL][112] +2 other tests fail
> [111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-rkl-11600/igt@i915_suspend@basic-s3-without-i915.html
> [112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-rkl-11600/igt@i915_suspend@basic-s3-without-i915.html
> - fi-skl-6600u: [PASS][113] -> [FAIL][114] +2 other tests fail
> [113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-skl-6600u/igt@i915_suspend@basic-s3-without-i915.html
> [114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-skl-6600u/igt@i915_suspend@basic-s3-without-i915.html
> - bat-adls-5: [PASS][115] -> [FAIL][116] +2 other tests fail
> [115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/bat-adls-5/igt@i915_suspend@basic-s3-without-i915.html
> [116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-adls-5/igt@i915_suspend@basic-s3-without-i915.html
> - fi-apl-guc: [PASS][117] -> [FAIL][118] +2 other tests fail
> [117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-apl-guc/igt@i915_suspend@basic-s3-without-i915.html
> [118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-apl-guc/igt@i915_suspend@basic-s3-without-i915.html
> - bat-dg1-5: [PASS][119] -> [FAIL][120] +2 other tests fail
> [119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/bat-dg1-5/igt@i915_suspend@basic-s3-without-i915.html
> [120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-dg1-5/igt@i915_suspend@basic-s3-without-i915.html
> - fi-pnv-d510: [PASS][121] -> [FAIL][122] +1 other test fail
> [121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-pnv-d510/igt@i915_suspend@basic-s3-without-i915.html
> [122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-pnv-d510/igt@i915_suspend@basic-s3-without-i915.html
> - bat-jsl-3: [PASS][123] -> [FAIL][124] +2 other tests fail
> [123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/bat-jsl-3/igt@i915_suspend@basic-s3-without-i915.html
> [124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-jsl-3/igt@i915_suspend@basic-s3-without-i915.html
> - fi-glk-j4005: [PASS][125] -> [FAIL][126] +2 other tests fail
> [125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-glk-j4005/igt@i915_suspend@basic-s3-without-i915.html
> [126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-glk-j4005/igt@i915_suspend@basic-s3-without-i915.html
> - bat-adlp-9: [PASS][127] -> [FAIL][128] +2 other tests fail
> [127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/bat-adlp-9/igt@i915_suspend@basic-s3-without-i915.html
> [128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-adlp-9/igt@i915_suspend@basic-s3-without-i915.html
> - fi-skl-guc: [PASS][129] -> [FAIL][130] +2 other tests fail
> [129]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-skl-guc/igt@i915_suspend@basic-s3-without-i915.html
> [130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-skl-guc/igt@i915_suspend@basic-s3-without-i915.html
> - bat-mtlp-6: NOTRUN -> [FAIL][131] +1 other test fail
> [131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-mtlp-6/igt@i915_suspend@basic-s3-without-i915.html
>
>
> #### Warnings ####
>
> * igt@i915_suspend@basic-s2idle-without-i915:
> - fi-ivb-3770: [DMESG-WARN][132] ([i915#8841]) -> [FAIL][133] +1 other test fail
> [132]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-ivb-3770/igt@i915_suspend@basic-s2idle-without-i915.html
> [133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-ivb-3770/igt@i915_suspend@basic-s2idle-without-i915.html
>
> * igt@i915_suspend@basic-s3-without-i915:
> - fi-tgl-1115g4: [INCOMPLETE][134] ([i915#7443] / [i915#8102]) -> [FAIL][135]
> [134]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-tgl-1115g4/igt@i915_suspend@basic-s3-without-i915.html
> [135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-tgl-1115g4/igt@i915_suspend@basic-s3-without-i915.html
> - fi-kbl-x1275: [SKIP][136] ([fdo#109271]) -> [FAIL][137]
> [136]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-kbl-x1275/igt@i915_suspend@basic-s3-without-i915.html
> [137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-kbl-x1275/igt@i915_suspend@basic-s3-without-i915.html
> - bat-mtlp-8: [SKIP][138] ([i915#6645]) -> [FAIL][139]
> [138]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/bat-mtlp-8/igt@i915_suspend@basic-s3-without-i915.html
> [139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-mtlp-8/igt@i915_suspend@basic-s3-without-i915.html
> - bat-jsl-1: [FAIL][140] ([fdo#103375]) -> [FAIL][141]
> [140]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/bat-jsl-1/igt@i915_suspend@basic-s3-without-i915.html
> [141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-jsl-1/igt@i915_suspend@basic-s3-without-i915.html
> - bat-rpls-1: [ABORT][142] ([i915#7978] / [i915#8668]) -> [FAIL][143]
> [142]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/bat-rpls-1/igt@i915_suspend@basic-s3-without-i915.html
> [143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-rpls-1/igt@i915_suspend@basic-s3-without-i915.html
>
>
> Known issues
> ------------
>
> Here are the changes found in Patchwork_115714v2 that come from known issues:
>
> ### CI changes ###
>
> #### Issues hit ####
>
> * boot:
> - fi-hsw-4770: [PASS][144] -> [FAIL][145] ([i915#8293])
> [144]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-hsw-4770/boot.html
> [145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-hsw-4770/boot.html
>
>
>
> ### IGT changes ###
>
> #### Issues hit ####
>
> * igt@gem_exec_suspend@basic-s3@smem:
> - bat-rpls-1: NOTRUN -> [ABORT][146] ([i915#7978] / [i915#8668])
> [146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-rpls-1/igt@gem_exec_suspend@basic-s3@smem.html
>
> * igt@gem_lmem_swapping@verify-random:
> - bat-mtlp-6: NOTRUN -> [SKIP][147] ([i915#4613]) +3 other tests skip
> [147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-mtlp-6/igt@gem_lmem_swapping@verify-random.html
>
> * igt@gem_mmap@basic:
> - bat-mtlp-6: NOTRUN -> [SKIP][148] ([i915#4083])
> [148]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-mtlp-6/igt@gem_mmap@basic.html
>
> * igt@gem_tiled_blits@basic:
> - bat-mtlp-6: NOTRUN -> [SKIP][149] ([i915#4077]) +2 other tests skip
> [149]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-mtlp-6/igt@gem_tiled_blits@basic.html
>
> * igt@gem_tiled_pread_basic:
> - bat-mtlp-6: NOTRUN -> [SKIP][150] ([i915#4079]) +1 other test skip
> [150]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-mtlp-6/igt@gem_tiled_pread_basic.html
>
> * igt@i915_pm_rps@basic-api:
> - bat-mtlp-6: NOTRUN -> [SKIP][151] ([i915#6621])
> [151]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-mtlp-6/igt@i915_pm_rps@basic-api.html
>
> * igt@i915_selftest@live:
> - fi-kbl-x1275: NOTRUN -> [SKIP][152] ([fdo#109271])
> [152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-kbl-x1275/igt@i915_selftest@live.html
> - fi-cfl-8109u: NOTRUN -> [SKIP][153] ([fdo#109271])
> [153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-cfl-8109u/igt@i915_selftest@live.html
> - fi-kbl-8809g: NOTRUN -> [SKIP][154] ([fdo#109271])
> [154]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-kbl-8809g/igt@i915_selftest@live.html
> - fi-ivb-3770: NOTRUN -> [SKIP][155] ([fdo#109271])
> [155]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-ivb-3770/igt@i915_selftest@live.html
> - fi-elk-e7500: NOTRUN -> [SKIP][156] ([fdo#109271])
> [156]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-elk-e7500/igt@i915_selftest@live.html
> - fi-kbl-guc: NOTRUN -> [SKIP][157] ([fdo#109271])
> [157]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-kbl-guc/igt@i915_selftest@live.html
> - fi-ilk-650: NOTRUN -> [SKIP][158] ([fdo#109271])
> [158]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-ilk-650/igt@i915_selftest@live.html
> - fi-tgl-1115g4: NOTRUN -> [SKIP][159] ([i915#1245])
> [159]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-tgl-1115g4/igt@i915_selftest@live.html
> - fi-blb-e6850: NOTRUN -> [SKIP][160] ([fdo#109271])
> [160]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-blb-e6850/igt@i915_selftest@live.html
> - fi-bsw-n3050: NOTRUN -> [SKIP][161] ([fdo#109271])
> [161]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-bsw-n3050/igt@i915_selftest@live.html
> - fi-skl-6600u: NOTRUN -> [SKIP][162] ([fdo#109271])
> [162]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-skl-6600u/igt@i915_selftest@live.html
> - fi-apl-guc: NOTRUN -> [SKIP][163] ([fdo#109271])
> [163]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-apl-guc/igt@i915_selftest@live.html
> - fi-pnv-d510: NOTRUN -> [SKIP][164] ([fdo#109271])
> [164]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-pnv-d510/igt@i915_selftest@live.html
> - fi-glk-j4005: NOTRUN -> [SKIP][165] ([fdo#109271])
> [165]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-glk-j4005/igt@i915_selftest@live.html
> - fi-skl-guc: NOTRUN -> [SKIP][166] ([fdo#109271])
> [166]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-skl-guc/igt@i915_selftest@live.html
> - fi-cfl-8700k: NOTRUN -> [SKIP][167] ([fdo#109271])
> [167]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-cfl-8700k/igt@i915_selftest@live.html
> - fi-bsw-nick: NOTRUN -> [SKIP][168] ([fdo#109271])
> [168]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-bsw-nick/igt@i915_selftest@live.html
> - bat-kbl-2: NOTRUN -> [SKIP][169] ([fdo#109271])
> [169]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-kbl-2/igt@i915_selftest@live.html
> - fi-cfl-guc: NOTRUN -> [SKIP][170] ([fdo#109271])
> [170]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-cfl-guc/igt@i915_selftest@live.html
>
> * igt@i915_suspend@basic-s2idle-without-i915:
> - bat-mtlp-6: NOTRUN -> [FAIL][171] ([i915#9092])
> [171]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-mtlp-6/igt@i915_suspend@basic-s2idle-without-i915.html
> - bat-mtlp-8: [PASS][172] -> [FAIL][173] ([i915#9092])
> [172]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/bat-mtlp-8/igt@i915_suspend@basic-s2idle-without-i915.html
> [173]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-mtlp-8/igt@i915_suspend@basic-s2idle-without-i915.html
>
> * igt@kms_addfb_basic@addfb25-x-tiled-legacy:
> - bat-mtlp-6: NOTRUN -> [SKIP][174] ([i915#4212]) +8 other tests skip
> [174]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-mtlp-6/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html
>
> * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
> - bat-mtlp-6: NOTRUN -> [SKIP][175] ([i915#5190])
> [175]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-mtlp-6/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
>
> * igt@kms_cursor_legacy@basic-flip-after-cursor-legacy:
> - bat-mtlp-6: NOTRUN -> [SKIP][176] ([i915#1845]) +12 other tests skip
> [176]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-mtlp-6/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html
>
> * igt@kms_flip@basic-flip-vs-dpms:
> - bat-mtlp-6: NOTRUN -> [SKIP][177] ([i915#3637]) +3 other tests skip
> [177]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-mtlp-6/igt@kms_flip@basic-flip-vs-dpms.html
>
> * igt@kms_force_connector_basic@force-load-detect:
> - bat-mtlp-6: NOTRUN -> [SKIP][178] ([fdo#109285])
> [178]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-mtlp-6/igt@kms_force_connector_basic@force-load-detect.html
>
> * igt@kms_force_connector_basic@prune-stale-modes:
> - bat-mtlp-6: NOTRUN -> [SKIP][179] ([i915#5274])
> [179]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-mtlp-6/igt@kms_force_connector_basic@prune-stale-modes.html
>
> * igt@kms_frontbuffer_tracking@basic:
> - bat-mtlp-6: NOTRUN -> [SKIP][180] ([i915#4342])
> [180]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-mtlp-6/igt@kms_frontbuffer_tracking@basic.html
>
> * igt@kms_pipe_crc_basic@suspend-read-crc:
> - bat-mtlp-6: NOTRUN -> [SKIP][181] ([i915#1845] / [i915#4078]) +4 other tests skip
> [181]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-mtlp-6/igt@kms_pipe_crc_basic@suspend-read-crc.html
>
> * igt@kms_psr@cursor_plane_move:
> - bat-mtlp-6: NOTRUN -> [SKIP][182] ([i915#1072]) +3 other tests skip
> [182]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-mtlp-6/igt@kms_psr@cursor_plane_move.html
>
> * igt@kms_setmode@basic-clone-single-crtc:
> - bat-mtlp-6: NOTRUN -> [SKIP][183] ([i915#3555] / [i915#8809])
> [183]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-mtlp-6/igt@kms_setmode@basic-clone-single-crtc.html
>
> * igt@prime_vgem@basic-fence-flip:
> - bat-mtlp-6: NOTRUN -> [SKIP][184] ([i915#1845] / [i915#3708])
> [184]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-mtlp-6/igt@prime_vgem@basic-fence-flip.html
>
> * igt@prime_vgem@basic-fence-mmap:
> - bat-mtlp-6: NOTRUN -> [SKIP][185] ([i915#3708] / [i915#4077]) +1 other test skip
> [185]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-mtlp-6/igt@prime_vgem@basic-fence-mmap.html
>
> * igt@prime_vgem@basic-write:
> - bat-mtlp-6: NOTRUN -> [SKIP][186] ([i915#3708]) +2 other tests skip
> [186]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-mtlp-6/igt@prime_vgem@basic-write.html
>
>
> #### Possible fixes ####
>
> * igt@gem_exec_parallel@engines@fds:
> - bat-mtlp-6: [ABORT][187] ([i915#9262]) -> [PASS][188]
> [187]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/bat-mtlp-6/igt@gem_exec_parallel@engines@fds.html
> [188]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-mtlp-6/igt@gem_exec_parallel@engines@fds.html
>
> * igt@gem_exec_suspend@basic-s0@smem:
> - bat-jsl-1: [INCOMPLETE][189] ([i915#9275]) -> [PASS][190]
> [189]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/bat-jsl-1/igt@gem_exec_suspend@basic-s0@smem.html
> [190]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-jsl-1/igt@gem_exec_suspend@basic-s0@smem.html
>
>
> {name}: This element is suppressed. This means it is ignored when computing
> the status of the difference (SUCCESS, WARNING, or FAILURE).
>
> [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375
> [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
> [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
> [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
> [i915#1245]: https://gitlab.freedesktop.org/drm/intel/issues/1245
> [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845
> [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#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
> [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#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212
> [i915#4342]: https://gitlab.freedesktop.org/drm/intel/issues/4342
> [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
> [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190
> [i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274
> [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
> [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
> [i915#6645]: https://gitlab.freedesktop.org/drm/intel/issues/6645
> [i915#7443]: https://gitlab.freedesktop.org/drm/intel/issues/7443
> [i915#7978]: https://gitlab.freedesktop.org/drm/intel/issues/7978
> [i915#8102]: https://gitlab.freedesktop.org/drm/intel/issues/8102
> [i915#8293]: https://gitlab.freedesktop.org/drm/intel/issues/8293
> [i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668
> [i915#8809]: https://gitlab.freedesktop.org/drm/intel/issues/8809
> [i915#8841]: https://gitlab.freedesktop.org/drm/intel/issues/8841
> [i915#9092]: https://gitlab.freedesktop.org/drm/intel/issues/9092
> [i915#9262]: https://gitlab.freedesktop.org/drm/intel/issues/9262
> [i915#9273]: https://gitlab.freedesktop.org/drm/intel/issues/9273
> [i915#9275]: https://gitlab.freedesktop.org/drm/intel/issues/9275
> [i915#9279]: https://gitlab.freedesktop.org/drm/intel/issues/9279
>
>
> Build changes
> -------------
>
> * Linux: CI_DRM_13627 -> Patchwork_115714v2
>
> CI-20190529: 20190529
> CI_DRM_13627: 45460a37f9be43072b509ca6044b215648f56221 @ git://anongit.freedesktop.org/gfx-ci/linux
> IGT_7486: afd9a940c8247291baadd1977fe881d4f2edf0c7 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
> Patchwork_115714v2: 45460a37f9be43072b509ca6044b215648f56221 @ git://anongit.freedesktop.org/gfx-ci/linux
>
>
> ### Linux commits
>
> a2a5b292def1 drm/i915: Implement fbdev emulation as in-kernel client
> 51bcff966a8f drm/i915: Implement fbdev client callbacks
> 141d36f2ce60 drm/i915: Initialize fbdev DRM client with callback functions
> 643d1d4e09f9 drm/i915: Move fbdev functions
>
> == Logs ==
>
> For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/index.html
--
Jani Nikula, Intel
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [Intel-gfx] ✗ Fi.CI.BAT: failure for drm/i915: Convert fbdev to DRM client (rev2)
2023-09-21 14:24 ` Jani Nikula
@ 2023-09-21 15:12 ` Thomas Zimmermann
2023-09-22 15:29 ` Thomas Zimmermann
1 sibling, 0 replies; 10+ messages in thread
From: Thomas Zimmermann @ 2023-09-21 15:12 UTC (permalink / raw)
To: Jani Nikula, Patchwork; +Cc: intel-gfx
[-- Attachment #1.1: Type: text/plain, Size: 38492 bytes --]
Hi
Am 21.09.23 um 16:24 schrieb Jani Nikula:
> On Wed, 13 Sep 2023, Patchwork <patchwork@emeril.freedesktop.org> wrote:
>> == Series Details ==
>>
>> Series: drm/i915: Convert fbdev to DRM client (rev2)
>> URL : https://patchwork.freedesktop.org/series/115714/
>> State : failure
>>
>> == Summary ==
>>
>> CI Bug Log - changes from CI_DRM_13627 -> Patchwork_115714v2
>> ====================================================
>>
>> Summary
>> -------
>>
>> **FAILURE**
>>
>> Serious unknown changes coming with Patchwork_115714v2 absolutely need to be
>> verified manually.
>>
>> If you think the reported changes have nothing to do with the changes
>> introduced in Patchwork_115714v2, please notify your bug team (lgci.bug.filing@intel.com) to allow them
>> to document this new failure mode, which will reduce false positives in CI.
>>
>> External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/index.html
>>
>> Participating hosts (42 -> 40)
>> ------------------------------
>>
>> Missing (2): fi-kbl-soraka fi-snb-2520m
>>
>> Possible new issues
>> -------------------
>>
>> Here are the unknown changes that may have been introduced in Patchwork_115714v2:
>>
>> ### IGT changes ###
>>
>> #### Possible regressions ####
>>
>> * igt@gem_lmem_swapping@basic:
>> - bat-dg1-5: NOTRUN -> [FAIL][1] +3 other tests fail
>> [1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-dg1-5/igt@gem_lmem_swapping@basic.html
>> - bat-dg2-11: NOTRUN -> [FAIL][2] +5 other tests fail
>> [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-dg2-11/igt@gem_lmem_swapping@basic.html
>>
>
> I haven't had time to look into it, but looks like this blocks module
> unload across the board.
Thanks. I wasn't even sure if that's actually caused by these patches.
I'll try to reproduce it locally.
Best regards
Thomas
>
> BR,
> Jani.
>
>
>> * igt@i915_module_load@load:
>> - bat-atsm-1: [PASS][3] -> [INCOMPLETE][4]
>> [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/bat-atsm-1/igt@i915_module_load@load.html
>> [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-atsm-1/igt@i915_module_load@load.html
>>
>> * igt@i915_module_load@reload:
>> - bat-mtlp-6: NOTRUN -> [WARN][5]
>> [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-mtlp-6/igt@i915_module_load@reload.html
>> - fi-skl-6600u: [PASS][6] -> [WARN][7]
>> [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-skl-6600u/igt@i915_module_load@reload.html
>> [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-skl-6600u/igt@i915_module_load@reload.html
>> - fi-apl-guc: [PASS][8] -> [WARN][9]
>> [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-apl-guc/igt@i915_module_load@reload.html
>> [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-apl-guc/igt@i915_module_load@reload.html
>> - bat-dg1-5: [PASS][10] -> [WARN][11]
>> [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/bat-dg1-5/igt@i915_module_load@reload.html
>> [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-dg1-5/igt@i915_module_load@reload.html
>> - fi-pnv-d510: [PASS][12] -> [WARN][13]
>> [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-pnv-d510/igt@i915_module_load@reload.html
>> [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-pnv-d510/igt@i915_module_load@reload.html
>> - fi-glk-j4005: [PASS][14] -> [WARN][15]
>> [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-glk-j4005/igt@i915_module_load@reload.html
>> [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-glk-j4005/igt@i915_module_load@reload.html
>> - bat-adlp-9: [PASS][16] -> [WARN][17]
>> [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/bat-adlp-9/igt@i915_module_load@reload.html
>> [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-adlp-9/igt@i915_module_load@reload.html
>> - fi-skl-guc: [PASS][18] -> [WARN][19]
>> [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-skl-guc/igt@i915_module_load@reload.html
>> [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-skl-guc/igt@i915_module_load@reload.html
>> - bat-dg2-11: [PASS][20] -> [WARN][21]
>> [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/bat-dg2-11/igt@i915_module_load@reload.html
>> [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-dg2-11/igt@i915_module_load@reload.html
>> - fi-cfl-8700k: [PASS][22] -> [WARN][23]
>> [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-cfl-8700k/igt@i915_module_load@reload.html
>> [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-cfl-8700k/igt@i915_module_load@reload.html
>> - fi-bsw-nick: [PASS][24] -> [WARN][25]
>> [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-bsw-nick/igt@i915_module_load@reload.html
>> [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-bsw-nick/igt@i915_module_load@reload.html
>> - bat-kbl-2: [PASS][26] -> [WARN][27]
>> [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/bat-kbl-2/igt@i915_module_load@reload.html
>> [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-kbl-2/igt@i915_module_load@reload.html
>> - fi-rkl-11600: [PASS][28] -> [WARN][29]
>> [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-rkl-11600/igt@i915_module_load@reload.html
>> [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-rkl-11600/igt@i915_module_load@reload.html
>> - bat-adls-5: [PASS][30] -> [WARN][31]
>> [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/bat-adls-5/igt@i915_module_load@reload.html
>> [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-adls-5/igt@i915_module_load@reload.html
>> - fi-cfl-guc: [PASS][32] -> [WARN][33]
>> [32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-cfl-guc/igt@i915_module_load@reload.html
>> [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-cfl-guc/igt@i915_module_load@reload.html
>> - bat-jsl-3: [PASS][34] -> [WARN][35]
>> [34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/bat-jsl-3/igt@i915_module_load@reload.html
>> [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-jsl-3/igt@i915_module_load@reload.html
>> - fi-kbl-x1275: [PASS][36] -> [WARN][37]
>> [36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-kbl-x1275/igt@i915_module_load@reload.html
>> [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-kbl-x1275/igt@i915_module_load@reload.html
>> - fi-cfl-8109u: [PASS][38] -> [WARN][39]
>> [38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-cfl-8109u/igt@i915_module_load@reload.html
>> [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-cfl-8109u/igt@i915_module_load@reload.html
>> - fi-kbl-8809g: [PASS][40] -> [WARN][41]
>> [40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-kbl-8809g/igt@i915_module_load@reload.html
>> [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-kbl-8809g/igt@i915_module_load@reload.html
>> - fi-ivb-3770: [PASS][42] -> [WARN][43]
>> [42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-ivb-3770/igt@i915_module_load@reload.html
>> [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-ivb-3770/igt@i915_module_load@reload.html
>> - bat-mtlp-8: [PASS][44] -> [WARN][45]
>> [44]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/bat-mtlp-8/igt@i915_module_load@reload.html
>> [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-mtlp-8/igt@i915_module_load@reload.html
>> - fi-elk-e7500: [PASS][46] -> [WARN][47]
>> [46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-elk-e7500/igt@i915_module_load@reload.html
>> [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-elk-e7500/igt@i915_module_load@reload.html
>> - fi-kbl-guc: [PASS][48] -> [WARN][49]
>> [48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-kbl-guc/igt@i915_module_load@reload.html
>> [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-kbl-guc/igt@i915_module_load@reload.html
>> - bat-adlm-1: [PASS][50] -> [WARN][51]
>> [50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/bat-adlm-1/igt@i915_module_load@reload.html
>> [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-adlm-1/igt@i915_module_load@reload.html
>> - fi-ilk-650: [PASS][52] -> [WARN][53]
>> [52]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-ilk-650/igt@i915_module_load@reload.html
>> [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-ilk-650/igt@i915_module_load@reload.html
>> - bat-jsl-1: [PASS][54] -> [WARN][55]
>> [54]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/bat-jsl-1/igt@i915_module_load@reload.html
>> [55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-jsl-1/igt@i915_module_load@reload.html
>> - fi-tgl-1115g4: [PASS][56] -> [WARN][57]
>> [56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-tgl-1115g4/igt@i915_module_load@reload.html
>> [57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-tgl-1115g4/igt@i915_module_load@reload.html
>> - fi-blb-e6850: [PASS][58] -> [WARN][59]
>> [58]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-blb-e6850/igt@i915_module_load@reload.html
>> [59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-blb-e6850/igt@i915_module_load@reload.html
>> - fi-bsw-n3050: [PASS][60] -> [WARN][61]
>> [60]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-bsw-n3050/igt@i915_module_load@reload.html
>> [61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-bsw-n3050/igt@i915_module_load@reload.html
>> - bat-rpls-1: [PASS][62] -> [WARN][63]
>> [62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/bat-rpls-1/igt@i915_module_load@reload.html
>> [63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-rpls-1/igt@i915_module_load@reload.html
>>
>> * igt@i915_pm_rpm@module-reload:
>> - fi-bsw-nick: [PASS][64] -> [FAIL][65] +2 other tests fail
>> [64]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-bsw-nick/igt@i915_pm_rpm@module-reload.html
>> [65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-bsw-nick/igt@i915_pm_rpm@module-reload.html
>> - bat-kbl-2: [PASS][66] -> [FAIL][67] +2 other tests fail
>> [66]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/bat-kbl-2/igt@i915_pm_rpm@module-reload.html
>> [67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-kbl-2/igt@i915_pm_rpm@module-reload.html
>> - bat-dg2-11: [PASS][68] -> [FAIL][69]
>> [68]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/bat-dg2-11/igt@i915_pm_rpm@module-reload.html
>> [69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-dg2-11/igt@i915_pm_rpm@module-reload.html
>> - fi-kbl-x1275: [PASS][70] -> [FAIL][71] +1 other test fail
>> [70]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-kbl-x1275/igt@i915_pm_rpm@module-reload.html
>> [71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-kbl-x1275/igt@i915_pm_rpm@module-reload.html
>> - bat-mtlp-8: [PASS][72] -> [FAIL][73]
>> [72]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/bat-mtlp-8/igt@i915_pm_rpm@module-reload.html
>> [73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-mtlp-8/igt@i915_pm_rpm@module-reload.html
>> - fi-kbl-guc: [PASS][74] -> [FAIL][75] +2 other tests fail
>> [74]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-kbl-guc/igt@i915_pm_rpm@module-reload.html
>> [75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-kbl-guc/igt@i915_pm_rpm@module-reload.html
>> - bat-jsl-1: [PASS][76] -> [FAIL][77] +1 other test fail
>> [76]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/bat-jsl-1/igt@i915_pm_rpm@module-reload.html
>> [77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-jsl-1/igt@i915_pm_rpm@module-reload.html
>> - fi-bsw-n3050: [PASS][78] -> [FAIL][79] +2 other tests fail
>> [78]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-bsw-n3050/igt@i915_pm_rpm@module-reload.html
>> [79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-bsw-n3050/igt@i915_pm_rpm@module-reload.html
>> - bat-rpls-1: [PASS][80] -> [FAIL][81] +1 other test fail
>> [80]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/bat-rpls-1/igt@i915_pm_rpm@module-reload.html
>> [81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-rpls-1/igt@i915_pm_rpm@module-reload.html
>>
>> * igt@i915_selftest@live:
>> - bat-mtlp-8: NOTRUN -> [SKIP][82]
>> [82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-mtlp-8/igt@i915_selftest@live.html
>> - bat-adlm-1: NOTRUN -> [SKIP][83]
>> [83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-adlm-1/igt@i915_selftest@live.html
>> - bat-jsl-1: NOTRUN -> [SKIP][84]
>> [84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-jsl-1/igt@i915_selftest@live.html
>> - bat-rpls-1: NOTRUN -> [SKIP][85]
>> [85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-rpls-1/igt@i915_selftest@live.html
>> - bat-mtlp-6: NOTRUN -> [SKIP][86]
>> [86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-mtlp-6/igt@i915_selftest@live.html
>> - bat-dg1-5: NOTRUN -> [SKIP][87]
>> [87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-dg1-5/igt@i915_selftest@live.html
>> - bat-adlp-9: NOTRUN -> [SKIP][88]
>> [88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-adlp-9/igt@i915_selftest@live.html
>> - bat-dg2-11: NOTRUN -> [SKIP][89]
>> [89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-dg2-11/igt@i915_selftest@live.html
>> - fi-rkl-11600: NOTRUN -> [SKIP][90]
>> [90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-rkl-11600/igt@i915_selftest@live.html
>> - bat-adls-5: NOTRUN -> [SKIP][91]
>> [91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-adls-5/igt@i915_selftest@live.html
>> - bat-jsl-3: NOTRUN -> [SKIP][92]
>> [92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-jsl-3/igt@i915_selftest@live.html
>>
>> * igt@i915_suspend@basic-s2idle-without-i915:
>> - fi-cfl-8109u: [PASS][93] -> [FAIL][94] +2 other tests fail
>> [93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-cfl-8109u/igt@i915_suspend@basic-s2idle-without-i915.html
>> [94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-cfl-8109u/igt@i915_suspend@basic-s2idle-without-i915.html
>> - fi-cfl-8700k: [PASS][95] -> [FAIL][96] +2 other tests fail
>> [95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-cfl-8700k/igt@i915_suspend@basic-s2idle-without-i915.html
>> [96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-cfl-8700k/igt@i915_suspend@basic-s2idle-without-i915.html
>> - fi-kbl-8809g: [PASS][97] -> [FAIL][98] +2 other tests fail
>> [97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-kbl-8809g/igt@i915_suspend@basic-s2idle-without-i915.html
>> [98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-kbl-8809g/igt@i915_suspend@basic-s2idle-without-i915.html
>> - fi-elk-e7500: [PASS][99] -> [FAIL][100] +1 other test fail
>> [99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-elk-e7500/igt@i915_suspend@basic-s2idle-without-i915.html
>> [100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-elk-e7500/igt@i915_suspend@basic-s2idle-without-i915.html
>> - bat-adlm-1: [PASS][101] -> [FAIL][102] +2 other tests fail
>> [101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/bat-adlm-1/igt@i915_suspend@basic-s2idle-without-i915.html
>> [102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-adlm-1/igt@i915_suspend@basic-s2idle-without-i915.html
>> - fi-tgl-1115g4: [PASS][103] -> [FAIL][104] +1 other test fail
>> [103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-tgl-1115g4/igt@i915_suspend@basic-s2idle-without-i915.html
>> [104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-tgl-1115g4/igt@i915_suspend@basic-s2idle-without-i915.html
>> - fi-cfl-guc: [PASS][105] -> [FAIL][106] +2 other tests fail
>> [105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-cfl-guc/igt@i915_suspend@basic-s2idle-without-i915.html
>> [106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-cfl-guc/igt@i915_suspend@basic-s2idle-without-i915.html
>> - fi-ilk-650: [PASS][107] -> [FAIL][108] +1 other test fail
>> [107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-ilk-650/igt@i915_suspend@basic-s2idle-without-i915.html
>> [108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-ilk-650/igt@i915_suspend@basic-s2idle-without-i915.html
>> - fi-blb-e6850: [PASS][109] -> [FAIL][110] +1 other test fail
>> [109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-blb-e6850/igt@i915_suspend@basic-s2idle-without-i915.html
>> [110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-blb-e6850/igt@i915_suspend@basic-s2idle-without-i915.html
>>
>> * igt@i915_suspend@basic-s3-without-i915:
>> - fi-rkl-11600: [PASS][111] -> [FAIL][112] +2 other tests fail
>> [111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-rkl-11600/igt@i915_suspend@basic-s3-without-i915.html
>> [112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-rkl-11600/igt@i915_suspend@basic-s3-without-i915.html
>> - fi-skl-6600u: [PASS][113] -> [FAIL][114] +2 other tests fail
>> [113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-skl-6600u/igt@i915_suspend@basic-s3-without-i915.html
>> [114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-skl-6600u/igt@i915_suspend@basic-s3-without-i915.html
>> - bat-adls-5: [PASS][115] -> [FAIL][116] +2 other tests fail
>> [115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/bat-adls-5/igt@i915_suspend@basic-s3-without-i915.html
>> [116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-adls-5/igt@i915_suspend@basic-s3-without-i915.html
>> - fi-apl-guc: [PASS][117] -> [FAIL][118] +2 other tests fail
>> [117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-apl-guc/igt@i915_suspend@basic-s3-without-i915.html
>> [118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-apl-guc/igt@i915_suspend@basic-s3-without-i915.html
>> - bat-dg1-5: [PASS][119] -> [FAIL][120] +2 other tests fail
>> [119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/bat-dg1-5/igt@i915_suspend@basic-s3-without-i915.html
>> [120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-dg1-5/igt@i915_suspend@basic-s3-without-i915.html
>> - fi-pnv-d510: [PASS][121] -> [FAIL][122] +1 other test fail
>> [121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-pnv-d510/igt@i915_suspend@basic-s3-without-i915.html
>> [122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-pnv-d510/igt@i915_suspend@basic-s3-without-i915.html
>> - bat-jsl-3: [PASS][123] -> [FAIL][124] +2 other tests fail
>> [123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/bat-jsl-3/igt@i915_suspend@basic-s3-without-i915.html
>> [124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-jsl-3/igt@i915_suspend@basic-s3-without-i915.html
>> - fi-glk-j4005: [PASS][125] -> [FAIL][126] +2 other tests fail
>> [125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-glk-j4005/igt@i915_suspend@basic-s3-without-i915.html
>> [126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-glk-j4005/igt@i915_suspend@basic-s3-without-i915.html
>> - bat-adlp-9: [PASS][127] -> [FAIL][128] +2 other tests fail
>> [127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/bat-adlp-9/igt@i915_suspend@basic-s3-without-i915.html
>> [128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-adlp-9/igt@i915_suspend@basic-s3-without-i915.html
>> - fi-skl-guc: [PASS][129] -> [FAIL][130] +2 other tests fail
>> [129]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-skl-guc/igt@i915_suspend@basic-s3-without-i915.html
>> [130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-skl-guc/igt@i915_suspend@basic-s3-without-i915.html
>> - bat-mtlp-6: NOTRUN -> [FAIL][131] +1 other test fail
>> [131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-mtlp-6/igt@i915_suspend@basic-s3-without-i915.html
>>
>>
>> #### Warnings ####
>>
>> * igt@i915_suspend@basic-s2idle-without-i915:
>> - fi-ivb-3770: [DMESG-WARN][132] ([i915#8841]) -> [FAIL][133] +1 other test fail
>> [132]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-ivb-3770/igt@i915_suspend@basic-s2idle-without-i915.html
>> [133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-ivb-3770/igt@i915_suspend@basic-s2idle-without-i915.html
>>
>> * igt@i915_suspend@basic-s3-without-i915:
>> - fi-tgl-1115g4: [INCOMPLETE][134] ([i915#7443] / [i915#8102]) -> [FAIL][135]
>> [134]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-tgl-1115g4/igt@i915_suspend@basic-s3-without-i915.html
>> [135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-tgl-1115g4/igt@i915_suspend@basic-s3-without-i915.html
>> - fi-kbl-x1275: [SKIP][136] ([fdo#109271]) -> [FAIL][137]
>> [136]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-kbl-x1275/igt@i915_suspend@basic-s3-without-i915.html
>> [137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-kbl-x1275/igt@i915_suspend@basic-s3-without-i915.html
>> - bat-mtlp-8: [SKIP][138] ([i915#6645]) -> [FAIL][139]
>> [138]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/bat-mtlp-8/igt@i915_suspend@basic-s3-without-i915.html
>> [139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-mtlp-8/igt@i915_suspend@basic-s3-without-i915.html
>> - bat-jsl-1: [FAIL][140] ([fdo#103375]) -> [FAIL][141]
>> [140]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/bat-jsl-1/igt@i915_suspend@basic-s3-without-i915.html
>> [141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-jsl-1/igt@i915_suspend@basic-s3-without-i915.html
>> - bat-rpls-1: [ABORT][142] ([i915#7978] / [i915#8668]) -> [FAIL][143]
>> [142]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/bat-rpls-1/igt@i915_suspend@basic-s3-without-i915.html
>> [143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-rpls-1/igt@i915_suspend@basic-s3-without-i915.html
>>
>>
>> Known issues
>> ------------
>>
>> Here are the changes found in Patchwork_115714v2 that come from known issues:
>>
>> ### CI changes ###
>>
>> #### Issues hit ####
>>
>> * boot:
>> - fi-hsw-4770: [PASS][144] -> [FAIL][145] ([i915#8293])
>> [144]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-hsw-4770/boot.html
>> [145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-hsw-4770/boot.html
>>
>>
>>
>> ### IGT changes ###
>>
>> #### Issues hit ####
>>
>> * igt@gem_exec_suspend@basic-s3@smem:
>> - bat-rpls-1: NOTRUN -> [ABORT][146] ([i915#7978] / [i915#8668])
>> [146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-rpls-1/igt@gem_exec_suspend@basic-s3@smem.html
>>
>> * igt@gem_lmem_swapping@verify-random:
>> - bat-mtlp-6: NOTRUN -> [SKIP][147] ([i915#4613]) +3 other tests skip
>> [147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-mtlp-6/igt@gem_lmem_swapping@verify-random.html
>>
>> * igt@gem_mmap@basic:
>> - bat-mtlp-6: NOTRUN -> [SKIP][148] ([i915#4083])
>> [148]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-mtlp-6/igt@gem_mmap@basic.html
>>
>> * igt@gem_tiled_blits@basic:
>> - bat-mtlp-6: NOTRUN -> [SKIP][149] ([i915#4077]) +2 other tests skip
>> [149]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-mtlp-6/igt@gem_tiled_blits@basic.html
>>
>> * igt@gem_tiled_pread_basic:
>> - bat-mtlp-6: NOTRUN -> [SKIP][150] ([i915#4079]) +1 other test skip
>> [150]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-mtlp-6/igt@gem_tiled_pread_basic.html
>>
>> * igt@i915_pm_rps@basic-api:
>> - bat-mtlp-6: NOTRUN -> [SKIP][151] ([i915#6621])
>> [151]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-mtlp-6/igt@i915_pm_rps@basic-api.html
>>
>> * igt@i915_selftest@live:
>> - fi-kbl-x1275: NOTRUN -> [SKIP][152] ([fdo#109271])
>> [152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-kbl-x1275/igt@i915_selftest@live.html
>> - fi-cfl-8109u: NOTRUN -> [SKIP][153] ([fdo#109271])
>> [153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-cfl-8109u/igt@i915_selftest@live.html
>> - fi-kbl-8809g: NOTRUN -> [SKIP][154] ([fdo#109271])
>> [154]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-kbl-8809g/igt@i915_selftest@live.html
>> - fi-ivb-3770: NOTRUN -> [SKIP][155] ([fdo#109271])
>> [155]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-ivb-3770/igt@i915_selftest@live.html
>> - fi-elk-e7500: NOTRUN -> [SKIP][156] ([fdo#109271])
>> [156]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-elk-e7500/igt@i915_selftest@live.html
>> - fi-kbl-guc: NOTRUN -> [SKIP][157] ([fdo#109271])
>> [157]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-kbl-guc/igt@i915_selftest@live.html
>> - fi-ilk-650: NOTRUN -> [SKIP][158] ([fdo#109271])
>> [158]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-ilk-650/igt@i915_selftest@live.html
>> - fi-tgl-1115g4: NOTRUN -> [SKIP][159] ([i915#1245])
>> [159]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-tgl-1115g4/igt@i915_selftest@live.html
>> - fi-blb-e6850: NOTRUN -> [SKIP][160] ([fdo#109271])
>> [160]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-blb-e6850/igt@i915_selftest@live.html
>> - fi-bsw-n3050: NOTRUN -> [SKIP][161] ([fdo#109271])
>> [161]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-bsw-n3050/igt@i915_selftest@live.html
>> - fi-skl-6600u: NOTRUN -> [SKIP][162] ([fdo#109271])
>> [162]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-skl-6600u/igt@i915_selftest@live.html
>> - fi-apl-guc: NOTRUN -> [SKIP][163] ([fdo#109271])
>> [163]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-apl-guc/igt@i915_selftest@live.html
>> - fi-pnv-d510: NOTRUN -> [SKIP][164] ([fdo#109271])
>> [164]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-pnv-d510/igt@i915_selftest@live.html
>> - fi-glk-j4005: NOTRUN -> [SKIP][165] ([fdo#109271])
>> [165]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-glk-j4005/igt@i915_selftest@live.html
>> - fi-skl-guc: NOTRUN -> [SKIP][166] ([fdo#109271])
>> [166]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-skl-guc/igt@i915_selftest@live.html
>> - fi-cfl-8700k: NOTRUN -> [SKIP][167] ([fdo#109271])
>> [167]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-cfl-8700k/igt@i915_selftest@live.html
>> - fi-bsw-nick: NOTRUN -> [SKIP][168] ([fdo#109271])
>> [168]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-bsw-nick/igt@i915_selftest@live.html
>> - bat-kbl-2: NOTRUN -> [SKIP][169] ([fdo#109271])
>> [169]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-kbl-2/igt@i915_selftest@live.html
>> - fi-cfl-guc: NOTRUN -> [SKIP][170] ([fdo#109271])
>> [170]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-cfl-guc/igt@i915_selftest@live.html
>>
>> * igt@i915_suspend@basic-s2idle-without-i915:
>> - bat-mtlp-6: NOTRUN -> [FAIL][171] ([i915#9092])
>> [171]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-mtlp-6/igt@i915_suspend@basic-s2idle-without-i915.html
>> - bat-mtlp-8: [PASS][172] -> [FAIL][173] ([i915#9092])
>> [172]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/bat-mtlp-8/igt@i915_suspend@basic-s2idle-without-i915.html
>> [173]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-mtlp-8/igt@i915_suspend@basic-s2idle-without-i915.html
>>
>> * igt@kms_addfb_basic@addfb25-x-tiled-legacy:
>> - bat-mtlp-6: NOTRUN -> [SKIP][174] ([i915#4212]) +8 other tests skip
>> [174]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-mtlp-6/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html
>>
>> * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
>> - bat-mtlp-6: NOTRUN -> [SKIP][175] ([i915#5190])
>> [175]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-mtlp-6/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
>>
>> * igt@kms_cursor_legacy@basic-flip-after-cursor-legacy:
>> - bat-mtlp-6: NOTRUN -> [SKIP][176] ([i915#1845]) +12 other tests skip
>> [176]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-mtlp-6/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html
>>
>> * igt@kms_flip@basic-flip-vs-dpms:
>> - bat-mtlp-6: NOTRUN -> [SKIP][177] ([i915#3637]) +3 other tests skip
>> [177]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-mtlp-6/igt@kms_flip@basic-flip-vs-dpms.html
>>
>> * igt@kms_force_connector_basic@force-load-detect:
>> - bat-mtlp-6: NOTRUN -> [SKIP][178] ([fdo#109285])
>> [178]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-mtlp-6/igt@kms_force_connector_basic@force-load-detect.html
>>
>> * igt@kms_force_connector_basic@prune-stale-modes:
>> - bat-mtlp-6: NOTRUN -> [SKIP][179] ([i915#5274])
>> [179]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-mtlp-6/igt@kms_force_connector_basic@prune-stale-modes.html
>>
>> * igt@kms_frontbuffer_tracking@basic:
>> - bat-mtlp-6: NOTRUN -> [SKIP][180] ([i915#4342])
>> [180]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-mtlp-6/igt@kms_frontbuffer_tracking@basic.html
>>
>> * igt@kms_pipe_crc_basic@suspend-read-crc:
>> - bat-mtlp-6: NOTRUN -> [SKIP][181] ([i915#1845] / [i915#4078]) +4 other tests skip
>> [181]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-mtlp-6/igt@kms_pipe_crc_basic@suspend-read-crc.html
>>
>> * igt@kms_psr@cursor_plane_move:
>> - bat-mtlp-6: NOTRUN -> [SKIP][182] ([i915#1072]) +3 other tests skip
>> [182]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-mtlp-6/igt@kms_psr@cursor_plane_move.html
>>
>> * igt@kms_setmode@basic-clone-single-crtc:
>> - bat-mtlp-6: NOTRUN -> [SKIP][183] ([i915#3555] / [i915#8809])
>> [183]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-mtlp-6/igt@kms_setmode@basic-clone-single-crtc.html
>>
>> * igt@prime_vgem@basic-fence-flip:
>> - bat-mtlp-6: NOTRUN -> [SKIP][184] ([i915#1845] / [i915#3708])
>> [184]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-mtlp-6/igt@prime_vgem@basic-fence-flip.html
>>
>> * igt@prime_vgem@basic-fence-mmap:
>> - bat-mtlp-6: NOTRUN -> [SKIP][185] ([i915#3708] / [i915#4077]) +1 other test skip
>> [185]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-mtlp-6/igt@prime_vgem@basic-fence-mmap.html
>>
>> * igt@prime_vgem@basic-write:
>> - bat-mtlp-6: NOTRUN -> [SKIP][186] ([i915#3708]) +2 other tests skip
>> [186]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-mtlp-6/igt@prime_vgem@basic-write.html
>>
>>
>> #### Possible fixes ####
>>
>> * igt@gem_exec_parallel@engines@fds:
>> - bat-mtlp-6: [ABORT][187] ([i915#9262]) -> [PASS][188]
>> [187]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/bat-mtlp-6/igt@gem_exec_parallel@engines@fds.html
>> [188]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-mtlp-6/igt@gem_exec_parallel@engines@fds.html
>>
>> * igt@gem_exec_suspend@basic-s0@smem:
>> - bat-jsl-1: [INCOMPLETE][189] ([i915#9275]) -> [PASS][190]
>> [189]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/bat-jsl-1/igt@gem_exec_suspend@basic-s0@smem.html
>> [190]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-jsl-1/igt@gem_exec_suspend@basic-s0@smem.html
>>
>>
>> {name}: This element is suppressed. This means it is ignored when computing
>> the status of the difference (SUCCESS, WARNING, or FAILURE).
>>
>> [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375
>> [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
>> [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
>> [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
>> [i915#1245]: https://gitlab.freedesktop.org/drm/intel/issues/1245
>> [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845
>> [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#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
>> [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#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212
>> [i915#4342]: https://gitlab.freedesktop.org/drm/intel/issues/4342
>> [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
>> [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190
>> [i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274
>> [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
>> [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
>> [i915#6645]: https://gitlab.freedesktop.org/drm/intel/issues/6645
>> [i915#7443]: https://gitlab.freedesktop.org/drm/intel/issues/7443
>> [i915#7978]: https://gitlab.freedesktop.org/drm/intel/issues/7978
>> [i915#8102]: https://gitlab.freedesktop.org/drm/intel/issues/8102
>> [i915#8293]: https://gitlab.freedesktop.org/drm/intel/issues/8293
>> [i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668
>> [i915#8809]: https://gitlab.freedesktop.org/drm/intel/issues/8809
>> [i915#8841]: https://gitlab.freedesktop.org/drm/intel/issues/8841
>> [i915#9092]: https://gitlab.freedesktop.org/drm/intel/issues/9092
>> [i915#9262]: https://gitlab.freedesktop.org/drm/intel/issues/9262
>> [i915#9273]: https://gitlab.freedesktop.org/drm/intel/issues/9273
>> [i915#9275]: https://gitlab.freedesktop.org/drm/intel/issues/9275
>> [i915#9279]: https://gitlab.freedesktop.org/drm/intel/issues/9279
>>
>>
>> Build changes
>> -------------
>>
>> * Linux: CI_DRM_13627 -> Patchwork_115714v2
>>
>> CI-20190529: 20190529
>> CI_DRM_13627: 45460a37f9be43072b509ca6044b215648f56221 @ git://anongit.freedesktop.org/gfx-ci/linux
>> IGT_7486: afd9a940c8247291baadd1977fe881d4f2edf0c7 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
>> Patchwork_115714v2: 45460a37f9be43072b509ca6044b215648f56221 @ git://anongit.freedesktop.org/gfx-ci/linux
>>
>>
>> ### Linux commits
>>
>> a2a5b292def1 drm/i915: Implement fbdev emulation as in-kernel client
>> 51bcff966a8f drm/i915: Implement fbdev client callbacks
>> 141d36f2ce60 drm/i915: Initialize fbdev DRM client with callback functions
>> 643d1d4e09f9 drm/i915: Move fbdev functions
>>
>> == Logs ==
>>
>> For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/index.html
>
--
Thomas Zimmermann
Graphics Driver Developer
SUSE Software Solutions Germany GmbH
Frankenstrasse 146, 90461 Nuernberg, Germany
GF: Ivo Totev, Andrew Myers, Andrew McDonald, Boudien Moerman
HRB 36809 (AG Nuernberg)
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 840 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread
* Re: [Intel-gfx] ✗ Fi.CI.BAT: failure for drm/i915: Convert fbdev to DRM client (rev2)
2023-09-21 14:24 ` Jani Nikula
2023-09-21 15:12 ` Thomas Zimmermann
@ 2023-09-22 15:29 ` Thomas Zimmermann
1 sibling, 0 replies; 10+ messages in thread
From: Thomas Zimmermann @ 2023-09-22 15:29 UTC (permalink / raw)
To: Jani Nikula, Patchwork; +Cc: intel-gfx
[-- Attachment #1.1: Type: text/plain, Size: 38558 bytes --]
Hi Jani
Am 21.09.23 um 16:24 schrieb Jani Nikula:
> On Wed, 13 Sep 2023, Patchwork <patchwork@emeril.freedesktop.org> wrote:
>> == Series Details ==
>>
>> Series: drm/i915: Convert fbdev to DRM client (rev2)
>> URL : https://patchwork.freedesktop.org/series/115714/
>> State : failure
>>
>> == Summary ==
>>
>> CI Bug Log - changes from CI_DRM_13627 -> Patchwork_115714v2
>> ====================================================
>>
>> Summary
>> -------
>>
>> **FAILURE**
>>
>> Serious unknown changes coming with Patchwork_115714v2 absolutely need to be
>> verified manually.
>>
>> If you think the reported changes have nothing to do with the changes
>> introduced in Patchwork_115714v2, please notify your bug team (lgci.bug.filing@intel.com) to allow them
>> to document this new failure mode, which will reduce false positives in CI.
>>
>> External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/index.html
>>
>> Participating hosts (42 -> 40)
>> ------------------------------
>>
>> Missing (2): fi-kbl-soraka fi-snb-2520m
>>
>> Possible new issues
>> -------------------
>>
>> Here are the unknown changes that may have been introduced in Patchwork_115714v2:
>>
>> ### IGT changes ###
>>
>> #### Possible regressions ####
>>
>> * igt@gem_lmem_swapping@basic:
>> - bat-dg1-5: NOTRUN -> [FAIL][1] +3 other tests fail
>> [1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-dg1-5/igt@gem_lmem_swapping@basic.html
>> - bat-dg2-11: NOTRUN -> [FAIL][2] +5 other tests fail
>> [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-dg2-11/igt@gem_lmem_swapping@basic.html
>>
>
> I haven't had time to look into it, but looks like this blocks module
> unload across the board.
I think I've found it. The DRM client code takes a reference on the
module. Fixing that makes the tests work for me. Thanks for pointing me
in the right direction.
Best regards
Thomas
>
> BR,
> Jani.
>
>
>> * igt@i915_module_load@load:
>> - bat-atsm-1: [PASS][3] -> [INCOMPLETE][4]
>> [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/bat-atsm-1/igt@i915_module_load@load.html
>> [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-atsm-1/igt@i915_module_load@load.html
>>
>> * igt@i915_module_load@reload:
>> - bat-mtlp-6: NOTRUN -> [WARN][5]
>> [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-mtlp-6/igt@i915_module_load@reload.html
>> - fi-skl-6600u: [PASS][6] -> [WARN][7]
>> [6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-skl-6600u/igt@i915_module_load@reload.html
>> [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-skl-6600u/igt@i915_module_load@reload.html
>> - fi-apl-guc: [PASS][8] -> [WARN][9]
>> [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-apl-guc/igt@i915_module_load@reload.html
>> [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-apl-guc/igt@i915_module_load@reload.html
>> - bat-dg1-5: [PASS][10] -> [WARN][11]
>> [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/bat-dg1-5/igt@i915_module_load@reload.html
>> [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-dg1-5/igt@i915_module_load@reload.html
>> - fi-pnv-d510: [PASS][12] -> [WARN][13]
>> [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-pnv-d510/igt@i915_module_load@reload.html
>> [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-pnv-d510/igt@i915_module_load@reload.html
>> - fi-glk-j4005: [PASS][14] -> [WARN][15]
>> [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-glk-j4005/igt@i915_module_load@reload.html
>> [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-glk-j4005/igt@i915_module_load@reload.html
>> - bat-adlp-9: [PASS][16] -> [WARN][17]
>> [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/bat-adlp-9/igt@i915_module_load@reload.html
>> [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-adlp-9/igt@i915_module_load@reload.html
>> - fi-skl-guc: [PASS][18] -> [WARN][19]
>> [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-skl-guc/igt@i915_module_load@reload.html
>> [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-skl-guc/igt@i915_module_load@reload.html
>> - bat-dg2-11: [PASS][20] -> [WARN][21]
>> [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/bat-dg2-11/igt@i915_module_load@reload.html
>> [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-dg2-11/igt@i915_module_load@reload.html
>> - fi-cfl-8700k: [PASS][22] -> [WARN][23]
>> [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-cfl-8700k/igt@i915_module_load@reload.html
>> [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-cfl-8700k/igt@i915_module_load@reload.html
>> - fi-bsw-nick: [PASS][24] -> [WARN][25]
>> [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-bsw-nick/igt@i915_module_load@reload.html
>> [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-bsw-nick/igt@i915_module_load@reload.html
>> - bat-kbl-2: [PASS][26] -> [WARN][27]
>> [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/bat-kbl-2/igt@i915_module_load@reload.html
>> [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-kbl-2/igt@i915_module_load@reload.html
>> - fi-rkl-11600: [PASS][28] -> [WARN][29]
>> [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-rkl-11600/igt@i915_module_load@reload.html
>> [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-rkl-11600/igt@i915_module_load@reload.html
>> - bat-adls-5: [PASS][30] -> [WARN][31]
>> [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/bat-adls-5/igt@i915_module_load@reload.html
>> [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-adls-5/igt@i915_module_load@reload.html
>> - fi-cfl-guc: [PASS][32] -> [WARN][33]
>> [32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-cfl-guc/igt@i915_module_load@reload.html
>> [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-cfl-guc/igt@i915_module_load@reload.html
>> - bat-jsl-3: [PASS][34] -> [WARN][35]
>> [34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/bat-jsl-3/igt@i915_module_load@reload.html
>> [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-jsl-3/igt@i915_module_load@reload.html
>> - fi-kbl-x1275: [PASS][36] -> [WARN][37]
>> [36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-kbl-x1275/igt@i915_module_load@reload.html
>> [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-kbl-x1275/igt@i915_module_load@reload.html
>> - fi-cfl-8109u: [PASS][38] -> [WARN][39]
>> [38]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-cfl-8109u/igt@i915_module_load@reload.html
>> [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-cfl-8109u/igt@i915_module_load@reload.html
>> - fi-kbl-8809g: [PASS][40] -> [WARN][41]
>> [40]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-kbl-8809g/igt@i915_module_load@reload.html
>> [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-kbl-8809g/igt@i915_module_load@reload.html
>> - fi-ivb-3770: [PASS][42] -> [WARN][43]
>> [42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-ivb-3770/igt@i915_module_load@reload.html
>> [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-ivb-3770/igt@i915_module_load@reload.html
>> - bat-mtlp-8: [PASS][44] -> [WARN][45]
>> [44]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/bat-mtlp-8/igt@i915_module_load@reload.html
>> [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-mtlp-8/igt@i915_module_load@reload.html
>> - fi-elk-e7500: [PASS][46] -> [WARN][47]
>> [46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-elk-e7500/igt@i915_module_load@reload.html
>> [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-elk-e7500/igt@i915_module_load@reload.html
>> - fi-kbl-guc: [PASS][48] -> [WARN][49]
>> [48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-kbl-guc/igt@i915_module_load@reload.html
>> [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-kbl-guc/igt@i915_module_load@reload.html
>> - bat-adlm-1: [PASS][50] -> [WARN][51]
>> [50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/bat-adlm-1/igt@i915_module_load@reload.html
>> [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-adlm-1/igt@i915_module_load@reload.html
>> - fi-ilk-650: [PASS][52] -> [WARN][53]
>> [52]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-ilk-650/igt@i915_module_load@reload.html
>> [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-ilk-650/igt@i915_module_load@reload.html
>> - bat-jsl-1: [PASS][54] -> [WARN][55]
>> [54]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/bat-jsl-1/igt@i915_module_load@reload.html
>> [55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-jsl-1/igt@i915_module_load@reload.html
>> - fi-tgl-1115g4: [PASS][56] -> [WARN][57]
>> [56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-tgl-1115g4/igt@i915_module_load@reload.html
>> [57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-tgl-1115g4/igt@i915_module_load@reload.html
>> - fi-blb-e6850: [PASS][58] -> [WARN][59]
>> [58]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-blb-e6850/igt@i915_module_load@reload.html
>> [59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-blb-e6850/igt@i915_module_load@reload.html
>> - fi-bsw-n3050: [PASS][60] -> [WARN][61]
>> [60]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-bsw-n3050/igt@i915_module_load@reload.html
>> [61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-bsw-n3050/igt@i915_module_load@reload.html
>> - bat-rpls-1: [PASS][62] -> [WARN][63]
>> [62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/bat-rpls-1/igt@i915_module_load@reload.html
>> [63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-rpls-1/igt@i915_module_load@reload.html
>>
>> * igt@i915_pm_rpm@module-reload:
>> - fi-bsw-nick: [PASS][64] -> [FAIL][65] +2 other tests fail
>> [64]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-bsw-nick/igt@i915_pm_rpm@module-reload.html
>> [65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-bsw-nick/igt@i915_pm_rpm@module-reload.html
>> - bat-kbl-2: [PASS][66] -> [FAIL][67] +2 other tests fail
>> [66]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/bat-kbl-2/igt@i915_pm_rpm@module-reload.html
>> [67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-kbl-2/igt@i915_pm_rpm@module-reload.html
>> - bat-dg2-11: [PASS][68] -> [FAIL][69]
>> [68]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/bat-dg2-11/igt@i915_pm_rpm@module-reload.html
>> [69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-dg2-11/igt@i915_pm_rpm@module-reload.html
>> - fi-kbl-x1275: [PASS][70] -> [FAIL][71] +1 other test fail
>> [70]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-kbl-x1275/igt@i915_pm_rpm@module-reload.html
>> [71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-kbl-x1275/igt@i915_pm_rpm@module-reload.html
>> - bat-mtlp-8: [PASS][72] -> [FAIL][73]
>> [72]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/bat-mtlp-8/igt@i915_pm_rpm@module-reload.html
>> [73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-mtlp-8/igt@i915_pm_rpm@module-reload.html
>> - fi-kbl-guc: [PASS][74] -> [FAIL][75] +2 other tests fail
>> [74]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-kbl-guc/igt@i915_pm_rpm@module-reload.html
>> [75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-kbl-guc/igt@i915_pm_rpm@module-reload.html
>> - bat-jsl-1: [PASS][76] -> [FAIL][77] +1 other test fail
>> [76]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/bat-jsl-1/igt@i915_pm_rpm@module-reload.html
>> [77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-jsl-1/igt@i915_pm_rpm@module-reload.html
>> - fi-bsw-n3050: [PASS][78] -> [FAIL][79] +2 other tests fail
>> [78]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-bsw-n3050/igt@i915_pm_rpm@module-reload.html
>> [79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-bsw-n3050/igt@i915_pm_rpm@module-reload.html
>> - bat-rpls-1: [PASS][80] -> [FAIL][81] +1 other test fail
>> [80]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/bat-rpls-1/igt@i915_pm_rpm@module-reload.html
>> [81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-rpls-1/igt@i915_pm_rpm@module-reload.html
>>
>> * igt@i915_selftest@live:
>> - bat-mtlp-8: NOTRUN -> [SKIP][82]
>> [82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-mtlp-8/igt@i915_selftest@live.html
>> - bat-adlm-1: NOTRUN -> [SKIP][83]
>> [83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-adlm-1/igt@i915_selftest@live.html
>> - bat-jsl-1: NOTRUN -> [SKIP][84]
>> [84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-jsl-1/igt@i915_selftest@live.html
>> - bat-rpls-1: NOTRUN -> [SKIP][85]
>> [85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-rpls-1/igt@i915_selftest@live.html
>> - bat-mtlp-6: NOTRUN -> [SKIP][86]
>> [86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-mtlp-6/igt@i915_selftest@live.html
>> - bat-dg1-5: NOTRUN -> [SKIP][87]
>> [87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-dg1-5/igt@i915_selftest@live.html
>> - bat-adlp-9: NOTRUN -> [SKIP][88]
>> [88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-adlp-9/igt@i915_selftest@live.html
>> - bat-dg2-11: NOTRUN -> [SKIP][89]
>> [89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-dg2-11/igt@i915_selftest@live.html
>> - fi-rkl-11600: NOTRUN -> [SKIP][90]
>> [90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-rkl-11600/igt@i915_selftest@live.html
>> - bat-adls-5: NOTRUN -> [SKIP][91]
>> [91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-adls-5/igt@i915_selftest@live.html
>> - bat-jsl-3: NOTRUN -> [SKIP][92]
>> [92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-jsl-3/igt@i915_selftest@live.html
>>
>> * igt@i915_suspend@basic-s2idle-without-i915:
>> - fi-cfl-8109u: [PASS][93] -> [FAIL][94] +2 other tests fail
>> [93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-cfl-8109u/igt@i915_suspend@basic-s2idle-without-i915.html
>> [94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-cfl-8109u/igt@i915_suspend@basic-s2idle-without-i915.html
>> - fi-cfl-8700k: [PASS][95] -> [FAIL][96] +2 other tests fail
>> [95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-cfl-8700k/igt@i915_suspend@basic-s2idle-without-i915.html
>> [96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-cfl-8700k/igt@i915_suspend@basic-s2idle-without-i915.html
>> - fi-kbl-8809g: [PASS][97] -> [FAIL][98] +2 other tests fail
>> [97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-kbl-8809g/igt@i915_suspend@basic-s2idle-without-i915.html
>> [98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-kbl-8809g/igt@i915_suspend@basic-s2idle-without-i915.html
>> - fi-elk-e7500: [PASS][99] -> [FAIL][100] +1 other test fail
>> [99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-elk-e7500/igt@i915_suspend@basic-s2idle-without-i915.html
>> [100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-elk-e7500/igt@i915_suspend@basic-s2idle-without-i915.html
>> - bat-adlm-1: [PASS][101] -> [FAIL][102] +2 other tests fail
>> [101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/bat-adlm-1/igt@i915_suspend@basic-s2idle-without-i915.html
>> [102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-adlm-1/igt@i915_suspend@basic-s2idle-without-i915.html
>> - fi-tgl-1115g4: [PASS][103] -> [FAIL][104] +1 other test fail
>> [103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-tgl-1115g4/igt@i915_suspend@basic-s2idle-without-i915.html
>> [104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-tgl-1115g4/igt@i915_suspend@basic-s2idle-without-i915.html
>> - fi-cfl-guc: [PASS][105] -> [FAIL][106] +2 other tests fail
>> [105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-cfl-guc/igt@i915_suspend@basic-s2idle-without-i915.html
>> [106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-cfl-guc/igt@i915_suspend@basic-s2idle-without-i915.html
>> - fi-ilk-650: [PASS][107] -> [FAIL][108] +1 other test fail
>> [107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-ilk-650/igt@i915_suspend@basic-s2idle-without-i915.html
>> [108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-ilk-650/igt@i915_suspend@basic-s2idle-without-i915.html
>> - fi-blb-e6850: [PASS][109] -> [FAIL][110] +1 other test fail
>> [109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-blb-e6850/igt@i915_suspend@basic-s2idle-without-i915.html
>> [110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-blb-e6850/igt@i915_suspend@basic-s2idle-without-i915.html
>>
>> * igt@i915_suspend@basic-s3-without-i915:
>> - fi-rkl-11600: [PASS][111] -> [FAIL][112] +2 other tests fail
>> [111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-rkl-11600/igt@i915_suspend@basic-s3-without-i915.html
>> [112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-rkl-11600/igt@i915_suspend@basic-s3-without-i915.html
>> - fi-skl-6600u: [PASS][113] -> [FAIL][114] +2 other tests fail
>> [113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-skl-6600u/igt@i915_suspend@basic-s3-without-i915.html
>> [114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-skl-6600u/igt@i915_suspend@basic-s3-without-i915.html
>> - bat-adls-5: [PASS][115] -> [FAIL][116] +2 other tests fail
>> [115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/bat-adls-5/igt@i915_suspend@basic-s3-without-i915.html
>> [116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-adls-5/igt@i915_suspend@basic-s3-without-i915.html
>> - fi-apl-guc: [PASS][117] -> [FAIL][118] +2 other tests fail
>> [117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-apl-guc/igt@i915_suspend@basic-s3-without-i915.html
>> [118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-apl-guc/igt@i915_suspend@basic-s3-without-i915.html
>> - bat-dg1-5: [PASS][119] -> [FAIL][120] +2 other tests fail
>> [119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/bat-dg1-5/igt@i915_suspend@basic-s3-without-i915.html
>> [120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-dg1-5/igt@i915_suspend@basic-s3-without-i915.html
>> - fi-pnv-d510: [PASS][121] -> [FAIL][122] +1 other test fail
>> [121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-pnv-d510/igt@i915_suspend@basic-s3-without-i915.html
>> [122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-pnv-d510/igt@i915_suspend@basic-s3-without-i915.html
>> - bat-jsl-3: [PASS][123] -> [FAIL][124] +2 other tests fail
>> [123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/bat-jsl-3/igt@i915_suspend@basic-s3-without-i915.html
>> [124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-jsl-3/igt@i915_suspend@basic-s3-without-i915.html
>> - fi-glk-j4005: [PASS][125] -> [FAIL][126] +2 other tests fail
>> [125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-glk-j4005/igt@i915_suspend@basic-s3-without-i915.html
>> [126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-glk-j4005/igt@i915_suspend@basic-s3-without-i915.html
>> - bat-adlp-9: [PASS][127] -> [FAIL][128] +2 other tests fail
>> [127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/bat-adlp-9/igt@i915_suspend@basic-s3-without-i915.html
>> [128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-adlp-9/igt@i915_suspend@basic-s3-without-i915.html
>> - fi-skl-guc: [PASS][129] -> [FAIL][130] +2 other tests fail
>> [129]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-skl-guc/igt@i915_suspend@basic-s3-without-i915.html
>> [130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-skl-guc/igt@i915_suspend@basic-s3-without-i915.html
>> - bat-mtlp-6: NOTRUN -> [FAIL][131] +1 other test fail
>> [131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-mtlp-6/igt@i915_suspend@basic-s3-without-i915.html
>>
>>
>> #### Warnings ####
>>
>> * igt@i915_suspend@basic-s2idle-without-i915:
>> - fi-ivb-3770: [DMESG-WARN][132] ([i915#8841]) -> [FAIL][133] +1 other test fail
>> [132]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-ivb-3770/igt@i915_suspend@basic-s2idle-without-i915.html
>> [133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-ivb-3770/igt@i915_suspend@basic-s2idle-without-i915.html
>>
>> * igt@i915_suspend@basic-s3-without-i915:
>> - fi-tgl-1115g4: [INCOMPLETE][134] ([i915#7443] / [i915#8102]) -> [FAIL][135]
>> [134]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-tgl-1115g4/igt@i915_suspend@basic-s3-without-i915.html
>> [135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-tgl-1115g4/igt@i915_suspend@basic-s3-without-i915.html
>> - fi-kbl-x1275: [SKIP][136] ([fdo#109271]) -> [FAIL][137]
>> [136]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-kbl-x1275/igt@i915_suspend@basic-s3-without-i915.html
>> [137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-kbl-x1275/igt@i915_suspend@basic-s3-without-i915.html
>> - bat-mtlp-8: [SKIP][138] ([i915#6645]) -> [FAIL][139]
>> [138]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/bat-mtlp-8/igt@i915_suspend@basic-s3-without-i915.html
>> [139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-mtlp-8/igt@i915_suspend@basic-s3-without-i915.html
>> - bat-jsl-1: [FAIL][140] ([fdo#103375]) -> [FAIL][141]
>> [140]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/bat-jsl-1/igt@i915_suspend@basic-s3-without-i915.html
>> [141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-jsl-1/igt@i915_suspend@basic-s3-without-i915.html
>> - bat-rpls-1: [ABORT][142] ([i915#7978] / [i915#8668]) -> [FAIL][143]
>> [142]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/bat-rpls-1/igt@i915_suspend@basic-s3-without-i915.html
>> [143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-rpls-1/igt@i915_suspend@basic-s3-without-i915.html
>>
>>
>> Known issues
>> ------------
>>
>> Here are the changes found in Patchwork_115714v2 that come from known issues:
>>
>> ### CI changes ###
>>
>> #### Issues hit ####
>>
>> * boot:
>> - fi-hsw-4770: [PASS][144] -> [FAIL][145] ([i915#8293])
>> [144]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/fi-hsw-4770/boot.html
>> [145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-hsw-4770/boot.html
>>
>>
>>
>> ### IGT changes ###
>>
>> #### Issues hit ####
>>
>> * igt@gem_exec_suspend@basic-s3@smem:
>> - bat-rpls-1: NOTRUN -> [ABORT][146] ([i915#7978] / [i915#8668])
>> [146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-rpls-1/igt@gem_exec_suspend@basic-s3@smem.html
>>
>> * igt@gem_lmem_swapping@verify-random:
>> - bat-mtlp-6: NOTRUN -> [SKIP][147] ([i915#4613]) +3 other tests skip
>> [147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-mtlp-6/igt@gem_lmem_swapping@verify-random.html
>>
>> * igt@gem_mmap@basic:
>> - bat-mtlp-6: NOTRUN -> [SKIP][148] ([i915#4083])
>> [148]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-mtlp-6/igt@gem_mmap@basic.html
>>
>> * igt@gem_tiled_blits@basic:
>> - bat-mtlp-6: NOTRUN -> [SKIP][149] ([i915#4077]) +2 other tests skip
>> [149]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-mtlp-6/igt@gem_tiled_blits@basic.html
>>
>> * igt@gem_tiled_pread_basic:
>> - bat-mtlp-6: NOTRUN -> [SKIP][150] ([i915#4079]) +1 other test skip
>> [150]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-mtlp-6/igt@gem_tiled_pread_basic.html
>>
>> * igt@i915_pm_rps@basic-api:
>> - bat-mtlp-6: NOTRUN -> [SKIP][151] ([i915#6621])
>> [151]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-mtlp-6/igt@i915_pm_rps@basic-api.html
>>
>> * igt@i915_selftest@live:
>> - fi-kbl-x1275: NOTRUN -> [SKIP][152] ([fdo#109271])
>> [152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-kbl-x1275/igt@i915_selftest@live.html
>> - fi-cfl-8109u: NOTRUN -> [SKIP][153] ([fdo#109271])
>> [153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-cfl-8109u/igt@i915_selftest@live.html
>> - fi-kbl-8809g: NOTRUN -> [SKIP][154] ([fdo#109271])
>> [154]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-kbl-8809g/igt@i915_selftest@live.html
>> - fi-ivb-3770: NOTRUN -> [SKIP][155] ([fdo#109271])
>> [155]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-ivb-3770/igt@i915_selftest@live.html
>> - fi-elk-e7500: NOTRUN -> [SKIP][156] ([fdo#109271])
>> [156]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-elk-e7500/igt@i915_selftest@live.html
>> - fi-kbl-guc: NOTRUN -> [SKIP][157] ([fdo#109271])
>> [157]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-kbl-guc/igt@i915_selftest@live.html
>> - fi-ilk-650: NOTRUN -> [SKIP][158] ([fdo#109271])
>> [158]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-ilk-650/igt@i915_selftest@live.html
>> - fi-tgl-1115g4: NOTRUN -> [SKIP][159] ([i915#1245])
>> [159]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-tgl-1115g4/igt@i915_selftest@live.html
>> - fi-blb-e6850: NOTRUN -> [SKIP][160] ([fdo#109271])
>> [160]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-blb-e6850/igt@i915_selftest@live.html
>> - fi-bsw-n3050: NOTRUN -> [SKIP][161] ([fdo#109271])
>> [161]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-bsw-n3050/igt@i915_selftest@live.html
>> - fi-skl-6600u: NOTRUN -> [SKIP][162] ([fdo#109271])
>> [162]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-skl-6600u/igt@i915_selftest@live.html
>> - fi-apl-guc: NOTRUN -> [SKIP][163] ([fdo#109271])
>> [163]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-apl-guc/igt@i915_selftest@live.html
>> - fi-pnv-d510: NOTRUN -> [SKIP][164] ([fdo#109271])
>> [164]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-pnv-d510/igt@i915_selftest@live.html
>> - fi-glk-j4005: NOTRUN -> [SKIP][165] ([fdo#109271])
>> [165]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-glk-j4005/igt@i915_selftest@live.html
>> - fi-skl-guc: NOTRUN -> [SKIP][166] ([fdo#109271])
>> [166]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-skl-guc/igt@i915_selftest@live.html
>> - fi-cfl-8700k: NOTRUN -> [SKIP][167] ([fdo#109271])
>> [167]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-cfl-8700k/igt@i915_selftest@live.html
>> - fi-bsw-nick: NOTRUN -> [SKIP][168] ([fdo#109271])
>> [168]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-bsw-nick/igt@i915_selftest@live.html
>> - bat-kbl-2: NOTRUN -> [SKIP][169] ([fdo#109271])
>> [169]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-kbl-2/igt@i915_selftest@live.html
>> - fi-cfl-guc: NOTRUN -> [SKIP][170] ([fdo#109271])
>> [170]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/fi-cfl-guc/igt@i915_selftest@live.html
>>
>> * igt@i915_suspend@basic-s2idle-without-i915:
>> - bat-mtlp-6: NOTRUN -> [FAIL][171] ([i915#9092])
>> [171]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-mtlp-6/igt@i915_suspend@basic-s2idle-without-i915.html
>> - bat-mtlp-8: [PASS][172] -> [FAIL][173] ([i915#9092])
>> [172]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/bat-mtlp-8/igt@i915_suspend@basic-s2idle-without-i915.html
>> [173]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-mtlp-8/igt@i915_suspend@basic-s2idle-without-i915.html
>>
>> * igt@kms_addfb_basic@addfb25-x-tiled-legacy:
>> - bat-mtlp-6: NOTRUN -> [SKIP][174] ([i915#4212]) +8 other tests skip
>> [174]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-mtlp-6/igt@kms_addfb_basic@addfb25-x-tiled-legacy.html
>>
>> * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
>> - bat-mtlp-6: NOTRUN -> [SKIP][175] ([i915#5190])
>> [175]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-mtlp-6/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
>>
>> * igt@kms_cursor_legacy@basic-flip-after-cursor-legacy:
>> - bat-mtlp-6: NOTRUN -> [SKIP][176] ([i915#1845]) +12 other tests skip
>> [176]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-mtlp-6/igt@kms_cursor_legacy@basic-flip-after-cursor-legacy.html
>>
>> * igt@kms_flip@basic-flip-vs-dpms:
>> - bat-mtlp-6: NOTRUN -> [SKIP][177] ([i915#3637]) +3 other tests skip
>> [177]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-mtlp-6/igt@kms_flip@basic-flip-vs-dpms.html
>>
>> * igt@kms_force_connector_basic@force-load-detect:
>> - bat-mtlp-6: NOTRUN -> [SKIP][178] ([fdo#109285])
>> [178]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-mtlp-6/igt@kms_force_connector_basic@force-load-detect.html
>>
>> * igt@kms_force_connector_basic@prune-stale-modes:
>> - bat-mtlp-6: NOTRUN -> [SKIP][179] ([i915#5274])
>> [179]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-mtlp-6/igt@kms_force_connector_basic@prune-stale-modes.html
>>
>> * igt@kms_frontbuffer_tracking@basic:
>> - bat-mtlp-6: NOTRUN -> [SKIP][180] ([i915#4342])
>> [180]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-mtlp-6/igt@kms_frontbuffer_tracking@basic.html
>>
>> * igt@kms_pipe_crc_basic@suspend-read-crc:
>> - bat-mtlp-6: NOTRUN -> [SKIP][181] ([i915#1845] / [i915#4078]) +4 other tests skip
>> [181]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-mtlp-6/igt@kms_pipe_crc_basic@suspend-read-crc.html
>>
>> * igt@kms_psr@cursor_plane_move:
>> - bat-mtlp-6: NOTRUN -> [SKIP][182] ([i915#1072]) +3 other tests skip
>> [182]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-mtlp-6/igt@kms_psr@cursor_plane_move.html
>>
>> * igt@kms_setmode@basic-clone-single-crtc:
>> - bat-mtlp-6: NOTRUN -> [SKIP][183] ([i915#3555] / [i915#8809])
>> [183]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-mtlp-6/igt@kms_setmode@basic-clone-single-crtc.html
>>
>> * igt@prime_vgem@basic-fence-flip:
>> - bat-mtlp-6: NOTRUN -> [SKIP][184] ([i915#1845] / [i915#3708])
>> [184]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-mtlp-6/igt@prime_vgem@basic-fence-flip.html
>>
>> * igt@prime_vgem@basic-fence-mmap:
>> - bat-mtlp-6: NOTRUN -> [SKIP][185] ([i915#3708] / [i915#4077]) +1 other test skip
>> [185]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-mtlp-6/igt@prime_vgem@basic-fence-mmap.html
>>
>> * igt@prime_vgem@basic-write:
>> - bat-mtlp-6: NOTRUN -> [SKIP][186] ([i915#3708]) +2 other tests skip
>> [186]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-mtlp-6/igt@prime_vgem@basic-write.html
>>
>>
>> #### Possible fixes ####
>>
>> * igt@gem_exec_parallel@engines@fds:
>> - bat-mtlp-6: [ABORT][187] ([i915#9262]) -> [PASS][188]
>> [187]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/bat-mtlp-6/igt@gem_exec_parallel@engines@fds.html
>> [188]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-mtlp-6/igt@gem_exec_parallel@engines@fds.html
>>
>> * igt@gem_exec_suspend@basic-s0@smem:
>> - bat-jsl-1: [INCOMPLETE][189] ([i915#9275]) -> [PASS][190]
>> [189]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13627/bat-jsl-1/igt@gem_exec_suspend@basic-s0@smem.html
>> [190]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/bat-jsl-1/igt@gem_exec_suspend@basic-s0@smem.html
>>
>>
>> {name}: This element is suppressed. This means it is ignored when computing
>> the status of the difference (SUCCESS, WARNING, or FAILURE).
>>
>> [fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375
>> [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
>> [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285
>> [i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
>> [i915#1245]: https://gitlab.freedesktop.org/drm/intel/issues/1245
>> [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845
>> [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#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
>> [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#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212
>> [i915#4342]: https://gitlab.freedesktop.org/drm/intel/issues/4342
>> [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
>> [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190
>> [i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274
>> [i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
>> [i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
>> [i915#6645]: https://gitlab.freedesktop.org/drm/intel/issues/6645
>> [i915#7443]: https://gitlab.freedesktop.org/drm/intel/issues/7443
>> [i915#7978]: https://gitlab.freedesktop.org/drm/intel/issues/7978
>> [i915#8102]: https://gitlab.freedesktop.org/drm/intel/issues/8102
>> [i915#8293]: https://gitlab.freedesktop.org/drm/intel/issues/8293
>> [i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668
>> [i915#8809]: https://gitlab.freedesktop.org/drm/intel/issues/8809
>> [i915#8841]: https://gitlab.freedesktop.org/drm/intel/issues/8841
>> [i915#9092]: https://gitlab.freedesktop.org/drm/intel/issues/9092
>> [i915#9262]: https://gitlab.freedesktop.org/drm/intel/issues/9262
>> [i915#9273]: https://gitlab.freedesktop.org/drm/intel/issues/9273
>> [i915#9275]: https://gitlab.freedesktop.org/drm/intel/issues/9275
>> [i915#9279]: https://gitlab.freedesktop.org/drm/intel/issues/9279
>>
>>
>> Build changes
>> -------------
>>
>> * Linux: CI_DRM_13627 -> Patchwork_115714v2
>>
>> CI-20190529: 20190529
>> CI_DRM_13627: 45460a37f9be43072b509ca6044b215648f56221 @ git://anongit.freedesktop.org/gfx-ci/linux
>> IGT_7486: afd9a940c8247291baadd1977fe881d4f2edf0c7 @ https://gitlab.freedesktop.org/drm/igt-gpu-tools.git
>> Patchwork_115714v2: 45460a37f9be43072b509ca6044b215648f56221 @ git://anongit.freedesktop.org/gfx-ci/linux
>>
>>
>> ### Linux commits
>>
>> a2a5b292def1 drm/i915: Implement fbdev emulation as in-kernel client
>> 51bcff966a8f drm/i915: Implement fbdev client callbacks
>> 141d36f2ce60 drm/i915: Initialize fbdev DRM client with callback functions
>> 643d1d4e09f9 drm/i915: Move fbdev functions
>>
>> == Logs ==
>>
>> For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_115714v2/index.html
>
--
Thomas Zimmermann
Graphics Driver Developer
SUSE Software Solutions Germany GmbH
Frankenstrasse 146, 90461 Nuernberg, Germany
GF: Ivo Totev, Andrew Myers, Andrew McDonald, Boudien Moerman
HRB 36809 (AG Nuernberg)
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 840 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread
end of thread, other threads:[~2023-09-22 15:29 UTC | newest]
Thread overview: 10+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-09-13 14:58 [Intel-gfx] [PATCH v2 0/4] drm/i915: Convert fbdev to DRM client Thomas Zimmermann
2023-09-13 14:58 ` [Intel-gfx] [PATCH v2 1/4] drm/i915: Move fbdev functions Thomas Zimmermann
2023-09-13 14:58 ` [Intel-gfx] [PATCH v2 2/4] drm/i915: Initialize fbdev DRM client with callback functions Thomas Zimmermann
2023-09-13 14:58 ` [Intel-gfx] [PATCH v2 3/4] drm/i915: Implement fbdev client callbacks Thomas Zimmermann
2023-09-13 14:58 ` [Intel-gfx] [PATCH v2 4/4] drm/i915: Implement fbdev emulation as in-kernel client Thomas Zimmermann
2023-09-13 22:34 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for drm/i915: Convert fbdev to DRM client (rev2) Patchwork
2023-09-13 22:50 ` [Intel-gfx] ✗ Fi.CI.BAT: failure " Patchwork
2023-09-21 14:24 ` Jani Nikula
2023-09-21 15:12 ` Thomas Zimmermann
2023-09-22 15:29 ` Thomas Zimmermann
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox