[Nouveau] [Bug 80738] New: Possible wrong variable used in nouveau_allocate_surface
bugzilla-daemon at freedesktop.org
bugzilla-daemon at freedesktop.org
Mon Jun 30 19:27:04 PDT 2014
https://bugs.freedesktop.org/show_bug.cgi?id=80738
Priority: medium
Bug ID: 80738
Assignee: nouveau at lists.freedesktop.org
Summary: Possible wrong variable used in
nouveau_allocate_surface
QA Contact: xorg-team at lists.x.org
Severity: normal
Classification: Unclassified
OS: All
Reporter: pstglia at gmail.com
Hardware: Other
Status: NEW
Version: unspecified
Component: Driver/nouveau
Product: xorg
Hi,
I was analyzing xf86 video nouveau code and found a possible bug on
nouveau_allocate_surface (nv_accel_common.c src file)
When setting tile_mode for NV_FERMI/NVC0 or higher families, it uses tile_mode
to calculate height. However, instead of using "cfg.nvc0.tile_mode" it is using
"cfg.nv50.tile_mode". See bellow:
if (pNv->Architecture >= NV_FERMI) {
if (height > 64) cfg.nvc0.tile_mode = 0x040;
else if (height > 32) cfg.nvc0.tile_mode = 0x030;
else if (height > 16) cfg.nvc0.tile_mode = 0x020;
else if (height > 8) cfg.nvc0.tile_mode = 0x010;
else cfg.nvc0.tile_mode = 0x000;
if (usage_hint & NOUVEAU_CREATE_PIXMAP_ZETA)
cfg.nvc0.memtype = (bpp == 16) ? 0x01 : 0x11;
else
cfg.nvc0.memtype = 0xfe;
height = NOUVEAU_ALIGN(height,
NVC0_TILE_HEIGHT(cfg.nv50.tile_mode));
If this is intentional, please mark this bug as Invalid and sorry for
disturbing.
Regards,
Paulo Sérgio Travaglia
--
You are receiving this mail because:
You are the assignee for the bug.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.freedesktop.org/archives/nouveau/attachments/20140701/3ab5bcc7/attachment.html>
More information about the Nouveau
mailing list