[Bug 85421] radeon stalled, GPU lockup, reset and failed on resume; crashed by firefox.

2015-04-26 Thread bugzilla-dae...@bugzilla.kernel.org
https://bugzilla.kernel.org/show_bug.cgi?id=85421 --- Comment #40 from Hin-Tak Leung --- I have been using mesa-10.4.7 since 02 Apr 2015, (and hadn't got a crash since March 17, most of that on mesa 10.4.6, I think). So 10.4.7 itself is certainly as good as the end of 10.2.x series. FYI, the vid

[Bug 90182] Qt Applications won't start on the dedicated GPU (SIGABRT)

2015-04-26 Thread bugzilla-dae...@freedesktop.org
uts are attached Qt 5.4.1 -- You are receiving this mail because: You are the assignee for the bug. -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20150426/9c606b1c/attachment.html>

[Bug 90182] Qt Applications won't start on the dedicated GPU (SIGABRT)

2015-04-26 Thread bugzilla-dae...@freedesktop.org
xt part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20150426/497ca8c1/attachment-0001.html>

[Bug 90182] Qt Applications won't start on the dedicated GPU (SIGABRT)

2015-04-26 Thread bugzilla-dae...@freedesktop.org
the bug. -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20150426/bec43fd2/attachment.html>

[Bug 90182] Qt Applications won't start on the dedicated GPU (SIGABRT)

2015-04-26 Thread bugzilla-dae...@freedesktop.org
for the bug. -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20150426/4b945f76/attachment.html>

[Bug 90182] Qt Applications won't start on the dedicated GPU (SIGABRT)

2015-04-26 Thread bugzilla-dae...@freedesktop.org
for the bug. -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20150426/4b4d0f61/attachment.html>

[Bug 90182] [radeonsi]Qt Applications won't start on the dedicated GPU (SIGABRT)

2015-04-26 Thread bugzilla-dae...@freedesktop.org
RL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20150426/133d5c05/attachment.html>

[PATCH] amdkfd: Remove unessary void pointer cast

2015-04-26 Thread Oded Gabbay
On 04/23/2015 12:58 PM, Firo Yang wrote: > kmalloc() returns a void pointer - no need to cast it in > drivers/gpu/drm/amd/amdkfd/kfd_process.c::kfd_process_destroy_delayed() > > Signed-off-by: Firo Yang > --- > drivers/gpu/drm/amd/amdkfd/kfd_process.c | 3 +-- > 1 file changed, 1 insertion(+)

[Bug 76490] Hang during boot when DPM is on (R9 270X)

2015-04-26 Thread bugzilla-dae...@freedesktop.org
e271, 0, 12 }, -- You are receiving this mail because: You are the assignee for the bug. -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20150426/95e9b61d/attachment.html>

[Bug 90184] [r600g] GPU lockup when using kdenlive GPU acceleration

2015-04-26 Thread bugzilla-dae...@freedesktop.org
effects package (PKGBUILD attached) -- You are receiving this mail because: You are the assignee for the bug. -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20150426/d536c19a/attachment-0001.html>

[Bug 90184] [r600g] GPU lockup when using kdenlive GPU acceleration

2015-04-26 Thread bugzilla-dae...@freedesktop.org
-- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20150426/de2be5a0/attachment.html>

[Bug 90184] [r600g] GPU lockup when using kdenlive GPU acceleration

2015-04-26 Thread bugzilla-dae...@freedesktop.org
xt part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20150426/ae738623/attachment.html>

[Bug 90184] [r600g] GPU lockup when using kdenlive GPU acceleration

2015-04-26 Thread bugzilla-dae...@freedesktop.org
-- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20150426/7521b057/attachment.html>

[Bug 90184] [r600g] GPU lockup when using kdenlive GPU acceleration

2015-04-26 Thread bugzilla-dae...@freedesktop.org
the bug. -- next part -- An HTML attachment was scrubbed... URL: <http://lists.freedesktop.org/archives/dri-devel/attachments/20150426/404cb1f1/attachment.html>

[PATCH 0/2] Fix a couple of dri drivers memory leaks

2015-04-26 Thread gr...@linuxhacker.ru
From: Oleg Drokin A couple of memory leaks found by smatch. Oleg Drokin (2): drm/qlx: Fix a memory leak on error path drm: fix a memleak on mutex failure path drivers/gpu/drm/drm_modeset_lock.c | 4 +++- drivers/gpu/drm/qxl/qxl_fb.c | 7 +-- 2 files changed, 8 insertions(+), 3 de

[PATCH 1/2] drm/qlx: Fix a memory leak on error path

2015-04-26 Thread gr...@linuxhacker.ru
From: Oleg Drokin shadow allocation could be leaked if framebuffer allocation failed, so need to free it. Also added handling for shadow allocation failure itself instead of causing a crash. Found with smatch. Signed-off-by: Oleg Drokin --- drivers/gpu/drm/qxl/qxl_fb.c | 7 +-- 1 file cha

[PATCH 2/2] drm: fix a memleak on mutex failure path

2015-04-26 Thread gr...@linuxhacker.ru
From: Oleg Drokin Need to free just allocated ctx allocation if we cannot get our config mutex. This one has been flagged by kbuild bot all the way back in August, but somehow nobody picked it up: https://lists.01.org/pipermail/kbuild/2014-August/001691.html Found with smatch. Signed-off-by: O