]> git.karo-electronics.de Git - karo-tx-linux.git/commit
kdb: Prevent kernel oops with kdb_defcmd
authorJason Wessel <jason.wessel@windriver.com>
Mon, 4 Feb 2013 16:35:33 +0000 (10:35 -0600)
committerJason Wessel <jason.wessel@windriver.com>
Sat, 2 Mar 2013 14:39:09 +0000 (08:39 -0600)
commit351eb418bcc354c5e9bf920047c6634b2f6e5d3c
tree9e9daec47b85faeefec79037ca7df226b126642d
parent67d007d1b855f40c6f0b1e06ba1f6d11cfa289c2
kdb: Prevent kernel oops with kdb_defcmd

The kdb_defcmd can only be used to display the available command aliases
while using the kernel debug shell.  If you try to define a new macro
while the kernel debugger is active it will oops.  The debug shell
macros must use pre-allocated memory set aside at the time kdb_init()
is run, and the kdb_defcmd is restricted to only working at the time
that the kdb_init sequence is being run, which only occurs if you
actually activate the kernel debugger.

Signed-off-by: Jason Wessel <jason.wessel@windriver.com>
kernel/debug/kdb/kdb_main.c