All of lore.kernel.org
 help / color / mirror / Atom feed
* [igt-dev] [PATCH i-g-t] tests/gem_close_race: Wait for work to complete before terminating test
@ 2018-04-11 21:45 Antonio Argenziano
  2018-04-11 21:52 ` Chris Wilson
                   ` (5 more replies)
  0 siblings, 6 replies; 10+ messages in thread
From: Antonio Argenziano @ 2018-04-11 21:45 UTC (permalink / raw)
  To: igt-dev

Make sure all outstanding work has completed before exiting the test.

Signed-off-by: Antonio Argenziano <antonio.argenziano@intel.com>
---
 tests/gem_close_race.c | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/tests/gem_close_race.c b/tests/gem_close_race.c
index bc1127b1..11d626dc 100644
--- a/tests/gem_close_race.c
+++ b/tests/gem_close_race.c
@@ -148,6 +148,8 @@ static void process(int child)
 	handle = load(fd);
 	if ((child & 63) == 63)
 		gem_read(fd, handle, 0, &handle, sizeof(handle));
+
+	gem_quiescent_gpu(fd);
 }
 
 struct crashme {
@@ -203,6 +205,8 @@ static void threads(int timeout)
 	}
 
 	timer_delete(timer);
+
+	gem_quiescent_gpu(fd);
 	close(fd);
 }
 
-- 
2.16.2

_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

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

* Re: [igt-dev] [PATCH i-g-t] tests/gem_close_race: Wait for work to complete before terminating test
  2018-04-11 21:45 [igt-dev] [PATCH i-g-t] tests/gem_close_race: Wait for work to complete before terminating test Antonio Argenziano
@ 2018-04-11 21:52 ` Chris Wilson
  2018-04-11 22:08   ` Antonio Argenziano
  2018-04-11 22:30 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
                   ` (4 subsequent siblings)
  5 siblings, 1 reply; 10+ messages in thread
From: Chris Wilson @ 2018-04-11 21:52 UTC (permalink / raw)
  To: Antonio Argenziano, igt-dev

Quoting Antonio Argenziano (2018-04-11 22:45:31)
> Make sure all outstanding work has completed before exiting the test.

Why? 10 more words to explain all...
(Hint: s/test/subtest/)
-Chris
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

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

* Re: [igt-dev] [PATCH i-g-t] tests/gem_close_race: Wait for work to complete before terminating test
  2018-04-11 21:52 ` Chris Wilson
@ 2018-04-11 22:08   ` Antonio Argenziano
  2018-04-11 22:16     ` Chris Wilson
  0 siblings, 1 reply; 10+ messages in thread
From: Antonio Argenziano @ 2018-04-11 22:08 UTC (permalink / raw)
  To: Chris Wilson, igt-dev



On 11/04/18 14:52, Chris Wilson wrote:
> Quoting Antonio Argenziano (2018-04-11 22:45:31)
>> Make sure all outstanding work has completed before exiting the test.
> 
> Why? 10 more words to explain all...

When running a single subtest outstanding work might hang after the test 
ends escaping detection by the hang_detector.

More than 10 words but that is what happened to me :).

Thanks,
Antonio

> (Hint: s/test/subtest/)
> -Chris
> 
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

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

* Re: [igt-dev] [PATCH i-g-t] tests/gem_close_race: Wait for work to complete before terminating test
  2018-04-11 22:08   ` Antonio Argenziano
@ 2018-04-11 22:16     ` Chris Wilson
  2018-04-11 22:29       ` Antonio Argenziano
  0 siblings, 1 reply; 10+ messages in thread
From: Chris Wilson @ 2018-04-11 22:16 UTC (permalink / raw)
  To: Antonio Argenziano, igt-dev

Quoting Antonio Argenziano (2018-04-11 23:08:01)
> 
> 
> On 11/04/18 14:52, Chris Wilson wrote:
> > Quoting Antonio Argenziano (2018-04-11 22:45:31)
> >> Make sure all outstanding work has completed before exiting the test.
> > 
> > Why? 10 more words to explain all...
> 
> When running a single subtest outstanding work might hang after the test 
> ends escaping detection by the hang_detector.

Cool, that's the reason I thought justified the patch.

Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>

I was debating whether or not stop_hang_detector should do the
quiescing, but probably best to leave it flexible and up to the
caller.
-Chris
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

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

* Re: [igt-dev] [PATCH i-g-t] tests/gem_close_race: Wait for work to complete before terminating test
  2018-04-11 22:16     ` Chris Wilson
@ 2018-04-11 22:29       ` Antonio Argenziano
  0 siblings, 0 replies; 10+ messages in thread
From: Antonio Argenziano @ 2018-04-11 22:29 UTC (permalink / raw)
  To: Chris Wilson, igt-dev



On 11/04/18 15:16, Chris Wilson wrote:
> Quoting Antonio Argenziano (2018-04-11 23:08:01)
>>
>>
>> On 11/04/18 14:52, Chris Wilson wrote:
>>> Quoting Antonio Argenziano (2018-04-11 22:45:31)
>>>> Make sure all outstanding work has completed before exiting the test.
>>>
>>> Why? 10 more words to explain all...
>>
>> When running a single subtest outstanding work might hang after the test
>> ends escaping detection by the hang_detector.
> 
> Cool, that's the reason I thought justified the patch.
> 
> Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>

Thanks, I'll resent with an updated commit message and push.

Antonio

> 
> I was debating whether or not stop_hang_detector should do the
> quiescing, but probably best to leave it flexible and up to the
> caller.
> -Chris
> 
_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

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

* [igt-dev] ✓ Fi.CI.BAT: success for tests/gem_close_race: Wait for work to complete before terminating test
  2018-04-11 21:45 [igt-dev] [PATCH i-g-t] tests/gem_close_race: Wait for work to complete before terminating test Antonio Argenziano
  2018-04-11 21:52 ` Chris Wilson
@ 2018-04-11 22:30 ` Patchwork
  2018-04-11 22:32 ` [igt-dev] [PATCH i-g-t v2] " Antonio Argenziano
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2018-04-11 22:30 UTC (permalink / raw)
  To: Antonio Argenziano; +Cc: igt-dev

== Series Details ==

Series: tests/gem_close_race: Wait for work to complete before terminating test
URL   : https://patchwork.freedesktop.org/series/41585/
State : success

== Summary ==

= CI Bug Log - changes from IGT_4423 -> IGTPW_1248 =

== Summary - SUCCESS ==

  No regressions found.

  External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_1248/

== Known issues ==

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

  === IGT changes ===

    ==== Issues hit ====

    igt@gem_ringfill@basic-default-hang:
      fi-blb-e6850:       NOTRUN -> DMESG-WARN (fdo#101600)
      fi-pnv-d510:        NOTRUN -> DMESG-WARN (fdo#101600)

    
  fdo#101600 https://bugs.freedesktop.org/show_bug.cgi?id=101600


== Participating hosts (27 -> 32) ==

  Additional (7): fi-kbl-7567u fi-bxt-dsi fi-skl-gvtdvm fi-bdw-gvtdvm fi-pnv-d510 fi-elk-e7500 fi-blb-e6850 
  Missing    (2): fi-ilk-m540 fi-skl-6700hq 


== Build changes ==

    * IGT: IGT_4423 -> IGTPW_1248
    * Linux: CI_DRM_4046 -> CI_DRM_4047
    * Piglit: piglit_4423 -> piglit_4425

  CI_DRM_4046: d123888920ccd112851ade43a3bf1c25627c2316 @ git://anongit.freedesktop.org/gfx-ci/linux
  CI_DRM_4047: b21f4ebec3a255026a780ee4a35ec5f8d9ede6cd @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_1248: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_1248/
  IGT_4423: d502f055ac4500cada758876a512ac4f14b34851 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
  piglit_4423: 45e115f293fd6acc0c9647cf2d3b76be78819ba5 @ git://anongit.freedesktop.org/piglit
  piglit_4425: 7cf9e743a90f31bec470912e54afb0243efdd67d @ git://anongit.freedesktop.org/piglit

== Logs ==

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

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

* [igt-dev] [PATCH i-g-t v2] tests/gem_close_race: Wait for work to complete before terminating test
  2018-04-11 21:45 [igt-dev] [PATCH i-g-t] tests/gem_close_race: Wait for work to complete before terminating test Antonio Argenziano
  2018-04-11 21:52 ` Chris Wilson
  2018-04-11 22:30 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
@ 2018-04-11 22:32 ` Antonio Argenziano
  2018-04-11 23:02 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/gem_close_race: Wait for work to complete before terminating test (rev2) Patchwork
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 10+ messages in thread
From: Antonio Argenziano @ 2018-04-11 22:32 UTC (permalink / raw)
  To: igt-dev

When running a single subtest, outstanding work might hang after the test
ends therefore escaping detection by the hang_detector.

v2:
	- Update commit message. (Chris)

Signed-off-by: Antonio Argenziano <antonio.argenziano@intel.com>
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
---
 tests/gem_close_race.c | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/tests/gem_close_race.c b/tests/gem_close_race.c
index bc1127b1..11d626dc 100644
--- a/tests/gem_close_race.c
+++ b/tests/gem_close_race.c
@@ -148,6 +148,8 @@ static void process(int child)
 	handle = load(fd);
 	if ((child & 63) == 63)
 		gem_read(fd, handle, 0, &handle, sizeof(handle));
+
+	gem_quiescent_gpu(fd);
 }
 
 struct crashme {
@@ -203,6 +205,8 @@ static void threads(int timeout)
 	}
 
 	timer_delete(timer);
+
+	gem_quiescent_gpu(fd);
 	close(fd);
 }
 
