Commit 0fff1b1f authored by Jiri Slaby's avatar Jiri Slaby Committed by Willy Tarreau

tty: vt, return error when con_startup fails

commit 6798df4c upstream.

When csw->con_startup() fails in do_register_con_driver, we return no
error (i.e. 0). This was changed back in 2006 by commit 3e795de7.
Before that we used to return -ENODEV.

So fix the return value to be -ENODEV in that case again.

Fixes: 3e795de7 ("VT binding: Add binding/unbinding support for the VT console")
Signed-off-by: default avatarJiri Slaby <jslaby@suse.cz>
Reported-by: default avatar"Dan Carpenter" <dan.carpenter@oracle.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: default avatarWilly Tarreau <w@1wt.eu>
parent 49849df7
......@@ -3534,9 +3534,10 @@ static int do_register_con_driver(const struct consw *csw, int first, int last)
goto err;
desc = csw->con_startup();
if (!desc)
if (!desc) {
retval = -ENODEV;
goto err;
}
retval = -EINVAL;
......
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