All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] drm/i915: Remove incorrect warning in context cleanup
@ 2015-11-20 13:23 Tvrtko Ursulin
  2015-11-24 10:58 ` Daniel Vetter
  0 siblings, 1 reply; 9+ messages in thread
From: Tvrtko Ursulin @ 2015-11-20 13:23 UTC (permalink / raw)
  To: Intel-gfx; +Cc: Daniel Vetter

From: Tvrtko Ursulin <tvrtko.ursulin@intel.com>

Commit e9f24d5fb7cf3628b195b18ff3ac4e37937ceeae
Author: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
Date:   Mon Oct 5 13:26:36 2015 +0100

    drm/i915: Clean up associated VMAs on context destruction

Added a warning based on an incorrect assumption that all VMAs
in a VM will be on the inactive list at the point last reference
to a context and VM is dropped.

This is not true because i915_gem_object_retire__read will not
put VMA on the inactive list until all activities on the object
in question (in all VMs) have been retired.

As a consequence, whether or not a context/VM will be destroyed
with its VMAs still on the active list, can depend on completely
unrelated activities using the same object from a different
context or engine.

Signed-off-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=92638
Testcase: igt/gem_request_retire/retire-vma-not-inactive
Cc: Daniel Vetter <daniel.vetter@ffwll.ch>
Cc: Chris Wilson <chris@chris-wilson.co.uk>
Cc: Michel Thierry <michel.thierry@intel.com>
---
 drivers/gpu/drm/i915/i915_gem_context.c | 2 --
 1 file changed, 2 deletions(-)

diff --git a/drivers/gpu/drm/i915/i915_gem_context.c b/drivers/gpu/drm/i915/i915_gem_context.c
index 204dc7c0b2d6..59dba318213e 100644
--- a/drivers/gpu/drm/i915/i915_gem_context.c
+++ b/drivers/gpu/drm/i915/i915_gem_context.c
@@ -141,8 +141,6 @@ static void i915_gem_context_clean(struct intel_context *ctx)
 	if (!ppgtt)
 		return;
 
-	WARN_ON(!list_empty(&ppgtt->base.active_list));
-
 	list_for_each_entry_safe(vma, next, &ppgtt->base.inactive_list,
 				 mm_list) {
 		if (WARN_ON(__i915_vma_unbind_no_wait(vma)))
-- 
1.9.1

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

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

* Re: [PATCH] drm/i915: Remove incorrect warning in context cleanup
  2015-11-20 13:23 [PATCH] drm/i915: Remove incorrect warning in context cleanup Tvrtko Ursulin
@ 2015-11-24 10:58 ` Daniel Vetter
  2015-11-24 12:53   ` Chris Wilson
  0 siblings, 1 reply; 9+ messages in thread
From: Daniel Vetter @ 2015-11-24 10:58 UTC (permalink / raw)
  To: Tvrtko Ursulin; +Cc: Daniel Vetter, Intel-gfx

On Fri, Nov 20, 2015 at 01:23:36PM +0000, Tvrtko Ursulin wrote:
> From: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
> 
> Commit e9f24d5fb7cf3628b195b18ff3ac4e37937ceeae
> Author: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
> Date:   Mon Oct 5 13:26:36 2015 +0100
> 
>     drm/i915: Clean up associated VMAs on context destruction
> 
> Added a warning based on an incorrect assumption that all VMAs
> in a VM will be on the inactive list at the point last reference
> to a context and VM is dropped.
> 
> This is not true because i915_gem_object_retire__read will not
> put VMA on the inactive list until all activities on the object
> in question (in all VMs) have been retired.
> 
> As a consequence, whether or not a context/VM will be destroyed
> with its VMAs still on the active list, can depend on completely
> unrelated activities using the same object from a different
> context or engine.
> 
> Signed-off-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
> Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=92638
> Testcase: igt/gem_request_retire/retire-vma-not-inactive
> Cc: Daniel Vetter <daniel.vetter@ffwll.ch>
> Cc: Chris Wilson <chris@chris-wilson.co.uk>
> Cc: Michel Thierry <michel.thierry@intel.com>

Queued for -next, thanks for the patch.
-Daniel

> ---
>  drivers/gpu/drm/i915/i915_gem_context.c | 2 --
>  1 file changed, 2 deletions(-)
> 
> diff --git a/drivers/gpu/drm/i915/i915_gem_context.c b/drivers/gpu/drm/i915/i915_gem_context.c
> index 204dc7c0b2d6..59dba318213e 100644
> --- a/drivers/gpu/drm/i915/i915_gem_context.c
> +++ b/drivers/gpu/drm/i915/i915_gem_context.c
> @@ -141,8 +141,6 @@ static void i915_gem_context_clean(struct intel_context *ctx)
>  	if (!ppgtt)
>  		return;
>  
> -	WARN_ON(!list_empty(&ppgtt->base.active_list));
> -
>  	list_for_each_entry_safe(vma, next, &ppgtt->base.inactive_list,
>  				 mm_list) {
>  		if (WARN_ON(__i915_vma_unbind_no_wait(vma)))
> -- 
> 1.9.1
> 

-- 
Daniel Vetter
Software Engineer, Intel Corporation
http://blog.ffwll.ch
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx

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

* Re: [PATCH] drm/i915: Remove incorrect warning in context cleanup
  2015-11-24 10:58 ` Daniel Vetter
@ 2015-11-24 12:53   ` Chris Wilson
  2015-11-24 13:17     ` Tvrtko Ursulin
  0 siblings, 1 reply; 9+ messages in thread
From: Chris Wilson @ 2015-11-24 12:53 UTC (permalink / raw)
  To: Daniel Vetter; +Cc: Daniel Vetter, Intel-gfx

On Tue, Nov 24, 2015 at 11:58:22AM +0100, Daniel Vetter wrote:
> On Fri, Nov 20, 2015 at 01:23:36PM +0000, Tvrtko Ursulin wrote:
> > From: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
> > 
> > Commit e9f24d5fb7cf3628b195b18ff3ac4e37937ceeae
> > Author: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
> > Date:   Mon Oct 5 13:26:36 2015 +0100
> > 
> >     drm/i915: Clean up associated VMAs on context destruction
> > 
> > Added a warning based on an incorrect assumption that all VMAs
> > in a VM will be on the inactive list at the point last reference
> > to a context and VM is dropped.
> > 
> > This is not true because i915_gem_object_retire__read will not
> > put VMA on the inactive list until all activities on the object
> > in question (in all VMs) have been retired.
> > 
> > As a consequence, whether or not a context/VM will be destroyed
> > with its VMAs still on the active list, can depend on completely
> > unrelated activities using the same object from a different
> > context or engine.
> > 
> > Signed-off-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
> > Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=92638
> > Testcase: igt/gem_request_retire/retire-vma-not-inactive
> > Cc: Daniel Vetter <daniel.vetter@ffwll.ch>
> > Cc: Chris Wilson <chris@chris-wilson.co.uk>
> > Cc: Michel Thierry <michel.thierry@intel.com>
> 
> Queued for -next, thanks for the patch.

The WARN_ON is accurate though. The original patch fails to fix even the
limited aspect of the bug it claimed to.
-Chris

-- 
Chris Wilson, Intel Open Source Technology Centre
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx

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

* Re: [PATCH] drm/i915: Remove incorrect warning in context cleanup
  2015-11-24 12:53   ` Chris Wilson
@ 2015-11-24 13:17     ` Tvrtko Ursulin
  2015-11-24 13:27       ` Chris Wilson
  0 siblings, 1 reply; 9+ messages in thread
From: Tvrtko Ursulin @ 2015-11-24 13:17 UTC (permalink / raw)
  To: Chris Wilson, Daniel Vetter, Intel-gfx, Tvrtko Ursulin,
	Daniel Vetter, Michel Thierry


On 24/11/15 12:53, Chris Wilson wrote:
> On Tue, Nov 24, 2015 at 11:58:22AM +0100, Daniel Vetter wrote:
>> On Fri, Nov 20, 2015 at 01:23:36PM +0000, Tvrtko Ursulin wrote:
>>> From: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
>>>
>>> Commit e9f24d5fb7cf3628b195b18ff3ac4e37937ceeae
>>> Author: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
>>> Date:   Mon Oct 5 13:26:36 2015 +0100
>>>
>>>      drm/i915: Clean up associated VMAs on context destruction
>>>
>>> Added a warning based on an incorrect assumption that all VMAs
>>> in a VM will be on the inactive list at the point last reference
>>> to a context and VM is dropped.
>>>
>>> This is not true because i915_gem_object_retire__read will not
>>> put VMA on the inactive list until all activities on the object
>>> in question (in all VMs) have been retired.
>>>
>>> As a consequence, whether or not a context/VM will be destroyed
>>> with its VMAs still on the active list, can depend on completely
>>> unrelated activities using the same object from a different
>>> context or engine.
>>>
>>> Signed-off-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
>>> Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=92638
>>> Testcase: igt/gem_request_retire/retire-vma-not-inactive
>>> Cc: Daniel Vetter <daniel.vetter@ffwll.ch>
>>> Cc: Chris Wilson <chris@chris-wilson.co.uk>
>>> Cc: Michel Thierry <michel.thierry@intel.com>
>>
>> Queued for -next, thanks for the patch.
>
> The WARN_ON is accurate though. The original patch fails to fix even the
> limited aspect of the bug it claimed to.

That is not true. It only makes it a bit more limited, and not by its 
fault even. Even with that it makes things a bit better, not worse.

And does not impede your VMA rewrite at all. For which I did offer help 
to review as you send out in manageable chunks.

If it is not realistically possible to split it out and do in 
increments, then it would be more constructive to discuss how to do it 
than to keep it in limbo for 15 months, as you say, and use it as a 
reason to shoot down everything else.

Regards,

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

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

* Re: [PATCH] drm/i915: Remove incorrect warning in context cleanup
  2015-11-24 13:17     ` Tvrtko Ursulin
