Mostly the same as is already being done for several other RLIMIT_* values. Signed-off-by: Jan Beulich <jbeulich@novell.com> --- a/vl.c +++ b/vl.c @@ -4846,6 +4846,12 @@ int main(int argc, char **argv, char **e rl.rlim_cur = rl.rlim_max; if (setrlimit(RLIMIT_DATA, &rl) != 0) perror("setrlimit(RLIMIT_DATA)"); + if (getrlimit(RLIMIT_AS, &rl) == 0) { + rl.rlim_cur = rl.rlim_max; + if (setrlimit(RLIMIT_AS, &rl) != 0) + perror("setrlimit(RLIMIT_AS)"); + } else + perror("getrlimit(RLIMIT_AS)"); rl.rlim_cur = RLIM_INFINITY; rl.rlim_max = RLIM_INFINITY; if (setrlimit(RLIMIT_RSS, &rl) != 0) _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensource.com/xen-devel
Stefano Stabellini
2011-Jan-11 11:04 UTC
Re: [Xen-devel] [PATCH] qemu: bump RLIMIT_AS if restricted
On Tue, 11 Jan 2011, Jan Beulich wrote:> Mostly the same as is already being done for several other RLIMIT_* > values. > > Signed-off-by: Jan Beulich <jbeulich@novell.com>Acked-by: Stefano Stabellini <stefano.stabellini@eu.citrix.com> _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensource.com/xen-devel
Ian Jackson
2011-Jan-11 18:39 UTC
Re: [Xen-devel] [PATCH] qemu: bump RLIMIT_AS if restricted
Jan Beulich writes ("[Xen-devel] [PATCH] qemu: bump RLIMIT_AS if restricted"):> Mostly the same as is already being done for several other RLIMIT_* > values. > > Signed-off-by: Jan Beulich <jbeulich@novell.com>Applied to qemu-xen-unstable.git. You may want to consider whether this change, or something like it, ought to go upstream to qemu-devel. Thanks, Ian. _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensource.com/xen-devel