Commit bbf33fa6 authored by Cyrill Gorcunov's avatar Cyrill Gorcunov Committed by Pavel Emelyanov

parasite: Print error code in parasite_dump_tty

Signed-off-by: 's avatarCyrill Gorcunov <gorcunov@openvz.org>
Signed-off-by: 's avatarPavel Emelyanov <xemul@parallels.com>
parent 5e881679
...@@ -424,7 +424,7 @@ static inline int tty_ioctl(int fd, int cmd, int *arg) ...@@ -424,7 +424,7 @@ static inline int tty_ioctl(int fd, int cmd, int *arg)
ret = sys_ioctl(fd, cmd, (unsigned long)arg); ret = sys_ioctl(fd, cmd, (unsigned long)arg);
if (ret < 0) { if (ret < 0) {
if (ret != -ENOTTY) if (ret != -ENOTTY)
return -1; return ret;
*arg = 0; *arg = 0;
} }
return 0; return 0;
...@@ -471,7 +471,7 @@ static int parasite_dump_tty(struct parasite_tty_args *args) ...@@ -471,7 +471,7 @@ static int parasite_dump_tty(struct parasite_tty_args *args)
err: err:
if (ret != -EIO) { if (ret != -EIO) {
pr_err("TTY: Can't get sid/pgrp\n"); pr_err("TTY: Can't get sid/pgrp: %d\n", ret);
return -1; return -1;
} }
......
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