=== freeflying is now known as freeflying_away [00:50] Laney: did i break transition tracker or has it not updated yet? [00:51] (see my recent commits on +junk) === freeflying_away is now known as freeflying === freeflying is now known as freeflying_away === freeflying_away is now known as freeflying === freeflying is now known as freeflying_away [05:04] Good morning === freeflying_away is now known as freeflying [06:34] doko, ping [06:38] cjwatson, you might know, too: which package contains the STL pretty printers for gdb? [06:47] doko, we are looking into getting pretty printers for the STL working and would need some help :) [06:58] RAOF: hey Chris, how are you? [06:58] RAOF: are you still doing SRU? it would be great if some SRU member could accept the postgresql uploads for all releases (it has an MRE, no packaginag changes, all auto-tested, so shoudl be easy) [06:58] people keep asking me for them.. [06:59] pitti: Sure. [07:13] good morning [07:16] pitti: 9.1 or 8.4? [07:16] pitti: Or, I guess, both? [07:16] RAOF: both for precise, 9.1 for quantal/raring, 8.4 for lucid [07:16] * RAOF will deal with that after dinner, it seems. [07:17] infinity: what do you think about an SRU for http://launchpadlibrarian.net/144462697/dpkg_1.16.10ubuntu2_1.16.10ubuntu3.diff.gz? We're backporting juju-core for the cloud archive, to build against a barely modified Precise, and so I we need to carry that dpkg patch - either in the cloud archive or as an SRU in precise-updates. [07:18] I assumed we'd need to carry it but just noticed 1.16.1.2ubuntu7.1 and wondered. [07:18] (we'll probably need to carry it in the short term anyway, so we can have a working juju-core on Thursday) [07:21] RAOF: thanks (btw, no need to actually review the upstream diff that much) [07:28] slangasek, xnox: I tested automatic and manual partitioning with EFI in qemu, and manual partitioning on my workstation, and it has always worked, so it seems this bug either got fixed, or I can't reproduce it any more [07:39] cjwatson: I'd never heard of RUNPATH before... Reading the docs about it, I'm a bit confused then RPATH would be preferable over over RUNPATH (particularly since man ld-linux.so(8) explicitly says RPATH is deprecated). [08:15] xnox: looking [08:15] Laney: thanks. [08:15] woah [08:16] didn't expect you to be up [08:16] * xnox why not? [08:16] 14/10 01:50:54 [08:16] oh that... =) well..... release week jibbies. [08:17] mlankhorst: xdiagnose could do without all the .git noise in the package. Can you build it with '-i -I'? [08:17] yeah just delete it, I'll ask for tjaalton to responsor, didn't notice it. :P [08:19] rbasak: I'd be happy to SRU that back ASAP. [08:19] rbasak: It's easy enough to validate and push through without a 10-day wait, IMO. [08:20] infinity: thanks. I'll get on to it now then. What do you think about regressions for rebuilds of other armhf packages? I can't think of anything specific, but it does seem to have a rather large window. [08:21] rbasak: Hrm? It shouldn't cause any regressions. [08:21] rbasak: I need to SRU to add ppc64el too, let me prep it. [08:22] infinity: yeah I can't think of anything either. Just that it has the potential to impact many things. [08:22] infinity: OK, I'll leave the patch/upload to you then? I'll do the bug paperwork. [08:22] rbasak: It shouldn't impact anything. If things have the new ABI tags, they'd pass both tests, if they lack the new ABI tag, they'll fall through to the old test, if they lack both, they'll fail as always. [08:23] Right. [08:23] rbasak: And yes, please SRUify the bug for me, that would be great. [08:23] xnox: It has the revision, waiting to see if it runs normally [08:27] I need advice from someone familiar with start-stop-daemon in init-scripts; [08:27] the stud init-script stop portion uses --pidfile (as the start section) which restricts the SIGKILL to the parent PID [08:27] if I understand it correctly [08:28] but STUD has children processes so when we do 'invoke-rc.d stud restart', the start comes in while the children still have the socket open and fails [08:29] bug 1123950 [08:29] bug 1123950 in stud (Ubuntu Precise) "/etc/init.d/stud restart does not start the daemon" [Medium,In progress] https://launchpad.net/bugs/1123950 [08:30] my question is : would it be a problem to remove the --pidfile from the 'start-stop-daemon --stop' while keeping it in use in the 'start-stop-daemon --start' section ? [08:31] the --pidfile in the start section is required so STUD can start multiple instances [08:32] Laney: looks good. Hm I wonder why it didn't update before? how often is it cronned for? [08:32] Laney: (after the move) [08:33] I found a missing occurence of arm64 [08:33] (in the runner script) [08:35] infinity: the bug is ready [08:35] (bug 1187722) [08:35] bug 1187722 in dpkg (Ubuntu Precise) "dpkg-shlibdeps fails on armhf ELF binaries that do not define architecture specific information" [Undecided,New] https://launchpad.net/bugs/1187722 [08:36] tvoss_: I always assumed those were in the gdb package itself [08:36] soren: I think RUNPATH is generally better, it's just newer [08:39] rbasak: Cool, I'll upload today, and we co do a quick verification turnaround. [08:39] rbasak: Verifying my ppc64el change takes about half a second, so that won't hurt your chances. :) [08:39] Thank you! [08:39] jamespage: ^^ infinity will SRU the dpkg fix to Precise === freeflying is now known as freeflying_away === freeflying_away is now known as freeflying [09:06] Laney: ah, ok. and why is boost1.53 still there? i thought that should be auto-garbage collected (or is it removed only after X days of not being updated or some such?) /me's memory is fuzzy [09:07] xnox: 3 days [09:07] caribou: The point of pidfile is to limit the stopping to only the thing you started. If children take a while to eff off, you might want to find a way around that... [09:09] infinity: yeah, I understood that, but in the case of stud, it loops through the whole set of parents to stop them anyway so I thought that stopping all procs at once would be acceptable [09:10] caribou: It loops through all the parents *it started*, I assume. Not all the occurrenced of that process name on the host. Subtle, but important, difference. [09:10] infinity: the alternative is to have stud manage the ramping of of his children when the parents is told to exit, which is what the Debian maintainer suggest [09:10] caribou: Having the parent not exit until all the children do is probably the right answer. [09:11] infinity: indeed; ok that answers my query; thanks [09:12] infinity: in the case of stud; it does stop --pidfile on all the stud configurations present in /etc/stud so that would be all of them anyway but it is indeed a better solution [09:13] caribou: That's not all of them on the system, that's all of them on that root. [09:13] caribou: Think chroots. [09:14] infinity: yup, true I have too much of a server centric view [09:14] infinity: and this is *exactly* the clarification I was after! [09:14] caribou: I have a server-centric view too, clearly just different types of servers. ;) [09:16] infinity: btw, we have a current workaround to add a "sleep 1" in the start sequence that seems to work; does that sound like a valid option for SRU up until we get the final fix from Debian ? [09:16] I have a debian bug opened on this one btw [09:17] caribou: A sleep is an icky but valid workaround, a second seems optimistic, if it could potentially be under load or running on a slow machine. [09:17] bug 1123950 [09:17] bug 1123950 in stud (Ubuntu Precise) "/etc/init.d/stud restart does not start the daemon" [Medium,In progress] https://launchpad.net/bugs/1123950 [09:17] infinity: ok, I'll look into it [09:44] rbasak: What was the bug number for that? I didn't seem to mention it in my previous changelog entry (naughty me). [09:47] infinity: bug 1187722 [09:47] bug 1187722 in dpkg (Ubuntu Precise) "dpkg-shlibdeps fails on armhf ELF binaries that do not define architecture specific information" [Undecided,New] https://launchpad.net/bugs/1187722 [09:56] rbasak: http://paste.ubuntu.com/6235232/ <-- Sanity check. [09:56] * rbasak looks [09:59] infinity: lgtm [10:05] rbasak: Alright, I'll do a quick test build and local test and then upload and see if I can find a fellow SRU member to review and let it in for me. [10:10] infinity: FWIW, before I spoke to you earlier I verified that the patch applied against dpkg precise successfully builds saucy golang on precise. Just another (non-SRU-team, non-dpkg-uploader) data point. [10:11] rbasak: Shiny, it's uploaded. [10:11] cjwatson: Can I get you to do a quick SRU review of dpkg in precise-proposed? We need to fasttrack this for server team stuff. [10:19] infinity: done [10:19] cjwatson: Danke. === Sweetsha1k is now known as Sweetshark === tkamppeter_ is now known as tkamppeter [10:54] rbasak: Once that builds, want to re-verify your bug with the archive binaries? I'll verify my bug. [10:55] rbasak: Oh, look, it's already built and published, even. [11:01] infinity: ack. Working on it. === MacSlow is now known as MacSlow|lunch === gusch is now known as gusch|lunch [11:03] didrocks: Around? unity needs a trivial arm64-specific patch to build there (just extending the existing -fPIC that's conditional on amd64 and armhf to arm64). But it would need to be uploaded quickly. [11:04] didrocks: Is it reasonably practical to get something like that in ASAP, or does the autolander make it awkward? [11:04] wgrant: we can always fast-pass the merge in trunk [11:04] wgrant: let me look at what's in trunk that was not released [11:04] I'll pretend I know what that means. [11:04] Ideally very fast, I intend to lock down the archive for seeded uploads after I've had lunch. [11:05] But I'd like to see this fix in for kicks, if we can make it. [11:05] wgrant: first, do you have a MP somewhere? [11:05] No, I'm still downloading the branch [11:05] if (${CMAKE_SYSTEM_PROCESSOR} STREQUAL "x86_64" OR ${CMAKE_SYSTEM_PROCESSOR} STREQUAL "armv7l") [11:05] is the line, needs to also match "aarch64" [11:06] infinity: there are 2 commits in unity trunk that are not released yet, if I test that quickly, does the release team +1 for them? === freeflying is now known as freeflying_away [11:08] didrocks: Toss me a quick diff somewhere? [11:08] didrocks: But if they're both bugfixes and obviously sane, I'm fine with that. [11:09] infinity: http://bazaar.launchpad.net/~unity-team/unity/trunk/revision/3567 and http://bazaar.launchpad.net/~unity-team/unity/trunk/revision/3568 [11:10] they seem sane to me, I want to give them a 10 minutes poke first though [11:10] didrocks, infinity: http://paste.ubuntu.com/6235437/ [11:10] debdiff [11:13] didrocks: Both those look fine to me. [11:13] infinity: I'm currently testing, as soon as wgrant has the MP ready, I'll push that and run a build [11:13] didrocks: If those test fine, and you grab wgrant's change, we'll call that the final non-SRU upload for the release. :P [11:13] infinity: \o/ [11:14] infinity: (ubiquity, possibly) [11:14] No changelog change required? [11:14] oh no, wanted to be the latest! [11:15] wgrant: no, just give a sane commit message :) [11:15] cjwatson: I meant the final non-sru unity upload. [11:15] cjwatson: I'm confident that we'll have installer uploads. [11:15] cjwatson: I have to do one or two myself still. :/ [11:16] Okay, lunch. Back in a bit. [11:16] ah right [11:19] didrocks: https://code.launchpad.net/~wgrant/unity/arm64-pic/+merge/190919 [11:20] wgrant: pushing your change to trunk and then kicking a rebuild [11:20] thanks :) [11:20] Thank you :) [11:22] didrocks: are you running the ci stuff? [11:22] didrocks: can kick it if you like [11:22] lool: already on the page [11:22] (started) [11:22] already merged I guess [11:23] yep [11:23] and cu2d building ok [11:32] tvoss_, hi [11:33] doko, hey [11:33] tvoss_, should be in the libstdc++6-4.8-dbg package [11:33] doko, those are all python2, and gdb is linked against python 3 [11:35] tvoss_, wait, I had a patch for that ... [11:36] doko, would be quite helpful :) plus: can we wire that up to our retracing infrastructure, too? Would love to have more readable stack traces === freeflying_away is now known as freeflying === tvoss_ is now known as tvoss|dentist === MacSlow|lunch is now known as MacSlow === _salem is now known as salem_ [12:16] Is it known that clang++ doesn't work with the stl in 13.10? === gusch|lunch is now known as gusch [12:18] http://pastebin.kde.org/pzd9fvzs2 === tvoss|dentist is now known as tvoss [12:59] doko, did you have any luck digging up your patches? [13:08] hi folks, quick q re whoopsie in syslog [13:09] seems like I have a steady stream of debugging info there - whoopsie online / offline [13:09] is that expected, or a bug? can we dial back on the chatter? === sabdfl_ is now known as sabdfl === mbiebl_ is now known as mbiebl [13:17] sabdfl: yes, filed as https://bugs.launchpad.net/whoopsie/+bug/1239690 [13:17] Ubuntu bug 1239690 in Whoopsie "syslog doesn't need to know about offline / online" [Medium,Confirmed] === zyga-to-canada is now known as zyga [13:35] tvoss, won't be for saucy [13:36] doko, can you point me to the patch? [13:37] tvoss, http://anonscm.debian.org/viewvc/gcccvs/branches/sid/gcc-4.8/debian/patches/libstdc%2B%2B-python3.diff?view=log [13:39] ack, thanks ev [13:39] infinity: verification-done on bug 1187722. Thanks! [13:39] bug 1187722 in dpkg (Ubuntu Precise) "dpkg-shlibdeps fails on armhf ELF binaries that do not define architecture specific information" [Undecided,Fix committed] https://launchpad.net/bugs/1187722 [13:56] xnox, Hmm, did you push to this branch? https://code.launchpad.net/~xnox/libdbusmenu/fix-arm64/+merge/190847 [13:56] tedg: yes. [13:56] tedg: on behalf of doko (he didn't want to deal with branches/upstream merger / daily landing etc) [13:57] xnox, Hmm, seems LP doesn't think there's any diff... [13:57] tedg: i believe that's in the archive already thus, needs merge into upstream branches to unbreak integration. [13:57] tedg: LP sent me an OOPS via email failing to generate diff. [13:57] LP is on "updating diff" implying it oopsed [13:57] xnox: delete the branch and repush [13:57] (and probably re-MP) [13:57] cjwatson: ok. [13:57] that's usually the simplest way [13:58] hm, branch is updating as well. [13:58] might want to keep the MP window open in a tab :) [13:58] s/window // [13:58] xnox: same thing [13:58] ack. [13:58] rare on small branches, sadly pervasive on large ones like ... er, LP itself [13:59] so I've got used to it [13:59] ok. first time happening to me =) === JanC_ is now known as JanC [14:08] tedg: https://code.launchpad.net/~xnox/libdbusmenu/fix-arm64/+merge/190967 [14:08] tedg: better? [14:09] xnox, No hugs and kisses in the MR? ;-) [14:09] xnox, Thanks! Approved. [14:09] =) [14:10] * xnox blows a kiss to PS jenkins integrator === shadeslayer_ is now known as shadeslayer === davidcalle_ is now known as davidcalle [15:09] anyone know how to translate a UTF-16 string into whatever the native C string format the process is using? [15:20] tvoss, http://anonscm.debian.org/viewvc/gcccvs?view=revision&revision=6980 [15:22] psusi: libicu? [15:23] slangasek, ping [15:24] psusi: wcrtomb() convers a wchar_t string to an UTF-8 char string; that might be what you want? [15:24] psusi: sorry, that's for an individual character; you probably want wcsrtombs() [15:25] pitti: I don't have a wchar_t, I have UTF-16 [15:26] psusi: iconv_open("UTF-16", "UTF-8"); [15:26] psusi: or use libicu (haven't tried that, though) [15:26] there's really nothing in the standard C library to do that? [15:26] I hate to add another dependency [15:27] libiconv is a bit fiddly but not hopelessly painful [15:27] If you're already using glibc, it's there [15:27] libiconv is reasonably close to glibc, isn't it? [15:27] ohh [15:27] It's built into glibc on GNUish systems [15:27] It's not in every libc [15:27] well here's the other thing... I don't know if I want to convert it to UTF-8... doesn't the locale determine the proper encoding, which may not be UTF-8? [15:28] nl_langinfo (CODESET) [15:28] yes, that's right; if you want to directly show that on stdout or so (most toolkits actually always expect UTF-8 as input regardless of the locale) [15:28] again somewhat libc-dependent, there are bits in e.g. gnulib to help [15:29] so with gnulib it's locale_charset () [15:29] well parted right now is using the w*mb* family of functions and passes around char * [15:29] parted uses gnulib, so it wouldn't be particularly painful to add more modules from there [15:29] in fact you already have locale_charset [15:30] and for that matter all the iconv bits [15:30] xnox, did you get feedback from ev about whoopsie's b-d on valgrind? [15:30] the problem seems to be that when it reads a UTF-16 string from the gpt, it discards the upper 8 bits and calls it a char *... for non ascii strings, that leaves it with bogus encodings when it tries to convert that to wchar_t from the locale encoding [15:31] if you have a known source encoding you should store it in that encoding if you need to round-trip, and iconv to the locale encoding for display [15:31] so I need a char * that instead has valid encodings in whatever the correct locale is [15:31] char * is just a sequence of 8-bit characters, it would depend on the function you're using to read into it what gets discarded, not on the type as such [15:31] doko: he is in front of me, and says he does not care for saucy about that =) [15:32] doko: since no-one will be using whoopsie for a while on arm64. [15:32] although for the case you're talking about I would be inclined to treat the GPT data as a byte array except when converting for display [15:32] right.. the function just has a loop assigning each 16 bit source char to an element in the char *, thus discarding the upper 8 bits [15:32] doko: i'll fix it in saucy? or do you want it for bragging points? [15:32] haha [15:33] yeah, that's not too smart [15:33] the name is displayed and I think also sometimes substitued into messages that are then translated with gettext [15:33] But surely the code itself gives you the answer [15:33] char name[37]; [15:33] for (i = 0; i < 72 / sizeof (efi_char16_t); i++) [15:33] gpt_part_data->name[i] = [15:33] (efi_char16_t) PED_LE16_TO_CPU ((uint16_t) pte->PartitionName[i]); [15:34] rather suggests (reasonably) that name should be an array of efi_char16_t [15:34] so with the 8 high bits chooped off, it doesn't survive the trip through gettext to wchar_t and back to utf-8 for printing [15:34] cjwatson: sure, but then get_name and set_name only pass/excpect a char * [15:34] so it needs converted [15:34] either that, or, if it's more convenient for iconv, a byte array in whatever endianness is correct [15:35] psusi: right, get_name and set_name are to/from display clearly, and want converters at their borders [15:35] psusi: but I'd suggest that you should otherwise store in a fairly raw format, since otherwise you may introduce round-trip errors [15:35] xnox, just did see avtivity-log-manager dep-waiting, but that's an ev package too. but well, with his new hat on ... ;) [15:35] aye [15:36] the user's encoding may not be able to represent all the characters in the label, for instance [15:36] right [15:36] iconv () takes pointers to char * buffers [15:36] which is fair enough, so that would suggest you just want to fix the loop there to be less rubbish [15:37] I can sort of see what it's trying to do in _partition_generate_part_entry [15:37] yea... fix the terrible loop, and convert in the get/set methods [15:37] You could instead do *((efi_char16_t) &gpt_part_data->name[i]) = ... [15:38] or something like that. But I'm not sure that's the clearest option [15:39] actually i * 2 and bump the size of the array [15:39] you get the idea :) [15:40] tvoss, http://anonscm.debian.org/viewvc/gcccvs?view=revision&revision=6980 [15:41] psusi: bug 1220165 is indeed weird, but reproducible every time here. I wish we were using udev cookies in the right way [15:41] bug 1220165 in parted (Ubuntu) "Error informing the kernel about modificatons" [Critical,Triaged] https://launchpad.net/bugs/1220165 [15:42] cjwatson: iirc, cookies are a device-mapper thing arent' they? [15:42] psusi: they're a fairly general concept that device-mapper happens to be one thing that implements [15:42] cjwatson: so who is adding the partition? did we enable a partx rule or something? a change event that makes someone else open the device shouldn't cause that... [15:43] I've seen buggy udev rules in the past that responded to change events that way [15:43] they're a proper nightmare to track down [15:43] what way? [15:43] by opening the device ... [15:43] sure, we have plenty of those [15:43] but they won't cause that error [15:43] oh I think I see what you mean [15:43] hmm [15:44] this has to be someone else actually ADDING the partition, after it has successfully been removed [15:44] I wish I could find a way to instrument this without it vanishing [15:44] can you set a kprobe on the blkpg stuff? [15:44] or trace [15:45] doko: pushed fix to lp:whoopsie, but infinity doesn't want it in, as it wasn't ev who proposed the fix =)))))) [15:45] and besides partitioning tools, the only other thing I know of that adds partitions is partx [15:45] so unless someone added a udev rule to run partx -a... [15:46] there is /lib/udev/rules.d/95-partx.rules [15:46] kpartx sorry [15:46] (and a similar thing for dmraid but I doubt it's that) [15:46] right, those only apply to dm [15:47] the kpartx rules should also only be for dm-* [15:47] but, let me try removing them and seeing what happens [15:48] nope, not kpartx [15:48] blast... doesn't seem to be a kernel trace event in the partition add path [15:48] yea, kpartx just creates a new dm device anyhow, doesn't know about BLKPG [15:49] it's regular partx that does that [15:49] unless... someone is calling BLKRRPRT? [15:51] I could strace -f udevd; it'll probably make the bug vanish, but I could look for block ioctls [15:51] I'd say kprobe it at the source in the kernel... get exactly what you want without dragnetting and changing timing [15:52] just one printk in those two ioctls [15:52] psusi: I can't realistically install a new kernel; which existing trace event would you suggest? [15:52] (I've not used kprobes before - if you have a recipe I'd appreciate it) [15:52] I don't see an existing trace event... and I've not yet figured out how to use kprobes myself either [15:53] but supposedly it is fairly simple to add a printk somewhere, build and insert the module, and bam [15:54] where fairly simple is, as usual, once you climb the initial learning curve ;) [15:54] stracing udev didn't perturb the bug away, actually [15:54] but it also doesn't show any BLKPG* or BLKRRPART [15:55] it wouldn't be issued by udev directly but by something it executes [15:55] yes I used -f, of course [15:55] ahh, right [15:55] are you sure that a duplicate add is the only possible cause of EBUSY here? [15:56] only way I can see... you only get to the add call if the remove succeeds or fails with ENXIO [15:56] also happens if the add attempt overlaps an existing partition [15:57] i.e. the device was removed, or already does not exist [15:57] ohh, right [15:57] aha! [15:57] or if the partition number already exists, or if kzalloc fails [15:58] I bet it's overlapping [15:58] let me strace parted_server to see what it's doing [15:59] yea... didn't think of this when I made the patch to avoid removing and re-adding unmodified partitions [16:00] there's a higher numbered partition ( thus has not been removed yet ) that overlaps with the partition we are trying to add === Amaranthus is now known as Amaranth [16:02] yea... that loop needs to be split in two passes... first remove partitions that don't match the new table, then loop again adding the new ones after the first loop has already removed all of the modified old ones [16:04] so yea, it isn't a race at all ;) [16:06] 17:00 psusi: hm, this is an "erase disk" install [16:06] 17:01 psusi: but maybe some of the partitions happen to coincide in extent [16:06] psusi: yes, looking at the trace, there's an add with no matching remove [16:06] working up a patch now [16:07] what's the bug? you're a little ahead of me here [16:07] in fact, it's attempting a resize, not an add === chrisccoulson_ is now known as chrisccoulson [16:07] 4041 16:02:52.716798 ioctl(6, BLKPG, {0x3 /* BLKPG_??? */, flags=0, datalen=152, {start=1048576, length=52613349376, pno=1, devname="/dev/sda1", volname=""}}) = -1 EBUSY (Device or resource busy) [16:07] I guess you lagged out... I think there's an existing partition on the disk that we are wiping out and it overlaps the new partition we are trying to add [16:08] but it has a higher partition number than the one we are trying to add [16:08] 3 == BLKPG_RESIZE_PARTITION [16:08] just checking that theory against the logs [16:08] so it hasn't been removed yet [16:08] yeah, that's right [16:08] prior state: [16:09] 1 1048576-28468895231 28467846656 primary ext4 [16:09] 6 28469886976-52615446527 24145559552 logical ext4 [16:09] 5 52615446528-53686042623 1070596096 logical linux-swap /dev/sda5 [16:09] desired state: [16:09] 1 1048576-52614397951 52613349376 primary ext4 /dev/sda1 [16:09] 5 52615446528-53686042623 1070596096 logical linux-swap /dev/sda5 [16:09] tvoss: asynchronous pong [16:09] slangasek, pong [16:10] ah, sorry :) [16:10] slangasek, wanted to check on the mem leak? was that fixed? [16:12] tvoss: it is not fixed, we haven't root caused it yet; jodh has been working on it [16:12] tvoss: please pick his brain about the progress :) [16:12] slangasek, yup :) [16:12] jodh, ^ === charles_ is now known as charles === dpm is now known as dpm-afk [16:27] psusi: more than happy to test things here BTW [16:27] since I have a nice 100% reproducer handy [16:29] cjwatson: about to email you the git patch [16:29] psusi: awesome [16:37] tvoss: still investigating I'm afraid: putting together a simple dbus server + client (without upstart and (with+without) nih) to try to simulate the problem. [16:37] tvoss: trigger it even. [16:37] jodh, is there any way we can get valgrind results? [16:38] tvoss: there are valgrind logs on the bug if you're interested. However, neither I nor slangasek have been able to get it to show the leak. [16:39] cjwatson: patch sent... I haven't tested it though [16:39] jodh, do you have a theory in which subcomponent the leak might occure? [16:40] tvoss: all our findings are on the bug. We believe the problem is in libdbus "somewhere". That's about as much detail as we've got so far. [16:42] off to lunch [16:42] psusi: OK, I'll look it over, thanks! [16:50] jodh, looking, thx [16:54] tvoss: progress! see https://bugs.launchpad.net/ubuntu/+source/unity/+bug/1235649/comments/59 [16:54] Ubuntu bug 1235649 in unity (Ubuntu Saucy) "uevent spam causes libdbus client code in session upstart to consume massive amounts of memory on Ubuntu Touch" [Undecided,New] [16:59] jodh, \o/ [17:01] jodh, might be an artifact of pool allocation, though [17:01] jodh, a though: does nih replace libdbus memory allocation routines? I would think that it tries to force libdbus to allocate from a preallocated memory slice to avoid malloc at all cost [17:03] tvoss: no - nih does have its own alloc rouintes. But it just makes libdbus calls and is careful to document which nih routines return memory managed by dbus rather than nih. [17:04] jodh, got a link to source? [17:05] tvoss: http://bazaar.launchpad.net/~ubuntu-branches/ubuntu/saucy/libnih/saucy/files/head:/nih/ [17:06] sarnold: Any hope for bug #1220434? [17:06] bug 1220434 in curtin (Ubuntu) "[MIR] curtin" [Undecided,New] https://launchpad.net/bugs/1220434 [17:18] hi bkerensa [17:18] hi lfaraone [17:20] pitti: http://bazaar.launchpad.net/~ubuntu-langpack/langpack-o-matic/main/revision/446 it appears you'll also need to add kubuntu-debug-installer kubuntu-firefox-installer desktop-kubuntu-notification-helper desktop-kubuntu-web-shortcuts desktop-kubuntu-firefox-installer [17:21] or source package kubuntu-debug-installer kubuntu-firefox-installer kubuntu-web-shortcuts kubuntu-notification-helper [17:22] oh, template list is actualy kubuntu-debug-installer kubuntu-firefox-installer desktop-kubuntu-notification-helper desktop-kubuntu-web-shortcuts desktop-kubuntu-firefox-installer notificationhelper kcm-notificationhelper [17:30] /join #ubuntu-locoteams [19:10] apachelogger: I am not sure thy will need to be added to the language packsbeacuse they are in universe === thomi_ is now known as thomi [19:43] ev, What's the LP project for the geoip data? [19:51] pitti: logind gets stuck in PrepareForSleep mode after suspend/hibernate, it happens occasionally, but I already saw it on two complete different machines. should I file a new lp report or continue commenting on this one bug 1234469 ? [19:51] bug 1234469 in network-manager (Ubuntu) "Network does not come up after resuming from suspend." [Medium,Confirmed] https://launchpad.net/bugs/1234469 [19:54] thad_: I think that bug is the very issue, so continuing investigation there is fine [19:56] pitti: alright, guess I'll test kernel 3.10 and 3.12 to get some more information, not quite sure how to debug this systemd/logind "madness" :) [19:57] thad_: thanks; you can run logind in the foreground to see what it's doing, perhaps there's an error message somewhere [19:59] ok, hopefully I can gather some useful debugging information [20:15] so what if characters can't be reprepsented in your current code page? it looks like iconv fails the conversion by default, or has an option to ignore... shouldn't you substitute a generic block like character like you get when you don't have the correct font installed? [20:51] psusi: sounds like you want //TRANSLIT [20:51] psusi: changing the default behaviour would break things that use iconv to tell whether something is valid text in a given encoding [20:51] cjwatson: the man page says it tries to use multiple similar characters, but isn't clear on what happens if it just plain won't work... like if you are using straight asci or latin1 [20:52] You tend to get "?" for ASCII//TRANSLIT [20:52] ok... sounds good then, maybe I'll use that [20:53] cjwatson: that patch work out earlier? [20:53] Just testing it now following your clarification [20:54] That still fails, but a bit differently [20:54] Now fails to add (or resize?) /dev/sda5 [20:55] what's sda5? [20:55] Which is odd since that should've been in the exact same position as before [20:56] Yeah, same before and after [20:56] 5 52615446528-53686042623 1070596096 logical linux-swap /dev/sda5 [20:57] Oh, you have no handling in the add loop for same start/length before and after [20:58] doh! [20:59] so lift the start/length handling up out of the ifdef I guess [20:59] want me to just do the obvious fix? [20:59] sure [21:00] it's just slightly tricky because of the #ifdef for the resize [21:00] you want to handle unchanged partitions with or without the resize [21:01] bbl, heading home [21:36] psusi: This is looking better now - http://paste.ubuntu.com/6237966/ [21:36] (My changes are around lines 81-105) [21:38] Seems to work, trying a resize [21:43] cjwatson, looks good [21:43] There's no single non-confusing view of this change, unfortunately, apart from looking at the patched source file [21:44] The patch is enough of a refactoring that it's difficult to read on its own, and a patch of the patch is even worse ... [21:44] psusi: Thanks very much for the help - I'll get this into Debian as well once I'm not in such a hurry [21:45] And have slept [21:46] hehe, yep === salem_ is now known as _salem === freeflying is now known as freeflying_away