mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2025-01-10 15:58:47 +00:00
[PATCH] uml: fix daemon transport exit path bug
Fix some exit path bugs in the daemon driver. Signed-off-by: Paolo 'Blaisorblade' Giarrusso <blaisorblade@yahoo.it> Acked-by: Jeff Dike <jdike@addtoit.com> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
parent
7a590611c0
commit
ba260e23ef
@ -98,7 +98,7 @@ static int connect_to_switch(struct daemon_data *pri)
|
||||
printk("daemon_open : control setup request failed, err = %d\n",
|
||||
-n);
|
||||
err = -ENOTCONN;
|
||||
goto out;
|
||||
goto out_free;
|
||||
}
|
||||
|
||||
n = os_read_file(pri->control, sun, sizeof(*sun));
|
||||
@ -106,12 +106,14 @@ static int connect_to_switch(struct daemon_data *pri)
|
||||
printk("daemon_open : read of data socket failed, err = %d\n",
|
||||
-n);
|
||||
err = -ENOTCONN;
|
||||
goto out_close;
|
||||
goto out_free;
|
||||
}
|
||||
|
||||
pri->data_addr = sun;
|
||||
return(fd);
|
||||
|
||||
out_free:
|
||||
kfree(sun);
|
||||
out_close:
|
||||
os_close_file(fd);
|
||||
out:
|
||||
|
Loading…
x
Reference in New Issue
Block a user