]> git.samba.org - sfrench/cifs-2.6.git/commitdiff
Merge tag 'v5.7-rc1' into locking/kcsan, to resolve conflicts and refresh
authorIngo Molnar <mingo@kernel.org>
Mon, 13 Apr 2020 07:44:39 +0000 (09:44 +0200)
committerIngo Molnar <mingo@kernel.org>
Mon, 13 Apr 2020 07:44:39 +0000 (09:44 +0200)
Resolve these conflicts:

arch/x86/Kconfig
arch/x86/kernel/Makefile

Do a minor "evil merge" to move the KCSAN entry up a bit by a few lines
in the Kconfig to reduce the probability of future conflicts.

Signed-off-by: Ingo Molnar <mingo@kernel.org>
18 files changed:
1  2 
MAINTAINERS
Makefile
arch/x86/Kconfig
arch/x86/boot/Makefile
arch/x86/boot/compressed/Makefile
arch/x86/include/asm/bitops.h
arch/x86/kernel/Makefile
arch/x86/realmode/rm/Makefile
drivers/firmware/efi/libstub/Makefile
include/linux/compiler.h
include/linux/sched.h
init/init_task.c
init/main.c
lib/Kconfig.debug
lib/Makefile
mm/Makefile
scripts/Makefile.lib
tools/objtool/check.c

diff --cc MAINTAINERS
index b99c8151f664aae55824cc6e358db067ae683874,e64e5db314976dc9f73107c9bd616aeaa3dd9c70..e9e94eacd6f34975ddbcc83204ab38c115d68978
@@@ -9050,24 -9174,13 +9174,24 @@@ F:   scripts/Makefile.kasa
  
  KCONFIG
  M:    Masahiro Yamada <masahiroy@kernel.org>
- T:    git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git kconfig
  L:    linux-kbuild@vger.kernel.org
  S:    Maintained
+ T:    git git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild.git kconfig
  F:    Documentation/kbuild/kconfig*
- F:    scripts/kconfig/
  F:    scripts/Kconfig.include
+ F:    scripts/kconfig/
  
 +KCSAN
 +M:    Marco Elver <elver@google.com>
 +R:    Dmitry Vyukov <dvyukov@google.com>
 +L:    kasan-dev@googlegroups.com
 +S:    Maintained
 +F:    Documentation/dev-tools/kcsan.rst
 +F:    include/linux/kcsan*.h
 +F:    kernel/kcsan/
 +F:    lib/Kconfig.kcsan
 +F:    scripts/Makefile.kcsan
 +
  KDUMP
  M:    Dave Young <dyoung@redhat.com>
  M:    Baoquan He <bhe@redhat.com>
diff --cc Makefile
Simple merge
index 7db34381976a8062073fbbe1a378d42ca9cbb719,1d6104ea8af0309d437766a72657989f88b2d4d9..54276dd8ba448fde23f55e6b8c5b91664616fe0f
@@@ -228,9 -229,9 +229,10 @@@ config X8
        select THREAD_INFO_IN_TASK
        select USER_STACKTRACE_SUPPORT
        select VIRT_TO_BUS
++      select HAVE_ARCH_KCSAN                  if X86_64
        select X86_FEATURE_NAMES                if PROC_FS
        select PROC_PID_ARCH_STATUS             if PROC_FS
-       select HAVE_ARCH_KCSAN                  if X86_64
+       imply IMA_SECURE_AND_OR_TRUSTED_BOOT    if EFI
  
  config INSTRUCTION_DECODER
        def_bool y
Simple merge
Simple merge
Simple merge
index 70615591a265fcedad2261f39a51d1f6f31c2b39,ba89cabe5fcf1136cb42d9cb6fa24c75e401bd0c..d6d61c4455faca4e4783f9782651e38bf3f68786
@@@ -28,11 -28,6 +28,10 @@@ KASAN_SANITIZE_dumpstack_$(BITS).o                  :
  KASAN_SANITIZE_stacktrace.o                           := n
  KASAN_SANITIZE_paravirt.o                             := n
  
- OBJECT_FILES_NON_STANDARD_relocate_kernel_$(BITS).o   := y
 +# With some compiler versions the generated code results in boot hangs, caused
 +# by several compilation units. To be safe, disable all instrumentation.
 +KCSAN_SANITIZE := n
 +
  OBJECT_FILES_NON_STANDARD_test_nx.o                   := y
  OBJECT_FILES_NON_STANDARD_paravirt_patch.o            := y
  
Simple merge
Simple merge
Simple merge
Simple merge
Simple merge
diff --cc init/main.c
Simple merge
Simple merge
diff --cc lib/Makefile
Simple merge
diff --cc mm/Makefile
index c9696f3ec84085f952d86cc4ff7b8e873e5eef1c,fccd3756b25f0685ed6684c43f9f47b5d94024b8..7881b8ede627cca9a0d0bb8e24b604a261046437
@@@ -6,15 -6,8 +6,16 @@@
  KASAN_SANITIZE_slab_common.o := n
  KASAN_SANITIZE_slab.o := n
  KASAN_SANITIZE_slub.o := n
+ KCSAN_SANITIZE_kmemleak.o := n
  
 +# These produce frequent data race reports: most of them are due to races on
 +# the same word but accesses to different bits of that word. Re-enable KCSAN
 +# for these when we have more consensus on what to do about them.
 +KCSAN_SANITIZE_slab_common.o := n
 +KCSAN_SANITIZE_slab.o := n
 +KCSAN_SANITIZE_slub.o := n
 +KCSAN_SANITIZE_page_alloc.o := n
 +
  # These files are disabled because they produce non-interesting and/or
  # flaky coverage that is not a function of syscall inputs. E.g. slab is out of
  # free pages, or a task is migrated between nodes.
Simple merge
Simple merge