dri-devel.lists.freedesktop.org archive mirror
 help / color / mirror / Atom feed
* Linux: Smooth splashscreen with system having weston with drm-backend
@ 2017-07-13 13:33 Vikas Patil
       [not found] ` <CA+kt3u34G_wNFoCtBjX=mg9GcLaAcKxTZBdjt8txnrHgdqSRwA-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
  0 siblings, 1 reply; 7+ messages in thread
From: Vikas Patil @ 2017-07-13 13:33 UTC (permalink / raw)
  To: wayland mailing list, dri-devel-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW

Dear All,

I am looking for an solution to have early smooth splashscreen on the
Linux system with Weston and drm-backend.

I tried showing splashscreen using Linux logo and fbcon Linux features
but it is not smooth as when system boots logo gets displayed via
kernel and as the Weston starts
I see flicker and blackscreen.

Another approach I tried is having standalone drm api based
application [1] which uses the one of the available hardware
plane/overlay for displaying splash image and Weston is
starting and uses default plane which is different from plane utilized
by above application. but still I see flicker and black screen when
Weston starts.

I want splash to be displayed on one of the h/w plane and Weston
should start in background without any flicker and black screen on
some other plane.

Anyone here before achieved such a use case with such system? Looking
for inputs/suggestions/ideas to achieve this. It is ok if something
needs to be hacked/changd at any level (kernel driver, weston).

This is required on platform such as TI (Jacinto) and Intel (Broxton)
or devices based on drm graphics stack.

[1] http://git.ti.com/glsdk/example-applications/blobs/39080525baca7bf136f2412d62436366a736af6b/drm-tests/drm_z_alpha.c

Thanking you all for your time and inputs in advance.

Thanks & Regards,
Vikash
_______________________________________________
wayland-devel mailing list
wayland-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/wayland-devel

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

* Re: Linux: Smooth splashscreen with system having weston with drm-backend
       [not found] ` <CA+kt3u34G_wNFoCtBjX=mg9GcLaAcKxTZBdjt8txnrHgdqSRwA-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
@ 2017-07-13 13:50   ` Daniel Vetter
       [not found]     ` <CAKMK7uFNwB+K0eFBwF-91oaxFNmoFOm9_A+pR3nP7_Y53DqT6g-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
  2017-07-14 16:04     ` Sean Paul
  0 siblings, 2 replies; 7+ messages in thread
From: Daniel Vetter @ 2017-07-13 13:50 UTC (permalink / raw)
  To: Vikas Patil
  Cc: dri-devel-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW, wayland mailing list

On Thu, Jul 13, 2017 at 3:33 PM, Vikas Patil <vikasmpatil@gmail.com> wrote:
> Dear All,
>
> I am looking for an solution to have early smooth splashscreen on the
> Linux system with Weston and drm-backend.
>
> I tried showing splashscreen using Linux logo and fbcon Linux features
> but it is not smooth as when system boots logo gets displayed via
> kernel and as the Weston starts
> I see flicker and blackscreen.
>
> Another approach I tried is having standalone drm api based
> application [1] which uses the one of the available hardware
> plane/overlay for displaying splash image and Weston is
> starting and uses default plane which is different from plane utilized
> by above application. but still I see flicker and black screen when
> Weston starts.
>
> I want splash to be displayed on one of the h/w plane and Weston
> should start in background without any flicker and black screen on
> some other plane.
>
> Anyone here before achieved such a use case with such system? Looking
> for inputs/suggestions/ideas to achieve this. It is ok if something
> needs to be hacked/changd at any level (kernel driver, weston).
>
> This is required on platform such as TI (Jacinto) and Intel (Broxton)
> or devices based on drm graphics stack.
>
> [1] http://git.ti.com/glsdk/example-applications/blobs/39080525baca7bf136f2412d62436366a736af6b/drm-tests/drm_z_alpha.c
>
> Thanking you all for your time and inputs in advance.

If you make sure you have matching modes between the 2 users of drm
this should work. kms drivers (especially if they are already
converted to atomic) will automatically optimize transitions to not
flicker (if possible).

If you still flicker then it's either a kernel driver issue, a hw
limitations (some hw needs a full modeset for e.g. changing the bit
depth) or you program two different things.

Also, you must ensure that the boot-splash does not quit until weston
has fully taken over, otherwise kms will first shut down the screen
(when the splash quits), then re-enable it when weston starts.

Cheers, Daniel

>
> Thanks & Regards,
> Vikash
> _______________________________________________
> wayland-devel mailing list
> wayland-devel@lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/wayland-devel



-- 
Daniel Vetter
Software Engineer, Intel Corporation
+41 (0) 79 365 57 48 - http://blog.ffwll.ch
_______________________________________________
wayland-devel mailing list
wayland-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/wayland-devel

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

* Re: Linux: Smooth splashscreen with system having weston with drm-backend
       [not found]     ` <CAKMK7uFNwB+K0eFBwF-91oaxFNmoFOm9_A+pR3nP7_Y53DqT6g-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
