All of lore.kernel.org
 help / color / mirror / Atom feed
* [Bug 92900] [regression bisected] About 700 piglit regressions is what could go wrong
@ 2015-11-11  8:46 bugzilla-daemon
  2015-11-11 14:35 ` bugzilla-daemon
                   ` (6 more replies)
  0 siblings, 7 replies; 8+ messages in thread
From: bugzilla-daemon @ 2015-11-11  8:46 UTC (permalink / raw)
  To: dri-devel


[-- Attachment #1.1: Type: text/plain, Size: 1911 bytes --]

https://bugs.freedesktop.org/show_bug.cgi?id=92900

            Bug ID: 92900
           Summary: [regression bisected] About 700 piglit regressions is
                    what could go wrong
           Product: Mesa
           Version: 11.0
          Hardware: x86-64 (AMD64)
                OS: All
            Status: NEW
          Severity: normal
          Priority: medium
         Component: Drivers/DRI/R100
          Assignee: dri-devel@lists.freedesktop.org
          Reporter: idr@freedesktop.org
        QA Contact: dri-devel@lists.freedesktop.org

About 700 piglit tests regressed on r100.  This includes, but is not limited
to:

All 648 subcases of clipflat
fbo-1d
fbo-clearmipmap
fbo-sys-sub-blit
gen-nonzero-unit
...

At least fbo-clearmipmap bisected to the following commit.  I did this bisect
using 'git bisect run' with that one test, and I haven't verified all the
others yet.

Tested on:

01:00.0 VGA compatible controller: Advanced Micro Devices, Inc. [AMD/ATI] RV200
[Radeon 7500/7500 LE]


This commit is in Mesa 11.0.

d21320f6258b2e1780a15c1ca718963d8a15ca18 is the first bad commit
commit d21320f6258b2e1780a15c1ca718963d8a15ca18
Author: Roland Scheidegger <sroland@vmware.com>
Date:   Thu Jul 16 03:18:20 2015 +0200

    radeon: fix some potential big endian issues

    The formats chosen (both by texture format choser, fbo storage allocation)
    are different for big endian not just for rgba8 but also lower bit width
    formats (why I don't actually know). Even the function to test for
renderable
    formats used different formats, however the actual colorbuffer setup did
not.
    And the blitter did not take that into account neither.
    Untested (what could possibly go wrong...).

    Acked-by: Marek Olšák <marek.olsak@amd.com>

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

[-- Attachment #1.2: Type: text/html, Size: 3401 bytes --]

[-- Attachment #2: Type: text/plain, Size: 159 bytes --]

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel

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

* [Bug 92900] [regression bisected] About 700 piglit regressions is what could go wrong
  2015-11-11  8:46 [Bug 92900] [regression bisected] About 700 piglit regressions is what could go wrong bugzilla-daemon
@ 2015-11-11 14:35 ` bugzilla-daemon
  2015-11-11 17:25 ` bugzilla-daemon
                   ` (5 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: bugzilla-daemon @ 2015-11-11 14:35 UTC (permalink / raw)
  To: dri-devel


[-- Attachment #1.1: Type: text/plain, Size: 872 bytes --]

https://bugs.freedesktop.org/show_bug.cgi?id=92900

--- Comment #1 from Roland Scheidegger <sroland@vmware.com> ---
Oops, my bad...
This commit was based on code analysis (and some reports that things don't
quite work on big endian) - texturing and backend doing completely different
things wrt le/be. But for the LE case I don't really see any actual
differences. Except maybe the missing case for MESA_FORMAT_B8G8R8X8_UNORM in
blitter setup - the tx_table doesn't contain it because it's never chosen by
the texture format chooser (albeit the same blit code still tries to handle it
for backend setup, and we don't skip it above, so that's slightly buggy). Maybe
we still get this by the winsys buffers? If so adding it to the tx_table might
be necessary. I can't actually test this, though...

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

[-- Attachment #1.2: Type: text/html, Size: 1690 bytes --]

[-- Attachment #2: Type: text/plain, Size: 159 bytes --]

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel

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

* [Bug 92900] [regression bisected] About 700 piglit regressions is what could go wrong
  2015-11-11  8:46 [Bug 92900] [regression bisected] About 700 piglit regressions is what could go wrong bugzilla-daemon
  2015-11-11 14:35 ` bugzilla-daemon
@ 2015-11-11 17:25 ` bugzilla-daemon
  2015-11-11 17:53 ` bugzilla-daemon
                   ` (4 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: bugzilla-daemon @ 2015-11-11 17:25 UTC (permalink / raw)
  To: dri-devel


[-- Attachment #1.1: Type: text/plain, Size: 285 bytes --]

https://bugs.freedesktop.org/show_bug.cgi?id=92900

--- Comment #2 from Marek Olšák <maraeo@gmail.com> ---
If there are no simple way to fix this, the best course of action is to revert
the commit.

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

[-- Attachment #1.2: Type: text/html, Size: 1116 bytes --]

[-- Attachment #2: Type: text/plain, Size: 159 bytes --]

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel

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

* [Bug 92900] [regression bisected] About 700 piglit regressions is what could go wrong
  2015-11-11  8:46 [Bug 92900] [regression bisected] About 700 piglit regressions is what could go wrong bugzilla-daemon
  2015-11-11 14:35 ` bugzilla-daemon
  2015-11-11 17:25 ` bugzilla-daemon
@ 2015-11-11 17:53 ` bugzilla-daemon
  2015-11-12  0:07 ` bugzilla-daemon
                   ` (3 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: bugzilla-daemon @ 2015-11-11 17:53 UTC (permalink / raw)
  To: dri-devel


[-- Attachment #1.1: Type: text/plain, Size: 675 bytes --]

https://bugs.freedesktop.org/show_bug.cgi?id=92900

--- Comment #3 from Roland Scheidegger <sroland@vmware.com> ---
(In reply to Marek Olšák from comment #2)
> If there are no simple way to fix this, the best course of action is to
> revert the commit.

Well if it's the missing B8G8R8X8 stuff this could be added trivially to the
table like so:
[ MESA_FORMAT_B8G8R8X8_UNORM ] = { RADEON_TXFORMAT_ARGB8888, 0 },
[ MESA_FORMAT_X8R8G8B8_UNORM ] = { RADEON_TXFORMAT_ARGB8888, 0 },

Other than that, I really don't see anything which could make a difference on
le systems.

Roland

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

[-- Attachment #1.2: Type: text/html, Size: 1586 bytes --]

[-- Attachment #2: Type: text/plain, Size: 159 bytes --]

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel

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

* [Bug 92900] [regression bisected] About 700 piglit regressions is what could go wrong
  2015-11-11  8:46 [Bug 92900] [regression bisected] About 700 piglit regressions is what could go wrong bugzilla-daemon
                   ` (2 preceding siblings ...)
  2015-11-11 17:53 ` bugzilla-daemon
@ 2015-11-12  0:07 ` bugzilla-daemon
  2015-11-12 19:02 ` bugzilla-daemon
                   ` (2 subsequent siblings)
  6 siblings, 0 replies; 8+ messages in thread
From: bugzilla-daemon @ 2015-11-12  0:07 UTC (permalink / raw)
  To: dri-devel


[-- Attachment #1.1: Type: text/plain, Size: 938 bytes --]

https://bugs.freedesktop.org/show_bug.cgi?id=92900

--- Comment #4 from Ian Romanick <idr@freedesktop.org> ---
(In reply to Roland Scheidegger from comment #3)
> (In reply to Marek Olšák from comment #2)
> > If there are no simple way to fix this, the best course of action is to
> > revert the commit.
> 
> Well if it's the missing B8G8R8X8 stuff this could be added trivially to the
> table like so:
> [ MESA_FORMAT_B8G8R8X8_UNORM ] = { RADEON_TXFORMAT_ARGB8888, 0 },
> [ MESA_FORMAT_X8R8G8B8_UNORM ] = { RADEON_TXFORMAT_ARGB8888, 0 },

That fixes the problem here.  If you want to send that as a patch, you can put

Tested-by: Ian Romanick <ian.d.romanick@intel.com>
Cc: "11.0" <mesa-stable@lists.freedesktop.org>

on it.

> Other than that, I really don't see anything which could make a difference
> on le systems.
> 
> Roland

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

[-- Attachment #1.2: Type: text/html, Size: 2086 bytes --]

[-- Attachment #2: Type: text/plain, Size: 159 bytes --]

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel

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

* [Bug 92900] [regression bisected] About 700 piglit regressions is what could go wrong
  2015-11-11  8:46 [Bug 92900] [regression bisected] About 700 piglit regressions is what could go wrong bugzilla-daemon
                   ` (3 preceding siblings ...)
  2015-11-12  0:07 ` bugzilla-daemon
@ 2015-11-12 19:02 ` bugzilla-daemon
  2015-11-17  0:12 ` bugzilla-daemon
  2015-11-17 16:15 ` bugzilla-daemon
  6 siblings, 0 replies; 8+ messages in thread
From: bugzilla-daemon @ 2015-11-12 19:02 UTC (permalink / raw)
  To: dri-devel


[-- Attachment #1.1: Type: text/plain, Size: 474 bytes --]

https://bugs.freedesktop.org/show_bug.cgi?id=92900

--- Comment #5 from Roland Scheidegger <sroland@vmware.com> ---
(In reply to Ian Romanick from comment #4)
> 
> That fixes the problem here.  If you want to send that as a patch, you can
> put
> 
> Tested-by: Ian Romanick <ian.d.romanick@intel.com>
> Cc: "11.0" <mesa-stable@lists.freedesktop.org>
> 
> on it.


Thanks for testing! Patches sent.

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

[-- Attachment #1.2: Type: text/html, Size: 1522 bytes --]

[-- Attachment #2: Type: text/plain, Size: 159 bytes --]

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel

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

* [Bug 92900] [regression bisected] About 700 piglit regressions is what could go wrong
  2015-11-11  8:46 [Bug 92900] [regression bisected] About 700 piglit regressions is what could go wrong bugzilla-daemon
                   ` (4 preceding siblings ...)
  2015-11-12 19:02 ` bugzilla-daemon
@ 2015-11-17  0:12 ` bugzilla-daemon
  2015-11-17 16:15 ` bugzilla-daemon
  6 siblings, 0 replies; 8+ messages in thread
From: bugzilla-daemon @ 2015-11-17  0:12 UTC (permalink / raw)
  To: dri-devel


[-- Attachment #1.1: Type: text/plain, Size: 568 bytes --]

https://bugs.freedesktop.org/show_bug.cgi?id=92900

Roland Scheidegger <sroland@vmware.com> changed:

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

--- Comment #6 from Roland Scheidegger <sroland@vmware.com> ---
Fixed by 983614dbede7b94cba1bad9f3e8627fc5e14bb91.
Sorry for that regression...

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

[-- Attachment #1.2: Type: text/html, Size: 2113 bytes --]

[-- Attachment #2: Type: text/plain, Size: 159 bytes --]

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel

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

* [Bug 92900] [regression bisected] About 700 piglit regressions is what could go wrong
  2015-11-11  8:46 [Bug 92900] [regression bisected] About 700 piglit regressions is what could go wrong bugzilla-daemon
                   ` (5 preceding siblings ...)
  2015-11-17  0:12 ` bugzilla-daemon
@ 2015-11-17 16:15 ` bugzilla-daemon
  6 siblings, 0 replies; 8+ messages in thread
From: bugzilla-daemon @ 2015-11-17 16:15 UTC (permalink / raw)
  To: dri-devel


[-- Attachment #1.1: Type: text/plain, Size: 410 bytes --]

https://bugs.freedesktop.org/show_bug.cgi?id=92900

--- Comment #7 from Ian Romanick <idr@freedesktop.org> ---
(In reply to Roland Scheidegger from comment #6)
> Fixed by 983614dbede7b94cba1bad9f3e8627fc5e14bb91.
> Sorry for that regression...

It happens.  You can CC me on future radeon and r200 patches, and I'll try to
test them.

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

[-- Attachment #1.2: Type: text/html, Size: 1348 bytes --]

[-- Attachment #2: Type: text/plain, Size: 159 bytes --]

_______________________________________________
dri-devel mailing list
dri-devel@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/dri-devel

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

end of thread, other threads:[~2015-11-17 16:15 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-11-11  8:46 [Bug 92900] [regression bisected] About 700 piglit regressions is what could go wrong bugzilla-daemon
2015-11-11 14:35 ` bugzilla-daemon
2015-11-11 17:25 ` bugzilla-daemon
2015-11-11 17:53 ` bugzilla-daemon
2015-11-12  0:07 ` bugzilla-daemon
2015-11-12 19:02 ` bugzilla-daemon
2015-11-17  0:12 ` bugzilla-daemon
2015-11-17 16:15 ` 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.