[00:00] odd to use both an unstable distro and a ppa [00:01] but they knows what they likes i guess [00:01] well its not as big a deal for fglrx because the stuff from amd.com works fine if you build debs, no options on nvidia :) [00:01] outside of learning how to package it yourself [00:02] and 295.20 is severely busted with gnome-shell [00:02] all fixed up in .33 [00:06] ok, sent in driver and nvidia-settings [00:06] bjsnider: if its a pain in the butt just dont bother, it'll most likely be up on monday [00:07] from the looks of the build farm it will be built very quickly [00:07] holy crap, never seen the queue that empty [00:08] must not have been any kernel SRU's this week [00:08] they pull off the buildds to do SRU testing and the queues build up all the time :( [00:09] it was backed up hours last night though [00:09] bryceh, just to note, I'm ok with this weather :) [00:10] btw, I may have a fix for bug 931397 [00:10] Launchpad bug 931397 in xorg-server (Ubuntu Precise) "Xorg crashes with AutoAddDevices "false"" [High,Confirmed] https://launchpad.net/bugs/931397 [00:10] I found a couple input commits that use the new input option abi [00:10] cnd, told ya it'd turn around ;-) the ball in the sky's only temporary though [00:11] which bit us because the old input option abi had no type safety /o\ [00:11] cnd, awesome! [00:11] cnd, aha, yeah we were wondering if something like that could be the case [00:12] everything is passed around as opaque pointers for no good reason [00:12] and then casted to the appropriate type inside the functions [00:14] and the real issue, IIUC, is that the new abi is based on the general xf86Option abi [00:14] rather than an input-specific option api [00:15] so upstream just switched to using the general option api [00:15] * bryceh nods [00:15] if they had added or modified the option api, it might have been caught easier [00:15] at least things will be better in the future :) [00:16] cnd, totally. Any chance this might solve some of our other xserver bugs in precise? [00:16] dunno? [00:16] https://bugs.launchpad.net/ubuntu/+source/xorg-server?field.tag=precise&field.tags_combinator=ALL [00:16] this particular bug only manifests at start up [00:16] at device initialization time [00:16] specifically master and Xtest device init time [00:17] well, once you have a solid patch lemme know and I can troll around a bit for bugs [00:17] cnd: thats freaking awesome, i've been going over the changes between the two abis trying to figure out what changed to make it work in 1.12 and not in ours and drawing frigging blanks [00:17] need to revert these two commits in our packaging branch: [00:17] 7ee1621364d2b6230bb1c02bbdb5b6abb74ad2ff. [00:17] 4b7dd4523c11ef4952b78e4164b2fa7b34588867. [00:18] bryceh, this could be related: https://bugs.launchpad.net/ubuntu/+source/xorg-server/+bug/946028 [00:18] Launchpad bug 946028 in xorg-server (Ubuntu) "Xorg crashed with SIGABRT "free(): invalid pointer" from xf86optionListFree" [High,Confirmed] [00:20] ok [00:21] oh no wonder i had no luck, i was looking for differences in NewInputDeviceRequest from hw/xfree86/common/xf86Xinput.c compared to our patched server [00:21] and am a dunce :) [00:28] bryceh, what do you think we should do with this fix? [00:28] I think it's a candidate for beta 2 freeze exception [00:30] I do too [00:31] cnd, is it literally just reverting those two commits? or is any additional code needed? [00:31] if it's just reverts I think getting it in asap is the way to go [00:31] just reverting those commits for this particular bug [00:31] I can't guarantee there are no other issues lurking elsewhere though [00:31] otherwise, we might want to stick it in a ppa for extra testing first [00:32] I think it's an obvious fix [00:32] cnd, ok [00:33] one would hope that things couldn't get worse [00:33] but we're dealing with type-unsafe pointer passing [00:33] so it's possible that we fix one bug but expose a worse one [00:33] cnd, well the AutoAddDevices bug I'm actually not too concerned with as it's a really minor corner case [00:34] bryceh, I'm not exactly sure why the autoadddevices option causes the bug though [00:34] it may be that there are multiple ways to trigger it [00:34] multiple conf file options [00:34] cnd: people wont be using xorg.conf's breaking things with the beta for the most part i wouldn't imagine, directly after beta 2 releases sounds good to me personally [00:34] cnd, but I think it's exposing a deeper problem, and I think you may have a hook into it. I have a hope that if we can address what causes the xorg.conf problem it might shed light on some of the other SIGABRT bugs we've been getting lately [00:35] post-beta2 sounds like a good plan to me too [00:35] I guess my main question is: why does it *only* appear when the option is used [00:35] because the core and xtest devices are always created [00:35] which is where this bug hits [00:35] then again, there will be respins up until monday probably [00:36] so maybe it would be ok to get it in, it is a good fix :) [00:38] yeah commit reverts generally tend to be unlikely to cause regressions, sort of by definition :-) [00:38] hmm... well, I'm testing it more [00:38] and now my kb won't work :) [00:39] oh right [00:39] I have autoadddevices = false [00:39] imagine that, it works after commenting that out :) [00:40] hehe [00:41] cnd: you're probably the only one who can judge how risky it is, from what i gathered from #ubuntu-desktop talk earlier it should be ok if you deem it really important before monday :) [00:41] ok, I've committed the changes to the repo [00:41] let me try to reason why it wasn't occurring during normal startup [00:42] i've got it building to test on all my machines just to make sure it doesn't screw up [00:50] ok, I think I see what's going on [00:51] if you don't have AutoAddDevices turned on, the server will instantiate core devices at startup [00:51] oops, I mean it will instantiate a built-in default [00:51] the core devices are always created [00:52] but the issue is the built-in default [00:52] the built-in default mouse driver is noted saved in xf86ConfigLayout.inputs [00:53] then in InitInput, any saved devices are turned into real devices by creating xf86 input options [00:53] and that's where we were using the wrong abi [00:54] however, if we are instantiating devices normally, through hotplug, the built-in default isn't set up, and isn't created in InitInput [00:54] it's created through some other mechanism that is probably *not* broken [00:55] I think this would also apply to anyone who is specifying devices manually in xorg.conf [00:55] are there any use cases for that? [00:56] if not, then I propose leaving this till after beta 2 [00:56] bryceh, Sarvatt ^^? [00:57] cnd, yes leave to post-beta2 [00:57] but yeah I think some of our bugs may well be from people specifying devices manually. I'd have to review them to be sure though. [00:58] * bryceh -> EOD [01:03] bug 954745 is a dupe [01:03] Launchpad bug 931397 in xorg-server (Ubuntu Precise) "duplicate for #954745 Xorg crashes with AutoAddDevices "false"" [High,Fix committed] https://launchpad.net/bugs/931397 [01:28] Boa noite [02:56] cnd: looks like its absolutely only for people manually using an xorg.conf to me, noone testing a beta 2 livecd or new install there will hit it, upgraders will still hit the same bug they've always had, uploading the day beta 2 releases would be just as good without the hassle IMO [03:00] in the same vein it wont affect autoconfig everyone using the livecd is using so its just as good to go in now though :) [03:02] its just, are the beta 2 livecds final now? i'm not sure how locked down things really are [03:04] the first thing someone installing mythubuntu beta 2 is going to try to do is configure their remote via xorg.conf [03:06] nite === yofel_ is now known as yofel === Cobalt is now known as Guest30579 === FernandoMiguel1 is now known as FernandoMiguel [20:14] -rw------- 1 sarvatt sarvatt 75M Mar 24 16:13 /home/sarvatt/.xsession-errors oh fun [20:17] almost all grail warnings [20:18] GRAIL WARNING (v3/gesture.cpp:CheckOwned:290): failed to get touch 100 from frame, gesture 1199 marked as not owned [20:18] GRAIL WARNING (v3/slice.cpp:GetValues:199): failed to get touch from frame [20:18] GRAIL WARNING (v3/slice.cpp:GetValues:199): failed to get touch from frame [20:18] GRAIL WARNING (v3/slice.cpp:GetValues:230): failed to get touch from frame [20:18] GRAIL WARNING (v3/slice.cpp:GetValues:230): failed to get touch from frame [20:18] GRAIL WARNING (v3/slice.cpp:CheckGestureEnd:392): failed to get touch from frame by id [20:18] GRAIL WARNING (v3/slice.cpp:CheckGestureEnd:392): failed to get touch from frame by id [20:28] https://bugs.launchpad.net/ubuntu/+source/utouch-grail/+bug/964135 [20:28] Launchpad bug 964135 in utouch-grail (Ubuntu) "Grail warnings are excessively verbose in ~/.xsession-errors" [Undecided,New]