All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH i-g-t] intel_l3_parity: Restore support for Ivybridge
@ 2019-07-11 14:10 ` Chris Wilson
  0 siblings, 0 replies; 8+ messages in thread
From: Chris Wilson @ 2019-07-11 14:10 UTC (permalink / raw)
  To: intel-gfx; +Cc: igt-dev

With the fancy second slice of Haswell, we lost support for Ivybridge
with its paltry single slice.

Fixes: 8ddcfd6882a9 ("intel_l3_parity: slice support")
Testcase: igt/tools_test/sysfs_l3_parity
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
---
 tools/intel_l3_parity.c | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/tools/intel_l3_parity.c b/tools/intel_l3_parity.c
index d8c997af9..dc3d08048 100644
--- a/tools/intel_l3_parity.c
+++ b/tools/intel_l3_parity.c
@@ -195,6 +195,9 @@ int main(int argc, char *argv[])
 
 	for_each_slice(i) {
 		fd[i] = openat(dir, path[i], O_RDWR);
+		if (fd[i] < 0)
+			continue;
+
 		if (read(fd[i], l3logs[i], NUM_REGS * sizeof(uint32_t)) < 0) {
 			perror(path[i]);
 			exit(77);
@@ -333,6 +336,9 @@ int main(int argc, char *argv[])
 
 	/* Per slice operations */
 	for_each_slice(i) {
+		if (fd[i] < 0)
+			continue;
+
 		switch (action) {
 			case 'l':
 				dumpit(i);
@@ -374,6 +380,9 @@ int main(int argc, char *argv[])
 		exit(EXIT_SUCCESS);
 
 	for_each_slice(i) {
+		if (fd[i] < 0)
+			continue;
+
 		ret = write(fd[i], l3logs[i], NUM_REGS * sizeof(uint32_t));
 		if (ret == -1) {
 			perror("Writing sysfs");
-- 
2.22.0

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

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

* [Intel-gfx] [PATCH i-g-t] intel_l3_parity: Restore support for Ivybridge
@ 2019-07-11 14:10 ` Chris Wilson
  0 siblings, 0 replies; 8+ messages in thread
From: Chris Wilson @ 2019-07-11 14:10 UTC (permalink / raw)
  To: intel-gfx; +Cc: igt-dev

With the fancy second slice of Haswell, we lost support for Ivybridge
with its paltry single slice.

Fixes: 8ddcfd6882a9 ("intel_l3_parity: slice support")
Testcase: igt/tools_test/sysfs_l3_parity
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
---
 tools/intel_l3_parity.c | 9 +++++++++
 1 file changed, 9 insertions(+)

diff --git a/tools/intel_l3_parity.c b/tools/intel_l3_parity.c
index d8c997af9..dc3d08048 100644
--- a/tools/intel_l3_parity.c
+++ b/tools/intel_l3_parity.c
@@ -195,6 +195,9 @@ int main(int argc, char *argv[])
 
 	for_each_slice(i) {
 		fd[i] = openat(dir, path[i], O_RDWR);
+		if (fd[i] < 0)
+			continue;
+
 		if (read(fd[i], l3logs[i], NUM_REGS * sizeof(uint32_t)) < 0) {
 			perror(path[i]);
 			exit(77);
@@ -333,6 +336,9 @@ int main(int argc, char *argv[])
 
 	/* Per slice operations */
 	for_each_slice(i) {
+		if (fd[i] < 0)
+			continue;
+
 		switch (action) {
 			case 'l':
 				dumpit(i);
@@ -374,6 +380,9 @@ int main(int argc, char *argv[])
 		exit(EXIT_SUCCESS);
 
 	for_each_slice(i) {
+		if (fd[i] < 0)
+			continue;
+
 		ret = write(fd[i], l3logs[i], NUM_REGS * sizeof(uint32_t));
 		if (ret == -1) {
 			perror("Writing sysfs");
-- 
2.22.0

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

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

* Re: [PATCH i-g-t] intel_l3_parity: Restore support for Ivybridge
  2019-07-11 14:10 ` [Intel-gfx] " Chris Wilson
@ 2019-07-11 14:27   ` Ville Syrjälä
  -1 siblings, 0 replies; 8+ messages in thread
From: Ville Syrjälä @ 2019-07-11 14:27 UTC (permalink / raw)
  To: Chris Wilson; +Cc: igt-dev, intel-gfx

On Thu, Jul 11, 2019 at 03:10:04PM +0100, Chris Wilson wrote:
> With the fancy second slice of Haswell, we lost support for Ivybridge
> with its paltry single slice.
> 
> Fixes: 8ddcfd6882a9 ("intel_l3_parity: slice support")
> Testcase: igt/tools_test/sysfs_l3_parity
> Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>

Looks sane.

I wonder if anyone ever used this feature...

> ---
>  tools/intel_l3_parity.c | 9 +++++++++
>  1 file changed, 9 insertions(+)
> 
> diff --git a/tools/intel_l3_parity.c b/tools/intel_l3_parity.c
> index d8c997af9..dc3d08048 100644
> --- a/tools/intel_l3_parity.c
> +++ b/tools/intel_l3_parity.c
> @@ -195,6 +195,9 @@ int main(int argc, char *argv[])
>  
>  	for_each_slice(i) {
>  		fd[i] = openat(dir, path[i], O_RDWR);
> +		if (fd[i] < 0)
> +			continue;
> +
>  		if (read(fd[i], l3logs[i], NUM_REGS * sizeof(uint32_t)) < 0) {
>  			perror(path[i]);
>  			exit(77);
> @@ -333,6 +336,9 @@ int main(int argc, char *argv[])
>  
>  	/* Per slice operations */
>  	for_each_slice(i) {
> +		if (fd[i] < 0)
> +			continue;
> +
>  		switch (action) {
>  			case 'l':
>  				dumpit(i);
> @@ -374,6 +380,9 @@ int main(int argc, char *argv[])
>  		exit(EXIT_SUCCESS);
>  
>  	for_each_slice(i) {
> +		if (fd[i] < 0)
> +			continue;
> +
>  		ret = write(fd[i], l3logs[i], NUM_REGS * sizeof(uint32_t));
>  		if (ret == -1) {
>  			perror("Writing sysfs");
> -- 
> 2.22.0
> 
> _______________________________________________
> Intel-gfx mailing list
> Intel-gfx@lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/intel-gfx

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

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

* Re: [igt-dev] [Intel-gfx] [PATCH i-g-t] intel_l3_parity: Restore support for Ivybridge
@ 2019-07-11 14:27   ` Ville Syrjälä
  0 siblings, 0 replies; 8+ messages in thread
From: Ville Syrjälä @ 2019-07-11 14:27 UTC (permalink / raw)
  To: Chris Wilson; +Cc: igt-dev, intel-gfx

On Thu, Jul 11, 2019 at 03:10:04PM +0100, Chris Wilson wrote:
> With the fancy second slice of Haswell, we lost support for Ivybridge
> with its paltry single slice.
> 
> Fixes: 8ddcfd6882a9 ("intel_l3_parity: slice support")
> Testcase: igt/tools_test/sysfs_l3_parity
> Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>

Looks sane.

I wonder if anyone ever used this feature...

> ---
>  tools/intel_l3_parity.c | 9 +++++++++
>  1 file changed, 9 insertions(+)
> 
> diff --git a/tools/intel_l3_parity.c b/tools/intel_l3_parity.c
> index d8c997af9..dc3d08048 100644
> --- a/tools/intel_l3_parity.c
> +++ b/tools/intel_l3_parity.c
> @@ -195,6 +195,9 @@ int main(int argc, char *argv[])
>  
>  	for_each_slice(i) {
>  		fd[i] = openat(dir, path[i], O_RDWR);
> +		if (fd[i] < 0)
> +			continue;
> +
>  		if (read(fd[i], l3logs[i], NUM_REGS * sizeof(uint32_t)) < 0) {
>  			perror(path[i]);
>  			exit(77);
> @@ -333,6 +336,9 @@ int main(int argc, char *argv[])
>  
>  	/* Per slice operations */
>  	for_each_slice(i) {
> +		if (fd[i] < 0)
> +			continue;
> +
>  		switch (action) {
>  			case 'l':
>  				dumpit(i);
> @@ -374,6 +380,9 @@ int main(int argc, char *argv[])
>  		exit(EXIT_SUCCESS);
>  
>  	for_each_slice(i) {
> +		if (fd[i] < 0)
> +			continue;
> +
>  		ret = write(fd[i], l3logs[i], NUM_REGS * sizeof(uint32_t));
>  		if (ret == -1) {
>  			perror("Writing sysfs");
> -- 
> 2.22.0
> 
> _______________________________________________
> Intel-gfx mailing list
> Intel-gfx@lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/intel-gfx

-- 
Ville Syrjälä
Intel
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

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

* Re: [PATCH i-g-t] intel_l3_parity: Restore support for Ivybridge
  2019-07-11 14:27   ` [igt-dev] [Intel-gfx] " Ville Syrjälä
@ 2019-07-11 14:33     ` Ville Syrjälä
  -1 siblings, 0 replies; 8+ messages in thread
From: Ville Syrjälä @ 2019-07-11 14:33 UTC (permalink / raw)
  To: Chris Wilson; +Cc: igt-dev, intel-gfx

On Thu, Jul 11, 2019 at 05:27:50PM +0300, Ville Syrjälä wrote:
> On Thu, Jul 11, 2019 at 03:10:04PM +0100, Chris Wilson wrote:
> > With the fancy second slice of Haswell, we lost support for Ivybridge
> > with its paltry single slice.
> > 
> > Fixes: 8ddcfd6882a9 ("intel_l3_parity: slice support")
> > Testcase: igt/tools_test/sysfs_l3_parity
> > Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
> 
> Looks sane.

Apparently forgot to add the
Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>

> 
> I wonder if anyone ever used this feature...
> 
> > ---
> >  tools/intel_l3_parity.c | 9 +++++++++
> >  1 file changed, 9 insertions(+)
> > 
> > diff --git a/tools/intel_l3_parity.c b/tools/intel_l3_parity.c
> > index d8c997af9..dc3d08048 100644
> > --- a/tools/intel_l3_parity.c
> > +++ b/tools/intel_l3_parity.c
> > @@ -195,6 +195,9 @@ int main(int argc, char *argv[])
> >  
> >  	for_each_slice(i) {
> >  		fd[i] = openat(dir, path[i], O_RDWR);
> > +		if (fd[i] < 0)
> > +			continue;
> > +
> >  		if (read(fd[i], l3logs[i], NUM_REGS * sizeof(uint32_t)) < 0) {
> >  			perror(path[i]);
> >  			exit(77);
> > @@ -333,6 +336,9 @@ int main(int argc, char *argv[])
> >  
> >  	/* Per slice operations */
> >  	for_each_slice(i) {
> > +		if (fd[i] < 0)
> > +			continue;
> > +
> >  		switch (action) {
> >  			case 'l':
> >  				dumpit(i);
> > @@ -374,6 +380,9 @@ int main(int argc, char *argv[])
> >  		exit(EXIT_SUCCESS);
> >  
> >  	for_each_slice(i) {
> > +		if (fd[i] < 0)
> > +			continue;
> > +
> >  		ret = write(fd[i], l3logs[i], NUM_REGS * sizeof(uint32_t));
> >  		if (ret == -1) {
> >  			perror("Writing sysfs");
> > -- 
> > 2.22.0
> > 
> > _______________________________________________
> > Intel-gfx mailing list
> > Intel-gfx@lists.freedesktop.org
> > https://lists.freedesktop.org/mailman/listinfo/intel-gfx
> 
> -- 
> Ville Syrjälä
> Intel
> _______________________________________________
> Intel-gfx mailing list
> Intel-gfx@lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/intel-gfx

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

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

* Re: [Intel-gfx] [PATCH i-g-t] intel_l3_parity: Restore support for Ivybridge
@ 2019-07-11 14:33     ` Ville Syrjälä
  0 siblings, 0 replies; 8+ messages in thread
From: Ville Syrjälä @ 2019-07-11 14:33 UTC (permalink / raw)
  To: Chris Wilson; +Cc: igt-dev, intel-gfx

On Thu, Jul 11, 2019 at 05:27:50PM +0300, Ville Syrjälä wrote:
> On Thu, Jul 11, 2019 at 03:10:04PM +0100, Chris Wilson wrote:
> > With the fancy second slice of Haswell, we lost support for Ivybridge
> > with its paltry single slice.
> > 
> > Fixes: 8ddcfd6882a9 ("intel_l3_parity: slice support")
> > Testcase: igt/tools_test/sysfs_l3_parity
> > Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
> 
> Looks sane.

Apparently forgot to add the
Reviewed-by: Ville Syrjälä <ville.syrjala@linux.intel.com>

> 
> I wonder if anyone ever used this feature...
> 
> > ---
> >  tools/intel_l3_parity.c | 9 +++++++++
> >  1 file changed, 9 insertions(+)
> > 
> > diff --git a/tools/intel_l3_parity.c b/tools/intel_l3_parity.c
> > index d8c997af9..dc3d08048 100644
> > --- a/tools/intel_l3_parity.c
> > +++ b/tools/intel_l3_parity.c
> > @@ -195,6 +195,9 @@ int main(int argc, char *argv[])
> >  
> >  	for_each_slice(i) {
> >  		fd[i] = openat(dir, path[i], O_RDWR);
> > +		if (fd[i] < 0)
> > +			continue;
> > +
> >  		if (read(fd[i], l3logs[i], NUM_REGS * sizeof(uint32_t)) < 0) {
> >  			perror(path[i]);
> >  			exit(77);
> > @@ -333,6 +336,9 @@ int main(int argc, char *argv[])
> >  
> >  	/* Per slice operations */
> >  	for_each_slice(i) {
> > +		if (fd[i] < 0)
> > +			continue;
> > +
> >  		switch (action) {
> >  			case 'l':
> >  				dumpit(i);
> > @@ -374,6 +380,9 @@ int main(int argc, char *argv[])
> >  		exit(EXIT_SUCCESS);
> >  
> >  	for_each_slice(i) {
> > +		if (fd[i] < 0)
> > +			continue;
> > +
> >  		ret = write(fd[i], l3logs[i], NUM_REGS * sizeof(uint32_t));
> >  		if (ret == -1) {
> >  			perror("Writing sysfs");
> > -- 
> > 2.22.0
> > 
> > _______________________________________________
> > Intel-gfx mailing list
> > Intel-gfx@lists.freedesktop.org
> > https://lists.freedesktop.org/mailman/listinfo/intel-gfx
> 
> -- 
> Ville Syrjälä
> Intel
> _______________________________________________
> Intel-gfx mailing list
> Intel-gfx@lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/intel-gfx

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

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

* [igt-dev] ✓ Fi.CI.BAT: success for intel_l3_parity: Restore support for Ivybridge
  2019-07-11 14:10 ` [Intel-gfx] " Chris Wilson
  (?)
  (?)
@ 2019-07-11 17:45 ` Patchwork
  -1 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2019-07-11 17:45 UTC (permalink / raw)
  To: Chris Wilson; +Cc: igt-dev

== Series Details ==

Series: intel_l3_parity: Restore support for Ivybridge
URL   : https://patchwork.freedesktop.org/series/63571/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_6460 -> IGTPW_3259
====================================================

Summary
-------

  **SUCCESS**

  No regressions found.

  External URL: https://patchwork.freedesktop.org/api/1.0/series/63571/revisions/1/mbox/

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

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

### IGT changes ###

#### Issues hit ####

  * igt@gem_exec_reloc@basic-gtt-read:
    - fi-icl-dsi:         [PASS][1] -> [DMESG-WARN][2] ([fdo#106107])
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6460/fi-icl-dsi/igt@gem_exec_reloc@basic-gtt-read.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3259/fi-icl-dsi/igt@gem_exec_reloc@basic-gtt-read.html

  * igt@gem_exec_suspend@basic-s3:
    - fi-blb-e6850:       [PASS][3] -> [INCOMPLETE][4] ([fdo#107718])
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6460/fi-blb-e6850/igt@gem_exec_suspend@basic-s3.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3259/fi-blb-e6850/igt@gem_exec_suspend@basic-s3.html

  * igt@i915_pm_rpm@module-reload:
    - fi-skl-6770hq:      [PASS][5] -> [FAIL][6] ([fdo#108511])
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6460/fi-skl-6770hq/igt@i915_pm_rpm@module-reload.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3259/fi-skl-6770hq/igt@i915_pm_rpm@module-reload.html

  * igt@i915_selftest@live_hangcheck:
    - fi-icl-dsi:         [PASS][7] -> [INCOMPLETE][8] ([fdo#107713] / [fdo#108569])
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6460/fi-icl-dsi/igt@i915_selftest@live_hangcheck.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3259/fi-icl-dsi/igt@i915_selftest@live_hangcheck.html

  
#### Possible fixes ####

  * igt@gem_close_race@basic-threads:
    - {fi-icl-u4}:        [INCOMPLETE][9] ([fdo#107713]) -> [PASS][10]
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6460/fi-icl-u4/igt@gem_close_race@basic-threads.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3259/fi-icl-u4/igt@gem_close_race@basic-threads.html

  * igt@i915_selftest@live_contexts:
    - fi-skl-iommu:       [INCOMPLETE][11] ([fdo#111050]) -> [PASS][12]
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6460/fi-skl-iommu/igt@i915_selftest@live_contexts.html
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3259/fi-skl-iommu/igt@i915_selftest@live_contexts.html

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

  [fdo#106107]: https://bugs.freedesktop.org/show_bug.cgi?id=106107
  [fdo#107713]: https://bugs.freedesktop.org/show_bug.cgi?id=107713
  [fdo#107718]: https://bugs.freedesktop.org/show_bug.cgi?id=107718
  [fdo#108511]: https://bugs.freedesktop.org/show_bug.cgi?id=108511
  [fdo#108569]: https://bugs.freedesktop.org/show_bug.cgi?id=108569
  [fdo#111050]: https://bugs.freedesktop.org/show_bug.cgi?id=111050


Participating hosts (50 -> 47)
------------------------------

  Additional (2): fi-icl-u3 fi-apl-guc 
  Missing    (5): fi-byt-squawks fi-bsw-cyan fi-icl-y fi-byt-clapper fi-bdw-samus 


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

  * IGT: IGT_5094 -> IGTPW_3259

  CI_DRM_6460: 32d52650873db547f6702f12ebdbae3e8e052dad @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_3259: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3259/
  IGT_5094: d7f140b5b02d054183a74842b4579cf7f5533927 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3259/
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

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

* [igt-dev] ✓ Fi.CI.IGT: success for intel_l3_parity: Restore support for Ivybridge
  2019-07-11 14:10 ` [Intel-gfx] " Chris Wilson
                   ` (2 preceding siblings ...)
  (?)
@ 2019-07-12 17:10 ` Patchwork
  -1 siblings, 0 replies; 8+ messages in thread
From: Patchwork @ 2019-07-12 17:10 UTC (permalink / raw)
  To: Chris Wilson; +Cc: igt-dev

== Series Details ==

Series: intel_l3_parity: Restore support for Ivybridge
URL   : https://patchwork.freedesktop.org/series/63571/
State : success

== Summary ==

CI Bug Log - changes from CI_DRM_6460_full -> IGTPW_3259_full
====================================================

Summary
-------

  **WARNING**

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

  External URL: https://patchwork.freedesktop.org/api/1.0/series/63571/revisions/1/mbox/

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

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

### IGT changes ###

#### Warnings ####

  * igt@tools_test@sysfs_l3_parity:
    - shard-kbl:          [SKIP][1] ([fdo#109271]) -> [FAIL][2]
   [1]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6460/shard-kbl4/igt@tools_test@sysfs_l3_parity.html
   [2]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3259/shard-kbl6/igt@tools_test@sysfs_l3_parity.html
    - shard-apl:          [SKIP][3] ([fdo#109271]) -> [FAIL][4]
   [3]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6460/shard-apl3/igt@tools_test@sysfs_l3_parity.html
   [4]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3259/shard-apl1/igt@tools_test@sysfs_l3_parity.html
    - shard-iclb:         [SKIP][5] ([fdo#109307]) -> [FAIL][6]
   [5]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6460/shard-iclb6/igt@tools_test@sysfs_l3_parity.html
   [6]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3259/shard-iclb1/igt@tools_test@sysfs_l3_parity.html
    - shard-glk:          [SKIP][7] ([fdo#109271]) -> [FAIL][8]
   [7]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6460/shard-glk3/igt@tools_test@sysfs_l3_parity.html
   [8]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3259/shard-glk9/igt@tools_test@sysfs_l3_parity.html

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

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

### IGT changes ###

#### Issues hit ####

  * igt@gem_workarounds@suspend-resume-context:
    - shard-apl:          [PASS][9] -> [DMESG-WARN][10] ([fdo#108566]) +2 similar issues
   [9]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6460/shard-apl8/igt@gem_workarounds@suspend-resume-context.html
   [10]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3259/shard-apl3/igt@gem_workarounds@suspend-resume-context.html

  * igt@i915_suspend@debugfs-reader:
    - shard-kbl:          [PASS][11] -> [INCOMPLETE][12] ([fdo#103665])
   [11]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6460/shard-kbl2/igt@i915_suspend@debugfs-reader.html
   [12]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3259/shard-kbl1/igt@i915_suspend@debugfs-reader.html

  * igt@kms_cursor_crc@pipe-a-cursor-256x256-random:
    - shard-apl:          [PASS][13] -> [FAIL][14] ([fdo#103232])
   [13]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6460/shard-apl3/igt@kms_cursor_crc@pipe-a-cursor-256x256-random.html
   [14]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3259/shard-apl2/igt@kms_cursor_crc@pipe-a-cursor-256x256-random.html
    - shard-kbl:          [PASS][15] -> [FAIL][16] ([fdo#103232])
   [15]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6460/shard-kbl6/igt@kms_cursor_crc@pipe-a-cursor-256x256-random.html
   [16]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3259/shard-kbl2/igt@kms_cursor_crc@pipe-a-cursor-256x256-random.html

  * igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy:
    - shard-hsw:          [PASS][17] -> [FAIL][18] ([fdo#105767])
   [17]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6460/shard-hsw7/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html
   [18]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3259/shard-hsw1/igt@kms_cursor_legacy@2x-long-cursor-vs-flip-legacy.html

  * igt@kms_flip@2x-flip-vs-suspend-interruptible:
    - shard-hsw:          [PASS][19] -> [INCOMPLETE][20] ([fdo#103540]) +2 similar issues
   [19]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6460/shard-hsw5/igt@kms_flip@2x-flip-vs-suspend-interruptible.html
   [20]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3259/shard-hsw2/igt@kms_flip@2x-flip-vs-suspend-interruptible.html

  * igt@kms_frontbuffer_tracking@fbc-stridechange:
    - shard-iclb:         [PASS][21] -> [FAIL][22] ([fdo#103167]) +4 similar issues
   [21]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6460/shard-iclb7/igt@kms_frontbuffer_tracking@fbc-stridechange.html
   [22]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3259/shard-iclb6/igt@kms_frontbuffer_tracking@fbc-stridechange.html

  * igt@kms_psr2_su@page_flip:
    - shard-iclb:         [PASS][23] -> [SKIP][24] ([fdo#109642] / [fdo#111068])
   [23]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6460/shard-iclb2/igt@kms_psr2_su@page_flip.html
   [24]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3259/shard-iclb8/igt@kms_psr2_su@page_flip.html

  * igt@kms_psr@psr2_primary_mmap_cpu:
    - shard-iclb:         [PASS][25] -> [SKIP][26] ([fdo#109441])
   [25]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6460/shard-iclb2/igt@kms_psr@psr2_primary_mmap_cpu.html
   [26]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3259/shard-iclb8/igt@kms_psr@psr2_primary_mmap_cpu.html

  * igt@kms_setmode@basic:
    - shard-apl:          [PASS][27] -> [FAIL][28] ([fdo#99912])
   [27]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6460/shard-apl4/igt@kms_setmode@basic.html
   [28]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3259/shard-apl3/igt@kms_setmode@basic.html
    - shard-kbl:          [PASS][29] -> [FAIL][30] ([fdo#99912])
   [29]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6460/shard-kbl6/igt@kms_setmode@basic.html
   [30]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3259/shard-kbl2/igt@kms_setmode@basic.html

  * igt@perf_pmu@rc6-runtime-pm-long:
    - shard-apl:          [PASS][31] -> [FAIL][32] ([fdo#105010])
   [31]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6460/shard-apl4/igt@perf_pmu@rc6-runtime-pm-long.html
   [32]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3259/shard-apl2/igt@perf_pmu@rc6-runtime-pm-long.html
    - shard-iclb:         [PASS][33] -> [FAIL][34] ([fdo#105010])
   [33]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6460/shard-iclb8/igt@perf_pmu@rc6-runtime-pm-long.html
   [34]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3259/shard-iclb7/igt@perf_pmu@rc6-runtime-pm-long.html
    - shard-glk:          [PASS][35] -> [FAIL][36] ([fdo#105010])
   [35]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6460/shard-glk9/igt@perf_pmu@rc6-runtime-pm-long.html
   [36]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3259/shard-glk7/igt@perf_pmu@rc6-runtime-pm-long.html

  
#### Possible fixes ####

  * igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw:
    - shard-iclb:         [FAIL][37] ([fdo#103167]) -> [PASS][38] +4 similar issues
   [37]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6460/shard-iclb2/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html
   [38]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3259/shard-iclb6/igt@kms_frontbuffer_tracking@fbc-1p-pri-indfb-multidraw.html

  * igt@kms_frontbuffer_tracking@fbc-1p-shrfb-fliptrack:
    - shard-iclb:         [INCOMPLETE][39] ([fdo#107713]) -> [PASS][40]
   [39]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6460/shard-iclb7/igt@kms_frontbuffer_tracking@fbc-1p-shrfb-fliptrack.html
   [40]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3259/shard-iclb4/igt@kms_frontbuffer_tracking@fbc-1p-shrfb-fliptrack.html

  * igt@kms_pipe_crc_basic@suspend-read-crc-pipe-b:
    - shard-apl:          [DMESG-WARN][41] ([fdo#108566]) -> [PASS][42] +2 similar issues
   [41]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6460/shard-apl6/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-b.html
   [42]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3259/shard-apl5/igt@kms_pipe_crc_basic@suspend-read-crc-pipe-b.html

  * igt@kms_plane_lowres@pipe-a-tiling-x:
    - shard-iclb:         [FAIL][43] ([fdo#103166]) -> [PASS][44]
   [43]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6460/shard-iclb6/igt@kms_plane_lowres@pipe-a-tiling-x.html
   [44]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3259/shard-iclb3/igt@kms_plane_lowres@pipe-a-tiling-x.html

  * igt@kms_psr@psr2_sprite_plane_onoff:
    - shard-iclb:         [SKIP][45] ([fdo#109441]) -> [PASS][46] +1 similar issue
   [45]: https://intel-gfx-ci.01.org/tree/drm-tip/CI_DRM_6460/shard-iclb1/igt@kms_psr@psr2_sprite_plane_onoff.html
   [46]: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3259/shard-iclb2/igt@kms_psr@psr2_sprite_plane_onoff.html

  
  [fdo#103166]: https://bugs.freedesktop.org/show_bug.cgi?id=103166
  [fdo#103167]: https://bugs.freedesktop.org/show_bug.cgi?id=103167
  [fdo#103232]: https://bugs.freedesktop.org/show_bug.cgi?id=103232
  [fdo#103540]: https://bugs.freedesktop.org/show_bug.cgi?id=103540
  [fdo#103665]: https://bugs.freedesktop.org/show_bug.cgi?id=103665
  [fdo#105010]: https://bugs.freedesktop.org/show_bug.cgi?id=105010
  [fdo#105767]: https://bugs.freedesktop.org/show_bug.cgi?id=105767
  [fdo#107713]: https://bugs.freedesktop.org/show_bug.cgi?id=107713
  [fdo#108566]: https://bugs.freedesktop.org/show_bug.cgi?id=108566
  [fdo#109271]: https://bugs.freedesktop.org/show_bug.cgi?id=109271
  [fdo#109307]: https://bugs.freedesktop.org/show_bug.cgi?id=109307
  [fdo#109441]: https://bugs.freedesktop.org/show_bug.cgi?id=109441
  [fdo#109642]: https://bugs.freedesktop.org/show_bug.cgi?id=109642
  [fdo#111068]: https://bugs.freedesktop.org/show_bug.cgi?id=111068
  [fdo#99912]: https://bugs.freedesktop.org/show_bug.cgi?id=99912


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

  Missing    (5): shard-skl pig-hsw-4770r pig-snb-2600 pig-glk-j5005 pig-skl-6260u 


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

  * IGT: IGT_5094 -> IGTPW_3259
  * Piglit: piglit_4509 -> None

  CI_DRM_6460: 32d52650873db547f6702f12ebdbae3e8e052dad @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_3259: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3259/
  IGT_5094: d7f140b5b02d054183a74842b4579cf7f5533927 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
  piglit_4509: fdc5a4ca11124ab8413c7988896eec4c97336694 @ git://anongit.freedesktop.org/piglit

== Logs ==

For more details see: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_3259/
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

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

end of thread, other threads:[~2019-07-12 17:10 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-07-11 14:10 [PATCH i-g-t] intel_l3_parity: Restore support for Ivybridge Chris Wilson
2019-07-11 14:10 ` [Intel-gfx] " Chris Wilson
2019-07-11 14:27 ` Ville Syrjälä
2019-07-11 14:27   ` [igt-dev] [Intel-gfx] " Ville Syrjälä
2019-07-11 14:33   ` Ville Syrjälä
2019-07-11 14:33     ` [Intel-gfx] " Ville Syrjälä
2019-07-11 17:45 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
2019-07-12 17:10 ` [igt-dev] ✓ Fi.CI.IGT: " Patchwork

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.