https://bugs.freedesktop.org/show_bug.cgi?id=26525
Paul-Andre Panon <ppanon(a)shaw.ca> changed:
What |Removed |Added
----------------------------------------------------------------------------
Status|NEEDINFO |RESOLVED
Resolution|--- |FIXED
--- Comment #13 from Paul-Andre Panon <ppanon(a)shaw.ca> ---
It seems to be resolved. I just reloaded 3Dmark2001SE and ran it under Ubuntu
12.…
[View More]04 with current gallium drivers and wine and couldn't reproduce the issue.
--
You are receiving this mail because:
You are the assignee for the bug.
[View Less]
Okay just pushed out a bunch of -next queued stuff,
I've been stuck on another project for a couple of weeks and haven't
really being paying enough attention to -next, so this is a heads up,
if someone has something big they want merged this window and I
haven't seen it yet or merged it yet, you should probably mention it
in a reply to this mail with a summary of where you think its at.
(e.g. atomic nuclear modesetting flipping).
personal messages follow:
Thomas:
I merged some of the vmware …
[View More]patches I saw, I got to
[6/8] drm/vmwgfx: Refactor resource management
it didn't apply, it wasn't trivial, so you need to resend the 6/7/8 on
top of this tree, or point me to what I missed that makes it all
magically work!
Alex/Ben: -next trees if you have anything interesting.
Daniel: I've pulled -next from you, I'm hoping that is all you have
for this merge window!
I've also merge the polling rework, I'll have to spend a bit of time
testing it I suppose now.
Imre: merged the monotonic timestamps, please confirm it was okay!
Thierry: congrats I merged tegra, thanks for the hard work!
Maarten: merged some of the TTM patches, you might want to send me a
summary of any other TH reviewed that I haven't picked up on yet.
Anyone else that sent stuff and can't find it and it needs to be in
here, do let me know!
Dave.
[View Less]
Only compile time tested, noticed nv50_fence_create was never used,
so fix this. This will probably fix vblank on nv50 cards.
Hopefully this is still in time for 3.7 final release.
Signed-off-by: Maarten Lankhorst <maarten.lankhorst(a)canonical.com>
---
diff --git a/drivers/gpu/drm/nouveau/nouveau_drm.c b/drivers/gpu/drm/nouveau/nouveau_drm.c
index 0910125..8503b2e 100644
--- a/drivers/gpu/drm/nouveau/nouveau_drm.c
+++ b/drivers/gpu/drm/nouveau/nouveau_drm.c
@@ -129,7 +129,8 @@ …
[View More]nouveau_accel_init(struct nouveau_drm *drm)
/* initialise synchronisation routines */
if (device->card_type < NV_10) ret = nv04_fence_create(drm);
- else if (device->chipset < 0x84) ret = nv10_fence_create(drm);
+ else if (device->card_type < NV_50) ret = nv10_fence_create(drm);
+ else if (device->chipset < 0x84) ret = nv50_fence_create(drm);
else if (device->card_type < NV_C0) ret = nv84_fence_create(drm);
else ret = nvc0_fence_create(drm);
if (ret) {
[View Less]
I sent this to the lkml but i got no reply. maybe im missing something
obvious? my report lacks information? or this list is the apropiate
place to send ;)
---------- Forwarded message ----------
From: Tomas M <tmezzadra(a)gmail.com>
Date: Thu, Nov 8, 2012 at 5:51 PM
Subject: [i915] linux-3.7-rc1 onwards, backlight will not turn on
To: linux-kernel(a)vger.kernel.org
Hello.
First of all, ive been trying to bisect this, but from 3.6.0 to
3.7-rc1 the kernel has behaved really bad so i …
[View More]cannot test without
hitting other more serious bugs (already fixed).
the issue as follows:
device boots ok up to when the kernel sets the display mode. then the
screen goes dark, and there is no way to restore it. suspend-resume
cycle will fix it. the backlight is turned on.
attaching a dmesg from such a boot (linux-3.7-rc4). the dirty part is
due to depmod sed i use in my build script. i have not modified the
kernel in any way, nor inserted any binary blobs.
if you need any further debugging info , please say so, im unaware on
how to hunt this.
please CC me since im not subscribed.
thanks in advance
Tomas Mezzadra
[View Less]