[Nouveau] [Bug 92077] nouveau graphics freeze when using KDE Plasma 5; PGR engine fault

2016-09-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=92077 --- Comment #24 from Andrey Mazo --- A similar fault and a deadlock that happened on newer kernel (4.7.2). Looks like to be triggered by qupzilla (www-client/qupzilla-2.0.1, compiled with KDE/Plasma 5 support) launch this time.

[Nouveau] [Bug 97462] Graphics deadlock "ILLEGAL_MTHD" in nouveau with mesa version 11.2.2 when visiting Google Maps with firefox 49.0b5

2016-09-16 Thread bugzilla-daemon
https://bugs.freedesktop.org/show_bug.cgi?id=97462 --- Comment #10 from Paviluf --- By the way Chromium work well. -- You are receiving this mail because: You are the assignee for the bug.___ Nouveau mailing list

Re: [Nouveau] [PATCH 2/3] drm/nouveau/led: guard against a division by 0

2016-09-16 Thread Karol Herbst
2016-09-16 11:14 GMT+02:00 Martin Peres : > On 16/09/16 10:42, Karol Herbst wrote: >> >> Reviewed-by: Karol Herbst >> >> 2016-09-16 9:34 GMT+02:00 Martin Peres : >>> >>> Signed-off-by: Martin Peres >>> ---

Re: [Nouveau] [PATCH] volt: use kernel's 64-bit signed division function

2016-09-16 Thread Karol Herbst
yeah locks fine Reviewed-by: Karol Herbst 2016-09-16 11:09 GMT+02:00 Alexandre Courbot : > Doing direct 64 bit divisions in kernel code leads to references to > undefined symbols on 32 bit architectures. Replace such divisions with > calls to

[Nouveau] [PATCH] volt: use kernel's 64-bit signed division function

2016-09-16 Thread Alexandre Courbot
Doing direct 64 bit divisions in kernel code leads to references to undefined symbols on 32 bit architectures. Replace such divisions with calls to div64_s64 to make the module usable on 32 bit archs. Signed-off-by: Alexandre Courbot --- drm/nouveau/nvkm/subdev/volt/base.c

Re: [Nouveau] [PATCH 2/3] drm/nouveau/led: guard against a division by 0

2016-09-16 Thread Martin Peres
On 16/09/16 10:42, Karol Herbst wrote: Reviewed-by: Karol Herbst 2016-09-16 9:34 GMT+02:00 Martin Peres : Signed-off-by: Martin Peres --- drm/nouveau/nouveau_led.c | 5 - 1 file changed, 4 insertions(+), 1 deletion(-)

Re: [Nouveau] [PATCH 3/3] drm/nouveau/led: abort early if the device does not have GPIOs

2016-09-16 Thread Karol Herbst
Reviewed-by: Karol Herbst 2016-09-16 9:34 GMT+02:00 Martin Peres : > Signed-off-by: Martin Peres > --- > drm/nouveau/nouveau_led.c | 3 +++ > 1 file changed, 3 insertions(+) > > diff --git a/drm/nouveau/nouveau_led.c

Re: [Nouveau] [PATCH 3/3] drm/nouveau/led: abort early if the device does not have GPIOs

2016-09-16 Thread Alexandre Courbot
On Fri, Sep 16, 2016 at 4:34 PM, Martin Peres wrote: > Signed-off-by: Martin Peres Tested-by: Alexandre Courbot Fixes the crash I was seeing on Tegra, thanks! ___ Nouveau mailing list

Re: [Nouveau] [PATCH 2/3] drm/nouveau/led: guard against a division by 0

2016-09-16 Thread Alexandre Courbot
On Fri, Sep 16, 2016 at 4:34 PM, Martin Peres wrote: > Signed-off-by: Martin Peres Tested-by: Alexandre Courbot Fixes the crash I was seeing on GM206, thanks! ___ Nouveau mailing list

Re: [Nouveau] [PATCH 2/3] drm/nouveau/led: guard against a division by 0

2016-09-16 Thread Karol Herbst
Reviewed-by: Karol Herbst 2016-09-16 9:34 GMT+02:00 Martin Peres : > Signed-off-by: Martin Peres > --- > drm/nouveau/nouveau_led.c | 5 - > 1 file changed, 4 insertions(+), 1 deletion(-) > > diff --git

[Nouveau] [PATCH 3/3] drm/nouveau/led: abort early if the device does not have GPIOs

2016-09-16 Thread Martin Peres
Signed-off-by: Martin Peres --- drm/nouveau/nouveau_led.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/drm/nouveau/nouveau_led.c b/drm/nouveau/nouveau_led.c index 1f731da..3e2f1b6 100644 --- a/drm/nouveau/nouveau_led.c +++ b/drm/nouveau/nouveau_led.c @@ -82,6

[Nouveau] [PATCH 1/3] drm/nouveau/led: don't access led subdev if it wasn't initialized

2016-09-16 Thread Martin Peres
From: Karol Herbst Fixes a kernel crash on suspend/resume. --- drm/nouveau/nouveau_led.c | 7 --- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/drm/nouveau/nouveau_led.c b/drm/nouveau/nouveau_led.c index 9eed5a6..5e28b5f 100644 ---

[Nouveau] [PATCH 2/3] drm/nouveau/led: guard against a division by 0

2016-09-16 Thread Martin Peres
Signed-off-by: Martin Peres --- drm/nouveau/nouveau_led.c | 5 - 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/drm/nouveau/nouveau_led.c b/drm/nouveau/nouveau_led.c index 5e28b5f..1f731da 100644 --- a/drm/nouveau/nouveau_led.c +++

[Nouveau] [PATCH] drm/nouveau/disp: remove unused function in sorg94.c

2016-09-16 Thread Baoyou Xie
We get 1 warning when building kernel with W=1: drivers/gpu/drm/nouveau/nvkm/engine/disp/sorg94.c:49:1: warning: no previous prototype for 'g94_sor_output_new' [-Wmissing-prototypes] In fact, this function is called by no one and not exported, so this patch removes it. Signed-off-by: Baoyou Xie