=== yofel_ is now known as yofel [07:09] * apw yawns === smb` is now known as smb [07:22] * smb slurps coffee [07:52] #define __RAW_SPIN_LOCK_INITIALIZER(lockname) \ [07:52] { \ [07:53] .raw_lock = __ARCH_SPIN_LOCK_UNLOCKED, \ [07:53] SPIN_DEBUG_INIT(lockname) \ [07:53] SPIN_DEP_MAP_INIT(lockname) } [09:01] * ppisati waits for gitweb on kernel.ubuntu.com to spit something useful... [09:02] ppisati, its not the fastest thing in the world [09:02] nope... [09:03] i already asked but, can i have a faster kernel.ubuntu.com for christmas? [09:04] only if you give up the puppy [09:04] uhmm... ok, i keep the puppy then :) [09:20] smb, did we get a lot with the extra printies ? [09:20] apw, currently pulling the dump [09:21] Though I actually expect not that much... [09:21] smb, i assume thats a xen side thing ? snapshotting the memory [09:21] apw, right [09:23] apw, So as we already expected, the replacement takes place much before the module is loaded/init is called... [09:23] Makes it even stranger [09:23] I will have to have a close look at the disassembly of that module [09:24] well remember it is being patched at load time for paravirt things [09:24] i wonder if the kernel itself is not being patched correctly [09:24] so it is in fact not using the new ones [09:25] Right, what I want to check is whether lock and unlock seem to be patch sites [09:25] 9 .parainstructions 0000001c 0000000000000000 0000000000000000 0000ac88 2**3 [09:25] my floppy.ko does have some form of paravirt ops [09:28] alternative_instructions seems to be where we apply_paravirt for the main kernel [09:31] smb, could you perhaps put a message in alternative_instructions to make sure it has been run [09:31] apw, probably... [09:32] as if the kernel never switched over cause of a bug, then we may well find that floppy is the first thing to use them in this case [09:32] which would match the stats you have too, so worth checking [09:33] Just wondering why lock seems to use one way while unlock the other [09:34] well we do appear to be patching things as we go for paravirt operations of some sort [09:34] smb, i wonder what compiler your other tester is using [09:34] we are using a bleeding edge 4.6 right ? [09:35] apw, Just in the assembly there seems to be a PVop for unlock but a raw call for lock... [09:35] apw, bleeding o-edge [09:35] which is 4.6 [09:35] smb, can you put up the asm dump so i can see too pls [09:35] smb, i assume you are looking at the kernel there yes? [09:35] apw, probably you would be able to look yourself on gomeisa [09:36] no at the unstripped ko [09:36] smb, and how are you getting the asm [09:36] my home and oneiric-amd64/... [09:36] apw, objdump -SD === Quintasan_ is now known as Quintasan [10:42] smb, i think you dumped at the return address, ie in the middle fo the function, could you redump perhaps 32 bytes back for me [10:42] apw, Oh, right, likely did... sure, a sec [10:47] * ppisati -> lunch [10:49] apw, Should be now replaced. Btw, it feels a bit inconsistent which CONFIG_INLINE_SPIN options are set and which are not... [10:50] smb, which are inconsistent? i think you can mark them separatly [10:51] apw, Looks like only unlock and unlock_irq are... everything else is not [10:52] * smb needs food... [10:52] so we'd not see the lock then in thec ode, we'd expect to see a jump out somewhere [10:58] apw, Would it be possible then that lock calls are called up in the kernel, which has been patched once before the pointers were replaced, but unlock gets patched on module load cause it is inlined? [10:59] i think that would mean we should replace one lot via the smp_alternatives if things are working right [11:00] and the other via the paravirt thingy, is why i'd like to see those instrumented in module.c to see which are actuall applied [11:00] its next on the list... [11:22] smb, can you tell me what crash things is at FFFFFFFF815FD174 [11:31] apw ffffffff815fd174 (T) _raw_write_lock_irqsave+36 /home/smb/oneiric-amd64/ubuntu-2.6/arch/x86/include/asm/spinlock.h: 260 [11:31] smb, sorry make that FFFFFFFF815FD17B [11:32] ffffffff815fd17b (T) _raw_write_lock_irqsave+43 /home/smb/oneiric-amd64/ubuntu-2.6/kernel/spinlock.c: 290 [11:32] ok so i think i have the lock, and it is here [11:33] and what is FFFFFFFF8100913B [11:33] smb ^ [11:33] ffffffff8100913b (t) check_zero+27 /home/smb/oneiric-amd64/ubuntu-2.6/arch/x86/xen/spinlock.c: 54 [11:35] smb and FFFFFFFF815FD180 [11:35] ffffffff815fd180 (T) _raw_spin_lock_irq /home/smb/oneiric-amd64/ubuntu-2.6/kernel/spinlock.c: 152 [11:36] and ths FFFFFFFF81009140 [11:36] smb, ^ [11:36] ffffffff81009140 (t) xen_spin_unlock /home/smb/oneiric-amd64/ubuntu-2.6/arch/x86/xen/spinlock.c: 325 [11:36] and dissasemble _raw_spin_lock_irq [11:37] whats that got in it [11:38] apw, in pm [11:38] ok so _raw_spin_lock_irq is the ticket version, which is the out of line version [11:38] the inline unlock has been correctly replaced [11:39] so it looks like the alternatives are not being done right on the main kernel [11:39] apw, which would match my suspician [11:39] very much so indeed [11:39] but i have the proof here now [11:39] apw, Pretty certain that the non-inline versions are patched once, before xen init replaces the vectors in the struct [11:39] so i think the kernels out of line code is non-paravirt [11:40] yeah ... so when those pointers are changed we need to reapply the paravirt ops to the kernel don't we ? [11:41] apw, Right either this or the replacement would need to be done before the first patching... [11:41] so ... what defines ordering of the patching against the alternatives being applied [11:41] per [11:43] For that I need to check the code more carefully. It seemed to be a struct of pointers contained in another and then applied... but need to understand it better first [11:46] so i assume if we were all inline or all out of line we would never see this, simply we would get away with it [11:46] OH ... and i think we _know_ all of the kernel is broken and using ticket, because it does not blow up [11:46] so we know all of the alternatives in the kernel are pointing to ticket as it would have inline unlocks too [11:47] apw, Well yes, ticket is the default pv_lock_ops [11:47] right ... what i mean is, the timeing of the bang and the stats tell us that its everything in the kernel which is the "other way" [11:48] and tells us its the alternatives application which has gone awry [11:48] But I would assume if one could satisfy all being inlined it would be good. because the kernel would keep using ticket and modules both pv ones [11:48] ... with a strange way of good [11:48] yes as long as they didn't share any locks [11:49] yeah [11:49] ie no modules reach out and use kernel locks, then bad poop would happen [11:49] now .. how the heck has upstream not hit this, are we inlining in a non-standard way ? [11:49] i'd expect us to be taking the normal defaults [11:50] apw, Or maybe they test with all needed stuff built-in... [11:50] smb, right i have the real code decoded and the proof we are calling unmatched lock/unlock here, is there a bug i should shove it in, or ? [11:50] apw, Not yet... need to create one [11:50] smb, yeah perhaps so, its definatly only modules which can hit this [11:51] things keep breaking quicker than I would be able to operate lp [11:51] or rather I should first report things and then look into them but I tend to do it the otehr way [11:51] get me the number when its done, and i'll put all this crap in the bug so it doesn't get lost [11:52] ack [11:52] is cool as the dump has the rewritten post alternatives code, so we can confirm your theory is spot on [11:53] apw, Sounds perferct. At least I can say its on the kernel side now. The other issues turned out to be in the xen hypervisor [11:54] yeah, it looks to be a pretty obvious bug really, needing to apply the right locks to everything [11:54] its amazing its lasted this long without being noticed [11:55] apw, this will confirm your observation that boarding planes has always been inefficient: http://www.bbc.co.uk/news/science-environment-14717695 === ehw is now known as ehw|asdf === ehw|asdf is now known as ehw [12:01] apw, bug 838026 [12:01] Launchpad bug 838026 in linux "Running Oneiric kernel as Xen HVM guest with pvlocks hangs on boot" [High,In progress] https://launchpad.net/bugs/838026 [12:08] smb bits are in [12:09] apw, cool. thanks [12:27] Hey guys o/ we're having quite heavy issues with Oneric Server and HP DL380 proliant servers, we raised bug #818177 about it [12:27] Launchpad bug 818177 in linux "HP DL380G5 does not see disks after upgrade to Oneiric" [Undecided,Confirmed] https://launchpad.net/bugs/818177 [12:28] This looks like quite a serious race bug, considering that Proliant is one of the common servers on the market can we give this bug some fire? :) [12:29] lynxman, seems like you have 2 issues, one of which is bnx2 firmware (again). [12:30] lynxman, i see you are able to boot it one in N, it might be good to get it up and update the kernel [12:31] as you appear to have a -7.x kernel [12:31] tgardner, have those 'tards changed the firware name _again_ [12:31] apw: I reproduced the same just now with the latest oneric release [12:31] apw: Both through PXE install from last Friday's daily release and from the natty -> oneiric upgrade route as well [12:32] apw: same result :( [12:32] lynxman, isn't that the disk? [12:32] cciss 0000:06:00.0: cciss0: <0x3230> at PCI 0000:06:00.0 IRQ 66 using DAC [12:32] [ 1.849298] cciss/c0d0: p1 p2 < p5 > [12:32] apw, they may have [12:32] smb: yessir [12:33] smb: I can try reinstalling again in natty and going the natty -> oneiric route modifying also grub.conf and fstab [12:33] So it seems there.... [12:33] lynxman, i assume the bug report is from one of your good boots ? [12:33] Are you having a uuid or devname in fstab? [12:33] apw: its from TREllis trying the same in the same set of servers [12:33] ah forget it... lvm [12:33] apw: right now the most I have is iLO access through a java *shrieks* interface [12:35] apw: but yeah its from one of the good boots [12:35] lynxman, Though it was oneiric already... Would you be able to collect a log from a bad one over serial over lan ? [12:36] yeah if we could get a dmesg from a failed boot, then we can compare [12:36] smb: apw: unfortunately not, I can take jpeg screenshots of the bad dmesg though [12:37] better than nothing [12:37] yep [12:37] alright, doing that :) [12:38] lynxman, Just wondering if you can use that java thing... then why ipmi sol activate would not work... Of course you need to define a serial interface in bios first... [12:38] lynxman: iLo should have serial support? [12:39] Daviey: oh yes, it should, if you buy the extra SVP module, which is just a software update [12:39] Daviey: HP at its best, showing no mercy for sysadmins [12:40] bah. [12:41] herton: it seems you had a sleepless night, did you? :) === nickde is now known as Guest17730 [12:42] ppisati: it was my bot personality in action :) [12:43] smb, lynxman, seems they (hp) have changed much of the board reset code since .38, so they have probabally borked it [12:43] (shank bot is running in a cron job here) [12:43] herton, sleep-walker^Wchatter ? [12:44] smb, i meant to ask just how early do we figure out we are switching to pvlocks [12:44] apw, err wouldn't that mean neither older kernels would boot now? [12:44] herton: really? [12:44] smb: apw: natty kernels boot without any issues though [12:44] herton: i thought it was you, doh! [12:44] smb, lynxman, right i am saying .38 has completly different reset code [12:44] ppisati: yep :) [12:45] so its possible that natty would work and oneiric not [12:45] apw, The normal rewrite of code seems to be done from check_bugs() / somewhere from start_kernel (== quite early) [12:46] smb, yeah, and the pvlocks one ? [12:46] apw, later (not really time to follow that chain, yet) [12:46] smb, i thought you'd put a print in, wondered where that had fallen [12:47] apw, right after the bringup of cpu#0 where you have the spinlock irq message in the log I sent [12:53] apw, Hm.... If I am not looking wrongly... the xen spinlock ptrs are set from init_arch which comes before check_bugs in start_kernel... [12:55] * apw shouts incoherantly at his screen [12:56] noreplace_paravirt <-- smb what value does that have in the dump [12:56] and ... when does it change [12:57] noreplace_paravirt = $8 = 0 [12:57] apw, And for when it would change I would need a new kernel... [12:58] smb, well the code seems to init it to 0 and then only change it =1, so i think its always been 0 [13:05] smb, i have a worry that the real bug is that the kernel locks are not taking into account PARAVIRT_SPINLOCK at at [13:06] smb, ignore that ... sigh [13:06] apw, Actually, I think I was wrong before... Currently its done in smp_prepare_cpus() which is called from kernel_inti which comes after the check_bugs [13:07] smb, so that ... would explain it [13:07] Yeah... luckily... [13:07] you could try shoving the same check directly in check_bugs before and see if it fixes things [13:08] apw, I had been moving it into some place which should have been before (not sure I did it right though) and that was... quite bad [13:09] apw, Unfortunately crash is quite useless if the badness is before the init task runs... :/ [13:09] well you could try calling the alternative_instructions again where we have just changed the pointers [13:09] and see what happens, i suspect the kernel will shitola itself in all new interesting ways [13:10] I will try that now... [13:11] Kernel modules: hpsa, cciss [13:11] smb, ^^ that looks bad to my eye [13:11] (for the disky thing) [13:12] apw, There was something that they do some funny things to which driver handles what... [13:12] apw, messing around with names and acting differently when its a cdrom or disk or so... [13:12] smb, looking at it they took all that out and "made sure we don't have overlapping ids" [13:12] i suspect its bust _again_ [13:17] getting your pics :) it's a painstakingful operation [13:17] lynxman, heh thanks, and if you can get an lspci [13:18] lynxman, just the page with the sas controller would be enough [13:18] apw: doing that too [13:31] lynxman, do you by any chance have an lspci for this machine/similar machine on a natty kernel [13:31] apw: nope since I already upgraded it on oneiric [13:32] apw: just 3 mins until I finish photoshopping this :) [13:33] bah people who can affort photoshop [13:34] apw: it's one of those unlimited demo copies :) [13:35] apw: screenshots in place :) [13:38] lynxman, so where is your root disk? c0d0 or c0d1 ? [13:39] apw: c0d0 [13:39] well this dmesg shows c0d0 being found and mounted [13:39] apw: yes,but then it goes into "filesystem is read only" [13:40] it does show an "unknown partition table" error for c0d1 [13:40] which seemed to work in the good boot [13:40] apw: so looks like it finds it at rootfs moment but when it needs to jump to the appropriate initlevel it breaks [13:40] apw: it's the same machine reinstalled again and again [13:40] whats on c0d1p1 / [13:40] ? [13:40] apw: posting screenshot just now [13:40] [ 1.850587] cciss/c0d1: p1 [13:41] as on the good boot we get the ^^ above [13:41] apw: I reckon it's safe to ignore c0d1, I've been not using it for this install, at all [13:42] ok so we can't call this "doesn't see its disks" when it has the disk mounted read only [13:42] apw: true, still something is broken on the driver though [13:43] apw: or that's what it looks like from mine and kirkland diags [13:43] lynxman, maybe so but a widly inaccurate description isn't helping [13:43] apw: :) true [13:43] apw: apologies, this problem has been jumping like a hot potato [13:44] so what did it say on the console just before dropping to busybox ? [13:45] apw: exactly the same as in the dmesg,not extra info there :/ [13:45] it doesn't have any required nfs mounts does it ? [13:45] apw: no [13:45] apw: it's a clean install, no extra anything [13:46] apw: in this case it's a clean natty then dist-upgrade to oneiric, reboot [13:46] apw: same situation happens with direct oneiric install [13:46] so what occurs if you ^D out of busy box prompt [13:47] apw: trying that nao [13:48] apw: system doesn't boot, 5 lines of touch errors on "Read-only file system" attaching ot bug report [13:48] ok so ... anything in dmesg | tail thats new ? [13:49] apw: can't do anything, not even dmesg :) [13:49] apw: system completely unresposive [13:49] apw: er it does respond to Ctrl-Alt-Del [13:50] attached [13:50] ok so when it gets back to busy box could you try remounting / rw manually [13:50] mount -o rw,remount / [13:50] and see what that does [13:50] apw: okay :) [13:55] * apw hopes smb is making more progress than he is [13:55] apw: if I remount manually then resume boot it just shows "rc-sysinit start/runnin, process 1011" and fails to keep booting [13:56] lynxman, so it remounts manually r/w ok [13:56] apw: yes [13:56] lynxman: ah, looks like you are having fun [13:56] so it sounds like a userspace level issue then rather than a kernel issue [13:57] TREllis: aren't I, apw is being extra patient with me [13:57] apw: alright, I'll bug the ubuntu-server guys then :) [13:57] apw: thank you very very very much for your patience as said, one beer is on me at next UDS ;) [13:57] heh see what they say about how one diagnoses this puppy [13:58] apw: it'll be painful, for sure, remote access to a machine in the Montreal lab [14:01] lynxman, one thing you can try is adding --verbose to the _end_ of you kernel command line [14:01] yes with the --, this should make upstart more chatty [14:01] apw: cool, nice tip, thanks :) [14:02] lynxman: remove quiet and add INIT_VERBOSE=yes too :) [14:02] TREllis: for extra fun [14:32] * ogasawara back in 20 [14:50] LP seems to be down now... [14:50] ah no [14:50] Timeout... [14:50] it's slow and timeouting for me too [14:50] yeah [14:50] but even in the main page === jpds_ is now known as jpds [15:21] apw: What was the indicator that lynxman's bug was userspace? [15:22] Daviey, the symptoms was that it booted to a prompt, but root was mounted and could be made r/w [15:23] so the disks were all there and functioning at the time of the boot filaure === kamalmostafa is now known as kamal [15:25] apw: I see.. that makes things less cool. === nickde is now known as Guest76083 [15:30] lynxman: Are you sure you were seeing the real filesystem, and not the contents of the intramfs? [15:31] Daviey: certain [15:33] lynxman: Thought about replacing the stock with Dell or Supermicro servers? [15:33] Daviey: Don't think that'll fix the bug :) [15:34] Daviey: although we bought some servers, and they were accepted by #is gladfully :) [15:34] Daviey: at least I think so, otherwise I don't know where they are [15:34] Daviey: they were proliant too [15:36] ppisati: you missed updating the timestamp in the changelog when closing the ti-omap4 for natty [15:38] lynxman, how did the --verbose pan out [15:39] apw: didn't add much unfortunately, although if I changed the kernel boot from ro to rw I've got way further than anytime before, got up to rc.local. but then the network card doesn't mount and I don't get getty login [15:50] apw: it looks to me that the system fails to remount itself at some early boot stage [15:51] lynxman, what tells you that? [15:51] apw: that if I boot the kernel straight rw everything kinda works [15:52] lynxman, but we also know we can move the disk rw from the prompt, and its userspace which does that normally [15:52] i assume it is mountall which does that [15:52] apw: yes but in that case it doesn't get too much further up in boot, which I think indicates that there's pre-depending stuff on the FS being rw that doesn't get run properly [15:53] lynxman, right and the question is why doesn't mountall do its job [15:54] apw: that's the question indeed... [15:54] apw: any way to make mountall super verbose? [15:54] you could just try running mountall at the prompt when it stops [16:00] jsalisbury, how does someone upload the log files from a different system to a bug? [16:03] * herton -> lunch [16:14] apw: aha! mountall hangs :) [16:15] apw: Daviey: kirkland: added screenshot to bug report [16:16] herton: the timestamp? [16:16] wait, let me see... [16:17] herton: you mean the "-- Paolo Pisati Mon, 30 May 2011 14:47:51 +0200" at the end of the changelog entry?> [16:17] herton: actually i never touched it, and i thought it was automagically constructed [16:18] btw, i can't close maverick/mvl-dove [16:23] ppisati: yep, May seems a little in the past :) [16:23] the timestamp update must be done manually [16:24] herton: ah, didn't know [16:24] ppisati: hmm what's the issue with the maverick/mvl-dove? [16:24] herton: well, i did it last week [16:24] herton: and i don't think i did anything special [16:25] ppisati: oh ok, so just invalidate the bug, it was opened because maverick was respinned to revert 2 patches [16:25] herton: i mean, i ran thr update-from-mvl-dove script, readded some commits that were overwritten and then closed it [16:25] herton: but i just noticed that: [16:25] that reverted patches don't affect it I think [16:25] 1) IMO the last time we release it, it was wrong [16:25] sicne the last changelog entry encompass a loooooong period of time [16:25] so, basically it was never opened/closed correctly [16:26] 2) now the use the script, readd commits and close doesn't work anymore [16:26] bah [16:26] herton: ah, so i can invalidate it then? [16:26] cool [16:27] but still, there's something wrong in there... [16:28] ppisati: wait, so the rebase script doesn't work anymore? [16:28] herton: nope [16:28] herton: but i'll take a look at it later [16:28] or tomorrow [16:28] as long as i can invalidate it right now, it's ok [16:29] ppisati: ok. just keep the tracking bug opened for now then [16:29] herton: so, do i invalidate it or not? [16:29] you can invalidate it, as long as mvl-dove doesn't need a rebase against latest maverick master, that is, nothing since the last maverick master updates affects mvl-dove [16:30] herton: nope, maverick/mvl-dove is a copy of lucid/mvl-dove [16:30] plus a 200 offset in the ABI [16:30] just to avoid clashes [16:31] oh right, forgot about that. ppisati, so the rebase script is not broken, it uses the latest lucid/mvl-dove branch [16:31] yep [16:31] that's why it must be failing now, since there were no updates to lucid/mvl-dove [16:31] no, there were, i just packaged the new kernel [16:32] and you can tell the script to use zinc [16:32] anyway, don't worry [16:32] i'll figure it out [16:32] yep, but you need that me or sconklin push the lucid/mvl-dove to master before you use the rebase script I think [16:32] *not to master, but to lucid -> mvl-dove branch [16:32] no no [16:32] you can tell to use my lucid tree on zinc instead [16:36] bjf, from a different system? I believe you can just add them as an attachment [16:37] jsalisbury, i thought that apport had a command line option for it (but i could be mistaken) [16:37] ppisati: oh ok. well, if you changed lucid/mvl-dove, I think you want to release later the maverick/mvl-dove based on it? in this case you wouldn't invalidate the bug [16:37] bjf, ahh, yes it does. [16:37] bjf, one sec [16:38] bjf, you could do something like this: ubuntu-bug linux --save /tmp/ubuntu-bug-output-BUGNUM.log [16:39] bjf, then attach the output file to the bug [16:39] jsalisbury, ok, so there's no command line for attaching the output to the bug once you have collected it [16:40] bjf, Do you mean: [16:40] bjf, apport-collect bug_num [16:41] bjf, that attaches the apport-collect output directly to the bug id given for bug_num [16:41] jsalisbury, yes, but more like "apport-collect bug_num --logs=/tmp/ubuntu-bug-output-BUGNUM.log" [16:42] jsalisbury, anyway, doesn't seem like there is something exactly like I'm describing [16:42] bjf, ok, so you mean if you already have the file, how do you attach the file using the apport command vs attaching it manually [16:42] yes [16:42] bjf, I'm not sure if it has that functionality, but I can dig deeper [16:42] jsalisbury, no big deal, thought you might just know off the top of your head [16:43] bjf, not off the top of my head, but that would be very useful [16:43] herton: ok, natty/ti-omap4 repushed [16:44] ack [16:44] bjf, hmm, from the man page: [16:44] Finally, you can use this program to report a previously stored crash or bug report: [16:44] apport-bug /var/crash/_bin_bash.1000.crash [16:44] apport-bug /tmp/apport.firefox.332G9t.apport [16:44] that looks interesting [16:45] bjf, but that looks like the crash file must contain the bug id [16:45] s/crash/apport-output/ [16:50] bjf, hmm, actually apport-bug with an output file will create a new bug using that output file, not add to an existing bug :-( [16:52] bjf, apport-cli may be able to do this, but I would have to try it. [17:37] rebooting [18:04] * tgardner -> lunch [18:49] when is kernel freeze? [18:51] cnd: sept 15 [18:52] ok === vanhoof[holiday] is now known as vanhoof [19:01] tgardner: do you know if packages from bug 772381 will be copied to updates? I have a new tracking bug for ti-omap4, but noted that release/bug is still opened with packages in -proposed [19:01] Launchpad bug 772381 in linux-ti-omap4 "linux-ti-omap4: 2.6.38-1209.13 -proposed tracker" [Undecided,Fix committed] https://launchpad.net/bugs/772381 [19:02] sconklin: ^ [19:03] herton, looks like 2.6.38-1309.13 must have been copied to -updates already. [19:03] tgardner: yeah. I just don't want to do a new upload and overwrite what is in -proposed right now [19:05] herton, hmm, this 1309.13 version is a bit strange. [19:05] tgardner: typo, it's 2.6.38-1209.13 [19:06] herton, perhaps, but Launchpad thinks it is 1309. https://bugs.launchpad.net/ubuntu/+source/linux-ti-omap4/+bug/772381/comments/2 [19:06] Ubuntu bug 772381 in linux-ti-omap4 "linux-ti-omap4: 2.6.38-1209.13 -proposed tracker" [Undecided,Fix committed] [19:07] tgardner: seems the 1300 abi is the oneiric version [19:08] *oneiric upload [19:08] herton, doh! of course it is. it even says so. [19:09] herton, so, you're worried about overwriting the current version in -proposed ? [19:09] natty-proposed [19:09] tgardner: yes, in the case this 2.6.38-1209.13 will be copied to -updates [19:10] herton, ok, I guess I don't see the issue. [19:11] tgardner: I'm not sure what's the state of it. should this release have been copied to -updates, or can I do a new update which will "supersede" this in -proposed [19:17] herton, you'll likely have to go through all of the associated bugs and ascertain that they've been verified. [19:24] tgardner: looking at the bug list, noted that commit dfcc9e415e79d0b9de8cc8db89211ddec663306f in natty/ti-omap4 tree shouldn't have been applied, by the bug report natty don't want the multi-arch stuff [19:25] herton, is that the result of a rebase against master ? [19:25] tgardner: no, seems natty/ti-omap4 isn't a rebasable branch [19:26] herton, does it have a negative impact? its just some packaging studd as far as I can tell [19:26] suff* [19:26] stuff* [19:27] don't know really, just noticed looking at the bugs to verify [19:27] herton, I think you can ignore it. [19:29] also some bugs to verify are patches applied to natty before the kernel freeze, so before the SRU process. I think they can stay unverified also. [19:29] herton, anything that was verified for x86 and is not arch specific is likely fine. [19:32] tgardner: since that release was not verified, I think it's ok then to supersede it with a new upload/sru process. It'll have to wait for testing etc. I'll set 772381 as won't fix for natty and lets do the update on the new tracking bug, what do you think? [19:33] herton, works for me [19:52] * ogasawara lunch [20:00] * cking calls it a day [20:09] hmm http://pastebin.com/BKcmMd47 === med_out is now known as medberry === kentb is now known as kentb-afk === medberry is now known as med_out [22:53] ogasawara: so, seccomp_filter goes in for -9.16? [23:39] kees: yep. we have an abi bump, so it'll actually be -10.16. we'll upload on friday.