mirror of
https://github.com/adulau/aha.git
synced 2024-12-27 19:26:25 +00:00
powerpc/hvsi: Avoid calculating possibly-invalid address
Check whether index is within bounds prior to calculating a possibly-invalid address. Signed-off-by: Roel Kluin <roel.kluin@gmail.com> Cc: Bernd Petrovitsch <bernd@firmix.at> Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
This commit is contained in:
parent
6826a57d1a
commit
7286565064
1 changed files with 2 additions and 1 deletions
|
@ -1230,11 +1230,12 @@ static struct tty_driver *hvsi_console_device(struct console *console,
|
||||||
|
|
||||||
static int __init hvsi_console_setup(struct console *console, char *options)
|
static int __init hvsi_console_setup(struct console *console, char *options)
|
||||||
{
|
{
|
||||||
struct hvsi_struct *hp = &hvsi_ports[console->index];
|
struct hvsi_struct *hp;
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
if (console->index < 0 || console->index >= hvsi_count)
|
if (console->index < 0 || console->index >= hvsi_count)
|
||||||
return -1;
|
return -1;
|
||||||
|
hp = &hvsi_ports[console->index];
|
||||||
|
|
||||||
/* give the FSP a chance to change the baud rate when we re-open */
|
/* give the FSP a chance to change the baud rate when we re-open */
|
||||||
hvsi_close_protocol(hp);
|
hvsi_close_protocol(hp);
|
||||||
|
|
Loading…
Reference in a new issue