aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/kernel/debug
diff options
context:
space:
mode:
authorDouglas Anderson <dianders@chromium.org>2019-11-09 11:16:42 -0800
committerDaniel Thompson <daniel.thompson@linaro.org>2020-01-31 17:33:57 +0000
commita8649fb0a8c1de9c842c9c492f189cabbc468272 (patch)
treeb6a6c9b092a6ef361d425be221ac32f6f1345320 /kernel/debug
parentkdb: kdb_current_regs should be private (diff)
downloadwireguard-linux-a8649fb0a8c1de9c842c9c492f189cabbc468272.tar.xz
wireguard-linux-a8649fb0a8c1de9c842c9c492f189cabbc468272.zip
kdb: kdb_current_task shouldn't be exported
The kdb_current_task variable has been declared in "kernel/debug/kdb/kdb_private.h" since 2010 when kdb was added to the mainline kernel. This is not a public header. There should be no reason that kdb_current_task should be exported and there are no in-kernel users that need it. Remove the export. Signed-off-by: Douglas Anderson <dianders@chromium.org> Link: https://lore.kernel.org/r/20191109111623.3.I14b22b5eb15ca8f3812ab33e96621231304dc1f7@changeid Signed-off-by: Daniel Thompson <daniel.thompson@linaro.org>
Diffstat (limited to 'kernel/debug')
-rw-r--r--kernel/debug/kdb/kdb_main.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/kernel/debug/kdb/kdb_main.c b/kernel/debug/kdb/kdb_main.c
index 4567fe998c30..4d44b3746836 100644
--- a/kernel/debug/kdb/kdb_main.c
+++ b/kernel/debug/kdb/kdb_main.c
@@ -73,7 +73,6 @@ int kdb_nextline = 1;
int kdb_state; /* General KDB state */
struct task_struct *kdb_current_task;
-EXPORT_SYMBOL(kdb_current_task);
struct pt_regs *kdb_current_regs;
const char *kdb_diemsg;