@ 2015-11-24 13:27       ` Chris Wilson
  2015-11-24 13:29         ` Daniel Stone
  2015-11-24 13:56         ` Tvrtko Ursulin
  0 siblings, 2 replies; 9+ messages in thread
From: Chris Wilson @ 2015-11-24 13:27 UTC (permalink / raw)
  To: Tvrtko Ursulin; +Cc: Daniel Vetter, Intel-gfx

On Tue, Nov 24, 2015 at 01:17:57PM +0000, Tvrtko Ursulin wrote:
> 
> On 24/11/15 12:53, Chris Wilson wrote:
> >On Tue, Nov 24, 2015 at 11:58:22AM +0100, Daniel Vetter wrote:
> >>On Fri, Nov 20, 2015 at 01:23:36PM +0000, Tvrtko Ursulin wrote:
> >>>From: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
> >>>
> >>>Commit e9f24d5fb7cf3628b195b18ff3ac4e37937ceeae
> >>>Author: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
> >>>Date:   Mon Oct 5 13:26:36 2015 +0100
> >>>
> >>>     drm/i915: Clean up associated VMAs on context destruction
> >>>
> >>>Added a warning based on an incorrect assumption that all VMAs
> >>>in a VM will be on the inactive list at the point last reference
> >>>to a context and VM is dropped.
> >>>
> >>>This is not true because i915_gem_object_retire__read will not
> >>>put VMA on the inactive list until all activities on the object
> >>>in question (in all VMs) have been retired.
> >>>
> >>>As a consequence, whether or not a context/VM will be destroyed
> >>>with its VMAs still on the active list, can depend on completely
> >>>unrelated activities using the same object from a different
> >>>context or engine.
> >>>
> >>>Signed-off-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
> >>>Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=92638
> >>>Testcase: igt/gem_request_retire/retire-vma-not-inactive
> >>>Cc: Daniel Vetter <daniel.vetter@ffwll.ch>
> >>>Cc: Chris Wilson <chris@chris-wilson.co.uk>
> >>>Cc: Michel Thierry <michel.thierry@intel.com>
> >>
> >>Queued for -next, thanks for the patch.
> >
> >The WARN_ON is accurate though. The original patch fails to fix even the
> >limited aspect of the bug it claimed to.
> 
> That is not true. It only makes it a bit more limited, and not by
> its fault even. Even with that it makes things a bit better, not
> worse.

It makes the code worse for very limited improvement, for which we did
not have a publically reported bug, i.e. the impact is very small.
 
> And does not impede your VMA rewrite at all. For which I did offer
> help to review as you send out in manageable chunks.

I have been.
-Chris

-- 
Chris Wilson, Intel Open Source Technology Centre
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx

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

* Re: [PATCH] drm/i915: Remove incorrect warning in context cleanup
  2015-11-24 13:27       ` Chris Wilson
