Patch "drm: damage_helper: Fix race checking plane->state->fb" has been added to the 5.4-stable tree

2019-12-09 Thread gregkh
This is a note to let you know that I've just added the patch titled drm: damage_helper: Fix race checking plane->state->fb to the 5.4-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is:

Patch "drm: damage_helper: Fix race checking plane->state->fb" has been added to the 5.3-stable tree

2019-12-09 Thread gregkh
This is a note to let you know that I've just added the patch titled drm: damage_helper: Fix race checking plane->state->fb to the 5.3-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is:

Re: [PATCH] drm: damage_helper: Fix race checking plane->state->fb

2019-10-08 Thread Sean Paul
On Tue, Oct 08, 2019 at 11:50:33AM +0200, Daniel Vetter wrote: > On Thu, Sep 19, 2019 at 11:04:01AM -0400, Sean Paul wrote: > > On Thu, Sep 05, 2019 at 12:41:27PM +0200, Daniel Vetter wrote: > > > On Wed, Sep 4, 2019 at 10:29 PM Sean Paul wrote: > > > > > > > > From: Sean Paul > > > > > > > >

Re: [PATCH] drm: damage_helper: Fix race checking plane->state->fb

2019-10-08 Thread Daniel Vetter
On Thu, Sep 19, 2019 at 11:04:01AM -0400, Sean Paul wrote: > On Thu, Sep 05, 2019 at 12:41:27PM +0200, Daniel Vetter wrote: > > On Wed, Sep 4, 2019 at 10:29 PM Sean Paul wrote: > > > > > > From: Sean Paul > > > > > > Since the dirtyfb ioctl doesn't give us any hints as to which plane is > > >

Re: [PATCH] drm: damage_helper: Fix race checking plane->state->fb

2019-09-19 Thread Sean Paul
On Thu, Sep 05, 2019 at 12:41:27PM +0200, Daniel Vetter wrote: > On Wed, Sep 4, 2019 at 10:29 PM Sean Paul wrote: > > > > From: Sean Paul > > > > Since the dirtyfb ioctl doesn't give us any hints as to which plane is > > scanning out the fb it's marking as damaged, we need to loop through > >

Re: [PATCH] drm: damage_helper: Fix race checking plane->state->fb

2019-09-05 Thread Daniel Vetter
On Wed, Sep 4, 2019 at 10:29 PM Sean Paul wrote: > > From: Sean Paul > > Since the dirtyfb ioctl doesn't give us any hints as to which plane is > scanning out the fb it's marking as damaged, we need to loop through > planes to find it. > > Currently we just reach into plane state and check, but

[PATCH] drm: damage_helper: Fix race checking plane->state->fb

2019-09-04 Thread Sean Paul
From: Sean Paul Since the dirtyfb ioctl doesn't give us any hints as to which plane is scanning out the fb it's marking as damaged, we need to loop through planes to find it. Currently we just reach into plane state and check, but that can race with another commit changing the fb out from under