From: Jeff Dike Date: Sun, 6 May 2007 21:51:50 +0000 (-0700) Subject: uml: out of tmpfs space error clarification X-Git-Tag: v2.6.22-rc1~835 X-Git-Url: https://openfabrics.org/gitweb/?a=commitdiff_plain;h=83ff7df5f1c1c44efd84d7341211aa0138fd9504;p=~shefty%2Frdma-dev.git 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 Cc: Paolo 'Blaisorblade' Giarrusso Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/arch/um/kernel/trap.c b/arch/um/kernel/trap.c index 0c467fa0887..abab90c3803 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) 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); }