[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <20070307161139.GA3345@ccure.user-mode-linux.org>
Date: Wed, 7 Mar 2007 11:11:39 -0500
From: Jeff Dike <jdike@...toit.com>
To: Blaisorblade <blaisorblade@...oo.it>, akpm@...l.org
Cc: user-mode-linux-devel@...ts.sourceforge.net,
linux-kernel@...r.kernel.org
Subject: Re: [uml-devel] [PATCH 4/5] UML - driver formatting fixes
On Tue, Mar 06, 2007 at 08:07:16PM +0100, Blaisorblade wrote:
> The second line should better say -err instead of err.
Right, patch below.
Jeff
--
Work email - jdike at linux dot intel dot com
My last formatting patch got the sign of an error wrong in a printk.
Thanks to Blaisorblade for the close look.
Signed-off-by: Jeff Dike <jdike@...ux.intel.com>
--
arch/um/drivers/chan_user.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
Index: test/arch/um/drivers/chan_user.c
===================================================================
--- test.orig/arch/um/drivers/chan_user.c 2007-03-06 12:10:12.000000000 -0500
+++ test/arch/um/drivers/chan_user.c 2007-03-07 11:14:12.000000000 -0500
@@ -158,7 +158,7 @@ static int winch_tramp(int fd, struct tt
*/
err = run_helper_thread(winch_thread, &data, CLONE_FILES, &stack, 0);
if(err < 0){
- printk("fork of winch_thread failed - errno = %d\n", err);
+ printk("fork of winch_thread failed - errno = %d\n", -err);
goto out_close;
}
-
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists