* [Bug 27043] [bisected DRI1] drmRadeonCmdBuffer: -22. Kernel failed to parse or rejected command stream. See dmesg for more info.
2010-03-12 11:15 [Bug 27043] New: [bisected DRI1] drmRadeonCmdBuffer: -22. Kernel failed to parse or rejected command stream. See dmesg for more info bugzilla-daemon
@ 2010-03-12 14:13 ` bugzilla-daemon
2010-03-12 16:23 ` bugzilla-daemon
` (8 subsequent siblings)
9 siblings, 0 replies; 11+ messages in thread
From: bugzilla-daemon @ 2010-03-12 14:13 UTC (permalink / raw)
To: dri-devel
http://bugs.freedesktop.org/show_bug.cgi?id=27043
--- Comment #1 from Fabio Pedretti <fabio.ped@libero.it> 2010-03-12 06:13:30 PST ---
This is what dmesg shows:
[drm:r300_do_cp_cmdbuf] *ERROR* bad cmd_type 148 at e666f878
--
Configure bugmail: http://bugs.freedesktop.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.
------------------------------------------------------------------------------
Download Intel® Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
--
^ permalink raw reply [flat|nested] 11+ messages in thread* [Bug 27043] [bisected DRI1] drmRadeonCmdBuffer: -22. Kernel failed to parse or rejected command stream. See dmesg for more info.
2010-03-12 11:15 [Bug 27043] New: [bisected DRI1] drmRadeonCmdBuffer: -22. Kernel failed to parse or rejected command stream. See dmesg for more info bugzilla-daemon
2010-03-12 14:13 ` [Bug 27043] " bugzilla-daemon
@ 2010-03-12 16:23 ` bugzilla-daemon
2010-03-12 16:43 ` bugzilla-daemon
` (7 subsequent siblings)
9 siblings, 0 replies; 11+ messages in thread
From: bugzilla-daemon @ 2010-03-12 16:23 UTC (permalink / raw)
To: dri-devel
http://bugs.freedesktop.org/show_bug.cgi?id=27043
--- Comment #2 from Alex Deucher <agd5f@yahoo.com> 2010-03-12 08:23:29 PST ---
should be fixed in d1ca1599f0319f5c99852ce24420aa592e806db0
--
Configure bugmail: http://bugs.freedesktop.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.
------------------------------------------------------------------------------
Download Intel® Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
--
^ permalink raw reply [flat|nested] 11+ messages in thread* [Bug 27043] [bisected DRI1] drmRadeonCmdBuffer: -22. Kernel failed to parse or rejected command stream. See dmesg for more info.
2010-03-12 11:15 [Bug 27043] New: [bisected DRI1] drmRadeonCmdBuffer: -22. Kernel failed to parse or rejected command stream. See dmesg for more info bugzilla-daemon
2010-03-12 14:13 ` [Bug 27043] " bugzilla-daemon
2010-03-12 16:23 ` bugzilla-daemon
@ 2010-03-12 16:43 ` bugzilla-daemon
2010-03-12 18:53 ` bugzilla-daemon
` (6 subsequent siblings)
9 siblings, 0 replies; 11+ messages in thread
From: bugzilla-daemon @ 2010-03-12 16:43 UTC (permalink / raw)
To: dri-devel
http://bugs.freedesktop.org/show_bug.cgi?id=27043
--- Comment #3 from Fabio Pedretti <fabio.ped@libero.it> 2010-03-12 08:43:09 PST ---
(In reply to comment #2)
> should be fixed in d1ca1599f0319f5c99852ce24420aa592e806db0
>
It's fixed, but I noticed that it would work also with:
functions->CopyPixels = _mesa_meta_CopyPixels;
functions->DrawPixels = _mesa_meta_DrawPixels;
if (radeon->radeonScreen->kernel_mm) {
functions->ReadPixels = radeonReadPixels;
}
Is this better than current?
if (radeon->radeonScreen->kernel_mm) {
functions->CopyPixels = _mesa_meta_CopyPixels;
functions->DrawPixels = _mesa_meta_DrawPixels;
functions->ReadPixels = radeonReadPixels;
}
--
Configure bugmail: http://bugs.freedesktop.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.
------------------------------------------------------------------------------
Download Intel® Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
--
^ permalink raw reply [flat|nested] 11+ messages in thread* [Bug 27043] [bisected DRI1] drmRadeonCmdBuffer: -22. Kernel failed to parse or rejected command stream. See dmesg for more info.
2010-03-12 11:15 [Bug 27043] New: [bisected DRI1] drmRadeonCmdBuffer: -22. Kernel failed to parse or rejected command stream. See dmesg for more info bugzilla-daemon
` (2 preceding siblings ...)
2010-03-12 16:43 ` bugzilla-daemon
@ 2010-03-12 18:53 ` bugzilla-daemon
2010-03-12 18:58 ` bugzilla-daemon
` (5 subsequent siblings)
9 siblings, 0 replies; 11+ messages in thread
From: bugzilla-daemon @ 2010-03-12 18:53 UTC (permalink / raw)
To: dri-devel
http://bugs.freedesktop.org/show_bug.cgi?id=27043
--- Comment #4 from Alex Deucher <agd5f@yahoo.com> 2010-03-12 10:53:26 PST ---
(In reply to comment #3)
> (In reply to comment #2)
> > should be fixed in d1ca1599f0319f5c99852ce24420aa592e806db0
> >
>
> It's fixed, but I noticed that it would work also with:
>
> functions->CopyPixels = _mesa_meta_CopyPixels;
> functions->DrawPixels = _mesa_meta_DrawPixels;
> if (radeon->radeonScreen->kernel_mm) {
> functions->ReadPixels = radeonReadPixels;
> }
>
> Is this better than current?
>
> if (radeon->radeonScreen->kernel_mm) {
> functions->CopyPixels = _mesa_meta_CopyPixels;
> functions->DrawPixels = _mesa_meta_DrawPixels;
> functions->ReadPixels = radeonReadPixels;
> }
>
Should be fine. Care to create a patch?
--
Configure bugmail: http://bugs.freedesktop.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.
------------------------------------------------------------------------------
Download Intel® Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
--
^ permalink raw reply [flat|nested] 11+ messages in thread* [Bug 27043] [bisected DRI1] drmRadeonCmdBuffer: -22. Kernel failed to parse or rejected command stream. See dmesg for more info.
2010-03-12 11:15 [Bug 27043] New: [bisected DRI1] drmRadeonCmdBuffer: -22. Kernel failed to parse or rejected command stream. See dmesg for more info bugzilla-daemon
` (3 preceding siblings ...)
2010-03-12 18:53 ` bugzilla-daemon
@ 2010-03-12 18:58 ` bugzilla-daemon
2010-03-12 19:02 ` bugzilla-daemon
` (4 subsequent siblings)
9 siblings, 0 replies; 11+ messages in thread
From: bugzilla-daemon @ 2010-03-12 18:58 UTC (permalink / raw)
To: dri-devel
http://bugs.freedesktop.org/show_bug.cgi?id=27043
--- Comment #5 from Michel Dänzer <michel@daenzer.net> 2010-03-12 10:58:05 PST ---
(In reply to comment #3)
> functions->CopyPixels = _mesa_meta_CopyPixels;
> functions->DrawPixels = _mesa_meta_DrawPixels;
> if (radeon->radeonScreen->kernel_mm) {
> functions->ReadPixels = radeonReadPixels;
> }
Did you actually test glReadPixels() with that?
--
Configure bugmail: http://bugs.freedesktop.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.
------------------------------------------------------------------------------
Download Intel® Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
--
_______________________________________________
Dri-devel mailing list
Dri-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dri-devel
^ permalink raw reply [flat|nested] 11+ messages in thread* [Bug 27043] [bisected DRI1] drmRadeonCmdBuffer: -22. Kernel failed to parse or rejected command stream. See dmesg for more info.
2010-03-12 11:15 [Bug 27043] New: [bisected DRI1] drmRadeonCmdBuffer: -22. Kernel failed to parse or rejected command stream. See dmesg for more info bugzilla-daemon
` (4 preceding siblings ...)
2010-03-12 18:58 ` bugzilla-daemon
@ 2010-03-12 19:02 ` bugzilla-daemon
2010-03-12 20:09 ` bugzilla-daemon
` (3 subsequent siblings)
9 siblings, 0 replies; 11+ messages in thread
From: bugzilla-daemon @ 2010-03-12 19:02 UTC (permalink / raw)
To: dri-devel
http://bugs.freedesktop.org/show_bug.cgi?id=27043
--- Comment #6 from Michel Dänzer <michel@daenzer.net> 2010-03-12 11:02:17 PST ---
(In reply to comment #5)
> Did you actually test glReadPixels() with that?
Err, I mean glCopyPixels and glDrawPixels.
--
Configure bugmail: http://bugs.freedesktop.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.
------------------------------------------------------------------------------
Download Intel® Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
--
_______________________________________________
Dri-devel mailing list
Dri-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/dri-devel
^ permalink raw reply [flat|nested] 11+ messages in thread* [Bug 27043] [bisected DRI1] drmRadeonCmdBuffer: -22. Kernel failed to parse or rejected command stream. See dmesg for more info.
2010-03-12 11:15 [Bug 27043] New: [bisected DRI1] drmRadeonCmdBuffer: -22. Kernel failed to parse or rejected command stream. See dmesg for more info bugzilla-daemon
` (5 preceding siblings ...)
2010-03-12 19:02 ` bugzilla-daemon
@ 2010-03-12 20:09 ` bugzilla-daemon
2010-03-15 8:55 ` bugzilla-daemon
` (2 subsequent siblings)
9 siblings, 0 replies; 11+ messages in thread
From: bugzilla-daemon @ 2010-03-12 20:09 UTC (permalink / raw)
To: dri-devel
http://bugs.freedesktop.org/show_bug.cgi?id=27043
--- Comment #7 from Alex Deucher <agd5f@yahoo.com> 2010-03-12 12:09:02 PST ---
Created an attachment (id=34007)
--> (http://bugs.freedesktop.org/attachment.cgi?id=34007)
enable meta ops for draw/coopy pixels
Seems to work ok here.
--
Configure bugmail: http://bugs.freedesktop.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.
------------------------------------------------------------------------------
Download Intel® Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
--
^ permalink raw reply [flat|nested] 11+ messages in thread* [Bug 27043] [bisected DRI1] drmRadeonCmdBuffer: -22. Kernel failed to parse or rejected command stream. See dmesg for more info.
2010-03-12 11:15 [Bug 27043] New: [bisected DRI1] drmRadeonCmdBuffer: -22. Kernel failed to parse or rejected command stream. See dmesg for more info bugzilla-daemon
` (6 preceding siblings ...)
2010-03-12 20:09 ` bugzilla-daemon
@ 2010-03-15 8:55 ` bugzilla-daemon
2010-03-15 15:08 ` bugzilla-daemon
2010-03-24 19:45 ` bugzilla-daemon
9 siblings, 0 replies; 11+ messages in thread
From: bugzilla-daemon @ 2010-03-15 8:55 UTC (permalink / raw)
To: dri-devel
http://bugs.freedesktop.org/show_bug.cgi?id=27043
--- Comment #8 from Fabio Pedretti <fabio.ped@libero.it> 2010-03-15 01:55:25 PST ---
(In reply to comment #6)
> (In reply to comment #5)
> > Did you actually test glReadPixels() with that?
>
> Err, I mean glCopyPixels and glDrawPixels.
I tested only the game, but shouldn't _mesa_meta_DrawPixels and
_mesa_meta_CopyPixels be already the default BTW?
--
Configure bugmail: http://bugs.freedesktop.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.
------------------------------------------------------------------------------
Download Intel® Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
--
^ permalink raw reply [flat|nested] 11+ messages in thread* [Bug 27043] [bisected DRI1] drmRadeonCmdBuffer: -22. Kernel failed to parse or rejected command stream. See dmesg for more info.
2010-03-12 11:15 [Bug 27043] New: [bisected DRI1] drmRadeonCmdBuffer: -22. Kernel failed to parse or rejected command stream. See dmesg for more info bugzilla-daemon
` (7 preceding siblings ...)
2010-03-15 8:55 ` bugzilla-daemon
@ 2010-03-15 15:08 ` bugzilla-daemon
2010-03-24 19:45 ` bugzilla-daemon
9 siblings, 0 replies; 11+ messages in thread
From: bugzilla-daemon @ 2010-03-15 15:08 UTC (permalink / raw)
To: dri-devel
http://bugs.freedesktop.org/show_bug.cgi?id=27043
--- Comment #9 from Alex Deucher <agd5f@yahoo.com> 2010-03-15 08:08:46 PST ---
(In reply to comment #8)
> > Err, I mean glCopyPixels and glDrawPixels.
>
> I tested only the game, but shouldn't _mesa_meta_DrawPixels and
> _mesa_meta_CopyPixels be already the default BTW?
>
They weren't enabled until that patch.
--
Configure bugmail: http://bugs.freedesktop.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.
------------------------------------------------------------------------------
Download Intel® Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
--
^ permalink raw reply [flat|nested] 11+ messages in thread* [Bug 27043] [bisected DRI1] drmRadeonCmdBuffer: -22. Kernel failed to parse or rejected command stream. See dmesg for more info.
2010-03-12 11:15 [Bug 27043] New: [bisected DRI1] drmRadeonCmdBuffer: -22. Kernel failed to parse or rejected command stream. See dmesg for more info bugzilla-daemon
` (8 preceding siblings ...)
2010-03-15 15:08 ` bugzilla-daemon
@ 2010-03-24 19:45 ` bugzilla-daemon
9 siblings, 0 replies; 11+ messages in thread
From: bugzilla-daemon @ 2010-03-24 19:45 UTC (permalink / raw)
To: dri-devel
http://bugs.freedesktop.org/show_bug.cgi?id=27043
Alex Deucher <agd5f@yahoo.com> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEW |RESOLVED
Resolution| |FIXED
--- Comment #10 from Alex Deucher <agd5f@yahoo.com> 2010-03-24 12:45:51 PST ---
pushed the patch in comment 7.
--
Configure bugmail: http://bugs.freedesktop.org/userprefs.cgi?tab=email
------- You are receiving this mail because: -------
You are the assignee for the bug.
------------------------------------------------------------------------------
Download Intel® Parallel Studio Eval
Try the new software tools for yourself. Speed compiling, find bugs
proactively, and fine-tune applications for parallel performance.
See why Intel Parallel Studio got high marks during beta.
http://p.sf.net/sfu/intel-sw-dev
--
^ permalink raw reply [flat|nested] 11+ messages in thread