-- 
2.16.2

_______________________________________________
igt-dev mailing list
igt-dev@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/igt-dev

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

* [igt-dev] ✓ Fi.CI.BAT: success for tests/gem_close_race: Wait for work to complete before terminating test (rev2)
  2018-04-11 21:45 [igt-dev] [PATCH i-g-t] tests/gem_close_race: Wait for work to complete before terminating test Antonio Argenziano
                   ` (2 preceding siblings ...)
  2018-04-11 22:32 ` [igt-dev] [PATCH i-g-t v2] " Antonio Argenziano
@ 2018-04-11 23:02 ` Patchwork
  2018-04-12  1:30 ` [igt-dev] ✓ Fi.CI.IGT: success for tests/gem_close_race: Wait for work to complete before terminating test Patchwork
  2018-04-12  2:05 ` [igt-dev] ✓ Fi.CI.IGT: success for tests/gem_close_race: Wait for work to complete before terminating test (rev2) Patchwork
  5 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2018-04-11 23:02 UTC (permalink / raw)
  To: Antonio Argenziano; +Cc: igt-dev

== Series Details ==

Series: tests/gem_close_race: Wait for work to complete before terminating test (rev2)
URL   : https://patchwork.freedesktop.org/series/41585/
State : success

== Summary ==

= CI Bug Log - changes from IGT_4423 -> IGTPW_1249 =

== Summary - SUCCESS ==

  No regressions found.

  External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_1249/

== Known issues ==

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

  === IGT changes ===

    ==== Issues hit ====

    igt@gem_ringfill@basic-default-hang:
      fi-blb-e6850:       NOTRUN -> DMESG-WARN (fdo#101600)
      fi-pnv-d510:        NOTRUN -> DMESG-WARN (fdo#101600)

    
  fdo#101600 https://bugs.freedesktop.org/show_bug.cgi?id=101600


== Participating hosts (27 -> 32) ==

  Additional (7): fi-kbl-7567u fi-bxt-dsi fi-skl-gvtdvm fi-bdw-gvtdvm fi-pnv-d510 fi-elk-e7500 fi-blb-e6850 
  Missing    (2): fi-ilk-m540 fi-skl-6700hq 


== Build changes ==

    * IGT: IGT_4423 -> IGTPW_1249
    * Linux: CI_DRM_4046 -> CI_DRM_4047
    * Piglit: piglit_4423 -> piglit_4425

  CI_DRM_4046: d123888920ccd112851ade43a3bf1c25627c2316 @ git://anongit.freedesktop.org/gfx-ci/linux
  CI_DRM_4047: b21f4ebec3a255026a780ee4a35ec5f8d9ede6cd @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_1249: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_1249/
  IGT_4423: d502f055ac4500cada758876a512ac4f14b34851 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
  piglit_4423: 45e115f293fd6acc0c9647cf2d3b76be78819ba5 @ git://anongit.freedesktop.org/piglit
  piglit_4425: 7cf9e743a90f31bec470912e54afb0243efdd67d @ git://anongit.freedesktop.org/piglit

== Logs ==

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

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

* [igt-dev] ✓ Fi.CI.IGT: success for tests/gem_close_race: Wait for work to complete before terminating test
  2018-04-11 21:45 [igt-dev] [PATCH i-g-t] tests/gem_close_race: Wait for work to complete before terminating test Antonio Argenziano
                   ` (3 preceding siblings ...)
  2018-04-11 23:02 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/gem_close_race: Wait for work to complete before terminating test (rev2) Patchwork
