From: Russell King <rmk+lkml@arm.linux.org.uk>
To: Linux Kernel List <linux-kernel@vger.kernel.org>
Subject: Re: [PATCH 2/3] Provide console_suspend() and console_resume()
Date: Mon, 14 Jun 2004 15:13:07 +0100 [thread overview]
Message-ID: <20040614151307.I14403@flint.arm.linux.org.uk> (raw)
In-Reply-To: <20040614151217.H14403@flint.arm.linux.org.uk>; from rmk+lkml@arm.linux.org.uk on Mon, Jun 14, 2004 at 03:12:17PM +0100
Add console_suspend() and console_resume() methods so the serial drivers
can disable console output before suspending a port, and re-enable output
afterwards.
We also add locking to ensure that we synchronise with any in-progress
printk.
Signed-off-by: Russell King <rmk@arm.linux.org.uk>
diff -up -x BitKeeper -x ChangeSet -x SCCS -x _xlk -x *.orig -x *.rej orig/drivers/serial/serial_core.c linux/drivers/serial/serial_core.c
--- orig/drivers/serial/serial_core.c Sun May 30 10:32:45 2004
+++ linux/drivers/serial/serial_core.c Mon Jun 14 10:59:49 2004
@@ -1923,7 +1923,7 @@ int uart_suspend_port(struct uart_driver
* Disable the console device before suspending.
*/
if (uart_console(port))
- port->cons->flags &= ~CON_ENABLED;
+ console_suspend(port->cons);
uart_change_pm(state, 3);
@@ -1945,7 +1945,7 @@ int uart_resume_port(struct uart_driver
*/
if (uart_console(port)) {
uart_change_speed(state, NULL);
- port->cons->flags |= CON_ENABLED;
+ console_resume(port->cons);
}
if (state->info && state->info->flags & UIF_INITIALIZED) {
diff -up -x BitKeeper -x ChangeSet -x SCCS -x _xlk -x *.orig -x *.rej orig/kernel/printk.c linux/kernel/printk.c
--- orig/kernel/printk.c Mon Jun 14 11:01:49 2004
+++ linux/kernel/printk.c Mon Jun 14 11:01:37 2004
@@ -700,6 +700,22 @@ struct tty_driver *console_device(int *i
return driver;
}
+void console_suspend(struct console *console)
+{
+ acquire_console_sem();
+ console->flags &= ~CON_ENABLED;
+ release_console_sem();
+}
+EXPORT_SYMBOL(console_suspend);
+
+void console_resume(struct console *console)
+{
+ acquire_console_sem();
+ console->flags |= CON_ENABLED;
+ release_console_sem();
+}
+EXPORT_SYMBOL(console_resume);
+
/*
* The console driver calls this routine during kernel initialization
* to register the console printing procedure with printk() and to
diff -up -x BitKeeper -x ChangeSet -x SCCS -x _xlk -x *.orig -x *.rej orig/include/linux/console.h linux/include/linux/console.h
--- orig/include/linux/console.h Mon Jun 14 11:01:49 2004
+++ linux/include/linux/console.h Mon Jun 14 11:00:21 2004
@@ -105,6 +105,8 @@ extern void release_console_sem(void);
extern void console_conditional_schedule(void);
extern void console_unblank(void);
extern struct tty_driver *console_device(int *);
+extern void console_suspend(struct console *);
+extern void console_resume(struct console *);
extern int is_console_locked(void);
/* Some debug stub to catch some of the obvious races in the VT code */
--
Russell King
Linux kernel 2.6 ARM Linux - http://www.arm.linux.org.uk/
maintainer of: 2.6 PCMCIA - http://pcmcia.arm.linux.org.uk/
2.6 Serial core
next prev parent reply other threads:[~2004-06-14 14:15 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2004-06-14 14:12 [PATCH 1/3] Provide console_device() Russell King
2004-06-14 14:13 ` Russell King [this message]
2004-06-14 14:13 ` [RFC][PATCH 3/3] Convert console list to list_head Russell King
2004-06-30 12:37 ` [PATCH 2/3] Provide console_suspend() and console_resume() Pavel Machek
2004-06-30 17:32 ` Andrew Morton
2004-06-30 19:30 ` Russell King
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20040614151307.I14403@flint.arm.linux.org.uk \
--to=rmk+lkml@arm.linux.org.uk \
--cc=linux-kernel@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.