* [Intel-gfx] [PATCH 1/5] drm_dbg: add trailing newlines to remaining callsites
2023-07-30 21:57 [Intel-gfx] [PATCH 0/5] drm_dbg: add trailing newlines where missing Jim Cromie
@ 2023-07-30 21:57 ` Jim Cromie
2023-07-30 21:57 ` [Intel-gfx] [PATCH 2/5] drm_dbg: add trailing newlines Jim Cromie
` (7 subsequent siblings)
8 siblings, 0 replies; 10+ messages in thread
From: Jim Cromie @ 2023-07-30 21:57 UTC (permalink / raw)
To: daniel, linux-kernel, dri-devel, amd-gfx, intel-gvt-dev,
intel-gfx
Cc: Jim Cromie, Edmund Dea, Maxime Ripard, Thomas Zimmermann,
Anitha Chrisanthus, David Airlie
All callers should uniformly include a trailing newline, the vast
majority already do: 207 DRM_DEV_DEBUG, 1288 drm_dbg. Clean up the
remainders, in this and next commits (split for easy acks).
No functional changes.
Signed-off-by: Jim Cromie <jim.cromie@gmail.com>
---
drivers/gpu/drm/kmb/kmb_crtc.c | 10 +++++-----
drivers/gpu/drm/kmb/kmb_plane.c | 6 +++---
2 files changed, 8 insertions(+), 8 deletions(-)
diff --git a/drivers/gpu/drm/kmb/kmb_crtc.c b/drivers/gpu/drm/kmb/kmb_crtc.c
index 647872f65bff..a58baf25322d 100644
--- a/drivers/gpu/drm/kmb/kmb_crtc.c
+++ b/drivers/gpu/drm/kmb/kmb_crtc.c
@@ -94,7 +94,7 @@ static void kmb_crtc_set_mode(struct drm_crtc *crtc,
vm.hback_porch = 0;
vm.hsync_len = 28;
- drm_dbg(dev, "%s : %dactive height= %d vbp=%d vfp=%d vsync-w=%d h-active=%d h-bp=%d h-fp=%d hsync-l=%d",
+ drm_dbg(dev, "%s : %dactive height= %d vbp=%d vfp=%d vsync-w=%d h-active=%d h-bp=%d h-fp=%d hsync-l=%d\n",
__func__, __LINE__,
m->crtc_vdisplay, vm.vback_porch, vm.vfront_porch,
vm.vsync_len, m->crtc_hdisplay, vm.hback_porch,
@@ -194,24 +194,24 @@ static enum drm_mode_status
int vfp = mode->vsync_start - mode->vdisplay;
if (mode->vdisplay < KMB_CRTC_MAX_HEIGHT) {
- drm_dbg(dev, "height = %d less than %d",
+ drm_dbg(dev, "height = %d less than %d\n",
mode->vdisplay, KMB_CRTC_MAX_HEIGHT);
return MODE_BAD_VVALUE;
}
if (mode->hdisplay < KMB_CRTC_MAX_WIDTH) {
- drm_dbg(dev, "width = %d less than %d",
+ drm_dbg(dev, "width = %d less than %d\n",
mode->hdisplay, KMB_CRTC_MAX_WIDTH);
return MODE_BAD_HVALUE;
}
refresh = drm_mode_vrefresh(mode);
if (refresh < KMB_MIN_VREFRESH || refresh > KMB_MAX_VREFRESH) {
- drm_dbg(dev, "refresh = %d less than %d or greater than %d",
+ drm_dbg(dev, "refresh = %d less than %d or greater than %d\n",
refresh, KMB_MIN_VREFRESH, KMB_MAX_VREFRESH);
return MODE_BAD;
}
if (vfp < KMB_CRTC_MIN_VFP) {
- drm_dbg(dev, "vfp = %d less than %d", vfp, KMB_CRTC_MIN_VFP);
+ drm_dbg(dev, "vfp = %d less than %d\n", vfp, KMB_CRTC_MIN_VFP);
return MODE_BAD;
}
diff --git a/drivers/gpu/drm/kmb/kmb_plane.c b/drivers/gpu/drm/kmb/kmb_plane.c
index 9e0562aa2bcb..308bd1cb50c8 100644
--- a/drivers/gpu/drm/kmb/kmb_plane.c
+++ b/drivers/gpu/drm/kmb/kmb_plane.c
@@ -78,7 +78,7 @@ static unsigned int check_pixel_format(struct drm_plane *plane, u32 format)
* plane configuration is not supported.
*/
if (init_disp_cfg.format && init_disp_cfg.format != format) {
- drm_dbg(&kmb->drm, "Cannot change format after initial plane configuration");
+ drm_dbg(&kmb->drm, "Cannot change format after initial plane configuration\n");
return -EINVAL;
}
for (i = 0; i < plane->format_count; i++) {
@@ -124,7 +124,7 @@ static int kmb_plane_atomic_check(struct drm_plane *plane,
if ((init_disp_cfg.width && init_disp_cfg.height) &&
(init_disp_cfg.width != fb->width ||
init_disp_cfg.height != fb->height)) {
- drm_dbg(&kmb->drm, "Cannot change plane height or width after initial configuration");
+ drm_dbg(&kmb->drm, "Cannot change plane height or width after initial configuration\n");
return -EINVAL;
}
can_position = (plane->type == DRM_PLANE_TYPE_OVERLAY);
@@ -375,7 +375,7 @@ static void kmb_plane_atomic_update(struct drm_plane *plane,
spin_lock_irq(&kmb->irq_lock);
if (kmb->kmb_under_flow || kmb->kmb_flush_done) {
spin_unlock_irq(&kmb->irq_lock);
- drm_dbg(&kmb->drm, "plane_update:underflow!!!! returning");
+ drm_dbg(&kmb->drm, "plane_update:underflow!!!! returning\n");
return;
}
spin_unlock_irq(&kmb->irq_lock);
--
2.41.0
^ permalink raw reply related [flat|nested] 10+ messages in thread* [Intel-gfx] [PATCH 2/5] drm_dbg: add trailing newlines
2023-07-30 21:57 [Intel-gfx] [PATCH 0/5] drm_dbg: add trailing newlines where missing Jim Cromie
2023-07-30 21:57 ` [Intel-gfx] [PATCH 1/5] drm_dbg: add trailing newlines to remaining callsites Jim Cromie
@ 2023-07-30 21:57 ` Jim Cromie
2023-07-30 21:57 ` [Intel-gfx] [PATCH 3/5] " Jim Cromie
` (6 subsequent siblings)
8 siblings, 0 replies; 10+ messages in thread
From: Jim Cromie @ 2023-07-30 21:57 UTC (permalink / raw)
To: daniel, linux-kernel, dri-devel, amd-gfx, intel-gvt-dev,
intel-gfx
Cc: Rob Clark, Jason A. Donenfeld, Jim Cromie, Lucas De Marchi,
Chris Wilson, Andrzej Hajda, Maxime Ripard, Thomas Zimmermann,
Rodrigo Vivi, David Airlie, Matthew Auld
Signed-off-by: Jim Cromie <jim.cromie@gmail.com>
---
drivers/gpu/drm/i915/display/intel_ddi.c | 2 +-
drivers/gpu/drm/i915/gem/i915_gem_execbuffer.c | 4 ++--
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/drivers/gpu/drm/i915/display/intel_ddi.c b/drivers/gpu/drm/i915/display/intel_ddi.c
index 3a7b98837516..993ba9f01018 100644
--- a/drivers/gpu/drm/i915/display/intel_ddi.c
+++ b/drivers/gpu/drm/i915/display/intel_ddi.c
@@ -3808,7 +3808,7 @@ static int intel_ddi_compute_config_late(struct intel_encoder *encoder,
struct drm_connector *connector = conn_state->connector;
u8 port_sync_transcoders = 0;
- drm_dbg_kms(&i915->drm, "[ENCODER:%d:%s] [CRTC:%d:%s]",
+ drm_dbg_kms(&i915->drm, "[ENCODER:%d:%s] [CRTC:%d:%s]\n",
encoder->base.base.id, encoder->base.name,
crtc_state->uapi.crtc->base.id, crtc_state->uapi.crtc->name);
diff --git a/drivers/gpu/drm/i915/gem/i915_gem_execbuffer.c b/drivers/gpu/drm/i915/gem/i915_gem_execbuffer.c
index 3aeede6aee4d..c7daae828792 100644
--- a/drivers/gpu/drm/i915/gem/i915_gem_execbuffer.c
+++ b/drivers/gpu/drm/i915/gem/i915_gem_execbuffer.c
@@ -1428,7 +1428,7 @@ eb_relocate_entry(struct i915_execbuffer *eb,
if (unlikely(reloc->write_domain & (reloc->write_domain - 1))) {
drm_dbg(&i915->drm, "reloc with multiple write domains: "
"target %d offset %d "
- "read %08x write %08x",
+ "read %08x write %08x\n",
reloc->target_handle,
(int) reloc->offset,
reloc->read_domains,
@@ -1439,7 +1439,7 @@ eb_relocate_entry(struct i915_execbuffer *eb,
& ~I915_GEM_GPU_DOMAINS)) {
drm_dbg(&i915->drm, "reloc with read/write non-GPU domains: "
"target %d offset %d "
- "read %08x write %08x",
+ "read %08x write %08x\n",
reloc->target_handle,
(int) reloc->offset,
reloc->read_domains,
--
2.41.0
^ permalink raw reply related [flat|nested] 10+ messages in thread* [Intel-gfx] [PATCH 3/5] drm_dbg: add trailing newlines
2023-07-30 21:57 [Intel-gfx] [PATCH 0/5] drm_dbg: add trailing newlines where missing Jim Cromie
2023-07-30 21:57 ` [Intel-gfx] [PATCH 1/5] drm_dbg: add trailing newlines to remaining callsites Jim Cromie
2023-07-30 21:57 ` [Intel-gfx] [PATCH 2/5] drm_dbg: add trailing newlines Jim Cromie
@ 2023-07-30 21:57 ` Jim Cromie
2023-07-30 21:57 ` [Intel-gfx] [PATCH 4/5] " Jim Cromie
` (5 subsequent siblings)
8 siblings, 0 replies; 10+ messages in thread
From: Jim Cromie @ 2023-07-30 21:57 UTC (permalink / raw)
To: daniel, linux-kernel, dri-devel, amd-gfx, intel-gvt-dev,
intel-gfx
Cc: freedreno, Jim Cromie, Abhinav Kumar, Maxime Ripard,
Thomas Zimmermann, linux-arm-msm, Dmitry Baryshkov, David Airlie
Signed-off-by: Jim Cromie <jim.cromie@gmail.com>
---
drivers/gpu/drm/msm/msm_fb.c | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/drivers/gpu/drm/msm/msm_fb.c b/drivers/gpu/drm/msm/msm_fb.c
index e3f61c39df69..80166f702a0d 100644
--- a/drivers/gpu/drm/msm/msm_fb.c
+++ b/drivers/gpu/drm/msm/msm_fb.c
@@ -89,7 +89,7 @@ int msm_framebuffer_prepare(struct drm_framebuffer *fb,
for (i = 0; i < n; i++) {
ret = msm_gem_get_and_pin_iova(fb->obj[i], aspace, &msm_fb->iova[i]);
- drm_dbg_state(fb->dev, "FB[%u]: iova[%d]: %08llx (%d)",
+ drm_dbg_state(fb->dev, "FB[%u]: iova[%d]: %08llx (%d)\n",
fb->base.id, i, msm_fb->iova[i], ret);
if (ret)
return ret;
@@ -176,7 +176,7 @@ static struct drm_framebuffer *msm_framebuffer_init(struct drm_device *dev,
const struct msm_format *format;
int ret, i, n;
- drm_dbg_state(dev, "create framebuffer: mode_cmd=%p (%dx%d@%4.4s)",
+ drm_dbg_state(dev, "create framebuffer: mode_cmd=%p (%dx%d@%4.4s)\n",
mode_cmd, mode_cmd->width, mode_cmd->height,
(char *)&mode_cmd->pixel_format);
@@ -232,7 +232,7 @@ static struct drm_framebuffer *msm_framebuffer_init(struct drm_device *dev,
refcount_set(&msm_fb->dirtyfb, 1);
- drm_dbg_state(dev, "create: FB ID: %d (%p)", fb->base.id, fb);
+ drm_dbg_state(dev, "create: FB ID: %d (%p)\n", fb->base.id, fb);
return fb;
--
2.41.0
^ permalink raw reply related [flat|nested] 10+ messages in thread* [Intel-gfx] [PATCH 4/5] drm_dbg: add trailing newlines
2023-07-30 21:57 [Intel-gfx] [PATCH 0/5] drm_dbg: add trailing newlines where missing Jim Cromie
` (2 preceding siblings ...)
2023-07-30 21:57 ` [Intel-gfx] [PATCH 3/5] " Jim Cromie
@ 2023-07-30 21:57 ` Jim Cromie
2023-07-30 21:57 ` [Intel-gfx] [PATCH 5/5] " Jim Cromie
` (4 subsequent siblings)
8 siblings, 0 replies; 10+ messages in thread
From: Jim Cromie @ 2023-07-30 21:57 UTC (permalink / raw)
To: daniel, linux-kernel, dri-devel, amd-gfx, intel-gvt-dev,
intel-gfx
Cc: Emma Anholt, Jim Cromie, Maxime Ripard, Thomas Zimmermann,
David Airlie
Signed-off-by: Jim Cromie <jim.cromie@gmail.com>
---
drivers/gpu/drm/vc4/vc4_crtc.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/gpu/drm/vc4/vc4_crtc.c b/drivers/gpu/drm/vc4/vc4_crtc.c
index bef9d45ef1df..959123759711 100644
--- a/drivers/gpu/drm/vc4/vc4_crtc.c
+++ b/drivers/gpu/drm/vc4/vc4_crtc.c
@@ -592,7 +592,7 @@ static void vc4_crtc_atomic_disable(struct drm_crtc *crtc,
struct drm_encoder *encoder = vc4_get_crtc_encoder(crtc, old_state);
struct drm_device *dev = crtc->dev;
- drm_dbg(dev, "Disabling CRTC %s (%u) connected to Encoder %s (%u)",
+ drm_dbg(dev, "Disabling CRTC %s (%u) connected to Encoder %s (%u)\n",
crtc->name, crtc->base.id, encoder->name, encoder->base.id);
require_hvs_enabled(dev);
@@ -620,7 +620,7 @@ static void vc4_crtc_atomic_enable(struct drm_crtc *crtc,
struct vc4_encoder *vc4_encoder = to_vc4_encoder(encoder);
int idx;
- drm_dbg(dev, "Enabling CRTC %s (%u) connected to Encoder %s (%u)",
+ drm_dbg(dev, "Enabling CRTC %s (%u) connected to Encoder %s (%u)\n",
crtc->name, crtc->base.id, encoder->name, encoder->base.id);
if (!drm_dev_enter(dev, &idx))
--
2.41.0
^ permalink raw reply related [flat|nested] 10+ messages in thread* [Intel-gfx] [PATCH 5/5] drm_dbg: add trailing newlines
2023-07-30 21:57 [Intel-gfx] [PATCH 0/5] drm_dbg: add trailing newlines where missing Jim Cromie
` (3 preceding siblings ...)
2023-07-30 21:57 ` [Intel-gfx] [PATCH 4/5] " Jim Cromie
@ 2023-07-30 21:57 ` Jim Cromie
2023-07-30 22:22 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for drm_dbg: add trailing newlines where missing Patchwork
` (3 subsequent siblings)
8 siblings, 0 replies; 10+ messages in thread
From: Jim Cromie @ 2023-07-30 21:57 UTC (permalink / raw)
To: daniel, linux-kernel, dri-devel, amd-gfx, intel-gvt-dev,
intel-gfx
Cc: Jim Cromie, David Airlie, Thomas Zimmermann, Maxime Ripard
Signed-off-by: Jim Cromie <jim.cromie@gmail.com>
---
drivers/gpu/drm/drm_connector.c | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/drivers/gpu/drm/drm_connector.c b/drivers/gpu/drm/drm_connector.c
index 48df7a5ea503..39eab45649c8 100644
--- a/drivers/gpu/drm/drm_connector.c
+++ b/drivers/gpu/drm/drm_connector.c
@@ -2868,7 +2868,9 @@ int drm_mode_getconnector(struct drm_device *dev, void *data,
dev->mode_config.max_width,
dev->mode_config.max_height);
else
- drm_dbg_kms(dev, "User-space requested a forced probe on [CONNECTOR:%d:%s] but is not the DRM master, demoting to read-only probe",
+ drm_dbg_kms(dev,
+ "User-space requested a forced probe on [CONNECTOR:%d:%s] "
+ "but is not the DRM master, demoting to read-only probe\n",
connector->base.id, connector->name);
}
--
2.41.0
^ permalink raw reply related [flat|nested] 10+ messages in thread* [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for drm_dbg: add trailing newlines where missing
2023-07-30 21:57 [Intel-gfx] [PATCH 0/5] drm_dbg: add trailing newlines where missing Jim Cromie
` (4 preceding siblings ...)
2023-07-30 21:57 ` [Intel-gfx] [PATCH 5/5] " Jim Cromie
@ 2023-07-30 22:22 ` Patchwork
2023-07-30 22:22 ` [Intel-gfx] ✗ Fi.CI.SPARSE: " Patchwork
` (2 subsequent siblings)
8 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2023-07-30 22:22 UTC (permalink / raw)
To: Jim Cromie; +Cc: intel-gfx
== Series Details ==
Series: drm_dbg: add trailing newlines where missing
URL : https://patchwork.freedesktop.org/series/121583/
State : warning
== Summary ==
Error: dim checkpatch failed
427281c550a9 drm_dbg: add trailing newlines to remaining callsites
9905350fcd30 drm_dbg: add trailing newlines
-:7: WARNING:COMMIT_MESSAGE: Missing commit description - Add an appropriate one
total: 0 errors, 1 warnings, 0 checks, 24 lines checked
4f47cba277f4 drm_dbg: add trailing newlines
-:7: WARNING:COMMIT_MESSAGE: Missing commit description - Add an appropriate one
-:27: CHECK:PARENTHESIS_ALIGNMENT: Alignment should match open parenthesis
#27: FILE: drivers/gpu/drm/msm/msm_fb.c:180:
+ drm_dbg_state(dev, "create framebuffer: mode_cmd=%p (%dx%d@%4.4s)\n",
mode_cmd, mode_cmd->width, mode_cmd->height,
total: 0 errors, 1 warnings, 1 checks, 24 lines checked
bddf6f2257f9 drm_dbg: add trailing newlines
-:7: WARNING:COMMIT_MESSAGE: Missing commit description - Add an appropriate one
total: 0 errors, 1 warnings, 0 checks, 16 lines checked
ce01e016e48e drm_dbg: add trailing newlines
-:7: WARNING:COMMIT_MESSAGE: Missing commit description - Add an appropriate one
total: 0 errors, 1 warnings, 0 checks, 10 lines checked
^ permalink raw reply [flat|nested] 10+ messages in thread* [Intel-gfx] ✗ Fi.CI.SPARSE: warning for drm_dbg: add trailing newlines where missing
2023-07-30 21:57 [Intel-gfx] [PATCH 0/5] drm_dbg: add trailing newlines where missing Jim Cromie
` (5 preceding siblings ...)
2023-07-30 22:22 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for drm_dbg: add trailing newlines where missing Patchwork
@ 2023-07-30 22:22 ` Patchwork
2023-07-30 22:33 ` [Intel-gfx] ✓ Fi.CI.BAT: success " Patchwork
2023-07-30 23:52 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork
8 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2023-07-30 22:22 UTC (permalink / raw)
To: Jim Cromie; +Cc: intel-gfx
== Series Details ==
Series: drm_dbg: add trailing newlines where missing
URL : https://patchwork.freedesktop.org/series/121583/
State : warning
== Summary ==
Error: dim sparse failed
Sparse version: v0.6.2
Fast mode used, each commit won't be checked separately.
+./arch/x86/include/asm/bitops.h:117:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:117:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:148:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:148:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:150:9: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:150:9: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:154:26: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:154:26: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:156:16: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:156:16: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:156:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:156:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:174:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:174:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:176:9: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:176:9: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:180:35: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:180:35: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:182:16: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:182:16: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:182:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:182:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:186:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:186:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:188:9: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:188:9: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:192:35: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:192:35: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:195:16: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:195:16: warning: unreplaced symbol 'oldbit'
+./arch/x86/include/asm/bitops.h:195:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:195:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:237:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:237:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:239:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:239:9: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:66:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:66:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:92:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/bitops.h:92:1: warning: unreplaced symbol 'return'
+./arch/x86/include/asm/uaccess_64.h:88:24: warning: cast removes address space '__user' of expression
+./arch/x86/include/asm/uaccess_64.h:88:24: warning: cast removes address space '__user' of expression
+./arch/x86/include/asm/uaccess_64.h:88:24: warning: cast removes address space '__user' of expression
+./arch/x86/include/asm/uaccess_64.h:88:24: warning: cast removes address space '__user' of expression
+./arch/x86/include/asm/uaccess_64.h:88:24: warning: cast removes address space '__user' of expression
+./arch/x86/include/asm/uaccess_64.h:88:24: warning: cast removes address space '__user' of expression
+./arch/x86/include/asm/uaccess_64.h:88:24: warning: cast removes address space '__user' of expression
+drivers/gpu/drm/i915/display/intel_display_types.h:1884:17: warning: unreplaced symbol 'encoder'
+drivers/gpu/drm/i915/display/intel_display_types.h:1884:9: warning: unreplaced symbol 'break'
+drivers/gpu/drm/i915/display/intel_display_types.h:1884:9: warning: unreplaced symbol 'case'
+drivers/gpu/drm/i915/display/intel_display_types.h:1885:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_display_types.h:1885:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_display_types.h:1886:9: warning: too many warnings
+drivers/gpu/drm/i915/display/intel_display_types.h:1886:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_display_types.h:1887:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_display_types.h:1888:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_display_types.h:1889:17: warning: unreplaced symbol 'return'
+drivers/gpu/drm/i915/display/intel_display_types.h:1890:9: warning: unreplaced symbol '<noident>'
+drivers/gpu/drm/i915/display/intel_display_types.h:1891:17: warning: unreplaced symbol 'return'
+drivers/gpu/drm/i915/display/intel_display_types.h:1910:9: warning: unreplaced symbol 'intel_encoder'
+drivers/gpu/drm/i915/display/intel_display_types.h:1957:24: warning: trying to copy expression type 31
+drivers/gpu/drm/i915/display/intel_display_types.h:1957:24: warning: trying to copy expression type 31
+./include/asm-generic/bitops/generic-non-atomic.h:100:17: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:100:17: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:100:23: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:100:23: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:100:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:100:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:105:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:105:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:107:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:107:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:108:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:108:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:109:9: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:109:9: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:111:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:111:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:111:14: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:111:14: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:111:20: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:111:20: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:112:17: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:112:17: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:112:23: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:112:23: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:112:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:112:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:121:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:121:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:128:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:128:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:166:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:166:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:168:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:168:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:169:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:169:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:170:9: warning: unreplaced symbol 'val'
+./include/asm-generic/bitops/generic-non-atomic.h:170:9: warning: unreplaced symbol 'val'
+./include/asm-generic/bitops/generic-non-atomic.h:172:19: warning: unreplaced symbol 'val'
+./include/asm-generic/bitops/generic-non-atomic.h:172:19: warning: unreplaced symbol 'val'
+./include/asm-generic/bitops/generic-non-atomic.h:172:25: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:172:25: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:172:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:172:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:28:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:28:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:30:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:30:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:31:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:31:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:33:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:33:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:33:16: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:33:16: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:37:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:37:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:39:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:39:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:40:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:40:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:42:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:42:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:42:16: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:42:16: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:55:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:55:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:57:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:57:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:58:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:58:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:60:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:60:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:60:15: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:60:15: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:73:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:73:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:75:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:75:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:76:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:76:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:77:9: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:77:9: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:79:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:79:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:79:14: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:79:14: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:79:20: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:79:20: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:80:17: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:80:17: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:80:23: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:80:23: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:80:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:80:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:93:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:93:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/generic-non-atomic.h:95:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:95:9: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:96:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:96:9: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:97:9: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:97:9: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:99:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:99:10: warning: unreplaced symbol 'p'
+./include/asm-generic/bitops/generic-non-atomic.h:99:14: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:99:14: warning: unreplaced symbol 'old'
+./include/asm-generic/bitops/generic-non-atomic.h:99:21: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/generic-non-atomic.h:99:21: warning: unreplaced symbol 'mask'
+./include/asm-generic/bitops/instrumented-non-atomic.h:100:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:100:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:112:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:112:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:115:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:115:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:127:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:127:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:130:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:130:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:139:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:139:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:142:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:142:9: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:26:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:26:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:42:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:42:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:58:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:58:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:97:1: warning: unreplaced symbol 'return'
+./include/asm-generic/bitops/instrumented-non-atomic.h:97:1: warning: unreplaced symbol 'return'
^ permalink raw reply [flat|nested] 10+ messages in thread* [Intel-gfx] ✓ Fi.CI.BAT: success for drm_dbg: add trailing newlines where missing
2023-07-30 21:57 [Intel-gfx] [PATCH 0/5] drm_dbg: add trailing newlines where missing Jim Cromie
` (6 preceding siblings ...)
2023-07-30 22:22 ` [Intel-gfx] ✗ Fi.CI.SPARSE: " Patchwork
@ 2023-07-30 22:33 ` Patchwork
2023-07-30 23:52 ` [Intel-gfx] ✗ Fi.CI.IGT: failure " Patchwork
8 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2023-07-30 22:33 UTC (permalink / raw)
To: Jim Cromie; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 6491 bytes --]
== Series Details ==
Series: drm_dbg: add trailing newlines where missing
URL : https://patchwork.freedesktop.org/series/121583/
State : success
== Summary ==
CI Bug Log - changes from CI_DRM_13441 -> Patchwork_121583v1
====================================================
Summary
-------
**SUCCESS**
No regressions found.
External URL: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/index.html
Participating hosts (42 -> 39)
------------------------------
Missing (3): fi-tgl-1115g4 bat-atsm-1 fi-snb-2520m
Known issues
------------
Here are the changes found in Patchwork_121583v1 that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@core_auth@basic-auth:
- bat-adlp-11: NOTRUN -> [ABORT][1] ([i915#8011])
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/bat-adlp-11/igt@core_auth@basic-auth.html
* igt@i915_pm_rpm@basic-rte:
- fi-cfl-8700k: [PASS][2] -> [FAIL][3] ([i915#7940])
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13441/fi-cfl-8700k/igt@i915_pm_rpm@basic-rte.html
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/fi-cfl-8700k/igt@i915_pm_rpm@basic-rte.html
* igt@i915_selftest@live@reset:
- bat-rpls-1: NOTRUN -> [ABORT][4] ([i915#4983] / [i915#7461] / [i915#8347] / [i915#8384])
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/bat-rpls-1/igt@i915_selftest@live@reset.html
* igt@kms_chamelium_hpd@common-hpd-after-suspend:
- fi-kbl-x1275: NOTRUN -> [SKIP][5] ([fdo#109271]) +1 similar issue
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/fi-kbl-x1275/igt@kms_chamelium_hpd@common-hpd-after-suspend.html
* igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1:
- bat-rplp-1: [PASS][6] -> [ABORT][7] ([i915#8442] / [i915#8668])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13441/bat-rplp-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1.html
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/bat-rplp-1/igt@kms_pipe_crc_basic@read-crc-frame-sequence@pipe-d-edp-1.html
#### Possible fixes ####
* igt@gem_exec_suspend@basic-s3@smem:
- fi-kbl-x1275: [ABORT][8] ([i915#8213] / [i915#8682]) -> [PASS][9]
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13441/fi-kbl-x1275/igt@gem_exec_suspend@basic-s3@smem.html
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/fi-kbl-x1275/igt@gem_exec_suspend@basic-s3@smem.html
* igt@i915_selftest@live@requests:
- bat-mtlp-8: [DMESG-FAIL][10] ([i915#8497]) -> [PASS][11]
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13441/bat-mtlp-8/igt@i915_selftest@live@requests.html
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/bat-mtlp-8/igt@i915_selftest@live@requests.html
- bat-rpls-1: [ABORT][12] ([i915#7911] / [i915#7920] / [i915#7982]) -> [PASS][13]
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13441/bat-rpls-1/igt@i915_selftest@live@requests.html
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/bat-rpls-1/igt@i915_selftest@live@requests.html
* igt@i915_selftest@live@slpc:
- bat-mtlp-8: [DMESG-WARN][14] ([i915#6367]) -> [PASS][15]
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13441/bat-mtlp-8/igt@i915_selftest@live@slpc.html
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/bat-mtlp-8/igt@i915_selftest@live@slpc.html
#### Warnings ####
* igt@i915_module_load@load:
- bat-adlp-11: [ABORT][16] ([i915#4423]) -> [DMESG-WARN][17] ([i915#4423])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13441/bat-adlp-11/igt@i915_module_load@load.html
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/bat-adlp-11/igt@i915_module_load@load.html
* igt@i915_pm_rpm@basic-pci-d3-state:
- fi-kbl-guc: [SKIP][18] ([fdo#109271]) -> [FAIL][19] ([i915#7940])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13441/fi-kbl-guc/igt@i915_pm_rpm@basic-pci-d3-state.html
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/fi-kbl-guc/igt@i915_pm_rpm@basic-pci-d3-state.html
* igt@i915_pm_rpm@basic-rte:
- fi-kbl-8809g: [FAIL][20] ([i915#7940]) -> [FAIL][21] ([i915#8843])
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13441/fi-kbl-8809g/igt@i915_pm_rpm@basic-rte.html
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/fi-kbl-8809g/igt@i915_pm_rpm@basic-rte.html
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[i915#4423]: https://gitlab.freedesktop.org/drm/intel/issues/4423
[i915#4983]: https://gitlab.freedesktop.org/drm/intel/issues/4983
[i915#6367]: https://gitlab.freedesktop.org/drm/intel/issues/6367
[i915#7461]: https://gitlab.freedesktop.org/drm/intel/issues/7461
[i915#7911]: https://gitlab.freedesktop.org/drm/intel/issues/7911
[i915#7920]: https://gitlab.freedesktop.org/drm/intel/issues/7920
[i915#7940]: https://gitlab.freedesktop.org/drm/intel/issues/7940
[i915#7982]: https://gitlab.freedesktop.org/drm/intel/issues/7982
[i915#8011]: https://gitlab.freedesktop.org/drm/intel/issues/8011
[i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213
[i915#8347]: https://gitlab.freedesktop.org/drm/intel/issues/8347
[i915#8384]: https://gitlab.freedesktop.org/drm/intel/issues/8384
[i915#8442]: https://gitlab.freedesktop.org/drm/intel/issues/8442
[i915#8497]: https://gitlab.freedesktop.org/drm/intel/issues/8497
[i915#8668]: https://gitlab.freedesktop.org/drm/intel/issues/8668
[i915#8682]: https://gitlab.freedesktop.org/drm/intel/issues/8682
[i915#8843]: https://gitlab.freedesktop.org/drm/intel/issues/8843
Build changes
-------------
* Linux: CI_DRM_13441 -> Patchwork_121583v1
CI-20190529: 20190529
CI_DRM_13441: 194cd63362db9ed2cbdd3deaa7a8752b86d95f3b @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_7409: 7409
Patchwork_121583v1: 194cd63362db9ed2cbdd3deaa7a8752b86d95f3b @ git://anongit.freedesktop.org/gfx-ci/linux
### Linux commits
3d5ce26ae590 drm_dbg: add trailing newlines
f5ef73984c12 drm_dbg: add trailing newlines
6c36d3321ab0 drm_dbg: add trailing newlines
694898471b46 drm_dbg: add trailing newlines
48ba62bf3814 drm_dbg: add trailing newlines to remaining callsites
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/index.html
[-- Attachment #2: Type: text/html, Size: 7657 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread* [Intel-gfx] ✗ Fi.CI.IGT: failure for drm_dbg: add trailing newlines where missing
2023-07-30 21:57 [Intel-gfx] [PATCH 0/5] drm_dbg: add trailing newlines where missing Jim Cromie
` (7 preceding siblings ...)
2023-07-30 22:33 ` [Intel-gfx] ✓ Fi.CI.BAT: success " Patchwork
@ 2023-07-30 23:52 ` Patchwork
8 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2023-07-30 23:52 UTC (permalink / raw)
To: Jim Cromie; +Cc: intel-gfx
[-- Attachment #1: Type: text/plain, Size: 48281 bytes --]
== Series Details ==
Series: drm_dbg: add trailing newlines where missing
URL : https://patchwork.freedesktop.org/series/121583/
State : failure
== Summary ==
CI Bug Log - changes from CI_DRM_13441_full -> Patchwork_121583v1_full
====================================================
Summary
-------
**FAILURE**
Serious unknown changes coming with Patchwork_121583v1_full absolutely need to be
verified manually.
If you think the reported changes have nothing to do with the changes
introduced in Patchwork_121583v1_full, please notify your bug team to allow them
to document this new failure mode, which will reduce false positives in CI.
Participating hosts (10 -> 10)
------------------------------
No changes in participating hosts
Possible new issues
-------------------
Here are the unknown changes that may have been introduced in Patchwork_121583v1_full:
### IGT changes ###
#### Possible regressions ####
* igt@api_intel_bb@render@render-y-1024:
- shard-snb: NOTRUN -> [ABORT][1] +1 similar issue
[1]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/shard-snb7/igt@api_intel_bb@render@render-y-1024.html
* igt@sysfs_timeslice_duration@timeout@ccs0:
- shard-dg2: [PASS][2] -> [TIMEOUT][3]
[2]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13441/shard-dg2-1/igt@sysfs_timeslice_duration@timeout@ccs0.html
[3]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/shard-dg2-10/igt@sysfs_timeslice_duration@timeout@ccs0.html
#### Warnings ####
* igt@kms_psr@psr2_sprite_blt:
- shard-mtlp: [DMESG-WARN][4] ([i915#2017]) -> [DMESG-WARN][5]
[4]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13441/shard-mtlp-7/igt@kms_psr@psr2_sprite_blt.html
[5]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/shard-mtlp-5/igt@kms_psr@psr2_sprite_blt.html
Known issues
------------
Here are the changes found in Patchwork_121583v1_full that come from known issues:
### IGT changes ###
#### Issues hit ####
* igt@drm_fdinfo@most-busy-check-all@rcs0:
- shard-rkl: [PASS][6] -> [FAIL][7] ([i915#7742])
[6]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13441/shard-rkl-1/igt@drm_fdinfo@most-busy-check-all@rcs0.html
[7]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/shard-rkl-7/igt@drm_fdinfo@most-busy-check-all@rcs0.html
* igt@drm_fdinfo@virtual-busy-hang-all:
- shard-dg2: NOTRUN -> [SKIP][8] ([i915#8414])
[8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/shard-dg2-10/igt@drm_fdinfo@virtual-busy-hang-all.html
* igt@gem_ccs@ctrl-surf-copy-new-ctx:
- shard-tglu: NOTRUN -> [SKIP][9] ([i915#5325])
[9]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/shard-tglu-8/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
- shard-mtlp: NOTRUN -> [SKIP][10] ([i915#5325])
[10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/shard-mtlp-8/igt@gem_ccs@ctrl-surf-copy-new-ctx.html
* igt@gem_ctx_isolation@preservation-s3@ccs2:
- shard-dg2: [PASS][11] -> [FAIL][12] ([fdo#103375]) +9 similar issues
[11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13441/shard-dg2-2/igt@gem_ctx_isolation@preservation-s3@ccs2.html
[12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/shard-dg2-10/igt@gem_ctx_isolation@preservation-s3@ccs2.html
* igt@gem_ctx_persistence@file:
- shard-snb: NOTRUN -> [SKIP][13] ([fdo#109271] / [i915#1099]) +2 similar issues
[13]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/shard-snb7/igt@gem_ctx_persistence@file.html
* igt@gem_eio@in-flight-contexts-1us:
- shard-mtlp: [PASS][14] -> [ABORT][15] ([i915#8503])
[14]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13441/shard-mtlp-8/igt@gem_eio@in-flight-contexts-1us.html
[15]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/shard-mtlp-3/igt@gem_eio@in-flight-contexts-1us.html
* igt@gem_eio@kms:
- shard-snb: [PASS][16] -> [FAIL][17] ([i915#8764])
[16]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13441/shard-snb2/igt@gem_eio@kms.html
[17]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/shard-snb1/igt@gem_eio@kms.html
* igt@gem_exec_fair@basic-pace-share@rcs0:
- shard-tglu: [PASS][18] -> [FAIL][19] ([i915#2842])
[18]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13441/shard-tglu-4/igt@gem_exec_fair@basic-pace-share@rcs0.html
[19]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/shard-tglu-9/igt@gem_exec_fair@basic-pace-share@rcs0.html
* igt@gem_exec_reloc@basic-gtt-cpu-active:
- shard-dg2: NOTRUN -> [SKIP][20] ([i915#3281]) +2 similar issues
[20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/shard-dg2-10/igt@gem_exec_reloc@basic-gtt-cpu-active.html
* igt@gem_exec_reloc@basic-range:
- shard-mtlp: NOTRUN -> [SKIP][21] ([i915#3281])
[21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/shard-mtlp-8/igt@gem_exec_reloc@basic-range.html
* igt@gem_lmem_swapping@parallel-random-verify:
- shard-tglu: NOTRUN -> [SKIP][22] ([i915#4613])
[22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/shard-tglu-8/igt@gem_lmem_swapping@parallel-random-verify.html
- shard-mtlp: NOTRUN -> [SKIP][23] ([i915#4613])
[23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/shard-mtlp-8/igt@gem_lmem_swapping@parallel-random-verify.html
- shard-apl: NOTRUN -> [SKIP][24] ([fdo#109271] / [i915#4613])
[24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/shard-apl7/igt@gem_lmem_swapping@parallel-random-verify.html
* igt@gem_lmem_swapping@parallel-random-verify@lmem0:
- shard-dg1: [PASS][25] -> [DMESG-WARN][26] ([i915#4423])
[25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13441/shard-dg1-17/igt@gem_lmem_swapping@parallel-random-verify@lmem0.html
[26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/shard-dg1-18/igt@gem_lmem_swapping@parallel-random-verify@lmem0.html
* igt@gem_lmem_swapping@smem-oom@lmem0:
- shard-dg2: [PASS][27] -> [DMESG-WARN][28] ([i915#4936] / [i915#5493])
[27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13441/shard-dg2-1/igt@gem_lmem_swapping@smem-oom@lmem0.html
[28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/shard-dg2-2/igt@gem_lmem_swapping@smem-oom@lmem0.html
- shard-dg1: [PASS][29] -> [TIMEOUT][30] ([i915#5493])
[29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13441/shard-dg1-18/igt@gem_lmem_swapping@smem-oom@lmem0.html
[30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/shard-dg1-15/igt@gem_lmem_swapping@smem-oom@lmem0.html
* igt@gem_mmap_gtt@cpuset-basic-small-copy-xy:
- shard-dg2: NOTRUN -> [SKIP][31] ([i915#4077]) +1 similar issue
[31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/shard-dg2-10/igt@gem_mmap_gtt@cpuset-basic-small-copy-xy.html
* igt@gem_mmap_offset@clear@smem0:
- shard-dg1: [PASS][32] -> [FAIL][33] ([i915#7962])
[32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13441/shard-dg1-15/igt@gem_mmap_offset@clear@smem0.html
[33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/shard-dg1-14/igt@gem_mmap_offset@clear@smem0.html
* igt@gem_mmap_wc@write-cpu-read-wc:
- shard-dg2: NOTRUN -> [SKIP][34] ([i915#4083])
[34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/shard-dg2-10/igt@gem_mmap_wc@write-cpu-read-wc.html
* igt@gem_partial_pwrite_pread@write-snoop:
- shard-dg2: NOTRUN -> [SKIP][35] ([i915#3282]) +1 similar issue
[35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/shard-dg2-10/igt@gem_partial_pwrite_pread@write-snoop.html
* igt@gem_pxp@create-regular-context-2:
- shard-dg2: NOTRUN -> [SKIP][36] ([i915#4270])
[36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/shard-dg2-10/igt@gem_pxp@create-regular-context-2.html
* igt@gem_render_copy@yf-tiled-ccs-to-y-tiled:
- shard-mtlp: NOTRUN -> [SKIP][37] ([i915#8428])
[37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/shard-mtlp-1/igt@gem_render_copy@yf-tiled-ccs-to-y-tiled.html
* igt@gem_set_tiling_vs_blt@tiled-to-tiled:
- shard-dg2: NOTRUN -> [SKIP][38] ([i915#4079])
[38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/shard-dg2-10/igt@gem_set_tiling_vs_blt@tiled-to-tiled.html
* igt@gem_unfence_active_buffers:
- shard-mtlp: NOTRUN -> [SKIP][39] ([i915#4879])
[39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/shard-mtlp-8/igt@gem_unfence_active_buffers.html
* igt@gem_userptr_blits@map-fixed-invalidate-overlap:
- shard-mtlp: NOTRUN -> [SKIP][40] ([i915#3297]) +1 similar issue
[40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/shard-mtlp-8/igt@gem_userptr_blits@map-fixed-invalidate-overlap.html
* igt@gem_userptr_blits@vma-merge:
- shard-snb: NOTRUN -> [FAIL][41] ([i915#2724])
[41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/shard-snb6/igt@gem_userptr_blits@vma-merge.html
* igt@gen9_exec_parse@allowed-single:
- shard-glk: [PASS][42] -> [ABORT][43] ([i915#5566])
[42]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13441/shard-glk1/igt@gen9_exec_parse@allowed-single.html
[43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/shard-glk4/igt@gen9_exec_parse@allowed-single.html
* igt@i915_module_load@reload-with-fault-injection:
- shard-mtlp: [PASS][44] -> [ABORT][45] ([i915#8489] / [i915#8668])
[44]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13441/shard-mtlp-5/igt@i915_module_load@reload-with-fault-injection.html
[45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/shard-mtlp-8/igt@i915_module_load@reload-with-fault-injection.html
* igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a:
- shard-rkl: [PASS][46] -> [SKIP][47] ([i915#1937])
[46]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13441/shard-rkl-7/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html
[47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/shard-rkl-4/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html
* igt@i915_pm_rpm@cursor-dpms:
- shard-tglu: [PASS][48] -> [FAIL][49] ([i915#7940]) +1 similar issue
[48]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13441/shard-tglu-7/igt@i915_pm_rpm@cursor-dpms.html
[49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/shard-tglu-4/igt@i915_pm_rpm@cursor-dpms.html
* igt@i915_pm_rpm@dpms-mode-unset-non-lpsp:
- shard-dg2: [PASS][50] -> [SKIP][51] ([i915#1397]) +2 similar issues
[50]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13441/shard-dg2-1/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html
[51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/shard-dg2-10/igt@i915_pm_rpm@dpms-mode-unset-non-lpsp.html
* igt@i915_pm_rpm@dpms-non-lpsp:
- shard-rkl: [PASS][52] -> [SKIP][53] ([i915#1397]) +1 similar issue
[52]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13441/shard-rkl-1/igt@i915_pm_rpm@dpms-non-lpsp.html
[53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/shard-rkl-7/igt@i915_pm_rpm@dpms-non-lpsp.html
* igt@i915_pm_rpm@gem-execbuf-stress@smem0:
- shard-dg1: [PASS][54] -> [FAIL][55] ([i915#7940])
[54]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13441/shard-dg1-12/igt@i915_pm_rpm@gem-execbuf-stress@smem0.html
[55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/shard-dg1-17/igt@i915_pm_rpm@gem-execbuf-stress@smem0.html
* igt@i915_suspend@basic-s2idle-without-i915:
- shard-snb: NOTRUN -> [DMESG-WARN][56] ([i915#8841]) +7 similar issues
[56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/shard-snb1/igt@i915_suspend@basic-s2idle-without-i915.html
* igt@kms_async_flips@alternate-sync-async-flip@pipe-a-edp-1:
- shard-mtlp: [PASS][57] -> [FAIL][58] ([i915#2521])
[57]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13441/shard-mtlp-6/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-edp-1.html
[58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/shard-mtlp-6/igt@kms_async_flips@alternate-sync-async-flip@pipe-a-edp-1.html
* igt@kms_async_flips@alternate-sync-async-flip@pipe-c-hdmi-a-2:
- shard-glk: [PASS][59] -> [FAIL][60] ([i915#2521])
[59]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13441/shard-glk8/igt@kms_async_flips@alternate-sync-async-flip@pipe-c-hdmi-a-2.html
[60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/shard-glk5/igt@kms_async_flips@alternate-sync-async-flip@pipe-c-hdmi-a-2.html
* igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-4-y-rc_ccs:
- shard-dg1: NOTRUN -> [SKIP][61] ([i915#8502]) +7 similar issues
[61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/shard-dg1-17/igt@kms_async_flips@async-flip-with-page-flip-events@pipe-c-hdmi-a-4-y-rc_ccs.html
* igt@kms_async_flips@crc@pipe-d-hdmi-a-4:
- shard-dg1: NOTRUN -> [FAIL][62] ([i915#8247]) +3 similar issues
[62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/shard-dg1-14/igt@kms_async_flips@crc@pipe-d-hdmi-a-4.html
* igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels:
- shard-snb: NOTRUN -> [SKIP][63] ([fdo#109271] / [i915#1769]) +1 similar issue
[63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/shard-snb4/igt@kms_atomic_transition@plane-all-modeset-transition-fencing-internal-panels.html
* igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip:
- shard-mtlp: [PASS][64] -> [FAIL][65] ([i915#3743])
[64]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13441/shard-mtlp-4/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
[65]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/shard-mtlp-3/igt@kms_big_fb@4-tiled-max-hw-stride-64bpp-rotate-0-async-flip.html
* igt@kms_big_fb@y-tiled-32bpp-rotate-0:
- shard-dg2: NOTRUN -> [SKIP][66] ([i915#5190]) +2 similar issues
[66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/shard-dg2-10/igt@kms_big_fb@y-tiled-32bpp-rotate-0.html
* igt@kms_big_fb@yf-tiled-16bpp-rotate-180:
- shard-dg2: NOTRUN -> [SKIP][67] ([i915#4538] / [i915#5190])
[67]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/shard-dg2-10/igt@kms_big_fb@yf-tiled-16bpp-rotate-180.html
* igt@kms_ccs@pipe-a-crc-primary-rotation-180-4_tiled_dg2_rc_ccs:
- shard-apl: NOTRUN -> [SKIP][68] ([fdo#109271]) +68 similar issues
[68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/shard-apl7/igt@kms_ccs@pipe-a-crc-primary-rotation-180-4_tiled_dg2_rc_ccs.html
* igt@kms_ccs@pipe-b-bad-rotation-90-4_tiled_mtl_rc_ccs:
- shard-dg2: NOTRUN -> [SKIP][69] ([i915#5354]) +11 similar issues
[69]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/shard-dg2-10/igt@kms_ccs@pipe-b-bad-rotation-90-4_tiled_mtl_rc_ccs.html
* igt@kms_ccs@pipe-b-missing-ccs-buffer-y_tiled_gen12_mc_ccs:
- shard-dg2: NOTRUN -> [SKIP][70] ([i915#3689] / [i915#3886] / [i915#5354])
[70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/shard-dg2-10/igt@kms_ccs@pipe-b-missing-ccs-buffer-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-c-bad-pixel-format-y_tiled_gen12_mc_ccs:
- shard-apl: NOTRUN -> [SKIP][71] ([fdo#109271] / [i915#3886])
[71]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/shard-apl7/igt@kms_ccs@pipe-c-bad-pixel-format-y_tiled_gen12_mc_ccs.html
* igt@kms_ccs@pipe-c-crc-sprite-planes-basic-yf_tiled_ccs:
- shard-mtlp: NOTRUN -> [SKIP][72] ([i915#6095]) +1 similar issue
[72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/shard-mtlp-1/igt@kms_ccs@pipe-c-crc-sprite-planes-basic-yf_tiled_ccs.html
* igt@kms_ccs@pipe-c-random-ccs-data-4_tiled_mtl_rc_ccs_cc:
- shard-tglu: NOTRUN -> [SKIP][73] ([i915#5354] / [i915#6095]) +1 similar issue
[73]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/shard-tglu-8/igt@kms_ccs@pipe-c-random-ccs-data-4_tiled_mtl_rc_ccs_cc.html
* igt@kms_ccs@pipe-d-bad-aux-stride-y_tiled_gen12_rc_ccs_cc:
- shard-dg2: NOTRUN -> [SKIP][74] ([i915#3689] / [i915#5354]) +6 similar issues
[74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/shard-dg2-10/igt@kms_ccs@pipe-d-bad-aux-stride-y_tiled_gen12_rc_ccs_cc.html
* igt@kms_ccs@pipe-d-bad-rotation-90-4_tiled_dg2_rc_ccs:
- shard-tglu: NOTRUN -> [SKIP][75] ([i915#3689] / [i915#5354] / [i915#6095])
[75]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/shard-tglu-8/igt@kms_ccs@pipe-d-bad-rotation-90-4_tiled_dg2_rc_ccs.html
* igt@kms_cdclk@mode-transition@pipe-d-dp-4:
- shard-dg2: NOTRUN -> [SKIP][76] ([i915#4087] / [i915#7213]) +3 similar issues
[76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/shard-dg2-11/igt@kms_cdclk@mode-transition@pipe-d-dp-4.html
* igt@kms_chamelium_color@ctm-green-to-red:
- shard-dg2: NOTRUN -> [SKIP][77] ([fdo#111827])
[77]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/shard-dg2-10/igt@kms_chamelium_color@ctm-green-to-red.html
* igt@kms_chamelium_frames@dp-crc-fast:
- shard-dg2: NOTRUN -> [SKIP][78] ([i915#7828])
[78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/shard-dg2-10/igt@kms_chamelium_frames@dp-crc-fast.html
* igt@kms_chamelium_hpd@common-hpd-after-suspend:
- shard-tglu: NOTRUN -> [SKIP][79] ([i915#7828])
[79]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/shard-tglu-8/igt@kms_chamelium_hpd@common-hpd-after-suspend.html
- shard-mtlp: NOTRUN -> [SKIP][80] ([i915#7828])
[80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/shard-mtlp-8/igt@kms_chamelium_hpd@common-hpd-after-suspend.html
* igt@kms_content_protection@atomic-dpms:
- shard-mtlp: NOTRUN -> [SKIP][81] ([i915#6944])
[81]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/shard-mtlp-1/igt@kms_content_protection@atomic-dpms.html
* igt@kms_content_protection@atomic@pipe-a-dp-1:
- shard-apl: NOTRUN -> [TIMEOUT][82] ([i915#7173])
[82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/shard-apl7/igt@kms_content_protection@atomic@pipe-a-dp-1.html
* igt@kms_content_protection@legacy@pipe-a-dp-4:
- shard-dg2: NOTRUN -> [TIMEOUT][83] ([i915#7173])
[83]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/shard-dg2-11/igt@kms_content_protection@legacy@pipe-a-dp-4.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x10:
- shard-tglu: NOTRUN -> [SKIP][84] ([i915#3555])
[84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/shard-tglu-8/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
- shard-mtlp: NOTRUN -> [SKIP][85] ([i915#8814])
[85]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/shard-mtlp-8/igt@kms_cursor_crc@cursor-rapid-movement-32x10.html
* igt@kms_cursor_crc@cursor-rapid-movement-32x32:
- shard-dg2: NOTRUN -> [SKIP][86] ([i915#3555])
[86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/shard-dg2-11/igt@kms_cursor_crc@cursor-rapid-movement-32x32.html
* igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic:
- shard-snb: NOTRUN -> [SKIP][87] ([fdo#109271] / [fdo#111767])
[87]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/shard-snb7/igt@kms_cursor_legacy@2x-flip-vs-cursor-atomic.html
* igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][88] ([i915#3804])
[88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/shard-rkl-7/igt@kms_dither@fb-8bpc-vs-panel-6bpc@pipe-a-hdmi-a-1.html
* igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-hdmi-a1-hdmi-a2:
- shard-glk: [PASS][89] -> [FAIL][90] ([i915#79])
[89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13441/shard-glk5/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-hdmi-a1-hdmi-a2.html
[90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/shard-glk8/igt@kms_flip@2x-flip-vs-expired-vblank-interruptible@ac-hdmi-a1-hdmi-a2.html
* igt@kms_flip@2x-flip-vs-suspend-interruptible:
- shard-dg2: NOTRUN -> [SKIP][91] ([fdo#109274])
[91]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/shard-dg2-10/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
* igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode:
- shard-dg2: NOTRUN -> [SKIP][92] ([i915#2672])
[92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/shard-dg2-10/igt@kms_flip_scaled_crc@flip-32bpp-ytile-to-32bpp-ytilegen12rcccs-upscaling@pipe-a-valid-mode.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-gtt:
- shard-dg2: NOTRUN -> [SKIP][93] ([i915#8708]) +3 similar issues
[93]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/shard-dg2-10/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-indfb-draw-mmap-gtt.html
* igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-blt:
- shard-dg2: [PASS][94] -> [FAIL][95] ([i915#6880])
[94]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13441/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-blt.html
[95]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-1p-offscren-pri-shrfb-draw-blt.html
* igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc:
- shard-tglu: NOTRUN -> [SKIP][96] ([fdo#109280])
[96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/shard-tglu-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc.html
- shard-mtlp: NOTRUN -> [SKIP][97] ([i915#1825])
[97]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/shard-mtlp-8/igt@kms_frontbuffer_tracking@fbc-2p-primscrn-pri-shrfb-draw-mmap-wc.html
* igt@kms_frontbuffer_tracking@fbc-tiling-y:
- shard-dg2: NOTRUN -> [SKIP][98] ([i915#5460])
[98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/shard-dg2-11/igt@kms_frontbuffer_tracking@fbc-tiling-y.html
* igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite:
- shard-tglu: NOTRUN -> [SKIP][99] ([fdo#110189]) +1 similar issue
[99]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/shard-tglu-8/igt@kms_frontbuffer_tracking@psr-1p-primscrn-spr-indfb-draw-pwrite.html
* igt@kms_frontbuffer_tracking@psr-1p-rte:
- shard-dg2: NOTRUN -> [SKIP][100] ([i915#3458]) +3 similar issues
[100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/shard-dg2-10/igt@kms_frontbuffer_tracking@psr-1p-rte.html
* igt@kms_hdr@bpc-switch:
- shard-rkl: NOTRUN -> [SKIP][101] ([i915#3555] / [i915#8228]) +2 similar issues
[101]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/shard-rkl-3/igt@kms_hdr@bpc-switch.html
* igt@kms_hdr@static-toggle:
- shard-dg2: NOTRUN -> [SKIP][102] ([i915#3555] / [i915#8228]) +3 similar issues
[102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/shard-dg2-6/igt@kms_hdr@static-toggle.html
* igt@kms_plane@pixel-format@pipe-b-planes:
- shard-mtlp: [PASS][103] -> [FAIL][104] ([i915#1623])
[103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13441/shard-mtlp-4/igt@kms_plane@pixel-format@pipe-b-planes.html
[104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/shard-mtlp-7/igt@kms_plane@pixel-format@pipe-b-planes.html
* igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-dp-1:
- shard-apl: NOTRUN -> [FAIL][105] ([i915#4573]) +1 similar issue
[105]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/shard-apl7/igt@kms_plane_alpha_blend@constant-alpha-max@pipe-c-dp-1.html
* igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-a-hdmi-a-1:
- shard-rkl: NOTRUN -> [SKIP][106] ([i915#5176]) +3 similar issues
[106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/shard-rkl-7/igt@kms_plane_scaling@plane-downscale-with-rotation-factor-0-5@pipe-a-hdmi-a-1.html
* igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-b-hdmi-a-4:
- shard-dg1: NOTRUN -> [SKIP][107] ([i915#5176]) +11 similar issues
[107]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/shard-dg1-17/igt@kms_plane_scaling@plane-upscale-with-rotation-factor-0-25@pipe-b-hdmi-a-4.html
* igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b-hdmi-a-2:
- shard-rkl: NOTRUN -> [SKIP][108] ([i915#5235]) +3 similar issues
[108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/shard-rkl-1/igt@kms_plane_scaling@planes-downscale-factor-0-25-upscale-20x20@pipe-b-hdmi-a-2.html
* igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-b-vga-1:
- shard-snb: NOTRUN -> [SKIP][109] ([fdo#109271]) +322 similar issues
[109]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/shard-snb2/igt@kms_plane_scaling@planes-downscale-factor-0-5-unity-scaling@pipe-b-vga-1.html
* igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c-hdmi-a-1:
- shard-dg1: NOTRUN -> [SKIP][110] ([i915#5235]) +11 similar issues
[110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/shard-dg1-19/igt@kms_plane_scaling@planes-unity-scaling-downscale-factor-0-25@pipe-c-hdmi-a-1.html
* igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-hdmi-a-2:
- shard-dg2: NOTRUN -> [SKIP][111] ([i915#5235]) +7 similar issues
[111]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/shard-dg2-2/igt@kms_plane_scaling@planes-upscale-factor-0-25-downscale-factor-0-25@pipe-b-hdmi-a-2.html
* igt@kms_psr2_sf@overlay-plane-update-continuous-sf:
- shard-dg2: NOTRUN -> [SKIP][112] ([i915#658])
[112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/shard-dg2-10/igt@kms_psr2_sf@overlay-plane-update-continuous-sf.html
* igt@kms_psr@primary_mmap_cpu:
- shard-dg2: NOTRUN -> [SKIP][113] ([i915#1072]) +1 similar issue
[113]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/shard-dg2-10/igt@kms_psr@primary_mmap_cpu.html
* igt@kms_rotation_crc@primary-rotation-270:
- shard-dg2: NOTRUN -> [SKIP][114] ([i915#4235])
[114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/shard-dg2-10/igt@kms_rotation_crc@primary-rotation-270.html
* igt@kms_sysfs_edid_timing:
- shard-dg2: [PASS][115] -> [FAIL][116] ([IGT#2])
[115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13441/shard-dg2-11/igt@kms_sysfs_edid_timing.html
[116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/shard-dg2-1/igt@kms_sysfs_edid_timing.html
* igt@kms_writeback@writeback-fb-id:
- shard-dg2: NOTRUN -> [SKIP][117] ([i915#2437])
[117]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/shard-dg2-10/igt@kms_writeback@writeback-fb-id.html
* igt@perf@per-context-mode-unprivileged:
- shard-dg2: NOTRUN -> [SKIP][118] ([fdo#109289])
[118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/shard-dg2-11/igt@perf@per-context-mode-unprivileged.html
* igt@perf_pmu@busy-double-start@vecs1:
- shard-dg2: [PASS][119] -> [FAIL][120] ([i915#4349]) +3 similar issues
[119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13441/shard-dg2-11/igt@perf_pmu@busy-double-start@vecs1.html
[120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/shard-dg2-1/igt@perf_pmu@busy-double-start@vecs1.html
* igt@v3d/v3d_submit_csd@multi-and-single-sync:
- shard-dg2: NOTRUN -> [SKIP][121] ([i915#2575]) +1 similar issue
[121]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/shard-dg2-10/igt@v3d/v3d_submit_csd@multi-and-single-sync.html
* igt@vc4/vc4_purgeable_bo@access-purged-bo-mem:
- shard-dg2: NOTRUN -> [SKIP][122] ([i915#7711]) +2 similar issues
[122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/shard-dg2-10/igt@vc4/vc4_purgeable_bo@access-purged-bo-mem.html
* igt@vc4/vc4_tiling@set-bad-modifier:
- shard-tglu: NOTRUN -> [SKIP][123] ([i915#2575])
[123]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/shard-tglu-8/igt@vc4/vc4_tiling@set-bad-modifier.html
- shard-mtlp: NOTRUN -> [SKIP][124] ([i915#7711])
[124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/shard-mtlp-8/igt@vc4/vc4_tiling@set-bad-modifier.html
#### Possible fixes ####
* igt@drm_fdinfo@most-busy-idle-check-all@rcs0:
- shard-rkl: [FAIL][125] ([i915#7742]) -> [PASS][126]
[125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13441/shard-rkl-1/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html
[126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/shard-rkl-6/igt@drm_fdinfo@most-busy-idle-check-all@rcs0.html
* igt@gem_barrier_race@remote-request@rcs0:
- shard-dg2: [ABORT][127] ([i915#6333]) -> [PASS][128]
[127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13441/shard-dg2-1/igt@gem_barrier_race@remote-request@rcs0.html
[128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/shard-dg2-10/igt@gem_barrier_race@remote-request@rcs0.html
* igt@gem_busy@close-race:
- shard-mtlp: [ABORT][129] ([i915#7349]) -> [PASS][130]
[129]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13441/shard-mtlp-3/igt@gem_busy@close-race.html
[130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/shard-mtlp-8/igt@gem_busy@close-race.html
* igt@gem_ctx_exec@basic-nohangcheck:
- shard-tglu: [FAIL][131] ([i915#6268]) -> [PASS][132]
[131]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13441/shard-tglu-7/igt@gem_ctx_exec@basic-nohangcheck.html
[132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/shard-tglu-7/igt@gem_ctx_exec@basic-nohangcheck.html
* igt@gem_eio@hibernate:
- shard-dg2: [ABORT][133] ([i915#7975] / [i915#8213]) -> [PASS][134]
[133]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13441/shard-dg2-10/igt@gem_eio@hibernate.html
[134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/shard-dg2-11/igt@gem_eio@hibernate.html
* igt@gem_eio@in-flight-contexts-10ms:
- shard-rkl: [TIMEOUT][135] ([i915#3063]) -> [PASS][136]
[135]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13441/shard-rkl-1/igt@gem_eio@in-flight-contexts-10ms.html
[136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/shard-rkl-2/igt@gem_eio@in-flight-contexts-10ms.html
* igt@gem_eio@kms:
- shard-apl: [FAIL][137] ([i915#3354]) -> [PASS][138]
[137]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13441/shard-apl3/igt@gem_eio@kms.html
[138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/shard-apl2/igt@gem_eio@kms.html
* igt@gem_exec_fair@basic-pace-solo@rcs0:
- shard-apl: [FAIL][139] ([i915#2842]) -> [PASS][140]
[139]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13441/shard-apl1/igt@gem_exec_fair@basic-pace-solo@rcs0.html
[140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/shard-apl1/igt@gem_exec_fair@basic-pace-solo@rcs0.html
* igt@gem_exec_fair@basic-pace@rcs0:
- shard-rkl: [FAIL][141] ([i915#2842]) -> [PASS][142] +1 similar issue
[141]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13441/shard-rkl-2/igt@gem_exec_fair@basic-pace@rcs0.html
[142]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/shard-rkl-6/igt@gem_exec_fair@basic-pace@rcs0.html
* igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a:
- shard-dg1: [SKIP][143] ([i915#1937]) -> [PASS][144]
[143]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13441/shard-dg1-17/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html
[144]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/shard-dg1-19/igt@i915_pm_lpsp@kms-lpsp@kms-lpsp-hdmi-a.html
* igt@i915_pm_rc6_residency@rc6-idle@vcs0:
- shard-dg1: [FAIL][145] ([i915#3591]) -> [PASS][146]
[145]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13441/shard-dg1-12/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html
[146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/shard-dg1-17/igt@i915_pm_rc6_residency@rc6-idle@vcs0.html
* igt@i915_pm_rpm@modeset-non-lpsp-stress:
- shard-dg1: [FAIL][147] ([i915#7940]) -> [PASS][148]
[147]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13441/shard-dg1-17/igt@i915_pm_rpm@modeset-non-lpsp-stress.html
[148]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/shard-dg1-18/igt@i915_pm_rpm@modeset-non-lpsp-stress.html
* igt@i915_pm_rps@reset:
- shard-snb: [INCOMPLETE][149] ([i915#7790]) -> [PASS][150]
[149]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13441/shard-snb5/igt@i915_pm_rps@reset.html
[150]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/shard-snb4/igt@i915_pm_rps@reset.html
* igt@i915_selftest@live@gt_mocs:
- shard-mtlp: [DMESG-FAIL][151] ([i915#7059]) -> [PASS][152]
[151]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13441/shard-mtlp-5/igt@i915_selftest@live@gt_mocs.html
[152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/shard-mtlp-8/igt@i915_selftest@live@gt_mocs.html
* igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip:
- shard-mtlp: [FAIL][153] ([i915#3743]) -> [PASS][154]
[153]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13441/shard-mtlp-7/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
[154]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/shard-mtlp-5/igt@kms_big_fb@4-tiled-max-hw-stride-32bpp-rotate-0-async-flip.html
* igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size:
- shard-mtlp: [FAIL][155] ([i915#8248]) -> [PASS][156]
[155]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13441/shard-mtlp-1/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size.html
[156]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/shard-mtlp-2/igt@kms_cursor_legacy@cursor-vs-flip-atomic-transitions-varying-size.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-apl: [FAIL][157] ([i915#2346]) -> [PASS][158]
[157]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13441/shard-apl2/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
[158]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/shard-apl4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_flip@flip-vs-suspend-interruptible@c-dp1:
- shard-apl: [DMESG-WARN][159] ([i915#180]) -> [PASS][160]
[159]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13441/shard-apl6/igt@kms_flip@flip-vs-suspend-interruptible@c-dp1.html
[160]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/shard-apl7/igt@kms_flip@flip-vs-suspend-interruptible@c-dp1.html
* igt@kms_flip@flip-vs-suspend@a-dp1:
- shard-apl: [ABORT][161] ([i915#180]) -> [PASS][162] +1 similar issue
[161]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13441/shard-apl7/igt@kms_flip@flip-vs-suspend@a-dp1.html
[162]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/shard-apl7/igt@kms_flip@flip-vs-suspend@a-dp1.html
* igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt:
- shard-dg2: [FAIL][163] ([i915#6880]) -> [PASS][164]
[163]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13441/shard-dg2-1/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt.html
[164]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/shard-dg2-2/igt@kms_frontbuffer_tracking@fbc-1p-primscrn-shrfb-plflip-blt.html
* igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a-planes:
- shard-dg2: [FAIL][165] ([fdo#103375]) -> [PASS][166]
[165]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13441/shard-dg2-11/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a-planes.html
[166]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/shard-dg2-3/igt@kms_plane@plane-panning-bottom-right-suspend@pipe-a-planes.html
* igt@sysfs_heartbeat_interval@nopreempt@vcs0:
- shard-mtlp: [FAIL][167] ([i915#6015]) -> [PASS][168]
[167]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13441/shard-mtlp-5/igt@sysfs_heartbeat_interval@nopreempt@vcs0.html
[168]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/shard-mtlp-3/igt@sysfs_heartbeat_interval@nopreempt@vcs0.html
#### Warnings ####
* igt@i915_pm_dc@dc9-dpms:
- shard-tglu: [INCOMPLETE][169] -> [SKIP][170] ([i915#4281])
[169]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13441/shard-tglu-3/igt@i915_pm_dc@dc9-dpms.html
[170]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/shard-tglu-8/igt@i915_pm_dc@dc9-dpms.html
* igt@i915_pm_rc6_residency@rc6-idle@bcs0:
- shard-tglu: [FAIL][171] ([i915#2681] / [i915#3591]) -> [WARN][172] ([i915#2681])
[171]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13441/shard-tglu-2/igt@i915_pm_rc6_residency@rc6-idle@bcs0.html
[172]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/shard-tglu-5/igt@i915_pm_rc6_residency@rc6-idle@bcs0.html
* igt@i915_pm_rpm@modeset-non-lpsp:
- shard-tglu: [SKIP][173] ([fdo#111644] / [i915#1397]) -> [FAIL][174] ([i915#7940])
[173]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13441/shard-tglu-8/igt@i915_pm_rpm@modeset-non-lpsp.html
[174]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/shard-tglu-2/igt@i915_pm_rpm@modeset-non-lpsp.html
* igt@i915_suspend@basic-s3-without-i915:
- shard-snb: [INCOMPLETE][175] ([i915#4528] / [i915#4817]) -> [INCOMPLETE][176] ([i915#4528])
[175]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13441/shard-snb6/igt@i915_suspend@basic-s3-without-i915.html
[176]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/shard-snb5/igt@i915_suspend@basic-s3-without-i915.html
* igt@kms_content_protection@content_type_change:
- shard-dg2: [SKIP][177] ([i915#7118] / [i915#7162]) -> [SKIP][178] ([i915#7118])
[177]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13441/shard-dg2-11/igt@kms_content_protection@content_type_change.html
[178]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/shard-dg2-6/igt@kms_content_protection@content_type_change.html
* igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size:
- shard-mtlp: [DMESG-FAIL][179] ([i915#2017] / [i915#5954]) -> [FAIL][180] ([i915#2346])
[179]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13441/shard-mtlp-3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
[180]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/shard-mtlp-4/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions-varying-size.html
* igt@kms_fbcon_fbt@psr-suspend:
- shard-rkl: [SKIP][181] ([fdo#110189] / [i915#3955]) -> [SKIP][182] ([i915#3955]) +1 similar issue
[181]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13441/shard-rkl-1/igt@kms_fbcon_fbt@psr-suspend.html
[182]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/shard-rkl-4/igt@kms_fbcon_fbt@psr-suspend.html
* igt@kms_psr@cursor_plane_move:
- shard-dg1: [SKIP][183] ([i915#1072] / [i915#4078]) -> [SKIP][184] ([i915#1072]) +2 similar issues
[183]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_13441/shard-dg1-12/igt@kms_psr@cursor_plane_move.html
[184]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/shard-dg1-17/igt@kms_psr@cursor_plane_move.html
{name}: This element is suppressed. This means it is ignored when computing
the status of the difference (SUCCESS, WARNING, or FAILURE).
[IGT#2]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/2
[fdo#103375]: https://bugs.freedesktop.org/show_bug.cgi?id=103375
[fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
[fdo#109274]: https://bugs.freedesktop.org/show_bug.cgi?id=109274
[fdo#109280]: https://bugs.freedesktop.org/show_bug.cgi?id=109280
[fdo#109289]: https://bugs.freedesktop.org/show_bug.cgi?id=109289
[fdo#110189]: https://bugs.freedesktop.org/show_bug.cgi?id=110189
[fdo#111644]: https://bugs.freedesktop.org/show_bug.cgi?id=111644
[fdo#111767]: https://bugs.freedesktop.org/show_bug.cgi?id=111767
[fdo#111827]: https://bugs.freedesktop.org/show_bug.cgi?id=111827
[i915#1072]: https://gitlab.freedesktop.org/drm/intel/issues/1072
[i915#1099]: https://gitlab.freedesktop.org/drm/intel/issues/1099
[i915#1397]: https://gitlab.freedesktop.org/drm/intel/issues/1397
[i915#1623]: https://gitlab.freedesktop.org/drm/intel/issues/1623
[i915#1769]: https://gitlab.freedesktop.org/drm/intel/issues/1769
[i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180
[i915#1825]: https://gitlab.freedesktop.org/drm/intel/issues/1825
[i915#1937]: https://gitlab.freedesktop.org/drm/intel/issues/1937
[i915#2017]: https://gitlab.freedesktop.org/drm/intel/issues/2017
[i915#2346]: https://gitlab.freedesktop.org/drm/intel/issues/2346
[i915#2437]: https://gitlab.freedesktop.org/drm/intel/issues/2437
[i915#2521]: https://gitlab.freedesktop.org/drm/intel/issues/2521
[i915#2575]: https://gitlab.freedesktop.org/drm/intel/issues/2575
[i915#2672]: https://gitlab.freedesktop.org/drm/intel/issues/2672
[i915#2681]: https://gitlab.freedesktop.org/drm/intel/issues/2681
[i915#2724]: https://gitlab.freedesktop.org/drm/intel/issues/2724
[i915#2842]: https://gitlab.freedesktop.org/drm/intel/issues/2842
[i915#3063]: https://gitlab.freedesktop.org/drm/intel/issues/3063
[i915#3281]: https://gitlab.freedesktop.org/drm/intel/issues/3281
[i915#3282]: https://gitlab.freedesktop.org/drm/intel/issues/3282
[i915#3297]: https://gitlab.freedesktop.org/drm/intel/issues/3297
[i915#3354]: https://gitlab.freedesktop.org/drm/intel/issues/3354
[i915#3458]: https://gitlab.freedesktop.org/drm/intel/issues/3458
[i915#3555]: https://gitlab.freedesktop.org/drm/intel/issues/3555
[i915#3591]: https://gitlab.freedesktop.org/drm/intel/issues/3591
[i915#3689]: https://gitlab.freedesktop.org/drm/intel/issues/3689
[i915#3743]: https://gitlab.freedesktop.org/drm/intel/issues/3743
[i915#3804]: https://gitlab.freedesktop.org/drm/intel/issues/3804
[i915#3886]: https://gitlab.freedesktop.org/drm/intel/issues/3886
[i915#3955]: https://gitlab.freedesktop.org/drm/intel/issues/3955
[i915#4077]: https://gitlab.freedesktop.org/drm/intel/issues/4077
[i915#4078]: https://gitlab.freedesktop.org/drm/intel/issues/4078
[i915#4079]: https://gitlab.freedesktop.org/drm/intel/issues/4079
[i915#4083]: https://gitlab.freedesktop.org/drm/intel/issues/4083
[i915#4087]: https://gitlab.freedesktop.org/drm/intel/issues/4087
[i915#4235]: https://gitlab.freedesktop.org/drm/intel/issues/4235
[i915#4270]: https://gitlab.freedesktop.org/drm/intel/issues/4270
[i915#4281]: https://gitlab.freedesktop.org/drm/intel/issues/4281
[i915#4349]: https://gitlab.freedesktop.org/drm/intel/issues/4349
[i915#4423]: https://gitlab.freedesktop.org/drm/intel/issues/4423
[i915#4528]: https://gitlab.freedesktop.org/drm/intel/issues/4528
[i915#4538]: https://gitlab.freedesktop.org/drm/intel/issues/4538
[i915#4573]: https://gitlab.freedesktop.org/drm/intel/issues/4573
[i915#4613]: https://gitlab.freedesktop.org/drm/intel/issues/4613
[i915#4817]: https://gitlab.freedesktop.org/drm/intel/issues/4817
[i915#4879]: https://gitlab.freedesktop.org/drm/intel/issues/4879
[i915#4936]: https://gitlab.freedesktop.org/drm/intel/issues/4936
[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#5325]: https://gitlab.freedesktop.org/drm/intel/issues/5325
[i915#5354]: https://gitlab.freedesktop.org/drm/intel/issues/5354
[i915#5460]: https://gitlab.freedesktop.org/drm/intel/issues/5460
[i915#5493]: https://gitlab.freedesktop.org/drm/intel/issues/5493
[i915#5566]: https://gitlab.freedesktop.org/drm/intel/issues/5566
[i915#5954]: https://gitlab.freedesktop.org/drm/intel/issues/5954
[i915#6015]: https://gitlab.freedesktop.org/drm/intel/issues/6015
[i915#6095]: https://gitlab.freedesktop.org/drm/intel/issues/6095
[i915#6268]: https://gitlab.freedesktop.org/drm/intel/issues/6268
[i915#6333]: https://gitlab.freedesktop.org/drm/intel/issues/6333
[i915#658]: https://gitlab.freedesktop.org/drm/intel/issues/658
[i915#6880]: https://gitlab.freedesktop.org/drm/intel/issues/6880
[i915#6944]: https://gitlab.freedesktop.org/drm/intel/issues/6944
[i915#7059]: https://gitlab.freedesktop.org/drm/intel/issues/7059
[i915#7118]: https://gitlab.freedesktop.org/drm/intel/issues/7118
[i915#7162]: https://gitlab.freedesktop.org/drm/intel/issues/7162
[i915#7173]: https://gitlab.freedesktop.org/drm/intel/issues/7173
[i915#7213]: https://gitlab.freedesktop.org/drm/intel/issues/7213
[i915#7349]: https://gitlab.freedesktop.org/drm/intel/issues/7349
[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#79]: https://gitlab.freedesktop.org/drm/intel/issues/79
[i915#7940]: https://gitlab.freedesktop.org/drm/intel/issues/7940
[i915#7962]: https://gitlab.freedesktop.org/drm/intel/issues/7962
[i915#7975]: https://gitlab.freedesktop.org/drm/intel/issues/7975
[i915#8213]: https://gitlab.freedesktop.org/drm/intel/issues/8213
[i915#8228]: https://gitlab.freedesktop.org/drm/intel/issues/8228
[i915#8247]: https://gitlab.freedesktop.org/drm/intel/issues/8247
[i915#8248]: https://gitlab.freedesktop.org/drm/intel/issues/8248
[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#8502]: https://gitlab.freedesktop.org/drm/intel/issues/8502
[i915#8503]: https://gitlab.freedesktop.org/drm/intel/issues/8503
[i915#8661]: https://gitlab.freedesktop.org/drm/intel/issues/8661
[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#8764]: https://gitlab.freedesktop.org/drm/intel/issues/8764
[i915#8814]: https://gitlab.freedesktop.org/drm/intel/issues/8814
[i915#8841]: https://gitlab.freedesktop.org/drm/intel/issues/8841
Build changes
-------------
* Linux: CI_DRM_13441 -> Patchwork_121583v1
CI-20190529: 20190529
CI_DRM_13441: 194cd63362db9ed2cbdd3deaa7a8752b86d95f3b @ git://anongit.freedesktop.org/gfx-ci/linux
IGT_7409: 7409
Patchwork_121583v1: 194cd63362db9ed2cbdd3deaa7a8752b86d95f3b @ git://anongit.freedesktop.org/gfx-ci/linux
piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit
== Logs ==
For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_121583v1/index.html
[-- Attachment #2: Type: text/html, Size: 55585 bytes --]
^ permalink raw reply [flat|nested] 10+ messages in thread