* [PATCH] serial console registration bugfix (2.6)
@ 2003-10-16 16:58 Bjorn Helgaas
0 siblings, 0 replies; only message in thread
From: Bjorn Helgaas @ 2003-10-16 16:58 UTC (permalink / raw)
To: linux-ia64
uart_set_options() can dereference a null pointer. This happens
if you specify a console that hasn't previously been setup by
early_serial_setup().
For example, on ia64, the HCDP typically tells us about line 0,
so we calls early_serial_setup() for it. If the user specifies
"console=ttyS3", we machine-check when trying to follow the
uninitialized port->ops pointer.
It's not entirely clear to me whether we should return 0 or -ENODEV
or something. The advantage of returning zero is that if the user
specifies "console=ttyS0" and we just lack the HCDP, the console
doesn't work as early as usual, but it does start working after the
serial driver detects the port (though the baud/parity/etc from the
command line are lost). Returning -ENODEV seems to prevent it from
ever working.
Bjorn
=== drivers/serial/serial_core.c 1.72 vs edited ==--- 1.72/drivers/serial/serial_core.c Mon Sep 29 18:35:33 2003
+++ edited/drivers/serial/serial_core.c Thu Oct 16 09:56:55 2003
@@ -1859,6 +1859,9 @@
if (flow = 'r')
termios.c_cflag |= CRTSCTS;
+ if (!port->ops)
+ return 0;
+
port->ops->set_termios(port, &termios, NULL);
co->cflag = termios.c_cflag;
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2003-10-16 16:58 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2003-10-16 16:58 [PATCH] serial console registration bugfix (2.6) Bjorn Helgaas
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox