https://bugs.freedesktop.org/show_bug.cgi?id=52952
--- Comment #22 from Alex Deucher <agd5f(a)yahoo.com> ---
(In reply to comment #21)
> (In reply to Comment 19)
>
> Hi Alex,
>
> Is it possible you or someone can backport the fix so that this issue can be
> resolved on Ubuntu 10.04 LTS (Linux 2.6.32 kernel) and Ubuntu 12.04 LTS
> (Linux 3.2 kernel)?
> It will be nice if the fix can be applied via apt-get.
It will show up in stable kernels eventually. However, …
[View More]it would be nice if you
could actually test and verify the fix for your specific system.
--
You are receiving this mail because:
You are the assignee for the bug.
[View Less]
https://bugs.freedesktop.org/show_bug.cgi?id=68585
Priority: medium
Bug ID: 68585
Assignee: dri-devel(a)lists.freedesktop.org
Summary: Recent Mesa git make Kwin crash with AMD R300g driver
Severity: normal
Classification: Unclassified
OS: Linux (All)
Reporter: rvdb(a)cryptolab.net
Hardware: x86-64 (AMD64)
Status: NEW
Version: git
Component: Drivers/Gallium/r300
…
[View More] Product: Mesa
Created attachment 84671
--> https://bugs.freedesktop.org/attachment.cgi?id=84671&action=edit
Kwin backtrace
I run Slackware64-current systems on several workstations using AMD processors
and graphic cards. I usually compile my own very recent kernels (currently
3.11-rc*) and I regularly (about once every two weeks) compile git version of
libdrm, mesa and xf86-video-ati.
I noticed that with recent versions of mesa, kwin, KDE's compositor and windows
manager, crashed immediately at boot and only worked when I disabled the OpenGL
effects. The last version of mesa that worked was of the 2013/08/08. By just
changing mesa to a more recent version, kwin would segfault, for the first time
in years, with KDE 4.10.5 as well as 4.11.
My other systems, which have a fairly similar OS settings, do not have these
issues but they use the r600g driver while my old laptop, the one which crash,
still use r300g.
I've attached to this kwin backtrace which clearly shows that kwin crash while
working with r300_dri.so, as well as the startx output.
I don't have debug binaries unfortunately.
--
You are receiving this mail because:
You are the assignee for the bug.
[View Less]
https://bugs.freedesktop.org/show_bug.cgi?id=68783
Priority: medium
Bug ID: 68783
Assignee: dri-devel(a)lists.freedesktop.org
Summary: Segmentation fault on BONAIRE (hd7790) after starting
X server
Severity: normal
Classification: Unclassified
OS: All
Reporter: nrndda(a)gmail.com
Hardware: Other
Status: NEW
Version: XOrg CVS
Component: DRM/Radeon
…
[View More] Product: DRI
Created attachment 84954
--> https://bugs.freedesktop.org/attachment.cgi?id=84954&action=edit
Xorg crash log
Crash after glamor module initialization.
glamor from git. Previous version of glamor also crashing.
--
You are receiving this mail because:
You are the assignee for the bug.
[View Less]
Suppress warning of unused-variables by adding a BUG()+return for invalid
audio-formats.
Cc: Rob Clark <robdclark(a)gmail.com>
Signed-off-by: David Herrmann <dh.herrmann(a)gmail.com>
---
Hey Rob
No idea whether it's correct. But all I know is when we hit the default: path,
several variables will be unset. To avoid gcc warn about it, I added the BUG().
If we should just silently return, feel free to adjust the patch to your needs.
Cheers
David
drivers/gpu/drm/i2c/tda998x_drv.c | …
[View More]4 ++++
1 file changed, 4 insertions(+)
diff --git a/drivers/gpu/drm/i2c/tda998x_drv.c b/drivers/gpu/drm/i2c/tda998x_drv.c
index c2bd711..b1f8fc6 100644
--- a/drivers/gpu/drm/i2c/tda998x_drv.c
+++ b/drivers/gpu/drm/i2c/tda998x_drv.c
@@ -596,6 +596,10 @@ tda998x_configure_audio(struct drm_encoder *encoder,
cts_n = CTS_N_M(3) | CTS_N_K(3);
ca_i2s = CA_I2S_CA_I2S(0);
break;
+
+ default:
+ BUG();
+ return;
}
reg_write(encoder, REG_AIP_CLKSEL, clksel_aip);
--
1.8.4
[View Less]