aboutsummaryrefslogtreecommitdiff
path: root/osdep.c
diff options
context:
space:
mode:
authoraurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162>2008-04-20 21:10:41 +0000
committeraurel32 <aurel32@c046a42c-6fe2-441c-8c8c-71466251a162>2008-04-20 21:10:41 +0000
commit2520c665c8df68550dac083bb81bb0a1c414432d (patch)
treed92298c1a0344934e4b6f541812da0197d677ae6 /osdep.c
parentb29d8ae4d40a3cd1e3e6ca8810ed8cd8d93af46a (diff)
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
Diffstat (limited to 'osdep.c')
-rw-r--r--osdep.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/osdep.c b/osdep.c
index 64bc16e05c..ae7e3fb8ca 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,