@ 2017-07-14  9:37       ` Vikas Patil
  2017-07-14 13:56         ` Daniel Vetter
  0 siblings, 1 reply; 7+ messages in thread
From: Vikas Patil @ 2017-07-14  9:37 UTC (permalink / raw)
  To: Daniel Vetter
  Cc: dri-devel-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW, wayland mailing list

On Thu, Jul 13, 2017 at 7:20 PM, Daniel Vetter <daniel.vetter@ffwll.ch> wrote:
> On Thu, Jul 13, 2017 at 3:33 PM, Vikas Patil <vikasmpatil@gmail.com> wrote:
>> Dear All,
>>
>> I am looking for an solution to have early smooth splashscreen on the
>> Linux system with Weston and drm-backend.
>>
>> I tried showing splashscreen using Linux logo and fbcon Linux features
>> but it is not smooth as when system boots logo gets displayed via
>> kernel and as the Weston starts
>> I see flicker and blackscreen.
>>
>> Another approach I tried is having standalone drm api based
>> application [1] which uses the one of the available hardware
>> plane/overlay for displaying splash image and Weston is
>> starting and uses default plane which is different from plane utilized
>> by above application. but still I see flicker and black screen when
>> Weston starts.
>>
>> I want splash to be displayed on one of the h/w plane and Weston
>> should start in background without any flicker and black screen on
>> some other plane.
>>
>> Anyone here before achieved such a use case with such system? Looking
>> for inputs/suggestions/ideas to achieve this. It is ok if something
>> needs to be hacked/changd at any level (kernel driver, weston).
>>
>> This is required on platform such as TI (Jacinto) and Intel (Broxton)
>> or devices based on drm graphics stack.
>>
>> [1] http://git.ti.com/glsdk/example-applications/blobs/39080525baca7bf136f2412d62436366a736af6b/drm-tests/drm_z_alpha.c
>>
>> Thanking you all for your time and inputs in advance.
>
> If you make sure you have matching modes between the 2 users of drm
> this should work. kms drivers (especially if they are already
> converted to atomic) will automatically optimize transitions to not
> flicker (if possible).
>

I am not sure how this will work. As per what I understood is when
drmModeSetCrtc() is called it uses the primary/default plane and if
application wants to use any other plane then it need to setup the
planes using drmModeSetPlane() in application before doing
drmModeSetCrtc() so when primary plane scan-outs at crtc phase it also
knows it has to compose from using other planes too. This is what
splash application is doing. But when I run weston after splash app,
weston  I think calls drmModeSetCrtc() without the knowledge of planes
and previous configuration overrides so it doesn't work.

> If you still flicker then it's either a kernel driver issue, a hw
> limitations (some hw needs a full modeset for e.g. changing the bit
> depth) or you program two different things.
>
> Also, you must ensure that the boot-splash does not quit until weston
> has fully taken over, otherwise kms will first shut down the screen
> (when the splash quits), then re-enable it when weston starts.
>
I have tried adding while with sleep in splash app but still the
behavior is same. FYI, I am doing this on TI's Jacinto6 platform but
similar required on intel platform too.

