public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH 1/1] TTY Fix NULL pointer error in tty_wakeup
@ 2013-03-30  7:58 Frankie Lin
  2013-03-30 15:18 ` Greg Kroah-Hartman
  0 siblings, 1 reply; 3+ messages in thread
From: Frankie Lin @ 2013-03-30  7:58 UTC (permalink / raw)
  To: Greg Kroah-Hartman, Jiri Slaby; +Cc: open, Frankie Lin

When calling tty_wakeup and the parameter is NULL,the oops will happen.
The virtual address &tty->flags can not be handled in the kernel space,
while PC goto test_bit(TTY_DO_WRITE_WAKEUP, &tty->flags).

Tested on ARM Machine msm8625.

Signed-off-by: Frankie Lin <frankiefrankie.lin@gmail.com>
---
 drivers/tty/tty_io.c |    5 +++++
 1 file changed, 5 insertions(+)

diff --git a/drivers/tty/tty_io.c b/drivers/tty/tty_io.c
index 05400ac..9c4fb2e 100644
--- a/drivers/tty/tty_io.c
+++ b/drivers/tty/tty_io.c
@@ -519,6 +519,11 @@ void tty_wakeup(struct tty_struct *tty)
 {
 	struct tty_ldisc *ld;
 
+	if (!tty) {
+		pr_err("tty is null in function: %s.\n", __func__);
+		return;
+	}
+
 	if (test_bit(TTY_DO_WRITE_WAKEUP, &tty->flags)) {
 		ld = tty_ldisc_ref(tty);
 		if (ld) {
-- 
1.7.9.5


^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2013-03-31 15:02 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-03-30  7:58 [PATCH 1/1] TTY Fix NULL pointer error in tty_wakeup Frankie Lin
2013-03-30 15:18 ` Greg Kroah-Hartman
     [not found]   ` <CAD-pLEFtw0=j+jL2+ecqKShdz_GOSmfAzn3T0+3mr=5Ofnks7w@mail.gmail.com>
2013-03-31 15:02     ` Greg Kroah-Hartman

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox