=== ScottK2 is now known as ScottK [06:38] RAOF: I suppose we want xserver 1.10.4 for oneiric? [06:38] still at 1.10.2.902 [06:38] tjaalton: Yup. [06:39] It's one of my TODOs, but don't let that stop you from doing it :) [06:39] heh, ok. I'll probably merge it then [06:40] we need to upstream patch 503, unless it's in master [06:40] uh no, patch 504 [06:40] Which one's 504? [06:41] the wacom-jumping-to-0,0 [06:41] fix for that [06:41] Ah, that one. [06:41] Didn't Chase already send that upstream? [06:41] not sure it's upstream yet, I ran off for my vacation when it was done [06:42] well couldn't find it on the list, but that doesn't prove anything :) [06:42] Or is it part of the neverending-stream-of-multitouch? [06:43] hum, could be, actually [06:44] yeah, rings a bell now [06:44] Because it wasn't an issue on an upstream Xserver. [06:45] right [06:45] and that's why it's numbered as 5xx [06:45] duh [06:45] :) === thade_w is now known as Alexia_Death_ [09:00] hi [09:00] I have 2 computers connected to a monitor, and only on my oneiric box, the monitor loses the signal randomly, and so displays nothing [09:01] xorg or kernel driver? [09:01] depends on the driver [09:02] um [09:02] rodrigo_, if a KMS driver, then kernel [09:02] the hw and then the driver :) [09:02] it's the nvidia driver [09:03] well, it's the same blob then [09:03] so, anything I can do to fix it? [09:04] file a bug and assign to tseliot :) [09:04] no, do a bit more experimentation first [09:05] "loses signal randomly" is so generic as to be worthless as a bug report ;-) [09:06] yeah, what log files should I look at? [09:06] characterize the problem. Eliminate the other computer from the equation. Identify if it's a regression and if so, when did it start. Experiment with ways to reproduce it. Change out monitor and/or video card. [09:06] .xsession-errors doesn't seem to contain anything [09:06] ok [09:06] dmesg or /var/log/Xorg.0.log [09:06] however for this type of problem they almost never have anythingn useful [09:07] there's also a nvidia configuration tool; dunno if it has any settings of use but at least make a pass through it and test anything that looks worthwhile [09:07] ok [09:08] _then_ file a bug itemizing your findings, and assign to tseliot, and he can approach NVIDIA about it [09:08] well if the other machine is on nvidia too then it's a regression in the driver [09:08] if not, then all bets are off [09:09] guess could be a fault in the kvm or whatever he's using to connect the monitor [09:09] not-enough-info ;-) [09:10] hmm, nvidia-settings shows the temperature of the GPU, 80+ÂșC, is that ok, isn't it too hot? [09:11] the other computer doesn't use nvidia driver [09:11] rodrigo_, sounds like item #1 for your research journal ;-) [09:11] :) [09:12] (no, I don't think it's too hot, but worth study; an overheated gpu can cause power downs) [09:13] hmm, it's happened in the last few days, when temperatures are quite high here, might be this indeed [09:16] rodrigo_: something similar always happens to me (no matter what graphics card I use) and I have to press the scan button of my monitor to get my 2nd pc screen back [09:16] heya tseliot! :-) [09:17] rodrigo_: can you try with nouveau and see if you can reproduce the issue? [09:17] hi bryceh [13:23] Hello, i updated the bug lp:#785280 concerning the transparency problem with intel driver and remote Xorg server, someone have identified the first problematic commit. Can someone take a look at this ? [13:29] Sarvatt: I think what mgariepy reported affects sandybridge [23:10] So on 11.10 alpha how do I stop the framebuffer console so I can reload my driver? "echo 0 | sudo dd of=/sys/class/vtconsole/vtcon[0-1]/bind" doesn't seem to work [23:10] driver here being the kms kernel driver. [23:15] Prf_Jakob: Hm. I've never managed to get that to work myself, but I've not tried terribly hard; a reboot is fast enough to make it not worth the hassle for me. [23:16] Works like a charm on 11.04 for me, so I'm a bit suprised to see it go away. [23:17] (at least with vmwgfx). [23:18] While you are here, who is responsible for the DRI udev rules? [23:19] To which udev rules are you referring? [23:20] Do you mean /lib/udev/rules.d/78-graphics-card.rules ? [23:20] Which sets up PRIMARY_DEVICE_FOR_DISPLAY, or something else? [23:20] The ones that sets up permissions on the nodes. [23:21] /dev/dri/card0 and the rest [23:23] The standalone driver we have doesn't register the nodes as "drm" class but instead they get the class of "vmwgfx", so we need to install our own rules to get the correct permissions on the nodes. [23:23] Currently I just hacked to to 0666 which isn't particular secure. [23:24] Two places - 50-default-udev.rules sets the "video" group on everything in the drm class, and 70-udev-acl.rules sets up the "console user gets ACL" bits, again for drm class. [23:24] They're both in the udev package. [23:25] ok thanks I'll take a look [23:25] So, either register the nodes as "drm", throw in a new udev rule, or file a bug against udev asking for vmwgfx to be handled like that. [23:25] Since that's in the upstream kernel, I'd guess that the ultimately-correct option would be either register-as-drm, or for those standard udev rules to be updated for vmwgfx. [23:26] I don't think we can register them as drm because they get the class name from the module name (and we have baked in a copy of drm into the standalone repo). [23:26] Okay, forgot to clarify, this is not a problem for the upstream driver. Only the standalone one we have on the side. [23:27] Ah. [23:27] Which is drm+ttm+vmwgfx in a seperate repository. [23:28] We had to support a rather wide range of kernels, it was just easier to a standalone version. [23:28] Then ship a udev rule with it; the relevant magic is SUBSYSTEM=="drm", KERNEL=="card*", TAG+="udev-acl" for the ConsoleKit integration, and SUBSYSTEM=="drm", GROUP="video" for the (legacy) video grouping. [23:28] Ah thanks! [23:28] For how long as that been the case? [23:28] I know the old rules we got worked around 9.10 ish. [23:29] I think the video group stuff has been possible forever; I'm less sure of the udev-acl. [23:29] Yeah I don't recognize that. [23:30] Oh, and the rule with the udev-acl tag needs to be executed before the 70-udev-acl.rules rule, which means install at 69 or below. [23:30] ok [23:30] I think udev-acl has been around for at least a couple of releases. [23:30] right === yofel_ is now known as yofel