All of lore.kernel.org
 help / color / mirror / Atom feed
* [Bug 79051] New: Panic with radeon hd 5750, bisected
@ 2014-06-27 12:52 bugzilla-daemon
  2014-06-27 21:06 ` [Bug 79051] " bugzilla-daemon
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: bugzilla-daemon @ 2014-06-27 12:52 UTC (permalink / raw)
  To: dri-devel

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.

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* [Bug 79051] Panic with radeon hd 5750, bisected
  2014-06-27 12:52 [Bug 79051] New: Panic with radeon hd 5750, bisected bugzilla-daemon
@ 2014-06-27 21:06 ` bugzilla-daemon
  2014-06-28 14:02 ` bugzilla-daemon
  2014-07-11 16:32 ` bugzilla-daemon
  2 siblings, 0 replies; 4+ messages in thread
From: bugzilla-daemon @ 2014-06-27 21:06 UTC (permalink / raw)
  To: dri-devel

https://bugzilla.kernel.org/show_bug.cgi?id=79051

Alex Deucher <alexdeucher@gmail.com> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |alexdeucher@gmail.com

--- Comment #1 from Alex Deucher <alexdeucher@gmail.com> ---
See this patch set and discussion:
http://lists.freedesktop.org/archives/dri-devel/2014-June/062411.html

-- 
You are receiving this mail because:
You are watching the assignee of the bug.

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [Bug 79051] Panic with radeon hd 5750, bisected
  2014-06-27 12:52 [Bug 79051] New: Panic with radeon hd 5750, bisected bugzilla-daemon
  2014-06-27 21:06 ` [Bug 79051] " bugzilla-daemon
@ 2014-06-28 14:02 ` bugzilla-daemon
  2014-07-11 16:32 ` bugzilla-daemon
  2 siblings, 0 replies; 4+ messages in thread
From: bugzilla-daemon @ 2014-06-28 14:02 UTC (permalink / raw)
  To: dri-devel

https://bugzilla.kernel.org/show_bug.cgi?id=79051

--- Comment #2 from Ed Tomlinson <edt@aei.ca> ---
I am seeing a similar panic on a R7 260X.

See:
https://plus.google.com/u/0/photos/108244876431105742323/albums/6029631260384977873/6029631269719723986?pid=6029631269719723986&oid=108244876431105742323

I cannot reproduce this on demand.  I am currently trying patch #2 and will
report if I see impossible msc times.

-- 
You are receiving this mail because:
You are watching the assignee of the bug.

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [Bug 79051] Panic with radeon hd 5750, bisected
  2014-06-27 12:52 [Bug 79051] New: Panic with radeon hd 5750, bisected bugzilla-daemon
  2014-06-27 21:06 ` [Bug 79051] " bugzilla-daemon
  2014-06-28 14:02 ` bugzilla-daemon
@ 2014-07-11 16:32 ` bugzilla-daemon
  2 siblings, 0 replies; 4+ messages in thread
From: bugzilla-daemon @ 2014-07-11 16:32 UTC (permalink / raw)
  To: dri-devel

https://bugzilla.kernel.org/show_bug.cgi?id=79051

Jonathan Howard <jonathan@unbiased.name> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|NEW                         |RESOLVED
         Resolution|---                         |PATCH_ALREADY_AVAILABLE

--- Comment #3 from Jonathan Howard <jonathan@unbiased.name> ---
3.16-rc4 3.15.5 both working. Expect (unchecked) discussion (above) patch is
applied.

-- 
You are receiving this mail because:
You are watching the assignee of the bug.

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2014-07-11 16:32 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-06-27 12:52 [Bug 79051] New: Panic with radeon hd 5750, bisected bugzilla-daemon
2014-06-27 21:06 ` [Bug 79051] " bugzilla-daemon
2014-06-28 14:02 ` bugzilla-daemon
2014-07-11 16:32 ` bugzilla-daemon

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.