=== kentb_ is now known as kentb-out === ScottSanbar is now known as SanbarComputing === SanbarComputing is now known as ScottSanbar === ScottSanbar is now known as SanbarComputing === kengyu_ is now known as kengyu === smb` is now known as smb [07:16] Morning .+ [07:34] * apw yawns === artnay_ is now known as artnay === yofel_ is now known as yofel [11:14] hi apw , did you notice that your build server for mainline runs out of space? [11:30] * ppisati -> lunch [13:47] <_ruben> bah .. still can't seem to find out how to match 'ata4' to 'sdX' .. and seem to be not alone in that, but no solutions found thusfar :/ [13:48] _ruben, not sure i understand your problem [13:49] <_ruben> [589302.281732] ata4: soft resetting link [13:49] <_ruben> want to know which disk to replace [13:49] doesn't udev have a like by-path name for each disk as well [13:50] apw: yes, but it doesn't show ataX [13:50] <_ruben> indeed [13:50] ls -l /sys/class/ata_device [13:50] <_ruben> no such file or directory [13:50] * apw wonders if he wants to know how old the release you are running is [13:51] <_ruben> lucid server 32bits [13:51] ah === kentb-out is now known as kentb [14:13] herton: you reverted the commit that caused my dpms fuzzy screen? I thought it was an important part of hardware enablement? [14:13] mdeslaur: yes, hardware enablement team is aware of the revert, steve talked with them [14:14] it was agreed best action was to revert it for now [14:14] herton: ah, ok, thanks for the explanation...I was just curious. I have the issue with the current oneiric kernel, fyi. [14:15] tgardner: you haven't already started on pulling in the 3.0.5 and 3.0.6 updates have you? I just want to make sure I'm not duplicating work. [14:16] ogasawara, yep, was just working on the compile [14:16] tgardner: sweet [14:16] then I'm gonna look 'em all over pretty close [14:27] ## [14:27] ## Ubuntu Kernel Team Meeting - Today @ 17:00 UTC - #ubuntu-meeting [14:27] ## agenda: https://wiki.ubuntu.com/KernelTeam/Meeting [14:27] ## [14:29] * ogasawara back in 20 [14:30] smb, might you be able to test a hardy cve for me, http://people.canonical.com/~apw/CVE-2011-2495-hardy/, test whether you can read /proc/$$/io as a user and root, both before and after the kerenl [14:30] apw: ** RESERVED ** This candidate has been reserved by an organization or individual that will use it when announcing a new security problem. When the candidate has been publicized, the details for this candidate will be provided. (http://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2011-2495) [14:30] (or more likely mitre is majorly out of date) [14:31] apw, I can, but might be rather later today or tomorrow [14:32] smb, ahh yes poor timing on my part [14:32] whenever [15:07] ogasawara, 'git://kernel.ubuntu.com/rtg/ubuntu-oneiric v3.0.6' if you want to do some smoke testing. [15:08] tgardner: cool, thanks. === BenC__ is now known as BenC [16:00] ## [16:00] ## Kernel team meeting in one hour [16:00] ## [17:18] tgardner, hey I'm looking at the tool failure you pasted to mumble. Is the tree you ran it in pushed anywhere? I need to reproduce it [17:19] sconklin, git://kernel.ubuntu.com/rtg/ubuntu-oneiric v3.0.6 [17:20] sconklin, git://kernel.ubuntu.com/rtg/ubuntu-oneiric.git v3.0.6 [17:21] tgardner, thanks. It's choking on something it parsed from the Makefile. I'll reproduce it [17:25] sconklin, hey ... looks liek the issue is that oneiric doesn't have anything on the EXTRAVERSION and your split there assume there will be ' = ' which isn't present [17:26] probably so. I'm cloning but it's only at 7% [17:26] VERSION = 3 [17:26] PATCHLEVEL = 0 [17:26] SUBLEVEL = 4 [17:26] EXTRAVERSION = [17:27] that's it then [17:27] if am reading this right we don't use the value at all, so the split could be elided [17:27] it assumes that is the string 'EXTRAVERSION" is there, then something follows it [17:28] well it assume its is EXTRAVERSION= [17:28] as the next line has a strip, just splitting on '=' would like do the job [17:31] apw, ack, and I think that's true for all those values which are parsed. And we should never have any other '=' characters in there [17:31] sconklin, pretty sure that split takes a max splits, so you could add a 1 to make sure it only pops the first one [17:32] until the next time it breaks [17:32] >>> print a.split('=', 1) [17:32] apw, right, except that I would argue that if you have anything else on the line something should explode, as it's an error [17:32] ['this that ', ' you me = other'] [17:35] v3 [17:36] grrr input management [17:36] focus management with unity is perfect [17:45] This is a natty box === bjf changed the topic of #ubuntu-kernel to: Home: https://wiki.ubuntu.com/Kernel/ || Oneiric Kernel Version: 3.0.0 || Ubuntu Kernel Team Meeting - October - 11 - 17:00 UTC || If you have a question just ask, and do wait around for an answer! [17:53] tgardner, you spec 3.0.0 on the command line, but the makefile has 3.0.6 [17:53] That's not the cause of the original failure, just the 'next one' :-) [17:53] sconklin, the _package_ version is 3.0.0 [17:54] ok, checking [17:56] tgardner, why are the package and kernel versions not the same? [17:56] sconklin, well, they are. the package version is 3.0.0 as is the kernel. [17:57] tgardner, from the Makefile: [17:57] VERSION = 3 [17:57] PATCHLEVEL = 0 [17:57] SUBLEVEL = 6 [17:57] EXTRAVERSION = [17:58] from your 3.0.6 branch [17:58] sconklin, hmm, I guess thats some fallout from the version change. [17:58] EXTRAVERSION appears to be superfluous [17:58] tgardner, isn't that because we are versioning differently than upstream ? [17:59] tgardner, shouldn't the sublevel be 0 and the extraversion be 6 ? [17:59] bjf, thats the way it used to work. [17:59] so we're gonna have to accommodate that change [18:00] tgardner, not sure what that means. who needs to accomodate, which change, do we need to make the Makefile reflect our versioning ? [18:01] bjf, our scripts are gonna have to recognize that if the version is 3.0 or higher, then EXTRAVERSION is empty [18:01] not to overstate it, but this breaks everything [18:02] sconklin, well, it certainly adds some complications [18:02] well, ok. and until the complications are embodied in code, it breaks everything. [18:03] everything == stable tools [18:05] or unstable tools perhaps? ;-) [18:06] sconklin, herton: perhaps this is an opportunity to consolidate version checking into one module so we only have to fix this once. [18:06] more accurately, this challenges one of our fundamental assumptions. If it turns out we were wrong, we'll deal with it. But I don't think we're wrong. [18:07] sconklin, you fundamentally assumed the kernel version would match the package name ? [18:08] Yes, and that (at least post-release) there is only one kernel version per series [18:09] sconklin, don't we already break that assumption with mvl-dove ? [18:09] i.e. after release there's a 1:1 associative mapping between kernel version and series [18:09] the association is encoded by package name, so we can associate different kernels for ARM, etc - but it can't change [18:10] tgardner, when you built and tested this kernel what did a uname -a give you [18:10] ? [18:11] sconklin, I guess we're gonna have to figure out how to accommodate both 2 and 3 digit version numbers. [18:11] bjf, 3.0.0-12 (I think) [18:12] bjf, 3.0.0-13.20 [18:12] and why are we changing the way we use sublevel and extraversion? [18:12] sconklin, whats the _we_ shit? Linus made that change. [18:13] sconklin, tgardner so if uname can report 3.0.0 maybe we can get the sublevel and extraversion from the same place that it references, that has to come from kernel sources somewhere [18:14] bjf, it comes from the changelog [18:14] sconklin, though i wrote it, i don't remember why i'm looking at the makefile, can we change to use the changelog version ? [18:15] bjf, actuall, it is extracted from the changelog and built into the kernel at prep time by setting CONFIG_VERSION_SIGNATURE [18:16] bjf, sconklin - I think you can depend on the changelog _always_ having a 3 digit version because we set the policy for that. [18:16] bjf, yeah. I have no idea why it parses the Makefile, either [18:16] sconklin, i do agree that as part of this fix, "we" should look at where we parse the kernel version and do some refactoring if possible [18:17] tgardner, ack, we should probably abandon the Makefile and only parse the changelog [18:17] is there a python equivalent of dpkg-parsechangelog ? [18:17] sconklin, i'm sure i did that for "a really good reason"(tm) but i can't remember what that might be now [18:17] and also agree with bjf [18:17] remember that the kernel version isn't _really_ related to the package name, its only convention. [18:18] * tgardner needs brain food [18:18] * tgardner -> lunch [18:19] tgardner, noted, although that assumption really is deeply embedded in almost all the tools. Although, the reality is that we can change versions in the tools, you just won't be able to go back and use them for the older version (I think) [18:50] sconklin, the assumption that should be deeply embedded in tools is that the version is extracted from the changelog. that is, after all, the debian way. [18:58] tgardner, ack, that's what I'm looking at now. [19:28] tgardner, and everyone agrees that "uname -a" returns the package version, right? not the kernel version. [19:28] bjf, correct [19:29] bjf, Linux sb 3.0.0-13-server #20 SMP Tue Oct 4 15:28:19 UTC 2011 x86_64 x86_64 x86_64 GNU/Linux [19:30] * jjohansen -> lunch [19:33] tgardner, the way I read the uname man page, it returns "kernel release" [19:33] and version and other things [19:34] sconklin, true, but remember that the value returned by 'uname -a' is set in the kernel at build time. [19:34] its not extarcted from the Makefile, but rather from the changelog [19:34] extracted* [19:34] well yeah, there's no other way to do it [19:35] so debian (and we) have determined that "kernel release" means something other than what it means to upstream? [19:37] sconklin, in fact the version returned by 'uname -a' comes from this line in debian/rules.d/2-binary-arch.mk: cat $^ | sed -e 's/.*CONFIG_VERSION_SIGNATURE.*/CONFIG_VERSION_SIGNATURE="Ubuntu $(release)-$(revision)-$* $(raw_kernelversion)"/' > $(builddir)/build-$*/.config [19:40] and it returns 3.0.0(something), even though the makefile from upstream contains the version 3.0.6 [19:41] wasn't the .0 thing a stopgap until things could catch up in the kernel build stuff? [19:41] sconklin, but thats my point. the content of the makefile isn't relevant. [19:41] its convention, albeit one that some tools depend on [19:42] ;et [19:42] ignoring the tools issue for a moment . . . [19:43] It's significant to me to know which version I am running. If uname and the package name tell me I am running 3.0.0, and I'm in fact running 3.0.6, then I have a problem with that [19:44] granted at this point it's a personal problem . . . but I think it creates potential for widespread confusion [19:44] sconklin, well, you're never running the version in the Makefile because we add our own patches, and sometimes don't include all of the patches in a stable update. [19:45] right. But generally I want to know whether some improvement or fix from upstream is included in what I have, and now I've lost that [19:45] thats why we list the actual patches included in a stable update [19:46] and you know how many of our consumers actually go read the changelog, right? [19:46] sconklin, some of them do, but I agree it can be misleading. [19:47] and how many "when are you going to ship 3.0.6?" questions will we get? [19:48] you say that like this is a new problem. [19:49] bbiam [20:51] apw: it seems you have to update your scripts for mainline stable builds to use http://git.kernel.org/?p=linux/kernel/git/stable/linux-stable.git;a=shortlog;h=refs/tags/v3.0.6 [20:51] as there is no 3.0.5/3.0.6 build [20:51] well 3.0.5 wil fail anyway [21:13] but i would like to test 3.0.6 mainline [21:14] daily seems to work so far === jjohansen is now known as jj-afk [23:03] back on later