@ 2018-04-12  1:30 ` Patchwork
  2018-04-12  2:05 ` [igt-dev] ✓ Fi.CI.IGT: success for tests/gem_close_race: Wait for work to complete before terminating test (rev2) Patchwork
  5 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2018-04-12  1:30 UTC (permalink / raw)
  To: Antonio Argenziano; +Cc: igt-dev

== Series Details ==

Series: tests/gem_close_race: Wait for work to complete before terminating test
URL   : https://patchwork.freedesktop.org/series/41585/
State : success

== Summary ==

= CI Bug Log - changes from IGT_4423_full -> IGTPW_1248_full =

== Summary - SUCCESS ==

  No regressions found.

  External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_1248/

== Known issues ==

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

  === IGT changes ===

    ==== Issues hit ====

    igt@kms_flip@wf_vblank-ts-check:
      shard-hsw:          PASS -> FAIL (fdo#103928)

    igt@kms_frontbuffer_tracking@fbc-1p-primscrn-pri-indfb-draw-pwrite:
      shard-hsw:          PASS -> DMESG-WARN (fdo#102614)

    
    ==== Possible fixes ====

    igt@kms_flip@2x-dpms-vs-vblank-race-interruptible:
      shard-hsw:          FAIL (fdo#103060) -> PASS +1

    igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
      shard-hsw:          FAIL (fdo#100368) -> PASS +1

    igt@kms_plane_multiple@atomic-pipe-a-tiling-x:
      shard-snb:          FAIL (fdo#103166) -> PASS

    igt@kms_rotation_crc@primary-rotation-180:
      shard-snb:          FAIL (fdo#103925) -> PASS

    
  fdo#100368 https://bugs.freedesktop.org/show_bug.cgi?id=100368
  fdo#102614 https://bugs.freedesktop.org/show_bug.cgi?id=102614
  fdo#103060 https://bugs.freedesktop.org/show_bug.cgi?id=103060
  fdo#103166 https://bugs.freedesktop.org/show_bug.cgi?id=103166
  fdo#103925 https://bugs.freedesktop.org/show_bug.cgi?id=103925
  fdo#103928 https://bugs.freedesktop.org/show_bug.cgi?id=103928


== Participating hosts (5 -> 4) ==

  Missing    (1): shard-glkb 


== Build changes ==

    * IGT: IGT_4423 -> IGTPW_1248
    * Linux: CI_DRM_4046 -> CI_DRM_4047
    * Piglit: piglit_4423 -> piglit_4425

  CI_DRM_4046: d123888920ccd112851ade43a3bf1c25627c2316 @ git://anongit.freedesktop.org/gfx-ci/linux
  CI_DRM_4047: b21f4ebec3a255026a780ee4a35ec5f8d9ede6cd @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_1248: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_1248/
  IGT_4423: d502f055ac4500cada758876a512ac4f14b34851 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
  piglit_4423: 45e115f293fd6acc0c9647cf2d3b76be78819ba5 @ git://anongit.freedesktop.org/piglit
  piglit_4425: 7cf9e743a90f31bec470912e54afb0243efdd67d @ git://anongit.freedesktop.org/piglit

== Logs ==

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

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

* [igt-dev] ✓ Fi.CI.IGT: success for tests/gem_close_race: Wait for work to complete before terminating test (rev2)
  2018-04-11 21:45 [igt-dev] [PATCH i-g-t] tests/gem_close_race: Wait for work to complete before terminating test Antonio Argenziano
                   ` (4 preceding siblings ...)
  2018-04-12  1:30 ` [igt-dev] ✓ Fi.CI.IGT: success for tests/gem_close_race: Wait for work to complete before terminating test Patchwork
@ 2018-04-12  2:05 ` Patchwork
  5 siblings, 0 replies; 10+ messages in thread
From: Patchwork @ 2018-04-12  2:05 UTC (permalink / raw)
  To: Antonio Argenziano; +Cc: igt-dev

== Series Details ==

Series: tests/gem_close_race: Wait for work to complete before terminating test (rev2)
URL   : https://patchwork.freedesktop.org/series/41585/
State : success

== Summary ==

= CI Bug Log - changes from IGT_4423_full -> IGTPW_1249_full =

== Summary - SUCCESS ==

  No regressions found.

  External URL: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_1249/

== Known issues ==

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

  === IGT changes ===

    ==== Issues hit ====

    igt@kms_atomic_transition@1x-modeset-transitions:
      shard-apl:          PASS -> FAIL (fdo#103207)

    igt@kms_flip@modeset-vs-vblank-race-interruptible:
      shard-hsw:          PASS -> FAIL (fdo#103060)

    igt@kms_flip@plain-flip-ts-check:
      shard-hsw:          PASS -> FAIL (fdo#100368)

    igt@kms_pipe_crc_basic@read-crc-pipe-b-frame-sequence:
      shard-kbl:          PASS -> INCOMPLETE (fdo#103665)

    igt@kms_rotation_crc@sprite-rotation-180:
      shard-snb:          PASS -> FAIL (fdo#103925)

    
    ==== Possible fixes ====

    igt@kms_flip@2x-dpms-vs-vblank-race-interruptible:
      shard-hsw:          FAIL (fdo#103060) -> PASS +1

    igt@kms_flip@2x-plain-flip-fb-recreate-interruptible:
      shard-hsw:          FAIL (fdo#100368) -> PASS +1

    igt@kms_plane_multiple@atomic-pipe-a-tiling-x:
      shard-snb:          FAIL (fdo#103166) -> PASS

    igt@kms_rotation_crc@primary-rotation-180:
      shard-snb:          FAIL (fdo#103925) -> PASS

    
  fdo#100368 https://bugs.freedesktop.org/show_bug.cgi?id=100368
  fdo#103060 https://bugs.freedesktop.org/show_bug.cgi?id=103060
  fdo#103166 https://bugs.freedesktop.org/show_bug.cgi?id=103166
  fdo#103207 https://bugs.freedesktop.org/show_bug.cgi?id=103207
  fdo#103665 https://bugs.freedesktop.org/show_bug.cgi?id=103665
  fdo#103925 https://bugs.freedesktop.org/show_bug.cgi?id=103925


== Participating hosts (5 -> 4) ==

  Missing    (1): shard-glkb 


== Build changes ==

    * IGT: IGT_4423 -> IGTPW_1249
    * Linux: CI_DRM_4046 -> CI_DRM_4047
    * Piglit: piglit_4423 -> piglit_4425

  CI_DRM_4046: d123888920ccd112851ade43a3bf1c25627c2316 @ git://anongit.freedesktop.org/gfx-ci/linux
  CI_DRM_4047: b21f4ebec3a255026a780ee4a35ec5f8d9ede6cd @ git://anongit.freedesktop.org/gfx-ci/linux
  IGTPW_1249: https://intel-gfx-ci.01.org/tree/drm-tip/IGTPW_1249/
  IGT_4423: d502f055ac4500cada758876a512ac4f14b34851 @ git://anongit.freedesktop.org/xorg/app/intel-gpu-tools
  piglit_4423: 45e115f293fd6acc0c9647cf2d3b76be78819ba5 @ git://anongit.freedesktop.org/piglit
  piglit_4425: 7cf9e743a90f31bec470912e54afb0243efdd67d @ git://anongit.freedesktop.org/piglit

== Logs ==

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

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

end of thread, other threads:[~2018-04-12  2:05 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-04-11 21:45 [igt-dev] [PATCH i-g-t] tests/gem_close_race: Wait for work to complete before terminating test Antonio Argenziano
2018-04-11 21:52 ` Chris Wilson
2018-04-11 22:08   ` Antonio Argenziano
2018-04-11 22:16     ` Chris Wilson
2018-04-11 22:29       ` Antonio Argenziano
2018-04-11 22:30 ` [igt-dev] ✓ Fi.CI.BAT: success for " Patchwork
2018-04-11 22:32 ` [igt-dev] [PATCH i-g-t v2] " Antonio Argenziano
2018-04-11 23:02 ` [igt-dev] ✓ Fi.CI.BAT: success for tests/gem_close_race: Wait for work to complete before terminating test (rev2) Patchwork
2018-04-12  1:30 ` [igt-dev] ✓ Fi.CI.IGT: success for tests/gem_close_race: Wait for work to complete before terminating test Patchwork
2018-04-12  2:05 ` [igt-dev] ✓ Fi.CI.IGT: success for tests/gem_close_race: Wait for work to complete before terminating test (rev2) 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.