From mboxrd@z Thu Jan 1 00:00:00 1970 From: bugzilla-daemon@freedesktop.org Subject: [Bug 53111] [bisected] lockups since added support for virtual address space on cayman v11 Date: Thu, 23 Aug 2012 13:13:25 +0000 Message-ID: References: Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: Received: from culpepper.freedesktop.org (unknown [131.252.210.165]) by gabe.freedesktop.org (Postfix) with ESMTP id D2B109E78F for ; Thu, 23 Aug 2012 06:13:24 -0700 (PDT) In-Reply-To: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: dri-devel-bounces+sf-dri-devel=m.gmane.org@lists.freedesktop.org Errors-To: dri-devel-bounces+sf-dri-devel=m.gmane.org@lists.freedesktop.org To: dri-devel@lists.freedesktop.org List-Id: dri-devel@lists.freedesktop.org https://bugs.freedesktop.org/show_bug.cgi?id=53111 --- Comment #21 from Alexandre Demers 2012-08-23 13:13:25 UTC --- (In reply to comment #20) > (In reply to comment #19) > > So about this locking piglit test (depthstencil-render-miplevels 146 > > s=z24_s8_d=z32f_s8), I've been able to track it down to: > > line 218: piglit_report_result(PIGLIT_SKIP); > > How did you determine that? It's weird, I wouldn't expect a skipped test to > produce any actual GPU rendering. I used gdb and step into the code until it locked. It gets out at level 0, after going through: /** * Attach the proper miplevel of each texture to the framebuffer */ void set_up_framebuffer_for_miplevel(int level)... Before this call, there is a framebuffer initialization: GLuint fbo; glGenFramebuffers(1, &fbo); glBindFramebuffer(GL_DRAW_FRAMEBUFFER, fbo); glBindFramebuffer(GL_READ_FRAMEBUFFER, fbo); for (int level = 0; level <= max_miplevel; ++level) { set_up_framebuffer_for_miplevel(level); -- Configure bugmail: https://bugs.freedesktop.org/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are the assignee for the bug.