@ 2015-11-24 13:29         ` Daniel Stone
  2015-11-24 13:59           ` Daniel Vetter
  2015-11-24 13:56         ` Tvrtko Ursulin
  1 sibling, 1 reply; 9+ messages in thread
From: Daniel Stone @ 2015-11-24 13:29 UTC (permalink / raw)
  To: Chris Wilson, Tvrtko Ursulin, Daniel Vetter, intel-gfx,
	Tvrtko Ursulin, Daniel Vetter, Michel Thierry

Hi,

On 24 November 2015 at 13:27, Chris Wilson <chris@chris-wilson.co.uk> wrote:
> On Tue, Nov 24, 2015 at 01:17:57PM +0000, Tvrtko Ursulin wrote:
>> On 24/11/15 12:53, Chris Wilson wrote:
>> >The WARN_ON is accurate though. The original patch fails to fix even the
>> >limited aspect of the bug it claimed to.
>>
>> That is not true. It only makes it a bit more limited, and not by
>> its fault even. Even with that it makes things a bit better, not
>> worse.
>
> It makes the code worse for very limited improvement, for which we did
> not have a publically reported bug, i.e. the impact is very small.

I can get the person who reported it to me to raise a Bugzilla
complaining about the WARN_ON if you like ...

Cheers,
Daniel
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx

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

* Re: [PATCH] drm/i915: Remove incorrect warning in context cleanup
  2015-11-24 13:27       ` Chris Wilson
  2015-11-24 13:29         ` Daniel Stone
@ 2015-11-24 13:56         ` Tvrtko Ursulin
  1 sibling, 0 replies; 9+ messages in thread
From: Tvrtko Ursulin @ 2015-11-24 13:56 UTC (permalink / raw)
  To: Chris Wilson, Daniel Vetter, Intel-gfx, Tvrtko Ursulin,
	Daniel Vetter, Michel Thierry


On 24/11/15 13:27, Chris Wilson wrote:
> On Tue, Nov 24, 2015 at 01:17:57PM +0000, Tvrtko Ursulin wrote:
>>
>> On 24/11/15 12:53, Chris Wilson wrote:
>>> On Tue, Nov 24, 2015 at 11:58:22AM +0100, Daniel Vetter wrote:
>>>> On Fri, Nov 20, 2015 at 01:23:36PM +0000, Tvrtko Ursulin wrote:
>>>>> From: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
>>>>>
>>>>> Commit e9f24d5fb7cf3628b195b18ff3ac4e37937ceeae
>>>>> Author: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
>>>>> Date:   Mon Oct 5 13:26:36 2015 +0100
>>>>>
>>>>>      drm/i915: Clean up associated VMAs on context destruction
>>>>>
>>>>> Added a warning based on an incorrect assumption that all VMAs
>>>>> in a VM will be on the inactive list at the point last reference
>>>>> to a context and VM is dropped.
>>>>>
>>>>> This is not true because i915_gem_object_retire__read will not
>>>>> put VMA on the inactive list until all activities on the object
>>>>> in question (in all VMs) have been retired.
>>>>>
>>>>> As a consequence, whether or not a context/VM will be destroyed
>>>>> with its VMAs still on the active list, can depend on completely
>>>>> unrelated activities using the same object from a different
>>>>> context or engine.
>>>>>
>>>>> Signed-off-by: Tvrtko Ursulin <tvrtko.ursulin@intel.com>
>>>>> Bugzilla: https://bugs.freedesktop.org/show_bug.cgi?id=92638
>>>>> Testcase: igt/gem_request_retire/retire-vma-not-inactive
>>>>> Cc: Daniel Vetter <daniel.vetter@ffwll.ch>
>>>>> Cc: Chris Wilson <chris@chris-wilson.co.uk>
>>>>> Cc: Michel Thierry <michel.thierry@intel.com>
>>>>
>>>> Queued for -next, thanks for the patch.
>>>
>>> The WARN_ON is accurate though. The original patch fails to fix even the
>>> limited aspect of the bug it claimed to.
>>
>> That is not true. It only makes it a bit more limited, and not by
>> its fault even. Even with that it makes things a bit better, not
>> worse.
>
> It makes the code worse for very limited improvement, for which we did
> not have a publically reported bug, i.e. the impact is very small.

Well impact was huge for Android userspace but you are probably right 
that BZ was not created for that.

It was somewhat related to 
https://bugs.freedesktop.org/show_bug.cgi?id=87477 on small memory 
configurations if I remember correctly. Although that hasn't been 
correctly captured in there or a new entry forked off.

We have on the other hand added an IGT for it 
gem_ppgtt/flink-and-close-vma-leak so I don't think your argument is fair.

Especially if the rewrite of it all is imminent - so the worse code, 
even if you think it is so much worse which I disagree with, is only in 
there temporary.

And the memory leak was real even with fbcon and Xorg which I am sure 
you know.

