intel-gfx.lists.freedesktop.org archive mirror
 help / color / mirror / Atom feed
* [Intel-gfx] drm/i915: device params part 1
@ 2020-05-18 16:47 Jani Nikula
  2020-05-18 16:47 ` [Intel-gfx] [PATCH 1/3] drm/i915/params: don't expose inject_probe_failure in debugfs Jani Nikula
                   ` (10 more replies)
  0 siblings, 11 replies; 12+ messages in thread
From: Jani Nikula @ 2020-05-18 16:47 UTC (permalink / raw)
  To: intel-gfx

This is the first 3 patches of [1], because apparently patch 4 breaks
the world. I've yet to pinpoint the issue, but these could move forward
in the meanwhile.

BR,
Jani.


[1] https://patchwork.freedesktop.org/series/77272/



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

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

* [Intel-gfx] [PATCH 1/3] drm/i915/params: don't expose inject_probe_failure in debugfs
  2020-05-18 16:47 [Intel-gfx] drm/i915: device params part 1 Jani Nikula
@ 2020-05-18 16:47 ` Jani Nikula
  2020-05-18 16:47 ` [Intel-gfx] [PATCH 2/3] drm/i915/params: fix i915.fake_lmem_start module param sysfs permissions Jani Nikula
                   ` (9 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: Jani Nikula @ 2020-05-18 16:47 UTC (permalink / raw)
  To: intel-gfx; +Cc: Jani Nikula, Juha-Pekka Heikkilä

The parameter only makes sense as a module parameter only.

Fixes: c43c5a8818d4 ("drm/i915/params: add i915 parameters to debugfs")
Cc: Juha-Pekka Heikkilä <juha-pekka.heikkila@intel.com>
Cc: Venkata Sandeep Dhanalakota <venkata.s.dhanalakota@intel.com>
Reviewed-by: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
 drivers/gpu/drm/i915/i915_params.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/i915/i915_params.h b/drivers/gpu/drm/i915/i915_params.h
index 45323732f099..4f21bfffbf0e 100644
--- a/drivers/gpu/drm/i915/i915_params.h
+++ b/drivers/gpu/drm/i915/i915_params.h
@@ -64,7 +64,7 @@ struct drm_printer;
 	param(int, mmio_debug, -IS_ENABLED(CONFIG_DRM_I915_DEBUG_MMIO), 0600) \
 	param(int, edp_vswing, 0, 0400) \
 	param(unsigned int, reset, 3, 0600) \
-	param(unsigned int, inject_probe_failure, 0, 0600) \
+	param(unsigned int, inject_probe_failure, 0, 0) \
 	param(int, fastboot, -1, 0600) \
 	param(int, enable_dpcd_backlight, -1, 0600) \
 	param(char *, force_probe, CONFIG_DRM_I915_FORCE_PROBE, 0400) \
-- 
2.20.1

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

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

* [Intel-gfx] [PATCH 2/3] drm/i915/params: fix i915.fake_lmem_start module param sysfs permissions
  2020-05-18 16:47 [Intel-gfx] drm/i915: device params part 1 Jani Nikula
  2020-05-18 16:47 ` [Intel-gfx] [PATCH 1/3] drm/i915/params: don't expose inject_probe_failure in debugfs Jani Nikula
