All of lore.kernel.org
 help / color / mirror / Atom feed
* [Bug 109493] [CI][DRMTIP] igt@gem_cpu_reloc@forked - fail - igt_skip: Assertion `!test_child' failed.
       [not found] <bug-109493-502@http.bugs.freedesktop.org/>
@ 2019-01-29 12:16 ` bugzilla-daemon
  2019-01-30 11:30 ` bugzilla-daemon
                   ` (4 subsequent siblings)
  5 siblings, 0 replies; 6+ messages in thread
From: bugzilla-daemon @ 2019-01-29 12:16 UTC (permalink / raw)
  To: dri-devel


[-- Attachment #1.1: Type: text/plain, Size: 790 bytes --]

https://bugs.freedesktop.org/show_bug.cgi?id=109493

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
         QA Contact|intel-gfx-bugs@lists.freede |
                   |sktop.org                   |
           Assignee|intel-gfx-bugs@lists.freede |dri-devel@lists.freedesktop
                   |sktop.org                   |.org
          Component|DRM/Intel                   |IGT

--- Comment #2 from Chris Wilson <chris@chris-wilson.co.uk> ---
igt mishandling a igt_skip from inside an igt_fork; usually procedure is to
move the skip check before the fork.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[-- Attachment #1.2: Type: text/html, Size: 2482 bytes --]

[-- Attachment #2: Type: text/plain, Size: 160 bytes --]

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel

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

* [Bug 109493] [CI][DRMTIP] igt@gem_cpu_reloc@forked - fail - igt_skip: Assertion `!test_child' failed.
       [not found] <bug-109493-502@http.bugs.freedesktop.org/>
  2019-01-29 12:16 ` [Bug 109493] [CI][DRMTIP] igt@gem_cpu_reloc@forked - fail - igt_skip: Assertion `!test_child' failed bugzilla-daemon
@ 2019-01-30 11:30 ` bugzilla-daemon
  2019-01-30 16:21 ` bugzilla-daemon
                   ` (3 subsequent siblings)
  5 siblings, 0 replies; 6+ messages in thread
From: bugzilla-daemon @ 2019-01-30 11:30 UTC (permalink / raw)
  To: dri-devel


[-- Attachment #1.1: Type: text/plain, Size: 323 bytes --]

https://bugs.freedesktop.org/show_bug.cgi?id=109493

--- Comment #3 from Chris Wilson <chris@chris-wilson.co.uk> ---
Hmm, there are no skips here, so the test failed and we got no error message
from the child. That's quite a nasty igt bug.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[-- Attachment #1.2: Type: text/html, Size: 1205 bytes --]

[-- Attachment #2: Type: text/plain, Size: 160 bytes --]

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel

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

* [Bug 109493] [CI][DRMTIP] igt@gem_cpu_reloc@forked - fail - igt_skip: Assertion `!test_child' failed.
       [not found] <bug-109493-502@http.bugs.freedesktop.org/>
  2019-01-29 12:16 ` [Bug 109493] [CI][DRMTIP] igt@gem_cpu_reloc@forked - fail - igt_skip: Assertion `!test_child' failed bugzilla-daemon
  2019-01-30 11:30 ` bugzilla-daemon
@ 2019-01-30 16:21 ` bugzilla-daemon
  2019-01-31  9:44 ` bugzilla-daemon
                   ` (2 subsequent siblings)
  5 siblings, 0 replies; 6+ messages in thread
From: bugzilla-daemon @ 2019-01-30 16:21 UTC (permalink / raw)
  To: dri-devel


[-- Attachment #1.1: Type: text/plain, Size: 227 bytes --]

https://bugs.freedesktop.org/show_bug.cgi?id=109493

--- Comment #4 from Chris Wilson <chris@chris-wilson.co.uk> ---
Found the skip, patch sent.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[-- Attachment #1.2: Type: text/html, Size: 1109 bytes --]

[-- Attachment #2: Type: text/plain, Size: 160 bytes --]

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel

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

* [Bug 109493] [CI][DRMTIP] igt@gem_cpu_reloc@forked - fail - igt_skip: Assertion `!test_child' failed.
       [not found] <bug-109493-502@http.bugs.freedesktop.org/>
                   ` (2 preceding siblings ...)
  2019-01-30 16:21 ` bugzilla-daemon
@ 2019-01-31  9:44 ` bugzilla-daemon
  2019-03-06 18:01 ` bugzilla-daemon
  2019-03-06 18:01 ` bugzilla-daemon
  5 siblings, 0 replies; 6+ messages in thread
From: bugzilla-daemon @ 2019-01-31  9:44 UTC (permalink / raw)
  To: dri-devel


[-- Attachment #1.1: Type: text/plain, Size: 1190 bytes --]

https://bugs.freedesktop.org/show_bug.cgi?id=109493

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

           What    |Removed                     |Added
----------------------------------------------------------------------------
         Resolution|---                         |FIXED
             Status|NEW                         |RESOLVED

--- Comment #5 from Chris Wilson <chris@chris-wilson.co.uk> ---
commit 4049adf01014af077df2174def4fadf7cecb066e (HEAD, upstream/master)
Author: Chris Wilson <chris@chris-wilson.co.uk>
Date:   Wed Jan 30 16:18:58 2019 +0000

    i915/gem_cpu_reloc: Do the can-store-dword check at start

    igt doesn't handle skipping from inside igt_fork very gracefully and
    crashes instead of reporting the lack of requirements. One solution
    would be to fix igt, but far easier is to just move the requirement
    checking around to do it before we even fork.

    Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=109493
    Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
    Reviewed-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com>

-- 
You are receiving this mail because:
You are the assignee for the bug.

[-- Attachment #1.2: Type: text/html, Size: 3250 bytes --]

[-- Attachment #2: Type: text/plain, Size: 160 bytes --]

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel

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

* [Bug 109493] [CI][DRMTIP] igt@gem_cpu_reloc@forked - fail - igt_skip: Assertion `!test_child' failed.
       [not found] <bug-109493-502@http.bugs.freedesktop.org/>
                   ` (3 preceding siblings ...)
  2019-01-31  9:44 ` bugzilla-daemon
@ 2019-03-06 18:01 ` bugzilla-daemon
  2019-03-06 18:01 ` bugzilla-daemon
  5 siblings, 0 replies; 6+ messages in thread
From: bugzilla-daemon @ 2019-03-06 18:01 UTC (permalink / raw)
  To: dri-devel


[-- Attachment #1.1: Type: text/plain, Size: 1337 bytes --]

https://bugs.freedesktop.org/show_bug.cgi?id=109493

Martin Peres <martin.peres@free.fr> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|RESOLVED                    |CLOSED

--- Comment #6 from Martin Peres <martin.peres@free.fr> ---
(In reply to Chris Wilson from comment #5)
> commit 4049adf01014af077df2174def4fadf7cecb066e (HEAD, upstream/master)
> Author: Chris Wilson <chris@chris-wilson.co.uk>
> Date:   Wed Jan 30 16:18:58 2019 +0000
> 
>     i915/gem_cpu_reloc: Do the can-store-dword check at start
>     
>     igt doesn't handle skipping from inside igt_fork very gracefully and
>     crashes instead of reporting the lack of requirements. One solution
>     would be to fix igt, but far easier is to just move the requirement
>     checking around to do it before we even fork.
>     
>     Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=109493
>     Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
>     Reviewed-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com>

Thanks, it definitely did the trick as it was seen twice every single run
between drmtip_197 and 203, and nothing for 34 runs :)

-- 
You are receiving this mail because:
You are the assignee for the bug.

[-- Attachment #1.2: Type: text/html, Size: 3375 bytes --]

[-- Attachment #2: Type: text/plain, Size: 159 bytes --]

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel

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

* [Bug 109493] [CI][DRMTIP] igt@gem_cpu_reloc@forked - fail - igt_skip: Assertion `!test_child' failed.
       [not found] <bug-109493-502@http.bugs.freedesktop.org/>
                   ` (4 preceding siblings ...)
  2019-03-06 18:01 ` bugzilla-daemon
@ 2019-03-06 18:01 ` bugzilla-daemon
  5 siblings, 0 replies; 6+ messages in thread
From: bugzilla-daemon @ 2019-03-06 18:01 UTC (permalink / raw)
  To: dri-devel


[-- Attachment #1.1: Type: text/plain, Size: 342 bytes --]

https://bugs.freedesktop.org/show_bug.cgi?id=109493

--- Comment #7 from CI Bug Log <cibuglog@gmail.com> ---
The CI Bug Log issue associated to this bug has been archived.

New failures matching the above filters will not be associated to this bug
anymore.

-- 
You are receiving this mail because:
You are the assignee for the bug.

[-- Attachment #1.2: Type: text/html, Size: 1260 bytes --]

[-- Attachment #2: Type: text/plain, Size: 159 bytes --]

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel

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

end of thread, other threads:[~2019-03-06 18:01 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <bug-109493-502@http.bugs.freedesktop.org/>
2019-01-29 12:16 ` [Bug 109493] [CI][DRMTIP] igt@gem_cpu_reloc@forked - fail - igt_skip: Assertion `!test_child' failed bugzilla-daemon
2019-01-30 11:30 ` bugzilla-daemon
2019-01-30 16:21 ` bugzilla-daemon
2019-01-31  9:44 ` bugzilla-daemon
2019-03-06 18:01 ` bugzilla-daemon
2019-03-06 18:01 ` bugzilla-daemon

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.