Commit d5b17918 authored by Paolo \'Blaisorblade\' Giarrusso's avatar Paolo \'Blaisorblade\' Giarrusso Committed by Linus Torvalds

[PATCH] uml: Correct the failure path in start_io_thread

Correct the failure path in start_io_thread(), to return the correct error
code.
Signed-off-by: default avatarPaolo 'Blaisorblade' Giarrusso <blaisorblade_spam@yahoo.it>
Signed-off-by: default avatarAndrew Morton <akpm@osdl.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@osdl.org>
parent 5554afda
...@@ -350,6 +350,7 @@ int start_io_thread(unsigned long sp, int *fd_out) ...@@ -350,6 +350,7 @@ int start_io_thread(unsigned long sp, int *fd_out)
NULL); NULL);
if(pid < 0){ if(pid < 0){
printk("start_io_thread - clone failed : errno = %d\n", errno); printk("start_io_thread - clone failed : errno = %d\n", errno);
err = -errno;
goto out_close; goto out_close;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment