From mboxrd@z Thu Jan 1 00:00:00 1970
From: bugzilla-daemon@bugzilla.kernel.org
Subject: [Bug 79051] New: Panic with radeon hd 5750, bisected
Date: Fri, 27 Jun 2014 12:52:18 +0000
Message-ID:
Mime-Version: 1.0
Content-Type: text/plain; charset="us-ascii"
Content-Transfer-Encoding: 7bit
Return-path:
Received: from mail.kernel.org (mail.kernel.org [198.145.19.201])
by gabe.freedesktop.org (Postfix) with ESMTP id 9C29B6E719
for ; Fri, 27 Jun 2014 05:52:21 -0700 (PDT)
Received: from mail.kernel.org (localhost [127.0.0.1])
by mail.kernel.org (Postfix) with ESMTP id CCBA020379
for ; Fri, 27 Jun 2014 12:52:20 +0000 (UTC)
Received: from bugzilla1.web.kernel.org (bugzilla1.web.kernel.org
[172.20.200.51])
by mail.kernel.org (Postfix) with ESMTP id 0752720320
for ; Fri, 27 Jun 2014 12:52:19 +0000 (UTC)
List-Unsubscribe: ,
List-Archive:
List-Post:
List-Help:
List-Subscribe: ,
Errors-To: dri-devel-bounces@lists.freedesktop.org
Sender: "dri-devel"
To: dri-devel@lists.freedesktop.org
List-Id: dri-devel@lists.freedesktop.org
https://bugzilla.kernel.org/show_bug.cgi?id=79051
Bug ID: 79051
Summary: Panic with radeon hd 5750, bisected
Product: Drivers
Version: 2.5
Kernel Version: 3.14.6 - 3.16-rc2
Hardware: x86-64
OS: Linux
Tree: Mainline
Status: NEW
Severity: normal
Priority: P1
Component: Video(DRI - non Intel)
Assignee: drivers_video-dri@kernel-bugs.osdl.org
Reporter: jonathan@unbiased.name
Regression: No
Happens usually within first minute of starting weston (drm on archlinux.) just
opening windows and moving mouse. (no panic within X.)
Bisected to
https://git.kernel.org/cgit/linux/kernel/git/stable/linux-stable.git/commit/?h=linux-3.14.y&id=19aef29eea6e5b42e4097c2ccdd80e944e9f9f6f
Still same with 3.16-rc2.
Panic only dumped to screen so don't have exact copy.
RIP in drm_vblank_put
radeon_crt_handle_flip
evergreen_irq_process
notice_schd_clock
radeon_irq_handler_kms
handle_irq_events_percpu
...
Removing the one line stops the panic so does this;
diff --git a/drivers/gpu/drm/radeon/evergreen.c
b/drivers/gpu/drm/radeon/evergre
index 971d933..e31d936 100644
--- a/drivers/gpu/drm/radeon/evergreen.c
+++ b/drivers/gpu/drm/radeon/evergreen.c
@@ -4967,7 +4967,8 @@ restart_ih:
case 16: /* D5 page flip */
case 18: /* D6 page flip */
DRM_DEBUG("IH: D%d flip\n", ((src_id - 8) >> 1) + 1);
- radeon_crtc_handle_flip(rdev, (src_id - 8) >> 1);
+ if (atomic_read(&rdev->irq.pflip[(src_id - 8) >> 1]))
+ radeon_crtc_handle_flip(rdev, (src_id - 8) >>
1)
break;
case 42: /* HPD hotplug */
switch (src_data) {
Only guess work on my part. Needs someone with knowledge of code determine real
fix.
--
You are receiving this mail because:
You are watching the assignee of the bug.