I was also thinking if there is something  can be done in drm-backend
of weston. e.g disabling mode setting or some code but not sure if
weston will work with it..

Thanks & regards,
Vikash
_______________________________________________
wayland-devel mailing list
wayland-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/wayland-devel

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

* Re: Linux: Smooth splashscreen with system having weston with drm-backend
  2017-07-14  9:37       ` Vikas Patil
@ 2017-07-14 13:56         ` Daniel Vetter
       [not found]           ` <20170714135637.asemv5nebx6vi6jb-dv86pmgwkMBes7Z6vYuT8azUEOm+Xw19@public.gmane.org>
  0 siblings, 1 reply; 7+ messages in thread
From: Daniel Vetter @ 2017-07-14 13:56 UTC (permalink / raw)
  To: Vikas Patil; +Cc: Daniel Vetter, dri-devel, wayland mailing list

On Fri, Jul 14, 2017 at 03:07:11PM +0530, Vikas Patil wrote:
> On Thu, Jul 13, 2017 at 7:20 PM, Daniel Vetter <daniel.vetter@ffwll.ch> wrote:
> > On Thu, Jul 13, 2017 at 3:33 PM, Vikas Patil <vikasmpatil@gmail.com> wrote:
> >> Dear All,
> >>
> >> I am looking for an solution to have early smooth splashscreen on the
> >> Linux system with Weston and drm-backend.
> >>
> >> I tried showing splashscreen using Linux logo and fbcon Linux features
> >> but it is not smooth as when system boots logo gets displayed via
> >> kernel and as the Weston starts
> >> I see flicker and blackscreen.
> >>
> >> Another approach I tried is having standalone drm api based
> >> application [1] which uses the one of the available hardware
> >> plane/overlay for displaying splash image and Weston is
> >> starting and uses default plane which is different from plane utilized
> >> by above application. but still I see flicker and black screen when
> >> Weston starts.
> >>
> >> I want splash to be displayed on one of the h/w plane and Weston
> >> should start in background without any flicker and black screen on
> >> some other plane.
> >>
> >> Anyone here before achieved such a use case with such system? Looking
> >> for inputs/suggestions/ideas to achieve this. It is ok if something
> >> needs to be hacked/changd at any level (kernel driver, weston).
> >>
> >> This is required on platform such as TI (Jacinto) and Intel (Broxton)
> >> or devices based on drm graphics stack.
> >>
> >> [1] http://git.ti.com/glsdk/example-applications/blobs/39080525baca7bf136f2412d62436366a736af6b/drm-tests/drm_z_alpha.c
> >>
> >> Thanking you all for your time and inputs in advance.
> >
> > If you make sure you have matching modes between the 2 users of drm
> > this should work. kms drivers (especially if they are already
> > converted to atomic) will automatically optimize transitions to not
> > flicker (if possible).
> >
> 
> I am not sure how this will work. As per what I understood is when
> drmModeSetCrtc() is called it uses the primary/default plane and if
> application wants to use any other plane then it need to setup the
> planes using drmModeSetPlane() in application before doing
> drmModeSetCrtc() so when primary plane scan-outs at crtc phase it also
> knows it has to compose from using other planes too. This is what
> splash application is doing. But when I run weston after splash app,
> weston  I think calls drmModeSetCrtc() without the knowledge of planes
> and previous configuration overrides so it doesn't work.

Oh that doesn't work, you can't have multiple userspace things using the
display at the same time. You need to composite the different planes in
userspace first. KMS only allows one compositor at the same time (the so
called drm master).
-Daniel

> > If you still flicker then it's either a kernel driver issue, a hw
> > limitations (some hw needs a full modeset for e.g. changing the bit
> > depth) or you program two different things.
> >
> > Also, you must ensure that the boot-splash does not quit until weston
> > has fully taken over, otherwise kms will first shut down the screen
> > (when the splash quits), then re-enable it when weston starts.
> >
> I have tried adding while with sleep in splash app but still the
> behavior is same. FYI, I am doing this on TI's Jacinto6 platform but
> similar required on intel platform too.
> 
> I was also thinking if there is something  can be done in drm-backend
> of weston. e.g disabling mode setting or some code but not sure if
> weston will work with it..
> 
> Thanks & regards,
> Vikash

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

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

* Re: Linux: Smooth splashscreen with system having weston with drm-backend
  2017-07-13 13:50   ` Daniel Vetter
       [not found]     ` <CAKMK7uFNwB+K0eFBwF-91oaxFNmoFOm9_A+pR3nP7_Y53DqT6g-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
@ 2017-07-14 16:04     ` Sean Paul
  1 sibling, 0 replies; 7+ messages in thread
