Re: [PATCH xserver] modesetting: resubmit dirty rects on EINVAL (v2)

2016-07-19 Thread Adam Jackson
On Tue, 2016-07-19 at 10:58 +0200, Michael Thayer wrote: > Thanks!  What are the chances of this getting back-ported to 1.17 and  > 1.18?  That rather increases the chances that distributions will adopt  > the fix and that I will not have to write a nasty work-around in my  > kernel driver.

Re: [PATCH xserver] modesetting: resubmit dirty rects on EINVAL (v2)

2016-07-19 Thread Michael Thayer
On 18.07.2016 22:37, Adam Jackson wrote: On Mon, 2016-07-18 at 12:46 -0400, Adam Jackson wrote: This error code can mean we're submitting more rects at once than the driver can handle. If that happens, resubmit one at a time. v2: Make the rect submit loop more error-proof (Walter Harms)

Re: [PATCH xserver] modesetting: resubmit dirty rects on EINVAL (v2)

2016-07-18 Thread Adam Jackson
On Mon, 2016-07-18 at 12:46 -0400, Adam Jackson wrote: > This error code can mean we're submitting more rects at once than the > driver can handle. If that happens, resubmit one at a time. > > v2: Make the rect submit loop more error-proof (Walter Harms) > > Signed-off-by: Adam Jackson

[PATCH xserver] modesetting: resubmit dirty rects on EINVAL (v2)

2016-07-18 Thread Adam Jackson
This error code can mean we're submitting more rects at once than the driver can handle. If that happens, resubmit one at a time. v2: Make the rect submit loop more error-proof (Walter Harms) Signed-off-by: Adam Jackson Reviewed-by: Michael Thayer

Re: [PATCH xserver] modesetting: resubmit dirty rects on EINVAL

2016-07-16 Thread Michael Thayer
On 16.07.2016 11:28, walter harms wrote: Am 15.07.2016 17:28, schrieb Adam Jackson: This error code can mean we're submitting more rects at once than the driver can handle. If that happens, resubmit one at a time. Signed-off-by: Adam Jackson ---

Re: [PATCH xserver] modesetting: resubmit dirty rects on EINVAL

2016-07-16 Thread Michael Thayer
Reviewed-by: Michael Thayer And successfully tested by one user who experienced buggy behaviour without the patch. On 15.07.2016 17:28, Adam Jackson wrote: This error code can mean we're submitting more rects at once than the driver can handle. If that happens,

Re: [PATCH xserver] modesetting: resubmit dirty rects on EINVAL

2016-07-16 Thread walter harms
Am 15.07.2016 17:28, schrieb Adam Jackson: > This error code can mean we're submitting more rects at once than the > driver can handle. If that happens, resubmit one at a time. > > Signed-off-by: Adam Jackson > --- > hw/xfree86/drivers/modesetting/driver.c | 11 +++ >

[PATCH xserver] modesetting: resubmit dirty rects on EINVAL

2016-07-15 Thread Adam Jackson
This error code can mean we're submitting more rects at once than the driver can handle. If that happens, resubmit one at a time. Signed-off-by: Adam Jackson --- hw/xfree86/drivers/modesetting/driver.c | 11 +++ 1 file changed, 11 insertions(+) diff --git