@ 2020-05-18 16:47 ` Jani Nikula
  2020-05-18 16:47 ` [Intel-gfx] [PATCH 3/3] drm/i915/params: prevent changing module params runtime Jani Nikula
                   ` (8 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: Jani Nikula @ 2020-05-18 16:47 UTC (permalink / raw)
  To: intel-gfx; +Cc: Jani Nikula, Matthew Auld, Chris Wilson

fake_lmem_start does not need to be mutable via module param sysfs. It's
only used during driver probe.

Fixes: 1629224324b6 ("drm/i915/lmem: add the fake lmem region")
Cc: Matthew Auld <matthew.auld@intel.com>
Cc: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Cc: Chris Wilson <chris@chris-wilson.co.uk>
Reviewed-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
 drivers/gpu/drm/i915/i915_params.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/i915/i915_params.c b/drivers/gpu/drm/i915/i915_params.c
index add00ec1f787..a3dde770226d 100644
--- a/drivers/gpu/drm/i915/i915_params.c
+++ b/drivers/gpu/drm/i915/i915_params.c
@@ -173,7 +173,7 @@ i915_param_named(enable_gvt, bool, 0400,
 #endif
 
 #if IS_ENABLED(CONFIG_DRM_I915_UNSTABLE_FAKE_LMEM)
-i915_param_named_unsafe(fake_lmem_start, ulong, 0600,
+i915_param_named_unsafe(fake_lmem_start, ulong, 0400,
 	"Fake LMEM start offset (default: 0)");
 #endif
 
-- 
2.20.1

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

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

* [Intel-gfx] [PATCH 3/3] drm/i915/params: prevent changing module params runtime
  2020-05-18 16:47 [Intel-gfx] drm/i915: device params part 1 Jani Nikula
  2020-05-18 16:47 ` [Intel-gfx] [PATCH 1/3] drm/i915/params: don't expose inject_probe_failure in debugfs Jani Nikula
  2020-05-18 16:47 ` [Intel-gfx] [PATCH 2/3] drm/i915/params: fix i915.fake_lmem_start module param sysfs permissions Jani Nikula
@ 2020-05-18 16:47 ` Jani Nikula
  2020-05-18 19:41 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for series starting with [1/3] drm/i915/params: don't expose inject_probe_failure in debugfs Patchwork
                   ` (7 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: Jani Nikula @ 2020-05-18 16:47 UTC (permalink / raw)
  To: intel-gfx; +Cc: Jani Nikula, Juha-Pekka Heikkilä

Only support runtime changes through the debugfs.

i915.verbose_state_checks remains an exception, and is not exposed via
debugfs.

This depends on IGT having been updated to use the debugfs for modifying
the parameters.

Cc: Juha-Pekka Heikkilä <juha-pekka.heikkila@intel.com>
Cc: Venkata Sandeep Dhanalakota <venkata.s.dhanalakota@intel.com>
Reviewed-by: Juha-Pekka Heikkila <juhapekka.heikkila@gmail.com>
Signed-off-by: Jani Nikula <jani.nikula@intel.com>
---
 drivers/gpu/drm/i915/i915_params.c | 38 +++++++++++++++++++-----------
 1 file changed, 24 insertions(+), 14 deletions(-)

diff --git a/drivers/gpu/drm/i915/i915_params.c b/drivers/gpu/drm/i915/i915_params.c
index a3dde770226d..ace44ad7e6df 100644
--- a/drivers/gpu/drm/i915/i915_params.c
+++ b/drivers/gpu/drm/i915/i915_params.c
@@ -40,6 +40,15 @@ struct i915_params i915_modparams __read_mostly = {
 #undef MEMBER
 };
 
+/*
+ * Note: As a rule, keep module parameter sysfs permissions read-only
+ * 0400. Runtime changes are only supported through i915 debugfs.
+ *
+ * For any exceptions requiring write access and runtime changes through module
+ * parameter sysfs, prevent debugfs file creation by setting the parameter's
+ * debugfs mode to 0.
+ */
+
 i915_param_named(modeset, int, 0400,
 	"Use kernel modesetting [KMS] (0=disable, "
 	"1=on, -1=force vga console preference [default])");
@@ -49,7 +58,7 @@ i915_param_named_unsafe(enable_dc, int, 0400,
 	"(-1=auto [default]; 0=disable; 1=up to DC5; 2=up to DC6; "
 	"3=up to DC5 with DC3CO; 4=up to DC6 with DC3CO)");
 
-i915_param_named_unsafe(enable_fbc, int, 0600,
+i915_param_named_unsafe(enable_fbc, int, 0400,
 	"Enable frame buffer compression for power savings "
 	"(default: -1 (use per-chip default))");
 
@@ -57,7 +66,7 @@ i915_param_named_unsafe(lvds_channel_mode, int, 0400,
 	 "Specify LVDS channel mode "
 	 "(0=probe BIOS [default], 1=single-channel, 2=dual-channel)");
 
-i915_param_named_unsafe(panel_use_ssc, int, 0600,
+i915_param_named_unsafe(panel_use_ssc, int, 0400,
 	"Use Spread Spectrum Clock with panels [LVDS/eDP] "
 	"(default: auto from VBT)");
 
@@ -65,25 +74,25 @@ i915_param_named_unsafe(vbt_sdvo_panel_type, int, 0400,
 	"Override/Ignore selection of SDVO panel mode in the VBT "
 	"(-2=ignore, -1=auto [default], index in VBT BIOS table)");
 
-i915_param_named_unsafe(reset, int, 0600,
+i915_param_named_unsafe(reset, int, 0400,
 	"Attempt GPU resets (0=disabled, 1=full gpu reset, 2=engine reset [default])");
 
 i915_param_named_unsafe(vbt_firmware, charp, 0400,
 	"Load VBT from specified file under /lib/firmware");
 
 #if IS_ENABLED(CONFIG_DRM_I915_CAPTURE_ERROR)
-i915_param_named(error_capture, bool, 0600,
+i915_param_named(error_capture, bool, 0400,
 	"Record the GPU state following a hang. "
 	"This information in /sys/class/drm/card<N>/error is vital for "
 	"triaging and debugging hangs.");
 #endif
 
-i915_param_named_unsafe(enable_hangcheck, bool, 0600,
+i915_param_named_unsafe(enable_hangcheck, bool, 0400,
 	"Periodically check GPU activity for detecting hangs. "
 	"WARNING: Disabling this can cause system wide hangs. "
 	"(default: true)");
 
-i915_param_named_unsafe(enable_psr, int, 0600,
+i915_param_named_unsafe(enable_psr, int, 0400,
 	"Enable PSR "
 	"(0=disabled, 1=enabled) "
 	"Default: -1 (use per-chip default)");
@@ -96,22 +105,22 @@ i915_param_named_unsafe(disable_power_well, int, 0400,
 	"Disable display power wells when possible "
 	"(-1=auto [default], 0=power wells always on, 1=power wells disabled when possible)");
 
-i915_param_named_unsafe(enable_ips, int, 0600, "Enable IPS (default: true)");
+i915_param_named_unsafe(enable_ips, int, 0400, "Enable IPS (default: true)");
 
-i915_param_named(fastboot, int, 0600,
+i915_param_named(fastboot, int, 0400,
 	"Try to skip unnecessary mode sets at boot time "
 	"(0=disabled, 1=enabled) "
 	"Default: -1 (use per-chip default)");
 
-i915_param_named_unsafe(load_detect_test, bool, 0600,
+i915_param_named_unsafe(load_detect_test, bool, 0400,
 	"Force-enable the VGA load detect code for testing (default:false). "
 	"For developers only.");
 
-i915_param_named_unsafe(force_reset_modeset_test, bool, 0600,
+i915_param_named_unsafe(force_reset_modeset_test, bool, 0400,
 	"Force a modeset during gpu reset for testing (default:false). "
 	"For developers only.");
 
-i915_param_named_unsafe(invert_brightness, int, 0600,
+i915_param_named_unsafe(invert_brightness, int, 0400,
 	"Invert backlight brightness "
 	"(-1 force normal, 0 machine defaults, 1 force inversion), please "
 	"report PCI device ID, subsystem vendor and subsystem device ID "
@@ -121,10 +130,11 @@ i915_param_named_unsafe(invert_brightness, int, 0600,
 i915_param_named(disable_display, bool, 0400,
 	"Disable display (default: false)");
 
-i915_param_named(mmio_debug, int, 0600,
+i915_param_named(mmio_debug, int, 0400,
 	"Enable the MMIO debug code for the first N failures (default: off). "
 	"This may negatively affect performance.");
 
+/* Special case writable file */
 i915_param_named(verbose_state_checks, bool, 0600,
 	"Enable verbose logs (ie. WARN_ON()) in case of unexpected hw state conditions.");
 
@@ -155,7 +165,7 @@ i915_param_named_unsafe(huc_firmware_path, charp, 0400,
 i915_param_named_unsafe(dmc_firmware_path, charp, 0400,
 	"DMC firmware path to use instead of the default one");
 
-i915_param_named_unsafe(enable_dp_mst, bool, 0600,
+i915_param_named_unsafe(enable_dp_mst, bool, 0400,
 	"Enable multi-stream transport (MST) for new DisplayPort sinks. (default: true)");
 
 #if IS_ENABLED(CONFIG_DRM_I915_DEBUG)
@@ -163,7 +173,7 @@ i915_param_named_unsafe(inject_probe_failure, uint, 0400,
 	"Force an error after a number of failure check points (0:disabled (default), N:force failure at the Nth failure check point)");
 #endif
 
-i915_param_named(enable_dpcd_backlight, int, 0600,
+i915_param_named(enable_dpcd_backlight, int, 0400,
 	"Enable support for DPCD backlight control"
 	"(-1=use per-VBT LFP backlight type setting [default], 0=disabled, 1=enabled)");
 
-- 
2.20.1

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

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

* [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for series starting with [1/3] drm/i915/params: don't expose inject_probe_failure in debugfs
  2020-05-18 16:47 [Intel-gfx] drm/i915: device params part 1 Jani Nikula
                   ` (2 preceding siblings ...)
  2020-05-18 16:47 ` [Intel-gfx] [PATCH 3/3] drm/i915/params: prevent changing module params runtime Jani Nikula
@ 2020-05-18 19:41 ` Patchwork
  2020-05-18 19:42 ` [Intel-gfx] ✗ Fi.CI.SPARSE: " Patchwork
                   ` (6 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: Patchwork @ 2020-05-18 19:41 UTC (permalink / raw)
  To: Jani Nikula; +Cc: intel-gfx

== Series Details ==

Series: series starting with [1/3] drm/i915/params: don't expose inject_probe_failure in debugfs
URL   : https://patchwork.freedesktop.org/series/77366/
State : warning

== Summary ==

$ dim checkpatch origin/drm-tip
960f6e1f205d drm/i915/params: don't expose inject_probe_failure in debugfs
b47f6ca436b3 drm/i915/params: fix i915.fake_lmem_start module param sysfs permissions
-:27: CHECK:PARENTHESIS_ALIGNMENT: Alignment should match open parenthesis
#27: FILE: drivers/gpu/drm/i915/i915_params.c:177:
+i915_param_named_unsafe(fake_lmem_start, ulong, 0400,
 	"Fake LMEM start offset (default: 0)");

total: 0 errors, 0 warnings, 1 checks, 8 lines checked
2b633b42e776 drm/i915/params: prevent changing module params runtime
-:48: CHECK:PARENTHESIS_ALIGNMENT: Alignment should match open parenthesis
#48: FILE: drivers/gpu/drm/i915/i915_params.c:62:
+i915_param_named_unsafe(enable_fbc, int, 0400,
 	"Enable frame buffer compression for power savings "

-:57: CHECK:PARENTHESIS_ALIGNMENT: Alignment should match open parenthesis
#57: FILE: drivers/gpu/drm/i915/i915_params.c:70:
+i915_param_named_unsafe(panel_use_ssc, int, 0400,
 	"Use Spread Spectrum Clock with panels [LVDS/eDP] "

-:66: CHECK:PARENTHESIS_ALIGNMENT: Alignment should match open parenthesis
#66: FILE: drivers/gpu/drm/i915/i915_params.c:78:
+i915_param_named_unsafe(reset, int, 0400,
 	"Attempt GPU resets (0=disabled, 1=full gpu reset, 2=engine reset [default])");

-:74: CHECK:PARENTHESIS_ALIGNMENT: Alignment should match open parenthesis
#74: FILE: drivers/gpu/drm/i915/i915_params.c:85:
+i915_param_named(error_capture, bool, 0400,
 	"Record the GPU state following a hang. "

-:81: CHECK:PARENTHESIS_ALIGNMENT: Alignment should match open parenthesis
#81: FILE: drivers/gpu/drm/i915/i915_params.c:91:
+i915_param_named_unsafe(enable_hangcheck, bool, 0400,
 	"Periodically check GPU activity for detecting hangs. "

-:87: CHECK:PARENTHESIS_ALIGNMENT: Alignment should match open parenthesis
#87: FILE: drivers/gpu/drm/i915/i915_params.c:96:
+i915_param_named_unsafe(enable_psr, int, 0400,
 	"Enable PSR "

-:99: CHECK:PARENTHESIS_ALIGNMENT: Alignment should match open parenthesis
#99: FILE: drivers/gpu/drm/i915/i915_params.c:111:
+i915_param_named(fastboot, int, 0400,
 	"Try to skip unnecessary mode sets at boot time "

-:105: CHECK:PARENTHESIS_ALIGNMENT: Alignment should match open parenthesis
#105: FILE: drivers/gpu/drm/i915/i915_params.c:116:
+i915_param_named_unsafe(load_detect_test, bool, 0400,
 	"Force-enable the VGA load detect code for testing (default:false). "

-:110: CHECK:PARENTHESIS_ALIGNMENT: Alignment should match open parenthesis
#110: FILE: drivers/gpu/drm/i915/i915_params.c:120:
+i915_param_named_unsafe(force_reset_modeset_test, bool, 0400,
 	"Force a modeset during gpu reset for testing (default:false). "

-:115: CHECK:PARENTHESIS_ALIGNMENT: Alignment should match open parenthesis
#115: FILE: drivers/gpu/drm/i915/i915_params.c:124:
+i915_param_named_unsafe(invert_brightness, int, 0400,
 	"Invert backlight brightness "

-:124: CHECK:PARENTHESIS_ALIGNMENT: Alignment should match open parenthesis
#124: FILE: drivers/gpu/drm/i915/i915_params.c:134:
+i915_param_named(mmio_debug, int, 0400,
 	"Enable the MMIO debug code for the first N failures (default: off). "

-:137: CHECK:PARENTHESIS_ALIGNMENT: Alignment should match open parenthesis
#137: FILE: drivers/gpu/drm/i915/i915_params.c:169:
+i915_param_named_unsafe(enable_dp_mst, bool, 0400,
 	"Enable multi-stream transport (MST) for new DisplayPort sinks. (default: true)");

-:146: CHECK:PARENTHESIS_ALIGNMENT: Alignment should match open parenthesis
#146: FILE: drivers/gpu/drm/i915/i915_params.c:177:
+i915_param_named(enable_dpcd_backlight, int, 0400,
 	"Enable support for DPCD backlight control"

total: 0 errors, 0 warnings, 13 checks, 115 lines checked

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

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

* [Intel-gfx] ✗ Fi.CI.SPARSE: warning for series starting with [1/3] drm/i915/params: don't expose inject_probe_failure in debugfs
  2020-05-18 16:47 [Intel-gfx] drm/i915: device params part 1 Jani Nikula
                   ` (3 preceding siblings ...)
  2020-05-18 19:41 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for series starting with [1/3] drm/i915/params: don't expose inject_probe_failure in debugfs Patchwork
@ 2020-05-18 19:42 ` Patchwork
  2020-05-18 20:08 ` [Intel-gfx] ✗ Fi.CI.BAT: failure " Patchwork
                   ` (5 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: Patchwork @ 2020-05-18 19:42 UTC (permalink / raw)
  To: Jani Nikula; +Cc: intel-gfx

== Series Details ==

Series: series starting with [1/3] drm/i915/params: don't expose inject_probe_failure in debugfs
URL   : https://patchwork.freedesktop.org/series/77366/
State : warning

== Summary ==

$ dim sparse --fast origin/drm-tip
Sparse version: v0.6.0
Fast mode used, each commit won't be checked separately.
-
+drivers/gpu/drm/i915/display/intel_display.c:1222:22: error: Expected constant expression in case statement
+drivers/gpu/drm/i915/display/intel_display.c:1225:22: error: Expected constant expression in case statement
+drivers/gpu/drm/i915/display/intel_display.c:1228:22: error: Expected constant expression in case statement
+drivers/gpu/drm/i915/display/intel_display.c:1231:22: error: Expected constant expression in case statement
+drivers/gpu/drm/i915/gem/i915_gem_context.c:2274:17: error: bad integer constant expression
+drivers/gpu/drm/i915/gem/i915_gem_context.c:2275:17: error: bad integer constant expression
+drivers/gpu/drm/i915/gem/i915_gem_context.c:2276:17: error: bad integer constant expression
+drivers/gpu/drm/i915/gem/i915_gem_context.c:2277:17: error: bad integer constant expression
+drivers/gpu/drm/i915/gem/i915_gem_context.c:2278:17: error: bad integer constant expression
+drivers/gpu/drm/i915/gem/i915_gem_context.c:2279:17: error: bad integer constant expression
+drivers/gpu/drm/i915/gt/intel_reset.c:1310:5: warning: context imbalance in 'intel_gt_reset_trylock' - different lock contexts for basic block
+drivers/gpu/drm/i915/gt/sysfs_engines.c:61:10: error: bad integer constant expression
+drivers/gpu/drm/i915/gt/sysfs_engines.c:62:10: error: bad integer constant expression
+drivers/gpu/drm/i915/gt/sysfs_engines.c:66:10: error: bad integer constant expression
+drivers/gpu/drm/i915/gvt/mmio.c:287:23: warning: memcpy with byte count of 279040
+drivers/gpu/drm/i915/i915_perf.c:1425:15: warning: memset with byte count of 16777216
+drivers/gpu/drm/i915/i915_perf.c:1479:15: warning: memset with byte count of 16777216
+./include/linux/compiler.h:199:9: warning: context imbalance in 'engines_sample' - different lock contexts for basic block
+./include/linux/spinlock.h:408:9: warning: context imbalance in 'fwtable_read16' - different lock contexts for basic block
+./include/linux/spinlock.h:408:9: warning: context imbalance in 'fwtable_read32' - different lock contexts for basic block
+./include/linux/spinlock.h:408:9: warning: context imbalance in 'fwtable_read64' - different lock contexts for basic block
+./include/linux/spinlock.h:408:9: warning: context imbalance in 'fwtable_read8' - different lock contexts for basic block
+./include/linux/spinlock.h:408:9: warning: context imbalance in 'fwtable_write16' - different lock contexts for basic block
+./include/linux/spinlock.h:408:9: warning: context imbalance in 'fwtable_write32' - different lock contexts for basic block
+./include/linux/spinlock.h:408:9: warning: context imbalance in 'fwtable_write8' - different lock contexts for basic block
+./include/linux/spinlock.h:408:9: warning: context imbalance in 'gen11_fwtable_read16' - different lock contexts for basic block
+./include/linux/spinlock.h:408:9: warning: context imbalance in 'gen11_fwtable_read32' - different lock contexts for basic block
+./include/linux/spinlock.h:408:9: warning: context imbalance in 'gen11_fwtable_read64' - different lock contexts for basic block
+./include/linux/spinlock.h:408:9: warning: context imbalance in 'gen11_fwtable_read8' - different lock contexts for basic block
+./include/linux/spinlock.h:408:9: warning: context imbalance in 'gen11_fwtable_write16' - different lock contexts for basic block
+./include/linux/spinlock.h:408:9: warning: context imbalance in 'gen11_fwtable_write32' - different lock contexts for basic block
+./include/linux/spinlock.h:408:9: warning: context imbalance in 'gen11_fwtable_write8' - different lock contexts for basic block
+./include/linux/spinlock.h:408:9: warning: context imbalance in 'gen12_fwtable_read16' - different lock contexts for basic block
+./include/linux/spinlock.h:408:9: warning: context imbalance in 'gen12_fwtable_read32' - different lock contexts for basic block
+./include/linux/spinlock.h:408:9: warning: context imbalance in 'gen12_fwtable_read64' - different lock contexts for basic block
+./include/linux/spinlock.h:408:9: warning: context imbalance in 'gen12_fwtable_read8' - different lock contexts for basic block
+./include/linux/spinlock.h:408:9: warning: context imbalance in 'gen12_fwtable_write16' - different lock contexts for basic block
+./include/linux/spinlock.h:408:9: warning: context imbalance in 'gen12_fwtable_write32' - different lock contexts for basic block
+./include/linux/spinlock.h:408:9: warning: context imbalance in 'gen12_fwtable_write8' - different lock contexts for basic block
+./include/linux/spinlock.h:408:9: warning: context imbalance in 'gen6_read16' - different lock contexts for basic block
+./include/linux/spinlock.h:408:9: warning: context imbalance in 'gen6_read32' - different lock contexts for basic block
+./include/linux/spinlock.h:408:9: warning: context imbalance in 'gen6_read64' - different lock contexts for basic block
+./include/linux/spinlock.h:408:9: warning: context imbalance in 'gen6_read8' - different lock contexts for basic block
+./include/linux/spinlock.h:408:9: warning: context imbalance in 'gen6_write16' - different lock contexts for basic block
+./include/linux/spinlock.h:408:9: warning: context imbalance in 'gen6_write32' - different lock contexts for basic block
+./include/linux/spinlock.h:408:9: warning: context imbalance in 'gen6_write8' - different lock contexts for basic block
+./include/linux/spinlock.h:408:9: warning: context imbalance in 'gen8_write16' - different lock contexts for basic block
+./include/linux/spinlock.h:408:9: warning: context imbalance in 'gen8_write32' - different lock contexts for basic block
+./include/linux/spinlock.h:408:9: warning: context imbalance in 'gen8_write8' - different lock contexts for basic block

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

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

* [Intel-gfx] ✗ Fi.CI.BAT: failure for series starting with [1/3] drm/i915/params: don't expose inject_probe_failure in debugfs
  2020-05-18 16:47 [Intel-gfx] drm/i915: device params part 1 Jani Nikula
                   ` (4 preceding siblings ...)
  2020-05-18 19:42 ` [Intel-gfx] ✗ Fi.CI.SPARSE: " Patchwork
@ 2020-05-18 20:08 ` Patchwork
  2020-05-19  6:34 ` [Intel-gfx] drm/i915: device params part 1 Chris Wilson
                   ` (4 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: Patchwork @ 2020-05-18 20:08 UTC (permalink / raw)
  To: Jani Nikula; +Cc: intel-gfx

== Series Details ==

Series: series starting with [1/3] drm/i915/params: don't expose inject_probe_failure in debugfs
URL   : https://patchwork.freedesktop.org/series/77366/
State : failure

== Summary ==

CI Bug Log - changes from CI_DRM_8497 -> Patchwork_17697
====================================================

Summary
-------

  **FAILURE**

  Serious unknown changes coming with Patchwork_17697 absolutely need to be
  verified manually.
  
  If you think the reported changes have nothing to do with the changes
  introduced in Patchwork_17697, please notify your bug team to allow them
  to document this new failure mode, which will reduce false positives in CI.

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

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

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

### IGT changes ###

#### Possible regressions ####

  * igt@gem_close_race@basic-process:
    - fi-ivb-3770:        [PASS][1] -> [FAIL][2] +11 similar issues
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8497/fi-ivb-3770/igt@gem_close_race@basic-process.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17697/fi-ivb-3770/igt@gem_close_race@basic-process.html

  * igt@gem_close_race@basic-threads:
    - fi-skl-6600u:       [PASS][3] -> [FAIL][4] +10 similar issues
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8497/fi-skl-6600u/igt@gem_close_race@basic-threads.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17697/fi-skl-6600u/igt@gem_close_race@basic-threads.html
    - fi-skl-guc:         [PASS][5] -> [FAIL][6] +10 similar issues
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8497/fi-skl-guc/igt@gem_close_race@basic-threads.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17697/fi-skl-guc/igt@gem_close_race@basic-threads.html
    - fi-bwr-2160:        [PASS][7] -> [FAIL][8] +8 similar issues
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8497/fi-bwr-2160/igt@gem_close_race@basic-threads.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17697/fi-bwr-2160/igt@gem_close_race@basic-threads.html
    - fi-icl-y:           [PASS][9] -> [FAIL][10] +10 similar issues
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8497/fi-icl-y/igt@gem_close_race@basic-threads.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17697/fi-icl-y/igt@gem_close_race@basic-threads.html

  * igt@gem_ctx_create@basic:
    - fi-cml-s:           [PASS][11] -> [FAIL][12] +10 similar issues
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8497/fi-cml-s/igt@gem_ctx_create@basic.html
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17697/fi-cml-s/igt@gem_ctx_create@basic.html
    - fi-elk-e7500:       [PASS][13] -> [FAIL][14] +11 similar issues
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8497/fi-elk-e7500/igt@gem_ctx_create@basic.html
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17697/fi-elk-e7500/igt@gem_ctx_create@basic.html
    - fi-skl-6700k2:      [PASS][15] -> [FAIL][16] +10 similar issues
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8497/fi-skl-6700k2/igt@gem_ctx_create@basic.html
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17697/fi-skl-6700k2/igt@gem_ctx_create@basic.html
    - fi-cfl-guc:         [PASS][17] -> [FAIL][18] +10 similar issues
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8497/fi-cfl-guc/igt@gem_ctx_create@basic.html
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17697/fi-cfl-guc/igt@gem_ctx_create@basic.html
    - fi-bsw-n3050:       [PASS][19] -> [FAIL][20] +9 similar issues
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8497/fi-bsw-n3050/igt@gem_ctx_create@basic.html
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17697/fi-bsw-n3050/igt@gem_ctx_create@basic.html

  * igt@gem_exec_basic@basic:
    - fi-kbl-x1275:       NOTRUN -> [FAIL][21] +4 similar issues
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17697/fi-kbl-x1275/igt@gem_exec_basic@basic.html
    - fi-snb-2520m:       NOTRUN -> [FAIL][22]
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17697/fi-snb-2520m/igt@gem_exec_basic@basic.html
    - fi-pnv-d510:        NOTRUN -> [FAIL][23] +4 similar issues
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17697/fi-pnv-d510/igt@gem_exec_basic@basic.html
    - fi-apl-guc:         NOTRUN -> [FAIL][24] +4 similar issues
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17697/fi-apl-guc/igt@gem_exec_basic@basic.html
    - fi-cfl-8700k:       NOTRUN -> [FAIL][25] +4 similar issues
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17697/fi-cfl-8700k/igt@gem_exec_basic@basic.html
    - fi-tgl-y:           NOTRUN -> [FAIL][26] +4 similar issues
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17697/fi-tgl-y/igt@gem_exec_basic@basic.html
    - fi-skl-6600u:       NOTRUN -> [FAIL][27] +4 similar issues
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17697/fi-skl-6600u/igt@gem_exec_basic@basic.html
    - fi-icl-u2:          NOTRUN -> [FAIL][28] +4 similar issues
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17697/fi-icl-u2/igt@gem_exec_basic@basic.html
    - fi-snb-2600:        NOTRUN -> [FAIL][29]
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17697/fi-snb-2600/igt@gem_exec_basic@basic.html
    - fi-bwr-2160:        NOTRUN -> [FAIL][30]
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17697/fi-bwr-2160/igt@gem_exec_basic@basic.html
    - fi-gdg-551:         NOTRUN -> [FAIL][31]
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17697/fi-gdg-551/igt@gem_exec_basic@basic.html

  * igt@gem_exec_create@basic:
    - fi-bsw-kefka:       [PASS][32] -> [FAIL][33] +9 similar issues
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8497/fi-bsw-kefka/igt@gem_exec_create@basic.html
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17697/fi-bsw-kefka/igt@gem_exec_create@basic.html
    - fi-gdg-551:         [PASS][34] -> [FAIL][35] +6 similar issues
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8497/fi-gdg-551/igt@gem_exec_create@basic.html
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17697/fi-gdg-551/igt@gem_exec_create@basic.html
    - fi-glk-dsi:         [PASS][36] -> [FAIL][37] +9 similar issues
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8497/fi-glk-dsi/igt@gem_exec_create@basic.html
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17697/fi-glk-dsi/igt@gem_exec_create@basic.html

  * igt@gem_exec_fence@basic-await:
    - fi-bsw-nick:        NOTRUN -> [FAIL][38] +4 similar issues
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17697/fi-bsw-nick/igt@gem_exec_fence@basic-await.html
    - fi-skl-lmem:        NOTRUN -> [FAIL][39] +4 similar issues
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17697/fi-skl-lmem/igt@gem_exec_fence@basic-await.html
    - fi-whl-u:           NOTRUN -> [FAIL][40] +4 similar issues
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17697/fi-whl-u/igt@gem_exec_fence@basic-await.html
    - fi-byt-j1900:       NOTRUN -> [FAIL][41] +4 similar issues
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17697/fi-byt-j1900/igt@gem_exec_fence@basic-await.html
    - fi-cml-u2:          NOTRUN -> [FAIL][42] +4 similar issues
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17697/fi-cml-u2/igt@gem_exec_fence@basic-await.html
    - fi-elk-e7500:       NOTRUN -> [FAIL][43] +4 similar issues
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17697/fi-elk-e7500/igt@gem_exec_fence@basic-await.html
    - fi-skl-6700k2:      NOTRUN -> [FAIL][44] +4 similar issues
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17697/fi-skl-6700k2/igt@gem_exec_fence@basic-await.html
    - fi-blb-e6850:       NOTRUN -> [FAIL][45] +4 similar issues
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17697/fi-blb-e6850/igt@gem_exec_fence@basic-await.html

  * igt@gem_exec_fence@basic-busy:
    - fi-glk-dsi:         NOTRUN -> [FAIL][46] +4 similar issues
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17697/fi-glk-dsi/igt@gem_exec_fence@basic-busy.html
    - fi-bsw-kefka:       NOTRUN -> [FAIL][47] +4 similar issues
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17697/fi-bsw-kefka/igt@gem_exec_fence@basic-busy.html
    - fi-bdw-5557u:       NOTRUN -> [FAIL][48] +4 similar issues
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17697/fi-bdw-5557u/igt@gem_exec_fence@basic-busy.html
    - fi-kbl-soraka:      NOTRUN -> [FAIL][49] +4 similar issues
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17697/fi-kbl-soraka/igt@gem_exec_fence@basic-busy.html

  * igt@gem_exec_fence@basic-wait:
    - fi-icl-y:           NOTRUN -> [FAIL][50] +4 similar issues
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17697/fi-icl-y/igt@gem_exec_fence@basic-wait.html
    - fi-ivb-3770:        NOTRUN -> [FAIL][51] +4 similar issues
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17697/fi-ivb-3770/igt@gem_exec_fence@basic-wait.html
    - fi-ilk-650:         NOTRUN -> [FAIL][52] +4 similar issues
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17697/fi-ilk-650/igt@gem_exec_fence@basic-wait.html
    - fi-skl-guc:         NOTRUN -> [FAIL][53] +4 similar issues
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17697/fi-skl-guc/igt@gem_exec_fence@basic-wait.html
    - fi-bsw-n3050:       NOTRUN -> [FAIL][54] +4 similar issues
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17697/fi-bsw-n3050/igt@gem_exec_fence@basic-wait.html
    - fi-cfl-guc:         NOTRUN -> [FAIL][55] +4 similar issues
   [55]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17697/fi-cfl-guc/igt@gem_exec_fence@basic-wait.html
    - fi-cml-s:           NOTRUN -> [FAIL][56] +4 similar issues
   [56]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17697/fi-cml-s/igt@gem_exec_fence@basic-wait.html
    - fi-bxt-dsi:         NOTRUN -> [FAIL][57] +4 similar issues
   [57]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17697/fi-bxt-dsi/igt@gem_exec_fence@basic-wait.html

  * igt@gem_exec_fence@nb-await:
    - fi-cfl-8109u:       NOTRUN -> [FAIL][58] +4 similar issues
   [58]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17697/fi-cfl-8109u/igt@gem_exec_fence@nb-await.html
    - fi-kbl-7500u:       NOTRUN -> [FAIL][59] +4 similar issues
   [59]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17697/fi-kbl-7500u/igt@gem_exec_fence@nb-await.html
    - fi-kbl-guc:         NOTRUN -> [FAIL][60] +4 similar issues
   [60]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17697/fi-kbl-guc/igt@gem_exec_fence@nb-await.html
    - fi-kbl-8809g:       NOTRUN -> [FAIL][61] +4 similar issues
   [61]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17697/fi-kbl-8809g/igt@gem_exec_fence@nb-await.html
    - fi-byt-n2820:       NOTRUN -> [FAIL][62] +4 similar issues
   [62]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17697/fi-byt-n2820/igt@gem_exec_fence@nb-await.html
    - fi-icl-guc:         NOTRUN -> [FAIL][63] +4 similar issues
   [63]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17697/fi-icl-guc/igt@gem_exec_fence@nb-await.html
    - fi-kbl-r:           NOTRUN -> [FAIL][64] +4 similar issues
   [64]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17697/fi-kbl-r/igt@gem_exec_fence@nb-await.html

  * igt@gem_exec_gttfill@basic:
    - fi-kbl-x1275:       [PASS][65] -> [FAIL][66] +9 similar issues
   [65]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8497/fi-kbl-x1275/igt@gem_exec_gttfill@basic.html
   [66]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17697/fi-kbl-x1275/igt@gem_exec_gttfill@basic.html
    - fi-snb-2600:        [PASS][67] -> [FAIL][68] +11 similar issues
   [67]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8497/fi-snb-2600/igt@gem_exec_gttfill@basic.html
   [68]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17697/fi-snb-2600/igt@gem_exec_gttfill@basic.html
    - fi-tgl-y:           [PASS][69] -> [FAIL][70] +9 similar issues
   [69]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8497/fi-tgl-y/igt@gem_exec_gttfill@basic.html
   [70]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17697/fi-tgl-y/igt@gem_exec_gttfill@basic.html
    - fi-cfl-8109u:       [PASS][71] -> [FAIL][72] +10 similar issues
   [71]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8497/fi-cfl-8109u/igt@gem_exec_gttfill@basic.html
   [72]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17697/fi-cfl-8109u/igt@gem_exec_gttfill@basic.html

  * igt@gem_exec_suspend@basic-s0:
    - fi-kbl-r:           [PASS][73] -> [FAIL][74] +10 similar issues
   [73]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8497/fi-kbl-r/igt@gem_exec_suspend@basic-s0.html
   [74]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17697/fi-kbl-r/igt@gem_exec_suspend@basic-s0.html
    - fi-skl-lmem:        [PASS][75] -> [FAIL][76] +10 similar issues
   [75]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8497/fi-skl-lmem/igt@gem_exec_suspend@basic-s0.html
   [76]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17697/fi-skl-lmem/igt@gem_exec_suspend@basic-s0.html
    - fi-bsw-nick:        [PASS][77] -> [FAIL][78] +9 similar issues
   [77]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8497/fi-bsw-nick/igt@gem_exec_suspend@basic-s0.html
   [78]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17697/fi-bsw-nick/igt@gem_exec_suspend@basic-s0.html

  * igt@gem_exec_suspend@basic-s3:
    - fi-kbl-guc:         [PASS][79] -> [FAIL][80] +10 similar issues
   [79]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8497/fi-kbl-guc/igt@gem_exec_suspend@basic-s3.html
   [80]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17697/fi-kbl-guc/igt@gem_exec_suspend@basic-s3.html
    - fi-kbl-8809g:       [PASS][81] -> [FAIL][82] +10 similar issues
   [81]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8497/fi-kbl-8809g/igt@gem_exec_suspend@basic-s3.html
   [82]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17697/fi-kbl-8809g/igt@gem_exec_suspend@basic-s3.html
    - fi-bdw-5557u:       [PASS][83] -> [FAIL][84] +10 similar issues
   [83]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8497/fi-bdw-5557u/igt@gem_exec_suspend@basic-s3.html
   [84]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17697/fi-bdw-5557u/igt@gem_exec_suspend@basic-s3.html
    - fi-kbl-soraka:      [PASS][85] -> [FAIL][86] +9 similar issues
   [85]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8497/fi-kbl-soraka/igt@gem_exec_suspend@basic-s3.html
   [86]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17697/fi-kbl-soraka/igt@gem_exec_suspend@basic-s3.html
    - fi-bxt-dsi:         [PASS][87] -> [FAIL][88] +9 similar issues
   [87]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8497/fi-bxt-dsi/igt@gem_exec_suspend@basic-s3.html
   [88]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17697/fi-bxt-dsi/igt@gem_exec_suspend@basic-s3.html

  * igt@gem_sync@basic-all:
    - fi-icl-guc:         [PASS][89] -> [FAIL][90] +10 similar issues
   [89]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8497/fi-icl-guc/igt@gem_sync@basic-all.html
   [90]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17697/fi-icl-guc/igt@gem_sync@basic-all.html
    - fi-byt-n2820:       [PASS][91] -> [FAIL][92] +10 similar issues
   [91]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8497/fi-byt-n2820/igt@gem_sync@basic-all.html
   [92]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17697/fi-byt-n2820/igt@gem_sync@basic-all.html
    - fi-ilk-650:         [PASS][93] -> [FAIL][94] +11 similar issues
   [93]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8497/fi-ilk-650/igt@gem_sync@basic-all.html
   [94]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17697/fi-ilk-650/igt@gem_sync@basic-all.html

  * igt@gem_sync@basic-each:
    - fi-cml-u2:          [PASS][95] -> [FAIL][96] +10 similar issues
   [95]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8497/fi-cml-u2/igt@gem_sync@basic-each.html
   [96]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17697/fi-cml-u2/igt@gem_sync@basic-each.html
    - fi-whl-u:           [PASS][97] -> [FAIL][98] +10 similar issues
   [97]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8497/fi-whl-u/igt@gem_sync@basic-each.html
   [98]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17697/fi-whl-u/igt@gem_sync@basic-each.html
    - fi-cfl-8700k:       [PASS][99] -> [FAIL][100] +10 similar issues
   [99]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8497/fi-cfl-8700k/igt@gem_sync@basic-each.html
   [100]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17697/fi-cfl-8700k/igt@gem_sync@basic-each.html
    - fi-pnv-d510:        [PASS][101] -> [FAIL][102] +9 similar issues
   [101]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8497/fi-pnv-d510/igt@gem_sync@basic-each.html
   [102]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17697/fi-pnv-d510/igt@gem_sync@basic-each.html
    - fi-kbl-7500u:       [PASS][103] -> [FAIL][104] +10 similar issues
   [103]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8497/fi-kbl-7500u/igt@gem_sync@basic-each.html
   [104]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17697/fi-kbl-7500u/igt@gem_sync@basic-each.html

  * igt@i915_hangman@error-state-basic:
    - fi-icl-guc:         [PASS][105] -> [SKIP][106] +1 similar issue
   [105]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8497/fi-icl-guc/igt@i915_hangman@error-state-basic.html
   [106]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17697/fi-icl-guc/igt@i915_hangman@error-state-basic.html
    - fi-tgl-y:           [PASS][107] -> [SKIP][108] +1 similar issue
   [107]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8497/fi-tgl-y/igt@i915_hangman@error-state-basic.html
   [108]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17697/fi-tgl-y/igt@i915_hangman@error-state-basic.html
    - fi-cml-s:           [PASS][109] -> [SKIP][110] +1 similar issue
   [109]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8497/fi-cml-s/igt@i915_hangman@error-state-basic.html
   [110]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17697/fi-cml-s/igt@i915_hangman@error-state-basic.html

  * igt@i915_module_load@reload:
    - fi-icl-u2:          [PASS][111] -> [FAIL][112] +10 similar issues
   [111]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8497/fi-icl-u2/igt@i915_module_load@reload.html
   [112]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17697/fi-icl-u2/igt@i915_module_load@reload.html
    - fi-blb-e6850:       [PASS][113] -> [FAIL][114] +9 similar issues
   [113]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8497/fi-blb-e6850/igt@i915_module_load@reload.html
   [114]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17697/fi-blb-e6850/igt@i915_module_load@reload.html
    - fi-byt-j1900:       [PASS][115] -> [FAIL][116] +11 similar issues
   [115]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8497/fi-byt-j1900/igt@i915_module_load@reload.html
   [116]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17697/fi-byt-j1900/igt@i915_module_load@reload.html
    - fi-apl-guc:         [PASS][117] -> [FAIL][118] +10 similar issues
   [117]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8497/fi-apl-guc/igt@i915_module_load@reload.html
   [118]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17697/fi-apl-guc/igt@i915_module_load@reload.html
    - fi-snb-2520m:       [PASS][119] -> [FAIL][120] +11 similar issues
   [119]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8497/fi-snb-2520m/igt@i915_module_load@reload.html
   [120]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17697/fi-snb-2520m/igt@i915_module_load@reload.html

  * igt@kms_pipe_crc_basic@hang-read-crc-pipe-a:
    - fi-cml-u2:          [PASS][121] -> [SKIP][122] +1 similar issue
   [121]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8497/fi-cml-u2/igt@kms_pipe_crc_basic@hang-read-crc-pipe-a.html
   [122]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17697/fi-cml-u2/igt@kms_pipe_crc_basic@hang-read-crc-pipe-a.html
    - fi-icl-u2:          [PASS][123] -> [SKIP][124] +1 similar issue
   [123]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8497/fi-icl-u2/igt@kms_pipe_crc_basic@hang-read-crc-pipe-a.html
   [124]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17697/fi-icl-u2/igt@kms_pipe_crc_basic@hang-read-crc-pipe-a.html
    - fi-icl-y:           [PASS][125] -> [SKIP][126] +1 similar issue
   [125]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8497/fi-icl-y/igt@kms_pipe_crc_basic@hang-read-crc-pipe-a.html
   [126]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17697/fi-icl-y/igt@kms_pipe_crc_basic@hang-read-crc-pipe-a.html

  
#### Warnings ####

  * igt@gem_exec_gttfill@basic:
    - fi-bsw-kefka:       [SKIP][127] ([fdo#109271]) -> [FAIL][128]
   [127]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8497/fi-bsw-kefka/igt@gem_exec_gttfill@basic.html
   [128]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17697/fi-bsw-kefka/igt@gem_exec_gttfill@basic.html
    - fi-gdg-551:         [SKIP][129] ([fdo#109271]) -> [FAIL][130]
   [129]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8497/fi-gdg-551/igt@gem_exec_gttfill@basic.html
   [130]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17697/fi-gdg-551/igt@gem_exec_gttfill@basic.html
    - fi-glk-dsi:         [SKIP][131] ([fdo#109271]) -> [FAIL][132]
   [131]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8497/fi-glk-dsi/igt@gem_exec_gttfill@basic.html
   [132]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17697/fi-glk-dsi/igt@gem_exec_gttfill@basic.html
    - fi-bsw-nick:        [SKIP][133] ([fdo#109271]) -> [FAIL][134]
   [133]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8497/fi-bsw-nick/igt@gem_exec_gttfill@basic.html
   [134]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17697/fi-bsw-nick/igt@gem_exec_gttfill@basic.html
    - fi-bwr-2160:        [SKIP][135] ([fdo#109271]) -> [FAIL][136]
   [135]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8497/fi-bwr-2160/igt@gem_exec_gttfill@basic.html
   [136]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17697/fi-bwr-2160/igt@gem_exec_gttfill@basic.html
    - fi-bxt-dsi:         [SKIP][137] ([fdo#109271]) -> [FAIL][138]
   [137]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8497/fi-bxt-dsi/igt@gem_exec_gttfill@basic.html
   [138]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17697/fi-bxt-dsi/igt@gem_exec_gttfill@basic.html
    - fi-kbl-soraka:      [SKIP][139] ([fdo#109271]) -> [FAIL][140]
   [139]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8497/fi-kbl-soraka/igt@gem_exec_gttfill@basic.html
   [140]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17697/fi-kbl-soraka/igt@gem_exec_gttfill@basic.html
    - fi-bsw-n3050:       [SKIP][141] ([fdo#109271]) -> [FAIL][142]
   [141]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8497/fi-bsw-n3050/igt@gem_exec_gttfill@basic.html
   [142]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17697/fi-bsw-n3050/igt@gem_exec_gttfill@basic.html

  * igt@gem_exec_suspend@basic-s3:
    - fi-tgl-y:           [FAIL][143] ([fdo#103375] / [i915#1592]) -> [FAIL][144]
   [143]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8497/fi-tgl-y/igt@gem_exec_suspend@basic-s3.html
   [144]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17697/fi-tgl-y/igt@gem_exec_suspend@basic-s3.html

  
#### Suppressed ####

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

  * {igt@gem_busy@busy}:
    - fi-cfl-8700k:       NOTRUN -> [FAIL][145] +3 similar issues
   [145]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17697/fi-cfl-8700k/igt@gem_busy@busy.html
    - fi-snb-2520m:       NOTRUN -> [FAIL][146] +3 similar issues
   [146]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17697/fi-snb-2520m/igt@gem_busy@busy.html
    - fi-apl-guc:         NOTRUN -> [FAIL][147] +3 similar issues
   [147]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17697/fi-apl-guc/igt@gem_busy@busy.html
    - fi-bdw-5557u:       NOTRUN -> [FAIL][148] +3 similar issues
   [148]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17697/fi-bdw-5557u/igt@gem_busy@busy.html
    - fi-glk-dsi:         NOTRUN -> [FAIL][149] +3 similar issues
   [149]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17697/fi-glk-dsi/igt@gem_busy@busy.html
    - fi-pnv-d510:        NOTRUN -> [FAIL][150] +3 similar issues
   [150]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17697/fi-pnv-d510/igt@gem_busy@busy.html
    - fi-kbl-soraka:      NOTRUN -> [FAIL][151] +3 similar issues
   [151]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17697/fi-kbl-soraka/igt@gem_busy@busy.html
    - fi-kbl-x1275:       NOTRUN -> [FAIL][152] +3 similar issues
   [152]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17697/fi-kbl-x1275/igt@gem_busy@busy.html
    - fi-kbl-guc:         NOTRUN -> [FAIL][153] +3 similar issues
   [153]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17697/fi-kbl-guc/igt@gem_busy@busy.html
    - fi-cml-u2:          NOTRUN -> [FAIL][154] +3 similar issues
   [154]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17697/fi-cml-u2/igt@gem_busy@busy.html

  * igt@gem_exec_basic@basic:
    - {fi-tgl-dsi}:       NOTRUN -> [FAIL][155] +8 similar issues
   [155]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17697/fi-tgl-dsi/igt@gem_exec_basic@basic.html

  * igt@gem_exec_create@basic:
    - {fi-ehl-1}:         [PASS][156] -> [FAIL][157] +11 similar issues
   [156]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8497/fi-ehl-1/igt@gem_exec_create@basic.html
   [157]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17697/fi-ehl-1/igt@gem_exec_create@basic.html

  * igt@gem_exec_fence@basic-wait:
    - {fi-tgl-u}:         NOTRUN -> [FAIL][158] +8 similar issues
   [158]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17697/fi-tgl-u/igt@gem_exec_fence@basic-wait.html

  * igt@gem_exec_fence@nb-await:
    - {fi-ehl-1}:         NOTRUN -> [FAIL][159] +8 similar issues
   [159]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17697/fi-ehl-1/igt@gem_exec_fence@nb-await.html

  * {igt@gem_exec_parallel@engines}:
    - fi-bsw-kefka:       NOTRUN -> [FAIL][160] +3 similar issues
   [160]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17697/fi-bsw-kefka/igt@gem_exec_parallel@engines.html
    - fi-ilk-650:         NOTRUN -> [FAIL][161] +3 similar issues
   [161]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17697/fi-ilk-650/igt@gem_exec_parallel@engines.html
    - fi-bsw-n3050:       NOTRUN -> [FAIL][162] +3 similar issues
   [162]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17697/fi-bsw-n3050/igt@gem_exec_parallel@engines.html
    - fi-byt-n2820:       NOTRUN -> [FAIL][163] +3 similar issues
   [163]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17697/fi-byt-n2820/igt@gem_exec_parallel@engines.html
    - fi-icl-guc:         NOTRUN -> [FAIL][164] +3 similar issues
   [164]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17697/fi-icl-guc/igt@gem_exec_parallel@engines.html
    - fi-skl-6700k2:      NOTRUN -> [FAIL][165] +3 similar issues
   [165]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17697/fi-skl-6700k2/igt@gem_exec_parallel@engines.html
    - fi-elk-e7500:       NOTRUN -> [FAIL][166] +3 similar issues
   [166]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17697/fi-elk-e7500/igt@gem_exec_parallel@engines.html
    - fi-cml-s:           NOTRUN -> [FAIL][167] +3 similar issues
   [167]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17697/fi-cml-s/igt@gem_exec_parallel@engines.html
    - fi-skl-lmem:        NOTRUN -> [FAIL][168] +3 similar issues
   [168]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17697/fi-skl-lmem/igt@gem_exec_parallel@engines.html
    - fi-bxt-dsi:         NOTRUN -> [FAIL][169] +3 similar issues
   [169]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17697/fi-bxt-dsi/igt@gem_exec_parallel@engines.html
    - fi-ivb-3770:        NOTRUN -> [FAIL][170] +3 similar issues
   [170]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17697/fi-ivb-3770/igt@gem_exec_parallel@engines.html
    - fi-byt-j1900:       NOTRUN -> [FAIL][171] +3 similar issues
   [171]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17697/fi-byt-j1900/igt@gem_exec_parallel@engines.html
    - fi-whl-u:           NOTRUN -> [FAIL][172] +3 similar issues
   [172]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17697/fi-whl-u/igt@gem_exec_parallel@engines.html

  * {igt@gem_exec_store@basic}:
    - fi-kbl-x1275:       [PASS][173] -> [FAIL][174]
   [173]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8497/fi-kbl-x1275/igt@gem_exec_store@basic.html
   [174]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17697/fi-kbl-x1275/igt@gem_exec_store@basic.html
    - fi-tgl-y:           [PASS][175] -> [FAIL][176]
   [175]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8497/fi-tgl-y/igt@gem_exec_store@basic.html
   [176]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17697/fi-tgl-y/igt@gem_exec_store@basic.html
    - fi-snb-2600:        [PASS][177] -> [FAIL][178]
   [177]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8497/fi-snb-2600/igt@gem_exec_store@basic.html
   [178]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17697/fi-snb-2600/igt@gem_exec_store@basic.html
    - fi-bsw-kefka:       [PASS][179] -> [FAIL][180]
   [179]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8497/fi-bsw-kefka/igt@gem_exec_store@basic.html
   [180]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17697/fi-bsw-kefka/igt@gem_exec_store@basic.html
    - fi-bsw-n3050:       [PASS][181] -> [FAIL][182]
   [181]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8497/fi-bsw-n3050/igt@gem_exec_store@basic.html
   [182]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17697/fi-bsw-n3050/igt@gem_exec_store@basic.html
    - fi-ilk-650:         [PASS][183] -> [FAIL][184]
   [183]: https://intel-gfx-ci.01.org/tree

== Logs ==

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

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

* Re: [Intel-gfx] drm/i915: device params part 1
  2020-05-18 16:47 [Intel-gfx] drm/i915: device params part 1 Jani Nikula
                   ` (5 preceding siblings ...)
  2020-05-18 20:08 ` [Intel-gfx] ✗ Fi.CI.BAT: failure " Patchwork
@ 2020-05-19  6:34 ` Chris Wilson
  2020-05-20 12:44 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for series starting with [1/3] drm/i915/params: don't expose inject_probe_failure in debugfs (rev2) Patchwork
                   ` (3 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: Chris Wilson @ 2020-05-19  6:34 UTC (permalink / raw)
  To: Jani Nikula, intel-gfx

Quoting Jani Nikula (2020-05-18 17:47:47)
> This is the first 3 patches of [1], because apparently patch 4 breaks
> the world. I've yet to pinpoint the issue, but these could move forward
> in the meanwhile.

It's not you, it's igt_params.c
-Chris
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

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

* [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for series starting with [1/3] drm/i915/params: don't expose inject_probe_failure in debugfs (rev2)
  2020-05-18 16:47 [Intel-gfx] drm/i915: device params part 1 Jani Nikula
                   ` (6 preceding siblings ...)
  2020-05-19  6:34 ` [Intel-gfx] drm/i915: device params part 1 Chris Wilson
@ 2020-05-20 12:44 ` Patchwork
  2020-05-20 12:45 ` [Intel-gfx] ✗ Fi.CI.SPARSE: " Patchwork
                   ` (2 subsequent siblings)
  10 siblings, 0 replies; 12+ messages in thread
From: Patchwork @ 2020-05-20 12:44 UTC (permalink / raw)
  To: Jani Nikula; +Cc: intel-gfx

== Series Details ==

Series: series starting with [1/3] drm/i915/params: don't expose inject_probe_failure in debugfs (rev2)
URL   : https://patchwork.freedesktop.org/series/77366/
State : warning

== Summary ==

$ dim checkpatch origin/drm-tip
6190d8ce3829 drm/i915/params: don't expose inject_probe_failure in debugfs
a76531f51fca drm/i915/params: fix i915.fake_lmem_start module param sysfs permissions
-:27: CHECK:PARENTHESIS_ALIGNMENT: Alignment should match open parenthesis
#27: FILE: drivers/gpu/drm/i915/i915_params.c:177:
+i915_param_named_unsafe(fake_lmem_start, ulong, 0400,
 	"Fake LMEM start offset (default: 0)");

total: 0 errors, 0 warnings, 1 checks, 8 lines checked
acab80457ffc drm/i915/params: prevent changing module params runtime
-:48: CHECK:PARENTHESIS_ALIGNMENT: Alignment should match open parenthesis
#48: FILE: drivers/gpu/drm/i915/i915_params.c:62:
+i915_param_named_unsafe(enable_fbc, int, 0400,
 	"Enable frame buffer compression for power savings "

-:57: CHECK:PARENTHESIS_ALIGNMENT: Alignment should match open parenthesis
#57: FILE: drivers/gpu/drm/i915/i915_params.c:70:
+i915_param_named_unsafe(panel_use_ssc, int, 0400,
 	"Use Spread Spectrum Clock with panels [LVDS/eDP] "

-:66: CHECK:PARENTHESIS_ALIGNMENT: Alignment should match open parenthesis
#66: FILE: drivers/gpu/drm/i915/i915_params.c:78:
+i915_param_named_unsafe(reset, int, 0400,
 	"Attempt GPU resets (0=disabled, 1=full gpu reset, 2=engine reset [default])");

-:74: CHECK:PARENTHESIS_ALIGNMENT: Alignment should match open parenthesis
#74: FILE: drivers/gpu/drm/i915/i915_params.c:85:
+i915_param_named(error_capture, bool, 0400,
 	"Record the GPU state following a hang. "

-:81: CHECK:PARENTHESIS_ALIGNMENT: Alignment should match open parenthesis
#81: FILE: drivers/gpu/drm/i915/i915_params.c:91:
+i915_param_named_unsafe(enable_hangcheck, bool, 0400,
 	"Periodically check GPU activity for detecting hangs. "

-:87: CHECK:PARENTHESIS_ALIGNMENT: Alignment should match open parenthesis
#87: FILE: drivers/gpu/drm/i915/i915_params.c:96:
+i915_param_named_unsafe(enable_psr, int, 0400,
 	"Enable PSR "

-:99: CHECK:PARENTHESIS_ALIGNMENT: Alignment should match open parenthesis
#99: FILE: drivers/gpu/drm/i915/i915_params.c:111:
+i915_param_named(fastboot, int, 0400,
 	"Try to skip unnecessary mode sets at boot time "

-:105: CHECK:PARENTHESIS_ALIGNMENT: Alignment should match open parenthesis
#105: FILE: drivers/gpu/drm/i915/i915_params.c:116:
+i915_param_named_unsafe(load_detect_test, bool, 0400,
 	"Force-enable the VGA load detect code for testing (default:false). "

-:110: CHECK:PARENTHESIS_ALIGNMENT: Alignment should match open parenthesis
#110: FILE: drivers/gpu/drm/i915/i915_params.c:120:
+i915_param_named_unsafe(force_reset_modeset_test, bool, 0400,
 	"Force a modeset during gpu reset for testing (default:false). "

-:115: CHECK:PARENTHESIS_ALIGNMENT: Alignment should match open parenthesis
#115: FILE: drivers/gpu/drm/i915/i915_params.c:124:
+i915_param_named_unsafe(invert_brightness, int, 0400,
 	"Invert backlight brightness "

-:124: CHECK:PARENTHESIS_ALIGNMENT: Alignment should match open parenthesis
#124: FILE: drivers/gpu/drm/i915/i915_params.c:134:
+i915_param_named(mmio_debug, int, 0400,
 	"Enable the MMIO debug code for the first N failures (default: off). "

-:137: CHECK:PARENTHESIS_ALIGNMENT: Alignment should match open parenthesis
#137: FILE: drivers/gpu/drm/i915/i915_params.c:169:
+i915_param_named_unsafe(enable_dp_mst, bool, 0400,
 	"Enable multi-stream transport (MST) for new DisplayPort sinks. (default: true)");

-:146: CHECK:PARENTHESIS_ALIGNMENT: Alignment should match open parenthesis
#146: FILE: drivers/gpu/drm/i915/i915_params.c:177:
+i915_param_named(enable_dpcd_backlight, int, 0400,
 	"Enable support for DPCD backlight control"

total: 0 errors, 0 warnings, 13 checks, 115 lines checked

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

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

* [Intel-gfx] ✗ Fi.CI.SPARSE: warning for series starting with [1/3] drm/i915/params: don't expose inject_probe_failure in debugfs (rev2)
  2020-05-18 16:47 [Intel-gfx] drm/i915: device params part 1 Jani Nikula
                   ` (7 preceding siblings ...)
  2020-05-20 12:44 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for series starting with [1/3] drm/i915/params: don't expose inject_probe_failure in debugfs (rev2) Patchwork
@ 2020-05-20 12:45 ` Patchwork
  2020-05-20 13:06 ` [Intel-gfx] ✓ Fi.CI.BAT: success " Patchwork
  2020-05-21  3:52 ` [Intel-gfx] ✓ Fi.CI.IGT: " Patchwork
  10 siblings, 0 replies; 12+ messages in thread
From: Patchwork @ 2020-05-20 12:45 UTC (permalink / raw)
  To: Jani Nikula; +Cc: intel-gfx

== Series Details ==

Series: series starting with [1/3] drm/i915/params: don't expose inject_probe_failure in debugfs (rev2)
URL   : https://patchwork.freedesktop.org/series/77366/
State : warning

== Summary ==

$ dim sparse --fast origin/drm-tip
Sparse version: v0.6.0
Fast mode used, each commit won't be checked separately.
-
+drivers/gpu/drm/i915/display/intel_display.c:1222:22: error: Expected constant expression in case statement
+drivers/gpu/drm/i915/display/intel_display.c:1225:22: error: Expected constant expression in case statement
+drivers/gpu/drm/i915/display/intel_display.c:1228:22: error: Expected constant expression in case statement
+drivers/gpu/drm/i915/display/intel_display.c:1231:22: error: Expected constant expression in case statement
+drivers/gpu/drm/i915/gem/i915_gem_context.c:2274:17: error: bad integer constant expression
+drivers/gpu/drm/i915/gem/i915_gem_context.c:2275:17: error: bad integer constant expression
+drivers/gpu/drm/i915/gem/i915_gem_context.c:2276:17: error: bad integer constant expression
+drivers/gpu/drm/i915/gem/i915_gem_context.c:2277:17: error: bad integer constant expression
+drivers/gpu/drm/i915/gem/i915_gem_context.c:2278:17: error: bad integer constant expression
+drivers/gpu/drm/i915/gem/i915_gem_context.c:2279:17: error: bad integer constant expression
+drivers/gpu/drm/i915/gt/intel_reset.c:1310:5: warning: context imbalance in 'intel_gt_reset_trylock' - different lock contexts for basic block
+drivers/gpu/drm/i915/gt/sysfs_engines.c:61:10: error: bad integer constant expression
+drivers/gpu/drm/i915/gt/sysfs_engines.c:62:10: error: bad integer constant expression
+drivers/gpu/drm/i915/gt/sysfs_engines.c:66:10: error: bad integer constant expression
+drivers/gpu/drm/i915/gvt/mmio.c:287:23: warning: memcpy with byte count of 279040
+drivers/gpu/drm/i915/i915_perf.c:1425:15: warning: memset with byte count of 16777216
+drivers/gpu/drm/i915/i915_perf.c:1479:15: warning: memset with byte count of 16777216
+./include/linux/compiler.h:199:9: warning: context imbalance in 'engines_sample' - different lock contexts for basic block
+./include/linux/spinlock.h:408:9: warning: context imbalance in 'fwtable_read16' - different lock contexts for basic block
+./include/linux/spinlock.h:408:9: warning: context imbalance in 'fwtable_read32' - different lock contexts for basic block
+./include/linux/spinlock.h:408:9: warning: context imbalance in 'fwtable_read64' - different lock contexts for basic block
+./include/linux/spinlock.h:408:9: warning: context imbalance in 'fwtable_read8' - different lock contexts for basic block
+./include/linux/spinlock.h:408:9: warning: context imbalance in 'fwtable_write16' - different lock contexts for basic block
+./include/linux/spinlock.h:408:9: warning: context imbalance in 'fwtable_write32' - different lock contexts for basic block
+./include/linux/spinlock.h:408:9: warning: context imbalance in 'fwtable_write8' - different lock contexts for basic block
+./include/linux/spinlock.h:408:9: warning: context imbalance in 'gen11_fwtable_read16' - different lock contexts for basic block
+./include/linux/spinlock.h:408:9: warning: context imbalance in 'gen11_fwtable_read32' - different lock contexts for basic block
+./include/linux/spinlock.h:408:9: warning: context imbalance in 'gen11_fwtable_read64' - different lock contexts for basic block
+./include/linux/spinlock.h:408:9: warning: context imbalance in 'gen11_fwtable_read8' - different lock contexts for basic block
+./include/linux/spinlock.h:408:9: warning: context imbalance in 'gen11_fwtable_write16' - different lock contexts for basic block
+./include/linux/spinlock.h:408:9: warning: context imbalance in 'gen11_fwtable_write32' - different lock contexts for basic block
+./include/linux/spinlock.h:408:9: warning: context imbalance in 'gen11_fwtable_write8' - different lock contexts for basic block
+./include/linux/spinlock.h:408:9: warning: context imbalance in 'gen12_fwtable_read16' - different lock contexts for basic block
+./include/linux/spinlock.h:408:9: warning: context imbalance in 'gen12_fwtable_read32' - different lock contexts for basic block
+./include/linux/spinlock.h:408:9: warning: context imbalance in 'gen12_fwtable_read64' - different lock contexts for basic block
+./include/linux/spinlock.h:408:9: warning: context imbalance in 'gen12_fwtable_read8' - different lock contexts for basic block
+./include/linux/spinlock.h:408:9: warning: context imbalance in 'gen12_fwtable_write16' - different lock contexts for basic block
+./include/linux/spinlock.h:408:9: warning: context imbalance in 'gen12_fwtable_write32' - different lock contexts for basic block
+./include/linux/spinlock.h:408:9: warning: context imbalance in 'gen12_fwtable_write8' - different lock contexts for basic block
+./include/linux/spinlock.h:408:9: warning: context imbalance in 'gen6_read16' - different lock contexts for basic block
+./include/linux/spinlock.h:408:9: warning: context imbalance in 'gen6_read32' - different lock contexts for basic block
+./include/linux/spinlock.h:408:9: warning: context imbalance in 'gen6_read64' - different lock contexts for basic block
+./include/linux/spinlock.h:408:9: warning: context imbalance in 'gen6_read8' - different lock contexts for basic block
+./include/linux/spinlock.h:408:9: warning: context imbalance in 'gen6_write16' - different lock contexts for basic block
+./include/linux/spinlock.h:408:9: warning: context imbalance in 'gen6_write32' - different lock contexts for basic block
+./include/linux/spinlock.h:408:9: warning: context imbalance in 'gen6_write8' - different lock contexts for basic block
+./include/linux/spinlock.h:408:9: warning: context imbalance in 'gen8_write16' - different lock contexts for basic block
+./include/linux/spinlock.h:408:9: warning: context imbalance in 'gen8_write32' - different lock contexts for basic block
+./include/linux/spinlock.h:408:9: warning: context imbalance in 'gen8_write8' - different lock contexts for basic block

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

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

* [Intel-gfx] ✓ Fi.CI.BAT: success for series starting with [1/3] drm/i915/params: don't expose inject_probe_failure in debugfs (rev2)
  2020-05-18 16:47 [Intel-gfx] drm/i915: device params part 1 Jani Nikula
                   ` (8 preceding siblings ...)
  2020-05-20 12:45 ` [Intel-gfx] ✗ Fi.CI.SPARSE: " Patchwork
@ 2020-05-20 13:06 ` Patchwork
  2020-05-21  3:52 ` [Intel-gfx] ✓ Fi.CI.IGT: " Patchwork
  10 siblings, 0 replies; 12+ messages in thread
From: Patchwork @ 2020-05-20 13:06 UTC (permalink / raw)
  To: Jani Nikula; +Cc: intel-gfx

== Series Details ==

Series: series starting with [1/3] drm/i915/params: don't expose inject_probe_failure in debugfs (rev2)
URL   : https://patchwork.freedesktop.org/series/77366/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_8511 -> Patchwork_17728
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

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

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

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

### IGT changes ###

#### Possible fixes ####

  * igt@i915_pm_rpm@module-reload:
    - fi-kbl-guc:         [SKIP][1] ([fdo#109271]) -> [PASS][2]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8511/fi-kbl-guc/igt@i915_pm_rpm@module-reload.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17728/fi-kbl-guc/igt@i915_pm_rpm@module-reload.html

  
  [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271


Participating hosts (48 -> 42)
------------------------------

  Missing    (6): fi-bdw-5557u fi-hsw-4200u fi-byt-squawks fi-bsw-cyan fi-kbl-7560u fi-byt-clapper 


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

  * Linux: CI_DRM_8511 -> Patchwork_17728

  CI-20190529: 20190529
  CI_DRM_8511: 504ee538bd65abff745914a6f0b7aad62bbc1d11 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGT_5664: 404e2fa06b9c5986dec3fa210234fe8b034b157e @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
  Patchwork_17728: acab80457ffc035232b81c5705851b097b3a442d @ git://anongit.freedesktop.org/gfx-ci/linux


== Linux commits ==

acab80457ffc drm/i915/params: prevent changing module params runtime
a76531f51fca drm/i915/params: fix i915.fake_lmem_start module param sysfs permissions
6190d8ce3829 drm/i915/params: don't expose inject_probe_failure in debugfs

== Logs ==

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

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

* [Intel-gfx] ✓ Fi.CI.IGT: success for series starting with [1/3] drm/i915/params: don't expose inject_probe_failure in debugfs (rev2)
  2020-05-18 16:47 [Intel-gfx] drm/i915: device params part 1 Jani Nikula
                   ` (9 preceding siblings ...)
  2020-05-20 13:06 ` [Intel-gfx] ✓ Fi.CI.BAT: success " Patchwork
@ 2020-05-21  3:52 ` Patchwork
  10 siblings, 0 replies; 12+ messages in thread
From: Patchwork @ 2020-05-21  3:52 UTC (permalink / raw)
  To: Jani Nikula; +Cc: intel-gfx

== Series Details ==

Series: series starting with [1/3] drm/i915/params: don't expose inject_probe_failure in debugfs (rev2)
URL   : https://patchwork.freedesktop.org/series/77366/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_8511_full -> Patchwork_17728_full
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  

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

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

### IGT changes ###

#### Issues hit ####

  * igt@gem_ctx_persistence@close-replace-race:
    - shard-skl:          [PASS][1] -> [TIMEOUT][2] ([i915#1340])
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8511/shard-skl6/igt@gem_ctx_persistence@close-replace-race.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17728/shard-skl9/igt@gem_ctx_persistence@close-replace-race.html

  * igt@gem_ctx_persistence@engines-hostile@vcs0:
    - shard-iclb:         [PASS][3] -> [FAIL][4] ([i915#1622])
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8511/shard-iclb3/igt@gem_ctx_persistence@engines-hostile@vcs0.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17728/shard-iclb5/igt@gem_ctx_persistence@engines-hostile@vcs0.html

  * igt@gem_softpin@noreloc-s3:
    - shard-skl:          [PASS][5] -> [INCOMPLETE][6] ([i915#69])
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8511/shard-skl9/igt@gem_softpin@noreloc-s3.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17728/shard-skl1/igt@gem_softpin@noreloc-s3.html
    - shard-kbl:          [PASS][7] -> [DMESG-WARN][8] ([i915#180])
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8511/shard-kbl7/igt@gem_softpin@noreloc-s3.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17728/shard-kbl1/igt@gem_softpin@noreloc-s3.html

  * igt@gem_workarounds@suspend-resume:
    - shard-apl:          [PASS][9] -> [DMESG-WARN][10] ([i915#180]) +1 similar issue
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8511/shard-apl8/igt@gem_workarounds@suspend-resume.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17728/shard-apl6/igt@gem_workarounds@suspend-resume.html

  * igt@gem_workarounds@suspend-resume-fd:
    - shard-kbl:          [PASS][11] -> [INCOMPLETE][12] ([i915#155])
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8511/shard-kbl7/igt@gem_workarounds@suspend-resume-fd.html
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17728/shard-kbl1/igt@gem_workarounds@suspend-resume-fd.html

  * igt@kms_cursor_crc@pipe-a-cursor-suspend:
    - shard-iclb:         [PASS][13] -> [INCOMPLETE][14] ([i915#1185])
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8511/shard-iclb4/igt@kms_cursor_crc@pipe-a-cursor-suspend.html
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17728/shard-iclb3/igt@kms_cursor_crc@pipe-a-cursor-suspend.html

  * igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions:
    - shard-skl:          [PASS][15] -> [FAIL][16] ([IGT#5])
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8511/shard-skl3/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17728/shard-skl10/igt@kms_cursor_legacy@flip-vs-cursor-atomic-transitions.html

  * igt@kms_plane_alpha_blend@pipe-b-constant-alpha-min:
    - shard-skl:          [PASS][17] -> [FAIL][18] ([fdo#108145] / [i915#265])
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8511/shard-skl7/igt@kms_plane_alpha_blend@pipe-b-constant-alpha-min.html
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17728/shard-skl4/igt@kms_plane_alpha_blend@pipe-b-constant-alpha-min.html

  * igt@kms_psr@psr2_no_drrs:
    - shard-iclb:         [PASS][19] -> [SKIP][20] ([fdo#109441]) +2 similar issues
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8511/shard-iclb2/igt@kms_psr@psr2_no_drrs.html
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17728/shard-iclb5/igt@kms_psr@psr2_no_drrs.html

  * igt@kms_setmode@basic:
    - shard-kbl:          [PASS][21] -> [FAIL][22] ([i915#31])
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8511/shard-kbl1/igt@kms_setmode@basic.html
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17728/shard-kbl2/igt@kms_setmode@basic.html

  
#### Possible fixes ####

  * igt@gem_ctx_persistence@engines-hostile@rcs0:
    - shard-iclb:         [FAIL][23] ([i915#1622]) -> [PASS][24]
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8511/shard-iclb3/igt@gem_ctx_persistence@engines-hostile@rcs0.html
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17728/shard-iclb5/igt@gem_ctx_persistence@engines-hostile@rcs0.html

  * igt@gem_ctx_persistence@legacy-engines-mixed-process@blt:
    - shard-skl:          [FAIL][25] ([i915#1528]) -> [PASS][26] +1 similar issue
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8511/shard-skl3/igt@gem_ctx_persistence@legacy-engines-mixed-process@blt.html
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17728/shard-skl3/igt@gem_ctx_persistence@legacy-engines-mixed-process@blt.html

  * {igt@gem_exec_schedule@pi-distinct-iova@bcs0}:
    - shard-glk:          [FAIL][27] ([i915#859]) -> [PASS][28]
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8511/shard-glk6/igt@gem_exec_schedule@pi-distinct-iova@bcs0.html
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17728/shard-glk9/igt@gem_exec_schedule@pi-distinct-iova@bcs0.html

  * igt@i915_suspend@fence-restore-untiled:
    - shard-kbl:          [DMESG-WARN][29] ([i915#180]) -> [PASS][30] +1 similar issue
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8511/shard-kbl3/igt@i915_suspend@fence-restore-untiled.html
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17728/shard-kbl1/igt@i915_suspend@fence-restore-untiled.html

  * igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic:
    - shard-glk:          [FAIL][31] ([i915#72]) -> [PASS][32]
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8511/shard-glk1/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17728/shard-glk7/igt@kms_cursor_legacy@2x-long-flip-vs-cursor-atomic.html

  * {igt@kms_flip@flip-vs-expired-vblank@a-edp1}:
    - shard-skl:          [FAIL][33] ([i915#79]) -> [PASS][34]
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8511/shard-skl4/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17728/shard-skl9/igt@kms_flip@flip-vs-expired-vblank@a-edp1.html

  * igt@kms_hdr@bpc-switch:
    - shard-skl:          [FAIL][35] ([i915#1188]) -> [PASS][36]
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8511/shard-skl7/igt@kms_hdr@bpc-switch.html
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17728/shard-skl7/igt@kms_hdr@bpc-switch.html

  * igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes:
    - shard-apl:          [DMESG-WARN][37] ([i915#180]) -> [PASS][38] +3 similar issues
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8511/shard-apl3/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes.html
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17728/shard-apl4/igt@kms_plane@plane-panning-bottom-right-suspend-pipe-b-planes.html

  * igt@kms_plane_alpha_blend@pipe-b-coverage-7efc:
    - shard-skl:          [FAIL][39] ([fdo#108145] / [i915#265]) -> [PASS][40] +1 similar issue
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8511/shard-skl4/igt@kms_plane_alpha_blend@pipe-b-coverage-7efc.html
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17728/shard-skl8/igt@kms_plane_alpha_blend@pipe-b-coverage-7efc.html

  * igt@kms_psr@psr2_dpms:
    - shard-iclb:         [SKIP][41] ([fdo#109441]) -> [PASS][42] +2 similar issues
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8511/shard-iclb5/igt@kms_psr@psr2_dpms.html
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17728/shard-iclb2/igt@kms_psr@psr2_dpms.html

  * igt@kms_setmode@basic:
    - shard-glk:          [FAIL][43] ([i915#31]) -> [PASS][44]
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8511/shard-glk2/igt@kms_setmode@basic.html
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17728/shard-glk2/igt@kms_setmode@basic.html

  
#### Warnings ####

  * igt@i915_pm_dc@dc3co-vpb-simulation:
    - shard-iclb:         [SKIP][45] -> [SKIP][46] ([i915#588])
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8511/shard-iclb7/igt@i915_pm_dc@dc3co-vpb-simulation.html
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17728/shard-iclb2/igt@i915_pm_dc@dc3co-vpb-simulation.html

  * igt@kms_content_protection@atomic:
    - shard-apl:          [FAIL][47] ([fdo#110321] / [fdo#110336]) -> [TIMEOUT][48] ([i915#1319])
   [47]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8511/shard-apl2/igt@kms_content_protection@atomic.html
   [48]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17728/shard-apl1/igt@kms_content_protection@atomic.html

  * igt@kms_content_protection@lic:
    - shard-apl:          [DMESG-FAIL][49] ([fdo#110321]) -> [TIMEOUT][50] ([i915#1319])
   [49]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8511/shard-apl8/igt@kms_content_protection@lic.html
   [50]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17728/shard-apl8/igt@kms_content_protection@lic.html

  * igt@kms_psr2_su@frontbuffer:
    - shard-iclb:         [SKIP][51] -> [SKIP][52] ([fdo#109642] / [fdo#111068])
   [51]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8511/shard-iclb2/igt@kms_psr2_su@frontbuffer.html
   [52]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17728/shard-iclb3/igt@kms_psr2_su@frontbuffer.html

  * igt@kms_psr2_su@page_flip:
    - shard-iclb:         [SKIP][53] ([fdo#109642] / [fdo#111068]) -> [FAIL][54] ([i915#608])
   [53]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_8511/shard-iclb7/igt@kms_psr2_su@page_flip.html
   [54]: https://intel-gfx-ci.01.org/tree/drm-tip/Patchwork_17728/shard-iclb2/igt@kms_psr2_su@page_flip.html

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

  [IGT#5]: https://gitlab.freedesktop.org/drm/igt-gpu-tools/issues/5
  [fdo#108145]: https://bugs.freedesktop.org/show_bug.cgi?id=108145
  [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441
  [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642
  [fdo#110321]: https://bugs.freedesktop.org/show_bug.cgi?id=110321
  [fdo#110336]: https://bugs.freedesktop.org/show_bug.cgi?id=110336
  [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
  [i915#1185]: https://gitlab.freedesktop.org/drm/intel/issues/1185
  [i915#1188]: https://gitlab.freedesktop.org/drm/intel/issues/1188
  [i915#1319]: https://gitlab.freedesktop.org/drm/intel/issues/1319
  [i915#1340]: https://gitlab.freedesktop.org/drm/intel/issues/1340
  [i915#1528]: https://gitlab.freedesktop.org/drm/intel/issues/1528
  [i915#155]: https://gitlab.freedesktop.org/drm/intel/issues/155
  [i915#1622]: https://gitlab.freedesktop.org/drm/intel/issues/1622
  [i915#180]: https://gitlab.freedesktop.org/drm/intel/issues/180
  [i915#265]: https://gitlab.freedesktop.org/drm/intel/issues/265
  [i915#31]: https://gitlab.freedesktop.org/drm/intel/issues/31
  [i915#588]: https://gitlab.freedesktop.org/drm/intel/issues/588
  [i915#608]: https://gitlab.freedesktop.org/drm/intel/issues/608
  [i915#69]: https://gitlab.freedesktop.org/drm/intel/issues/69
  [i915#72]: https://gitlab.freedesktop.org/drm/intel/issues/72
  [i915#79]: https://gitlab.freedesktop.org/drm/intel/issues/79
  [i915#859]: https://gitlab.freedesktop.org/drm/intel/issues/859


Participating hosts (11 -> 11)
------------------------------

  No changes in participating hosts


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

  * Linux: CI_DRM_8511 -> Patchwork_17728

  CI-20190529: 20190529
  CI_DRM_8511: 504ee538bd65abff745914a6f0b7aad62bbc1d11 @ git://anongit.freedesktop.org/gfx-ci/linux
  IGT_5664: 404e2fa06b9c5986dec3fa210234fe8b034b157e @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
  Patchwork_17728: acab80457ffc035232b81c5705851b097b3a442d @ 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_17728/index.html
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/intel-gfx

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

end of thread, other threads:[~2020-05-21  3:52 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-05-18 16:47 [Intel-gfx] drm/i915: device params part 1 Jani Nikula
2020-05-18 16:47 ` [Intel-gfx] [PATCH 1/3] drm/i915/params: don't expose inject_probe_failure in debugfs Jani Nikula
2020-05-18 16:47 ` [Intel-gfx] [PATCH 2/3] drm/i915/params: fix i915.fake_lmem_start module param sysfs permissions Jani Nikula
2020-05-18 16:47 ` [Intel-gfx] [PATCH 3/3] drm/i915/params: prevent changing module params runtime Jani Nikula
2020-05-18 19:41 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for series starting with [1/3] drm/i915/params: don't expose inject_probe_failure in debugfs Patchwork
2020-05-18 19:42 ` [Intel-gfx] ✗ Fi.CI.SPARSE: " Patchwork
2020-05-18 20:08 ` [Intel-gfx] ✗ Fi.CI.BAT: failure " Patchwork
2020-05-19  6:34 ` [Intel-gfx] drm/i915: device params part 1 Chris Wilson
2020-05-20 12:44 ` [Intel-gfx] ✗ Fi.CI.CHECKPATCH: warning for series starting with [1/3] drm/i915/params: don't expose inject_probe_failure in debugfs (rev2) Patchwork
2020-05-20 12:45 ` [Intel-gfx] ✗ Fi.CI.SPARSE: " Patchwork
2020-05-20 13:06 ` [Intel-gfx] ✓ Fi.CI.BAT: success " Patchwork
2020-05-21  3:52 ` [Intel-gfx] ✓ Fi.CI.IGT: " Patchwork

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).