/srv/irclogs.ubuntu.com/2010/06/03/#ubuntu-kernel.txt

sconklininbox zero, seeya tomorrow00:08
=== sconklin is now known as sconklin-gone
=== bjf is now known as bjf[afk]
* manjo bad weather rolling in from the north .. heavy thunderstorms in the area... need to shutdown machine.00:35
achianghughhalf: ping02:12
hughhalfachiang, ahoy02:12
boutchermust be the nautical hughhalf02:14
hughhalfboutcher! 02:14
hughhalfhow goes man ?02:14
boutchergoes great...using a lot of ubuntu in production these days ;-)02:15
boutcherhow are things down under?02:16
jk--hughhalf is totally nautical02:17
hughhalfboutcher, good man, good, liking Canonical and life overall goes well :)02:18
hughhalfbut not sure about jk-- nautical references02:18
boutcherhughhalf excellent....saw some picks of rachel doing linux presenting a while back....she's looking good02:18
jk--hey boutcher02:18
hughhalfboutcher, yeah, she's doing well :)  02:19
boutcherhey jk....long time no talk. I'd forgotten you're at canonical too02:19
boutcheror I guess that's jk--02:21
jk--hughhalf: exactly :)02:21
=== ericm-Zzz is now known as ericm
pgranerJFo: you around?02:47
SquideshiIs everyone on the Ubuntu Kernel Team an employee of Canonical?04:14
pgranerSquideshi: no04:17
JFopgraner, I am now04:23
pgranerJFo: you got any bits about bug filing down, specifically why we want new bugs, not dog piled ones?04:24
JFoI have some stuff drafted, but nothing wikified yet04:24
JFowant me to push something to a page?04:24
pgranerJFo: just looking for something to point to in egregious bugs04:30
JFoI had been planning a Dos and Don'ts section of the Bugs/ page04:30
pgranerJFo: yea, no worries04:30
JFoplus an expanding of the statuses a bit04:30
* pgraner nods04:31
=== pgraner is now known as pgraner-afk
SquideshiWhat's the difference between the following two wiki pages?04:47
Squideshihttps://wiki.ubuntu.com/Kernel/04:47
Squideshihttps://wiki.ubuntu.com/KernelTeam04:47
JFoKernelTeam/ is in the process of being migrated to Kernel/04:47
JFoafter that the KernelTeam/ pages will be deprecated04:48
SquideshiI just put a note to that effect on KernelTeam.04:51
SquideshiThank you.04:51
stentenYou won't keep KernelTeam/Meeting? That's how most teams manage their meetings and other internal affairs.04:51
JFothat is getting moved over as well04:52
JFoSquideshi, not necessary04:52
SquideshiJFo: Well, it confused me; and it might confuse someone else, but now it won't. :)04:52
bjf[afk]JFo, i like helpful people that are worried about other peoples confusion05:10
keesis there an existing git short-hand for "git commit -a -m typo && git rebase -i HEAD~2" or should I just alias that?05:51
* achiang wonders what kees is doing that requires that questionable operation to be an alias. ;)05:51
keesachiang: I keep getting minor nit-picks from lkml about the symlink change I'm trying to upstream.05:52
cooloneykees: looks like no other choice to me, but if you wanna try guilt, it can do that very easily 05:52
keescooloney: I may go that route eventually, but I want to be fully comfortable with git before I add another layer.  :)05:53
achiangyeah, with stg, that would just be: stg refresh ; stg rebase origin05:53
achiangkees: i'm wondering why you need to rebase on HEAD~205:54
keesachiang: so that I can mark the "typo" fix as a "fixup" and it gets melded into the first change05:54
cooloneykees: yeah, like guilt-fold05:55
achiangkees: what is HEAD~1?05:55
keesachiang: same as HEAD^?  it's the typo commit.05:56
achiangkees: hm, what is HEAD then?05:57
kees*make changes*; git commit -a -e; *make tiny fix*; git commit -a -m fix; git rebase -i HEAD~2; *mark the "fix" change as a "fixup" and save*05:57
keesrebase needs one past the stuff you're interested in?  I'm losing count, but HEAD~2 works05:58
cooloneykees: exactly, that's what i'm doing in pure git05:58
keescool05:58
achiangkees: ah. ok, well, i guess you're doing it the git way. but seriously, this is exactly the use case for other porcelains like stg or guilt05:59
keesachiang: ah, right, so HEAD is the typo, HEAD~1 is what I want to merge it into, and HEAD~2 is the point I want to list all commits beyond.05:59
achiangthis is what i was alluding to the other day about where stg is much nicer than git05:59
keesachiang: I will likely start using it for my next upstreaming adventure.  :)05:59
keesachiang: I don't doubt, but I have a masochistic desire to understand what in the world git is up to first.  :)06:00
achiangkees: you could start using it now and save yourself some trouble... ;)06:00
keeshehe06:00
achianggit format-patch HEAD~2 (or maybe it's HEAD~3)06:00
achiangfor i in *.patch do ; patch -p1 < $i ; done06:00
achiangstg init06:00
achiangstg new symlinks.patch06:00
achiangstg refresh06:00
achiangdone06:00
keescool.  yeah, very quilty :)06:01
achiangoh, i guess you'd need to revert the patches before applying them...06:01
achianggit reset --hard HEAD~2 (or 3 ;)06:01
* kees nods06:01
jk--whoa06:02
jk--git rebase -u HEAD^206:02
jk--err, -i06:02
* kees looks up -u06:02
keesoh06:02
keesheh06:02
jk--then you get an editor that asks you what you want to do with each patch06:03
keeswhat git help page lists all the ~ ^ .. etc stuff?06:03
keesjk--: yup, it's delightful06:03
jk--kees: man git-rev-parse06:03
keesjk--: ah-ha!  that's just what I needed, thanks.  :)06:03
jk--kees: np :)06:04
* cooloney is checking -u as well06:05
cooloneyjk--: -u is not available to me 06:07
keescooloney: it was a typo06:07
jk---u is a typo :)06:07
cooloneyOMG,06:07
jk--the keys are right next to each other, it's not *that* surprising! :)06:08
jk--kees: oh right, you were looking for alternatives to rebase -i :)06:11
jk--you're looking to edit the second-to-last patch?06:12
cooloneyjk--: yeah, i think kees knows -i 06:12
jk--brb06:12
* cooloney imagines that jk- will invent a option to git as --edit-2nd-to-last06:13
joaopintohello, I can consistently reproduce a kernel crash while startinga a specific java app, what is the recommend procedure to collect the crash data ? 07:24
jk-joaopinto: `ubuntu-bug linux`07:27
jk-- will file a new bug07:27
joaopintoright, but does it collect crash data ?07:27
stentenyou could try enabling Apport to try and get a backtrace.07:28
joaopintoI can't find any of the errors showns on during the kernel oops event at /var/log/*07:29
jk-joaopinto: hm, what happens when it crashes? machine stops completely?07:30
joaopintoit prints a "Kernel bug at blah blah blah" with some information, and stops completely07:31
joaopintoright now I am looking to capute that information07:31
joaopintothis happens when starting an WebSphere Application Server nodeagent, which is basically a java process07:32
joaopintoI didn't have this issue during lucid's development, so it was either introduced with a near final or post final kernel upgrade, or it's triggered by another change not kernel related which triggers the bug07:34
jk-joaopinto: if the crash info doesn't reach the disk, then we can't recover it in the next boot, unfortunately07:34
jk-soooo07:34
* jk- thinks07:34
joaopintohum,  I am being dumb, maybe I can  simply ssh trigger the crash and get the error on the console, or maybe not, let me try07:35
joaopintobrb07:36
jk-erk07:36
jk-joaopinto: it'll only output to ttys that have a console running on them07:36
jk-(ie, ttyx and maybe ttyS0)07:37
joaopintoah :(07:37
jk-if you can get a serial line working, then that will help07:37
* kees would like to understand how the "netcat console" works for this kind of stuff07:37
jk-kees: https://wiki.ubuntu.com/KernelTeam/Netconsole ?07:38
keeswhy yes :)07:38
keeslookie there :)07:38
jk-woot! :)07:38
joaopintogoing for netconsole :)07:38
* kees has never tried netconsole, just fake serial ports via kvm07:39
joaopintohum, I coultd try to reproduce the crash on a VM07:39
keesthat's what I've always done for weird crashes07:41
keesit still needs setup, but virt-manager was pretty helpful in that regard.07:41
joaopintoit's a bit strange how a java process which is purely server oriented (no GUI related interaction) triggers a kernel crash07:43
keesyeah.  :(07:45
keesespecially if it's not running as root.07:45
joaopintoit's not, the good news is that I believe that WAS is one of the few BM products certified for Ubuntu, I just need to check if that applies to Lucid07:46
joaopinto..IBM...07:46
jk-joaopinto: what does your /proc/sys/kernel/panic_on_oops contain?07:47
joaopintojk-, 0, btw, I have installed the kernel-oops package now, but didn't crashed again07:48
joaopintoI hope the netconsole works with plymouth :)07:49
jk-joaopinto: that's for reporting oopses to kerneloops.org07:50
apwjoaopinto, you say it 'prints kernel bug blah' i presume that means you can see the output sometimes?07:51
apwdoes it appear on the screen at least?  sometimes a digitial photo is a useful approach07:51
joaopintoapw, I can always se the output when locally on the system07:52
joaopintoapw, an IT guy does not use photos to collect data :P07:52
apwjoaopinto, heh i often use photos to collect panics, better than not seeing it07:52
apwjoaopinto, the very first line that you indicate has some key information which can be extracted from a photo pretty easily07:53
joaopintoI will try 1) netconsole, 2) virtualbox.. 3) photo07:53
joaopintoit mentioned a specific .c file on the "bug" line07:53
dupondjephoto's rule: http://dupondje.be/DSCF1025.JPG :P07:56
joaopintogrr wait, this a laptop, wifi, the network will not be available for the netconsole module :(07:56
ckingmorning lag07:58
apwjoaopinto, if you perhaps took a picture people could at least look at the issue with some real information07:59
joaopintoapw, ok, I will take a picture07:59
lagMorning cking08:01
lag:)08:01
* lag has a fuzzy head!08:02
joaopintogrrrr, this time the output was so long that it scrolled and I can't read the initial lines with the helpful info08:02
ckinglag, too many beers? ;-)08:02
joaopintodoes NOHZ: local_softirq_pending 242 as the last line on the crash output means anything ?08:03
lagcking: Not enough ;)08:03
ckingheh08:04
* lag went out and saw people =:-o08:04
apwjoaopinto, heh just your luck, one of the reasons i take a photo the first time i see the header of the error, just in case i cannot get it again... low tech, slow, even unreable at times ... but often a life saver08:04
apwcking, seems someone has gone postal in the UK08:05
joaopintohum, I see a lot of ip_* / network related functions on the output08:05
apwunfortunatly without the top its hard to tell if it was those or they are just a victim08:05
lagapw: Are you talking about that taxi driver?08:05
joaopintoI do have some internal policy firewalls rules08:06
apwlag, walked in the news report so no idea who the person is, but likely there is only one killing spree08:06
joaopintoI will try to start the process without the firewalls rules08:06
lagYeah08:06
ckingone every 18 years or so is still too many08:07
lagWhat was the last one? Dunblane? 08:08
lag14 years back that was :(08:08
ckingHungerford (1987), Dunblane (1996).. 08:09
lagAh yes, Mr Ryan08:10
apwi guess we have to be thankful they are mercifully far appart08:10
laghttp://en.wikipedia.org/wiki/2010_Cumbria_shootings08:11
lagThey didn't waste any time!08:11
ckingbad news always travels at the speed of light08:11
lagWho things "Oh, there's been a massacre, let's start a Wiki page?"08:12
lagthinks*08:12
apwlag, think of it more as thinking it deserves recording, you could equally say, "there has been a massacre, who'd put it all over the news"08:15
lagapw: I had every belief that it would be recorded. I wasn't shocked to see the other two Wiki pages. I was more shocked to see it up there so quickly, as if it was the first thing that popped into the author's mind. 08:24
apwlag, i think you'll find its 'slop over' from wikinews.org, people put it there, and the editors of that record the significant events from that08:25
lagI see08:26
* abogani2 waves08:32
joaopintoapw, jk- , starting in recovery mode and starting the java processes does not kernel panic08:34
joaopintogrr, now it just hardlocked without printing any info, the problem is reproducible the way it's reported is not :(08:40
lagJun  3 08:33:05 ThinkPad kernel: [   98.620090] kmemleak: 247 new suspected memory leaks (see /sys/kernel/debug/kmemleak)08:40
joaopintojk-, I got a wired connection and was able to setup a netconsole, now let's hope the panic info is sent before the lockup09:11
jk-cool :)09:12
joaopintogrrr, I can't believe this, with a wired connection+netconsole I am unable to reproduce the crash, after having done it 10 consecutive times09:14
* cking needs to attend gas fitter - back in 2009:15
jk-joaopinto: are you getting any console messages through netconsole?09:16
joaopintojk-, yes I am, remote dmesg09:16
joaopintothis java process is expected to create multiple tcp listeners, and because I see a lot of ip_* functions on the kernel panic info it seems to be network related09:17
joaopintousing a wired connection might have changed the bug condition09:17
joaopintojk-, this is getting funny, I have unplug the eth cable, restart the java process, got a kernel panic09:20
abogani2apw: Sorry to bother you: Did you have a chance to take a look on my lowlatency kernel flavour? I have just rebased it to latest Maverick release and the build test is in progress on my PPA.09:29
apwabogani2, sorry no, am fighting an aufs2 issue right now09:30
abogani2apw: No problem. :)09:30
apwabogani2, sorry to be so tardy looking at it, its bee a bit mad with A109:32
abogani2apw: I understand.09:33
joaopintojk-, the only unusual requirement from this java app is that on startup it checks that the configured listener IPs are configured in some network interface, and refuses to start if not09:38
joaopintobecause this is a laptop I am using 127.0.1.1, for the app to start I need to: ifconfig lo 127.0.1.109:39
joaopintoit could be the "IP availability"  validation on eth0 when the connection is not available leading to the kernel panic09:40
abogani2smb: Thank you very much Mr. Bader! :-)10:18
ckinghughhalf, around?11:15
cooloneyapw: since smb is not here, how do you think we merge omap4 branch into lucid?12:15
apwcooloney, whats the issue?12:15
apwcooloney, mumber perhaps ?12:16
cooloneyapw: actually, smb thinks that is a big change through, he does not like to do that.12:17
cooloneyapw: i did get any feedback from him about this.12:17
apwcooloney, he has been very busy with the security updates which shipped today12:18
apwcooloney, join us on mumble ?12:18
cooloneyapw: yeah, understood.12:18
cooloneyapw: too bad, i have no time to fix my mic. sorry for mumble12:18
* cooloney needs to fix it12:18
apwbah12:19
apwso i think his confusion is over the support side, putting it in our repo implies things about support and i thought he was asking about what the support requirements are12:19
apwi believe the images will live outside of the archive in a PPA for the purpose, right?12:20
cooloneyapw: yeah, exactly, 12:20
apwso did we get the information on the support requirements ?12:20
cooloneyapw: davidm told me about this "the OMAP 4 support for the 10.07 release should not be SRU'ed back into Lucid, but kept out in a PPA, "12:21
ograsupport for the 10.07 release will end in jan 1112:22
cooloneyin an email, i think you will are in the loop12:22
ograwe dont want the source or binary packages in the distro12:22
ograbut cooloney needs a place for the tree12:22
apwogra, define 'source in the distro'12:22
cooloneyogra: yeah, thanks, 12:22
apwas putting the branch in our git tree sounds like being in the distro12:22
ograapw, no source package12:23
ograall packaging will live in a PPA12:23
ograsource as well as binary12:23
apwwell i don't think there is much of an issue pushing the branch into our repo, its who is going to maintain it for the support period that was the outstanding issue as i see it12:23
ograthe tree should be maintained on out git server though, since its a merge of the TI and the ubuntu trees12:23
apwas its supported for 6 months right ?12:24
ogra(bare omap4 upstream git is at omapzoom.org btw)12:24
ograright12:24
cooloneyapw: i will maintain that branch, but still need smb to pull my patches. hehe12:24
apwif you are signing up to maintain the branch 'hwe' style then i think thats going to be ok12:25
apwie we say 'we added security stuff to mainline, have at it for omap4' style emails coming your way12:25
apwand you'll ask for a pull when its applied ?12:25
cooloneyyeah, i think so.12:29
cooloneybut is it a big trouble to add security stuff into omap4 branch directly?12:30
apwcooloney, i don't understand your question12:39
apwcooloney, what upstream version is omap4 based on12:39
cooloneyapw: it is based on .33 for 10.0712:41
cooloneyit is the same as ti-omap branch12:42
apwyeah so we don't have a .33 master branch for .33, so maintenance of .33 is a bigger job12:42
cooloneyyeah, i understood, that's smb's git concern12:43
cooloneymy question is also about that. 12:43
cooloneyso for maintenance of .33, i will get those security updates from mainline instead of our .32 master branch?12:44
apwcooloney, i would assume the omap branch will get them and you can get them from there, but that may mean you have to figure out which ones are which12:44
cooloneyapw: ok, got it. actually, ti-omap4 is also rebased from ti-omap branch12:47
apwcooloney, its based on the normal ti-omap tree ?12:47
apwin that case you may be able to just keep rebasing onto there12:47
cooloneyapw: yeah, i rebased all ti-omap stuff on omap4 branch from TI.12:48
apwthat sounds like the other way round, and a nightmare12:49
cooloneyso for our stuff such as apparmor, aufs, it is the same as ti-omap configuration12:49
apwyep but if the tree is 'upsidedown' then we're not going to be able to just rebase it12:54
apwso i think that nails its status as a hwe branch12:54
ograapw, someone handles the omap3 branch in lucid, no ?12:54
ograshould be possible to just copy stuff over from there12:55
ograsince they are both .3312:55
apwogra, indeed someone does, but the omap4 branch isn't the same process its not shaped the same12:55
apwso its much more effort, and bryan has already volunteered to handle it12:55
ograok12:55
* cooloney feels in hot water now12:56
apwthis is why these stupid heaps of arm patches are an unsustainable mess12:56
ograheh12:56
ograwell, maverick will make everything better 12:56
ograwe'll only have omap4 as a separate branch for arm12:57
apwogra, all i can say there is 'yeah right'12:57
apwogra, we'll only have that branch till we get a heap more, as happened, and is stil happening in lucid12:57
apwthis omap4 branch is the 9th branch12:57
ograi doubt you will see a heap more 12:57
ogralinaro should solve that 12:57
apwogra, you can doubt it all you like, i just don't believe it12:57
ograthere is an army of devs working on fixing the situation now :)12:58
ograand devicetree 12:58
apwshould, in some unspecified timescale, i will be drinking champagne if we have less that 6 branches in maverick12:58
apwall of that is at least 3-4 releases way (upstream) which makes it 2 releases away for us12:59
ograi would have said one release (being optimistic) :)12:59
ogra(for us)12:59
apwheh yeah, but we heard that a release ago, and frankly there is nothing usable there yet is there13:00
apwnot to take anything away from TI and the fact that we can almost have an omap flavour on the mainline kernel13:01
cooloneyapw: right, long term story, but we feel short term pain13:01
ograit looked like there is some base stuff during UDS13:01
ograso i would expect a first working arch in m+113:02
apwogra, yeah so i return to my previous position we'll have 6 branches again in M13:02
* cooloney need some food to feel better. 13:02
=== cooloney is now known as cooloney-afk
apwwhich is a worlkd of pain13:02
ograyes, M will still suck but i wouldnt expect more arm branches13:02
ograomap3/4 and versatile are the only arm arches we officially support atm13:03
* apw holds up his "i'll believe that when i see it" banner13:03
ograheh13:04
ograindeed, if $big_vendor comes in with $big_money that could change ... but i doubt it13:04
=== cooloney-afk is now known as cooloney
cooloneyapw: if i wanna built-in nfs modules, need i change d-i modules? 13:25
apwcooloney, depends if the udeb becomes empty13:25
cooloneyapw: i built-in nfs before, but building from source package in PPA failed13:25
apwcooloney, if it was becase of the udebs the error would have told you, what error did you get13:26
cooloneyapw: oh, don't have the error log now, then i set NFS_FS as module like other arm branch 13:27
cooloneythe building passed. 13:27
apwcooloney, its entirly possible you would cause a udeb to become empty, which means it needs adding to the exclusion list for the flavour13:28
cooloneyapw: OK, I saw your patch about that, it should be similar i guess. 13:29
apwwhy do you need to buildin NFS of all things13:30
cooloneyapw: that's a question from TI guys, they are heavily using NFS for boot13:31
cooloneyso you know, they are asking for building NFS_FS13:31
cooloneybuilt-in13:31
cooloneyfind: `debian/nfs-modules-2.6.33-900-omap4-di': No such file or directory13:31
cooloneynfs-modules-2.6.33-900-omap4-di will be empty13:31
cooloneymake[1]: *** [do-binary-udebs] Error 113:31
cooloneymake: *** [binary-udebs] Error 213:31
cooloneydpkg-buildpackage: error: /usr/bin/fakeroot debian/rules binary-arch gave error exit status 213:31
apw<cooloney> nfs-modules-2.6.33-900-omap4-di will be empty13:31
cooloneyhttps://launchpad.net/~canonical-arm-dev/+archive/ppa/+build/1757077/+files/buildlog_ubuntu-lucid-armel.linux-ti-omap4_2.6.33-900.1~build2_FAILEDTOBUILD.txt.gz13:31
apwthat line tells you that nfs-modules become empty13:32
apwso you need to add nfs-modules to the excludes list13:32
cooloneyyeah, i understood13:32
cooloneyapw: cool, got it.13:32
cooloneywill try to fix that13:32
cooloneyapw: thanks, i have to off line now13:32
cooloneyhave a nice day13:33
apwsee ya13:33
apt_getHello13:37
apt_getfor a server (mail, vpn, squid-proxy and firewall), whats the best for Timer frequency in kernel: 100Hz or 1000Hz13:37
apwgenerally we set servers lower as they do not require the same interactivity13:40
apwcking, is launchpad down _again_ today?13:40
apt_get100 or 25013:43
pgraner-afktgardner: you have emerald smoking, I have ear plugs and now I have about a 90 deg breeze blowing on me from the fans13:58
tgardnerpgraner-afk, just burning it in. perhaps you should move it downstairs?14:00
pgraner-afktgardner: I'll put it back in the rack when your done14:00
tgardnerpgraner-afk, I'm off. did you fix the PXE boot?14:01
pgraner-afktgardner: yep14:02
=== pgraner-afk is now known as pgraner
pgranertgardner: wow it got quiet14:02
=== xfg is now known as zul
ckingapw, lp is behaving slowly but it is working for me14:07
apwpgraner, did it quiet down before or after you turned it of14:08
apwoff14:08
pgranerapw: heh14:11
apwKeybuk, yesterday you mentioned u had unionfs patched userspace tools.  where can i find those14:20
apwKeybuk, also in my red and green PPAs are the initargs and readahead-tracking patches building, i think they'll make it this time14:21
lagWhen suspending, does USB suspend or just the connected devices?14:31
apwlag, we power down the devices don't we14:33
lagYes14:34
lagBut does USB host need suspending too?14:34
apwso we are definatly doing something to the host, i would imagine putting it in D014:34
lagI don't think USB actually needs suspending 14:39
lagI have just found an option in the menuconfig to disallow any USB device to suspend anyway 14:40
* lag is a happy bunny now14:40
ckinglag, what option is that pray tell14:57
lag2 secs14:57
lagCONFIG_USB_SUSPEND surprisingly :)14:58
JFowe don't build a specifically -server kernel do we?15:03
JFoone of the bug reporters just confused the heck out of me15:03
tgardnerJFo, um, of course we do15:03
apwJFo, there is a -server flavour for amd6415:03
JFoI see... oh, I knew that15:03
* JFo goes to make coffee15:04
=== bjf[afk] is now known as bjf
bjfmoin all15:08
apwmoi15:08
JFomoin bjf 15:20
SquideshiI'm looking at a commit to the drm-next branch. How do I know if this patch has been incorporated into the mainline kernel, when, and which version?15:22
Squideshihttp://git.kernel.org/?p=linux/kernel/git/anholt/drm-intel.git;a=commit;h=f360132626b11d0dc60814033873ca0e3111677c15:22
JFoSquideshi, you'd do a git log against the source of the tree you want to know about15:40
JFogit log <SHA1>15:40
JFoin the example above f360132626b11d0dc60814033873ca0e3111677c is the SHA15:41
=== xfg is now known as zul
SquideshiJFo: In other words, I would need to actually download the mainline kernel source?15:56
JFoyou would need the Ubuntu branches in order to tell, since you'd have to run the git log commands against them15:57
JFoor rather whichever release you were interested in15:57
apwogasawara, i did that aufs2 update.  there is a bit of a colission between that an the removal of an arguemtn to fop fsync .. which means we may not be able to fsync directories correctly on aufs2 after this... hoping we get an update from the maintainer shortly15:58
ogasawaraapw: ack15:59
JFoanybody know about kdump?16:04
JFoor rather know what is needed when it seemingly fails?16:05
* JFo listens to the crickets16:06
SquideshiJFo: Sorry. If I knew, I would try to help. :)16:06
JFono problem Squideshi 16:06
JFobasically just wondered if anyone of the team had experience with it16:07
JFoI know next to nothing about it16:07
SquideshiI have an Intel 845G on an Dell Inspiron 1100 that seems to have several video problems with Lucid. I first had to uninstall Compiz to get it to work at all; but now I think there are two different problems, possibly both in the kernel... 16:09
SquideshiFirst, there's a flicker problem (I hope that's the right term.)16:09
SquideshiIt appears to be fixed when I installed the linux-image-2.6.33-997-generic kernel from drm-intel-next.16:09
JFoSquideshi, do you have a bug filed we can look at?16:10
achiang<timball> so lucid is basically unuseable on ec2 instances16:12
achiang<timball> you run chown -R foo:foo somedir/ and on lucid on ec2 the load goes straight to 4016:12
achiang<timball> it's like a software simulation of a 300bps modem16:12
achiangfrom #kernel16:12
manjotgardner, CONFIG_DEBUG_KERNEL=y16:16
manjotgardner, http://hildstrom.com/projects/aestest/index.html16:16
lagDoes anyone know why kgdboc refuses to recognise ttyUSB0?16:29
lagI get write error: No such device16:29
manjolag, not sure if this is your problem... http://jdramer.wordpress.com/2010/04/28/linux-kernel-debugging-with-kgdb/16:31
lagmanjo: Nope. That guy is using USB->Serial on his development machine. I need it on the target.16:33
JFoapw, I'm off to grab some lunch. ping me whenever you want to chat about wikis... we can postpone till later too if you like17:16
apwJFo, ok17:20
apwogasawara, where shall i push this maverick thing17:20
apwshall i just expose it on my zinc one ... seems sensible17:20
ogasawaraapw: yah, anywhere on zinc should be good and I'll just grab it17:21
apwogasawara, i haven't tested it other than compiling aufs bit, as it then breaks more in ubuntu/17:21
ogasawaraapw: ack17:22
apwogasawara, i'll be monitoring the aufs tree for a proper fiz17:22
apwfix17:22
apwogasawara,   git://kernel.ubuntu.com/apw/ubuntu-maverick aufs2.35rc117:37
ogasawaraapw: thanks17:37
apwjdstrand, perhaps --cpu 4 for you17:38
jdstrandapw: --cpu 4 with testdrive you mean?17:46
=== xfg is now known as zul
apwjdstrand, was wrong channe, and you said the same in paralle in the right place17:52
jdstrandok, I wasn't aware of a -cpu' option, so wasn't sure18:04
sconklingit remote show origin18:17
sconklin-EWRONGWINDOW18:17
JFoheh18:19
* oldkid is listening to 'Subway to Sally - Wolfstraum' from 'Engelskrieger'18:24
JFo...18:24
oldkidsorry wrong chan18:24
JFoheh18:25
loolapw: hey did you see my patch enabling linux-tools in ubuntu-maverick-*meta* as well?18:36
apwlool yeah, though ogasawara is owner for maverick and has taken ownership of the patch in patchworks18:48
loolapw: Oh ok, how do I see that?18:48
apwhttp://patchwork.ozlabs.org/project/ubuntu-kernel/list/18:48
loolDidn't know about this instance, thanks18:49
loolapw: are there more arm trees in which to enable too?18:49
loollinux-ti-omap and the like18:49
ogasawaralool: am in the middle of rebasing to 2.6.35-rc1 so will get everything that's under review applied afterwards18:49
lool(and do you need patches for them)18:49
loologasawara: Ok thanks18:50
loologasawara, apw; https://wiki.ubuntu.com/Specs/M/ARMKernelVersionAlignment19:05
loologasawara, apw: feel free to /join #linaro BTW  :-)19:07
loologasawara, apw: Someone is doing noise next to the phone19:07
apwlool, it was someone typing i recon, and not i :)19:25
amitkI can see apw and ogasawara swearing under their breath19:26
apwamitk, less than you might expect19:52
=== xfg is now known as zul
jjohansen->lunch20:02
=== pgraner is now known as pgraner-afk
dupondjeJFo: as i'm guessing its a bad BIOS, seems like some other people have crashes with that bios also. Mailed ASUS, but they tell me its PSU, but its not right :s21:56
JFohmmm, that is sad21:56
JFowonder why they think it is the PSU21:56
dupondjebecause they say newer cpu has bigger TDP then old one21:56
dupondjebut its shit :)21:56
JFohmmm, I seem to recall an issue with a laptop where the vendor said much the same and, to my surprise, the new PSU fixed it22:25
JFonot saying that is the case here22:25
JFobut it reminded me of that22:25
jjohansenrebooting22:59
=== sconklin is now known as sconklin-gone
=== bjf is now known as bjf[afk]

Generated by irclog2html.py 2.7 by Marius Gedminas - find it at mg.pov.lt!