diff options
author | Jeff Dike <jdike@addtoit.com> | 2007-05-06 17:51:50 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-05-07 15:13:04 -0400 |
commit | 83ff7df5f1c1c44efd84d7341211aa0138fd9504 (patch) | |
tree | 21a6a8e571c0f1d262e6a7e7c87b3d34dc702503 /arch/um | |
parent | 1e7371c1a11f041d641cc0ff113bf1daa1bd98b9 (diff) |
uml: out of tmpfs space error clarification
It turns out that the message complaining about a lack of tmpfs space
on the host can be misunderstood as referring to the UML.
Signed-off-by: Jeff Dike <jdike@linux.intel.com>
Cc: Paolo 'Blaisorblade' Giarrusso <blaisorblade@yahoo.it>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch/um')
-rw-r--r-- | arch/um/kernel/trap.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/um/kernel/trap.c b/arch/um/kernel/trap.c index 0c467fa08870..abab90c3803f 100644 --- a/arch/um/kernel/trap.c +++ b/arch/um/kernel/trap.c | |||
@@ -229,8 +229,8 @@ void relay_signal(int sig, union uml_pt_regs *regs) | |||
229 | 229 | ||
230 | if(!UPT_IS_USER(regs)){ | 230 | if(!UPT_IS_USER(regs)){ |
231 | if(sig == SIGBUS) | 231 | if(sig == SIGBUS) |
232 | printk("Bus error - the /dev/shm or /tmp mount likely " | 232 | printk("Bus error - the host /dev/shm or /tmp mount " |
233 | "just ran out of space\n"); | 233 | "likely just ran out of space\n"); |
234 | panic("Kernel mode signal %d", sig); | 234 | panic("Kernel mode signal %d", sig); |
235 | } | 235 | } |
236 | 236 | ||