* [Intel-gfx] [PATCH 1/3] drm/i915: make some error capture functions static
@ 2023-10-11 16:38 Jani Nikula
2023-10-11 16:38 ` [Intel-gfx] [PATCH 2/3] drm/i915: move gpu error debugfs to i915_gpu_error.c Jani Nikula
` (5 more replies)
0 siblings, 6 replies; 9+ messages in thread
From: Jani Nikula @ 2023-10-11 16:38 UTC (permalink / raw)
To: intel-gfx; +Cc: jani.nikula
Not needed outside of i915_gpu_error.c.
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
drivers/gpu/drm/i915/i915_gpu_error.c | 8 ++++----
drivers/gpu/drm/i915/i915_gpu_error.h | 5 -----
2 files changed, 4 insertions(+), 9 deletions(-)
diff --git a/drivers/gpu/drm/i915/i915_gpu_error.c b/drivers/gpu/drm/i915/i915_gpu_error.c
index b4e31e59c799..db7ac28c44e5 100644
--- a/drivers/gpu/drm/i915/i915_gpu_error.c
+++ b/drivers/gpu/drm/i915/i915_gpu_error.c
@@ -520,7 +520,7 @@ __find_vma(struct i915_vma_coredump *vma, const char *name)
return NULL;
}
-struct i915_vma_coredump *
+static struct i915_vma_coredump *
intel_gpu_error_find_batch(const struct intel_engine_coredump *ee)
{
return __find_vma(ee->vma, "batch");
@@ -609,9 +609,9 @@ void i915_error_printf(struct drm_i915_error_state_buf *e, const char *f, ...)
va_end(args);
}
-void intel_gpu_error_print_vma(struct drm_i915_error_state_buf *m,
- const struct intel_engine_cs *engine,
- const struct i915_vma_coredump *vma)
+static void intel_gpu_error_print_vma(struct drm_i915_error_state_buf *m,
+ const struct intel_engine_cs *engine,
+ const struct i915_vma_coredump *vma)
{
char out[ASCII85_BUFSZ];
struct page *page;
diff --git a/drivers/gpu/drm/i915/i915_gpu_error.h b/drivers/gpu/drm/i915/i915_gpu_error.h
index 9f5971f5e980..c982b162b7ff 100644
--- a/drivers/gpu/drm/i915/i915_gpu_error.h
+++ b/drivers/gpu/drm/i915/i915_gpu_error.h
@@ -275,11 +275,6 @@ static inline void intel_klog_error_capture(struct intel_gt *gt,
__printf(2, 3)
void i915_error_printf(struct drm_i915_error_state_buf *e, const char *f, ...);
-void intel_gpu_error_print_vma(struct drm_i915_error_state_buf *m,
- const struct intel_engine_cs *engine,
- const struct i915_vma_coredump *vma);
-struct i915_vma_coredump *
-intel_gpu_error_find_batch(const struct intel_engine_coredump *ee);
struct i915_gpu_coredump *i915_gpu_coredump(struct intel_gt *gt,
intel_engine_mask_t engine_mask, u32 dump_flags);
--
2.39.2
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [Intel-gfx] [PATCH 2/3] drm/i915: move gpu error debugfs to i915_gpu_error.c
2023-10-11 16:38 [Intel-gfx] [PATCH 1/3] drm/i915: make some error capture functions static Jani Nikula
@ 2023-10-11 16:38 ` Jani Nikula
2023-10-11 16:38 ` [Intel-gfx] [PATCH 3/3] drm/i915: move gpu error sysfs " Jani Nikula
` (4 subsequent siblings)
5 siblings, 0 replies; 9+ messages in thread
From: Jani Nikula @ 2023-10-11 16:38 UTC (permalink / raw)
To: intel-gfx; +Cc: jani.nikula
Hide gpu error specifics in i915_gpu_error.c. This is also cleaner wrt
conditional compilation, as i915_gpu_error.c is only built with
DRM_I915_CAPTURE_ERROR=y.
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
drivers/gpu/drm/i915/i915_debugfs.c | 108 +------------------------
drivers/gpu/drm/i915/i915_gpu_error.c | 111 +++++++++++++++++++++++++-
drivers/gpu/drm/i915/i915_gpu_error.h | 8 +-
3 files changed, 119 insertions(+), 108 deletions(-)
diff --git a/drivers/gpu/drm/i915/i915_debugfs.c b/drivers/gpu/drm/i915/i915_debugfs.c
index e9b79c2c37d8..beffac46a5e2 100644
--- a/drivers/gpu/drm/i915/i915_debugfs.c
+++ b/drivers/gpu/drm/i915/i915_debugfs.c
@@ -49,6 +49,7 @@
#include "i915_debugfs.h"
#include "i915_debugfs_params.h"
#include "i915_driver.h"
+#include "i915_gpu_error.h"
#include "i915_irq.h"
#include "i915_reg.h"
#include "i915_scheduler.h"
@@ -297,107 +298,6 @@ static int i915_gem_object_info(struct seq_file *m, void *data)
return 0;
}
-#if IS_ENABLED(CONFIG_DRM_I915_CAPTURE_ERROR)
-static ssize_t gpu_state_read(struct file *file, char __user *ubuf,
- size_t count, loff_t *pos)
-{
- struct i915_gpu_coredump *error;
- ssize_t ret;
- void *buf;
-
- error = file->private_data;
- if (!error)
- return 0;
-
- /* Bounce buffer required because of kernfs __user API convenience. */
- buf = kmalloc(count, GFP_KERNEL);
- if (!buf)
- return -ENOMEM;
-
- ret = i915_gpu_coredump_copy_to_buffer(error, buf, *pos, count);
- if (ret <= 0)
- goto out;
-
- if (!copy_to_user(ubuf, buf, ret))
- *pos += ret;
- else
- ret = -EFAULT;
-
-out:
- kfree(buf);
- return ret;
-}
-
-static int gpu_state_release(struct inode *inode, struct file *file)
-{
- i915_gpu_coredump_put(file->private_data);
- return 0;
-}
-
-static int i915_gpu_info_open(struct inode *inode, struct file *file)
-{
- struct drm_i915_private *i915 = inode->i_private;
- struct i915_gpu_coredump *gpu;
- intel_wakeref_t wakeref;
-
- gpu = NULL;
- with_intel_runtime_pm(&i915->runtime_pm, wakeref)
- gpu = i915_gpu_coredump(to_gt(i915), ALL_ENGINES, CORE_DUMP_FLAG_NONE);
-
- if (IS_ERR(gpu))
- return PTR_ERR(gpu);
-
- file->private_data = gpu;
- return 0;
-}
-
-static const struct file_operations i915_gpu_info_fops = {
- .owner = THIS_MODULE,
- .open = i915_gpu_info_open,
- .read = gpu_state_read,
- .llseek = default_llseek,
- .release = gpu_state_release,
-};
-
-static ssize_t
-i915_error_state_write(struct file *filp,
- const char __user *ubuf,
- size_t cnt,
- loff_t *ppos)
-{
- struct i915_gpu_coredump *error = filp->private_data;
-
- if (!error)
- return 0;
-
- drm_dbg(&error->i915->drm, "Resetting error state\n");
- i915_reset_error_state(error->i915);
-
- return cnt;
-}
-
-static int i915_error_state_open(struct inode *inode, struct file *file)
-{
- struct i915_gpu_coredump *error;
-
- error = i915_first_error_state(inode->i_private);
- if (IS_ERR(error))
- return PTR_ERR(error);
-
- file->private_data = error;
- return 0;
-}
-
-static const struct file_operations i915_error_state_fops = {
- .owner = THIS_MODULE,
- .open = i915_error_state_open,
- .read = gpu_state_read,
- .write = i915_error_state_write,
- .llseek = default_llseek,
- .release = gpu_state_release,
-};
-#endif
-
static int i915_frequency_info(struct seq_file *m, void *unused)
{
struct drm_i915_private *i915 = node_to_i915(m->private);
@@ -837,10 +737,6 @@ static const struct i915_debugfs_files {
{"i915_perf_noa_delay", &i915_perf_noa_delay_fops},
{"i915_wedged", &i915_wedged_fops},
{"i915_gem_drop_caches", &i915_drop_caches_fops},
-#if IS_ENABLED(CONFIG_DRM_I915_CAPTURE_ERROR)
- {"i915_error_state", &i915_error_state_fops},
- {"i915_gpu_info", &i915_gpu_info_fops},
-#endif
};
void i915_debugfs_register(struct drm_i915_private *dev_priv)
@@ -863,4 +759,6 @@ void i915_debugfs_register(struct drm_i915_private *dev_priv)
drm_debugfs_create_files(i915_debugfs_list,
ARRAY_SIZE(i915_debugfs_list),
minor->debugfs_root, minor);
+
+ i915_gpu_error_debugfs_register(dev_priv);
}
diff --git a/drivers/gpu/drm/i915/i915_gpu_error.c b/drivers/gpu/drm/i915/i915_gpu_error.c
index db7ac28c44e5..b4c8459deb7b 100644
--- a/drivers/gpu/drm/i915/i915_gpu_error.c
+++ b/drivers/gpu/drm/i915/i915_gpu_error.c
@@ -2137,7 +2137,7 @@ __i915_gpu_coredump(struct intel_gt *gt, intel_engine_mask_t engine_mask, u32 du
return error;
}
-struct i915_gpu_coredump *
+static struct i915_gpu_coredump *
i915_gpu_coredump(struct intel_gt *gt, intel_engine_mask_t engine_mask, u32 dump_flags)
{
static DEFINE_MUTEX(capture_mutex);
@@ -2375,3 +2375,112 @@ void intel_klog_error_capture(struct intel_gt *gt,
drm_info(&i915->drm, "[Capture/%d.%d] Dumped %zd bytes\n", l_count, line++, pos_err);
}
#endif
+
+static ssize_t gpu_state_read(struct file *file, char __user *ubuf,
+ size_t count, loff_t *pos)
+{
+ struct i915_gpu_coredump *error;
+ ssize_t ret;
+ void *buf;
+
+ error = file->private_data;
+ if (!error)
+ return 0;
+
+ /* Bounce buffer required because of kernfs __user API convenience. */
+ buf = kmalloc(count, GFP_KERNEL);
+ if (!buf)
+ return -ENOMEM;
+
+ ret = i915_gpu_coredump_copy_to_buffer(error, buf, *pos, count);
+ if (ret <= 0)
+ goto out;
+
+ if (!copy_to_user(ubuf, buf, ret))
+ *pos += ret;
+ else
+ ret = -EFAULT;
+
+out:
+ kfree(buf);
+ return ret;
+}
+
+static int gpu_state_release(struct inode *inode, struct file *file)
+{
+ i915_gpu_coredump_put(file->private_data);
+ return 0;
+}
+
+static int i915_gpu_info_open(struct inode *inode, struct file *file)
+{
+ struct drm_i915_private *i915 = inode->i_private;
+ struct i915_gpu_coredump *gpu;
+ intel_wakeref_t wakeref;
+
+ gpu = NULL;
+ with_intel_runtime_pm(&i915->runtime_pm, wakeref)
+ gpu = i915_gpu_coredump(to_gt(i915), ALL_ENGINES, CORE_DUMP_FLAG_NONE);
+
+ if (IS_ERR(gpu))
+ return PTR_ERR(gpu);
+
+ file->private_data = gpu;
+ return 0;
+}
+
+static const struct file_operations i915_gpu_info_fops = {
+ .owner = THIS_MODULE,
+ .open = i915_gpu_info_open,
+ .read = gpu_state_read,
+ .llseek = default_llseek,
+ .release = gpu_state_release,
+};
+
+static ssize_t
+i915_error_state_write(struct file *filp,
+ const char __user *ubuf,
+ size_t cnt,
+ loff_t *ppos)
+{
+ struct i915_gpu_coredump *error = filp->private_data;
+
+ if (!error)
+ return 0;
+
+ drm_dbg(&error->i915->drm, "Resetting error state\n");
+ i915_reset_error_state(error->i915);
+
+ return cnt;
+}
+
+static int i915_error_state_open(struct inode *inode, struct file *file)
+{
+ struct i915_gpu_coredump *error;
+
+ error = i915_first_error_state(inode->i_private);
+ if (IS_ERR(error))
+ return PTR_ERR(error);
+
+ file->private_data = error;
+ return 0;
+}
+
+static const struct file_operations i915_error_state_fops = {
+ .owner = THIS_MODULE,
+ .open = i915_error_state_open,
+ .read = gpu_state_read,
+ .write = i915_error_state_write,
+ .llseek = default_llseek,
+ .release = gpu_state_release,
+};
+
+void i915_gpu_error_debugfs_register(struct drm_i915_private *i915)
+{
+ struct drm_minor *minor = i915->drm.primary;
+
+ debugfs_create_file("i915_error_state", 0644, minor->debugfs_root, i915,
+ &i915_error_state_fops);
+ debugfs_create_file("i915_gpu_info", 0644, minor->debugfs_root, i915,
+ &i915_gpu_info_fops);
+}
diff --git a/drivers/gpu/drm/i915/i915_gpu_error.h b/drivers/gpu/drm/i915/i915_gpu_error.h
index c982b162b7ff..a6f2a7518cf0 100644
--- a/drivers/gpu/drm/i915/i915_gpu_error.h
+++ b/drivers/gpu/drm/i915/i915_gpu_error.h
@@ -276,8 +276,6 @@ static inline void intel_klog_error_capture(struct intel_gt *gt,
__printf(2, 3)
void i915_error_printf(struct drm_i915_error_state_buf *e, const char *f, ...);
-struct i915_gpu_coredump *i915_gpu_coredump(struct intel_gt *gt,
- intel_engine_mask_t engine_mask, u32 dump_flags);
void i915_capture_error_state(struct intel_gt *gt,
intel_engine_mask_t engine_mask, u32 dump_flags);
@@ -329,6 +327,8 @@ struct i915_gpu_coredump *i915_first_error_state(struct drm_i915_private *i915);
void i915_reset_error_state(struct drm_i915_private *i915);
void i915_disable_error_state(struct drm_i915_private *i915, int err);
+void i915_gpu_error_debugfs_register(struct drm_i915_private *i915);
+
#else
__printf(2, 3)
@@ -411,6 +411,10 @@ static inline void i915_disable_error_state(struct drm_i915_private *i915,
{
}
+static inline void i915_gpu_error_debugfs_register(struct drm_i915_private *i915)
+{
+}
+
#endif /* IS_ENABLED(CONFIG_DRM_I915_CAPTURE_ERROR) */
#endif /* _I915_GPU_ERROR_H_ */
--
2.39.2
^ permalink raw reply related [flat|nested] 9+ messages in thread
* [Intel-gfx] [PATCH 3/3] drm/i915: move gpu error sysfs to i915_gpu_error.c
2023-10-11 16:38 [Intel-gfx] [PATCH 1/3] drm/i915: make some error capture functions static Jani Nikula
2023-10-11 16:38 ` [Intel-gfx] [PATCH 2/3] drm/i915: move gpu error debugfs to i915_gpu_error.c Jani Nikula
@ 2023-10-11 16:38 ` Jani Nikula
2023-10-11 17:25 ` John Harrison
2023-10-13 3:06 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for series starting with [1/3] drm/i915: make some error capture functions static (rev2) Patchwork
` (3 subsequent siblings)
5 siblings, 1 reply; 9+ messages in thread
From: Jani Nikula @ 2023-10-11 16:38 UTC (permalink / raw)
To: intel-gfx; +Cc: jani.nikula
Hide gpu error specifics in i915_gpu_error.c. This is also cleaner wrt
conditional compilation, as i915_gpu_error.c is only built with
DRM_I915_CAPTURE_ERROR=y.
With this, we can also make i915_first_error_state() static.
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
drivers/gpu/drm/i915/i915_gpu_error.c | 75 ++++++++++++++++++++++++-
drivers/gpu/drm/i915/i915_gpu_error.h | 17 +++---
drivers/gpu/drm/i915/i915_sysfs.c | 79 +--------------------------
3 files changed, 86 insertions(+), 85 deletions(-)
diff --git a/drivers/gpu/drm/i915/i915_gpu_error.c b/drivers/gpu/drm/i915/i915_gpu_error.c
index b4c8459deb7b..f9e750217f18 100644
--- a/drivers/gpu/drm/i915/i915_gpu_error.c
+++ b/drivers/gpu/drm/i915/i915_gpu_error.c
@@ -57,6 +57,7 @@
#include "i915_memcpy.h"
#include "i915_reg.h"
#include "i915_scatterlist.h"
+#include "i915_sysfs.h"
#include "i915_utils.h"
#define ALLOW_FAIL (__GFP_KSWAPD_RECLAIM | __GFP_RETRY_MAYFAIL | __GFP_NOWARN)
@@ -2208,7 +2209,7 @@ void i915_capture_error_state(struct intel_gt *gt,
i915_gpu_coredump_put(error);
}
-struct i915_gpu_coredump *
+static struct i915_gpu_coredump *
i915_first_error_state(struct drm_i915_private *i915)
{
struct i915_gpu_coredump *error;
@@ -2484,3 +2485,75 @@ void i915_gpu_error_debugfs_register(struct drm_i915_private *i915)
debugfs_create_file("i915_gpu_info", 0644, minor->debugfs_root, i915,
&i915_gpu_info_fops);
}
+
+static ssize_t error_state_read(struct file *filp, struct kobject *kobj,
+ struct bin_attribute *attr, char *buf,
+ loff_t off, size_t count)
+{
+
+ struct device *kdev = kobj_to_dev(kobj);
+ struct drm_i915_private *i915 = kdev_minor_to_i915(kdev);
+ struct i915_gpu_coredump *gpu;
+ ssize_t ret = 0;
+
+ /*
+ * FIXME: Concurrent clients triggering resets and reading + clearing
+ * dumps can cause inconsistent sysfs reads when a user calls in with a
+ * non-zero offset to complete a prior partial read but the
+ * gpu_coredump has been cleared or replaced.
+ */
+
+ gpu = i915_first_error_state(i915);
+ if (IS_ERR(gpu)) {
+ ret = PTR_ERR(gpu);
+ } else if (gpu) {
+ ret = i915_gpu_coredump_copy_to_buffer(gpu, buf, off, count);
+ i915_gpu_coredump_put(gpu);
+ } else {
+ const char *str = "No error state collected\n";
+ size_t len = strlen(str);
+
+ if (off < len) {
+ ret = min_t(size_t, count, len - off);
+ memcpy(buf, str + off, ret);
+ }
+ }
+
+ return ret;
+}
+
+static ssize_t error_state_write(struct file *file, struct kobject *kobj,
+ struct bin_attribute *attr, char *buf,
+ loff_t off, size_t count)
+{
+ struct device *kdev = kobj_to_dev(kobj);
+ struct drm_i915_private *dev_priv = kdev_minor_to_i915(kdev);
+
+ drm_dbg(&dev_priv->drm, "Resetting error state\n");
+ i915_reset_error_state(dev_priv);
+
+ return count;
+}
+
+static const struct bin_attribute error_state_attr = {
+ .attr.name = "error",
+ .attr.mode = S_IRUSR | S_IWUSR,
+ .size = 0,
+ .read = error_state_read,
+ .write = error_state_write,
+};
+
+void i915_gpu_error_sysfs_setup(struct drm_i915_private *i915)
+{
+ struct device *kdev = i915->drm.primary->kdev;
+
+ if (sysfs_create_bin_file(&kdev->kobj, &error_state_attr))
+ drm_err(&i915->drm, "error_state sysfs setup failed\n");
+}
+
+void i915_gpu_error_sysfs_teardown(struct drm_i915_private *i915)
+{
+ struct device *kdev = i915->drm.primary->kdev;
+
+ sysfs_remove_bin_file(&kdev->kobj, &error_state_attr);
+}
diff --git a/drivers/gpu/drm/i915/i915_gpu_error.h b/drivers/gpu/drm/i915/i915_gpu_error.h
index a6f2a7518cf0..68c964d6720a 100644
--- a/drivers/gpu/drm/i915/i915_gpu_error.h
+++ b/drivers/gpu/drm/i915/i915_gpu_error.h
@@ -323,11 +323,12 @@ static inline void i915_gpu_coredump_put(struct i915_gpu_coredump *gpu)
kref_put(&gpu->ref, __i915_gpu_coredump_free);
}
-struct i915_gpu_coredump *i915_first_error_state(struct drm_i915_private *i915);
void i915_reset_error_state(struct drm_i915_private *i915);
void i915_disable_error_state(struct drm_i915_private *i915, int err);
void i915_gpu_error_debugfs_register(struct drm_i915_private *i915);
+void i915_gpu_error_sysfs_setup(struct drm_i915_private *i915);
+void i915_gpu_error_sysfs_teardown(struct drm_i915_private *i915);
#else
@@ -396,12 +397,6 @@ static inline void i915_gpu_coredump_put(struct i915_gpu_coredump *gpu)
{
}
-static inline struct i915_gpu_coredump *
-i915_first_error_state(struct drm_i915_private *i915)
-{
- return ERR_PTR(-ENODEV);
-}
-
static inline void i915_reset_error_state(struct drm_i915_private *i915)
{
}
@@ -415,6 +410,14 @@ static inline void i915_gpu_error_debugfs_register(struct drm_i915_private *i915
{
}
+static inline void i915_gpu_error_sysfs_setup(struct drm_i915_private *i915)
+{
+}
+
+static inline void i915_gpu_error_sysfs_teardown(struct drm_i915_private *i915)
+{
+}
+
#endif /* IS_ENABLED(CONFIG_DRM_I915_CAPTURE_ERROR) */
#endif /* _I915_GPU_ERROR_H_ */
diff --git a/drivers/gpu/drm/i915/i915_sysfs.c b/drivers/gpu/drm/i915/i915_sysfs.c
index e88bb4f04305..613decd47760 100644
--- a/drivers/gpu/drm/i915/i915_sysfs.c
+++ b/drivers/gpu/drm/i915/i915_sysfs.c
@@ -155,81 +155,6 @@ static const struct bin_attribute dpf_attrs_1 = {
.private = (void *)1
};
-#if IS_ENABLED(CONFIG_DRM_I915_CAPTURE_ERROR)
-
-static ssize_t error_state_read(struct file *filp, struct kobject *kobj,
- struct bin_attribute *attr, char *buf,
- loff_t off, size_t count)
-{
-
- struct device *kdev = kobj_to_dev(kobj);
- struct drm_i915_private *i915 = kdev_minor_to_i915(kdev);
- struct i915_gpu_coredump *gpu;
- ssize_t ret = 0;
-
- /*
- * FIXME: Concurrent clients triggering resets and reading + clearing
- * dumps can cause inconsistent sysfs reads when a user calls in with a
- * non-zero offset to complete a prior partial read but the
- * gpu_coredump has been cleared or replaced.
- */
-
- gpu = i915_first_error_state(i915);
- if (IS_ERR(gpu)) {
- ret = PTR_ERR(gpu);
- } else if (gpu) {
- ret = i915_gpu_coredump_copy_to_buffer(gpu, buf, off, count);
- i915_gpu_coredump_put(gpu);
- } else {
- const char *str = "No error state collected\n";
- size_t len = strlen(str);
-
- if (off < len) {
- ret = min_t(size_t, count, len - off);
- memcpy(buf, str + off, ret);
- }
- }
-
- return ret;
-}
-
-static ssize_t error_state_write(struct file *file, struct kobject *kobj,
- struct bin_attribute *attr, char *buf,
- loff_t off, size_t count)
-{
- struct device *kdev = kobj_to_dev(kobj);
- struct drm_i915_private *dev_priv = kdev_minor_to_i915(kdev);
-
- drm_dbg(&dev_priv->drm, "Resetting error state\n");
- i915_reset_error_state(dev_priv);
-
- return count;
-}
-
-static const struct bin_attribute error_state_attr = {
- .attr.name = "error",
- .attr.mode = S_IRUSR | S_IWUSR,
- .size = 0,
- .read = error_state_read,
- .write = error_state_write,
-};
-
-static void i915_setup_error_capture(struct device *kdev)
-{
- if (sysfs_create_bin_file(&kdev->kobj, &error_state_attr))
- drm_err(&kdev_minor_to_i915(kdev)->drm,
- "error_state sysfs setup failed\n");
-}
-
-static void i915_teardown_error_capture(struct device *kdev)
-{
- sysfs_remove_bin_file(&kdev->kobj, &error_state_attr);
-}
-#else
-static void i915_setup_error_capture(struct device *kdev) {}
-static void i915_teardown_error_capture(struct device *kdev) {}
-#endif
-
void i915_setup_sysfs(struct drm_i915_private *dev_priv)
{
struct device *kdev = dev_priv->drm.primary->kdev;
@@ -255,7 +180,7 @@ void i915_setup_sysfs(struct drm_i915_private *dev_priv)
drm_warn(&dev_priv->drm,
"failed to register GT sysfs directory\n");
- i915_setup_error_capture(kdev);
+ i915_gpu_error_sysfs_setup(dev_priv);
intel_engines_add_sysfs(dev_priv);
}
@@ -264,7 +189,7 @@ void i915_teardown_sysfs(struct drm_i915_private *dev_priv)
{
struct device *kdev = dev_priv->drm.primary->kdev;
- i915_teardown_error_capture(kdev);
+ i915_gpu_error_sysfs_teardown(dev_priv);
device_remove_bin_file(kdev, &dpf_attrs_1);
device_remove_bin_file(kdev, &dpf_attrs);
--
2.39.2
^ permalink raw reply related [flat|nested] 9+ messages in thread
* Re: [Intel-gfx] [PATCH 3/3] drm/i915: move gpu error sysfs to i915_gpu_error.c
2023-10-11 16:38 ` [Intel-gfx] [PATCH 3/3] drm/i915: move gpu error sysfs " Jani Nikula
@ 2023-10-11 17:25 ` John Harrison
2023-10-11 19:59 ` Jani Nikula
0 siblings, 1 reply; 9+ messages in thread
From: John Harrison @ 2023-10-11 17:25 UTC (permalink / raw)
To: Jani Nikula, intel-gfx
On 10/11/2023 09:38, Jani Nikula wrote:
> Hide gpu error specifics in i915_gpu_error.c. This is also cleaner wrt
> conditional compilation, as i915_gpu_error.c is only built with
> DRM_I915_CAPTURE_ERROR=y.
>
> With this, we can also make i915_first_error_state() static.
>
> Signed-off-by: Jani Nikula <jani.nikula@intel.com>
> ---
> drivers/gpu/drm/i915/i915_gpu_error.c | 75 ++++++++++++++++++++++++-
> drivers/gpu/drm/i915/i915_gpu_error.h | 17 +++---
> drivers/gpu/drm/i915/i915_sysfs.c | 79 +--------------------------
> 3 files changed, 86 insertions(+), 85 deletions(-)
>
> diff --git a/drivers/gpu/drm/i915/i915_gpu_error.c b/drivers/gpu/drm/i915/i915_gpu_error.c
> index b4c8459deb7b..f9e750217f18 100644
> --- a/drivers/gpu/drm/i915/i915_gpu_error.c
> +++ b/drivers/gpu/drm/i915/i915_gpu_error.c
> @@ -57,6 +57,7 @@
> #include "i915_memcpy.h"
> #include "i915_reg.h"
> #include "i915_scatterlist.h"
> +#include "i915_sysfs.h"
> #include "i915_utils.h"
>
> #define ALLOW_FAIL (__GFP_KSWAPD_RECLAIM | __GFP_RETRY_MAYFAIL | __GFP_NOWARN)
> @@ -2208,7 +2209,7 @@ void i915_capture_error_state(struct intel_gt *gt,
> i915_gpu_coredump_put(error);
> }
>
> -struct i915_gpu_coredump *
> +static struct i915_gpu_coredump *
> i915_first_error_state(struct drm_i915_private *i915)
> {
> struct i915_gpu_coredump *error;
> @@ -2484,3 +2485,75 @@ void i915_gpu_error_debugfs_register(struct drm_i915_private *i915)
> debugfs_create_file("i915_gpu_info", 0644, minor->debugfs_root, i915,
> &i915_gpu_info_fops);
> }
> +
> +static ssize_t error_state_read(struct file *filp, struct kobject *kobj,
> + struct bin_attribute *attr, char *buf,
> + loff_t off, size_t count)
> +{
> +
> + struct device *kdev = kobj_to_dev(kobj);
> + struct drm_i915_private *i915 = kdev_minor_to_i915(kdev);
> + struct i915_gpu_coredump *gpu;
> + ssize_t ret = 0;
> +
> + /*
> + * FIXME: Concurrent clients triggering resets and reading + clearing
> + * dumps can cause inconsistent sysfs reads when a user calls in with a
> + * non-zero offset to complete a prior partial read but the
> + * gpu_coredump has been cleared or replaced.
> + */
> +
> + gpu = i915_first_error_state(i915);
> + if (IS_ERR(gpu)) {
> + ret = PTR_ERR(gpu);
> + } else if (gpu) {
> + ret = i915_gpu_coredump_copy_to_buffer(gpu, buf, off, count);
> + i915_gpu_coredump_put(gpu);
> + } else {
> + const char *str = "No error state collected\n";
> + size_t len = strlen(str);
> +
> + if (off < len) {
> + ret = min_t(size_t, count, len - off);
> + memcpy(buf, str + off, ret);
> + }
> + }
Can this and the debugfs equivalent not be common code? It seems like
the implementations are conceptually the same even if the code currently
looks quite different.
John.
> +
> + return ret;
> +}
> +
> +static ssize_t error_state_write(struct file *file, struct kobject *kobj,
> + struct bin_attribute *attr, char *buf,
> + loff_t off, size_t count)
> +{
> + struct device *kdev = kobj_to_dev(kobj);
> + struct drm_i915_private *dev_priv = kdev_minor_to_i915(kdev);
> +
> + drm_dbg(&dev_priv->drm, "Resetting error state\n");
> + i915_reset_error_state(dev_priv);
> +
> + return count;
> +}
> +
> +static const struct bin_attribute error_state_attr = {
> + .attr.name = "error",
> + .attr.mode = S_IRUSR | S_IWUSR,
> + .size = 0,
> + .read = error_state_read,
> + .write = error_state_write,
> +};
> +
> +void i915_gpu_error_sysfs_setup(struct drm_i915_private *i915)
> +{
> + struct device *kdev = i915->drm.primary->kdev;
> +
> + if (sysfs_create_bin_file(&kdev->kobj, &error_state_attr))
> + drm_err(&i915->drm, "error_state sysfs setup failed\n");
> +}
> +
> +void i915_gpu_error_sysfs_teardown(struct drm_i915_private *i915)
> +{
> + struct device *kdev = i915->drm.primary->kdev;
> +
> + sysfs_remove_bin_file(&kdev->kobj, &error_state_attr);
> +}
> diff --git a/drivers/gpu/drm/i915/i915_gpu_error.h b/drivers/gpu/drm/i915/i915_gpu_error.h
> index a6f2a7518cf0..68c964d6720a 100644
> --- a/drivers/gpu/drm/i915/i915_gpu_error.h
> +++ b/drivers/gpu/drm/i915/i915_gpu_error.h
> @@ -323,11 +323,12 @@ static inline void i915_gpu_coredump_put(struct i915_gpu_coredump *gpu)
> kref_put(&gpu->ref, __i915_gpu_coredump_free);
> }
>
> -struct i915_gpu_coredump *i915_first_error_state(struct drm_i915_private *i915);
> void i915_reset_error_state(struct drm_i915_private *i915);
> void i915_disable_error_state(struct drm_i915_private *i915, int err);
>
> void i915_gpu_error_debugfs_register(struct drm_i915_private *i915);
> +void i915_gpu_error_sysfs_setup(struct drm_i915_private *i915);
> +void i915_gpu_error_sysfs_teardown(struct drm_i915_private *i915);
>
> #else
>
> @@ -396,12 +397,6 @@ static inline void i915_gpu_coredump_put(struct i915_gpu_coredump *gpu)
> {
> }
>
> -static inline struct i915_gpu_coredump *
> -i915_first_error_state(struct drm_i915_private *i915)
> -{
> - return ERR_PTR(-ENODEV);
> -}
> -
> static inline void i915_reset_error_state(struct drm_i915_private *i915)
> {
> }
> @@ -415,6 +410,14 @@ static inline void i915_gpu_error_debugfs_register(struct drm_i915_private *i915
> {
> }
>
> +static inline void i915_gpu_error_sysfs_setup(struct drm_i915_private *i915)
> +{
> +}
> +
> +static inline void i915_gpu_error_sysfs_teardown(struct drm_i915_private *i915)
> +{
> +}
> +
> #endif /* IS_ENABLED(CONFIG_DRM_I915_CAPTURE_ERROR) */
>
> #endif /* _I915_GPU_ERROR_H_ */
> diff --git a/drivers/gpu/drm/i915/i915_sysfs.c b/drivers/gpu/drm/i915/i915_sysfs.c
> index e88bb4f04305..613decd47760 100644
> --- a/drivers/gpu/drm/i915/i915_sysfs.c
> +++ b/drivers/gpu/drm/i915/i915_sysfs.c
> @@ -155,81 +155,6 @@ static const struct bin_attribute dpf_attrs_1 = {
> .private = (void *)1
> };
>
> -#if IS_ENABLED(CONFIG_DRM_I915_CAPTURE_ERROR)
> -
> -static ssize_t error_state_read(struct file *filp, struct kobject *kobj,
> - struct bin_attribute *attr, char *buf,
> - loff_t off, size_t count)
> -{
> -
> - struct device *kdev = kobj_to_dev(kobj);
> - struct drm_i915_private *i915 = kdev_minor_to_i915(kdev);
> - struct i915_gpu_coredump *gpu;
> - ssize_t ret = 0;
> -
> - /*
> - * FIXME: Concurrent clients triggering resets and reading + clearing
> - * dumps can cause inconsistent sysfs reads when a user calls in with a
> - * non-zero offset to complete a prior partial read but the
> - * gpu_coredump has been cleared or replaced.
> - */
> -
> - gpu = i915_first_error_state(i915);
> - if (IS_ERR(gpu)) {
> - ret = PTR_ERR(gpu);
> - } else if (gpu) {
> - ret = i915_gpu_coredump_copy_to_buffer(gpu, buf, off, count);
> - i915_gpu_coredump_put(gpu);
> - } else {
> - const char *str = "No error state collected\n";
> - size_t len = strlen(str);
> -
> - if (off < len) {
> - ret = min_t(size_t, count, len - off);
> - memcpy(buf, str + off, ret);
> - }
> - }
> -
> - return ret;
> -}
> -
> -static ssize_t error_state_write(struct file *file, struct kobject *kobj,
> - struct bin_attribute *attr, char *buf,
> - loff_t off, size_t count)
> -{
> - struct device *kdev = kobj_to_dev(kobj);
> - struct drm_i915_private *dev_priv = kdev_minor_to_i915(kdev);
> -
> - drm_dbg(&dev_priv->drm, "Resetting error state\n");
> - i915_reset_error_state(dev_priv);
> -
> - return count;
> -}
> -
> -static const struct bin_attribute error_state_attr = {
> - .attr.name = "error",
> - .attr.mode = S_IRUSR | S_IWUSR,
> - .size = 0,
> - .read = error_state_read,
> - .write = error_state_write,
> -};
> -
> -static void i915_setup_error_capture(struct device *kdev)
> -{
> - if (sysfs_create_bin_file(&kdev->kobj, &error_state_attr))
> - drm_err(&kdev_minor_to_i915(kdev)->drm,
> - "error_state sysfs setup failed\n");
> -}
> -
> -static void i915_teardown_error_capture(struct device *kdev)
> -{
> - sysfs_remove_bin_file(&kdev->kobj, &error_state_attr);
> -}
> -#else
> -static void i915_setup_error_capture(struct device *kdev) {}
> -static void i915_teardown_error_capture(struct device *kdev) {}
> -#endif
> -
> void i915_setup_sysfs(struct drm_i915_private *dev_priv)
> {
> struct device *kdev = dev_priv->drm.primary->kdev;
> @@ -255,7 +180,7 @@ void i915_setup_sysfs(struct drm_i915_private *dev_priv)
> drm_warn(&dev_priv->drm,
> "failed to register GT sysfs directory\n");
>
> - i915_setup_error_capture(kdev);
> + i915_gpu_error_sysfs_setup(dev_priv);
>
> intel_engines_add_sysfs(dev_priv);
> }
> @@ -264,7 +189,7 @@ void i915_teardown_sysfs(struct drm_i915_private *dev_priv)
> {
> struct device *kdev = dev_priv->drm.primary->kdev;
>
> - i915_teardown_error_capture(kdev);
> + i915_gpu_error_sysfs_teardown(dev_priv);
>
> device_remove_bin_file(kdev, &dpf_attrs_1);
> device_remove_bin_file(kdev, &dpf_attrs);
^ permalink raw reply [flat|nested] 9+ messages in thread
* Re: [Intel-gfx] [PATCH 3/3] drm/i915: move gpu error sysfs to i915_gpu_error.c
2023-10-11 17:25 ` John Harrison
@ 2023-10-11 19:59 ` Jani Nikula
0 siblings, 0 replies; 9+ messages in thread
From: Jani Nikula @ 2023-10-11 19:59 UTC (permalink / raw)
To: John Harrison, intel-gfx
On Wed, 11 Oct 2023, John Harrison <john.c.harrison@intel.com> wrote:
> On 10/11/2023 09:38, Jani Nikula wrote:
>> Hide gpu error specifics in i915_gpu_error.c. This is also cleaner wrt
>> conditional compilation, as i915_gpu_error.c is only built with
>> DRM_I915_CAPTURE_ERROR=y.
>>
>> With this, we can also make i915_first_error_state() static.
>>
>> Signed-off-by: Jani Nikula <jani.nikula@intel.com>
>> ---
>> drivers/gpu/drm/i915/i915_gpu_error.c | 75 ++++++++++++++++++++++++-
>> drivers/gpu/drm/i915/i915_gpu_error.h | 17 +++---
>> drivers/gpu/drm/i915/i915_sysfs.c | 79 +--------------------------
>> 3 files changed, 86 insertions(+), 85 deletions(-)
>>
>> diff --git a/drivers/gpu/drm/i915/i915_gpu_error.c b/drivers/gpu/drm/i915/i915_gpu_error.c
>> index b4c8459deb7b..f9e750217f18 100644
>> --- a/drivers/gpu/drm/i915/i915_gpu_error.c
>> +++ b/drivers/gpu/drm/i915/i915_gpu_error.c
>> @@ -57,6 +57,7 @@
>> #include "i915_memcpy.h"
>> #include "i915_reg.h"
>> #include "i915_scatterlist.h"
>> +#include "i915_sysfs.h"
>> #include "i915_utils.h"
>>
>> #define ALLOW_FAIL (__GFP_KSWAPD_RECLAIM | __GFP_RETRY_MAYFAIL | __GFP_NOWARN)
>> @@ -2208,7 +2209,7 @@ void i915_capture_error_state(struct intel_gt *gt,
>> i915_gpu_coredump_put(error);
>> }
>>
>> -struct i915_gpu_coredump *
>> +static struct i915_gpu_coredump *
>> i915_first_error_state(struct drm_i915_private *i915)
>> {
>> struct i915_gpu_coredump *error;
>> @@ -2484,3 +2485,75 @@ void i915_gpu_error_debugfs_register(struct drm_i915_private *i915)
>> debugfs_create_file("i915_gpu_info", 0644, minor->debugfs_root, i915,
>> &i915_gpu_info_fops);
>> }
>> +
>> +static ssize_t error_state_read(struct file *filp, struct kobject *kobj,
>> + struct bin_attribute *attr, char *buf,
>> + loff_t off, size_t count)
>> +{
>> +
>> + struct device *kdev = kobj_to_dev(kobj);
>> + struct drm_i915_private *i915 = kdev_minor_to_i915(kdev);
>> + struct i915_gpu_coredump *gpu;
>> + ssize_t ret = 0;
>> +
>> + /*
>> + * FIXME: Concurrent clients triggering resets and reading + clearing
>> + * dumps can cause inconsistent sysfs reads when a user calls in with a
>> + * non-zero offset to complete a prior partial read but the
>> + * gpu_coredump has been cleared or replaced.
>> + */
>> +
>> + gpu = i915_first_error_state(i915);
>> + if (IS_ERR(gpu)) {
>> + ret = PTR_ERR(gpu);
>> + } else if (gpu) {
>> + ret = i915_gpu_coredump_copy_to_buffer(gpu, buf, off, count);
>> + i915_gpu_coredump_put(gpu);
>> + } else {
>> + const char *str = "No error state collected\n";
>> + size_t len = strlen(str);
>> +
>> + if (off < len) {
>> + ret = min_t(size_t, count, len - off);
>> + memcpy(buf, str + off, ret);
>> + }
>> + }
> Can this and the debugfs equivalent not be common code? It seems like
> the implementations are conceptually the same even if the code currently
> looks quite different.
They probably can, but this is just the code movement part. I initially
sent a bigger refactoring series [1], but decided to chop it up and send
it in smaller pieces, to not burden the reviewers. The first part [2]
has already been merged, and this is follow-up.
BR,
Jani.
[1] https://lore.kernel.org/r/cover.1695924021.git.jani.nikula@intel.com
[2] https://lore.kernel.org/r/cover.1696236329.git.jani.nikula@intel.com
>
> John.
>
>> +
>> + return ret;
>> +}
>> +
>> +static ssize_t error_state_write(struct file *file, struct kobject *kobj,
>> + struct bin_attribute *attr, char *buf,
>> + loff_t off, size_t count)
>> +{
>> + struct device *kdev = kobj_to_dev(kobj);
>> + struct drm_i915_private *dev_priv = kdev_minor_to_i915(kdev);
>> +
>> + drm_dbg(&dev_priv->drm, "Resetting error state\n");
>> + i915_reset_error_state(dev_priv);
>> +
>> + return count;
>> +}
>> +
>> +static const struct bin_attribute error_state_attr = {
>> + .attr.name = "error",
>> + .attr.mode = S_IRUSR | S_IWUSR,
>> + .size = 0,
>> + .read = error_state_read,
>> + .write = error_state_write,
>> +};
>> +
>> +void i915_gpu_error_sysfs_setup(struct drm_i915_private *i915)
>> +{
>> + struct device *kdev = i915->drm.primary->kdev;
>> +
>> + if (sysfs_create_bin_file(&kdev->kobj, &error_state_attr))
>> + drm_err(&i915->drm, "error_state sysfs setup failed\n");
>> +}
>> +
>> +void i915_gpu_error_sysfs_teardown(struct drm_i915_private *i915)
>> +{
>> + struct device *kdev = i915->drm.primary->kdev;
>> +
>> + sysfs_remove_bin_file(&kdev->kobj, &error_state_attr);
>> +}
>> diff --git a/drivers/gpu/drm/i915/i915_gpu_error.h b/drivers/gpu/drm/i915/i915_gpu_error.h
>> index a6f2a7518cf0..68c964d6720a 100644
>> --- a/drivers/gpu/drm/i915/i915_gpu_error.h
>> +++ b/drivers/gpu/drm/i915/i915_gpu_error.h
>> @@ -323,11 +323,12 @@ static inline void i915_gpu_coredump_put(struct i915_gpu_coredump *gpu)
>> kref_put(&gpu->ref, __i915_gpu_coredump_free);
>> }
>>
>> -struct i915_gpu_coredump *i915_first_error_state(struct drm_i915_private *i915);
>> void i915_reset_error_state(struct drm_i915_private *i915);
>> void i915_disable_error_state(struct drm_i915_private *i915, int err);
>>
>> void i915_gpu_error_debugfs_register(struct drm_i915_private *i915);
>> +void i915_gpu_error_sysfs_setup(struct drm_i915_private *i915);
>> +void i915_gpu_error_sysfs_teardown(struct drm_i915_private *i915);
>>
>> #else
>>
>> @@ -396,12 +397,6 @@ static inline void i915_gpu_coredump_put(struct i915_gpu_coredump *gpu)
>> {
>> }
>>
>> -static inline struct i915_gpu_coredump *
>> -i915_first_error_state(struct drm_i915_private *i915)
>> -{
>> - return ERR_PTR(-ENODEV);
>> -}
>> -
>> static inline void i915_reset_error_state(struct drm_i915_private *i915)
>> {
>> }
>> @@ -415,6 +410,14 @@ static inline void i915_gpu_error_debugfs_register(struct drm_i915_private *i915
>> {
>> }
>>
>> +static inline void i915_gpu_error_sysfs_setup(struct drm_i915_private *i915)
>> +{
>> +}
>> +
>> +static inline void i915_gpu_error_sysfs_teardown(struct drm_i915_private *i915)
>> +{
>> +}
>> +
>> #endif /* IS_ENABLED(CONFIG_DRM_I915_CAPTURE_ERROR) */
>>
>> #endif /* _I915_GPU_ERROR_H_ */
>> diff --git a/drivers/gpu/drm/i915/i915_sysfs.c b/drivers/gpu/drm/i915/i915_sysfs.c
>> index e88bb4f04305..613decd47760 100644
>> --- a/drivers/gpu/drm/i915/i915_sysfs.c
>> +++ b/drivers/gpu/drm/i915/i915_sysfs.c
>> @@ -155,81 +155,6 @@ static const struct bin_attribute dpf_attrs_1 = {
>> .private = (void *)1
>> };
>>
>> -#if IS_ENABLED(CONFIG_DRM_I915_CAPTURE_ERROR)
>> -
>> -static ssize_t error_state_read(struct file *filp, struct kobject *kobj,
>> - struct bin_attribute *attr, char *buf,
>> - loff_t off, size_t count)
>> -{
>> -
>> - struct device *kdev = kobj_to_dev(kobj);
>> - struct drm_i915_private *i915 = kdev_minor_to_i915(kdev);
>> - struct i915_gpu_coredump *gpu;
>> - ssize_t ret = 0;
>> -
>> - /*
>> - * FIXME: Concurrent clients triggering resets and reading + clearing
>> - * dumps can cause inconsistent sysfs reads when a user calls in with a
>> - * non-zero offset to complete a prior partial read but the
>> - * gpu_coredump has been cleared or replaced.
>> - */
>> -
>> - gpu = i915_first_error_state(i915);
>> - if (IS_ERR(gpu)) {
>> - ret = PTR_ERR(gpu);
>> - } else if (gpu) {
>> - ret = i915_gpu_coredump_copy_to_buffer(gpu, buf, off, count);
>> - i915_gpu_coredump_put(gpu);
>> - } else {
>> - const char *str = "No error state collected\n";
>> - size_t len = strlen(str);
>> -
>> - if (off < len) {
>> - ret = min_t(size_t, count, len - off);
>> - memcpy(buf, str + off, ret);
>> - }
>> - }
>> -
>> - return ret;
>> -}
>> -
>> -static ssize_t error_state_write(struct file *file, struct kobject *kobj,
>> - struct bin_attribute *attr, char *buf,
>> - loff_t off, size_t count)
>> -{
>> - struct device *kdev = kobj_to_dev(kobj);
>> - struct drm_i915_private *dev_priv = kdev_minor_to_i915(kdev);
>> -
>> - drm_dbg(&dev_priv->drm, "Resetting error state\n");
>> - i915_reset_error_state(dev_priv);
>> -
>> - return count;
>> -}
>> -
>> -static const struct bin_attribute error_state_attr = {
>> - .attr.name = "error",
>> - .attr.mode = S_IRUSR | S_IWUSR,
>> - .size = 0,
>> - .read = error_state_read,
>> - .write = error_state_write,
>> -};
>> -
>> -static void i915_setup_error_capture(struct device *kdev)
>> -{
>> - if (sysfs_create_bin_file(&kdev->kobj, &error_state_attr))
>> - drm_err(&kdev_minor_to_i915(kdev)->drm,
>> - "error_state sysfs setup failed\n");
>> -}
>> -
>> -static void i915_teardown_error_capture(struct device *kdev)
>> -{
>> - sysfs_remove_bin_file(&kdev->kobj, &error_state_attr);
>> -}
>> -#else
>> -static void i915_setup_error_capture(struct device *kdev) {}
>> -static void i915_teardown_error_capture(struct device *kdev) {}
>> -#endif
>> -
>> void i915_setup_sysfs(struct drm_i915_private *dev_priv)
>> {
>> struct device *kdev = dev_priv->drm.primary->kdev;
>> @@ -255,7 +180,7 @@ void i915_setup_sysfs(struct drm_i915_private *dev_priv)
>> drm_warn(&dev_priv->drm,
>> "failed to register GT sysfs directory\n");
>>
>> - i915_setup_error_capture(kdev);
>> + i915_gpu_error_sysfs_setup(dev_priv);
>>
>> intel_engines_add_sysfs(dev_priv);
>> }
>> @@ -264,7 +189,7 @@ void i915_teardown_sysfs(struct drm_i915_private *dev_priv)
>> {
>> struct device *kdev = dev_priv->drm.primary->kdev;
>>
>> - i915_teardown_error_capture(kdev);
>> + i915_gpu_error_sysfs_teardown(dev_priv);
>>
>> device_remove_bin_file(kdev, &dpf_attrs_1);
>> device_remove_bin_file(kdev, &dpf_attrs);
>
--
Jani Nikula, Intel
^ permalink raw reply [flat|nested] 9+ messages in thread
* [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for series starting with [1/3] drm/i915: make some error capture functions static (rev2)
2023-10-11 16:38 [Intel-gfx] [PATCH 1/3] drm/i915: make some error capture functions static Jani Nikula
2023-10-11 16:38 ` [Intel-gfx] [PATCH 2/3] drm/i915: move gpu error debugfs to i915_gpu_error.c Jani Nikula
2023-10-11 16:38 ` [Intel-gfx] [PATCH 3/3] drm/i915: move gpu error sysfs " Jani Nikula
@ 2023-10-13 3:06 ` Patchwork
2023-10-13 3:06 ` [Intel-gfx] ✗ Fi.CI.SPARSE: " Patchwork
` (2 subsequent siblings)
5 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2023-10-13 3:06 UTC (permalink / raw)
To: Jani Nikula; +Cc: intel-gfx
== Series Details ==
Series: series starting with [1/3] drm/i915: make some error capture functions static (rev2)
URL : https://patchwork.freedesktop.org/series/124993/
State : warning
== Summary ==
Error: dim checkpatch failed
e2e0d9ee6ffa drm/i915: make some error capture functions static
dff6f9c490cb drm/i915: move gpu error debugfs to i915_gpu_error.c
f20d8e8f40f9 drm/i915: move gpu error sysfs to i915_gpu_error.c
-:44: CHECK:BRACES: Blank lines aren't necessary after an open brace '{'
#44: FILE: drivers/gpu/drm/i915/i915_gpu_error.c:2493:
+{
+
-:91: WARNING:SYMBOLIC_PERMS: Symbolic permissions 'S_IRUSR | S_IWUSR' are not preferred. Consider using octal permissions '0600'.
#91: FILE: drivers/gpu/drm/i915/i915_gpu_error.c:2540:
+ .attr.mode = S_IRUSR | S_IWUSR,
total: 0 errors, 1 warnings, 1 checks, 226 lines checked
^ permalink raw reply [flat|nested] 9+ messages in thread
* [Intel-gfx] ✗ Fi.CI.SPARSE: warning for series starting with [1/3] drm/i915: make some error capture functions static (rev2)
2023-10-11 16:38 [Intel-gfx] [PATCH 1/3] drm/i915: make some error capture functions static Jani Nikula
` (2 preceding siblings ...)
2023-10-13 3:06 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for series starting with [1/3] drm/i915: make some error capture functions static (rev2) Patchwork
@ 2023-10-13 3:06 ` Patchwork
2023-10-13 3:19 ` [Intel-gfx] ✓ Fi.CI.BAT: success " Patchwork
2023-10-14 1:55 ` [Intel-gfx] ✓ Fi.CI.IGT: " Patchwork
5 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2023-10-13 3:06 UTC (permalink / raw)
To: Jani Nikula; +Cc: intel-gfx
== Series Details ==
Series: series starting with [1/3] drm/i915: make some error capture functions static (rev2)
URL : https://patchwork.freedesktop.org/series/124993/
State : warning
== Summary ==
Error: dim sparse failed
Sparse version: v0.6.2
Fast mode used, each commit won't be checked separately.
^ permalink raw reply [flat|nested] 9+ messages in thread
* [Intel-gfx] ✓ Fi.CI.BAT: success for series starting with [1/3] drm/i915: make some error capture functions static (rev2)
2023-10-11 16:38 [Intel-gfx] [PATCH 1/3] drm/i915: make some error capture functions static Jani Nikula
` (3 preceding siblings ...)
2023-10-13 3:06 ` [Intel-gfx] ✗ Fi.CI.SPARSE: " Patchwork
@ 2023-10-13 3:19 ` Patchwork
2023-10-14 1:55 ` [Intel-gfx] ✓ Fi.CI.IGT: " Patchwork
5 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2023-10-13 3:19 UTC (permalink / raw)
To: Jani Nikula; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 10605 bytes --]
== Series Details ==
Series: series starting with [1/3] drm/i915: make some error capture functions static (rev2)
URL : https://patchwork.freedesktop.org/series/124993/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_13749 -> Patchwork_124993v2
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/index.html
Participating hosts (37 -> 37)
------------------------------
Additional (2): bat-dg2-9 fi-pnv-d510
Missing (2): bat-adlp-11 fi-snb-2520m
Known issues
------------
Here are the changes found in Patchwork_124993v2 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@gem_exec_suspend@basic-s0@smem:
- bat-dg2-9: NOTRUN -> [INCOMPLETE][1] ([i915#9275])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/bat-dg2-9/igt@gem_exec_suspend@basic-s0@smem.html
* igt@gem_mmap@basic:
- bat-dg2-9: NOTRUN -> [SKIP][2] ([i915#4083])
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/bat-dg2-9/igt@gem_mmap@basic.html
* igt@gem_mmap_gtt@basic:
- bat-dg2-9: NOTRUN -> [SKIP][3] ([i915#4077]) +2 other tests skip
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/bat-dg2-9/igt@gem_mmap_gtt@basic.html
* igt@gem_render_tiled_blits@basic:
- bat-dg2-9: NOTRUN -> [SKIP][4] ([i915#4079]) +1 other test skip
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/bat-dg2-9/igt@gem_render_tiled_blits@basic.html
* igt@i915_pm_rps@basic-api:
- bat-dg2-9: NOTRUN -> [SKIP][5] ([i915#6621])
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/bat-dg2-9/igt@i915_pm_rps@basic-api.html
* igt@i915_selftest@live@mman:
- bat-rpls-1: [PASS][6] -> [TIMEOUT][7] ([i915#6794] / [i915#7392])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13749/bat-rpls-1/igt@i915_selftest@live@mman.html
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/bat-rpls-1/igt@i915_selftest@live@mman.html
* igt@i915_suspend@basic-s2idle-without-i915:
- bat-rpls-1: [PASS][8] -> [WARN][9] ([i915#8747])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13749/bat-rpls-1/igt@i915_suspend@basic-s2idle-without-i915.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/bat-rpls-1/igt@i915_suspend@basic-s2idle-without-i915.html
* igt@kms_addfb_basic@addfb25-y-tiled-small-legacy:
- bat-dg2-9: NOTRUN -> [SKIP][10] ([i915#5190])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/bat-dg2-9/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html
* igt@kms_addfb_basic@basic-y-tiled-legacy:
- bat-dg2-9: NOTRUN -> [SKIP][11] ([i915#4215] / [i915#5190])
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/bat-dg2-9/igt@kms_addfb_basic@basic-y-tiled-legacy.html
* igt@kms_addfb_basic@framebuffer-vs-set-tiling:
- bat-dg2-9: NOTRUN -> [SKIP][12] ([i915#4212]) +6 other tests skip
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/bat-dg2-9/igt@kms_addfb_basic@framebuffer-vs-set-tiling.html
* igt@kms_addfb_basic@tile-pitch-mismatch:
- bat-dg2-9: NOTRUN -> [SKIP][13] ([i915#4212] / [i915#5608])
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/bat-dg2-9/igt@kms_addfb_basic@tile-pitch-mismatch.html
* igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy:
- bat-dg2-9: NOTRUN -> [SKIP][14] ([i915#4103] / [i915#4213] / [i915#5608]) +1 other test skip
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/bat-dg2-9/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html
* igt@kms_force_connector_basic@force-load-detect:
- bat-dg2-9: NOTRUN -> [SKIP][15] ([fdo#109285])
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/bat-dg2-9/igt@kms_force_connector_basic@force-load-detect.html
* igt@kms_force_connector_basic@prune-stale-modes:
- bat-dg2-9: NOTRUN -> [SKIP][16] ([i915#5274])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/bat-dg2-9/igt@kms_force_connector_basic@prune-stale-modes.html
* igt@kms_psr@primary_page_flip:
- fi-pnv-d510: NOTRUN -> [SKIP][17] ([fdo#109271]) +29 other tests skip
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/fi-pnv-d510/igt@kms_psr@primary_page_flip.html
* igt@kms_psr@sprite_plane_onoff:
- bat-dg2-9: NOTRUN -> [SKIP][18] ([i915#1072]) +3 other tests skip
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/bat-dg2-9/igt@kms_psr@sprite_plane_onoff.html
* igt@kms_setmode@basic-clone-single-crtc:
- bat-dg2-9: NOTRUN -> [SKIP][19] ([i915#3555] / [i915#4098])
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/bat-dg2-9/igt@kms_setmode@basic-clone-single-crtc.html
* igt@prime_vgem@basic-fence-flip:
- bat-dg2-9: NOTRUN -> [SKIP][20] ([i915#3708])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/bat-dg2-9/igt@prime_vgem@basic-fence-flip.html
* igt@prime_vgem@basic-fence-mmap:
- bat-dg2-9: NOTRUN -> [SKIP][21] ([i915#3708] / [i915#4077]) +1 other test skip
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/bat-dg2-9/igt@prime_vgem@basic-fence-mmap.html
* igt@prime_vgem@basic-write:
- bat-dg2-9: NOTRUN -> [SKIP][22] ([i915#3291] / [i915#3708]) +2 other tests skip
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/bat-dg2-9/igt@prime_vgem@basic-write.html
#### Possible fixes ####
* igt@gem_exec_suspend@basic-s0@smem:
- bat-jsl-3: [INCOMPLETE][23] ([i915#9275]) -> [PASS][24]
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13749/bat-jsl-3/igt@gem_exec_suspend@basic-s0@smem.html
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/bat-jsl-3/igt@gem_exec_suspend@basic-s0@smem.html
* igt@gem_exec_suspend@basic-s3@smem:
- bat-mtlp-8: [ABORT][25] ([i915#8213] / [i915#9262]) -> [PASS][26]
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13749/bat-mtlp-8/igt@gem_exec_suspend@basic-s3@smem.html
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/bat-mtlp-8/igt@gem_exec_suspend@basic-s3@smem.html
* igt@i915_suspend@basic-s2idle-without-i915:
- bat-mtlp-6: [FAIL][27] ([fdo#103375]) -> [PASS][28] +2 other tests pass
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13749/bat-mtlp-6/igt@i915_suspend@basic-s2idle-without-i915.html
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/bat-mtlp-6/igt@i915_suspend@basic-s2idle-without-i915.html
* igt@i915_suspend@basic-s3-without-i915:
- bat-jsl-3: [FAIL][29] ([fdo#103375]) -> [PASS][30]
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13749/bat-jsl-3/igt@i915_suspend@basic-s3-without-i915.html
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/bat-jsl-3/igt@i915_suspend@basic-s3-without-i915.html
* igt@kms_chamelium_edid@hdmi-edid-read:
- {bat-dg2-13}: [DMESG-WARN][31] ([i915#7952]) -> [PASS][32]
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13749/bat-dg2-13/igt@kms_chamelium_edid@hdmi-edid-read.html
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/bat-dg2-13/igt@kms_chamelium_edid@hdmi-edid-read.html
* igt@kms_hdmi_inject@inject-audio:
- fi-kbl-guc: [FAIL][33] ([IGT#3]) -> [PASS][34]
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13749/fi-kbl-guc/igt@kms_hdmi_inject@inject-audio.html
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/fi-kbl-guc/igt@kms_hdmi_inject@inject-audio.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[IGT#3]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/3
[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#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708
[i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
[i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
[i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098
[i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213
[i915#4215]: https://gitlab.freedesktop.org/drm/intel/issues/4215
[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#5608]: https://gitlab.freedesktop.org/drm/intel/issues/5608
[i915#6621]: https://gitlab.freedesktop.org/drm/intel/issues/6621
[i915#6794]: https://gitlab.freedesktop.org/drm/intel/issues/6794
[i915#7392]: https://gitlab.freedesktop.org/drm/intel/issues/7392
[i915#7952]: https://gitlab.freedesktop.org/drm/intel/issues/7952
[i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213
[i915#8747]: https://gitlab.freedesktop.org/drm/intel/issues/8747
[i915#9262]: https://gitlab.freedesktop.org/drm/intel/issues/9262
[i915#9275]: https://gitlab.freedesktop.org/drm/intel/issues/9275
Build changes
-------------
* Linux: CI_DRM_13749 -> Patchwork_124993v2
CI-20190529: 20190529
CI_DRM_13749: 09d775a292872ee2dab9fbf58ae774701d3b53bd @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_7533: 7533
Patchwork_124993v2: 09d775a292872ee2dab9fbf58ae774701d3b53bd @ git://anongit.freedesktop.org/gfx-ci/linux
### Linux commits
705ee25f6f2e drm/i915: move gpu error sysfs to i915_gpu_error.c
224df0a67041 drm/i915: move gpu error debugfs to i915_gpu_error.c
8c24894ac181 drm/i915: make some error capture functions static
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/index.html
[-- Attachment #2: Type: text/html, Size: 12349 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
* [Intel-gfx] ✓ Fi.CI.IGT: success for series starting with [1/3] drm/i915: make some error capture functions static (rev2)
2023-10-11 16:38 [Intel-gfx] [PATCH 1/3] drm/i915: make some error capture functions static Jani Nikula
` (4 preceding siblings ...)
2023-10-13 3:19 ` [Intel-gfx] ✓ Fi.CI.BAT: success " Patchwork
@ 2023-10-14 1:55 ` Patchwork
5 siblings, 0 replies; 9+ messages in thread
From: Patchwork @ 2023-10-14 1:55 UTC (permalink / raw)
To: Jani Nikula; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 65662 bytes --]
== Series Details ==
Series: series starting with [1/3] drm/i915: make some error capture functions static (rev2)
URL : https://patchwork.freedesktop.org/series/124993/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_13749_full -> Patchwork_124993v2_full
====================================================
Summary
-------
**SUCCESS**
No regressions found.
Participating hosts (9 -> 9)
------------------------------
No changes in participating hosts
New tests
---------
New tests have been introduced between CI_DRM_13749_full and Patchwork_124993v2_full:
### New IGT tests (1) ###
* igt@kms_content_protection@atomic@pipe-a-dp-4:
- Statuses : 1 timeout(s)
- Exec time: [0.0] s
Known issues
------------
Here are the changes found in Patchwork_124993v2_full that come from known issues:
### CI changes ###
#### Possible fixes ####
* boot:
- shard-glk: ([PASS][1], [PASS][2], [PASS][3], [PASS][4], [PASS][5], [PASS][6], [PASS][7], [PASS][8], [PASS][9], [PASS][10], [FAIL][11], [PASS][12], [FAIL][13], [PASS][14], [PASS][15], [PASS][16], [PASS][17], [PASS][18], [PASS][19], [PASS][20], [PASS][21], [PASS][22], [PASS][23], [PASS][24], [PASS][25]) ([i915#8293]) -> ([PASS][26], [PASS][27], [PASS][28], [PASS][29], [PASS][30], [PASS][31], [PASS][32], [PASS][33], [PASS][34], [PASS][35], [PASS][36], [PASS][37], [PASS][38], [PASS][39], [PASS][40], [PASS][41], [PASS][42], [PASS][43], [PASS][44], [PASS][45], [PASS][46], [PASS][47], [PASS][48], [PASS][49])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13749/shard-glk9/boot.html
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13749/shard-glk9/boot.html
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13749/shard-glk9/boot.html
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13749/shard-glk8/boot.html
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13749/shard-glk8/boot.html
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13749/shard-glk8/boot.html
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13749/shard-glk7/boot.html
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13749/shard-glk7/boot.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13749/shard-glk6/boot.html
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13749/shard-glk6/boot.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13749/shard-glk6/boot.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13749/shard-glk5/boot.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13749/shard-glk5/boot.html
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13749/shard-glk4/boot.html
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13749/shard-glk4/boot.html
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13749/shard-glk4/boot.html
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13749/shard-glk3/boot.html
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13749/shard-glk3/boot.html
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13749/shard-glk3/boot.html
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13749/shard-glk2/boot.html
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13749/shard-glk2/boot.html
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13749/shard-glk2/boot.html
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13749/shard-glk1/boot.html
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13749/shard-glk1/boot.html
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13749/shard-glk1/boot.html
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-glk1/boot.html
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-glk1/boot.html
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-glk1/boot.html
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-glk2/boot.html
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-glk2/boot.html
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-glk2/boot.html
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-glk3/boot.html
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-glk3/boot.html
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-glk3/boot.html
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-glk4/boot.html
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-glk4/boot.html
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-glk4/boot.html
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-glk5/boot.html
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-glk6/boot.html
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-glk6/boot.html
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-glk6/boot.html
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-glk7/boot.html
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-glk7/boot.html
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-glk7/boot.html
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-glk8/boot.html
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-glk8/boot.html
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-glk9/boot.html
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-glk9/boot.html
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-glk9/boot.html
### IGT changes ###
#### Issues hit ####
* igt@api_intel_bb@object-reloc-keep-cache:
- shard-dg2: NOTRUN -> [SKIP][50] ([i915#8411]) +1 other test skip
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-dg2-11/igt@api_intel_bb@object-reloc-keep-cache.html
* igt@device_reset@unbind-cold-reset-rebind:
- shard-dg1: NOTRUN -> [SKIP][51] ([i915#7701])
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-dg1-12/igt@device_reset@unbind-cold-reset-rebind.html
* igt@drm_fdinfo@busy-idle@bcs0:
- shard-dg2: NOTRUN -> [SKIP][52] ([i915#8414]) +11 other tests skip
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-dg2-1/igt@drm_fdinfo@busy-idle@bcs0.html
* igt@gem_busy@semaphore:
- shard-dg2: NOTRUN -> [SKIP][53] ([i915#3936])
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-dg2-11/igt@gem_busy@semaphore.html
* igt@gem_ctx_persistence@heartbeat-stop:
- shard-dg2: NOTRUN -> [SKIP][54] ([i915#8555])
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-dg2-1/igt@gem_ctx_persistence@heartbeat-stop.html
* igt@gem_ctx_sseu@invalid-sseu:
- shard-dg2: NOTRUN -> [SKIP][55] ([i915#280])
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-dg2-1/igt@gem_ctx_sseu@invalid-sseu.html
* igt@gem_exec_balancer@hog:
- shard-dg2: NOTRUN -> [SKIP][56] ([i915#4812])
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-dg2-10/igt@gem_exec_balancer@hog.html
* igt@gem_exec_balancer@noheartbeat:
- shard-dg1: NOTRUN -> [SKIP][57] ([i915#8555])
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-dg1-12/igt@gem_exec_balancer@noheartbeat.html
- shard-mtlp: NOTRUN -> [SKIP][58] ([i915#8555])
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-mtlp-8/igt@gem_exec_balancer@noheartbeat.html
* igt@gem_exec_fair@basic-deadline:
- shard-rkl: [PASS][59] -> [FAIL][60] ([i915#2846])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13749/shard-rkl-7/igt@gem_exec_fair@basic-deadline.html
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-rkl-2/igt@gem_exec_fair@basic-deadline.html
* igt@gem_exec_fair@basic-none-rrul:
- shard-dg2: NOTRUN -> [SKIP][61] ([i915#3539] / [i915#4852]) +2 other tests skip
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-dg2-1/igt@gem_exec_fair@basic-none-rrul.html
* igt@gem_exec_fair@basic-none-share@rcs0:
- shard-rkl: [PASS][62] -> [FAIL][63] ([i915#2842])
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13749/shard-rkl-4/igt@gem_exec_fair@basic-none-share@rcs0.html
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-rkl-6/igt@gem_exec_fair@basic-none-share@rcs0.html
* igt@gem_exec_fair@basic-none@rcs0:
- shard-glk: NOTRUN -> [FAIL][64] ([i915#2842]) +2 other tests fail
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-glk2/igt@gem_exec_fair@basic-none@rcs0.html
* igt@gem_exec_flush@basic-wb-prw-default:
- shard-dg1: NOTRUN -> [SKIP][65] ([i915#3539] / [i915#4852])
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-dg1-12/igt@gem_exec_flush@basic-wb-prw-default.html
* igt@gem_exec_params@invalid-fence-in:
- shard-mtlp: [PASS][66] -> [ABORT][67] ([i915#9414])
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13749/shard-mtlp-4/igt@gem_exec_params@invalid-fence-in.html
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-mtlp-2/igt@gem_exec_params@invalid-fence-in.html
* igt@gem_exec_reloc@basic-cpu-gtt-noreloc:
- shard-dg2: NOTRUN -> [SKIP][68] ([i915#3281]) +7 other tests skip
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-dg2-11/igt@gem_exec_reloc@basic-cpu-gtt-noreloc.html
* igt@gem_exec_reloc@basic-write-read:
- shard-dg1: NOTRUN -> [SKIP][69] ([i915#3281]) +2 other tests skip
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-dg1-12/igt@gem_exec_reloc@basic-write-read.html
- shard-mtlp: NOTRUN -> [SKIP][70] ([i915#3281]) +4 other tests skip
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-mtlp-8/igt@gem_exec_reloc@basic-write-read.html
* igt@gem_exec_schedule@preempt-queue-chain:
- shard-mtlp: NOTRUN -> [SKIP][71] ([i915#4537] / [i915#4812])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-mtlp-8/igt@gem_exec_schedule@preempt-queue-chain.html
- shard-dg1: NOTRUN -> [SKIP][72] ([i915#4812])
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-dg1-12/igt@gem_exec_schedule@preempt-queue-chain.html
* igt@gem_fenced_exec_thrash@no-spare-fences:
- shard-dg2: NOTRUN -> [SKIP][73] ([i915#4860])
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-dg2-1/igt@gem_fenced_exec_thrash@no-spare-fences.html
* igt@gem_lmem_swapping@heavy-random:
- shard-tglu: NOTRUN -> [SKIP][74] ([i915#4613])
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-tglu-3/igt@gem_lmem_swapping@heavy-random.html
* igt@gem_lmem_swapping@heavy-verify-multi:
- shard-apl: NOTRUN -> [SKIP][75] ([fdo#109271] / [i915#4613]) +1 other test skip
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-apl2/igt@gem_lmem_swapping@heavy-verify-multi.html
* igt@gem_lmem_swapping@heavy-verify-random:
- shard-glk: NOTRUN -> [SKIP][76] ([fdo#109271] / [i915#4613])
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-glk3/igt@gem_lmem_swapping@heavy-verify-random.html
* igt@gem_media_vme:
- shard-dg2: NOTRUN -> [SKIP][77] ([i915#284])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-dg2-10/igt@gem_media_vme.html
* igt@gem_mmap_gtt@basic-read-write-distinct:
- shard-dg2: NOTRUN -> [SKIP][78] ([i915#4077]) +6 other tests skip
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-dg2-1/igt@gem_mmap_gtt@basic-read-write-distinct.html
* igt@gem_mmap_gtt@coherency:
- shard-tglu: NOTRUN -> [SKIP][79] ([fdo#111656])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-tglu-3/igt@gem_mmap_gtt@coherency.html
* igt@gem_mmap_gtt@hang-busy:
- shard-mtlp: NOTRUN -> [SKIP][80] ([i915#4077])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-mtlp-8/igt@gem_mmap_gtt@hang-busy.html
- shard-dg1: NOTRUN -> [SKIP][81] ([i915#4077])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-dg1-12/igt@gem_mmap_gtt@hang-busy.html
* igt@gem_mmap_wc@copy:
- shard-dg2: NOTRUN -> [SKIP][82] ([i915#4083]) +2 other tests skip
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-dg2-1/igt@gem_mmap_wc@copy.html
* igt@gem_mmap_wc@write-cpu-read-wc-unflushed:
- shard-dg1: NOTRUN -> [SKIP][83] ([i915#4083])
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-dg1-12/igt@gem_mmap_wc@write-cpu-read-wc-unflushed.html
- shard-mtlp: NOTRUN -> [SKIP][84] ([i915#4083])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-mtlp-8/igt@gem_mmap_wc@write-cpu-read-wc-unflushed.html
* igt@gem_partial_pwrite_pread@reads-uncached:
- shard-dg2: NOTRUN -> [SKIP][85] ([i915#3282]) +2 other tests skip
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-dg2-1/igt@gem_partial_pwrite_pread@reads-uncached.html
* igt@gem_partial_pwrite_pread@writes-after-reads-snoop:
- shard-dg1: NOTRUN -> [SKIP][86] ([i915#3282])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-dg1-12/igt@gem_partial_pwrite_pread@writes-after-reads-snoop.html
* igt@gem_pxp@create-protected-buffer:
- shard-tglu: NOTRUN -> [SKIP][87] ([i915#4270])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-tglu-3/igt@gem_pxp@create-protected-buffer.html
* igt@gem_pxp@verify-pxp-execution-after-suspend-resume:
- shard-dg2: NOTRUN -> [SKIP][88] ([i915#4270]) +2 other tests skip
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-dg2-11/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html
* igt@gem_render_copy@y-tiled-to-vebox-linear:
- shard-mtlp: NOTRUN -> [SKIP][89] ([i915#8428])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-mtlp-8/igt@gem_render_copy@y-tiled-to-vebox-linear.html
* igt@gem_softpin@evict-snoop:
- shard-dg2: NOTRUN -> [SKIP][90] ([i915#4885])
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-dg2-11/igt@gem_softpin@evict-snoop.html
* igt@gem_tiled_pread_pwrite:
- shard-dg2: NOTRUN -> [SKIP][91] ([i915#4079])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-dg2-10/igt@gem_tiled_pread_pwrite.html
* igt@gem_userptr_blits@coherency-sync:
- shard-dg2: NOTRUN -> [SKIP][92] ([i915#3297])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-dg2-11/igt@gem_userptr_blits@coherency-sync.html
* igt@gem_userptr_blits@map-fixed-invalidate-overlap:
- shard-dg2: NOTRUN -> [SKIP][93] ([i915#3297] / [i915#4880])
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-dg2-10/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html
* igt@gem_workarounds@suspend-resume:
- shard-dg2: [PASS][94] -> [INCOMPLETE][95] ([i915#9138])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13749/shard-dg2-10/igt@gem_workarounds@suspend-resume.html
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-dg2-5/igt@gem_workarounds@suspend-resume.html
* igt@gen7_exec_parse@basic-offset:
- shard-tglu: NOTRUN -> [SKIP][96] ([fdo#109289])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-tglu-3/igt@gen7_exec_parse@basic-offset.html
* igt@gen7_exec_parse@load-register-reg:
- shard-dg2: NOTRUN -> [SKIP][97] ([fdo#109289])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-dg2-1/igt@gen7_exec_parse@load-register-reg.html
* igt@gen9_exec_parse@batch-invalid-length:
- shard-dg2: NOTRUN -> [SKIP][98] ([i915#2856]) +1 other test skip
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-dg2-10/igt@gen9_exec_parse@batch-invalid-length.html
* igt@gen9_exec_parse@bb-chained:
- shard-tglu: NOTRUN -> [SKIP][99] ([i915#2527] / [i915#2856])
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-tglu-3/igt@gen9_exec_parse@bb-chained.html
* igt@i915_module_load@load:
- shard-dg2: NOTRUN -> [SKIP][100] ([i915#6227])
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-dg2-10/igt@i915_module_load@load.html
* igt@i915_pipe_stress@stress-xrgb8888-untiled:
- shard-apl: NOTRUN -> [FAIL][101] ([i915#7036])
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-apl2/igt@i915_pipe_stress@stress-xrgb8888-untiled.html
* igt@i915_pm_rps@thresholds-idle@gt0:
- shard-dg2: NOTRUN -> [SKIP][102] ([i915#8925])
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-dg2-11/igt@i915_pm_rps@thresholds-idle@gt0.html
* igt@i915_pm_rps@thresholds@gt0:
- shard-dg1: NOTRUN -> [SKIP][103] ([i915#8925])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-dg1-12/igt@i915_pm_rps@thresholds@gt0.html
- shard-mtlp: NOTRUN -> [SKIP][104] ([i915#8925])
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-mtlp-8/igt@i915_pm_rps@thresholds@gt0.html
* igt@i915_pm_rps@thresholds@gt1:
- shard-mtlp: NOTRUN -> [SKIP][105] ([i915#3555] / [i915#8925])
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-mtlp-8/igt@i915_pm_rps@thresholds@gt1.html
* igt@kms_addfb_basic@clobberred-modifier:
- shard-dg2: NOTRUN -> [SKIP][106] ([i915#4212]) +1 other test skip
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-dg2-11/igt@kms_addfb_basic@clobberred-modifier.html
* igt@kms_async_flips@crc@pipe-a-hdmi-a-2:
- shard-dg2: NOTRUN -> [FAIL][107] ([i915#8247]) +3 other tests fail
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-dg2-2/igt@kms_async_flips@crc@pipe-a-hdmi-a-2.html
* igt@kms_async_flips@crc@pipe-d-hdmi-a-4:
- shard-dg1: NOTRUN -> [FAIL][108] ([i915#8247]) +3 other tests fail
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-dg1-14/igt@kms_async_flips@crc@pipe-d-hdmi-a-4.html
* igt@kms_async_flips@test-cursor:
- shard-mtlp: NOTRUN -> [SKIP][109] ([i915#6229])
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-mtlp-4/igt@kms_async_flips@test-cursor.html
* igt@kms_atomic@plane-primary-overlay-mutable-zpos:
- shard-tglu: NOTRUN -> [SKIP][110] ([i915#404])
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-tglu-3/igt@kms_atomic@plane-primary-overlay-mutable-zpos.html
* igt@kms_big_fb@4-tiled-32bpp-rotate-180:
- shard-dg1: NOTRUN -> [SKIP][111] ([i915#4538] / [i915#5286])
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-dg1-12/igt@kms_big_fb@4-tiled-32bpp-rotate-180.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-90:
- shard-dg2: NOTRUN -> [SKIP][112] ([fdo#111614]) +4 other tests skip
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-dg2-10/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip:
- shard-mtlp: [PASS][113] -> [FAIL][114] ([i915#5138])
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13749/shard-mtlp-1/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-hflip.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip:
- shard-tglu: NOTRUN -> [SKIP][115] ([fdo#111615] / [i915#5286])
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-tglu-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html
* igt@kms_big_fb@linear-64bpp-rotate-90:
- shard-dg1: NOTRUN -> [SKIP][116] ([i915#3638]) +1 other test skip
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-dg1-12/igt@kms_big_fb@linear-64bpp-rotate-90.html
- shard-mtlp: NOTRUN -> [SKIP][117] ([fdo#111614]) +1 other test skip
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-mtlp-8/igt@kms_big_fb@linear-64bpp-rotate-90.html
* igt@kms_big_fb@y-tiled-32bpp-rotate-0:
- shard-mtlp: NOTRUN -> [SKIP][118] ([fdo#111615]) +1 other test skip
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-mtlp-8/igt@kms_big_fb@y-tiled-32bpp-rotate-0.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
- shard-dg2: NOTRUN -> [SKIP][119] ([i915#5190]) +11 other tests skip
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-dg2-1/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-tglu: NOTRUN -> [SKIP][120] ([fdo#111615]) +1 other test skip
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-tglu-3/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip:
- shard-dg2: NOTRUN -> [SKIP][121] ([i915#4538] / [i915#5190]) +3 other tests skip
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-dg2-10/igt@kms_big_fb@yf-tiled-max-hw-stride-32bpp-rotate-180-hflip-async-flip.html
* igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3:
- shard-dg2: NOTRUN -> [SKIP][122] ([i915#4087] / [i915#7213]) +3 other tests skip
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-dg2-1/igt@kms_cdclk@mode-transition@pipe-d-hdmi-a-3.html
* igt@kms_chamelium_audio@hdmi-audio-edid:
- shard-dg1: NOTRUN -> [SKIP][123] ([i915#7828]) +1 other test skip
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-dg1-12/igt@kms_chamelium_audio@hdmi-audio-edid.html
- shard-mtlp: NOTRUN -> [SKIP][124] ([i915#7828]) +1 other test skip
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-mtlp-8/igt@kms_chamelium_audio@hdmi-audio-edid.html
* igt@kms_chamelium_color@ctm-green-to-red:
- shard-dg2: NOTRUN -> [SKIP][125] ([fdo#111827]) +1 other test skip
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-dg2-11/igt@kms_chamelium_color@ctm-green-to-red.html
* igt@kms_chamelium_color@ctm-negative:
- shard-tglu: NOTRUN -> [SKIP][126] ([fdo#111827])
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-tglu-3/igt@kms_chamelium_color@ctm-negative.html
* igt@kms_chamelium_edid@dp-edid-resolution-list:
- shard-tglu: NOTRUN -> [SKIP][127] ([i915#7828]) +1 other test skip
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-tglu-3/igt@kms_chamelium_edid@dp-edid-resolution-list.html
* igt@kms_chamelium_hpd@hdmi-hpd-storm:
- shard-dg2: NOTRUN -> [SKIP][128] ([i915#7828]) +6 other tests skip
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-dg2-1/igt@kms_chamelium_hpd@hdmi-hpd-storm.html
* igt@kms_content_protection@atomic@pipe-a-dp-4 (NEW):
- shard-dg2: NOTRUN -> [TIMEOUT][129] ([i915#7173])
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-dg2-11/igt@kms_content_protection@atomic@pipe-a-dp-4.html
* igt@kms_content_protection@legacy:
- shard-dg2: NOTRUN -> [SKIP][130] ([i915#7118])
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-dg2-1/igt@kms_content_protection@legacy.html
* igt@kms_content_protection@uevent@pipe-a-dp-4:
- shard-dg2: NOTRUN -> [FAIL][131] ([i915#1339])
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-dg2-11/igt@kms_content_protection@uevent@pipe-a-dp-4.html
* igt@kms_cursor_crc@cursor-offscreen-512x170:
- shard-mtlp: NOTRUN -> [SKIP][132] ([i915#3359])
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-mtlp-8/igt@kms_cursor_crc@cursor-offscreen-512x170.html
- shard-dg1: NOTRUN -> [SKIP][133] ([i915#3359])
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-dg1-12/igt@kms_cursor_crc@cursor-offscreen-512x170.html
* igt@kms_cursor_crc@cursor-offscreen-max-size:
- shard-mtlp: NOTRUN -> [SKIP][134] ([i915#3555] / [i915#8814])
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-mtlp-4/igt@kms_cursor_crc@cursor-offscreen-max-size.html
* igt@kms_cursor_crc@cursor-random-512x170:
- shard-dg2: NOTRUN -> [SKIP][135] ([i915#3359]) +1 other test skip
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-dg2-10/igt@kms_cursor_crc@cursor-random-512x170.html
* igt@kms_cursor_crc@cursor-random-max-size:
- shard-tglu: NOTRUN -> [SKIP][136] ([i915#3555]) +1 other test skip
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-tglu-3/igt@kms_cursor_crc@cursor-random-max-size.html
* igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic:
- shard-dg2: NOTRUN -> [SKIP][137] ([fdo#109274] / [i915#5354]) +1 other test skip
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-dg2-11/igt@kms_cursor_legacy@2x-nonblocking-modeset-vs-cursor-atomic.html
* igt@kms_cursor_legacy@cursorb-vs-flipa-atomic:
- shard-mtlp: NOTRUN -> [SKIP][138] ([i915#3546])
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-mtlp-8/igt@kms_cursor_legacy@cursorb-vs-flipa-atomic.html
* igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions:
- shard-tglu: NOTRUN -> [SKIP][139] ([fdo#109274] / [fdo#111767])
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-tglu-3/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html
* igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle:
- shard-dg2: NOTRUN -> [SKIP][140] ([i915#4103] / [i915#4213]) +1 other test skip
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-dg2-1/igt@kms_cursor_legacy@short-busy-flip-before-cursor-toggle.html
* igt@kms_dsc@dsc-with-bpc-formats:
- shard-dg1: NOTRUN -> [SKIP][141] ([i915#3555] / [i915#3840])
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-dg1-12/igt@kms_dsc@dsc-with-bpc-formats.html
- shard-mtlp: NOTRUN -> [SKIP][142] ([i915#3555] / [i915#3840])
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-mtlp-8/igt@kms_dsc@dsc-with-bpc-formats.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-dg2: NOTRUN -> [SKIP][143] ([i915#3469])
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-dg2-10/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_flip@2x-absolute-wf_vblank:
- shard-dg2: NOTRUN -> [SKIP][144] ([fdo#109274]) +4 other tests skip
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-dg2-11/igt@kms_flip@2x-absolute-wf_vblank.html
* igt@kms_flip@2x-flip-vs-absolute-wf_vblank:
- shard-tglu: NOTRUN -> [SKIP][145] ([fdo#109274] / [i915#3637]) +1 other test skip
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-tglu-3/igt@kms_flip@2x-flip-vs-absolute-wf_vblank.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible:
- shard-dg2: NOTRUN -> [SKIP][146] ([fdo#109274] / [fdo#111767])
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-dg2-10/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible.html
* igt@kms_flip@2x-flip-vs-rmfb-interruptible:
- shard-snb: NOTRUN -> [SKIP][147] ([fdo#109271] / [fdo#111767])
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-snb4/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html
- shard-tglu: NOTRUN -> [SKIP][148] ([fdo#109274] / [fdo#111767] / [i915#3637])
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-tglu-3/igt@kms_flip@2x-flip-vs-rmfb-interruptible.html
* igt@kms_flip@flip-vs-fences-interruptible:
- shard-dg2: NOTRUN -> [SKIP][149] ([i915#8381])
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-dg2-1/igt@kms_flip@flip-vs-fences-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling@pipe-a-default-mode:
- shard-mtlp: NOTRUN -> [SKIP][150] ([i915#2672])
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-mtlp-8/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-64bpp-ytile-upscaling@pipe-a-default-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling@pipe-a-valid-mode:
- shard-tglu: NOTRUN -> [SKIP][151] ([i915#2587] / [i915#2672])
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-tglu-3/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tile-upscaling@pipe-a-valid-mode.html
* igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][152] ([i915#2672]) +2 other tests skip
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-dg2-10/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-16bpp-yftile-downscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-gtt:
- shard-mtlp: NOTRUN -> [SKIP][153] ([i915#8708]) +3 other tests skip
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-dg2: NOTRUN -> [SKIP][154] ([i915#8708]) +15 other tests skip
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render:
- shard-dg1: NOTRUN -> [SKIP][155] ([fdo#111825]) +3 other tests skip
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-dg1-12/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render.html
- shard-mtlp: NOTRUN -> [SKIP][156] ([i915#1825]) +2 other tests skip
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-onoff:
- shard-tglu: NOTRUN -> [SKIP][157] ([fdo#109280]) +6 other tests skip
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-tglu-3/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-cur-indfb-onoff.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-gtt:
- shard-glk: NOTRUN -> [SKIP][158] ([fdo#109271]) +80 other tests skip
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-glk3/igt@kms_frontbuffer_tracking@fbcpsr-1p-offscren-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-blt:
- shard-tglu: NOTRUN -> [SKIP][159] ([fdo#110189]) +5 other tests skip
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-tglu-3/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-cur-indfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-wc:
- shard-apl: NOTRUN -> [SKIP][160] ([fdo#109271]) +54 other tests skip
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-apl2/igt@kms_frontbuffer_tracking@fbcpsr-1p-primscrn-spr-indfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render:
- shard-dg2: NOTRUN -> [SKIP][161] ([i915#5354]) +21 other tests skip
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-dg2-11/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-pri-shrfb-draw-render.html
* igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-gtt:
- shard-dg1: NOTRUN -> [SKIP][162] ([i915#8708]) +3 other tests skip
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-dg1-12/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-cur-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-blt:
- shard-dg2: NOTRUN -> [SKIP][163] ([i915#3458]) +10 other tests skip
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-dg2-10/igt@kms_frontbuffer_tracking@fbcpsr-rgb565-draw-blt.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-blt:
- shard-dg1: NOTRUN -> [SKIP][164] ([i915#3458])
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-dg1-12/igt@kms_frontbuffer_tracking@psr-1p-primscrn-pri-indfb-draw-blt.html
* igt@kms_hdr@bpc-switch:
- shard-rkl: NOTRUN -> [SKIP][165] ([i915#3555] / [i915#8228]) +1 other test skip
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-rkl-6/igt@kms_hdr@bpc-switch.html
* igt@kms_hdr@bpc-switch-suspend:
- shard-dg1: NOTRUN -> [SKIP][166] ([i915#3555] / [i915#8228])
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-dg1-12/igt@kms_hdr@bpc-switch-suspend.html
* igt@kms_hdr@invalid-hdr:
- shard-tglu: NOTRUN -> [SKIP][167] ([i915#3555] / [i915#8228])
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-tglu-3/igt@kms_hdr@invalid-hdr.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-dg2: NOTRUN -> [SKIP][168] ([i915#4816])
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-dg2-10/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@kms_plane_lowres@tiling-none@pipe-b-edp-1:
- shard-mtlp: NOTRUN -> [SKIP][169] ([i915#3582]) +3 other tests skip
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-mtlp-4/igt@kms_plane_lowres@tiling-none@pipe-b-edp-1.html
* igt@kms_plane_scaling@intel-max-src-size:
- shard-dg2: NOTRUN -> [SKIP][170] ([i915#6953])
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-dg2-2/igt@kms_plane_scaling@intel-max-src-size.html
* igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4:
- shard-dg1: NOTRUN -> [FAIL][171] ([i915#8292])
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-dg1-14/igt@kms_plane_scaling@intel-max-src-size@pipe-a-hdmi-a-4.html
* igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-c-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][172] ([i915#5176] / [i915#9423]) +3 other tests skip
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-dg1-17/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-c-hdmi-a-4.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a-hdmi-a-3:
- shard-dg1: NOTRUN -> [SKIP][173] ([i915#5235]) +11 other tests skip
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-dg1-12/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a-hdmi-a-3.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b-dp-4:
- shard-dg2: NOTRUN -> [SKIP][174] ([i915#5235]) +23 other tests skip
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-dg2-11/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-b-dp-4.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][175] ([i915#5235]) +1 other test skip
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-rkl-2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-hdmi-a-2.html
* igt@kms_prime@d3hot:
- shard-dg2: NOTRUN -> [SKIP][176] ([i915#6524] / [i915#6805])
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-dg2-1/igt@kms_prime@d3hot.html
* igt@kms_psr2_sf@cursor-plane-move-continuous-sf:
- shard-tglu: NOTRUN -> [SKIP][177] ([i915#658])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-tglu-3/igt@kms_psr2_sf@cursor-plane-move-continuous-sf.html
* igt@kms_psr2_su@frontbuffer-xrgb8888:
- shard-apl: NOTRUN -> [SKIP][178] ([fdo#109271] / [i915#658])
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-apl2/igt@kms_psr2_su@frontbuffer-xrgb8888.html
* igt@kms_psr2_su@page_flip-p010:
- shard-glk: NOTRUN -> [SKIP][179] ([fdo#109271] / [i915#658]) +1 other test skip
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-glk2/igt@kms_psr2_su@page_flip-p010.html
* igt@kms_psr2_su@page_flip-xrgb8888:
- shard-dg2: NOTRUN -> [SKIP][180] ([i915#658]) +2 other tests skip
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-dg2-10/igt@kms_psr2_su@page_flip-xrgb8888.html
* igt@kms_psr@primary_page_flip:
- shard-dg1: NOTRUN -> [SKIP][181] ([i915#1072] / [i915#4078])
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-dg1-12/igt@kms_psr@primary_page_flip.html
* igt@kms_psr@psr2_cursor_plane_move:
- shard-dg2: NOTRUN -> [SKIP][182] ([i915#1072]) +4 other tests skip
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-dg2-11/igt@kms_psr@psr2_cursor_plane_move.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180:
- shard-dg1: NOTRUN -> [SKIP][183] ([fdo#111615] / [i915#5289])
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-dg1-12/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
- shard-mtlp: NOTRUN -> [SKIP][184] ([i915#5289])
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-mtlp-8/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270:
- shard-tglu: NOTRUN -> [SKIP][185] ([fdo#111615] / [i915#5289])
[185]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-tglu-3/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html
* igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90:
- shard-dg2: NOTRUN -> [SKIP][186] ([i915#4235] / [i915#5190])
[186]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-dg2-11/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html
* igt@kms_rotation_crc@sprite-rotation-90:
- shard-dg2: NOTRUN -> [SKIP][187] ([i915#4235]) +1 other test skip
[187]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-dg2-11/igt@kms_rotation_crc@sprite-rotation-90.html
* igt@kms_scaling_modes@scaling-mode-none:
- shard-dg2: NOTRUN -> [SKIP][188] ([i915#3555]) +2 other tests skip
[188]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-dg2-1/igt@kms_scaling_modes@scaling-mode-none.html
* igt@kms_setmode@basic-clone-single-crtc:
- shard-dg2: NOTRUN -> [SKIP][189] ([i915#3555] / [i915#4098])
[189]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-dg2-10/igt@kms_setmode@basic-clone-single-crtc.html
* igt@kms_tv_load_detect@load-detect:
- shard-snb: NOTRUN -> [SKIP][190] ([fdo#109271]) +82 other tests skip
[190]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-snb6/igt@kms_tv_load_detect@load-detect.html
- shard-dg2: NOTRUN -> [SKIP][191] ([fdo#109309])
[191]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-dg2-1/igt@kms_tv_load_detect@load-detect.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1:
- shard-mtlp: [PASS][192] -> [FAIL][193] ([i915#9196]) +1 other test fail
[192]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13749/shard-mtlp-6/igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1.html
[193]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-mtlp-5/igt@kms_universal_plane@cursor-fb-leak@pipe-b-edp-1.html
* igt@kms_vblank@pipe-b-ts-continuation-suspend:
- shard-snb: NOTRUN -> [DMESG-WARN][194] ([i915#8841])
[194]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-snb6/igt@kms_vblank@pipe-b-ts-continuation-suspend.html
* igt@kms_vblank@pipe-c-ts-continuation-dpms-suspend:
- shard-apl: [PASS][195] -> [INCOMPLETE][196] ([i915#180])
[195]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13749/shard-apl1/igt@kms_vblank@pipe-c-ts-continuation-dpms-suspend.html
[196]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-apl2/igt@kms_vblank@pipe-c-ts-continuation-dpms-suspend.html
* igt@kms_writeback@writeback-invalid-parameters:
- shard-apl: NOTRUN -> [SKIP][197] ([fdo#109271] / [i915#2437])
[197]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-apl2/igt@kms_writeback@writeback-invalid-parameters.html
* igt@kms_writeback@writeback-pixel-formats:
- shard-dg2: NOTRUN -> [SKIP][198] ([i915#2437]) +1 other test skip
[198]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-dg2-1/igt@kms_writeback@writeback-pixel-formats.html
* igt@perf@non-zero-reason@0-rcs0:
- shard-dg2: [PASS][199] -> [FAIL][200] ([i915#7484])
[199]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13749/shard-dg2-10/igt@perf@non-zero-reason@0-rcs0.html
[200]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-dg2-2/igt@perf@non-zero-reason@0-rcs0.html
* igt@perf_pmu@busy-double-start@ccs0:
- shard-mtlp: [PASS][201] -> [FAIL][202] ([i915#4349])
[201]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13749/shard-mtlp-5/igt@perf_pmu@busy-double-start@ccs0.html
[202]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-mtlp-3/igt@perf_pmu@busy-double-start@ccs0.html
* igt@perf_pmu@event-wait@rcs0:
- shard-dg2: NOTRUN -> [SKIP][203] ([fdo#112283])
[203]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-dg2-1/igt@perf_pmu@event-wait@rcs0.html
* igt@perf_pmu@frequency@gt0:
- shard-dg2: NOTRUN -> [FAIL][204] ([i915#6806])
[204]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-dg2-1/igt@perf_pmu@frequency@gt0.html
* igt@perf_pmu@rc6@other-idle-gt0:
- shard-dg2: NOTRUN -> [SKIP][205] ([i915#8516])
[205]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-dg2-11/igt@perf_pmu@rc6@other-idle-gt0.html
* igt@prime_vgem@coherency-gtt:
- shard-tglu: NOTRUN -> [SKIP][206] ([fdo#109295] / [fdo#111656])
[206]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-tglu-3/igt@prime_vgem@coherency-gtt.html
* igt@tools_test@sysfs_l3_parity:
- shard-dg1: NOTRUN -> [SKIP][207] ([fdo#109307] / [i915#4818])
[207]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-dg1-12/igt@tools_test@sysfs_l3_parity.html
- shard-mtlp: NOTRUN -> [SKIP][208] ([i915#4818])
[208]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-mtlp-8/igt@tools_test@sysfs_l3_parity.html
* igt@v3d/v3d_get_param@get-bad-param:
- shard-dg1: NOTRUN -> [SKIP][209] ([i915#2575]) +1 other test skip
[209]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-dg1-12/igt@v3d/v3d_get_param@get-bad-param.html
* igt@v3d/v3d_perfmon@destroy-valid-perfmon:
- shard-mtlp: NOTRUN -> [SKIP][210] ([i915#2575]) +3 other tests skip
[210]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-mtlp-4/igt@v3d/v3d_perfmon@destroy-valid-perfmon.html
* igt@v3d/v3d_submit_cl@bad-multisync-pad:
- shard-tglu: NOTRUN -> [SKIP][211] ([fdo#109315] / [i915#2575])
[211]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-tglu-3/igt@v3d/v3d_submit_cl@bad-multisync-pad.html
* igt@v3d/v3d_submit_csd@job-perfmon:
- shard-dg2: NOTRUN -> [SKIP][212] ([i915#2575]) +7 other tests skip
[212]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-dg2-10/igt@v3d/v3d_submit_csd@job-perfmon.html
* igt@vc4/vc4_create_bo@create-bo-4096:
- shard-dg2: NOTRUN -> [SKIP][213] ([i915#7711]) +6 other tests skip
[213]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-dg2-1/igt@vc4/vc4_create_bo@create-bo-4096.html
* igt@vc4/vc4_purgeable_bo@access-purged-bo-mem:
- shard-mtlp: NOTRUN -> [SKIP][214] ([i915#7711])
[214]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-mtlp-8/igt@vc4/vc4_purgeable_bo@access-purged-bo-mem.html
- shard-dg1: NOTRUN -> [SKIP][215] ([i915#7711])
[215]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-dg1-12/igt@vc4/vc4_purgeable_bo@access-purged-bo-mem.html
* igt@vc4/vc4_purgeable_bo@mark-willneed:
- shard-tglu: NOTRUN -> [SKIP][216] ([i915#2575])
[216]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-tglu-3/igt@vc4/vc4_purgeable_bo@mark-willneed.html
#### Possible fixes ####
* igt@gem_busy@close-race:
- shard-tglu: [ABORT][217] ([i915#6016]) -> [PASS][218]
[217]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13749/shard-tglu-3/igt@gem_busy@close-race.html
[218]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-tglu-3/igt@gem_busy@close-race.html
* igt@gem_ctx_isolation@preservation-s3@vecs0:
- shard-dg2: [FAIL][219] ([fdo#103375]) -> [PASS][220]
[219]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13749/shard-dg2-11/igt@gem_ctx_isolation@preservation-s3@vecs0.html
[220]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-dg2-1/igt@gem_ctx_isolation@preservation-s3@vecs0.html
* igt@gem_eio@reset-stress:
- shard-dg1: [FAIL][221] ([i915#5784]) -> [PASS][222]
[221]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13749/shard-dg1-15/igt@gem_eio@reset-stress.html
[222]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-dg1-15/igt@gem_eio@reset-stress.html
* igt@gem_exec_flush@basic-batch-kernel-default-uc:
- shard-mtlp: [DMESG-FAIL][223] ([i915#8962]) -> [PASS][224]
[223]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13749/shard-mtlp-4/igt@gem_exec_flush@basic-batch-kernel-default-uc.html
[224]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-mtlp-2/igt@gem_exec_flush@basic-batch-kernel-default-uc.html
* igt@gem_exec_suspend@basic-s4-devices@lmem0:
- shard-dg1: [ABORT][225] ([i915#7975] / [i915#8213]) -> [PASS][226]
[225]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13749/shard-dg1-14/igt@gem_exec_suspend@basic-s4-devices@lmem0.html
[226]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-dg1-12/igt@gem_exec_suspend@basic-s4-devices@lmem0.html
* igt@gem_userptr_blits@huge-split:
- shard-apl: [FAIL][227] ([i915#3318]) -> [PASS][228]
[227]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13749/shard-apl3/igt@gem_userptr_blits@huge-split.html
[228]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-apl7/igt@gem_userptr_blits@huge-split.html
* igt@gen9_exec_parse@allowed-all:
- shard-apl: [INCOMPLETE][229] ([i915#5566]) -> [PASS][230] +1 other test pass
[229]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13749/shard-apl6/igt@gen9_exec_parse@allowed-all.html
[230]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-apl6/igt@gen9_exec_parse@allowed-all.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-mtlp: [ABORT][231] ([i915#8489] / [i915#8668]) -> [PASS][232]
[231]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13749/shard-mtlp-2/igt@i915_module_load@reload-with-fault-injection.html
[232]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-mtlp-8/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_rc6_residency@rc6-idle@vecs0:
- shard-dg1: [FAIL][233] ([i915#3591]) -> [PASS][234]
[233]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13749/shard-dg1-18/igt@i915_pm_rc6_residency@rc6-idle@vecs0.html
[234]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-dg1-16/igt@i915_pm_rc6_residency@rc6-idle@vecs0.html
* igt@kms_big_fb@4-tiled-64bpp-rotate-180:
- shard-mtlp: [FAIL][235] ([i915#5138]) -> [PASS][236]
[235]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13749/shard-mtlp-3/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
[236]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-mtlp-2/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html
* igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip:
- shard-tglu: [FAIL][237] ([i915#3743]) -> [PASS][238] +2 other tests pass
[237]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13749/shard-tglu-3/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
[238]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-tglu-3/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-apl: [FAIL][239] ([i915#2346]) -> [PASS][240]
[239]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13749/shard-apl4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
[240]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-apl1/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* {igt@kms_pm_rpm@modeset-lpsp-stress}:
- shard-dg1: [SKIP][241] ([i915#9519]) -> [PASS][242]
[241]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13749/shard-dg1-18/igt@kms_pm_rpm@modeset-lpsp-stress.html
[242]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-dg1-19/igt@kms_pm_rpm@modeset-lpsp-stress.html
* igt@kms_rotation_crc@multiplane-rotation-cropping-bottom:
- shard-glk: [DMESG-WARN][243] ([i915#118]) -> [PASS][244]
[243]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13749/shard-glk6/igt@kms_rotation_crc@multiplane-rotation-cropping-bottom.html
[244]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-glk3/igt@kms_rotation_crc@multiplane-rotation-cropping-bottom.html
* igt@kms_sysfs_edid_timing:
- shard-dg2: [FAIL][245] ([IGT#2]) -> [PASS][246]
[245]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13749/shard-dg2-3/igt@kms_sysfs_edid_timing.html
[246]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-dg2-11/igt@kms_sysfs_edid_timing.html
* igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1:
- shard-tglu: [FAIL][247] ([i915#9196]) -> [PASS][248]
[247]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13749/shard-tglu-3/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html
[248]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-tglu-3/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html
* igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend:
- shard-apl: [INCOMPLETE][249] ([i915#9392]) -> [PASS][250]
[249]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13749/shard-apl1/igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend.html
[250]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-apl2/igt@kms_vblank@pipe-b-ts-continuation-dpms-suspend.html
* igt@kms_vblank@pipe-d-ts-continuation-suspend:
- shard-dg2: [INCOMPLETE][251] ([i915#9313]) -> [PASS][252]
[251]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13749/shard-dg2-1/igt@kms_vblank@pipe-d-ts-continuation-suspend.html
[252]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-dg2-11/igt@kms_vblank@pipe-d-ts-continuation-suspend.html
* igt@perf_pmu@busy-double-start@bcs0:
- shard-mtlp: [FAIL][253] ([i915#4349]) -> [PASS][254]
[253]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13749/shard-mtlp-5/igt@perf_pmu@busy-double-start@bcs0.html
[254]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-mtlp-3/igt@perf_pmu@busy-double-start@bcs0.html
#### Warnings ####
* igt@i915_pm_rc6_residency@rc6-idle@bcs0:
- shard-tglu: [FAIL][255] ([i915#2681] / [i915#3591]) -> [WARN][256] ([i915#2681])
[255]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13749/shard-tglu-9/igt@i915_pm_rc6_residency@rc6-idle@bcs0.html
[256]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-tglu-5/igt@i915_pm_rc6_residency@rc6-idle@bcs0.html
* igt@i915_pm_rc6_residency@rc6-idle@rcs0:
- shard-tglu: [WARN][257] ([i915#2681]) -> [FAIL][258] ([i915#2681] / [i915#3591]) +1 other test fail
[257]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13749/shard-tglu-9/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html
[258]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-tglu-5/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-rkl: [SKIP][259] ([i915#3955]) -> [SKIP][260] ([fdo#110189] / [i915#3955])
[259]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13749/shard-rkl-4/igt@kms_fbcon_fbt@psr-suspend.html
[260]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-rkl-1/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_multipipe_modeset@basic-max-pipe-crc-check:
- shard-rkl: [SKIP][261] ([i915#4816]) -> [SKIP][262] ([i915#4070] / [i915#4816])
[261]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13749/shard-rkl-4/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
[262]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-rkl-1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html
* igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem:
- shard-dg2: [INCOMPLETE][263] ([i915#5493]) -> [CRASH][264] ([i915#9351])
[263]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13749/shard-dg2-6/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html
[264]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/shard-dg2-3/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2
[fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
[fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
[fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
[fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295
[fdo#109307]: https://bugs.freedesktop.org/show_bug.cgi?id=109307
[fdo#109309]: https://bugs.freedesktop.org/show_bug.cgi?id=109309
[fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315
[fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
[fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614
[fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615
[fdo#111656]: https://bugs.freedesktop.org/show_bug.cgi?id=111656
[fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767
[fdo#111825]: https://bugs.freedesktop.org/show_bug.cgi?id=111825
[fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
[fdo#112283]: https://bugs.freedesktop.org/show_bug.cgi?id=112283
[i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
[i915#118]: https://gitlab.freedesktop.org/drm/intel/issues/118
[i915#1339]: https://gitlab.freedesktop.org/drm/intel/issues/1339
[i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180
[i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825
[i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839
[i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
[i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437
[i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527
[i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575
[i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587
[i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
[i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681
[i915#280]: https://gitlab.freedesktop.org/drm/intel/issues/280
[i915#284]: https://gitlab.freedesktop.org/drm/intel/issues/284
[i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
[i915#2846]: https://gitlab.freedesktop.org/drm/intel/issues/2846
[i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856
[i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
[i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
[i915#3318]: https://gitlab.freedesktop.org/drm/intel/issues/3318
[i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359
[i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458
[i915#3469]: https://gitlab.freedesktop.org/drm/intel/issues/3469
[i915#3539]: https://gitlab.freedesktop.org/drm/intel/issues/3539
[i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3582]: https://gitlab.freedesktop.org/drm/intel/issues/3582
[i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591
[i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637
[i915#3638]: https://gitlab.freedesktop.org/drm/intel/issues/3638
[i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743
[i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840
[i915#3936]: https://gitlab.freedesktop.org/drm/intel/issues/3936
[i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955
[i915#404]: https://gitlab.freedesktop.org/drm/intel/issues/404
[i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070
[i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
[i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078
[i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
[i915#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087
[i915#4098]: https://gitlab.freedesktop.org/drm/intel/issues/4098
[i915#4103]: https://gitlab.freedesktop.org/drm/intel/issues/4103
[i915#4212]: https://gitlab.freedesktop.org/drm/intel/issues/4212
[i915#4213]: https://gitlab.freedesktop.org/drm/intel/issues/4213
[i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235
[i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
[i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349
[i915#4537]: https://gitlab.freedesktop.org/drm/intel/issues/4537
[i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812
[i915#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816
[i915#4818]: https://gitlab.freedesktop.org/drm/intel/issues/4818
[i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852
[i915#4854]: https://gitlab.freedesktop.org/drm/intel/issues/4854
[i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860
[i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880
[i915#4885]: https://gitlab.freedesktop.org/drm/intel/issues/4885
[i915#5138]: https://gitlab.freedesktop.org/drm/intel/issues/5138
[i915#5176]: https://gitlab.freedesktop.org/drm/intel/issues/5176
[i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190
[i915#5235]: https://gitlab.freedesktop.org/drm/intel/issues/5235
[i915#5286]: https://gitlab.freedesktop.org/drm/intel/issues/5286
[i915#5289]: https://gitlab.freedesktop.org/drm/intel/issues/5289
[i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
[i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493
[i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566
[i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784
[i915#6016]: https://gitlab.freedesktop.org/drm/intel/issues/6016
[i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
[i915#6227]: https://gitlab.freedesktop.org/drm/intel/issues/6227
[i915#6229]: https://gitlab.freedesktop.org/drm/intel/issues/6229
[i915#6524]: https://gitlab.freedesktop.org/drm/intel/issues/6524
[i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
[i915#6805]: https://gitlab.freedesktop.org/drm/intel/issues/6805
[i915#6806]: https://gitlab.freedesktop.org/drm/intel/issues/6806
[i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953
[i915#7036]: https://gitlab.freedesktop.org/drm/intel/issues/7036
[i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118
[i915#7173]: https://gitlab.freedesktop.org/drm/intel/issues/7173
[i915#7213]: https://gitlab.freedesktop.org/drm/intel/issues/7213
[i915#7484]: https://gitlab.freedesktop.org/drm/intel/issues/7484
[i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701
[i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711
[i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828
[i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975
[i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213
[i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228
[i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247
[i915#8292]: https://gitlab.freedesktop.org/drm/intel/issues/8292
[i915#8293]: https://gitlab.freedesktop.org/drm/intel/issues/8293
[i915#8381]: https://gitlab.freedesktop.org/drm/intel/issues/8381
[i915#8411]: https://gitlab.freedesktop.org/drm/intel/issues/8411
[i915#8414]: https://gitlab.freedesktop.org/drm/intel/issues/8414
[i915#8428]: https://gitlab.freedesktop.org/drm/intel/issues/8428
[i915#8489]: https://gitlab.freedesktop.org/drm/intel/issues/8489
[i915#8516]: https://gitlab.freedesktop.org/drm/intel/issues/8516
[i915#8555]: https://gitlab.freedesktop.org/drm/intel/issues/8555
[i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668
[i915#8708]: https://gitlab.freedesktop.org/drm/intel/issues/8708
[i915#8709]: https://gitlab.freedesktop.org/drm/intel/issues/8709
[i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814
[i915#8841]: https://gitlab.freedesktop.org/drm/intel/issues/8841
[i915#8925]: https://gitlab.freedesktop.org/drm/intel/issues/8925
[i915#8962]: https://gitlab.freedesktop.org/drm/intel/issues/8962
[i915#9138]: https://gitlab.freedesktop.org/drm/intel/issues/9138
[i915#9196]: https://gitlab.freedesktop.org/drm/intel/issues/9196
[i915#9226]: https://gitlab.freedesktop.org/drm/intel/issues/9226
[i915#9227]: https://gitlab.freedesktop.org/drm/intel/issues/9227
[i915#9261]: https://gitlab.freedesktop.org/drm/intel/issues/9261
[i915#9313]: https://gitlab.freedesktop.org/drm/intel/issues/9313
[i915#9351]: https://gitlab.freedesktop.org/drm/intel/issues/9351
[i915#9392]: https://gitlab.freedesktop.org/drm/intel/issues/9392
[i915#9414]: https://gitlab.freedesktop.org/drm/intel/issues/9414
[i915#9423]: https://gitlab.freedesktop.org/drm/intel/issues/9423
[i915#9519]: https://gitlab.freedesktop.org/drm/intel/issues/9519
Build changes
-------------
* Linux: CI_DRM_13749 -> Patchwork_124993v2
CI-20190529: 20190529
CI_DRM_13749: 09d775a292872ee2dab9fbf58ae774701d3b53bd @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_7533: 7533
Patchwork_124993v2: 09d775a292872ee2dab9fbf58ae774701d3b53bd @ git://anongit.freedesktop.org/gfx-ci/linux
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_124993v2/index.html
[-- Attachment #2: Type: text/html, Size: 78101 bytes --]
^ permalink raw reply [flat|nested] 9+ messages in thread
end of thread, other threads:[~2023-10-14 1:55 UTC | newest]
Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-10-11 16:38 [Intel-gfx] [PATCH 1/3] drm/i915: make some error capture functions static Jani Nikula
2023-10-11 16:38 ` [Intel-gfx] [PATCH 2/3] drm/i915: move gpu error debugfs to i915_gpu_error.c Jani Nikula
2023-10-11 16:38 ` [Intel-gfx] [PATCH 3/3] drm/i915: move gpu error sysfs " Jani Nikula
2023-10-11 17:25 ` John Harrison
2023-10-11 19:59 ` Jani Nikula
2023-10-13 3:06 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for series starting with [1/3] drm/i915: make some error capture functions static (rev2) Patchwork
2023-10-13 3:06 ` [Intel-gfx] ✗ Fi.CI.SPARSE: " Patchwork
2023-10-13 3:19 ` [Intel-gfx] ✓ Fi.CI.BAT: success " Patchwork
2023-10-14 1:55 ` [Intel-gfx] ✓ Fi.CI.IGT: " Patchwork
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox