Skip to content

Commit

Permalink
uml: out of tmpfs space error clarification
Browse files Browse the repository at this point in the history
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>
  • Loading branch information
Jeff Dike authored and Linus Torvalds committed May 7, 2007
1 parent 1e7371c commit 83ff7df
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions arch/um/kernel/trap.c
Original file line number Diff line number Diff line change
Expand Up @@ -229,8 +229,8 @@ void relay_signal(int sig, union uml_pt_regs *regs)

if(!UPT_IS_USER(regs)){
if(sig == SIGBUS)
printk("Bus error - the /dev/shm or /tmp mount likely "
"just ran out of space\n");
printk("Bus error - the host /dev/shm or /tmp mount "
"likely just ran out of space\n");
panic("Kernel mode signal %d", sig);
}

Expand Down

0 comments on commit 83ff7df

Please sign in to comment.