From: Sean Paul @ 2017-07-14 16:04 UTC (permalink / raw)
  To: Daniel Vetter; +Cc: Vikas Patil, dri-devel, wayland mailing list

On Thu, Jul 13, 2017 at 03:50:56PM +0200, Daniel Vetter wrote:
> On Thu, Jul 13, 2017 at 3:33 PM, Vikas Patil <vikasmpatil@gmail.com> wrote:
> > Dear All,
> >
> > I am looking for an solution to have early smooth splashscreen on the
> > Linux system with Weston and drm-backend.
> >
> > I tried showing splashscreen using Linux logo and fbcon Linux features
> > but it is not smooth as when system boots logo gets displayed via
> > kernel and as the Weston starts
> > I see flicker and blackscreen.
> >
> > Another approach I tried is having standalone drm api based
> > application [1] which uses the one of the available hardware
> > plane/overlay for displaying splash image and Weston is
> > starting and uses default plane which is different from plane utilized
> > by above application. but still I see flicker and black screen when
> > Weston starts.
> >
> > I want splash to be displayed on one of the h/w plane and Weston
> > should start in background without any flicker and black screen on
> > some other plane.
> >
> > Anyone here before achieved such a use case with such system? Looking
> > for inputs/suggestions/ideas to achieve this. It is ok if something
> > needs to be hacked/changd at any level (kernel driver, weston).
> >
> > This is required on platform such as TI (Jacinto) and Intel (Broxton)
> > or devices based on drm graphics stack.
> >
> > [1] http://git.ti.com/glsdk/example-applications/blobs/39080525baca7bf136f2412d62436366a736af6b/drm-tests/drm_z_alpha.c
> >
> > Thanking you all for your time and inputs in advance.
> 
> If you make sure you have matching modes between the 2 users of drm
> this should work. kms drivers (especially if they are already
> converted to atomic) will automatically optimize transitions to not
> flicker (if possible).
> 
> If you still flicker then it's either a kernel driver issue, a hw
> limitations (some hw needs a full modeset for e.g. changing the bit
> depth) or you program two different things.
> 
> Also, you must ensure that the boot-splash does not quit until weston
> has fully taken over, otherwise kms will first shut down the screen
> (when the splash quits), then re-enable it when weston starts.
> 

This is what we do in Chrome OS with frecon [1]. It presents the splash screen
until Chrome is ready to take over.

[1]- https://chromium.googlesource.com/chromiumos/platform/frecon

Sean


> Cheers, Daniel
> 
> >
> > Thanks & Regards,
> > Vikash
> > _______________________________________________
> > wayland-devel mailing list
> > wayland-devel@lists.freedesktop.org
> > https://lists.freedesktop.org/mailman/listinfo/wayland-devel
> 
> 
> 
> -- 
> Daniel Vetter
> Software Engineer, Intel Corporation
> +41 (0) 79 365 57 48 - http://blog.ffwll.ch
> _______________________________________________
> dri-devel mailing list
> dri-devel@lists.freedesktop.org
> https://lists.freedesktop.org/mailman/listinfo/dri-devel

