Skip to content
  1. May 01, 2021
  2. Apr 30, 2021
    • Linus Torvalds's avatar
      Merge tag 'kconfig-v5.13' of git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild · 8ca5297e
      Linus Torvalds authored
      Pull Kconfig updates from Masahiro Yamada:
      
       - Change 'option defconfig' to the environment variable
         KCONFIG_DEFCONFIG_LIST
      
       - Refactor tinyconfig without using allnoconfig_y
      
       - Remove 'option allnoconfig_y' syntax
      
       - Change 'option modules' to 'modules'
      
       - Do not use /boot/config-* etc. as base config for cross-compilation
      
       - Fix a search bug in nconf
      
       - Various code cleanups
      
      * tag 'kconfig-v5.13' of git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild: (34 commits)
        kconfig: refactor .gitignore
        kconfig: highlight xconfig 'comment' lines with '***'
        kconfig: highlight gconfig 'comment' lines with '***'
        kconfig: gconf: remove unused code
        kconfig: remove unused PACKAGE definition
        kconfig: nconf: stop endless search loops
        kconfig: split menu.c out of parser.y
        kconfig: nconf: refactor in print_in_middle()
        kconfig: nconf: remove meaningless wattrset() call from show_menu()
        kconfig: nconf: change set_config_filename() to void function
        kconfig: nconf: refactor attributes setup code
        kconfig: nconf: remove unneeded default for menu prompt
        kconfig: nconf: get rid of (void) casts from wattrset() calls
        kconfig: nconf: fix NORMAL attributes
        kconfig: mconf,nconf: remove unneeded '\0' termination after snprintf()
        kconfig: use /boot/config-* etc. as DEFCONFIG_LIST only for native build
        kconfig: change sym_change_count to a boolean flag
        kconfig: nconf: fix core dump when searching in empty menu
        kconfig: lxdialog: A spello fix and a punctuation added
        kconfig: streamline_config.pl: Couple of typo fixes
        ...
      8ca5297e
    • Linus Torvalds's avatar
      Merge tag 'kbuild-v5.13' of git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild · b0030af5
      Linus Torvalds authored
      Pull Kbuild updates from Masahiro Yamada:
      
       - Evaluate $(call cc-option,...) etc. only for build targets
      
       - Add CONFIG_VMLINUX_MAP to generate .map file when linking vmlinux
      
       - Remove unnecessary --gcc-toolchains Clang flag because the --prefix
         flag finds the toolchains
      
       - Do not pass Clang's --prefix flag when using the integrated as
      
       - Check the assembler version in Kconfig time
      
       - Add new CONFIG options, AS_VERSION, AS_IS_GNU, AS_IS_LLVM to clean up
         some dependencies in Kconfig
      
       - Fix invalid Module.symvers creation when building only modules
         without vmlinux
      
       - Fix false-positive modpost warnings when CONFIG_TRIM_UNUSED_KSYMS is
         set, but there is no module to build
      
       - Refactor module installation Makefile
      
       - Support zstd for module compression
      
       - Convert alpha and ia64 to use generic shell scripts to generate the
         syscall headers
      
       - Add a new elfnote to indicate if the kernel was built with LTO, which
         will be used by pahole
      
       - Flatten the directory structure under include/config/ so CONFIG
         options and filenames match
      
       - Change the deb source package name from linux-$(KERNELRELEASE) to
         linux-upstream
      
      * tag 'kbuild-v5.13' of git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild: (42 commits)
        kbuild: Add $(KBUILD_HOSTLDFLAGS) to 'has_libelf' test
        kbuild: deb-pkg: change the source package name to linux-upstream
        tools: do not include scripts/Kbuild.include
        kbuild: redo fake deps at include/config/*.h
        kbuild: remove TMPO from try-run
        MAINTAINERS: add pattern for dummy-tools
        kbuild: add an elfnote for whether vmlinux is built with lto
        ia64: syscalls: switch to generic syscallhdr.sh
        ia64: syscalls: switch to generic syscalltbl.sh
        alpha: syscalls: switch to generic syscallhdr.sh
        alpha: syscalls: switch to generic syscalltbl.sh
        sysctl: use min() helper for namecmp()
        kbuild: add support for zstd compressed modules
        kbuild: remove CONFIG_MODULE_COMPRESS
        kbuild: merge scripts/Makefile.modsign to scripts/Makefile.modinst
        kbuild: move module strip/compression code into scripts/Makefile.modinst
        kbuild: refactor scripts/Makefile.modinst
        kbuild: rename extmod-prefix to extmod_prefix
        kbuild: check module name conflict for external modules as well
        kbuild: show the target directory for depmod log
        ...
      b0030af5
    • Linus Torvalds's avatar
      Merge tag 'net-next-5.13' of git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net-next · 9d31d233
      Linus Torvalds authored
      Pull networking updates from Jakub Kicinski:
       "Core:
      
         - bpf:
              - allow bpf programs calling kernel functions (initially to
                reuse TCP congestion control implementations)
              - enable task local storage for tracing programs - remove the
                need to store per-task state in hash maps, and allow tracing
                programs access to task local storage previously added for
                BPF_LSM
              - add bpf_for_each_map_elem() helper, allowing programs to walk
                all map elements in a more robust and easier to verify fashion
              - sockmap: support UDP and cross-protocol BPF_SK_SKB_VERDICT
                redirection
              - lpm: add support for batched ops in LPM trie
              - add BTF_KIND_FLOAT support - mostly to allow use of BTF on
                s390 which has floats in its headers files
              - improve BPF syscall documentation and extend the use of kdoc
                parsing scripts we ...
      9d31d233
    • Linus Torvalds's avatar
      Merge tag 'x86-mm-2021-04-29' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip · 635de956
      Linus Torvalds authored
      Pull x86 tlb updates from Ingo Molnar:
       "The x86 MM changes in this cycle were:
      
         - Implement concurrent TLB flushes, which overlaps the local TLB
           flush with the remote TLB flush.
      
           In testing this improved sysbench performance measurably by a
           couple of percentage points, especially if TLB-heavy security
           mitigations are active.
      
         - Further micro-optimizations to improve the performance of TLB
           flushes"
      
      * tag 'x86-mm-2021-04-29' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
        smp: Micro-optimize smp_call_function_many_cond()
        smp: Inline on_each_cpu_cond() and on_each_cpu()
        x86/mm/tlb: Remove unnecessary uses of the inline keyword
        cpumask: Mark functions as pure
        x86/mm/tlb: Do not make is_lazy dirty for no reason
        x86/mm/tlb: Privatize cpu_tlbstate
        x86/mm/tlb: Flush remote and local TLBs concurrently
        x86/mm/tlb: Open-code on_each_cpu_cond_mask() for tlb_is_not_lazy()
        x86/mm/tlb: Unify flush_tlb_func_local() and flush_tlb_func_remote()
        smp: Run functions concurrently in smp_call_function_many_cond()
      635de956
    • Linus Torvalds's avatar
      Merge tag 'microblaze-v5.13' of git://git.monstr.eu/linux-2.6-microblaze · d0cc7eca
      Linus Torvalds authored
      Pull Microblaze updates from Michal Simek:
       "No new features, just about cleaning up some code and moving to
        generic syscall solution used by other architectures:
      
         - Switch to generic syscall scripts
      
         - Some small fixes"
      
      * tag 'microblaze-v5.13' of git://git.monstr.eu/linux-2.6-microblaze:
        microblaze: add 'fallthrough' to memcpy/memset/memmove
        microblaze: Fix a typo
        microblaze: tag highmem_setup() with __meminit
        microblaze: syscalls: switch to generic syscallhdr.sh
        microblaze: syscalls: switch to generic syscalltbl.sh
      d0cc7eca