Skip to content
  1. May 01, 2020
    • Shuah Khan's avatar
      selftests: fix kvm relocatable native/cross builds and installs · 66d69e08
      Shuah Khan authored
      
      
      kvm test Makefile doesn't fully support cross-builds and installs.
      UNAME_M = $(shell uname -m) variable is used to define the target
      programs and libraries to be built from arch specific sources in
      sub-directories.
      
      For cross-builds to work, UNAME_M has to map to ARCH and arch specific
      directories and targets in this Makefile.
      
      UNAME_M variable to used to run the compiles pointing to the right arch
      directories and build the right targets for these supported architectures.
      
      TEST_GEN_PROGS and LIBKVM are set using UNAME_M variable.
      LINUX_TOOL_ARCH_INCLUDE is set using ARCH variable.
      
      x86_64 targets are named to include x86_64 as a suffix and directories
      for includes are in x86_64 sub-directory. s390x and aarch64 follow the
      same convention. "uname -m" doesn't result in the correct mapping for
      s390x and aarch64. Fix it to set UNAME_M correctly for s390x and aarch64
      cross-builds.
      
      In addition, Makefile doesn't create arch sub-directories in the case of
      relocatable builds and test programs under s390x and x86_64 directories
      fail to build. This is a problem for native and cross-builds. Fix it to
      create all necessary directories keying off of TEST_GEN_PROGS.
      
      The following use-cases work with this change:
      
      Native x86_64:
      make O=/tmp/kselftest -C tools/testing/selftests TARGETS=kvm install \
       INSTALL_PATH=$HOME/x86_64
      
      arm64 cross-build:
      make O=$HOME/arm64_build/ ARCH=arm64 HOSTCC=gcc \
      	CROSS_COMPILE=aarch64-linux-gnu- defconfig
      
      make O=$HOME/arm64_build/ ARCH=arm64 HOSTCC=gcc \
      	CROSS_COMPILE=aarch64-linux-gnu- all
      
      make kselftest-install TARGETS=kvm O=$HOME/arm64_build ARCH=arm64 \
      	HOSTCC=gcc CROSS_COMPILE=aarch64-linux-gnu-
      
      s390x cross-build:
      make O=$HOME/s390x_build/ ARCH=s390 HOSTCC=gcc \
      	CROSS_COMPILE=s390x-linux-gnu- defconfig
      
      make O=$HOME/s390x_build/ ARCH=s390 HOSTCC=gcc \
      	CROSS_COMPILE=s390x-linux-gnu- all
      
      make kselftest-install TARGETS=kvm O=$HOME/s390x_build/ ARCH=s390 \
      	HOSTCC=gcc CROSS_COMPILE=s390x-linux-gnu- all
      
      No regressions in the following use-cases:
      make -C tools/testing/selftests TARGETS=kvm
      make kselftest-all TARGETS=kvm
      
      Signed-off-by: default avatarShuah Khan <skhan@linuxfoundation.org>
      66d69e08
    • Masami Hiramatsu's avatar
      selftests/ftrace: Make XFAIL green color · 6734d211
      Masami Hiramatsu authored
      
      
      Since XFAIL (Expected Failure) is expected to fail the test, which
      means that test case works as we expected. IOW, XFAIL is same as
      PASS. So make it green.
      
      Signed-off-by: default avatarMasami Hiramatsu <mhiramat@kernel.org>
      Acked-by: default avatarSteven Rostedt (VMware) <rostedt@goodmis.org>
      Signed-off-by: default avatarShuah Khan <skhan@linuxfoundation.org>
      6734d211
    • Alan Maguire's avatar
      ftrace/selftest: make unresolved cases cause failure if --fail-unresolved set · b730d668
      Alan Maguire authored
      
      
      Currently, ftracetest will return 1 (failure) if any unresolved cases
      are encountered.  The unresolved status results from modules and
      programs not being available, and as such does not indicate any
      issues with ftrace itself.  As such, change the behaviour of
      ftracetest in line with unsupported cases; if unsupported cases
      happen, ftracetest still returns 0 unless --fail-unsupported.  Here
      --fail-unresolved is added and the default is to return 0 if
      unresolved results occur.
      
      Signed-off-by: default avatarAlan Maguire <alan.maguire@oracle.com>
      Acked-by: default avatarMasami Hiramatsu <mhiramat@kernel.org>
      Acked-by: default avatarSteven Rostedt (VMware) <rostedt@goodmis.org>
      Signed-off-by: default avatarShuah Khan <skhan@linuxfoundation.org>
      b730d668
    • Alan Maguire's avatar
      ftrace/selftests: workaround cgroup RT scheduling issues · 57c4cfd4
      Alan Maguire authored
      wakeup_rt.tc and wakeup.tc tests in tracers/ subdirectory
      fail due to the chrt command returning:
      
       chrt: failed to set pid 0's policy: Operation not permitted.
      
      To work around this, temporarily disable grout RT scheduling
      during ftracetest execution.  Restore original value on
      test run completion.  With these changes in place, both
      tests consistently pass.
      
      Fixes: c575dea2 ("selftests/ftrace: Add wakeup_rt tracer testcase")
      Fixes: c1edd060
      
       ("selftests/ftrace: Add wakeup tracer testcase")
      Signed-off-by: default avatarAlan Maguire <alan.maguire@oracle.com>
      Acked-by: default avatarSteven Rostedt (VMware) <rostedt@goodmis.org>
      Signed-off-by: default avatarShuah Khan <skhan@linuxfoundation.org>
      57c4cfd4
  2. Apr 24, 2020
    • Xiao Yang's avatar
      selftests/ftrace: Check the first record for kprobe_args_type.tc · f0c0d0cf
      Xiao Yang authored
      
      
      It is possible to get multiple records from trace during test and then more
      than 4 arguments are assigned to ARGS.  This situation results in the failure
      of kprobe_args_type.tc.  For example:
      -----------------------------------------------------------
      grep testprobe trace
         ftracetest-5902  [001] d... 111195.682227: testprobe: (_do_fork+0x0/0x460) arg1=334823024 arg2=334823024 arg3=0x13f4fe70 arg4=7
           pmlogger-5949  [000] d... 111195.709898: testprobe: (_do_fork+0x0/0x460) arg1=345308784 arg2=345308784 arg3=0x1494fe70 arg4=7
       grep testprobe trace
       sed -e 's/.* arg1=\(.*\) arg2=\(.*\) arg3=\(.*\) arg4=\(.*\)/\1 \2 \3 \4/'
      ARGS='334823024 334823024 0x13f4fe70 7
      345308784 345308784 0x1494fe70 7'
      -----------------------------------------------------------
      
      We don't care which process calls do_fork so just check the first record to
      fix the issue.
      
      Signed-off-by: default avatarXiao Yang <yangx.jy@cn.fujitsu.com>
      Acked-by: default avatarMasami Hiramatsu <mhiramat@kernel.org>
      Signed-off-by: default avatarShuah Khan <skhan@linuxfoundation.org>
      f0c0d0cf
    • Shuah Khan's avatar
      selftests: add build/cross-build dependency check script · 93a4388b
      Shuah Khan authored
      
      
      Add build/cross-build dependency check script kselftest_deps.sh
      This script does the following:
      
      Usage: ./kselftest_deps.sh -[p] <compiler> [test_name]
      
      	kselftest_deps.sh [-p] gcc
      	kselftest_deps.sh [-p] gcc vm
      	kselftest_deps.sh [-p] aarch64-linux-gnu-gcc
      	kselftest_deps.sh [-p] aarch64-linux-gnu-gcc vm
      
      - Should be run in selftests directory in the kernel repo.
      - Checks if Kselftests can be built/cross-built on a system.
      - Parses all test/sub-test Makefile to find library dependencies.
      - Runs compile test on a trivial C file with LDLIBS specified
        in the test Makefiles to identify missing library dependencies.
      - Prints suggested target list for a system filtering out tests
        failed the build dependency check from the TARGETS in Selftests
        the main Makefile when optional -p is specified.
      - Prints pass/fail dependency check for each tests/sub-test.
      - Prints pass/fail targets and libraries.
      - Default: runs dependency checks on all tests.
      - Optional test name can be specified to check dependencies for it.
      
      To make LDLIBS parsing easier
      - change gpio and memfd Makefiles to use the same temporary variable used
        to find and add libraries to LDLIBS.
      - simlify LDLIBS append logic in intel_pstate/Makefile.
      
      Results from run on x86_64 system (trimmed detailed pass/fail list):
      ========================================================
      Kselftest Dependency Check for [./kselftest_deps.sh gcc ] results...
      ========================================================
      Checked tests defining LDLIBS dependencies
      --------------------------------------------------------
      Total tests with Dependencies:
      55 Pass: 53 Fail: 2
      --------------------------------------------------------
      Targets passed build dependency check on system:
      bpf capabilities filesystems futex gpio intel_pstate membarrier memfd
      mqueue net powerpc ptp rseq rtc safesetid timens timers vDSO vm
      --------------------------------------------------------
      FAIL: netfilter/Makefile dependency check: -lmnl
      FAIL: gpio/Makefile dependency check: -lmount
      --------------------------------------------------------
      Targets failed build dependency check on system:
      gpio netfilter
      --------------------------------------------------------
      Missing libraries system
      -lmnl -lmount
      --------------------------------------------------------
      ========================================================
      
      Results from run on x86_64 system with aarch64-linux-gnu-gcc:
      (trimmed detailed pass/fail list):
      ========================================================
      Kselftest Dependency Check for [./kselftest_deps.sh aarch64-linux-gnu-gcc ]
      results...
      ========================================================
      Checked tests defining LDLIBS dependencies
      --------------------------------------------------------
      Total tests with Dependencies:
      55 Pass: 41 Fail: 14
      --------------------------------------------------------
      Targets failed build dependency check on system:
      bpf capabilities filesystems futex gpio intel_pstate membarrier memfd
      mqueue net powerpc ptp rseq rtc timens timers vDSO vm
      --------------------------------------------------------
      --------------------------------------------------------
      Targets failed build dependency check on system:
      bpf capabilities gpio memfd mqueue net netfilter safesetid vm
      --------------------------------------------------------
      Missing libraries system
      -lcap -lcap-ng -lelf -lfuse -lmnl -lmount -lnuma -lpopt -lz
      --------------------------------------------------------
      ========================================================
      
      Signed-off-by: default avatarShuah Khan <skhan@linuxfoundation.org>
      93a4388b
    • Xiao Yang's avatar
      selftests/ftrace: Check required filter files before running test · 16bcd0f5
      Xiao Yang authored
      
      
      Without CONFIG_DYNAMIC_FTRACE, some tests get failure because required
      filter files(set_ftrace_filter/available_filter_functions/stack_trace_filter)
      are missing.  So implement check_filter_file() and make all related tests
      check required filter files by it.
      
      BTW: set_ftrace_filter and available_filter_functions are introduced together
      so just check either of them.
      
      Signed-off-by: default avatarXiao Yang <yangx.jy@cn.fujitsu.com>
      Acked-by: default avatarMasami Hiramatsu <mhiramat@kernel.org>
      Signed-off-by: default avatarShuah Khan <skhan@linuxfoundation.org>
      16bcd0f5
  3. Apr 15, 2020
  4. Apr 14, 2020
  5. Apr 13, 2020
    • Shuah Khan's avatar
      selftests: Fix memfd test run-time regression · ffa773e1
      Shuah Khan authored
      Commit d3fd949a ("selftests: Fix memfd to support relocatable
      build (O=objdir)") introduced regression run-time regression with
      a change to include programs that should be run from shell scripts
      to list of programs that run as independent tests. This fix restores
      the original designation.
      
      Fixes: d3fd949a
      
       ("selftests: Fix memfd to support relocatable build (O=objdir)")
      Reported-by: default avatarkernel test robot <rong.a.chen@intel.com>
      Signed-off-by: default avatarShuah Khan <skhan@linuxfoundation.org>
      ffa773e1
    • Sandipan Das's avatar
      selftests: vm: Fix 64-bit test builds for powerpc64le · 963e3e9c
      Sandipan Das authored
      Some tests are built only for 64-bit systems. This makes
      sure that these tests are built for both big and little
      endian variants of powerpc64.
      
      Fixes: 7549b336
      
       ("selftests: vm: Build/Run 64bit tests only on 64bit arch")
      Reviewed-by: default avatarKamalesh Babulal <kamalesh@linux.vnet.ibm.com>
      Signed-off-by: default avatarSandipan Das <sandipan@linux.ibm.com>
      Tested-by: default avatarMichael Ellerman <mpe@ellerman.id.au>
      Signed-off-by: default avatarShuah Khan <skhan@linuxfoundation.org>
      963e3e9c
    • Sandipan Das's avatar
      selftests: vm: Do not override definition of ARCH · 24c3f063
      Sandipan Das authored
      Independent builds of the vm selftests is currently broken because
      commit 7549b336 ("selftests: vm: Build/Run 64bit tests only on
      64bit arch") overrides the value of ARCH with the machine name from
      uname. This does not always match the architecture names used for
      tasks like header installation.
      
      E.g. for building tests on powerpc64, we need ARCH=powerpc
      and not ARCH=ppc64 or ARCH=ppc64le. Otherwise, the build
      fails as shown below.
      
        $ uname -m
        ppc64le
      
        $ make -C tools/testing/selftests/vm
        make: Entering directory '/home/sandipan/linux/tools/testing/selftests/vm'
        make --no-builtin-rules ARCH=ppc64le -C ../../../.. headers_install
        make[1]: Entering directory '/home/sandipan/linux'
        Makefile:653: arch/ppc64le/Makefile: No such file or directory
        make[1]: *** No rule to make target 'arch/ppc64le/Makefile'.  Stop.
        make[1]: Leaving directory '/home/sandipan/linux'
        ../lib.mk:50: recipe for target 'khdr' failed
        make: *** [khdr] Error 2
        make: Leaving directory '/home/sandipan/linux/tools/testing/selftests/vm'
      
      Fixes: 7549b336
      
       ("selftests: vm: Build/Run 64bit tests only on 64bit arch")
      Signed-off-by: default avatarSandipan Das <sandipan@linux.ibm.com>
      Tested-by: default avatarMichael Ellerman <mpe@ellerman.id.au>
      Signed-off-by: default avatarShuah Khan <skhan@linuxfoundation.org>
      24c3f063
    • Linus Torvalds's avatar
      Linux 5.7-rc1 · 8f3d9f35
      Linus Torvalds authored
      8f3d9f35
    • Linus Torvalds's avatar
      MAINTAINERS: sort field names for all entries · 3b50142d
      Linus Torvalds authored
      
      
      This sorts the actual field names too, potentially causing even more
      chaos and confusion at merge time if you have edited the MAINTAINERS
      file.  But the end result is a more consistent layout, and hopefully
      it's a one-time pain minimized by doing this just before the -rc1
      release.
      
      This was entirely scripted:
      
        ./scripts/parse-maintainers.pl --input=MAINTAINERS --output=MAINTAINERS --order
      
      Requested-by: default avatarJoe Perches <joe@perches.com>
      Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
      3b50142d
    • Linus Torvalds's avatar
      MAINTAINERS: sort entries by entry name · 4400b7d6
      Linus Torvalds authored
      
      
      They are all supposed to be sorted, but people who add new entries don't
      always know the alphabet.  Plus sometimes the entry names get edited,
      and people don't then re-order the entry.
      
      Let's see how painful this will be for merging purposes (the MAINTAINERS
      file is often edited in various different trees), but Joe claims there's
      relatively few patches in -next that touch this, and doing it just
      before -rc1 is likely the best time.  Fingers crossed.
      
      This was scripted with
      
        /scripts/parse-maintainers.pl --input=MAINTAINERS --output=MAINTAINERS
      
      but then I also ended up manually upper-casing a few entry names that
      stood out when looking at the end result.
      
      Requested-by: default avatarJoe Perches <joe@perches.com>
      Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
      4400b7d6
    • Linus Torvalds's avatar
      Merge tag 'x86-urgent-2020-04-12' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip · 4f8a3cc1
      Linus Torvalds authored
      Pull x86 fixes from Thomas Gleixner:
       "A set of three patches to fix the fallout of the newly added split
        lock detection feature.
      
        It addressed the case where a KVM guest triggers a split lock #AC and
        KVM reinjects it into the guest which is not prepared to handle it.
      
        Add proper sanity checks which prevent the unconditional injection
        into the guest and handles the #AC on the host side in the same way as
        user space detections are handled. Depending on the detection mode it
        either warns and disables detection for the task or kills the task if
        the mode is set to fatal"
      
      * tag 'x86-urgent-2020-04-12' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
        KVM: VMX: Extend VMXs #AC interceptor to handle split lock #AC in guest
        KVM: x86: Emulate split-lock access as a write in emulator
        x86/split_lock: Provide handle_guest_split_lock()
      4f8a3cc1
    • Linus Torvalds's avatar
      Merge tag 'timers-urgent-2020-04-12' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip · 0785249f
      Linus Torvalds authored
      Pull time(keeping) updates from Thomas Gleixner:
      
       - Fix the time_for_children symlink in /proc/$PID/ so it properly
         reflects that it part of the 'time' namespace
      
       - Add the missing userns limit for the allowed number of time
         namespaces, which was half defined but the actual array member was
         not added. This went unnoticed as the array has an exessive empty
         member at the end but introduced a user visible regression as the
         output was corrupted.
      
       - Prevent further silent ucount corruption by adding a BUILD_BUG_ON()
         to catch half updated data.
      
      * tag 'timers-urgent-2020-04-12' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
        ucount: Make sure ucounts in /proc/sys/user don't regress again
        time/namespace: Add max_time_namespaces ucount
        time/namespace: Fix time_for_children symlink
      0785249f
    • Linus Torvalds's avatar
      Merge tag 'sched-urgent-2020-04-12' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip · 590680d1
      Linus Torvalds authored
      Pull scheduler fixes/updates from Thomas Gleixner:
      
       - Deduplicate the average computations in the scheduler core and the
         fair class code.
      
       - Fix a raise between runtime distribution and assignement which can
         cause exceeding the quota by up to 70%.
      
       - Prevent negative results in the imbalanace calculation
      
       - Remove a stale warning in the workqueue code which can be triggered
         since the call site was moved out of preempt disabled code. It's a
         false positive.
      
       - Deduplicate the print macros for procfs
      
       - Add the ucmap values to the SCHED_DEBUG procfs output for completness
      
      * tag 'sched-urgent-2020-04-12' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
        sched/debug: Add task uclamp values to SCHED_DEBUG procfs
        sched/debug: Factor out printing formats into common macros
        sched/debug: Remove redundant macro define
        sched/core: Remove unused rq::last_load_update_tick
        workqueue: Remove the warning in wq_worker_sleeping()
        sched/fair: Fix negative imbalance in imbalance calculation
        sched/fair: Fix race between runtime distribution and assignment
        sched/fair: Align rq->avg_idle and rq->avg_scan_cost
      590680d1
    • Linus Torvalds's avatar
      Merge tag 'perf-urgent-2020-04-12' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip · 20e2aa81
      Linus Torvalds authored
      Pull perf fixes from Thomas Gleixner:
       "Three fixes/updates for perf:
      
         - Fix the perf event cgroup tracking which tries to track the cgroup
           even for disabled events.
      
         - Add Ice Lake server support for uncore events
      
         - Disable pagefaults when retrieving the physical address in the
           sampling code"
      
      * tag 'perf-urgent-2020-04-12' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
        perf/core: Disable page faults when getting phys address
        perf/x86/intel/uncore: Add Ice Lake server uncore support
        perf/cgroup: Correct indirection in perf_less_group_idx()
        perf/core: Fix event cgroup tracking
      20e2aa81
    • Linus Torvalds's avatar
      Merge tag 'locking-urgent-2020-04-12' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip · 652fa53c
      Linus Torvalds authored
      Pull locking fixes from Thomas Gleixner:
       "Three small fixes/updates for the locking core code:
      
         - Plug a task struct reference leak in the percpu rswem
           implementation.
      
         - Document the refcount interaction with PID_MAX_LIMIT
      
         - Improve the 'invalid wait context' data dump in lockdep so it
           contains all information which is required to decode the problem"
      
      * tag 'locking-urgent-2020-04-12' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
        locking/lockdep: Improve 'invalid wait context' splat
        locking/refcount: Document interaction with PID_MAX_LIMIT
        locking/percpu-rwsem: Fix a task_struct refcount
      652fa53c
    • Linus Torvalds's avatar
      Merge tag '5.7-rc-smb3-fixes-part2' of git://git.samba.org/sfrench/cifs-2.6 · 4119bf9f
      Linus Torvalds authored
      Pull cifs fixes from Steve French:
       "Ten cifs/smb fixes:
      
         - five RDMA (smbdirect) related fixes
      
         - add experimental support for swap over SMB3 mounts
      
         - also a fix which improves performance of signed connections"
      
      * tag '5.7-rc-smb3-fixes-part2' of git://git.samba.org/sfrench/cifs-2.6:
        smb3: enable swap on SMB3 mounts
        smb3: change noisy error message to FYI
        smb3: smbdirect support can be configured by default
        cifs: smbd: Do not schedule work to send immediate packet on every receive
        cifs: smbd: Properly process errors on ib_post_send
        cifs: Allocate crypto structures on the fly for calculating signatures of incoming packets
        cifs: smbd: Update receive credits before sending and deal with credits roll back on failure before sending
        cifs: smbd: Check send queue size before posting a send
        cifs: smbd: Merge code to track pending packets
        cifs: ignore cached share root handle closing errors
      4119bf9f
    • Linus Torvalds's avatar
      Merge tag 'nfs-for-5.7-2' of git://git.linux-nfs.org/projects/trondmy/linux-nfs · 50bda5fa
      Linus Torvalds authored
      Pull NFS client bugfix from Trond Myklebust:
       "Fix an RCU read lock leakage in pnfs_alloc_ds_commits_list()"
      
      * tag 'nfs-for-5.7-2' of git://git.linux-nfs.org/projects/trondmy/linux-nfs:
        pNFS: Fix RCU lock leakage
      50bda5fa
  6. Apr 12, 2020
    • Linus Torvalds's avatar
      Merge tag 'nios2-v5.7-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/lftan/nios2 · b032227c
      Linus Torvalds authored
      Pull nios2 updates from Ley Foon Tan:
      
       - Remove nios2-dev@lists.rocketboards.org from MAINTAINERS
      
       - remove 'resetvalue' property
      
       - rename 'altr,gpio-bank-width' -> 'altr,ngpio'
      
       - enable the common clk subsystem on Nios2
      
      * tag 'nios2-v5.7-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/lftan/nios2:
        MAINTAINERS: Remove nios2-dev@lists.rocketboards.org
        arch: nios2: remove 'resetvalue' property
        arch: nios2: rename 'altr,gpio-bank-width' -> 'altr,ngpio'
        arch: nios2: Enable the common clk subsystem on Nios2
      b032227c
    • Linus Torvalds's avatar
      Merge tag 'dma-mapping-5.7-1' of git://git.infradead.org/users/hch/dma-mapping · 75e71883
      Linus Torvalds authored
      Pull dma-mapping fixes from Christoph Hellwig:
      
       - fix an integer truncation in dma_direct_get_required_mask
         (Kishon Vijay Abraham)
      
       - fix the display of dma mapping types (Grygorii Strashko)
      
      * tag 'dma-mapping-5.7-1' of git://git.infradead.org/users/hch/dma-mapping:
        dma-debug: fix displaying of dma allocation type
        dma-direct: fix data truncation in dma_direct_get_required_mask()
      75e71883
    • Linus Torvalds's avatar
      Merge tag 'kbuild-v5.7-2' of git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild · b753101a
      Linus Torvalds authored
      Pull more Kbuild updates from Masahiro Yamada:
      
       - raise minimum supported binutils version to 2.23
      
       - remove old CONFIG_AS_* macros that we know binutils >= 2.23 supports
      
       - move remaining CONFIG_AS_* tests to Kconfig from Makefile
      
       - enable -Wtautological-compare warnings to catch more issues
      
       - do not support GCC plugins for GCC <= 4.7
      
       - fix various breakages of 'make xconfig'
      
       - include the linker version used for linking the kernel into
         LINUX_COMPILER, which is used for the banner, and also exposed to
         /proc/version
      
       - link lib-y objects to vmlinux forcibly when CONFIG_MODULES=y, which
         allows us to remove the lib-ksyms.o workaround, and to solve the last
         known issue of the LLVM linker
      
       - add dummy tools in scripts/dummy-tools/ to enable all compiler tests
         in Kconfig, which will be useful for distro maintainers
      
       - support the single switch, LLVM=1 to use Clang and all LLVM utilities
         instead of GCC and Binutils.
      
       - support LLVM_IAS=1 to enable the integrated assembler, which is still
         experimental
      
      * tag 'kbuild-v5.7-2' of git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild: (36 commits)
        kbuild: fix comment about missing include guard detection
        kbuild: support LLVM=1 to switch the default tools to Clang/LLVM
        kbuild: replace AS=clang with LLVM_IAS=1
        kbuild: add dummy toolchains to enable all cc-option etc. in Kconfig
        kbuild: link lib-y objects to vmlinux forcibly when CONFIG_MODULES=y
        MIPS: fw: arc: add __weak to prom_meminit and prom_free_prom_memory
        kbuild: remove -I$(srctree)/tools/include from scripts/Makefile
        kbuild: do not pass $(KBUILD_CFLAGS) to scripts/mkcompile_h
        Documentation/llvm: fix the name of llvm-size
        kbuild: mkcompile_h: Include $LD version in /proc/version
        kconfig: qconf: Fix a few alignment issues
        kconfig: qconf: remove some old bogus TODOs
        kconfig: qconf: fix support for the split view mode
        kconfig: qconf: fix the content of the main widget
        kconfig: qconf: Change title for the item window
        kconfig: qconf: clean deprecated warnings
        gcc-plugins: drop support for GCC <= 4.7
        kbuild: Enable -Wtautological-compare
        x86: update AS_* macros to binutils >=2.23, supporting ADX and AVX2
        crypto: x86 - clean up poly1305-x86_64-cryptogams.S by 'make clean'
        ...
      b753101a
    • Sedat Dilek's avatar
      mailmap: Add Sedat Dilek (replacement for expired email address) · c7850ae4
      Sedat Dilek authored
      
      
      I do not longer work for credativ Germany.
      
      Please, use my private email address instead.
      
      This is for the case when people want to CC me on
      patches sent from my old business email address.
      
      Signed-off-by: default avatarSedat Dilek <sedat.dilek@gmail.com>
      Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
      c7850ae4
  7. Apr 11, 2020