-- 
Sean Paul, Software Engineer, Google / Chromium OS
_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/dri-devel

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

* Re: Linux: Smooth splashscreen with system having weston with drm-backend
       [not found]           ` <20170714135637.asemv5nebx6vi6jb-dv86pmgwkMBes7Z6vYuT8azUEOm+Xw19@public.gmane.org>
@ 2017-07-17 19:39             ` Matt Hoosier
       [not found]               ` <CAJgxT38Vc3cMd1jNPfjctLxrU_FSiJ5bYU5kEQih_x34=s_7Ew-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
  0 siblings, 1 reply; 7+ messages in thread
From: Matt Hoosier @ 2017-07-17 19:39 UTC (permalink / raw)
  To: Daniel Vetter
  Cc: Daniel Vetter, Vikas Patil,
	dri-devel-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW, wayland mailing list


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

On Fri, Jul 14, 2017 at 8:56 AM, Daniel Vetter <daniel-/w4YWyX8dFk@public.gmane.org> wrote:

> On Fri, Jul 14, 2017 at 03:07:11PM +0530, Vikas Patil wrote:
> > On Thu, Jul 13, 2017 at 7:20 PM, Daniel Vetter <daniel.vetter-/w4YWyX8dFk@public.gmane.org>
> wrote:
> > > On Thu, Jul 13, 2017 at 3:33 PM, Vikas Patil <vikasmpatil-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org>
> wrote:
> > >> Dear All,
> > >>
> > >> I am looking for an solution to have early smooth splashscreen on the
> > >> Linux system with Weston and drm-backend.
> > >>
> > >> I tried showing splashscreen using Linux logo and fbcon Linux features
> > >> but it is not smooth as when system boots logo gets displayed via
> > >> kernel and as the Weston starts
> > >> I see flicker and blackscreen.
> > >>
> > >> Another approach I tried is having standalone drm api based
> > >> application [1] which uses the one of the available hardware
> > >> plane/overlay for displaying splash image and Weston is
> > >> starting and uses default plane which is different from plane utilized
> > >> by above application. but still I see flicker and black screen when
> > >> Weston starts.
> > >>
> > >> I want splash to be displayed on one of the h/w plane and Weston
> > >> should start in background without any flicker and black screen on
> > >> some other plane.
> > >>
> > >> Anyone here before achieved such a use case with such system? Looking
> > >> for inputs/suggestions/ideas to achieve this. It is ok if something
> > >> needs to be hacked/changd at any level (kernel driver, weston).
> > >>
> > >> This is required on platform such as TI (Jacinto) and Intel (Broxton)
> > >> or devices based on drm graphics stack.
> > >>
> > >> [1] http://git.ti.com/glsdk/example-applications/blobs/
> 39080525baca7bf136f2412d62436366a736af6b/drm-tests/drm_z_alpha.c
> > >>
> > >> Thanking you all for your time and inputs in advance.
> > >
> > > If you make sure you have matching modes between the 2 users of drm
> > > this should work. kms drivers (especially if they are already
> > > converted to atomic) will automatically optimize transitions to not
> > > flicker (if possible).
> > >
> >
> > I am not sure how this will work. As per what I understood is when
> > drmModeSetCrtc() is called it uses the primary/default plane and if
> > application wants to use any other plane then it need to setup the
> > planes using drmModeSetPlane() in application before doing
> > drmModeSetCrtc() so when primary plane scan-outs at crtc phase it also
> > knows it has to compose from using other planes too. This is what
> > splash application is doing. But when I run weston after splash app,
> > weston  I think calls drmModeSetCrtc() without the knowledge of planes
> > and previous configuration overrides so it doesn't work.
>
> Oh that doesn't work, you can't have multiple userspace things using the
> display at the same time. You need to composite the different planes in
> userspace first. KMS only allows one compositor at the same time (the so
> called drm master).
> -Daniel
>

I think what you're missing here is that you'll need to register your DRM
splashscreen program with a VT session. Make sure to implement handling of
the VT_SETMODE ioctl so that your application drops its DRM master status.

Also beware that the DRM backend of Weston will aggressively set the mode
before you have any chance to paint user-defined content of your own in a
Wayland client program. So there will still be some window of time during
which your early splashscreen disappears and no specific application
content replaces it.


>
> > > If you still flicker then it's either a kernel driver issue, a hw
> > > limitations (some hw needs a full modeset for e.g. changing the bit
> > > depth) or you program two different things.
> > >
> > > Also, you must ensure that the boot-splash does not quit until weston
> > > has fully taken over, otherwise kms will first shut down the screen
> > > (when the splash quits), then re-enable it when weston starts.
> > >
> > I have tried adding while with sleep in splash app but still the
> > behavior is same. FYI, I am doing this on TI's Jacinto6 platform but
> > similar required on intel platform too.
> >
> > I was also thinking if there is something  can be done in drm-backend
> > of weston. e.g disabling mode setting or some code but not sure if
> > weston will work with it..
> >
> > Thanks & regards,
> > Vikash
>
> --
> Daniel Vetter
> Software Engineer, Intel Corporation
> http://blog.ffwll.ch
> _______________________________________________
> wayland-devel mailing list
> wayland-devel-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW@public.gmane.org
> https://lists.freedesktop.org/mailman/listinfo/wayland-devel
>

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

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

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

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

* Re: Linux: Smooth splashscreen with system having weston with drm-backend
       [not found]               ` <CAJgxT38Vc3cMd1jNPfjctLxrU_FSiJ5bYU5kEQih_x34=s_7Ew-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
@ 2017-07-17 20:20                 ` Daniel Stone
  0 siblings, 0 replies; 7+ messages in thread
From: Daniel Stone @ 2017-07-17 20:20 UTC (permalink / raw)
  To: Matt Hoosier
  Cc: Daniel Vetter, Vikas Patil,
	dri-devel-PD4FTy7X32lNgt0PjOBp9y5qC8QIuHrW, Daniel Vetter,
	wayland mailing list

Hi Matt,

On 17 July 2017 at 20:39, Matt Hoosier <matt.hoosier@gmail.com> wrote:
> Also beware that the DRM backend of Weston will aggressively set the mode
> before you have any chance to paint user-defined content of your own in a
> Wayland client program. So there will still be some window of time during
> which your early splashscreen disappears and no specific application content
> replaces it.

Funnily enough, I'd say it's aggressively delayed. ;) It makes sure to
wait until the shell (usually desktop-shell) signals 'ready'. The 3.0
alpha just released should delay the modeset even further, to avoid a
flicker to black.

Cheers,
Daniel
_______________________________________________
wayland-devel mailing list
wayland-devel@lists.freedesktop.org
https://lists.freedesktop.org/mailman/listinfo/wayland-devel

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

end of thread, other threads:[~2017-07-17 20:20 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-07-13 13:33 Linux: Smooth splashscreen with system having weston with drm-backend Vikas Patil
     [not found] ` <CA+kt3u34G_wNFoCtBjX=mg9GcLaAcKxTZBdjt8txnrHgdqSRwA-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2017-07-13 13:50   ` Daniel Vetter
     [not found]     ` <CAKMK7uFNwB+K0eFBwF-91oaxFNmoFOm9_A+pR3nP7_Y53DqT6g-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2017-07-14  9:37       ` Vikas Patil
2017-07-14 13:56         ` Daniel Vetter
     [not found]           ` <20170714135637.asemv5nebx6vi6jb-dv86pmgwkMBes7Z6vYuT8azUEOm+Xw19@public.gmane.org>
2017-07-17 19:39             ` Matt Hoosier
     [not found]               ` <CAJgxT38Vc3cMd1jNPfjctLxrU_FSiJ5bYU5kEQih_x34=s_7Ew-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2017-07-17 20:20                 ` Daniel Stone
2017-07-14 16:04     ` Sean Paul

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).