* A question about break and sysrq on a serial console (2.6.19.1)
@ 2007-01-17 23:56 Brian Beattie
2007-01-18 9:13 ` Russell King
0 siblings, 1 reply; 4+ messages in thread
From: Brian Beattie @ 2007-01-17 23:56 UTC (permalink / raw)
To: linux-kernel
I'm trying to do a SYSRQ over a serial console. As I understand it a
break will do that, but I'm not seeing the SYSRQ. In looking at
uart_handle_break() in drivers/serial/8250.c it looks like the code will
toggle port->sysrq, rather than just setting it when the port is a
console. I think the correct code would be to move the "port->sysrq =
0;" to follow the closing brace on the next line, or am I missing
something.
--------------
/*
* We do the SysRQ and SAK checking like this...
*/
static inline int uart_handle_break(struct uart_port *port)
{
struct uart_info *info = port->info;
#ifdef SUPPORT_SYSRQ
if (port->cons && port->cons->index == port->line) {
if (!port->sysrq) {
port->sysrq = jiffies + HZ*5;
return 1;
}
port->sysrq = 0;
}
#endif
if (port->flags & UPF_SAK)
do_SAK(info->tty);
return 0;
}
-------------
It seem to me that this code will toggle port->sysrq.
--
Brian Beattie
Firmware Engineer
APCON, Inc.
BrianB@apcon.com
^ permalink raw reply [flat|nested] 4+ messages in thread* Re: A question about break and sysrq on a serial console (2.6.19.1) 2007-01-17 23:56 A question about break and sysrq on a serial console (2.6.19.1) Brian Beattie @ 2007-01-18 9:13 ` Russell King [not found] ` <1169137187.16802.26.camel@brianb> 0 siblings, 1 reply; 4+ messages in thread From: Russell King @ 2007-01-18 9:13 UTC (permalink / raw) To: Brian Beattie; +Cc: linux-kernel On Wed, Jan 17, 2007 at 03:56:54PM -0800, Brian Beattie wrote: > I'm trying to do a SYSRQ over a serial console. As I understand it a > break will do that, but I'm not seeing the SYSRQ. In looking at > uart_handle_break() in drivers/serial/8250.c it looks like the code will > toggle port->sysrq, rather than just setting it when the port is a > console. I think the correct code would be to move the "port->sysrq = > 0;" to follow the closing brace on the next line, or am I missing > something. Thereby preventing the action of <break> (which may be to cause a SAK event, which would be rather important on a console to ensure that you're really logging in rather than typing your password into another users program which just looks like a login program.) Note that the sequence for sysrq is: (non-break characters or nothing) <break> <sysrq-char> -- Russell King Linux kernel 2.6 ARM Linux - http://www.arm.linux.org.uk/ maintainer of: ^ permalink raw reply [flat|nested] 4+ messages in thread
[parent not found: <1169137187.16802.26.camel@brianb>]
[parent not found: <20070118164747.GD31418@flint.arm.linux.org.uk>]
* Re: A question about break and sysrq on a serial console (2.6.19.1) [not found] ` <20070118164747.GD31418@flint.arm.linux.org.uk> @ 2007-01-18 16:52 ` Brian Beattie 2007-01-18 17:11 ` Russell King 0 siblings, 1 reply; 4+ messages in thread From: Brian Beattie @ 2007-01-18 16:52 UTC (permalink / raw) To: Russell King; +Cc: linux-kernel On Thu, 2007-01-18 at 16:47 +0000, Russell King wrote: > On Thu, Jan 18, 2007 at 08:19:47AM -0800, Brian Beattie wrote: > > On Thu, 2007-01-18 at 09:13 +0000, Russell King wrote: > > > On Wed, Jan 17, 2007 at 03:56:54PM -0800, Brian Beattie wrote: > > > > I'm trying to do a SYSRQ over a serial console. As I understand it a > > > > break will do that, but I'm not seeing the SYSRQ. In looking at > > > > uart_handle_break() in drivers/serial/8250.c it looks like the code will > > > > toggle port->sysrq, rather than just setting it when the port is a > > > > console. I think the correct code would be to move the "port->sysrq = > > > > 0;" to follow the closing brace on the next line, or am I missing > > > > something. > > > > > > Thereby preventing the action of <break> (which may be to cause a SAK > > > event, which would be rather important on a console to ensure that > > > you're really logging in rather than typing your password into another > > > users program which just looks like a login program.) > > > > > > Note that the sequence for sysrq is: > > > > > > (non-break characters or nothing) <break> <sysrq-char> > > > > > well the code as is, is not working. Printk's tell me that > > uart_handle_break() is called repeatedly while the break condition is > > active, toggling port->sysrq so that it's a 50/50 chance on whether > > port->sysrq will be set or cleared when the break condition ends. On > > the other hand the 8250 break condition handling code is not working > > anyway, so the problem may be that the 8250 code is not calling > > uart_handle_break() correctly. > > Please learn to use the "reply to all" button when using mailing lists. I don't post much to LKML, I realized after I hit send I needed to reply all. > > Works fine here. Which UART are you actually using? At a guess, it's > probably a bad clone which does not have a correct break implementation. it's the built-in mpc8349 powerpc uart. > -- Brian Beattie Firmware Engineer APCON, Inc. BrianB@apcon.com ^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: A question about break and sysrq on a serial console (2.6.19.1) 2007-01-18 16:52 ` Brian Beattie @ 2007-01-18 17:11 ` Russell King 0 siblings, 0 replies; 4+ messages in thread From: Russell King @ 2007-01-18 17:11 UTC (permalink / raw) To: Brian Beattie; +Cc: linux-kernel On Thu, Jan 18, 2007 at 08:52:49AM -0800, Brian Beattie wrote: > On Thu, 2007-01-18 at 16:47 +0000, Russell King wrote: > > On Thu, Jan 18, 2007 at 08:19:47AM -0800, Brian Beattie wrote: > > > On Thu, 2007-01-18 at 09:13 +0000, Russell King wrote: > > > > On Wed, Jan 17, 2007 at 03:56:54PM -0800, Brian Beattie wrote: > > > > > I'm trying to do a SYSRQ over a serial console. As I understand it a > > > > > break will do that, but I'm not seeing the SYSRQ. In looking at > > > > > uart_handle_break() in drivers/serial/8250.c it looks like the code will > > > > > toggle port->sysrq, rather than just setting it when the port is a > > > > > console. I think the correct code would be to move the "port->sysrq = > > > > > 0;" to follow the closing brace on the next line, or am I missing > > > > > something. > > > > > > > > Thereby preventing the action of <break> (which may be to cause a SAK > > > > event, which would be rather important on a console to ensure that > > > > you're really logging in rather than typing your password into another > > > > users program which just looks like a login program.) > > > > > > > > Note that the sequence for sysrq is: > > > > > > > > (non-break characters or nothing) <break> <sysrq-char> > > > > > > > well the code as is, is not working. Printk's tell me that > > > uart_handle_break() is called repeatedly while the break condition is > > > active, toggling port->sysrq so that it's a 50/50 chance on whether > > > port->sysrq will be set or cleared when the break condition ends. On > > > the other hand the 8250 break condition handling code is not working > > > anyway, so the problem may be that the 8250 code is not calling > > > uart_handle_break() correctly. > > > > Please learn to use the "reply to all" button when using mailing lists. > I don't post much to LKML, I realized after I hit send I needed to reply > all. > > > > Works fine here. Which UART are you actually using? At a guess, it's > > probably a bad clone which does not have a correct break implementation. > > it's the built-in mpc8349 powerpc uart. Well, it looks like this UART has a differing behaviour to proper 16xxx UARTs - it says that the BI will be cleared when a stop bit is received in addition to when the LSR is read. That means that unless you check the LSR while the break condition is present, you may never know one existed. Standard 8250-compatible UARTs only clear the BI when the LSR is read. As for the rest of the description, it's quite loose. It doesn't really say under what conditions the BI bit is set, but I suggest that your UART repeatedly (and incorrectly) sets the BI bit when no *new* break condition exists. That would certainly explain your behaviour. Again, standard 8250-compatible UARTs don't do this. Not sure how to fix this without other people seeing a behavioural change. -- Russell King Linux kernel 2.6 ARM Linux - http://www.arm.linux.org.uk/ maintainer of: ^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2007-01-18 17:11 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-01-17 23:56 A question about break and sysrq on a serial console (2.6.19.1) Brian Beattie
2007-01-18 9:13 ` Russell King
[not found] ` <1169137187.16802.26.camel@brianb>
[not found] ` <20070118164747.GD31418@flint.arm.linux.org.uk>
2007-01-18 16:52 ` Brian Beattie
2007-01-18 17:11 ` Russell King
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox