/srv/irclogs.ubuntu.com/2014/10/31/#ubuntu-kernel.txt

trippehSoval: pretty sure h264 requires UVC 2.0 support. mainline linux only supports 1.x mode00:02
trippehfor UVC cameras like the c930e that is00:03
SovalOkay.  Thank you.  I'm guessing that work is being done to add uvc 2.0 support down the line?  I mean, it'll probably show up in a year or two, right?00:05
trippehI did see some patches for it floating on some mailing list some months ago00:05
SovalSo I'd probably have to find a patch or instructions on the internet for compiling my own kernel, if I want UVC 2.0 support, right now, right?00:08
SovalNot that I'm necessarily going to do that... I'm just wondering.00:09
SovalOkay.  Thank you.00:10
trippehPretty much. And you'd be lucky if it applies to a current kernel.00:21
guitehello everyone, I’m currently trying to use message queues, my sample code is here http://pastebin.com/i4Q5PLKm and the call to mq_open is failing with the EMFILE code. This is a bit strange because “cat /proc/sys/fs/mqueue/msg_max” is 100 (I raised it for the test) and “cat /proc/sys/fs/mqueue/msgsize_max” is 8192 (not modified)09:34
guiteHave you got any hint on why this is failing or what are the highest values I can set on msg_max and msgsize_max on my ubuntu09:35
guite?09:35
guiteany advice is welcome, don’t hesitate :)09:36
apwquite, it EINVALs for me on vivid09:43
apwguite, ^09:43
apwok with msg_max raised it does the same for me09:45
guiteI tried to read the kernel code, I’m not familiar with it, the only reference to EMFILE I see is on a code I think that shouldn’t be called…09:47
guitein mqueue.c09:47
apwyour mode being in decimal is most confusing09:51
guiteyes sorry…09:52
guiteit’s 60009:52
guiteI don’t know how to set it properly… maybe should I write 600o09:52
apw0600 would be the normal form indeed09:54
apwguite, ok you are hitting your rlimit on message queue bytes09:57
guite(ok, I’m discovering this 0600 form to write octal code >_< don’t blame me please, I don’t write much C code)09:57
apwyou have arbitrarily exactly hit the per process limit09:58
guitehmmmm… what is rlimit :s09:58
guite?09:58
apw$ ulimit -q09:58
apw81920009:58
guiteha ha :D09:58
guiteexactly09:58
apwprocess limits on "things" like open files, message queue reservations etc etc09:58
guiteI swear I choosed 100 arbitrarily :D09:58
guiteok09:59
apwyou happend to pick the exact limit, i switched it to 10 (also randomly) and it works09:59
apwyou would want to either up the limit or drop your queue to 99 09:59
guitethat’s nice, is it a way to raise this rlimit ?09:59
apwroot can up the limit using ulimit09:59
guiteyes09:59
guiteapw: is there a C way to raise it…09:59
guiteor I can ask google09:59
ohsixposix ipc is really not great, you should look for alternatives over knobs10:00
apwsetrlimit10:00
guiteok thanks10:00
apwthough you need to be priviledged to raise a limit, your program likely running as you won't be able to10:01
guiteyes indeed10:01
apwyou could also make the buffers smaller to get more of them10:01
guitein fact, I should more check this limit to adapt message sizes and count10:02
guiteohsix: I will check if there is a way we can use an alternative, thanks for the information10:03
guiteapw: did you try the same code, rising the ulimit -q10:07
guiteapw: someone tried for me and said he gets the same result10:07
apwnope, i just looked at the kernel code, and it checks against that  limit10:07
guite(I’ll try too, but I’m trying to find the command-line for setrlimit)10:08
guiteapw: could you give me the line and file in the kernel that performs this check ?10:08
guiteI have a 3.13.0 kernel on my ubuntu10:09
apwguite, but i did just test it, and yes, if i raised the ulimit your 100/8192 version passes10:09
guiteok, I need to check, sorry :)10:09
apwguite, transcript of my test in pm10:10
apwguite, and this is the code which is tripping10:11
apw                if (u->mq_bytes + mq_bytes < u->mq_bytes ||10:11
apw                    u->mq_bytes + mq_bytes > rlimit(RLIMIT_MSGQUEUE)) {10:11
apw                        spin_unlock(&mq_lock);10:11
apw                        /* mqueue_evict_inode() releases info->messages */10:11
apw                        ret = -EMFILE;10:11
guiteok, what I thought, thank you very much :)10:13
apwand whoever did your testing and said it didn't work ... be suspicious10:13
ohsixlooks like people have used unix domain sockets and _seqpacket as alternatives (you can use peercred to see if they are supposed to be listened to)10:14
guiteohsix: in fact, we are more using python here, if we don’t find a wrapper for a library, we rarely code our own10:16
guitebut I’ll check if there is a wrapper on unix socket, there should be one…10:17
ohsixmay i ask what you need to do?10:17
guiteI unfortunately don’t have all the information on this part of our code, in fact, it is another team that is working on it, but it seems they want processes to exchange files10:18
apwit is not clear why that would need such a very large buffer10:19
ohsixah, you have a world of options nonetheless10:19
guiteI don’t know how big… I suggested them to not touch ulimit and just use default parameters, but I wanted to understand a bit more10:19
guiteapw: indeed :)10:19
ohsixthere are lifecycle problems that are very annoying with posix ipc that you might only ignore if the way permissions work and how they're namespaced is useful10:19
apwof course i am hearing "exchange file descriptors" when you say exchange files, and that might not be so10:20
guiteapw: I think not, I think they mean “real file like images for instances”10:20
guiteapw: but let’s say I know too less about their needs10:21
ohsixthere is object based storage stuff that are neat for vm images10:21
guiteI know they had trouble with their message queues10:21
apwthough sending a file descriptor over may well make sense, anyhow, not my problem :)  that is user code, ick10:21
* apw washes his hands obessivly ...10:22
guiteapw: thanks for the advice10:22
amitkcan anybody point me to a ubuntu tarball for armhf (the whole desktop, not just ubuntu-core)?11:02
ogra_amitk, i dont think anything like that exists anymore11:06
ogra_arm UI stuff is all ubuntu-touch 11:06
amitkogra_: that's a shame, so the last tarball on this page is the closest? http://cdimage.ubuntu.com/ubuntu-touch/saucy/daily-preinstalled/20131127/11:06
ogra_amitk, no, thats touch 11:07
amitkogra_: ok, I guess i could apt-get install ubuntu-deskop from ubuntu-core11:08
ogra_yeah11:08
amitk... but that requires fixing networking first on this device11:09
amitkbah, I'll see if debian has something ready-to-use11:09
NikThHello, anyone knows how to prepare a git Ubuntu kernel in order to upload it in Launchpad ? Is there a script somewhere or a guide ? 11:13
NikThiirc there was a prepare-personal-ppa or something in earlier Ubuntu versions.. but I cannot see it right now.11:14
ogra_amitk, use qemu-debootstrap and then chroot to install ubuntu-desktop ... tar it up and dump on SD11:15
amitkogra_: that's a good idea11:16
apwNikTh, you need to make sure the tree is clean of extra files, then "clean" it to generate all the files with "debian/rules clean", then you can package it as normal "dpkg-buildpackage -S -nc"12:12
NikThapw: Here http://pastebin.com/Hf1YqHeR . The comments with two hashes and capital letters are mine. When you have time to take a look.. Thanks. 13:10
NikThMaybe the raw format is better... for the eyes :-) http://pastebin.com/raw.php?i=Hf1YqHeR13:19
apw <<<<<<< HEAD13:31
apwlooks like you didn't handle the cherry-pick right to me13:32
apwNikTh, ^13:32
NikThcherry-pick -m2 -x COMMIT13:32
NikThthen is asks me to add the files13:33
NikThgit add . 13:33
NikThand then13:33
NikThcherry-pick --continue 13:33
NikThand it commits the files. 13:33
NikThI did the same for the upstream kernel (bug updated https://bugs.launchpad.net/linux/+bug/1386695) and it gave me no errors in the building13:34
ubot5Ubuntu bug 1386695 in linux (Ubuntu) "[3.16.0-23] Resume from suspend/hibernation, GPU lock - possible regression" [Medium,Triaged]13:34
apwyeah but it only asks you to add the files when it _failed_ to apply correctly, and some action is required then13:34
apwin your case there is a merge failure marker in there <<<<< ===== and >>>>> mark the merge issue13:35
NikThyes, the action it required is the cherry-pick --continues .. in order to commit the files. 13:35
apwno the action it required was to fix the merge, add the files and continue13:35
apwyou just did 2, and 313:35
apwas there is still a merge conflict marker in your log13:35
apw/tmp/buildd/linux-3.16.0/sound/soc/soc-compress.c:102:1: error: expected expression before '<<' token13:35
apw <<<<<<< HEAD13:35
NikThSo, there is a difference between Ubuntu git and lets say Linus git when you want to merge a commit ? 13:36
NikThI used the same method in the upstream kernel, and it didn't fail.13:36
apwyes, but that is because the commit happened to apply cleanly13:36
apwor possibly didn't but you arn't building the broken bits13:37
apwthe ubuntu kernel is rather different from a vanilla kernel in the sense it has other things applied, stables, fixes, etc13:37
apwa cherry-pick which "works" does not ask you to add and continue, it just applies the fix cleanly13:38
NikThIs there any other action needed after the cherry-pick --continue ? It showed me git status (working directory clean) 13:39
NikThBut the same asked me on vanilla kernel. To fix the conflicts (with git add . ) and then cherry-pick --continue , 13:39
NikThbut there has been worked without issues. I have built and installed the kernel and tested of course.13:40
apwthen you must not be building that bit, as if it asks regarding conflicts the code is not compilable13:40
apwas git has shoved <<<<<< etc into the osurce, which is not valid C13:40
NikThYes, I thought of this, maybe I cant' merge this code into Ubuntu kernel, because of the ...code itself. It doesn't fit..or something. (I'm not codding by the way :-) )13:41
apwwhihc commit are you trying to apply to which kernel13:42
NikThon 3.16.0-23.31 this one: http://tinyurl.com/ot59yh513:43
NikThThat's the actual commit that solves the problem in 3.17-rc7 13:44
NikThMaybe I need to pick the specific patches only, (nouveau_fbcon.c ...etc) and apply them as a patches. 13:45
apwNikTh, what is the commit id, that link isn't working for me13:46
NikThapw: 7d1419f30cc5106196e54a282d7e115e698c95f613:48
apwyes it makes much more sense to cherry pick the two commits individually13:48
apwon the assumption your issue is an smbfs related one13:49
NikThYes, the second parent fixes the issue :  1209bbdff2f6bbffa6eb5823033bbd7b8799a5e213:49
NikThHeh, I think is not. If you see the actual commit 1209bbd , you will see how many files unrelated with samba have been changed. Unrelated with samba but related with nouveau/drm13:51
apwnope that commit only affects fs/cifs/file.c13:53
apwthe entire merge only pulls in cifs fixes, 2x to be precise13:54
apwi take i tyou have a graphics issue, have you files a bug on it?13:54
NikThhmm, then something weird happened here, because I remember when I cherry-picked this commit, it pulled a bunch of files (nouveau_fbcon.c ..etc).13:57
NikThup until to some samba related files. 13:58
apwwell you were cherry-picking a merge, so you get allll of its history, not just one commit which is what you are tryin to find in a bisect13:58
apwwhat is your bug13:58
NikTh138669513:59
NikThYou will see the page there also, without tinyurl (maybe that's the problem and the page does not load).14:00
apw first bad commit: [5838ae610ff36777b8fce6f353c2417980c1a1fa] drm/nv50/disp: fix dpms regression on certain boards14:01
apwis that the sort of card you have ?14:01
apwand did you try just that commit cherry-picked ?14:02
NikThYes, I tested all the commits one by one up to the merge14:02
NikThcherry-picked one by one, built, installed, tested.. nothing14:02
NikThuntil this one with the merge. When I cherry-picked this one and built the kernel, then it has worked.14:02
apwthat really doesn't tell you much as you merged in most of v3.17 final at that point14:03
NikThWhat I thought yesterday and asked here (but probably you were not here), is if I tried to cherry-pick the 3 relevant (with my card and nouveau) commits together ?14:04
apwso your bisect took you to the first commit after v3.17-rc7, which seems unlikely, that osunds like the bisect going wrong to me14:05
NikThdoh! again ? :P14:05
apwthe bisect claimed 5838ae610ff36777b8fce6f353c2417980c1a1fa was good, did you ever build and boot that to confirm it was good ?14:06
NikThYes, I began from this first bad (good) commit and up. 14:07
apwyou build that specific commit and it was successful14:08
NikThone by one. cherry-pick , then build , then install.. the nothing14:08
NikThThan it says so, as the other ones. 14:09
NikThThat14:09
apwno not as a cherry-pick, did you actually test what the bisect claimed was the fix, in its original osition14:10
NikThYes, I have tested them all, after the cherry-pick, I have built the kernels again one by one with the bad(good) commits. 14:10
apwgit bisect bad 5838ae610ff36777b8fce6f353c2417980c1a1fa14:11
NikThI have built almost 35-40 kernels in last 2 days :P 14:11
apwso you said that one worked, and yet v3.17-rc7 didn't14:11
apwhmmm14:11
NikThgit bisect bad (without the number)14:11
NikThgit pick it up automatically, as I saw.14:12
NikThWhat I want to test now, is if I cherry-pick 3 commits from the first bad and up, and combined ? 14:13
NikThI mean all the nouveau/drm related ones. 14:13
NikThI'm pretty sure that it's something to graphics related and nouveau specifically, because I have tested the resume/hibernate with nouveau blacklisted (vesa only) and it worked quite well.14:15
apwthe chances are it is going to be the first drm/nouveau fix, which claims to fix lots of s/r races... though that commit completely rewrites the drivers, sigh14:15
apw52 files changed, 875 insertions(+), 517 deletions(-) 14:16
apwthat is never going to make it into an older release14:16
NikThThe "fix regressions" or the "punt fbcon" ? 14:16
NikThYeah, because 3.17-rc7 and 3.17 are too close each other, maybe it has worked there, but in an older kernel...hmm14:17
apwwell the bisect says that you need the first commit in that sequence, but as that fix itself does not work you must need some of other commits to the same files, the issue is they mostly seem dependant on the first one, which is "a whole new notification system" which is massive14:19
NikThThe firs commit I have marked as bad (the merge one) is the first I cherry-picked , built and tested. From this point an on, all the other commits have been worked.. maybe I did something wrong ?14:19
NikThI just followed your instructions.. cherry-pick bad (or good depends) , then build - install - test.. until the end.14:21
apwnow i am confused as to what you did14:21
NikThheah,heah..14:21
apwyou did the bisect which said you needed 5838ae610ff36777b8fce6f353c2417980c1a1fa14:21
apwwhat did you do after that14:22
NikThif you look at the log , you will see the order I bisect the commits14:22
NikThThe first two commits did nothing, so I've marked them as good14:23
apwyes ... after the bisect completed and told you which commit it thinks fixes things ... what did you do then14:23
NikThI have cherry-picked this one, (the first bad) and built - install - test the kernel. 14:23
apwyou cherry-picked it on top of what, 3.16 ubuntu ?14:24
NikThAnd I did that for the other commits as well, one by one.. all the bad marked commits.14:24
NikThno, on top of the good marked kernel which was v.317-rc7 14:24
NikThgood means bad of course (because of reverse bisect)14:25
apwok it doesn't make sense to grab all of the "good" ones like that14:25
apwyou are taking a random subset of changes based on the bisect stride14:25
apwafter you checked out 3.17-rc7 and cherrypicked 5838ae610ff36777b8fce6f353c2417980c1a1fa ... that was a failure ?14:25
NikThYes, I didn't know that.. so I m sure I have built kernels in vain.. but it's ok. 14:26
NikThYes it was.14:26
apwit did't fix it, ok14:26
NikThThen I cherry picked the next in the row.. of course in v3.17-rc7 checkout.. and tried again..but it was a failure also..14:28
apwok this does not make sense14:28
apwyou built and tested 5838ae610ff36777b8fce6f353c2417980c1a1fa and that worked14:28
NikThThen the other one.. and again...failure14:28
apwyou then reset to v3.17-rc7 and cherry-picked 5838ae610ff36777b8fce6f353c2417980c1a1fa on top and that did not work14:29
apwis that a correct statement14:29
NikThUntil I reached the 7d1419f30cc5106196e54a282d7e115e698c95f6 , and it was a success. 14:29
NikThreset ?14:29
apwyou said you started from v3.17-rc7 and added just 5838ae610ff36777b8fce6f353c2417980c1a1fa and that was a failure14:29
apw(reset == make tree be at a specific commit)14:30
NikThhmm, I don't remember if I did a reset, probably I didn't. 14:30
NikThGOD :P14:30
apw14:24:46        NikTh | no, on top of the good marked kernel which was v.317-rc7 14:31
apwwhat did that mena you did do14:31
NikThcheckout v3.17-rc7 14:31
NikThthen cherry pick the first bad commit14:31
apwand htat did not work, and yet the build you did of the bisect at 5838ae610ff36777b8fce6f353c2417980c1a1fa did ?14:32
NikThbut then, I didn't reset , I just continued to the second cherry-pick14:32
apwthat doesn't matter as those do not make sense anyhow14:32
apwi need to bottom out on this testing as you say you14:32
apwbuilt and tested 5838ae610ff36777b8fce6f353c2417980c1a1fa and that worked (in the bisect)14:33
NikThOk, give me the command , after bisect. The bisect is over..lets say is correct.14:33
apwand you "git checkout v3.17-rc7 && git cherry-pick 5838ae610ff36777b8fce6f353c2417980c1a1fa" and that build did not14:33
apwis that what you are saying14:33
NikThYes.14:33
apwok then something is wrong with your methodology, as that simply cannot make sense14:34
apwas 5838ae610ff36777b8fce6f353c2417980c1a1fa is the very next comit after v3.17-rc7, so those trees14:34
apwwould be identicle, and the binaries the same and the result, neceearily the same14:34
NikThAfter the bisect, what is this reset command you said before ?14:35
apwgit checkout v3.17-rc7 would have done the same, though leaving you lost not on a branch14:35
apwwhich for these purposes does not matter14:35
NikThOk, I will try it again.. maybe I was wrong. I remember I did a checkout, but I will do it again, second time, just to be completely sure14:36
NikThgit checkout v3.17-rc7 && cherry-pick -x COMMIT 14:37
apwyour other option is to take jsalisbury up on his offer to help with the bisect14:37
NikThand then I will build the kernel again14:37
apwhe has a fast build box at his disposal14:38
NikThYes, I didn't reject his offer :-) 14:39
apwi didn't read it such that you were asking for it either, so i am sure he'll be assuming he has to do nothing :)14:39
NikThheah.. ok. I will try again with the building.. and when I see him here I will tell him, or I will leave a comment at the bug report.14:41
apwluck14:42
NikThapw: Thanks again for you patience .. I have to go away for now.. I will come back later :-)14:43
stgraberapw: hey, so I'm testing the 3.16 lts backport on trusty (from the PPA) and I'm getting about one oops a second, I'm assuming someone on your team would want to hear about that? :)14:45
stgraber(I may still stick with that kernel for now because one oops a second beats btrfs hanging every couple of hours so far)14:46
apwstgraber, yep we'd want to hear about that14:46
apwplease do file bugs against linux-lts-utopic if it will let you14:47
apwand give us the numbers here14:47
stgraberapw: can't file bugs from that box since LP doesn't do IPv6 and that's on an IPv6 only subnet, but I'll file one manually14:49
stgrabera 10min kernel.log looks like: https://dl.stgraber.org/oops-3.16-trusty.log14:49
stgraberoh, those aren't oops actually, just warnings, but still, lots of them :)14:50
rtgstgraber, what kind of NIC ?14:51
apwin theory you can "pot" them i think14:51
rtgguess I could look14:51
apwyeah ... offload failures14:51
rtgigb14:52
apwstgraber, ok you are getting those for each and every packet you send i think, luckily they are rate limited to 1/s14:53
* rtg wonders if there is a knob to turn off GRO14:53
rtgotr rather, transmit offload14:54
stgraberrtg: Intel I35014:54
stgraberhttps://bugs.launchpad.net/ubuntu/+source/linux/+bug/138811814:54
ubot5Ubuntu bug 1388118 in linux (Ubuntu) "linux-lts-utopic-3.16 spamming dmesg with warnings every few seconds in skb_warn_bad_offload" [Undecided,New]14:54
apwstgraber, is this box fungible, can you test kernels easily ?14:57
stgraberapw: yeah, I don't mind rebooting it14:58
rtgapw, are you thinking about having him try the 3.16.7 kernel ?14:59
apwrtg, well i was going to look at the delta first, but leaning to that14:59
rtgapw, Utopic master-next has 3.16.[5,6,7] stacked up. maybe something in there would help.15:00
apw    of IP_CSUM/IPV6_CSUM. The same is needed in netif_skb_features()15:00
apw    in order to avoid offloading mismatch warning when vlan is15:00
apwthat sounds slightly suspicious15:00
apwthouhg i think it requires a bond which stgraber prolly doesn't have15:02
apwhmmm15:02
rtgapw, yeah, I think trying a 3.16.7 mainline kernel makes sense. there are quite a few net bug fixes sine the last Utopic kernel was released15:02
apwrtg, ack i'll build some test kernles for him now15:02
rtgapw, don't we have a vanilla mainline already ?15:03
stgraberapw: I sure do have a bond on there15:03
stgraberapw: that server has two bonded gigabit NICs, then about a dozen vlan on top of that and each vlan is then bridged into its own bridge with a bunch of containers and vms in each of those15:03
apwrtg, yeah we do, but knowing stgraber he is using everything we add on15:04
rtgyeah15:04
apwstgraber, ok then you are likley hitting that bug ... i'll get you a kernel to test15:04
stgraberapw: thanks15:04
=== Trevinho_ is now known as Trevinho
cmaginawhat is the abi version for the trusty-updates kernel. seems to be something strange with the meta package being 39.46 and the image package being 39.6615:28
rtgcmagina, the last number of those versions are the upload number and are unrelated. the only import number is the ABI15:33
rtgi.e., the first number15:33
cmaginartg: ah, ok, thanks for the info15:39
apwstgraber, ok http://people.canonical.com/~apw/lp1388118+lts-backport-utopic-trusty/ has the likely fix applied, if that shuts your machine up then the next upload will too :)15:44
stgraberapw: ok, kernel installed. Waiting for a Jenkins build to finish before I reboot.15:53
ppfhi, trying to build a kernel with a new custom flavour16:03
ppfquite late during compilation i get "previous or current modules file missing!"16:04
ppfwhat did i miss?16:04
apwppf, you need the abi files (debian.<branch>/abi/*) for the previous build, or as in your case there is no such thing, you need to mark them to skip16:13
NikThppf https://wiki.ubuntu.com/KernelTeam/KernelMaintenance#Module_lists16:14
ppfcan't i copy the abi files from somewhere?16:15
ppfor shouldn16:15
ppf't one do that16:15
NikThppf  : https://wiki.ubuntu.com/KernelTeam/KernelMaintenance#Overriding_ABI_check_failures16:16
NikThapw: Guess what.. 16:17
NikThJust finished the second build. The first was a failure for me, again. Then one with 5838ae610ff36777b8fce6f353c2417980c1a1fa , was a failure. 16:18
NikThIn the second build I combined the 3 relevant commits (cherry-pick them together) and the test is successful !16:19
NikTh634ffcccfbe59d77652804e1beb415d3329b1bc6 , f2f9a2cbaf019481feefe231f996d3602612fa99 , 5838ae610ff36777b8fce6f353c2417980c1a1fa 16:19
apwand you built those against v3.17-rc7 ?  or ?16:21
NikThSo maybe needs the 3 commits combined in order to work. This is not too much code (changes,deletions,additions), and maybe it could merge them to an Ubuntu kernel16:21
NikThYes, against v3.17-rc716:22
NikThThis time I "git reset --hard" to be sure :)16:22
NikThI think these three commits could made it into Ubuntu kernel. I will try later, to build 3.16-current with these commits. 16:23
NikThI will update the bug, if you agree, just to inform for the developments here. 16:24
apwyeah shove that info in, i'll se if those three will apply on 3.1616:25
NikThOk. 16:25
stgraberapw: dmesg looks good16:37
apwstgraber, awsome, will mark the bug up apropriatly, that will be fixed in the next upload, and i assuem the current version isn't going out anyhow16:37
apwstgraber, actually as lts-utopic is in a bit of limbo, it might not be the "next", it might be the one after, but its coming16:47
apwNikTh, ok shortly there will be some kernels in http://people.canonical.com/~apw/lp1386695-utopic/ to test.  one of the fixes you identified actually isn't applicable back in U and i have pulled in a foundational patch for antoher.  i actually suspect (and likely will test) only the last two are needed.17:45
apwNikTh, anyhow give that one a whirl and let me know17:45
NikThapw: Now I saw your message and right now I'm building the same Kernel as you, I assume. The commit that break things in building (for me) is  f2f9a2cbaf019481feefe231f996d3602612fa9918:10
NikThapw: so I'm building with the other two..but of course I will test yours as well. 18:10
NikThThanks18:10
=== freyes is now known as zz_freyes
NikThapw: My build failed, once again, another bit of C broke it.18:30
NikTh<apw> as git has shoved <<<<<< etc into the osurce, which is not valid C18:30
NikThBut your kernel WORKS !! :-) 18:30
NikThYou detected the correct .patches .. :-) 18:31
apwyes i had to pull another commit in, and backport the other one ...18:31
apwso you booted that one ok yes ?18:31
apwi'll do another one without the extra patch in a sec18:31
NikThYes, booted, tested, and resume works.18:32
* NikTh waiting for the next kernel18:32
apwok good, we are making some progress, wel done for finding that triumvate of fixes18:32
NikThNah.. without your help I would probably give up.18:34
apwNikTh, kernels are syncing now, will be about another 5m, will be in http://people.canonical.com/~apw/lp1386695-2-utopic/18:47
apwnote that this is a _new_ directory18:47
apwi am hopful this simpler one will also fix your issue ... and make life easier for SRUing18:49
* NikTh downloading :-) 18:49
apwlet me know if that one works, here18:50
NikThOk18:53
NikThapw: Yes, it works pretty well :-) 18:56
rtgapw, uploaded Utopic LTS19:11
apwNikTh, great ...20:06
apwrtg, excellent, to the ppa or archive20:07
rtgppa20:07
apwack, ta20:08

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