* [Intel-gfx] [PATCH RESEND 1/3] drm/i915: make some error capture functions static
@ 2023-10-31 12:45 Jani Nikula
2023-10-31 12:45 ` [Intel-gfx] [PATCH RESEND 2/3] drm/i915: move gpu error debugfs to i915_gpu_error.c Jani Nikula
` (6 more replies)
0 siblings, 7 replies; 13+ messages in thread
From: Jani Nikula @ 2023-10-31 12:45 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 8275f9b6a47d..889db834f07d 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 4ce227f7e1e1..8f9cdf056181 100644
--- a/drivers/gpu/drm/i915/i915_gpu_error.h
+++ b/drivers/gpu/drm/i915/i915_gpu_error.h
@@ -277,11 +277,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] 13+ messages in thread* [Intel-gfx] [PATCH RESEND 2/3] drm/i915: move gpu error debugfs to i915_gpu_error.c 2023-10-31 12:45 [Intel-gfx] [PATCH RESEND 1/3] drm/i915: make some error capture functions static Jani Nikula @ 2023-10-31 12:45 ` Jani Nikula 2023-10-31 12:59 ` Nirmoy Das 2023-10-31 12:45 ` [Intel-gfx] [PATCH RESEND 3/3] drm/i915: move gpu error sysfs " Jani Nikula ` (5 subsequent siblings) 6 siblings, 1 reply; 13+ messages in thread From: Jani Nikula @ 2023-10-31 12:45 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 bfe92d2402ea..db99c2ef66db 100644 --- a/drivers/gpu/drm/i915/i915_debugfs.c +++ b/drivers/gpu/drm/i915/i915_debugfs.c @@ -51,6 +51,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" @@ -299,107 +300,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); @@ -839,10 +739,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) @@ -865,4 +761,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 889db834f07d..f195df91d9e6 100644 --- a/drivers/gpu/drm/i915/i915_gpu_error.c +++ b/drivers/gpu/drm/i915/i915_gpu_error.c @@ -2140,7 +2140,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); @@ -2378,3 +2378,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 8f9cdf056181..f851189b0ff1 100644 --- a/drivers/gpu/drm/i915/i915_gpu_error.h +++ b/drivers/gpu/drm/i915/i915_gpu_error.h @@ -278,8 +278,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); @@ -331,6 +329,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) @@ -413,6 +413,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] 13+ messages in thread
* Re: [Intel-gfx] [PATCH RESEND 2/3] drm/i915: move gpu error debugfs to i915_gpu_error.c 2023-10-31 12:45 ` [Intel-gfx] [PATCH RESEND 2/3] drm/i915: move gpu error debugfs to i915_gpu_error.c Jani Nikula @ 2023-10-31 12:59 ` Nirmoy Das 2023-10-31 14:18 ` Jani Nikula 0 siblings, 1 reply; 13+ messages in thread From: Nirmoy Das @ 2023-10-31 12:59 UTC (permalink / raw) To: Jani Nikula, intel-gfx On 10/31/2023 1:45 PM, 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. > > 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 bfe92d2402ea..db99c2ef66db 100644 > --- a/drivers/gpu/drm/i915/i915_debugfs.c > +++ b/drivers/gpu/drm/i915/i915_debugfs.c > @@ -51,6 +51,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" > @@ -299,107 +300,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); > @@ -839,10 +739,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) > @@ -865,4 +761,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 889db834f07d..f195df91d9e6 100644 > --- a/drivers/gpu/drm/i915/i915_gpu_error.c > +++ b/drivers/gpu/drm/i915/i915_gpu_error.c > @@ -2140,7 +2140,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); > @@ -2378,3 +2378,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, nit: s/0644/S_IRUGO | S_IWUSR Reviewed-by: Nirmoy Das <nirmoy.das@intel.com> > 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 8f9cdf056181..f851189b0ff1 100644 > --- a/drivers/gpu/drm/i915/i915_gpu_error.h > +++ b/drivers/gpu/drm/i915/i915_gpu_error.h > @@ -278,8 +278,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); > > @@ -331,6 +329,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) > @@ -413,6 +413,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_ */ ^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [Intel-gfx] [PATCH RESEND 2/3] drm/i915: move gpu error debugfs to i915_gpu_error.c 2023-10-31 12:59 ` Nirmoy Das @ 2023-10-31 14:18 ` Jani Nikula 2023-10-31 16:12 ` Nirmoy Das 0 siblings, 1 reply; 13+ messages in thread From: Jani Nikula @ 2023-10-31 14:18 UTC (permalink / raw) To: Nirmoy Das, intel-gfx On Tue, 31 Oct 2023, Nirmoy Das <nirmoy.das@linux.intel.com> wrote: > On 10/31/2023 1:45 PM, Jani Nikula wrote: >> +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, > > nit: s/0644/S_IRUGO | S_IWUSR The direction pretty much across the kernel is to go towards octal permissions because the macros are harder to understand. > Reviewed-by: Nirmoy Das <nirmoy.das@intel.com> Thanks, Jani. -- Jani Nikula, Intel ^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [Intel-gfx] [PATCH RESEND 2/3] drm/i915: move gpu error debugfs to i915_gpu_error.c 2023-10-31 14:18 ` Jani Nikula @ 2023-10-31 16:12 ` Nirmoy Das 0 siblings, 0 replies; 13+ messages in thread From: Nirmoy Das @ 2023-10-31 16:12 UTC (permalink / raw) To: Jani Nikula, intel-gfx On 10/31/2023 3:18 PM, Jani Nikula wrote: > On Tue, 31 Oct 2023, Nirmoy Das <nirmoy.das@linux.intel.com> wrote: >> On 10/31/2023 1:45 PM, Jani Nikula wrote: >>> +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, >> nit: s/0644/S_IRUGO | S_IWUSR > The direction pretty much across the kernel is to go towards octal > permissions because the macros are harder to understand. Personally I prefer octal but didn't realize this is preferred in general[*]. [*]https://lore.kernel.org/lkml/7232ef011d05a92f4caa86a5e9830d87966a2eaf.1470180926.git.joe@perches.com/ Regards, Nirmoy > >> Reviewed-by: Nirmoy Das <nirmoy.das@intel.com> > Thanks, > Jani. > ^ permalink raw reply [flat|nested] 13+ messages in thread
* [Intel-gfx] [PATCH RESEND 3/3] drm/i915: move gpu error sysfs to i915_gpu_error.c 2023-10-31 12:45 [Intel-gfx] [PATCH RESEND 1/3] drm/i915: make some error capture functions static Jani Nikula 2023-10-31 12:45 ` [Intel-gfx] [PATCH RESEND 2/3] drm/i915: move gpu error debugfs to i915_gpu_error.c Jani Nikula @ 2023-10-31 12:45 ` Jani Nikula 2023-10-31 13:04 ` Nirmoy Das 2023-10-31 12:48 ` [Intel-gfx] [PATCH RESEND 1/3] drm/i915: make some error capture functions static Nirmoy Das ` (4 subsequent siblings) 6 siblings, 1 reply; 13+ messages in thread From: Jani Nikula @ 2023-10-31 12:45 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 f195df91d9e6..00559a75b798 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) @@ -2211,7 +2212,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; @@ -2487,3 +2488,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 f851189b0ff1..fa886620d3f8 100644 --- a/drivers/gpu/drm/i915/i915_gpu_error.h +++ b/drivers/gpu/drm/i915/i915_gpu_error.h @@ -325,11 +325,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 @@ -398,12 +399,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) { } @@ -417,6 +412,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] 13+ messages in thread
* Re: [Intel-gfx] [PATCH RESEND 3/3] drm/i915: move gpu error sysfs to i915_gpu_error.c 2023-10-31 12:45 ` [Intel-gfx] [PATCH RESEND 3/3] drm/i915: move gpu error sysfs " Jani Nikula @ 2023-10-31 13:04 ` Nirmoy Das 0 siblings, 0 replies; 13+ messages in thread From: Nirmoy Das @ 2023-10-31 13:04 UTC (permalink / raw) To: Jani Nikula, intel-gfx On 10/31/2023 1:45 PM, 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> Reviewed-by: Nirmoy Das <nirmoy.das@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 f195df91d9e6..00559a75b798 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) > @@ -2211,7 +2212,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; > @@ -2487,3 +2488,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 f851189b0ff1..fa886620d3f8 100644 > --- a/drivers/gpu/drm/i915/i915_gpu_error.h > +++ b/drivers/gpu/drm/i915/i915_gpu_error.h > @@ -325,11 +325,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 > > @@ -398,12 +399,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) > { > } > @@ -417,6 +412,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] 13+ messages in thread
* Re: [Intel-gfx] [PATCH RESEND 1/3] drm/i915: make some error capture functions static 2023-10-31 12:45 [Intel-gfx] [PATCH RESEND 1/3] drm/i915: make some error capture functions static Jani Nikula 2023-10-31 12:45 ` [Intel-gfx] [PATCH RESEND 2/3] drm/i915: move gpu error debugfs to i915_gpu_error.c Jani Nikula 2023-10-31 12:45 ` [Intel-gfx] [PATCH RESEND 3/3] drm/i915: move gpu error sysfs " Jani Nikula @ 2023-10-31 12:48 ` Nirmoy Das 2023-11-02 12:23 ` Jani Nikula 2023-10-31 21:39 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for series starting with [RESEND,1/3] " Patchwork ` (3 subsequent siblings) 6 siblings, 1 reply; 13+ messages in thread From: Nirmoy Das @ 2023-10-31 12:48 UTC (permalink / raw) To: Jani Nikula, intel-gfx On 10/31/2023 1:45 PM, Jani Nikula wrote: > Not needed outside of i915_gpu_error.c. > > Signed-off-by: Jani Nikula <jani.nikula@intel.com> Reviewed-by: Nirmoy Das <nirmoy.das@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 8275f9b6a47d..889db834f07d 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 4ce227f7e1e1..8f9cdf056181 100644 > --- a/drivers/gpu/drm/i915/i915_gpu_error.h > +++ b/drivers/gpu/drm/i915/i915_gpu_error.h > @@ -277,11 +277,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); ^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [Intel-gfx] [PATCH RESEND 1/3] drm/i915: make some error capture functions static 2023-10-31 12:48 ` [Intel-gfx] [PATCH RESEND 1/3] drm/i915: make some error capture functions static Nirmoy Das @ 2023-11-02 12:23 ` Jani Nikula 0 siblings, 0 replies; 13+ messages in thread From: Jani Nikula @ 2023-11-02 12:23 UTC (permalink / raw) To: Nirmoy Das, intel-gfx On Tue, 31 Oct 2023, Nirmoy Das <nirmoy.das@linux.intel.com> wrote: > On 10/31/2023 1:45 PM, Jani Nikula wrote: >> Not needed outside of i915_gpu_error.c. >> >> Signed-off-by: Jani Nikula <jani.nikula@intel.com> > Reviewed-by: Nirmoy Das <nirmoy.das@intel.com> Thanks, series pushed to din. BR, Jani. >> --- >> 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 8275f9b6a47d..889db834f07d 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 4ce227f7e1e1..8f9cdf056181 100644 >> --- a/drivers/gpu/drm/i915/i915_gpu_error.h >> +++ b/drivers/gpu/drm/i915/i915_gpu_error.h >> @@ -277,11 +277,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); -- Jani Nikula, Intel ^ permalink raw reply [flat|nested] 13+ messages in thread
* [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for series starting with [RESEND,1/3] drm/i915: make some error capture functions static 2023-10-31 12:45 [Intel-gfx] [PATCH RESEND 1/3] drm/i915: make some error capture functions static Jani Nikula ` (2 preceding siblings ...) 2023-10-31 12:48 ` [Intel-gfx] [PATCH RESEND 1/3] drm/i915: make some error capture functions static Nirmoy Das @ 2023-10-31 21:39 ` Patchwork 2023-10-31 21:39 ` [Intel-gfx] ✗ Fi.CI.SPARSE: " Patchwork ` (2 subsequent siblings) 6 siblings, 0 replies; 13+ messages in thread From: Patchwork @ 2023-10-31 21:39 UTC (permalink / raw) To: Jani Nikula; +Cc: intel-gfx == Series Details == Series: series starting with [RESEND,1/3] drm/i915: make some error capture functions static URL : https://patchwork.freedesktop.org/series/125807/ State : warning == Summary == Error: dim checkpatch failed 9c2c260c4542 drm/i915: make some error capture functions static e5b90b7008be drm/i915: move gpu error debugfs to i915_gpu_error.c 2fbd13103289 drm/i915: move gpu error sysfs to i915_gpu_error.c -:45: CHECK:BRACES: Blank lines aren't necessary after an open brace '{' #45: FILE: drivers/gpu/drm/i915/i915_gpu_error.c:2496: +{ + -:92: WARNING:SYMBOLIC_PERMS: Symbolic permissions 'S_IRUSR | S_IWUSR' are not preferred. Consider using octal permissions '0600'. #92: FILE: drivers/gpu/drm/i915/i915_gpu_error.c:2543: + .attr.mode = S_IRUSR | S_IWUSR, total: 0 errors, 1 warnings, 1 checks, 226 lines checked ^ permalink raw reply [flat|nested] 13+ messages in thread
* [Intel-gfx] ✗ Fi.CI.SPARSE: warning for series starting with [RESEND,1/3] drm/i915: make some error capture functions static 2023-10-31 12:45 [Intel-gfx] [PATCH RESEND 1/3] drm/i915: make some error capture functions static Jani Nikula ` (3 preceding siblings ...) 2023-10-31 21:39 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for series starting with [RESEND,1/3] " Patchwork @ 2023-10-31 21:39 ` Patchwork 2023-10-31 21:58 ` [Intel-gfx] ✓ Fi.CI.BAT: success " Patchwork 2023-11-02 9:29 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork 6 siblings, 0 replies; 13+ messages in thread From: Patchwork @ 2023-10-31 21:39 UTC (permalink / raw) To: Jani Nikula; +Cc: intel-gfx == Series Details == Series: series starting with [RESEND,1/3] drm/i915: make some error capture functions static URL : https://patchwork.freedesktop.org/series/125807/ 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] 13+ messages in thread
* [Intel-gfx] ✓ Fi.CI.BAT: success for series starting with [RESEND,1/3] drm/i915: make some error capture functions static 2023-10-31 12:45 [Intel-gfx] [PATCH RESEND 1/3] drm/i915: make some error capture functions static Jani Nikula ` (4 preceding siblings ...) 2023-10-31 21:39 ` [Intel-gfx] ✗ Fi.CI.SPARSE: " Patchwork @ 2023-10-31 21:58 ` Patchwork 2023-11-02 9:29 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork 6 siblings, 0 replies; 13+ messages in thread From: Patchwork @ 2023-10-31 21:58 UTC (permalink / raw) To: Jani Nikula; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 16524 bytes --] == Series Details == Series: series starting with [RESEND,1/3] drm/i915: make some error capture functions static URL : https://patchwork.freedesktop.org/series/125807/ State : success == Summary == CI Bug Log - changes from CI_DRM_13823 -> Patchwork_125807v1 ==================================================== Summary ------- **SUCCESS** No regressions found. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/index.html Participating hosts (35 -> 38) ------------------------------ Additional (5): fi-kbl-soraka bat-kbl-2 bat-adlp-11 bat-adlm-1 bat-mtlp-8 Missing (2): bat-dg2-9 fi-snb-2520m Known issues ------------ Here are the changes found in Patchwork_125807v1 that come from known issues: ### CI changes ### #### Possible fixes #### * boot: - bat-jsl-1: [FAIL][1] ([i915#8293]) -> [PASS][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13823/bat-jsl-1/boot.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/bat-jsl-1/boot.html ### IGT changes ### #### Issues hit #### * igt@debugfs_test@basic-hwmon: - bat-adlm-1: NOTRUN -> [SKIP][3] ([i915#3826]) [3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/bat-adlm-1/igt@debugfs_test@basic-hwmon.html - bat-jsl-1: NOTRUN -> [SKIP][4] ([i915#9318]) [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/bat-jsl-1/igt@debugfs_test@basic-hwmon.html - bat-mtlp-8: NOTRUN -> [SKIP][5] ([i915#9318]) [5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/bat-mtlp-8/igt@debugfs_test@basic-hwmon.html - bat-adlp-11: NOTRUN -> [SKIP][6] ([i915#9318]) [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/bat-adlp-11/igt@debugfs_test@basic-hwmon.html * igt@fbdev@info: - bat-kbl-2: NOTRUN -> [SKIP][7] ([fdo#109271] / [i915#1849]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/bat-kbl-2/igt@fbdev@info.html - bat-adlm-1: NOTRUN -> [SKIP][8] ([i915#1849] / [i915#2582]) [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/bat-adlm-1/igt@fbdev@info.html * igt@fbdev@read: - bat-adlm-1: NOTRUN -> [SKIP][9] ([i915#2582]) +3 other tests skip [9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/bat-adlm-1/igt@fbdev@read.html * igt@gem_huc_copy@huc-copy: - fi-kbl-soraka: NOTRUN -> [SKIP][10] ([fdo#109271] / [i915#2190]) [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/fi-kbl-soraka/igt@gem_huc_copy@huc-copy.html - bat-jsl-1: NOTRUN -> [SKIP][11] ([i915#2190]) [11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/bat-jsl-1/igt@gem_huc_copy@huc-copy.html * igt@gem_lmem_swapping@basic: - fi-kbl-soraka: NOTRUN -> [SKIP][12] ([fdo#109271] / [i915#4613]) +3 other tests skip [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/fi-kbl-soraka/igt@gem_lmem_swapping@basic.html * igt@gem_lmem_swapping@parallel-random-engines: - bat-kbl-2: NOTRUN -> [SKIP][13] ([fdo#109271]) +39 other tests skip [13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/bat-kbl-2/igt@gem_lmem_swapping@parallel-random-engines.html - bat-adlm-1: NOTRUN -> [SKIP][14] ([i915#4613]) +3 other tests skip [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/bat-adlm-1/igt@gem_lmem_swapping@parallel-random-engines.html - bat-mtlp-8: NOTRUN -> [SKIP][15] ([i915#4613]) +3 other tests skip [15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/bat-mtlp-8/igt@gem_lmem_swapping@parallel-random-engines.html - bat-jsl-1: NOTRUN -> [SKIP][16] ([i915#4613]) +3 other tests skip [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/bat-jsl-1/igt@gem_lmem_swapping@parallel-random-engines.html * igt@gem_mmap@basic: - bat-mtlp-8: NOTRUN -> [SKIP][17] ([i915#4083]) [17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/bat-mtlp-8/igt@gem_mmap@basic.html * igt@gem_render_tiled_blits@basic: - bat-mtlp-8: NOTRUN -> [SKIP][18] ([i915#4079]) +1 other test skip [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/bat-mtlp-8/igt@gem_render_tiled_blits@basic.html * igt@gem_tiled_fence_blits@basic: - bat-mtlp-8: NOTRUN -> [SKIP][19] ([i915#4077]) +3 other tests skip [19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/bat-mtlp-8/igt@gem_tiled_fence_blits@basic.html * igt@gem_tiled_pread_basic: - bat-adlp-11: NOTRUN -> [SKIP][20] ([i915#3282]) [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/bat-adlp-11/igt@gem_tiled_pread_basic.html - bat-adlm-1: NOTRUN -> [SKIP][21] ([i915#3282]) [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/bat-adlm-1/igt@gem_tiled_pread_basic.html * igt@i915_pm_rps@basic-api: - bat-mtlp-8: NOTRUN -> [SKIP][22] ([i915#6621]) [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/bat-mtlp-8/igt@i915_pm_rps@basic-api.html - bat-adlm-1: NOTRUN -> [SKIP][23] ([i915#6621]) [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/bat-adlm-1/igt@i915_pm_rps@basic-api.html * igt@i915_selftest@live@gt_heartbeat: - bat-jsl-1: NOTRUN -> [DMESG-FAIL][24] ([i915#5334]) [24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/bat-jsl-1/igt@i915_selftest@live@gt_heartbeat.html * igt@i915_selftest@live@gt_pm: - fi-kbl-soraka: NOTRUN -> [DMESG-FAIL][25] ([i915#1886]) [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/fi-kbl-soraka/igt@i915_selftest@live@gt_pm.html * igt@i915_suspend@basic-s3-without-i915: - bat-mtlp-8: NOTRUN -> [SKIP][26] ([i915#6645]) [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/bat-mtlp-8/igt@i915_suspend@basic-s3-without-i915.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - bat-mtlp-8: NOTRUN -> [SKIP][27] ([i915#5190]) [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/bat-mtlp-8/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_addfb_basic@basic-y-tiled-legacy: - bat-mtlp-8: NOTRUN -> [SKIP][28] ([i915#4212]) +8 other tests skip [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/bat-mtlp-8/igt@kms_addfb_basic@basic-y-tiled-legacy.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - fi-kbl-soraka: NOTRUN -> [SKIP][29] ([fdo#109271]) +9 other tests skip [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/fi-kbl-soraka/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy: - bat-mtlp-8: NOTRUN -> [SKIP][30] ([i915#4213]) +1 other test skip [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/bat-mtlp-8/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html - bat-jsl-1: NOTRUN -> [SKIP][31] ([i915#4103]) +1 other test skip [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/bat-jsl-1/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html - bat-adlp-11: NOTRUN -> [SKIP][32] ([i915#4103] / [i915#5608]) +1 other test skip [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/bat-adlp-11/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-legacy.html * igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size: - bat-adlm-1: NOTRUN -> [SKIP][33] ([i915#1845]) +17 other tests skip [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/bat-adlm-1/igt@kms_cursor_legacy@basic-flip-after-cursor-varying-size.html * igt@kms_dsc@dsc-basic: - bat-adlp-11: NOTRUN -> [SKIP][34] ([i915#3555] / [i915#3840]) [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/bat-adlp-11/igt@kms_dsc@dsc-basic.html - bat-mtlp-8: NOTRUN -> [SKIP][35] ([i915#3555] / [i915#3840] / [i915#9159]) [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/bat-mtlp-8/igt@kms_dsc@dsc-basic.html - bat-jsl-1: NOTRUN -> [SKIP][36] ([i915#3555]) +1 other test skip [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/bat-jsl-1/igt@kms_dsc@dsc-basic.html * igt@kms_flip@basic-flip-vs-modeset@c-dp5: - bat-adlp-11: NOTRUN -> [DMESG-WARN][37] ([i915#4309]) [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/bat-adlp-11/igt@kms_flip@basic-flip-vs-modeset@c-dp5.html * igt@kms_flip@basic-flip-vs-wf_vblank: - bat-adlm-1: NOTRUN -> [SKIP][38] ([i915#3637]) +3 other tests skip [38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/bat-adlm-1/igt@kms_flip@basic-flip-vs-wf_vblank.html * igt@kms_force_connector_basic@force-load-detect: - bat-adlm-1: NOTRUN -> [SKIP][39] ([fdo#109285]) [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/bat-adlm-1/igt@kms_force_connector_basic@force-load-detect.html - bat-mtlp-8: NOTRUN -> [SKIP][40] ([fdo#109285]) [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/bat-mtlp-8/igt@kms_force_connector_basic@force-load-detect.html - bat-jsl-1: NOTRUN -> [SKIP][41] ([fdo#109285]) [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/bat-jsl-1/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_force_connector_basic@prune-stale-modes: - bat-adlp-11: NOTRUN -> [SKIP][42] ([i915#4093]) +3 other tests skip [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/bat-adlp-11/igt@kms_force_connector_basic@prune-stale-modes.html - bat-mtlp-8: NOTRUN -> [SKIP][43] ([i915#5274]) [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/bat-mtlp-8/igt@kms_force_connector_basic@prune-stale-modes.html * igt@kms_frontbuffer_tracking@basic: - bat-adlm-1: NOTRUN -> [SKIP][44] ([i915#1849]) [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/bat-adlm-1/igt@kms_frontbuffer_tracking@basic.html * igt@kms_hdmi_inject@inject-audio: - fi-kbl-guc: [PASS][45] -> [FAIL][46] ([IGT#3]) [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13823/fi-kbl-guc/igt@kms_hdmi_inject@inject-audio.html [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/fi-kbl-guc/igt@kms_hdmi_inject@inject-audio.html - bat-adlp-11: NOTRUN -> [SKIP][47] ([i915#4369]) [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/bat-adlp-11/igt@kms_hdmi_inject@inject-audio.html * igt@kms_pipe_crc_basic@read-crc-frame-sequence: - bat-dg2-11: NOTRUN -> [SKIP][48] ([i915#1845] / [i915#9197]) [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/bat-dg2-11/igt@kms_pipe_crc_basic@read-crc-frame-sequence.html * igt@kms_psr@cursor_plane_move: - bat-adlm-1: NOTRUN -> [SKIP][49] ([i915#1072]) +3 other tests skip [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/bat-adlm-1/igt@kms_psr@cursor_plane_move.html * igt@kms_setmode@basic-clone-single-crtc: - bat-mtlp-8: NOTRUN -> [SKIP][50] ([i915#3555] / [i915#8809]) [50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/bat-mtlp-8/igt@kms_setmode@basic-clone-single-crtc.html - bat-adlm-1: NOTRUN -> [SKIP][51] ([i915#3555]) [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/bat-adlm-1/igt@kms_setmode@basic-clone-single-crtc.html * igt@prime_vgem@basic-fence-flip: - bat-adlm-1: NOTRUN -> [SKIP][52] ([i915#1845] / [i915#3708]) [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/bat-adlm-1/igt@prime_vgem@basic-fence-flip.html * igt@prime_vgem@basic-fence-read: - bat-mtlp-8: NOTRUN -> [SKIP][53] ([i915#3708]) +2 other tests skip [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/bat-mtlp-8/igt@prime_vgem@basic-fence-read.html * igt@prime_vgem@basic-gtt: - bat-mtlp-8: NOTRUN -> [SKIP][54] ([i915#3708] / [i915#4077]) +1 other test skip [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/bat-mtlp-8/igt@prime_vgem@basic-gtt.html * igt@prime_vgem@basic-write: - bat-adlm-1: NOTRUN -> [SKIP][55] ([i915#3708]) +2 other tests skip [55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/bat-adlm-1/igt@prime_vgem@basic-write.html #### Possible fixes #### * igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1: - bat-rplp-1: [ABORT][56] ([i915#8668]) -> [PASS][57] [56]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13823/bat-rplp-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1.html [57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/bat-rplp-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1.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#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#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845 [i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849 [i915#1886]: https://gitlab.freedesktop.org/drm/intel/issues/1886 [i915#2190]: https://gitlab.freedesktop.org/drm/intel/issues/2190 [i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3546]: https://gitlab.freedesktop.org/drm/intel/issues/3546 [i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555 [i915#3637]: https://gitlab.freedesktop.org/drm/intel/issues/3637 [i915#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3826]: https://gitlab.freedesktop.org/drm/intel/issues/3826 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [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#4093]: https://gitlab.freedesktop.org/drm/intel/issues/4093 [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#4309]: https://gitlab.freedesktop.org/drm/intel/issues/4309 [i915#4369]: https://gitlab.freedesktop.org/drm/intel/issues/4369 [i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613 [i915#5190]: https://gitlab.freedesktop.org/drm/intel/issues/5190 [i915#5274]: https://gitlab.freedesktop.org/drm/intel/issues/5274 [i915#5334]: https://gitlab.freedesktop.org/drm/intel/issues/5334 [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#6645]: https://gitlab.freedesktop.org/drm/intel/issues/6645 [i915#8293]: https://gitlab.freedesktop.org/drm/intel/issues/8293 [i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668 [i915#8809]: https://gitlab.freedesktop.org/drm/intel/issues/8809 [i915#9159]: https://gitlab.freedesktop.org/drm/intel/issues/9159 [i915#9197]: https://gitlab.freedesktop.org/drm/intel/issues/9197 [i915#9318]: https://gitlab.freedesktop.org/drm/intel/issues/9318 Build changes ------------- * Linux: CI_DRM_13823 -> Patchwork_125807v1 CI-20190529: 20190529 CI_DRM_13823: 3f4656949887086d179f7d5c78aa8b749efa20dc @ git://anongit.freedesktop.org/gfx-ci/linux IGT_7566: 7566 Patchwork_125807v1: 3f4656949887086d179f7d5c78aa8b749efa20dc @ git://anongit.freedesktop.org/gfx-ci/linux ### Linux commits edf1e0d9cde1 drm/i915: move gpu error sysfs to i915_gpu_error.c 6221a4a792fa drm/i915: move gpu error debugfs to i915_gpu_error.c d2628560e1a1 drm/i915: make some error capture functions static == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/index.html [-- Attachment #2: Type: text/html, Size: 20158 bytes --] ^ permalink raw reply [flat|nested] 13+ messages in thread
* [Intel-gfx] ✗ Fi.CI.IGT: failure for series starting with [RESEND,1/3] drm/i915: make some error capture functions static 2023-10-31 12:45 [Intel-gfx] [PATCH RESEND 1/3] drm/i915: make some error capture functions static Jani Nikula ` (5 preceding siblings ...) 2023-10-31 21:58 ` [Intel-gfx] ✓ Fi.CI.BAT: success " Patchwork @ 2023-11-02 9:29 ` Patchwork 6 siblings, 0 replies; 13+ messages in thread From: Patchwork @ 2023-11-02 9:29 UTC (permalink / raw) To: Jani Nikula; +Cc: intel-gfx [-- Attachment #1: Type: text/plain, Size: 98764 bytes --] == Series Details == Series: series starting with [RESEND,1/3] drm/i915: make some error capture functions static URL : https://patchwork.freedesktop.org/series/125807/ State : failure == Summary == CI Bug Log - changes from CI_DRM_13823_full -> Patchwork_125807v1_full ==================================================== Summary ------- **FAILURE** Serious unknown changes coming with Patchwork_125807v1_full absolutely need to be verified manually. If you think the reported changes have nothing to do with the changes introduced in Patchwork_125807v1_full, please notify your bug team (lgci.bug.filing@intel.com) to allow them to document this new failure mode, which will reduce false positives in CI. External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/index.html Participating hosts (12 -> 12) ------------------------------ Additional (1): shard-rkl0 Missing (1): shard-tglu0 Possible new issues ------------------- Here are the unknown changes that may have been introduced in Patchwork_125807v1_full: ### IGT changes ### #### Possible regressions #### * igt@gem_busy@close-race: - shard-rkl: [PASS][1] -> [INCOMPLETE][2] [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13823/shard-rkl-4/igt@gem_busy@close-race.html [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-rkl-2/igt@gem_busy@close-race.html * igt@gem_ctx_shared@q-smoketest@vecs0: - shard-tglu: [PASS][3] -> [INCOMPLETE][4] [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13823/shard-tglu-2/igt@gem_ctx_shared@q-smoketest@vecs0.html [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-tglu-5/igt@gem_ctx_shared@q-smoketest@vecs0.html * igt@i915_selftest@live@gt_engines: - shard-rkl: [PASS][5] -> [FAIL][6] [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13823/shard-rkl-2/igt@i915_selftest@live@gt_engines.html [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-rkl-2/igt@i915_selftest@live@gt_engines.html Known issues ------------ Here are the changes found in Patchwork_125807v1_full that come from known issues: ### CI changes ### #### Possible fixes #### * boot: - shard-glk: ([PASS][7], [PASS][8], [PASS][9], [PASS][10], [PASS][11], [PASS][12], [PASS][13], [PASS][14], [PASS][15], [PASS][16], [PASS][17], [PASS][18], [PASS][19], [PASS][20], [PASS][21], [PASS][22], [FAIL][23], [PASS][24], [PASS][25], [PASS][26], [PASS][27], [PASS][28], [PASS][29], [PASS][30], [PASS][31]) ([i915#8293]) -> ([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], [PASS][50], [PASS][51], [PASS][52], [PASS][53], [PASS][54], [PASS][55], [PASS][56]) [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13823/shard-glk4/boot.html [8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13823/shard-glk3/boot.html [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13823/shard-glk3/boot.html [10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13823/shard-glk3/boot.html [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13823/shard-glk3/boot.html [12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13823/shard-glk2/boot.html [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13823/shard-glk2/boot.html [14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13823/shard-glk4/boot.html [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13823/shard-glk6/boot.html [16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13823/shard-glk6/boot.html [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13823/shard-glk2/boot.html [18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13823/shard-glk6/boot.html [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13823/shard-glk2/boot.html [20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13823/shard-glk1/boot.html [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13823/shard-glk6/boot.html [22]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13823/shard-glk8/boot.html [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13823/shard-glk1/boot.html [24]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13823/shard-glk8/boot.html [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13823/shard-glk8/boot.html [26]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13823/shard-glk8/boot.html [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13823/shard-glk9/boot.html [28]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13823/shard-glk9/boot.html [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13823/shard-glk4/boot.html [30]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13823/shard-glk9/boot.html [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13823/shard-glk9/boot.html [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-glk9/boot.html [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-glk9/boot.html [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-glk8/boot.html [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-glk8/boot.html [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-glk8/boot.html [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-glk8/boot.html [38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-glk6/boot.html [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-glk6/boot.html [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-glk6/boot.html [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-glk6/boot.html [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-glk4/boot.html [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-glk4/boot.html [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-glk4/boot.html [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-glk4/boot.html [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-glk3/boot.html [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-glk3/boot.html [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-glk3/boot.html [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-glk3/boot.html [50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-glk3/boot.html [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-glk2/boot.html [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-glk2/boot.html [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-glk2/boot.html [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-glk2/boot.html [55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-glk9/boot.html [56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-glk9/boot.html ### IGT changes ### #### Issues hit #### * igt@api_intel_bb@blit-reloc-purge-cache: - shard-mtlp: NOTRUN -> [SKIP][57] ([i915#8411]) [57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-mtlp-5/igt@api_intel_bb@blit-reloc-purge-cache.html * igt@api_intel_bb@object-reloc-keep-cache: - shard-dg2: NOTRUN -> [SKIP][58] ([i915#8411]) +1 other test skip [58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-dg2-11/igt@api_intel_bb@object-reloc-keep-cache.html * igt@device_reset@cold-reset-bound: - shard-rkl: NOTRUN -> [SKIP][59] ([i915#7701]) [59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-rkl-7/igt@device_reset@cold-reset-bound.html * igt@drm_fdinfo@busy-idle@bcs0: - shard-mtlp: NOTRUN -> [SKIP][60] ([i915#8414]) +5 other tests skip [60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-mtlp-5/igt@drm_fdinfo@busy-idle@bcs0.html * igt@drm_fdinfo@most-busy-check-all@bcs0: - shard-dg2: NOTRUN -> [SKIP][61] ([i915#8414]) +21 other tests skip [61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-dg2-11/igt@drm_fdinfo@most-busy-check-all@bcs0.html * igt@fbdev@unaligned-write: - shard-rkl: [PASS][62] -> [SKIP][63] ([i915#2582]) [62]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13823/shard-rkl-2/igt@fbdev@unaligned-write.html [63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-rkl-5/igt@fbdev@unaligned-write.html * igt@gem_basic@multigpu-create-close: - shard-mtlp: NOTRUN -> [SKIP][64] ([i915#7697]) [64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-mtlp-5/igt@gem_basic@multigpu-create-close.html * igt@gem_ccs@block-multicopy-compressed: - shard-tglu: NOTRUN -> [SKIP][65] ([i915#9323]) [65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-tglu-6/igt@gem_ccs@block-multicopy-compressed.html * igt@gem_close_race@multigpu-basic-threads: - shard-dg2: NOTRUN -> [SKIP][66] ([i915#7697]) [66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-dg2-7/igt@gem_close_race@multigpu-basic-threads.html * igt@gem_create@create-ext-set-pat: - shard-dg2: NOTRUN -> [SKIP][67] ([i915#8562]) [67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-dg2-11/igt@gem_create@create-ext-set-pat.html * igt@gem_ctx_param@set-priority-not-supported: - shard-dg2: NOTRUN -> [SKIP][68] ([fdo#109314]) [68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-dg2-11/igt@gem_ctx_param@set-priority-not-supported.html * igt@gem_ctx_persistence@engines-hang@bcs0: - shard-rkl: [PASS][69] -> [SKIP][70] ([i915#6252]) [69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13823/shard-rkl-4/igt@gem_ctx_persistence@engines-hang@bcs0.html [70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-rkl-5/igt@gem_ctx_persistence@engines-hang@bcs0.html * igt@gem_ctx_persistence@heartbeat-stop: - shard-dg2: NOTRUN -> [SKIP][71] ([i915#8555]) [71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-dg2-11/igt@gem_ctx_persistence@heartbeat-stop.html * igt@gem_ctx_sseu@engines: - shard-tglu: NOTRUN -> [SKIP][72] ([i915#280]) [72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-tglu-6/igt@gem_ctx_sseu@engines.html * igt@gem_exec_balancer@bonded-false-hang: - shard-dg2: NOTRUN -> [SKIP][73] ([i915#4812]) +2 other tests skip [73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-dg2-11/igt@gem_exec_balancer@bonded-false-hang.html * igt@gem_exec_balancer@bonded-pair: - shard-dg2: NOTRUN -> [SKIP][74] ([i915#4771]) [74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-dg2-11/igt@gem_exec_balancer@bonded-pair.html * igt@gem_exec_balancer@invalid-bonds: - shard-dg2: NOTRUN -> [SKIP][75] ([i915#4036]) [75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-dg2-1/igt@gem_exec_balancer@invalid-bonds.html * igt@gem_exec_capture@many-4k-incremental: - shard-tglu: NOTRUN -> [FAIL][76] ([i915#9606]) [76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-tglu-6/igt@gem_exec_capture@many-4k-incremental.html * igt@gem_exec_fair@basic-none-share: - shard-mtlp: NOTRUN -> [SKIP][77] ([i915#4473] / [i915#4771]) [77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-mtlp-5/igt@gem_exec_fair@basic-none-share.html * igt@gem_exec_fair@basic-pace-solo@rcs0: - shard-glk: NOTRUN -> [FAIL][78] ([i915#2842]) [78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-glk9/igt@gem_exec_fair@basic-pace-solo@rcs0.html * igt@gem_exec_fair@basic-sync: - shard-dg2: NOTRUN -> [SKIP][79] ([i915#3539]) +1 other test skip [79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-dg2-11/igt@gem_exec_fair@basic-sync.html * igt@gem_exec_fair@basic-throttle@rcs0: - shard-rkl: NOTRUN -> [FAIL][80] ([i915#2842]) [80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-rkl-7/igt@gem_exec_fair@basic-throttle@rcs0.html * igt@gem_exec_flush@basic-uc-pro-default: - shard-dg2: NOTRUN -> [SKIP][81] ([i915#3539] / [i915#4852]) +7 other tests skip [81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-dg2-11/igt@gem_exec_flush@basic-uc-pro-default.html * igt@gem_exec_params@rsvd2-dirt: - shard-dg2: NOTRUN -> [SKIP][82] ([fdo#109283] / [i915#5107]) [82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-dg2-11/igt@gem_exec_params@rsvd2-dirt.html * igt@gem_exec_reloc@basic-gtt-cpu: - shard-rkl: NOTRUN -> [SKIP][83] ([i915#3281]) +2 other tests skip [83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-rkl-7/igt@gem_exec_reloc@basic-gtt-cpu.html * igt@gem_exec_reloc@basic-gtt-wc-noreloc: - shard-rkl: [PASS][84] -> [SKIP][85] ([i915#3281]) +5 other tests skip [84]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13823/shard-rkl-5/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html [85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-rkl-7/igt@gem_exec_reloc@basic-gtt-wc-noreloc.html * igt@gem_exec_reloc@basic-write-read-active: - shard-dg2: NOTRUN -> [SKIP][86] ([i915#3281]) +11 other tests skip [86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-dg2-11/igt@gem_exec_reloc@basic-write-read-active.html * igt@gem_exec_schedule@reorder-wide: - shard-dg2: NOTRUN -> [SKIP][87] ([i915#4537] / [i915#4812]) +3 other tests skip [87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-dg2-1/igt@gem_exec_schedule@reorder-wide.html * igt@gem_exec_schedule@semaphore-power: - shard-rkl: NOTRUN -> [SKIP][88] ([i915#7276]) [88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-rkl-7/igt@gem_exec_schedule@semaphore-power.html * igt@gem_exec_suspend@basic-s4-devices@lmem0: - shard-dg2: NOTRUN -> [ABORT][89] ([i915#7975] / [i915#8213]) [89]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-dg2-1/igt@gem_exec_suspend@basic-s4-devices@lmem0.html * igt@gem_fence_thrash@bo-write-verify-y: - shard-dg2: NOTRUN -> [SKIP][90] ([i915#4860]) +2 other tests skip [90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-dg2-11/igt@gem_fence_thrash@bo-write-verify-y.html * igt@gem_lmem_swapping@heavy-verify-random: - shard-mtlp: NOTRUN -> [SKIP][91] ([i915#4613]) [91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-mtlp-5/igt@gem_lmem_swapping@heavy-verify-random.html * igt@gem_lmem_swapping@parallel-random-engines: - shard-apl: NOTRUN -> [SKIP][92] ([fdo#109271] / [i915#4613]) +1 other test skip [92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-apl4/igt@gem_lmem_swapping@parallel-random-engines.html * igt@gem_lmem_swapping@smem-oom: - shard-glk: NOTRUN -> [SKIP][93] ([fdo#109271] / [i915#4613]) +1 other test skip [93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-glk9/igt@gem_lmem_swapping@smem-oom.html * igt@gem_lmem_swapping@smem-oom@lmem0: - shard-dg1: [PASS][94] -> [DMESG-WARN][95] ([i915#4936] / [i915#5493]) [94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13823/shard-dg1-17/igt@gem_lmem_swapping@smem-oom@lmem0.html [95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-dg1-18/igt@gem_lmem_swapping@smem-oom@lmem0.html * igt@gem_mmap_gtt@big-bo-tiledy: - shard-mtlp: NOTRUN -> [SKIP][96] ([i915#4077]) +5 other tests skip [96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-mtlp-5/igt@gem_mmap_gtt@big-bo-tiledy.html * igt@gem_mmap_gtt@cpuset-big-copy-odd: - shard-dg2: NOTRUN -> [SKIP][97] ([i915#4077]) +12 other tests skip [97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-dg2-11/igt@gem_mmap_gtt@cpuset-big-copy-odd.html * igt@gem_mmap_wc@write-wc-read-gtt: - shard-dg2: NOTRUN -> [SKIP][98] ([i915#4083]) +5 other tests skip [98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-dg2-7/igt@gem_mmap_wc@write-wc-read-gtt.html * igt@gem_partial_pwrite_pread@writes-after-reads-display: - shard-dg2: NOTRUN -> [SKIP][99] ([i915#3282]) +6 other tests skip [99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-dg2-11/igt@gem_partial_pwrite_pread@writes-after-reads-display.html * igt@gem_pxp@create-valid-protected-context: - shard-rkl: NOTRUN -> [SKIP][100] ([i915#4270]) [100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-rkl-7/igt@gem_pxp@create-valid-protected-context.html * igt@gem_pxp@regular-baseline-src-copy-readible: - shard-mtlp: NOTRUN -> [SKIP][101] ([i915#4270]) [101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-mtlp-5/igt@gem_pxp@regular-baseline-src-copy-readible.html * igt@gem_pxp@verify-pxp-execution-after-suspend-resume: - shard-dg2: NOTRUN -> [SKIP][102] ([i915#4270]) +2 other tests skip [102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-dg2-1/igt@gem_pxp@verify-pxp-execution-after-suspend-resume.html * igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs: - shard-glk: NOTRUN -> [SKIP][103] ([fdo#109271]) +35 other tests skip [103]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-glk9/igt@gem_render_copy@y-tiled-ccs-to-y-tiled-mc-ccs.html * igt@gem_render_copy@y-tiled-mc-ccs-to-y-tiled-ccs: - shard-rkl: NOTRUN -> [SKIP][104] ([i915#768]) +1 other test skip [104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-rkl-5/igt@gem_render_copy@y-tiled-mc-ccs-to-y-tiled-ccs.html * igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled: - shard-mtlp: NOTRUN -> [SKIP][105] ([i915#8428]) [105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-mtlp-5/igt@gem_render_copy@yf-tiled-to-vebox-yf-tiled.html * igt@gem_set_tiling_vs_blt@untiled-to-tiled: - shard-dg2: NOTRUN -> [SKIP][106] ([i915#4079]) +1 other test skip [106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-dg2-11/igt@gem_set_tiling_vs_blt@untiled-to-tiled.html * igt@gem_set_tiling_vs_gtt: - shard-mtlp: NOTRUN -> [SKIP][107] ([i915#4079]) [107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-mtlp-5/igt@gem_set_tiling_vs_gtt.html * igt@gem_set_tiling_vs_pwrite: - shard-rkl: [PASS][108] -> [SKIP][109] ([i915#3282]) +3 other tests skip [108]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13823/shard-rkl-5/igt@gem_set_tiling_vs_pwrite.html [109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-rkl-4/igt@gem_set_tiling_vs_pwrite.html * igt@gem_userptr_blits@coherency-sync: - shard-mtlp: NOTRUN -> [SKIP][110] ([i915#3297]) [110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-mtlp-5/igt@gem_userptr_blits@coherency-sync.html * igt@gem_userptr_blits@coherency-unsync: - shard-dg2: NOTRUN -> [SKIP][111] ([i915#3297]) +2 other tests skip [111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-dg2-7/igt@gem_userptr_blits@coherency-unsync.html * igt@gem_userptr_blits@dmabuf-sync: - shard-tglu: NOTRUN -> [SKIP][112] ([i915#3323]) [112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-tglu-6/igt@gem_userptr_blits@dmabuf-sync.html * igt@gem_userptr_blits@map-fixed-invalidate-busy: - shard-dg2: NOTRUN -> [SKIP][113] ([i915#3297] / [i915#4880]) [113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-dg2-1/igt@gem_userptr_blits@map-fixed-invalidate-busy.html * igt@gem_userptr_blits@vma-merge: - shard-rkl: NOTRUN -> [FAIL][114] ([i915#3318]) [114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-rkl-7/igt@gem_userptr_blits@vma-merge.html * igt@gen3_render_mixed_blits: - shard-mtlp: NOTRUN -> [SKIP][115] ([fdo#109289]) [115]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-mtlp-5/igt@gen3_render_mixed_blits.html * igt@gen9_exec_parse@bb-start-cmd: - shard-tglu: NOTRUN -> [SKIP][116] ([i915#2527] / [i915#2856]) [116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-tglu-6/igt@gen9_exec_parse@bb-start-cmd.html * igt@gen9_exec_parse@bb-start-param: - shard-rkl: [PASS][117] -> [SKIP][118] ([i915#2527]) [117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13823/shard-rkl-5/igt@gen9_exec_parse@bb-start-param.html [118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-rkl-7/igt@gen9_exec_parse@bb-start-param.html * igt@gen9_exec_parse@secure-batches: - shard-dg2: NOTRUN -> [SKIP][119] ([i915#2856]) +3 other tests skip [119]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-dg2-1/igt@gen9_exec_parse@secure-batches.html * igt@gen9_exec_parse@unaligned-jump: - shard-mtlp: NOTRUN -> [SKIP][120] ([i915#2856]) [120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-mtlp-5/igt@gen9_exec_parse@unaligned-jump.html * igt@i915_module_load@reload-with-fault-injection: - shard-mtlp: [PASS][121] -> [ABORT][122] ([i915#8489] / [i915#8668]) [121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13823/shard-mtlp-8/igt@i915_module_load@reload-with-fault-injection.html [122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-mtlp-5/igt@i915_module_load@reload-with-fault-injection.html * igt@i915_pm_rc6_residency@media-rc6-accuracy: - shard-rkl: NOTRUN -> [SKIP][123] ([fdo#109289]) +1 other test skip [123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-rkl-7/igt@i915_pm_rc6_residency@media-rc6-accuracy.html * igt@i915_pm_rc6_residency@rc6-idle@rcs0: - shard-dg1: [PASS][124] -> [FAIL][125] ([i915#3591]) [124]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13823/shard-dg1-18/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html [125]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-dg1-18/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html * igt@i915_pm_rpm@gem-execbuf-stress-pc8: - shard-dg2: NOTRUN -> [SKIP][126] ([fdo#109293] / [fdo#109506]) [126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-dg2-11/igt@i915_pm_rpm@gem-execbuf-stress-pc8.html * igt@i915_pm_rps@reset: - shard-snb: [PASS][127] -> [INCOMPLETE][128] ([i915#7790]) [127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13823/shard-snb5/igt@i915_pm_rps@reset.html [128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-snb5/igt@i915_pm_rps@reset.html * igt@i915_pm_rps@thresholds-park@gt0: - shard-dg2: NOTRUN -> [SKIP][129] ([i915#8925]) +2 other tests skip [129]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-dg2-11/igt@i915_pm_rps@thresholds-park@gt0.html * igt@i915_power@sanity: - shard-mtlp: [PASS][130] -> [SKIP][131] ([i915#7984]) [130]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13823/shard-mtlp-6/igt@i915_power@sanity.html [131]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-mtlp-4/igt@i915_power@sanity.html * igt@i915_query@query-topology-known-pci-ids: - shard-dg2: NOTRUN -> [SKIP][132] ([fdo#109303]) [132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-dg2-1/igt@i915_query@query-topology-known-pci-ids.html * igt@i915_selftest@mock@memory_region: - shard-apl: NOTRUN -> [DMESG-WARN][133] ([i915#9311]) [133]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-apl1/igt@i915_selftest@mock@memory_region.html - shard-dg2: NOTRUN -> [DMESG-WARN][134] ([i915#9311]) [134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-dg2-11/igt@i915_selftest@mock@memory_region.html * igt@kms_addfb_basic@addfb25-y-tiled-small-legacy: - shard-dg2: NOTRUN -> [SKIP][135] ([i915#5190]) +17 other tests skip [135]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-dg2-11/igt@kms_addfb_basic@addfb25-y-tiled-small-legacy.html * igt@kms_addfb_basic@bad-pitch-65536: - shard-dg1: [PASS][136] -> [DMESG-WARN][137] ([i915#4423]) [136]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13823/shard-dg1-16/igt@kms_addfb_basic@bad-pitch-65536.html [137]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-dg1-19/igt@kms_addfb_basic@bad-pitch-65536.html * igt@kms_addfb_basic@basic-x-tiled-legacy: - shard-dg2: NOTRUN -> [SKIP][138] ([i915#4212]) +2 other tests skip [138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-dg2-11/igt@kms_addfb_basic@basic-x-tiled-legacy.html * igt@kms_addfb_basic@tile-pitch-mismatch: - shard-dg2: NOTRUN -> [SKIP][139] ([i915#4212] / [i915#5608]) [139]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-dg2-11/igt@kms_addfb_basic@tile-pitch-mismatch.html * igt@kms_async_flips@crc@pipe-a-hdmi-a-3: - shard-dg2: NOTRUN -> [FAIL][140] ([i915#8247]) +3 other tests fail [140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-dg2-7/igt@kms_async_flips@crc@pipe-a-hdmi-a-3.html * igt@kms_async_flips@crc@pipe-c-hdmi-a-1: - shard-dg1: NOTRUN -> [FAIL][141] ([i915#8247]) +3 other tests fail [141]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-dg1-19/igt@kms_async_flips@crc@pipe-c-hdmi-a-1.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-dg2: NOTRUN -> [SKIP][142] ([i915#1769] / [i915#3555]) [142]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-dg2-7/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_atomic_transition@plane-use-after-nonblocking-unbind: - shard-rkl: NOTRUN -> [SKIP][143] ([i915#1845] / [i915#4098]) +9 other tests skip [143]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-rkl-5/igt@kms_atomic_transition@plane-use-after-nonblocking-unbind.html * igt@kms_big_fb@4-tiled-32bpp-rotate-180: - shard-tglu: NOTRUN -> [SKIP][144] ([fdo#111615] / [i915#5286]) [144]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-tglu-6/igt@kms_big_fb@4-tiled-32bpp-rotate-180.html * igt@kms_big_fb@4-tiled-64bpp-rotate-180: - shard-mtlp: [PASS][145] -> [FAIL][146] ([i915#5138]) +1 other test fail [145]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13823/shard-mtlp-5/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html [146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-mtlp-4/igt@kms_big_fb@4-tiled-64bpp-rotate-180.html * igt@kms_big_fb@4-tiled-64bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][147] ([i915#5286]) [147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-rkl-7/igt@kms_big_fb@4-tiled-64bpp-rotate-90.html * igt@kms_big_fb@linear-32bpp-rotate-270: - shard-tglu: NOTRUN -> [SKIP][148] ([fdo#111614]) [148]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-tglu-6/igt@kms_big_fb@linear-32bpp-rotate-270.html * igt@kms_big_fb@linear-64bpp-rotate-90: - shard-rkl: NOTRUN -> [SKIP][149] ([fdo#111614] / [i915#3638]) +1 other test skip [149]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-rkl-7/igt@kms_big_fb@linear-64bpp-rotate-90.html * igt@kms_big_fb@x-tiled-16bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][150] ([fdo#111614]) +4 other tests skip [150]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-dg2-7/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html * igt@kms_big_fb@x-tiled-32bpp-rotate-90: - shard-mtlp: NOTRUN -> [SKIP][151] ([fdo#111614]) +1 other test skip [151]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-mtlp-5/igt@kms_big_fb@x-tiled-32bpp-rotate-90.html * igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip: - shard-tglu: [PASS][152] -> [FAIL][153] ([i915#3743]) +2 other tests fail [152]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13823/shard-tglu-2/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html [153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-tglu-6/igt@kms_big_fb@y-tiled-max-hw-stride-32bpp-rotate-180-async-flip.html * igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-mtlp: NOTRUN -> [SKIP][154] ([fdo#111615]) [154]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-mtlp-5/igt@kms_big_fb@y-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-180: - shard-rkl: NOTRUN -> [SKIP][155] ([fdo#110723]) +1 other test skip [155]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-rkl-4/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-90: - shard-dg2: NOTRUN -> [SKIP][156] ([i915#4538] / [i915#5190]) +9 other tests skip [156]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-dg2-7/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-32bpp-rotate-90: - shard-tglu: NOTRUN -> [SKIP][157] ([fdo#111615]) [157]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-tglu-6/igt@kms_big_fb@yf-tiled-32bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow: - shard-mtlp: NOTRUN -> [SKIP][158] ([i915#6187]) +1 other test skip [158]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-mtlp-5/igt@kms_big_fb@yf-tiled-addfb-size-offset-overflow.html * igt@kms_cdclk@mode-transition: - shard-rkl: NOTRUN -> [SKIP][159] ([i915#3742]) [159]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-rkl-7/igt@kms_cdclk@mode-transition.html * igt@kms_cdclk@mode-transition-all-outputs: - shard-dg2: NOTRUN -> [SKIP][160] ([i915#4087] / [i915#7213]) [160]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-dg2-1/igt@kms_cdclk@mode-transition-all-outputs.html * igt@kms_cdclk@plane-scaling@pipe-b-dp-4: - shard-dg2: NOTRUN -> [SKIP][161] ([i915#4087]) +3 other tests skip [161]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-dg2-11/igt@kms_cdclk@plane-scaling@pipe-b-dp-4.html * igt@kms_chamelium_color@ctm-green-to-red: - shard-dg2: NOTRUN -> [SKIP][162] ([fdo#111827]) +1 other test skip [162]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-dg2-11/igt@kms_chamelium_color@ctm-green-to-red.html * igt@kms_chamelium_color@ctm-negative: - shard-tglu: NOTRUN -> [SKIP][163] ([fdo#111827]) +1 other test skip [163]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-tglu-6/igt@kms_chamelium_color@ctm-negative.html * igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k: - shard-rkl: NOTRUN -> [SKIP][164] ([i915#7828]) +1 other test skip [164]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-rkl-7/igt@kms_chamelium_edid@dp-edid-stress-resolution-non-4k.html * igt@kms_chamelium_frames@hdmi-crc-multiple: - shard-dg2: NOTRUN -> [SKIP][165] ([i915#7828]) +12 other tests skip [165]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-dg2-11/igt@kms_chamelium_frames@hdmi-crc-multiple.html * igt@kms_chamelium_hpd@dp-hpd-fast: - shard-tglu: NOTRUN -> [SKIP][166] ([i915#7828]) [166]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-tglu-6/igt@kms_chamelium_hpd@dp-hpd-fast.html * igt@kms_chamelium_hpd@hdmi-hpd-storm-disable: - shard-mtlp: NOTRUN -> [SKIP][167] ([i915#7828]) +1 other test skip [167]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-mtlp-5/igt@kms_chamelium_hpd@hdmi-hpd-storm-disable.html * igt@kms_color@ctm-max@pipe-b: - shard-rkl: [PASS][168] -> [SKIP][169] ([i915#4098]) +1 other test skip [168]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13823/shard-rkl-4/igt@kms_color@ctm-max@pipe-b.html [169]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-rkl-5/igt@kms_color@ctm-max@pipe-b.html * igt@kms_color@deep-color: - shard-dg2: NOTRUN -> [SKIP][170] ([i915#3555]) +3 other tests skip [170]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-dg2-1/igt@kms_color@deep-color.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-tglu: NOTRUN -> [SKIP][171] ([i915#3116] / [i915#3299]) [171]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-tglu-6/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@dp-mst-lic-type-1: - shard-mtlp: NOTRUN -> [SKIP][172] ([i915#3299]) [172]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-mtlp-5/igt@kms_content_protection@dp-mst-lic-type-1.html * igt@kms_content_protection@dp-mst-type-0: - shard-dg2: NOTRUN -> [SKIP][173] ([i915#3299]) [173]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-dg2-11/igt@kms_content_protection@dp-mst-type-0.html * igt@kms_content_protection@legacy@pipe-a-dp-1: - shard-apl: NOTRUN -> [TIMEOUT][174] ([i915#7173]) [174]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-apl1/igt@kms_content_protection@legacy@pipe-a-dp-1.html * igt@kms_content_protection@lic: - shard-mtlp: NOTRUN -> [SKIP][175] ([i915#6944]) [175]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-mtlp-5/igt@kms_content_protection@lic.html * igt@kms_cursor_crc@cursor-random-32x32: - shard-tglu: NOTRUN -> [SKIP][176] ([i915#3555]) [176]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-tglu-6/igt@kms_cursor_crc@cursor-random-32x32.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-dg2: NOTRUN -> [SKIP][177] ([i915#3359]) +1 other test skip [177]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-dg2-7/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_crc@cursor-rapid-movement-32x10: - shard-mtlp: NOTRUN -> [SKIP][178] ([i915#3555] / [i915#8814]) +1 other test skip [178]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-mtlp-5/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html * igt@kms_cursor_edge_walk@256x256-top-bottom: - shard-rkl: NOTRUN -> [SKIP][179] ([i915#4098]) +10 other tests skip [179]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-rkl-5/igt@kms_cursor_edge_walk@256x256-top-bottom.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic: - shard-mtlp: NOTRUN -> [SKIP][180] ([i915#4213]) [180]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-mtlp-5/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-atomic.html * igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size: - shard-dg2: NOTRUN -> [SKIP][181] ([i915#4103] / [i915#4213]) [181]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-dg2-11/igt@kms_cursor_legacy@basic-busy-flip-before-cursor-varying-size.html * igt@kms_cursor_legacy@cursor-vs-flip-toggle: - shard-rkl: [PASS][182] -> [SKIP][183] ([i915#1845] / [i915#4098]) +17 other tests skip [182]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13823/shard-rkl-4/igt@kms_cursor_legacy@cursor-vs-flip-toggle.html [183]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-rkl-5/igt@kms_cursor_legacy@cursor-vs-flip-toggle.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic: - shard-tglu: NOTRUN -> [SKIP][184] ([fdo#109274]) [184]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-tglu-6/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions: - shard-mtlp: NOTRUN -> [SKIP][185] ([fdo#111767] / [i915#3546]) [185]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-mtlp-5/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic-transitions.html * igt@kms_cursor_legacy@cursorb-vs-flipb-legacy: - shard-dg2: NOTRUN -> [SKIP][186] ([fdo#109274] / [i915#5354]) +3 other tests skip [186]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-dg2-1/igt@kms_cursor_legacy@cursorb-vs-flipb-legacy.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size: - shard-apl: [PASS][187] -> [FAIL][188] ([i915#2346]) [187]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13823/shard-apl7/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [188]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-apl2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html - shard-glk: [PASS][189] -> [FAIL][190] ([i915#2346]) [189]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13823/shard-glk3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html [190]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-glk2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html * igt@kms_dirtyfb@dirtyfb-ioctl@drrs-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][191] ([i915#9226] / [i915#9261]) +1 other test skip [191]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-rkl-1/igt@kms_dirtyfb@dirtyfb-ioctl@drrs-hdmi-a-2.html * igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-1: - shard-dg1: NOTRUN -> [SKIP][192] ([i915#9227]) [192]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-dg1-19/igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-1.html * igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][193] ([i915#9227]) [193]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-rkl-1/igt@kms_dirtyfb@dirtyfb-ioctl@fbc-hdmi-a-2.html * igt@kms_dirtyfb@dirtyfb-ioctl@psr-hdmi-a-1: - shard-dg1: NOTRUN -> [SKIP][194] ([i915#9226] / [i915#9261]) +1 other test skip [194]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-dg1-19/igt@kms_dirtyfb@dirtyfb-ioctl@psr-hdmi-a-1.html * igt@kms_display_modes@mst-extended-mode-negative: - shard-dg2: NOTRUN -> [SKIP][195] ([i915#8588]) [195]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-dg2-1/igt@kms_display_modes@mst-extended-mode-negative.html * igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1: - shard-rkl: NOTRUN -> [SKIP][196] ([i915#3804]) [196]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-rkl-7/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html * igt@kms_draw_crc@draw-method-mmap-gtt: - shard-dg2: NOTRUN -> [SKIP][197] ([i915#8812]) [197]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-dg2-7/igt@kms_draw_crc@draw-method-mmap-gtt.html * igt@kms_dsc@dsc-basic: - shard-rkl: NOTRUN -> [SKIP][198] ([i915#3555] / [i915#3840]) +1 other test skip [198]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-rkl-7/igt@kms_dsc@dsc-basic.html * igt@kms_flip@2x-flip-vs-blocking-wf-vblank: - shard-dg2: NOTRUN -> [SKIP][199] ([fdo#109274] / [fdo#111767]) +1 other test skip [199]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-dg2-7/igt@kms_flip@2x-flip-vs-blocking-wf-vblank.html * igt@kms_flip@2x-flip-vs-wf_vblank: - shard-mtlp: NOTRUN -> [SKIP][200] ([i915#3637]) [200]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-mtlp-5/igt@kms_flip@2x-flip-vs-wf_vblank.html * igt@kms_flip@2x-flip-vs-wf_vblank-interruptible: - shard-dg2: NOTRUN -> [SKIP][201] ([fdo#109274]) +9 other tests skip [201]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-dg2-11/igt@kms_flip@2x-flip-vs-wf_vblank-interruptible.html * igt@kms_flip@2x-modeset-vs-vblank-race: - shard-snb: NOTRUN -> [SKIP][202] ([fdo#109271]) +10 other tests skip [202]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-snb7/igt@kms_flip@2x-modeset-vs-vblank-race.html * igt@kms_flip@2x-plain-flip-fb-recreate: - shard-apl: NOTRUN -> [SKIP][203] ([fdo#109271]) +132 other tests skip [203]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-apl4/igt@kms_flip@2x-plain-flip-fb-recreate.html * igt@kms_flip@2x-plain-flip-interruptible: - shard-rkl: NOTRUN -> [SKIP][204] ([fdo#111825]) +1 other test skip [204]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-rkl-7/igt@kms_flip@2x-plain-flip-interruptible.html * igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset: - shard-tglu: NOTRUN -> [SKIP][205] ([fdo#109274] / [i915#3637]) [205]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-tglu-6/igt@kms_flip@2x-single-buffer-flip-vs-dpms-off-vs-modeset.html * igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible: - shard-rkl: NOTRUN -> [SKIP][206] ([i915#3637] / [i915#4098]) +4 other tests skip [206]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-rkl-5/igt@kms_flip@flip-vs-absolute-wf_vblank-interruptible.html * igt@kms_flip@flip-vs-fences: - shard-dg2: NOTRUN -> [SKIP][207] ([i915#8381]) [207]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-dg2-11/igt@kms_flip@flip-vs-fences.html * igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode: - shard-dg2: NOTRUN -> [SKIP][208] ([i915#2672]) +6 other tests skip [208]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-dg2-11/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytileccs-upscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-valid-mode: - shard-tglu: NOTRUN -> [SKIP][209] ([i915#2587] / [i915#2672]) [209]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-tglu-6/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-16bpp-4tile-downscaling@pipe-a-valid-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling: - shard-rkl: NOTRUN -> [SKIP][210] ([i915#3555]) +6 other tests skip [210]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-rkl-5/igt@kms_flip_scaled_crc@flip-64bpp-4tile-to-32bpp-4tiledg2rcccs-downscaling.html * igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling@pipe-a-default-mode: - shard-mtlp: NOTRUN -> [SKIP][211] ([i915#3555] / [i915#8810]) [211]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-mtlp-5/igt@kms_flip_scaled_crc@flip-64bpp-xtile-to-16bpp-xtile-downscaling@pipe-a-default-mode.html * igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode: - shard-rkl: NOTRUN -> [SKIP][212] ([i915#2672]) +3 other tests skip [212]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-rkl-7/igt@kms_flip_scaled_crc@flip-64bpp-yftile-to-32bpp-yftile-upscaling@pipe-a-valid-mode.html * igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-cpu: - shard-rkl: [PASS][213] -> [SKIP][214] ([i915#1849] / [i915#4098]) +5 other tests skip [213]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13823/shard-rkl-6/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-cpu.html [214]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-rkl-5/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-cpu.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-gtt: - shard-mtlp: NOTRUN -> [SKIP][215] ([i915#8708]) [215]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-mtlp-7/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-shrfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen: - shard-dg2: NOTRUN -> [FAIL][216] ([i915#6880]) [216]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-spr-indfb-fullscreen.html * igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc: - shard-dg2: NOTRUN -> [SKIP][217] ([i915#8708]) +25 other tests skip [217]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-cur-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt: - shard-dg2: NOTRUN -> [SKIP][218] ([i915#5354]) +43 other tests skip [218]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc: - shard-rkl: NOTRUN -> [SKIP][219] ([fdo#111825] / [i915#1825]) +7 other tests skip [219]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-rkl-7/igt@kms_frontbuffer_tracking@fbc-2p-scndscrn-pri-indfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc: - shard-mtlp: NOTRUN -> [SKIP][220] ([i915#1825]) +11 other tests skip [220]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-mtlp-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@fbcpsr-tiling-y: - shard-tglu: NOTRUN -> [SKIP][221] ([fdo#110189]) +8 other tests skip [221]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-tglu-6/igt@kms_frontbuffer_tracking@fbcpsr-tiling-y.html * igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc: - shard-tglu: NOTRUN -> [SKIP][222] ([fdo#109280]) +8 other tests skip [222]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-tglu-6/igt@kms_frontbuffer_tracking@psr-2p-scndscrn-pri-shrfb-draw-mmap-wc.html * igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary: - shard-dg2: NOTRUN -> [SKIP][223] ([i915#3458]) +24 other tests skip [223]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-dg2-11/igt@kms_frontbuffer_tracking@psr-indfb-scaledprimary.html * igt@kms_frontbuffer_tracking@psr-suspend: - shard-rkl: NOTRUN -> [SKIP][224] ([i915#3023]) +7 other tests skip [224]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-suspend.html * igt@kms_hdr@bpc-switch-dpms: - shard-dg2: NOTRUN -> [SKIP][225] ([i915#3555] / [i915#8228]) [225]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-dg2-1/igt@kms_hdr@bpc-switch-dpms.html * igt@kms_hdr@bpc-switch-suspend: - shard-rkl: NOTRUN -> [SKIP][226] ([i915#3555] / [i915#8228]) [226]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-rkl-7/igt@kms_hdr@bpc-switch-suspend.html * igt@kms_invalid_mode@bad-vtotal: - shard-rkl: NOTRUN -> [SKIP][227] ([i915#3555] / [i915#4098]) +2 other tests skip [227]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-rkl-5/igt@kms_invalid_mode@bad-vtotal.html * igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes: - shard-dg2: NOTRUN -> [SKIP][228] ([fdo#109289]) +6 other tests skip [228]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-dg2-11/igt@kms_pipe_b_c_ivb@from-pipe-c-to-b-with-3-lanes.html * igt@kms_plane@pixel-format: - shard-rkl: NOTRUN -> [SKIP][229] ([i915#4098] / [i915#8825]) +1 other test skip [229]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-rkl-5/igt@kms_plane@pixel-format.html * igt@kms_plane_lowres@tiling-yf: - shard-dg2: NOTRUN -> [SKIP][230] ([i915#3555] / [i915#8821]) [230]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-dg2-11/igt@kms_plane_lowres@tiling-yf.html * igt@kms_plane_scaling@2x-scaler-multi-pipe: - shard-mtlp: NOTRUN -> [SKIP][231] ([i915#3546]) [231]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-mtlp-5/igt@kms_plane_scaling@2x-scaler-multi-pipe.html * igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b-hdmi-a-2: - shard-rkl: NOTRUN -> [SKIP][232] ([i915#5176] / [i915#9423]) +1 other test skip [232]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-rkl-4/igt@kms_plane_scaling@plane-scaler-with-clipping-clamping-rotation@pipe-b-hdmi-a-2.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20: - shard-rkl: NOTRUN -> [SKIP][233] ([i915#8152]) [233]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-rkl-5/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a-hdmi-a-3: - shard-dg1: NOTRUN -> [SKIP][234] ([i915#5235]) +7 other tests skip [234]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-dg1-13/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-a-hdmi-a-3.html * igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25: - shard-rkl: NOTRUN -> [SKIP][235] ([i915#6953] / [i915#8152]) [235]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-rkl-5/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-factor-0-25.html * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-a-edp-1: - shard-mtlp: NOTRUN -> [SKIP][236] ([i915#5235]) +2 other tests skip [236]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-mtlp-5/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-a-edp-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-edp-1: - shard-mtlp: NOTRUN -> [SKIP][237] ([i915#3555] / [i915#5235]) [237]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-mtlp-5/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-edp-1.html * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-3: - shard-dg2: NOTRUN -> [SKIP][238] ([i915#5235]) +19 other tests skip [238]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-dg2-7/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-d-hdmi-a-3.html * igt@kms_plane_scaling@planes-scaler-unity-scaling: - shard-rkl: NOTRUN -> [SKIP][239] ([i915#3555] / [i915#4098] / [i915#8152]) [239]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-rkl-5/igt@kms_plane_scaling@planes-scaler-unity-scaling.html * igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75: - shard-rkl: NOTRUN -> [SKIP][240] ([i915#3555] / [i915#4098] / [i915#6953] / [i915#8152]) [240]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-rkl-5/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-75.html * igt@kms_prime@basic-crc-hybrid: - shard-dg2: NOTRUN -> [SKIP][241] ([i915#6524] / [i915#6805]) [241]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-dg2-11/igt@kms_prime@basic-crc-hybrid.html * igt@kms_psr2_sf@cursor-plane-update-sf: - shard-glk: NOTRUN -> [SKIP][242] ([fdo#109271] / [i915#658]) [242]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-glk9/igt@kms_psr2_sf@cursor-plane-update-sf.html * igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area: - shard-rkl: NOTRUN -> [SKIP][243] ([fdo#111068] / [i915#658]) [243]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-rkl-7/igt@kms_psr2_sf@overlay-plane-update-sf-dmg-area.html * igt@kms_psr2_su@frontbuffer-xrgb8888: - shard-dg2: NOTRUN -> [SKIP][244] ([i915#658]) +3 other tests skip [244]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-dg2-1/igt@kms_psr2_su@frontbuffer-xrgb8888.html - shard-apl: NOTRUN -> [SKIP][245] ([fdo#109271] / [i915#658]) [245]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-apl4/igt@kms_psr2_su@frontbuffer-xrgb8888.html * igt@kms_psr2_su@page_flip-p010: - shard-tglu: NOTRUN -> [SKIP][246] ([fdo#109642] / [fdo#111068] / [i915#658]) [246]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-tglu-6/igt@kms_psr2_su@page_flip-p010.html * igt@kms_psr@psr2_sprite_plane_move: - shard-dg2: NOTRUN -> [SKIP][247] ([i915#1072]) +9 other tests skip [247]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-dg2-7/igt@kms_psr@psr2_sprite_plane_move.html * igt@kms_psr_stress_test@invalidate-primary-flip-overlay: - shard-dg2: NOTRUN -> [SKIP][248] ([i915#5461] / [i915#658]) [248]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-dg2-11/igt@kms_psr_stress_test@invalidate-primary-flip-overlay.html * igt@kms_rotation_crc@bad-tiling: - shard-dg2: NOTRUN -> [SKIP][249] ([i915#4235]) [249]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-dg2-7/igt@kms_rotation_crc@bad-tiling.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180: - shard-mtlp: NOTRUN -> [SKIP][250] ([i915#5289]) [250]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-mtlp-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-180.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-dg2: NOTRUN -> [SKIP][251] ([i915#4235] / [i915#5190]) +1 other test skip [251]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-dg2-7/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_setmode@basic-clone-single-crtc: - shard-dg2: NOTRUN -> [SKIP][252] ([i915#3555] / [i915#4098]) +1 other test skip [252]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-dg2-11/igt@kms_setmode@basic-clone-single-crtc.html * igt@kms_tiled_display@basic-test-pattern-with-chamelium: - shard-dg2: NOTRUN -> [SKIP][253] ([i915#8623]) [253]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-dg2-11/igt@kms_tiled_display@basic-test-pattern-with-chamelium.html * igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1: - shard-mtlp: [PASS][254] -> [FAIL][255] ([i915#9196]) [254]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13823/shard-mtlp-8/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html [255]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-mtlp-5/igt@kms_universal_plane@cursor-fb-leak@pipe-c-edp-1.html * igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1: - shard-tglu: [PASS][256] -> [FAIL][257] ([i915#9196]) [256]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13823/shard-tglu-9/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1.html [257]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-tglu-10/igt@kms_universal_plane@cursor-fb-leak@pipe-c-hdmi-a-1.html * igt@kms_vrr@flip-suspend: - shard-mtlp: NOTRUN -> [SKIP][258] ([i915#3555] / [i915#8808]) [258]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-mtlp-7/igt@kms_vrr@flip-suspend.html * igt@kms_writeback@writeback-check-output: - shard-apl: NOTRUN -> [SKIP][259] ([fdo#109271] / [i915#2437]) [259]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-apl1/igt@kms_writeback@writeback-check-output.html * igt@kms_writeback@writeback-pixel-formats: - shard-dg2: NOTRUN -> [SKIP][260] ([i915#2437]) [260]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-dg2-11/igt@kms_writeback@writeback-pixel-formats.html * igt@perf@enable-disable@0-rcs0: - shard-dg2: NOTRUN -> [FAIL][261] ([i915#8724]) [261]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-dg2-11/igt@perf@enable-disable@0-rcs0.html * igt@perf@gen12-group-exclusive-stream-ctx-handle: - shard-rkl: [PASS][262] -> [SKIP][263] ([fdo#109289]) [262]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13823/shard-rkl-6/igt@perf@gen12-group-exclusive-stream-ctx-handle.html [263]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-rkl-5/igt@perf@gen12-group-exclusive-stream-ctx-handle.html * igt@perf@mi-rpc: - shard-dg2: NOTRUN -> [SKIP][264] ([i915#2434]) [264]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-dg2-7/igt@perf@mi-rpc.html - shard-rkl: [PASS][265] -> [SKIP][266] ([i915#2434]) [265]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13823/shard-rkl-5/igt@perf@mi-rpc.html [266]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-rkl-4/igt@perf@mi-rpc.html * igt@perf@non-zero-reason@0-rcs0: - shard-dg2: NOTRUN -> [FAIL][267] ([i915#9100]) [267]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-dg2-11/igt@perf@non-zero-reason@0-rcs0.html * igt@perf@unprivileged-single-ctx-counters: - shard-rkl: NOTRUN -> [SKIP][268] ([i915#2433]) [268]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-rkl-4/igt@perf@unprivileged-single-ctx-counters.html * igt@perf_pmu@event-wait@rcs0: - shard-dg2: NOTRUN -> [SKIP][269] ([fdo#112283]) +1 other test skip [269]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-dg2-11/igt@perf_pmu@event-wait@rcs0.html * igt@perf_pmu@rc6@other-idle-gt0: - shard-dg2: NOTRUN -> [SKIP][270] ([i915#8516]) [270]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-dg2-11/igt@perf_pmu@rc6@other-idle-gt0.html * igt@prime_vgem@basic-fence-read: - shard-rkl: [PASS][271] -> [SKIP][272] ([fdo#109295] / [i915#3291] / [i915#3708]) [271]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13823/shard-rkl-5/igt@prime_vgem@basic-fence-read.html [272]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-rkl-7/igt@prime_vgem@basic-fence-read.html * igt@prime_vgem@fence-flip-hang: - shard-dg2: NOTRUN -> [SKIP][273] ([i915#3708]) +1 other test skip [273]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-dg2-11/igt@prime_vgem@fence-flip-hang.html * igt@syncobj_timeline@invalid-multi-wait-all-available-unsubmitted: - shard-apl: NOTRUN -> [FAIL][274] ([i915#9583]) [274]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-apl1/igt@syncobj_timeline@invalid-multi-wait-all-available-unsubmitted.html * igt@syncobj_timeline@invalid-multi-wait-all-available-unsubmitted-submitted: - shard-dg2: NOTRUN -> [FAIL][275] ([i915#9583]) +1 other test fail [275]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-dg2-11/igt@syncobj_timeline@invalid-multi-wait-all-available-unsubmitted-submitted.html * igt@v3d/v3d_submit_cl@multiple-job-submission: - shard-mtlp: NOTRUN -> [SKIP][276] ([i915#2575]) +2 other tests skip [276]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-mtlp-5/igt@v3d/v3d_submit_cl@multiple-job-submission.html * igt@v3d/v3d_submit_csd@bad-perfmon: - shard-tglu: NOTRUN -> [SKIP][277] ([fdo#109315] / [i915#2575]) +1 other test skip [277]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-tglu-6/igt@v3d/v3d_submit_csd@bad-perfmon.html * igt@v3d/v3d_submit_csd@single-out-sync: - shard-dg2: NOTRUN -> [SKIP][278] ([i915#2575]) +16 other tests skip [278]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-dg2-11/igt@v3d/v3d_submit_csd@single-out-sync.html * igt@v3d/v3d_wait_bo@unused-bo-1ns: - shard-rkl: NOTRUN -> [SKIP][279] ([fdo#109315]) +2 other tests skip [279]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-rkl-7/igt@v3d/v3d_wait_bo@unused-bo-1ns.html * igt@vc4/vc4_label_bo@set-kernel-name: - shard-tglu: NOTRUN -> [SKIP][280] ([i915#2575]) +2 other tests skip [280]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-tglu-6/igt@vc4/vc4_label_bo@set-kernel-name.html * igt@vc4/vc4_purgeable_bo@mark-purgeable-twice: - shard-mtlp: NOTRUN -> [SKIP][281] ([i915#7711]) +1 other test skip [281]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-mtlp-5/igt@vc4/vc4_purgeable_bo@mark-purgeable-twice.html * igt@vc4/vc4_tiling@get-after-free: - shard-rkl: NOTRUN -> [SKIP][282] ([i915#7711]) [282]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-rkl-7/igt@vc4/vc4_tiling@get-after-free.html * igt@vc4/vc4_wait_seqno@bad-seqno-1ns: - shard-dg2: NOTRUN -> [SKIP][283] ([i915#7711]) +12 other tests skip [283]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-dg2-11/igt@vc4/vc4_wait_seqno@bad-seqno-1ns.html #### Possible fixes #### * igt@drm_fdinfo@idle@rcs0: - shard-rkl: [FAIL][284] ([i915#7742]) -> [PASS][285] [284]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13823/shard-rkl-4/igt@drm_fdinfo@idle@rcs0.html [285]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-rkl-5/igt@drm_fdinfo@idle@rcs0.html * igt@gem_bad_reloc@negative-reloc-lut: - shard-rkl: [SKIP][286] ([i915#3281]) -> [PASS][287] +11 other tests pass [286]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13823/shard-rkl-4/igt@gem_bad_reloc@negative-reloc-lut.html [287]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-rkl-5/igt@gem_bad_reloc@negative-reloc-lut.html * igt@gem_ctx_exec@basic-nohangcheck: - shard-rkl: [FAIL][288] ([i915#6268]) -> [PASS][289] [288]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13823/shard-rkl-4/igt@gem_ctx_exec@basic-nohangcheck.html [289]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-rkl-5/igt@gem_ctx_exec@basic-nohangcheck.html * igt@gem_eio@hibernate: - shard-dg2: [ABORT][290] ([i915#7975] / [i915#8213]) -> [PASS][291] [290]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13823/shard-dg2-1/igt@gem_eio@hibernate.html [291]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-dg2-11/igt@gem_eio@hibernate.html * igt@gem_eio@in-flight-10ms: - shard-mtlp: [ABORT][292] ([i915#9414]) -> [PASS][293] [292]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13823/shard-mtlp-8/igt@gem_eio@in-flight-10ms.html [293]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-mtlp-7/igt@gem_eio@in-flight-10ms.html * igt@gem_eio@unwedge-stress: - shard-dg1: [FAIL][294] ([i915#5784]) -> [PASS][295] [294]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13823/shard-dg1-19/igt@gem_eio@unwedge-stress.html [295]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-dg1-18/igt@gem_eio@unwedge-stress.html * igt@gem_exec_fair@basic-pace-share@rcs0: - shard-rkl: [FAIL][296] ([i915#2842]) -> [PASS][297] +1 other test pass [296]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13823/shard-rkl-5/igt@gem_exec_fair@basic-pace-share@rcs0.html [297]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-rkl-4/igt@gem_exec_fair@basic-pace-share@rcs0.html - shard-tglu: [FAIL][298] ([i915#2842]) -> [PASS][299] [298]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13823/shard-tglu-10/igt@gem_exec_fair@basic-pace-share@rcs0.html [299]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-tglu-9/igt@gem_exec_fair@basic-pace-share@rcs0.html * igt@gem_exec_schedule@preempt-engines@ccs0: - shard-mtlp: [FAIL][300] ([i915#9119]) -> [PASS][301] +4 other tests pass [300]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13823/shard-mtlp-4/igt@gem_exec_schedule@preempt-engines@ccs0.html [301]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-mtlp-2/igt@gem_exec_schedule@preempt-engines@ccs0.html * igt@gem_exec_schedule@preempt-engines@rcs0: - shard-mtlp: [DMESG-FAIL][302] ([i915#8962]) -> [PASS][303] [302]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13823/shard-mtlp-4/igt@gem_exec_schedule@preempt-engines@rcs0.html [303]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-mtlp-2/igt@gem_exec_schedule@preempt-engines@rcs0.html * igt@gem_partial_pwrite_pread@reads-uncached: - shard-rkl: [SKIP][304] ([i915#3282]) -> [PASS][305] +6 other tests pass [304]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13823/shard-rkl-2/igt@gem_partial_pwrite_pread@reads-uncached.html [305]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-rkl-5/igt@gem_partial_pwrite_pread@reads-uncached.html * igt@gem_set_tiling_vs_blt@tiled-to-tiled: - shard-rkl: [SKIP][306] ([i915#8411]) -> [PASS][307] [306]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13823/shard-rkl-6/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html [307]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-rkl-5/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html * igt@gen9_exec_parse@bb-start-cmd: - shard-rkl: [SKIP][308] ([i915#2527]) -> [PASS][309] +1 other test pass [308]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13823/shard-rkl-6/igt@gen9_exec_parse@bb-start-cmd.html [309]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-rkl-5/igt@gen9_exec_parse@bb-start-cmd.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip: - shard-mtlp: [FAIL][310] ([i915#5138]) -> [PASS][311] [310]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13823/shard-mtlp-2/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html [311]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-mtlp-8/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180-hflip.html * {igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y-tiled-gen12-rc-ccs}: - shard-rkl: [SKIP][312] ([i915#4098]) -> [PASS][313] +8 other tests pass [312]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13823/shard-rkl-5/igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y-tiled-gen12-rc-ccs.html [313]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-rkl-4/igt@kms_ccs@pipe-a-crc-sprite-planes-basic-y-tiled-gen12-rc-ccs.html * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions: - shard-glk: [FAIL][314] ([i915#2346]) -> [PASS][315] [314]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13823/shard-glk9/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html [315]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-glk8/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html * igt@kms_fbcon_fbt@fbc: - shard-rkl: [SKIP][316] ([i915#1849] / [i915#4098]) -> [PASS][317] +5 other tests pass [316]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13823/shard-rkl-5/igt@kms_fbcon_fbt@fbc.html [317]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-rkl-4/igt@kms_fbcon_fbt@fbc.html * igt@kms_flip@wf_vblank-ts-check-interruptible@a-hdmi-a2: - shard-rkl: [INCOMPLETE][318] -> [PASS][319] [318]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13823/shard-rkl-6/igt@kms_flip@wf_vblank-ts-check-interruptible@a-hdmi-a2.html [319]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-rkl-4/igt@kms_flip@wf_vblank-ts-check-interruptible@a-hdmi-a2.html * {igt@kms_plane@planar-pixel-format-settings}: - shard-rkl: [SKIP][320] ([i915#9581]) -> [PASS][321] [320]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13823/shard-rkl-5/igt@kms_plane@planar-pixel-format-settings.html [321]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-rkl-7/igt@kms_plane@planar-pixel-format-settings.html * {igt@kms_pm_rpm@dpms-lpsp}: - shard-rkl: [SKIP][322] ([i915#9519]) -> [PASS][323] +3 other tests pass [322]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13823/shard-rkl-5/igt@kms_pm_rpm@dpms-lpsp.html [323]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-rkl-7/igt@kms_pm_rpm@dpms-lpsp.html * igt@kms_properties@plane-properties-legacy: - shard-rkl: [SKIP][324] ([i915#1849]) -> [PASS][325] [324]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13823/shard-rkl-5/igt@kms_properties@plane-properties-legacy.html [325]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-rkl-4/igt@kms_properties@plane-properties-legacy.html * igt@kms_rotation_crc@multiplane-rotation-cropping-top: - shard-rkl: [INCOMPLETE][326] ([i915#8875] / [i915#9475] / [i915#9569]) -> [PASS][327] [326]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13823/shard-rkl-4/igt@kms_rotation_crc@multiplane-rotation-cropping-top.html [327]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-rkl-7/igt@kms_rotation_crc@multiplane-rotation-cropping-top.html * igt@kms_rotation_crc@sprite-rotation-90: - shard-rkl: [SKIP][328] ([i915#1845] / [i915#4098]) -> [PASS][329] +8 other tests pass [328]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13823/shard-rkl-5/igt@kms_rotation_crc@sprite-rotation-90.html [329]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-rkl-7/igt@kms_rotation_crc@sprite-rotation-90.html * igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1: - shard-tglu: [FAIL][330] ([i915#9196]) -> [PASS][331] [330]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13823/shard-tglu-9/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html [331]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-tglu-10/igt@kms_universal_plane@cursor-fb-leak@pipe-a-hdmi-a-1.html * igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1: - shard-mtlp: [FAIL][332] ([i915#9196]) -> [PASS][333] [332]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13823/shard-mtlp-8/igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1.html [333]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-mtlp-5/igt@kms_universal_plane@cursor-fb-leak@pipe-d-edp-1.html * igt@perf_pmu@busy-double-start@bcs0: - shard-mtlp: [FAIL][334] ([i915#4349]) -> [PASS][335] [334]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13823/shard-mtlp-7/igt@perf_pmu@busy-double-start@bcs0.html [335]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-mtlp-2/igt@perf_pmu@busy-double-start@bcs0.html #### Warnings #### * igt@gem_ccs@block-copy-compressed: - shard-rkl: [SKIP][336] ([i915#3555]) -> [SKIP][337] ([i915#7957]) [336]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13823/shard-rkl-2/igt@gem_ccs@block-copy-compressed.html [337]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-rkl-5/igt@gem_ccs@block-copy-compressed.html * igt@gem_ccs@block-multicopy-compressed: - shard-rkl: [SKIP][338] ([i915#9323]) -> [SKIP][339] ([i915#7957]) [338]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13823/shard-rkl-6/igt@gem_ccs@block-multicopy-compressed.html [339]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-rkl-5/igt@gem_ccs@block-multicopy-compressed.html * igt@gem_ccs@ctrl-surf-copy-new-ctx: - shard-rkl: [SKIP][340] ([i915#4098] / [i915#9323]) -> [SKIP][341] ([i915#7957]) [340]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13823/shard-rkl-4/igt@gem_ccs@ctrl-surf-copy-new-ctx.html [341]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-rkl-5/igt@gem_ccs@ctrl-surf-copy-new-ctx.html * igt@gen9_exec_parse@bb-oversize: - shard-rkl: [SKIP][342] ([i915#2532]) -> [SKIP][343] ([i915#2527]) [342]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13823/shard-rkl-5/igt@gen9_exec_parse@bb-oversize.html [343]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-rkl-4/igt@gen9_exec_parse@bb-oversize.html * igt@i915_pm_rc6_residency@rc6-idle@rcs0: - shard-tglu: [WARN][344] ([i915#2681]) -> [FAIL][345] ([i915#2681] / [i915#3591]) [344]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13823/shard-tglu-6/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html [345]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-tglu-10/igt@i915_pm_rc6_residency@rc6-idle@rcs0.html * igt@i915_pm_rc6_residency@rc6-idle@vcs0: - shard-tglu: [FAIL][346] ([i915#2681] / [i915#3591]) -> [WARN][347] ([i915#2681]) [346]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13823/shard-tglu-6/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html [347]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-tglu-10/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html * igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels: - shard-rkl: [SKIP][348] ([i915#1845] / [i915#4098]) -> [SKIP][349] ([i915#1769] / [i915#3555]) [348]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13823/shard-rkl-5/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html [349]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-rkl-4/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html * igt@kms_big_fb@4-tiled-32bpp-rotate-0: - shard-rkl: [SKIP][350] ([i915#5286]) -> [SKIP][351] ([i915#4098]) +2 other tests skip [350]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13823/shard-rkl-4/igt@kms_big_fb@4-tiled-32bpp-rotate-0.html [351]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-rkl-5/igt@kms_big_fb@4-tiled-32bpp-rotate-0.html * igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180: - shard-rkl: [SKIP][352] ([i915#4098]) -> [SKIP][353] ([i915#5286]) +3 other tests skip [352]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13823/shard-rkl-5/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180.html [353]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-rkl-7/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-180.html * igt@kms_big_fb@x-tiled-16bpp-rotate-270: - shard-rkl: [SKIP][354] ([fdo#111614] / [i915#3638]) -> [SKIP][355] ([i915#1845] / [i915#4098]) +1 other test skip [354]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13823/shard-rkl-4/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html [355]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-rkl-5/igt@kms_big_fb@x-tiled-16bpp-rotate-270.html * igt@kms_big_fb@x-tiled-16bpp-rotate-90: - shard-rkl: [SKIP][356] ([i915#1845] / [i915#4098]) -> [SKIP][357] ([fdo#111614] / [i915#3638]) [356]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13823/shard-rkl-5/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html [357]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-rkl-4/igt@kms_big_fb@x-tiled-16bpp-rotate-90.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-270: - shard-rkl: [SKIP][358] ([fdo#110723]) -> [SKIP][359] ([i915#1845] / [i915#4098]) +3 other tests skip [358]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13823/shard-rkl-4/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html [359]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-rkl-5/igt@kms_big_fb@yf-tiled-16bpp-rotate-270.html * igt@kms_big_fb@yf-tiled-16bpp-rotate-90: - shard-rkl: [SKIP][360] ([i915#1845] / [i915#4098]) -> [SKIP][361] ([fdo#110723]) +4 other tests skip [360]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13823/shard-rkl-5/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html [361]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-rkl-4/igt@kms_big_fb@yf-tiled-16bpp-rotate-90.html * igt@kms_content_protection@dp-mst-lic-type-0: - shard-rkl: [SKIP][362] ([i915#3116]) -> [SKIP][363] ([i915#1845] / [i915#4098]) [362]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13823/shard-rkl-6/igt@kms_content_protection@dp-mst-lic-type-0.html [363]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-rkl-5/igt@kms_content_protection@dp-mst-lic-type-0.html * igt@kms_content_protection@type1: - shard-rkl: [SKIP][364] ([i915#1845] / [i915#4098]) -> [SKIP][365] ([i915#7118]) [364]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13823/shard-rkl-5/igt@kms_content_protection@type1.html [365]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-rkl-7/igt@kms_content_protection@type1.html * igt@kms_cursor_crc@cursor-random-512x170: - shard-rkl: [SKIP][366] ([i915#4098]) -> [SKIP][367] ([i915#3359]) [366]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13823/shard-rkl-5/igt@kms_cursor_crc@cursor-random-512x170.html [367]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-rkl-4/igt@kms_cursor_crc@cursor-random-512x170.html * igt@kms_cursor_crc@cursor-random-512x512: - shard-rkl: [SKIP][368] ([i915#3359]) -> [SKIP][369] ([i915#4098]) +1 other test skip [368]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13823/shard-rkl-4/igt@kms_cursor_crc@cursor-random-512x512.html [369]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-rkl-5/igt@kms_cursor_crc@cursor-random-512x512.html * igt@kms_cursor_legacy@cursorb-vs-flipb-atomic: - shard-rkl: [SKIP][370] ([fdo#111825]) -> [SKIP][371] ([i915#1845] / [i915#4098]) +3 other tests skip [370]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13823/shard-rkl-6/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html [371]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-rkl-5/igt@kms_cursor_legacy@cursorb-vs-flipb-atomic.html * igt@kms_dsc@dsc-with-output-formats: - shard-rkl: [SKIP][372] ([i915#3555] / [i915#3840]) -> [SKIP][373] ([i915#4098]) [372]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13823/shard-rkl-2/igt@kms_dsc@dsc-with-output-formats.html [373]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-rkl-5/igt@kms_dsc@dsc-with-output-formats.html * igt@kms_force_connector_basic@force-load-detect: - shard-rkl: [SKIP][374] ([fdo#109285] / [i915#4098]) -> [SKIP][375] ([fdo#109285]) [374]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13823/shard-rkl-2/igt@kms_force_connector_basic@force-load-detect.html [375]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-rkl-7/igt@kms_force_connector_basic@force-load-detect.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt: - shard-rkl: [SKIP][376] ([fdo#111825] / [i915#1825]) -> [SKIP][377] ([i915#1849] / [i915#4098]) +25 other tests skip [376]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13823/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt.html [377]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-primscrn-cur-indfb-draw-mmap-gtt.html * igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt: - shard-rkl: [SKIP][378] ([fdo#111825]) -> [SKIP][379] ([i915#1849] / [i915#4098]) +1 other test skip [378]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13823/shard-rkl-2/igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt.html [379]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-rkl-5/igt@kms_frontbuffer_tracking@fbcpsr-2p-shrfb-fliptrack-mmap-gtt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt: - shard-rkl: [SKIP][380] ([i915#3023]) -> [SKIP][381] ([i915#1849] / [i915#4098]) +17 other tests skip [380]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13823/shard-rkl-2/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html [381]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-indfb-plflip-blt.html * igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt: - shard-rkl: [SKIP][382] ([i915#1849] / [i915#4098]) -> [SKIP][383] ([i915#3023]) +13 other tests skip [382]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13823/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html [383]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-rkl-4/igt@kms_frontbuffer_tracking@psr-1p-primscrn-shrfb-msflip-blt.html * igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc: - shard-rkl: [SKIP][384] ([i915#1849] / [i915#4098]) -> [SKIP][385] ([fdo#111825] / [i915#1825]) +14 other tests skip [384]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13823/shard-rkl-5/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc.html [385]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-rkl-7/igt@kms_frontbuffer_tracking@psr-2p-primscrn-spr-indfb-draw-mmap-wc.html * igt@kms_multipipe_modeset@basic-max-pipe-crc-check: - shard-rkl: [SKIP][386] ([i915#4816]) -> [SKIP][387] ([i915#4070] / [i915#4816]) [386]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13823/shard-rkl-7/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html [387]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-rkl-1/igt@kms_multipipe_modeset@basic-max-pipe-crc-check.html * igt@kms_panel_fitting@atomic-fastset: - shard-rkl: [SKIP][388] ([i915#1845] / [i915#4098]) -> [SKIP][389] ([i915#6301]) [388]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13823/shard-rkl-5/igt@kms_panel_fitting@atomic-fastset.html [389]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-rkl-7/igt@kms_panel_fitting@atomic-fastset.html * igt@kms_panel_fitting@legacy: - shard-rkl: [SKIP][390] ([i915#6301]) -> [SKIP][391] ([i915#1845] / [i915#4098]) [390]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13823/shard-rkl-4/igt@kms_panel_fitting@legacy.html [391]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-rkl-5/igt@kms_panel_fitting@legacy.html * igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-a-hdmi-a-4: - shard-dg1: [SKIP][392] ([i915#5235]) -> [SKIP][393] ([i915#4423] / [i915#5235]) [392]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13823/shard-dg1-16/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-a-hdmi-a-4.html [393]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-dg1-17/igt@kms_plane_scaling@planes-downscale-factor-0-25@pipe-a-hdmi-a-4.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270: - shard-rkl: [SKIP][394] ([i915#1845] / [i915#4098]) -> [SKIP][395] ([fdo#111615] / [i915#5289]) [394]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13823/shard-rkl-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html [395]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-rkl-4/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-270.html * igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90: - shard-rkl: [SKIP][396] ([fdo#111615] / [i915#5289]) -> [SKIP][397] ([i915#1845] / [i915#4098]) [396]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13823/shard-rkl-2/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html [397]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-rkl-5/igt@kms_rotation_crc@primary-yf-tiled-reflect-x-90.html * igt@kms_scaling_modes@scaling-mode-full-aspect: - shard-rkl: [SKIP][398] ([i915#4098]) -> [SKIP][399] ([i915#3555]) [398]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13823/shard-rkl-5/igt@kms_scaling_modes@scaling-mode-full-aspect.html [399]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-rkl-4/igt@kms_scaling_modes@scaling-mode-full-aspect.html * igt@kms_scaling_modes@scaling-mode-none: - shard-rkl: [SKIP][400] ([i915#3555]) -> [SKIP][401] ([i915#4098]) +4 other tests skip [400]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13823/shard-rkl-2/igt@kms_scaling_modes@scaling-mode-none.html [401]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-rkl-5/igt@kms_scaling_modes@scaling-mode-none.html * igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem: - shard-dg2: [CRASH][402] ([i915#9351]) -> [INCOMPLETE][403] ([i915#5493]) [402]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13823/shard-dg2-2/igt@prime_mmap@test_aperture_limit@test_aperture_limit-smem.html [403]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/shard-dg2-7/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). [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#109283]: https://bugs.freedesktop.org/show_bug.cgi?id=109283 [fdo#109285]: https://bugs.freedesktop.org/show_bug.cgi?id=109285 [fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289 [fdo#109293]: https://bugs.freedesktop.org/show_bug.cgi?id=109293 [fdo#109295]: https://bugs.freedesktop.org/show_bug.cgi?id=109295 [fdo#109303]: https://bugs.freedesktop.org/show_bug.cgi?id=109303 [fdo#109314]: https://bugs.freedesktop.org/show_bug.cgi?id=109314 [fdo#109315]: https://bugs.freedesktop.org/show_bug.cgi?id=109315 [fdo#109506]: https://bugs.freedesktop.org/show_bug.cgi?id=109506 [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642 [fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189 [fdo#110723]: https://bugs.freedesktop.org/show_bug.cgi?id=110723 [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068 [fdo#111614]: https://bugs.freedesktop.org/show_bug.cgi?id=111614 [fdo#111615]: https://bugs.freedesktop.org/show_bug.cgi?id=111615 [fdo#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#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769 [i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825 [i915#1839]: https://gitlab.freedesktop.org/drm/intel/issues/1839 [i915#1845]: https://gitlab.freedesktop.org/drm/intel/issues/1845 [i915#1849]: https://gitlab.freedesktop.org/drm/intel/issues/1849 [i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346 [i915#2433]: https://gitlab.freedesktop.org/drm/intel/issues/2433 [i915#2434]: https://gitlab.freedesktop.org/drm/intel/issues/2434 [i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437 [i915#2527]: https://gitlab.freedesktop.org/drm/intel/issues/2527 [i915#2532]: https://gitlab.freedesktop.org/drm/intel/issues/2532 [i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575 [i915#2582]: https://gitlab.freedesktop.org/drm/intel/issues/2582 [i915#2587]: https://gitlab.freedesktop.org/drm/intel/issues/2587 [i915#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#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842 [i915#2856]: https://gitlab.freedesktop.org/drm/intel/issues/2856 [i915#3023]: https://gitlab.freedesktop.org/drm/intel/issues/3023 [i915#3116]: https://gitlab.freedesktop.org/drm/intel/issues/3116 [i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281 [i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282 [i915#3291]: https://gitlab.freedesktop.org/drm/intel/issues/3291 [i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297 [i915#3299]: https://gitlab.freedesktop.org/drm/intel/issues/3299 [i915#3318]: https://gitlab.freedesktop.org/drm/intel/issues/3318 [i915#3323]: https://gitlab.freedesktop.org/drm/intel/issues/3323 [i915#3359]: https://gitlab.freedesktop.org/drm/intel/issues/3359 [i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458 [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#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#3708]: https://gitlab.freedesktop.org/drm/intel/issues/3708 [i915#3742]: https://gitlab.freedesktop.org/drm/intel/issues/3742 [i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743 [i915#3804]: https://gitlab.freedesktop.org/drm/intel/issues/3804 [i915#3840]: https://gitlab.freedesktop.org/drm/intel/issues/3840 [i915#4036]: https://gitlab.freedesktop.org/drm/intel/issues/4036 [i915#4070]: https://gitlab.freedesktop.org/drm/intel/issues/4070 [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#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#4423]: https://gitlab.freedesktop.org/drm/intel/issues/4423 [i915#4473]: https://gitlab.freedesktop.org/drm/intel/issues/4473 [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#4771]: https://gitlab.freedesktop.org/drm/intel/issues/4771 [i915#4812]: https://gitlab.freedesktop.org/drm/intel/issues/4812 [i915#4816]: https://gitlab.freedesktop.org/drm/intel/issues/4816 [i915#4852]: https://gitlab.freedesktop.org/drm/intel/issues/4852 [i915#4860]: https://gitlab.freedesktop.org/drm/intel/issues/4860 [i915#4880]: https://gitlab.freedesktop.org/drm/intel/issues/4880 [i915#4936]: https://gitlab.freedesktop.org/drm/intel/issues/4936 [i915#5107]: https://gitlab.freedesktop.org/drm/intel/issues/5107 [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#5461]: https://gitlab.freedesktop.org/drm/intel/issues/5461 [i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493 [i915#5608]: https://gitlab.freedesktop.org/drm/intel/issues/5608 [i915#5784]: https://gitlab.freedesktop.org/drm/intel/issues/5784 [i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095 [i915#6187]: https://gitlab.freedesktop.org/drm/intel/issues/6187 [i915#6252]: https://gitlab.freedesktop.org/drm/intel/issues/6252 [i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268 [i915#6301]: https://gitlab.freedesktop.org/drm/intel/issues/6301 [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#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880 [i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944 [i915#6953]: https://gitlab.freedesktop.org/drm/intel/issues/6953 [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#7276]: https://gitlab.freedesktop.org/drm/intel/issues/7276 [i915#768]: https://gitlab.freedesktop.org/drm/intel/issues/768 [i915#7697]: https://gitlab.freedesktop.org/drm/intel/issues/7697 [i915#7701]: https://gitlab.freedesktop.org/drm/intel/issues/7701 [i915#7711]: https://gitlab.freedesktop.org/drm/intel/issues/7711 [i915#7742]: https://gitlab.freedesktop.org/drm/intel/issues/7742 [i915#7790]: https://gitlab.freedesktop.org/drm/intel/issues/7790 [i915#7828]: https://gitlab.freedesktop.org/drm/intel/issues/7828 [i915#7957]: https://gitlab.freedesktop.org/drm/intel/issues/7957 [i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975 [i915#7984]: https://gitlab.freedesktop.org/drm/intel/issues/7984 [i915#8152]: https://gitlab.freedesktop.org/drm/intel/issues/8152 [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#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#8562]: https://gitlab.freedesktop.org/drm/intel/issues/8562 [i915#8588]: https://gitlab.freedesktop.org/drm/intel/issues/8588 [i915#8623]: https://gitlab.freedesktop.org/drm/intel/issues/8623 [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#8717]: https://gitlab.freedesktop.org/drm/intel/issues/8717 [i915#8724]: https://gitlab.freedesktop.org/drm/intel/issues/8724 [i915#8808]: https://gitlab.freedesktop.org/drm/intel/issues/8808 [i915#8810]: https://gitlab.freedesktop.org/drm/intel/issues/8810 [i915#8812]: https://gitlab.freedesktop.org/drm/intel/issues/8812 [i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814 [i915#8821]: https://gitlab.freedesktop.org/drm/intel/issues/8821 [i915#8825]: https://gitlab.freedesktop.org/drm/intel/issues/8825 [i915#8875]: https://gitlab.freedesktop.org/drm/intel/issues/8875 [i915#8925]: https://gitlab.freedesktop.org/drm/intel/issues/8925 [i915#8962]: https://gitlab.freedesktop.org/drm/intel/issues/8962 [i915#9100]: https://gitlab.freedesktop.org/drm/intel/issues/9100 [i915#9119]: https://gitlab.freedesktop.org/drm/intel/issues/9119 [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#9311]: https://gitlab.freedesktop.org/drm/intel/issues/9311 [i915#9323]: https://gitlab.freedesktop.org/drm/intel/issues/9323 [i915#9351]: https://gitlab.freedesktop.org/drm/intel/issues/9351 [i915#9412]: https://gitlab.freedesktop.org/drm/intel/issues/9412 [i915#9414]: https://gitlab.freedesktop.org/drm/intel/issues/9414 [i915#9423]: https://gitlab.freedesktop.org/drm/intel/issues/9423 [i915#9475]: https://gitlab.freedesktop.org/drm/intel/issues/9475 [i915#9519]: https://gitlab.freedesktop.org/drm/intel/issues/9519 [i915#9569]: https://gitlab.freedesktop.org/drm/intel/issues/9569 [i915#9581]: https://gitlab.freedesktop.org/drm/intel/issues/9581 [i915#9583]: https://gitlab.freedesktop.org/drm/intel/issues/9583 [i915#9606]: https://gitlab.freedesktop.org/drm/intel/issues/9606 Build changes ------------- * Linux: CI_DRM_13823 -> Patchwork_125807v1 CI-20190529: 20190529 CI_DRM_13823: 3f4656949887086d179f7d5c78aa8b749efa20dc @ git://anongit.freedesktop.org/gfx-ci/linux IGT_7566: 7566 Patchwork_125807v1: 3f4656949887086d179f7d5c78aa8b749efa20dc @ git://anongit.freedesktop.org/gfx-ci/linux == Logs == For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_125807v1/index.html [-- Attachment #2: Type: text/html, Size: 121978 bytes --] ^ permalink raw reply [flat|nested] 13+ messages in thread
end of thread, other threads:[~2023-11-02 12:23 UTC | newest] Thread overview: 13+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2023-10-31 12:45 [Intel-gfx] [PATCH RESEND 1/3] drm/i915: make some error capture functions static Jani Nikula 2023-10-31 12:45 ` [Intel-gfx] [PATCH RESEND 2/3] drm/i915: move gpu error debugfs to i915_gpu_error.c Jani Nikula 2023-10-31 12:59 ` Nirmoy Das 2023-10-31 14:18 ` Jani Nikula 2023-10-31 16:12 ` Nirmoy Das 2023-10-31 12:45 ` [Intel-gfx] [PATCH RESEND 3/3] drm/i915: move gpu error sysfs " Jani Nikula 2023-10-31 13:04 ` Nirmoy Das 2023-10-31 12:48 ` [Intel-gfx] [PATCH RESEND 1/3] drm/i915: make some error capture functions static Nirmoy Das 2023-11-02 12:23 ` Jani Nikula 2023-10-31 21:39 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for series starting with [RESEND,1/3] " Patchwork 2023-10-31 21:39 ` [Intel-gfx] ✗ Fi.CI.SPARSE: " Patchwork 2023-10-31 21:58 ` [Intel-gfx] ✓ Fi.CI.BAT: success " Patchwork 2023-11-02 9:29 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork
This is an external index of several public inboxes, see mirroring instructions on how to clone and mirror all data and code used by this external index.