[Bug 372121] Re: xargs on qemu has bad ARG_MAX

2011-05-04 Thread Loïc Minier
Moving the now-"fix released" bug to the qemu-linaro Ubuntu package ** Package changed: findutils (Ubuntu) => qemu-linaro (Ubuntu) -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/372121 Title: xargs

[Bug 372121] Re: xargs on qemu has bad ARG_MAX

2011-05-04 Thread Riku Voipio
This was fixed in qemu in commit: fd4d81dd04b4e606ce40a41d66368ba77c77c753 long since included in qemu. ** Changed in: findutils (Ubuntu) Status: Triaged => Fix Released ** Changed in: findutils (Ubuntu) Assignee: (unassigned) => Riku Voipio (riku-voipio) -- You received this bug

[Bug 372121] Re: xargs on qemu has bad ARG_MAX

2011-02-23 Thread Dr. David Alan Gilbert
The example appears to work for me on my setup; that's an Ubuntu Maverick ARM chroot with qemu 0.12.3 running on an Ubuntu Lucid i386 host (the qemu is newer than Lucid). sudo chroot /armroot /usr/bin/qemu-arm-static /bin/bash find /usr -print0 | xargs -0r pwd /bin/pwd: ignoring non-option argum

[Bug 372121] Re: xargs on qemu has bad ARG_MAX

2011-02-15 Thread Steve Langasek
** Tags added: arm-porting-queue -- You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. https://bugs.launchpad.net/bugs/372121 Title: xargs on qemu has bad ARG_MAX -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ub

[Bug 372121] Re: xargs on qemu has bad ARG_MAX

2010-10-11 Thread David Sugar
** Changed in: findutils (Ubuntu) Assignee: David Sugar (dyfet) => (unassigned) -- xargs on qemu has bad ARG_MAX https://bugs.launchpad.net/bugs/372121 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. -- ubuntu-bugs mailing list ubu

[Bug 372121] Re: xargs on qemu has bad ARG_MAX

2009-08-07 Thread David Sugar
Loic, we currently do both; we have a default maximum value hard coded, but we also check at runtime to make sure it is not larger than what sysconf would allow. -- xargs on qemu has bad ARG_MAX https://bugs.launchpad.net/bugs/372121 You received this bug notification because you are a member of

[Bug 372121] Re: xargs on qemu has bad ARG_MAX

2009-08-07 Thread Loïc Minier
@David Sugar: So we should be computing xargs' max at runtime with sysconf instead of at build time? ** Changed in: findutils (Ubuntu) Assignee: (unassigned) => David Sugar (dyfet) -- xargs on qemu has bad ARG_MAX https://bugs.launchpad.net/bugs/372121 You received this bug notification bec

[Bug 372121] Re: xargs on qemu has bad ARG_MAX

2009-08-07 Thread David Sugar
The default arg size used in xargs is further checked against the posix api reported limits. It is possible the upper limit is 128K on qemu/versatile/arm, but note that whatever value is selected is further validated against sysconf(_SC_ARG_MAX). However, as noted in sysconf itself, this does no

[Bug 372121] Re: xargs on qemu has bad ARG_MAX

2009-06-30 Thread Paul Larson
I suspect this is not specific to arm, but I'm going to leave it tagged as armel for the time being since the only machine where you seem to be able to reproduce it at the moment is qemu-arm. Thanks for your work on the analysis of the problem. ** Changed in: findutils (Ubuntu) Importance: Unde

[Bug 372121] Re: xargs on qemu has bad ARG_MAX

2009-06-27 Thread David Greaves
I reported this on #ubuntu-arm (or similar) whilst compiling arm code for ubuntu/maemo/mer on the open build service; and someone specifically requested that I tag it 'arm' when I reported it. The problem only manifests itself using qemu arm emulation ... OTOH I guess this is fairly important to a

[Bug 372121] Re: xargs on qemu has bad ARG_MAX

2009-06-26 Thread Paul Larson
I can't seem to confirm this on my arm system (karmic) nor on my jaunty x86_64 system. Is there any reason why you believe this may be specific to arm? ** Changed in: findutils (Ubuntu) Status: New => Incomplete -- xargs on qemu has bad ARG_MAX https://bugs.launchpad.net/bugs/372121 You

[Bug 372121] Re: xargs on qemu has bad ARG_MAX

2009-06-04 Thread Paul Larson
** Tags removed: arm -- xargs on qemu has bad ARG_MAX https://bugs.launchpad.net/bugs/372121 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu. -- ubuntu-bugs mailing list ubuntu-bugs@lists.ubuntu.com https://lists.ubuntu.com/mailman/listi

[Bug 372121] Re: xargs on qemu has bad ARG_MAX

2009-05-11 Thread David Greaves
actually this still broke... but less often so I hit it with a bigger stick: DEFAULT_ARG_SIZE="(64u * 1024u)" -- xargs on qemu has bad ARG_MAX https://bugs.launchpad.net/bugs/372121 You received this bug notification because you are a member of Ubuntu Bugs, which is subscribed to Ubuntu.

[Bug 372121] Re: xargs on qemu has bad ARG_MAX

2009-05-05 Thread David Greaves
confirmed that reconfiguring xargs with DEFAULT_ARG_SIZE="(127u * 1024u)" instead of the default: (128u * 1024u) fixes the problem. patch to debian/rules : --- rules.orig 2009-05-05 15:44:19.0 + +++ rules 2009-05-05 10:54:23.0 + @@ -36,7 +36,7 @@ dh_testd