From: aurel32 Date: Sun, 20 Apr 2008 21:10:41 +0000 (+0000) Subject: Use "mount -o remount" instead of "umount" and "mount /dev/shm", X-Git-Tag: xen-3.3.0-rc1~194^2^2~224 X-Git-Url: http://xenbits.xensource.com/gitweb?a=commitdiff_plain;h=2520c665c8df68550dac083bb81bb0a1c414432d;p=qemu-xen-3.3-testing.git Use "mount -o remount" instead of "umount" and "mount /dev/shm", which results in emptying this virtual file system. git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@4228 c046a42c-6fe2-441c-8c8c-71466251a162 --- diff --git a/osdep.c b/osdep.c index 64bc16e0..ae7e3fb8 100644 --- a/osdep.c +++ b/osdep.c @@ -107,8 +107,7 @@ static void *kqemu_vmalloc(size_t size) tmpdir, ram_mb); if (strcmp(tmpdir, "/dev/shm") == 0) { fprintf(stderr, "To have more space available provided you have enough RAM and swap, do as root:\n" - "umount /dev/shm\n" - "mount -t tmpfs -o size=%dm none /dev/shm\n", + "mount -o remount,size=%dm /dev/shm\n", ram_mb + 16); } else { fprintf(stderr,