>> And does not impede your VMA rewrite at all. For which I did offer
>> help to review as you send out in manageable chunks.
>
> I have been.

And I have reviewed some, no? Feel free to ping me if I missed some.

Regards,

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

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

* Re: [PATCH] drm/i915: Remove incorrect warning in context cleanup
  2015-11-24 13:29         ` Daniel Stone
@ 2015-11-24 13:59           ` Daniel Vetter
  2015-11-24 14:18             ` Daniel Stone
  0 siblings, 1 reply; 9+ messages in thread
From: Daniel Vetter @ 2015-11-24 13:59 UTC (permalink / raw)
  To: Daniel Stone; +Cc: Daniel Vetter, intel-gfx

On Tue, Nov 24, 2015 at 01:29:07PM +0000, Daniel Stone wrote:
> Hi,
> 
> On 24 November 2015 at 13:27, Chris Wilson <chris@chris-wilson.co.uk> wrote:
> > On Tue, Nov 24, 2015 at 01:17:57PM +0000, Tvrtko Ursulin wrote:
> >> On 24/11/15 12:53, Chris Wilson wrote:
> >> >The WARN_ON is accurate though. The original patch fails to fix even the
> >> >limited aspect of the bug it claimed to.
> >>
> >> That is not true. It only makes it a bit more limited, and not by
> >> its fault even. Even with that it makes things a bit better, not
> >> worse.
> >
> > It makes the code worse for very limited improvement, for which we did
> > not have a publically reported bug, i.e. the impact is very small.
> 
> I can get the person who reported it to me to raise a Bugzilla
> complaining about the WARN_ON if you like ...

This is about the original bug, for with the bugfix resulted in the
WARN_ON now being removed here. The underlying problem (I think, it's a
maze) is that our vma active tracking is a bit ... underwhelming.
-Daniel
-- 
Daniel Vetter
Software Engineer, Intel Corporation
http://blog.ffwll.ch
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx

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

* Re: [PATCH] drm/i915: Remove incorrect warning in context cleanup
  2015-11-24 13:59           ` Daniel Vetter
@ 2015-11-24 14:18             ` Daniel Stone
  0 siblings, 0 replies; 9+ messages in thread
From: Daniel Stone @ 2015-11-24 14:18 UTC (permalink / raw)
  To: Daniel Vetter; +Cc: Daniel Vetter, intel-gfx

Hey,

On 24 November 2015 at 13:59, Daniel Vetter <daniel@ffwll.ch> wrote:
> On Tue, Nov 24, 2015 at 01:29:07PM +0000, Daniel Stone wrote:
>> On 24 November 2015 at 13:27, Chris Wilson <chris@chris-wilson.co.uk> wrote:
>> > On Tue, Nov 24, 2015 at 01:17:57PM +0000, Tvrtko Ursulin wrote:
>> >> On 24/11/15 12:53, Chris Wilson wrote:
>> >> >The WARN_ON is accurate though. The original patch fails to fix even the
>> >> >limited aspect of the bug it claimed to.
>> >>
>> >> That is not true. It only makes it a bit more limited, and not by
>> >> its fault even. Even with that it makes things a bit better, not
>> >> worse.
>> >
>> > It makes the code worse for very limited improvement, for which we did
>> > not have a publically reported bug, i.e. the impact is very small.
>>
>> I can get the person who reported it to me to raise a Bugzilla
>> complaining about the WARN_ON if you like ...
>
> This is about the original bug, for with the bugfix resulted in the
> WARN_ON now being removed here. The underlying problem (I think, it's a
> maze) is that our vma active tracking is a bit ... underwhelming.

Sure, which is fair enough, but OTOH is there an actual plan for
redoing the VMA tracking?

Cheers,
Daniel
_______________________________________________
Intel-gfx mailing list
Intel-gfx@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/intel-gfx

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

end of thread, other threads:[~2015-11-24 14:18 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-11-20 13:23 [PATCH] drm/i915: Remove incorrect warning in context cleanup Tvrtko Ursulin
2015-11-24 10:58 ` Daniel Vetter
2015-11-24 12:53   ` Chris Wilson
2015-11-24 13:17     ` Tvrtko Ursulin
2015-11-24 13:27       ` Chris Wilson
2015-11-24 13:29         ` Daniel Stone
2015-11-24 13:59           ` Daniel Vetter
2015-11-24 14:18             ` Daniel Stone
2015-11-24 13:56         ` Tvrtko Ursulin

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.