diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2020-02-03 16:59:51 +0000 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2020-02-03 16:59:51 +0000 |
commit | e17ac02b18c61f0d5f85c6ec9e49f3ff00b2b3cd (patch) | |
tree | ae5189ec0d6b6496e3a7b7dfb997c0d64407ecdf /include | |
parent | 754beeec1d9024eef0db8dc4be2636331dd413c6 (diff) | |
parent | dc2c733e65848b1df8d55c83eea79fc4a868c800 (diff) | |
download | linux-stable-e17ac02b18c61f0d5f85c6ec9e49f3ff00b2b3cd.tar.gz linux-stable-e17ac02b18c61f0d5f85c6ec9e49f3ff00b2b3cd.tar.bz2 linux-stable-e17ac02b18c61f0d5f85c6ec9e49f3ff00b2b3cd.zip |
Merge tag 'kgdb-5.6-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/danielt/linux
Pull kgdb updates from Daniel Thompson:
"Everything for kgdb this time around is either simplifications or
clean ups.
In particular Douglas Anderson's modifications to the backtrace
machine in the *last* dev cycle have enabled Doug to tidy up some MIPS
specific backtrace code and stop sharing certain data structures
across the kernel. Note that The MIPS folks were on Cc: for the MIPS
patch and reacted positively (but without an explicit Acked-by).
Doug also got rid of the implicit switching between tasks and register
sets during some but not of kdb's backtrace actions (because the
implicit switching was either confusing for users, pointless or both).
Finally there is a coverity fix and patch to replace open coded
console traversal with the proper helper function"
* tag 'kgdb-5.6-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/danielt/linux:
kdb: Use for_each_console() helper
kdb: remove redundant assignment to pointer bp
kdb: Get rid of confusing diag msg from "rd" if current task has no regs
kdb: Gid rid of implicit setting of the current task / regs
kdb: kdb_current_task shouldn't be exported
kdb: kdb_current_regs should be private
MIPS: kdb: Remove old workaround for backtracing on other CPUs
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/kdb.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/include/linux/kdb.h b/include/linux/kdb.h index 68bd88223417..24cd447659e0 100644 --- a/include/linux/kdb.h +++ b/include/linux/kdb.h @@ -183,8 +183,6 @@ int kdb_process_cpu(const struct task_struct *p) return cpu; } -/* kdb access to register set for stack dumping */ -extern struct pt_regs *kdb_current_regs; #ifdef CONFIG_KALLSYMS extern const char *kdb_walk_kallsyms(loff_t *pos); #else /* ! CONFIG_KALLSYMS */ |