[GIT PULL] objtool changes for v5.6

From: Ingo Molnar
Date: Tue Jan 28 2020 - 02:08:51 EST


Linus,

Please pull the latest core-objtool-for-linus git tree from:

git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip.git core-objtool-for-linus

# HEAD: 22a7fa8848c5e881d87ef2f7f3c2ea77b286e6f9 x86/unwind/orc: Fix !CONFIG_MODULES build warning

The main changes are to move the ORC unwind table sorting from early init
to build-time - this speeds up booting. No change in functionality
intended.

Thanks,

Ingo

------------------>
Shile Zhang (8):
scripts/sortextable: Rewrite error/success handling
scripts/sortextable: Clean up the code to meet the kernel coding style better
scripts/sortextable: Remove dead code
scripts/sortextable: Refactor the do_func() function
scripts/sorttable: Rename 'sortextable' to 'sorttable'
scripts/sorttable: Implement build-time ORC unwind table sorting
x86/unwind/orc: Remove boot-time ORC unwind tables sorting
x86/unwind/orc: Fix !CONFIG_MODULES build warning


arch/arc/Kconfig | 2 +-
arch/arm/Kconfig | 2 +-
arch/arm64/Kconfig | 2 +-
arch/microblaze/Kconfig | 2 +-
arch/mips/Kconfig | 2 +-
arch/parisc/Kconfig | 2 +-
arch/powerpc/Kconfig | 2 +-
arch/s390/Kconfig | 2 +-
arch/x86/Kconfig | 2 +-
arch/x86/kernel/unwind_orc.c | 11 +-
arch/xtensa/Kconfig | 2 +-
init/Kconfig | 2 +-
scripts/.gitignore | 2 +-
scripts/Makefile | 13 +-
scripts/link-vmlinux.sh | 13 +-
scripts/sortextable.h | 209 ------------------
scripts/{sortextable.c => sorttable.c} | 305 ++++++++++++--------------
scripts/sorttable.h | 380 +++++++++++++++++++++++++++++++++
18 files changed, 559 insertions(+), 396 deletions(-)
delete mode 100644 scripts/sortextable.h
rename scripts/{sortextable.c => sorttable.c} (67%)
create mode 100644 scripts/sorttable.h