public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: "tina.yang" <tina.yang@oracle.com>
To: linux-kernel@vger.kernel.org
Cc: Jiri Kosina <trivial@kernel.org>
Subject: [PATCH] sysrq: add debug message to reboot event
Date: Mon, 17 Aug 2009 12:16:39 -0700	[thread overview]
Message-ID: <4A89AC97.6030109@oracle.com> (raw)

Add debug message to detect keyboard vs non-keyboard
triggered sysrq-b events.

Signed-off-by: Tina Yang <Tina.Yang@oracle.com>
Signed-off-by: Zach Brown <Zach.Brown@oracle.com>

---

--- linux-2.6.git/drivers/char/sysrq.c.orig     2009-08-13
15:43:34.000000000 -0700
+++ linux-2.6.git/drivers/char/sysrq.c  2009-08-13 21:51:15.832694000 -0700
@@ -135,17 +135,22 @@ static struct sysrq_key_op sysrq_crash_o
        .enable_mask    = SYSRQ_ENABLE_DUMP,
 };

-static void sysrq_handle_reboot(int key, struct tty_struct *tty)
+static void sysrq_handle_reboot(int check_mask, int key, struct
tty_struct *tty)
 {
+       if (check_mask)
+               printk("<keyboard-invoked>\n");
+        else
+               printk("<non-keyboard-invoked: PID %d COMMAND %s>\n",
+                               current->pid, current->comm);
        lockdep_off();
        local_irq_enable();
        emergency_restart();
 }
 static struct sysrq_key_op sysrq_reboot_op = {
-       .handler        = sysrq_handle_reboot,
-       .help_msg       = "reBoot",
-       .action_msg     = "Resetting",
-       .enable_mask    = SYSRQ_ENABLE_BOOT,
+       .handler_with_mask      = sysrq_handle_reboot,
+       .help_msg               = "reBoot",
+       .action_msg             = "Resetting",
+       .enable_mask            = SYSRQ_ENABLE_BOOT,
 };

 static void sysrq_handle_sync(int key, struct tty_struct *tty)
@@ -509,7 +514,10 @@ void __handle_sysrq(int key, struct tty_
                if (!check_mask || sysrq_on_mask(op_p->enable_mask)) {
                        printk("%s\n", op_p->action_msg);
                        console_loglevel = orig_log_level;
-                       op_p->handler(key, tty);
+                       if (op_p->handler_with_mask)
+                               op_p->handler_with_mask(check_mask, key,
tty);
+                       else
+                               op_p->handler(key, tty);
                } else {
                        printk("This sysrq operation is disabled.\n");
                }
--- linux-2.6.git/include/linux/sysrq.h.orig    2009-08-13
20:53:48.085786000 -0700
+++ linux-2.6.git/include/linux/sysrq.h 2009-08-13 20:54:12.625756000 -0700
@@ -32,6 +32,7 @@ struct tty_struct;

 struct sysrq_key_op {
        void (*handler)(int, struct tty_struct *);
+       void (*handler_with_mask)(int, int, struct tty_struct *);
        char *help_msg;
        char *action_msg;
        int enable_mask;


             reply	other threads:[~2009-08-17 19:18 UTC|newest]

Thread overview: 6+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-08-17 19:16 tina.yang [this message]
2009-08-18 11:40 ` [PATCH] sysrq: add debug message to reboot event Jiri Kosina
2009-08-19 20:58   ` Andrew Morton
2009-08-20  2:22     ` tina.yang
2009-08-20 22:10       ` Andrew Morton
2009-08-21  5:14         ` tina.yang

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=4A89AC97.6030109@oracle.com \
    --to=tina.yang@oracle.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=trivial@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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox