This is an automated email from the git hooks/post-receive script.
unknown user pushed a change to branch master in repository linux.
from 719fdd32921f afs: Fix storage of cell names new e82587336695 x86, kcsan: Remove __no_kcsan_or_inline usage new e79302ae8c8c kcsan: Remove __no_kcsan_or_inline new 5ddbc4082e10 x86, kcsan: Add __no_kcsan to noinstr new 7b861a53e46b kasan: Bump required compiler version new 5144f8a8dfd7 compiler_types.h: Add __no_sanitize_{address,undefined} to [...] new 14d3b376b6c3 x86/entry, cpumask: Provide non-instrumented variant of cp [...] new 6b643a07a7e4 x86/entry, ubsan, objtool: Whitelist __ubsan_handle_*() new 8e8bb06d199a x86/entry, bug: Comment the instrumentation_begin() usage [...] new 33aea07f30c2 compiler_attributes.h: Support no_sanitize_undefined check [...] new acf7b0bf7dcf kasan: Fix required compiler version new 734d099ba644 objtool: Don't consider vmlinux a C-file new e3a9e681adb7 x86/entry: Fixup bad_iret vs noinstr new c7aadc09321d x86/entry: Increase entry_stack size to a full page new 145a773aef83 x86/entry: Fix #UD vs WARN more new 2c92d787cc9f Merge branch 'linus' into x86/entry, to resolve conflicts new a358505d8af3 Merge tag 'x86_entry_for_5.8' of git://git.kernel.org/pub/ [...] new 2b10be23ac0f objtool: Clean up elf_write() condition new fdabdd0b05e0 objtool: Provide elf_write_{insn,reloc}() new 0f1441b44e82 objtool: Fix noinstr vs KCOV new 7ecb59a56666 Merge tag 'objtool_urgent_for_5.8_rc3' of git://git.kernel [...] new 5faafd568576 locking/atomics: Provide the arch_atomic_ interface to gen [...] new b58e733fd774 rcu: Fixup noinstr warnings new c141b30e9960 Merge tag 'rcu_urgent_for_5.8_rc3' of git://git.kernel.org [...] new 2c18bd525c47 x86/resctrl: Fix memory bandwidth counter width for AMD new 8e742aa79780 syscalls: Fix offset type of ksys_ftruncate() new 5d5103595e9e x86/cpu: Reinitialize IA32_FEAT_CTL MSR on BSP during wakeup new cc5277fe66cf x86/resctrl: Fix a NULL vs IS_ERR() static checker warning [...] new a13b9d0b9721 x86/cpu: Use pinning mask for CR4 bits needing to be 0 new bb5570ad3b54 x86/asm/64: Align start of __clear_user() loop to 16-bytes new 098c7938217d Merge tag 'x86_urgent_for_5.8_rc3' of git://git.kernel.org [...] new 4f311afc2035 sched/core: Fix CONFIG_GCC_PLUGIN_RANDSTRUCT build fail new fd844ba9ae59 sched/core: Check cpus_mask, not cpus_ptr in __set_cpus_al [...] new ce9bc3b27f2a sched/deadline: Initialize ->dl_boosted new 740797ce3a12 sched/core: Fix PI boosting between RT and DEADLINE tasks new b6e13e85829f sched/core: Fix ttwu() race new 739f70b476cf sched/core: s/WF_ON_RQ/WQ_ON_CPU/ new 8c4890d1c335 smp, irq_work: Continue smp_call_function*() and irq_work* [...] new e21cf43406a1 sched/cfs: change initial value of runnable_avg new 91a9a90d040e Merge tag 'sched_urgent_for_5.8_rc3' of git://git.kernel.o [...]
The 39 revisions listed above as "new" are entirely new to this repository and will be described in separate emails. The revisions listed as "adds" were already present in the repository and have only been added to this reference.
Summary of changes: Documentation/dev-tools/kcsan.rst | 6 - arch/x86/Kconfig | 2 +- arch/x86/include/asm/bitops.h | 6 +- arch/x86/include/asm/bug.h | 6 + arch/x86/include/asm/cpu.h | 5 + arch/x86/include/asm/cpumask.h | 18 +++ arch/x86/include/asm/processor.h | 2 +- arch/x86/kernel/cpu/centaur.c | 1 + arch/x86/kernel/cpu/common.c | 24 +-- arch/x86/kernel/cpu/cpu.h | 4 - arch/x86/kernel/cpu/mce/core.c | 2 +- arch/x86/kernel/cpu/resctrl/core.c | 8 +- arch/x86/kernel/cpu/resctrl/internal.h | 1 + arch/x86/kernel/cpu/resctrl/rdtgroup.c | 1 + arch/x86/kernel/cpu/zhaoxin.c | 1 + arch/x86/kernel/nmi.c | 2 +- arch/x86/kernel/traps.c | 78 +++++----- arch/x86/lib/memcpy_64.S | 4 + arch/x86/lib/usercopy_64.c | 1 + arch/x86/power/cpu.c | 6 + include/linux/atomic-fallback.h | 236 +++++++++++++++++++++++++++++- include/linux/compiler-clang.h | 8 + include/linux/compiler-gcc.h | 6 + include/linux/compiler.h | 2 +- include/linux/compiler_attributes.h | 1 + include/linux/compiler_types.h | 14 +- include/linux/irq_work.h | 26 +--- include/linux/sched.h | 3 +- include/linux/smp.h | 23 +-- include/linux/smp_types.h | 66 +++++++++ include/linux/syscalls.h | 2 +- kernel/rcu/tree.c | 32 +++- kernel/sched/core.c | 44 ++++-- kernel/sched/deadline.c | 1 + kernel/sched/fair.c | 2 +- kernel/sched/sched.h | 2 +- kernel/smp.c | 18 --- lib/Kconfig.kasan | 4 + scripts/atomic/gen-atomic-fallback.sh | 31 ++++ tools/objtool/arch.h | 2 + tools/objtool/arch/x86/decode.c | 18 +++ tools/objtool/arch/x86/include/arch_elf.h | 6 + tools/objtool/check.c | 53 ++++++- tools/objtool/elf.c | 53 ++++++- tools/objtool/elf.h | 12 +- tools/objtool/orc_gen.c | 2 +- 46 files changed, 680 insertions(+), 165 deletions(-) create mode 100644 include/linux/smp_types.h create mode 100644 tools/objtool/arch/x86/include/arch_elf.h