1. 06 6月, 2019 2 次提交
    • L
      Merge tag 'pidfd-fixes-v5.2-rc4' of gitolite.kernel.org:pub/scm/linux/kernel/git/brauner/linux · db309f2a
      Linus Torvalds 提交于
      Pull pidfd fixes from Christian Brauner:
       "The contains two small patches to the pidfd samples and test binaries
        respectively.
      
        They were lacking appropriate ifdefines for __NR_pidfd_send_signal and
        could hence lead to compilation errors when that was not defined.
      
        This was spotted on mips independently by Guenter Roeck (who was kind
        enough to send a fix for the samples binary) and Arnd who spotted it
        in linux-next.
      
        Apart from these two patches, there's also a patch to update the
        comments for the pidfd_send_signal() syscall which were slightly
        wrong/inconsistenly worded"
      
      * tag 'pidfd-fixes-v5.2-rc4' of gitolite.kernel.org:pub/scm/linux/kernel/git/brauner/linux:
        tests: fix pidfd-test compilation
        signal: improve comments
        samples: fix pidfd-metadata compilation
      db309f2a
    • L
      Merge tag 'pstore-v5.2-rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux · 47358b64
      Linus Torvalds 提交于
      Pull pstore fixes from Kees Cook:
      
       - Avoid NULL deref when unloading/reloading ramoops module (Pi-Hsun
         Shih)
      
       - Run ramoops without crash dump region
      
      * tag 'pstore-v5.2-rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux:
        pstore/ram: Run without kernel crash dump region
        pstore: Set tfm to NULL on free_buf_for_compression
      47358b64
  2. 05 6月, 2019 3 次提交
    • C
      tests: fix pidfd-test compilation · 1fcd0eb3
      Christian Brauner 提交于
      Define __NR_pidfd_send_signal if it isn't to prevent a potential
      compilation error.
      
      To make pidfd-test compile on all arches, irrespective of whether
      or not syscall numbers are assigned, define the syscall number to -1.
      If it isn't defined this will cause the kernel to return -ENOSYS.
      
      Fixes: 575a0ae9 ("selftests: add tests for pidfd_send_signal()")
      Signed-off-by: NChristian Brauner <christian@brauner.io>
      1fcd0eb3
    • C
      signal: improve comments · c732327f
      Christian Brauner 提交于
      Improve the comments for pidfd_send_signal().
      First, the comment still referred to a file descriptor for a process as a
      "task file descriptor" which stems from way back at the beginning of the
      discussion. Replace this with "pidfd" for consistency.
      Second, the wording for the explanation of the arguments to the syscall
      was a bit inconsistent, e.g. some used the past tense some used present
      tense. Make the wording more consistent.
      Signed-off-by: NChristian Brauner <christian@brauner.io>
      c732327f
    • G
      samples: fix pidfd-metadata compilation · 7c33277b
      Guenter Roeck 提交于
      Define __NR_pidfd_send_signal if it isn't to prevent a compilation error.
      
      To make pidfd-metadata compile on all arches, irrespective of whether
      or not syscall numbers are assigned, define the syscall number to -1.
      If it isn't defined this will cause the kernel to return -ENOSYS.
      
      Fixes: 43c6afee ("samples: show race-free pidfd metadata access")
      Reported-by: NArnd Bergmann <arnd@arndb.de>
      Reported-by: NGuenter Roeck <linux@roeck-us.net>
      Cc: Christian Brauner <christian@brauner.io>
      Signed-off-by: NGuenter Roeck <linux@roeck-us.net>
      [christian@brauner.io: tweak commit message]
      Signed-off-by: NChristian Brauner <christian@brauner.io>
      7c33277b
  3. 04 6月, 2019 5 次提交
    • L
      Merge tag 'arc-5.2-rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc · 788a0249
      Linus Torvalds 提交于
      Pull ARC fixes from Vineet Gupta:
      
       - Fix for userspace trying to access kernel vaddr space
      
       - HSDK platform DT updates
      
       - Cleanup some build warnings
      
      * tag 'arc-5.2-rc4' of git://git.kernel.org/pub/scm/linux/kernel/git/vgupta/arc:
        ARC: [plat-hsdk] Get rid of inappropriate PHY settings
        ARC: [plat-hsdk]: Add support of Vivante GPU
        ARC: [plat-hsdk]: enable creg-gpio controller
        ARC: [plat-hsdk]: Add missing FIFO size entry in GMAC node
        ARC: [plat-hsdk]: Add missing multicast filter bins number to GMAC node
        ARC: mm: SIGSEGV userspace trying to access kernel virtual memory
        ARC: fix build warnings
      788a0249
    • L
      rcu: locking and unlocking need to always be at least barriers · 66be4e66
      Linus Torvalds 提交于
      Herbert Xu pointed out that commit bb73c52b ("rcu: Don't disable
      preemption for Tiny and Tree RCU readers") was incorrect in making the
      preempt_disable/enable() be conditional on CONFIG_PREEMPT_COUNT.
      
      If CONFIG_PREEMPT_COUNT isn't enabled, the preemption enable/disable is
      a no-op, but still is a compiler barrier.
      
      And RCU locking still _needs_ that compiler barrier.
      
      It is simply fundamentally not true that RCU locking would be a complete
      no-op: we still need to guarantee (for example) that things that can
      trap and cause preemption cannot migrate into the RCU locked region.
      
      The way we do that is by making it a barrier.
      
      See for example commit 386afc91 ("spinlocks and preemption points
      need to be at least compiler barriers") from back in 2013 that had
      similar issues with spinlocks that become no-ops on UP: they must still
      constrain the compiler from moving other operations into the critical
      region.
      
      Now, it is true that a lot of RCU operations already use READ_ONCE() and
      WRITE_ONCE() (which in practice likely would never be re-ordered wrt
      anything remotely interesting), but it is also true that that is not
      globally the case, and that it's not even necessarily always possible
      (ie bitfields etc).
      Reported-by: NHerbert Xu <herbert@gondor.apana.org.au>
      Fixes: bb73c52b ("rcu: Don't disable preemption for Tiny and Tree RCU readers")
      Cc: stable@kernel.org
      Cc: Boqun Feng <boqun.feng@gmail.com>
      Cc: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
      Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
      66be4e66
    • L
      Merge tag 'nds32-for-linux-5.2-rc3' of... · 30d1d92a
      Linus Torvalds 提交于
      Merge tag 'nds32-for-linux-5.2-rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/greentime/linux
      
      Pull nds32 fixes from Greentime Hu:
      
       - fix warning for math-emu
      
       - fix nds32 fpu exception handling
      
       - fix nds32 fpu emulation implementation
      
      * tag 'nds32-for-linux-5.2-rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/greentime/linux:
        nds32: add new emulations for floating point instruction
        nds32: Avoid IEX status being incorrectly modified
        math-emu: Use statement expressions to fix Wshift-count-overflow warning
      30d1d92a
    • L
      Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc · 01e7a841
      Linus Torvalds 提交于
      Pull sparc fixes from David Miller:
       "Three bug fixes, and TLB flushing one is of particular brown paper bag
        quality..."
      
      * git://git.kernel.org/pub/scm/linux/kernel/git/davem/sparc:
        sparc: perf: fix updated event period in response to PERF_EVENT_IOC_PERIOD
        mdesc: fix a missing-check bug in get_vdev_port_node_info()
        sparc64: Fix regression in non-hypervisor TLB flush xcall
      01e7a841
    • L
      Merge tag 'for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost · f340208f
      Linus Torvalds 提交于
      Pull virtio fixes from Michael Tsirkin:
       "Several fixes, some of them for CVEs"
      
      * tag 'for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost:
        vhost: scsi: add weight support
        vhost: vsock: add weight support
        vhost_net: fix possible infinite loop
        vhost: introduce vhost_exceeds_weight()
        virtio: Fix indentation of VIRTIO_MMIO
        virtio: add unlikely() to WARN_ON_ONCE()
      f340208f
  4. 03 6月, 2019 16 次提交
    • Y
      sparc: perf: fix updated event period in response to PERF_EVENT_IOC_PERIOD · 56cd0aef
      Young Xiao 提交于
      The PERF_EVENT_IOC_PERIOD ioctl command can be used to change the
      sample period of a running perf_event. Consequently, when calculating
      the next event period, the new period will only be considered after the
      previous one has overflowed.
      
      This patch changes the calculation of the remaining event ticks so that
      they are offset if the period has changed.
      
      See commit 3581fe0e ("ARM: 7556/1: perf: fix updated event period in
      response to PERF_EVENT_IOC_PERIOD") for details.
      Signed-off-by: NYoung Xiao <92siuyang@gmail.com>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      56cd0aef
    • G
      mdesc: fix a missing-check bug in get_vdev_port_node_info() · 80caf435
      Gen Zhang 提交于
      In get_vdev_port_node_info(), 'node_info->vdev_port.name' is allcoated
      by kstrdup_const(), and it returns NULL when fails. So
      'node_info->vdev_port.name' should be checked.
      Signed-off-by: NGen Zhang <blackgod016574@gmail.com>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      80caf435
    • J
      sparc64: Fix regression in non-hypervisor TLB flush xcall · d3c976c1
      James Clarke 提交于
      Previously, %g2 would end up with the value PAGE_SIZE, but after the
      commit mentioned below it ends up with the value 1 due to being reused
      for a different purpose. We need it to be PAGE_SIZE as we use it to step
      through pages in our demap loop, otherwise we set different flags in the
      low 12 bits of the address written to, thereby doing things other than a
      nucleus page flush.
      
      Fixes: a74ad5e6 ("sparc64: Handle extremely large kernel TLB range flushes more gracefully.")
      Reported-by: NMeelis Roos <mroos@linux.ee>
      Tested-by: NMeelis Roos <mroos@linux.ee>
      Signed-off-by: NJames Clarke <jrtc27@jrtc27.com>
      Signed-off-by: NDavid S. Miller <davem@davemloft.net>
      d3c976c1
    • L
      Linux 5.2-rc3 · f2c7c76c
      Linus Torvalds 提交于
      f2c7c76c
    • L
      Merge branch 'x86-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip · 7bd1d5ed
      Linus Torvalds 提交于
      Pull x86 fixes from Ingo Molnar:
       "Two fixes: a quirk for KVM guests running on certain AMD CPUs, and a
        KASAN related build fix"
      
      * 'x86-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
        x86/CPU/AMD: Don't force the CPB cap when running under a hypervisor
        x86/boot: Provide KASAN compatible aliases for string routines
      7bd1d5ed
    • L
      Merge branch 'perf-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip · 6751b8d9
      Linus Torvalds 提交于
      Pull perf fixes from Ingo Molnar:
       "On the kernel side there's a bunch of ring-buffer ordering fixes for a
        reproducible bug, plus a PEBS constraints regression fix.
      
        Plus tooling fixes"
      
      * 'perf-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
        tools headers UAPI: Sync kvm.h headers with the kernel sources
        perf record: Fix s390 missing module symbol and warning for non-root users
        perf machine: Read also the end of the kernel
        perf test vmlinux-kallsyms: Ignore aliases to _etext when searching on kallsyms
        perf session: Add missing swap ops for namespace events
        perf namespace: Protect reading thread's namespace
        tools headers UAPI: Sync drm/drm.h with the kernel
        tools headers UAPI: Sync drm/i915_drm.h with the kernel
        tools headers UAPI: Sync linux/fs.h with the kernel
        tools headers UAPI: Sync linux/sched.h with the kernel
        tools arch x86: Sync asm/cpufeatures.h with the with the kernel
        tools include UAPI: Update copy of files related to new fspick, fsmount, fsconfig, fsopen, move_mount and open_tree syscalls
        perf arm64: Fix mksyscalltbl when system kernel headers are ahead of the kernel
        perf data: Fix 'strncat may truncate' build failure with recent gcc
        perf/ring-buffer: Use regular variables for nesting
        perf/ring-buffer: Always use {READ,WRITE}_ONCE() for rb->user_page data
        perf/ring_buffer: Add ordering to rb->nest increment
        perf/ring_buffer: Fix exposing a temporarily decreased data_head
        perf/x86/intel/ds: Fix EVENT vs. UEVENT PEBS constraints
      6751b8d9
    • L
      Merge branch 'efi-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip · af042452
      Linus Torvalds 提交于
      Pull EFI fixes from Ingo Molnar:
       "Two EFI fixes: a quirk for weird systabs, plus add more robust error
        handling in the old 1:1 mapping code"
      
      * 'efi-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
        efi: Allow the number of EFI configuration tables entries to be zero
        efi/x86/Add missing error handling to old_memmap 1:1 mapping code
      af042452
    • L
      Merge branch 'core-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip · 4fb5741c
      Linus Torvalds 提交于
      Pull stacktrace fix from Ingo Molnar:
       "Fix a stack_trace_save_tsk_reliable() regression"
      
      * 'core-urgent-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
        stacktrace: Unbreak stack_trace_save_tsk_reliable()
      4fb5741c
    • L
      Merge tag 'spdx-5.2-rc3-2' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core · a68dc618
      Linus Torvalds 提交于
      Pull SPDX fixes from Greg KH:
       "Here are just two small patches, that fix up some found SPDX
        identifier issues.
      
        The first patch fixes an error in a previous SPDX fixup patch, that
        causes build errors when doing 'make clean' on the tree (the fact that
        almost no one noticed it reflects the fact that kernel developers
        don't like doing that option very often...)
      
        The second patch fixes up a number of places in the tree where people
        mistyped the string "SPDX-License-Identifier". Given that people can
        not even type their own name all the time without mistakes, this was
        bound to happen, and odds are, we will have to add some type of check
        for this to checkpatch.pl to catch this happening in the future.
      
        Both of these have passed testing by 0-day"
      
      * tag 'spdx-5.2-rc3-2' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/driver-core:
        treewide: fix typos of SPDX-License-Identifier
        crypto: ux500 - fix license comment syntax error
      a68dc618
    • L
      Merge tag 'powerpc-5.2-3' of git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux · 460b48a0
      Linus Torvalds 提交于
      Pull powerpc fixes from Michael Ellerman:
       "A minor fix to our IMC PMU code to print a less confusing error
        message when the driver can't initialise properly.
      
        A fix for a bug where a user requesting an unsupported branch sampling
        filter can corrupt PMU state, preventing the PMU from counting
        properly.
      
        And finally a fix for a bug in our support for kexec_file_load(),
        which prevented loading a kernel and initramfs. Most versions of kexec
        don't yet use kexec_file_load().
      
        Thanks to: Anju T Sudhakar, Dave Young, Madhavan Srinivasan, Ravi
        Bangoria, Thiago Jung Bauermann"
      
      * tag 'powerpc-5.2-3' of git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux:
        powerpc/kexec: Fix loading of kernel + initramfs with kexec_file_load()
        powerpc/perf: Fix MMCRA corruption by bhrb_filter
        powerpc/powernv: Return for invalid IMC domain
      460b48a0
    • L
      Merge tag 'for-linus' of git://git.kernel.org/pub/scm/virt/kvm/kvm · b44a1dd3
      Linus Torvalds 提交于
      Pull KVM fixes from Paolo Bonzini:
       "Fixes for PPC and s390"
      
      * tag 'for-linus' of git://git.kernel.org/pub/scm/virt/kvm/kvm:
        KVM: PPC: Book3S HV: Restore SPRG3 in kvmhv_p9_guest_entry()
        KVM: PPC: Book3S HV: Fix lockdep warning when entering guest on POWER9
        KVM: PPC: Book3S HV: XIVE: Fix page offset when clearing ESB pages
        KVM: PPC: Book3S HV: XIVE: Take the srcu read lock when accessing memslots
        KVM: PPC: Book3S HV: XIVE: Do not clear IRQ data of passthrough interrupts
        KVM: PPC: Book3S HV: XIVE: Introduce a new mutex for the XIVE device
        KVM: PPC: Book3S HV: XIVE: Fix the enforced limit on the vCPU identifier
        KVM: PPC: Book3S HV: XIVE: Do not test the EQ flag validity when resetting
        KVM: PPC: Book3S HV: XIVE: Clear file mapping when device is released
        KVM: PPC: Book3S HV: Don't take kvm->lock around kvm_for_each_vcpu
        KVM: PPC: Book3S: Use new mutex to synchronize access to rtas token list
        KVM: PPC: Book3S HV: Use new mutex to synchronize MMU setup
        KVM: PPC: Book3S HV: Avoid touching arch.mmu_ready in XIVE release functions
        KVM: s390: Do not report unusabled IDs via KVM_CAP_MAX_VCPU_ID
        kvm: fix compile on s390 part 2
      b44a1dd3
    • L
      Merge branch 'i2c/for-current' of git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux · 38baf0bb
      Linus Torvalds 提交于
      Pull i2c fixes from Wolfram Sang:
       "A memleak fix for the core, two driver bugfixes, as well as fixing
        missing file patterns to MAINTAINERS"
      
      * 'i2c/for-current' of git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux:
        MAINTAINERS: add I2C DT bindings to ARM platforms
        MAINTAINERS: add DT bindings to i2c drivers
        i2c: synquacer: fix synquacer_i2c_doxfer() return value
        i2c: mlxcpld: Fix wrong initialization order in probe
        i2c: dev: fix potential memory leak in i2cdev_ioctl_rdwr
      38baf0bb
    • L
      Merge branch 'fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/evalenti/linux-soc-thermal · 378e853f
      Linus Torvalds 提交于
      Pull thermal SoC fix from Eduardo Valentin:
       "A single revert, detected to cause issues on the tsens driver"
      
      * 'fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/evalenti/linux-soc-thermal:
        Revert "drivers: thermal: tsens: Add new operation to check if a sensor is enabled"
      378e853f
    • L
      Merge tag 'led-fixes-for-5.2-rc3' of... · f58c356e
      Linus Torvalds 提交于
      Merge tag 'led-fixes-for-5.2-rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/j.anaszewski/linux-leds
      
      Pull LED fix from Jacek Anaszewski:
       "Fix for a recent change in LED core, that didn't take into account the
        possibility of calling led_blink_setup() from atomic context"
      
      * tag 'led-fixes-for-5.2-rc3' of git://git.kernel.org/pub/scm/linux/kernel/git/j.anaszewski/linux-leds:
        leds: avoid flush_work in atomic context
      f58c356e
    • L
      Merge tag 'for-linus-20190601' of git://git.kernel.dk/linux-block · 9221dced
      Linus Torvalds 提交于
      Pull block fixes from Jens Axboe:
      
       - A set of patches fixing code comments / kerneldoc (Bart)
      
       - Don't allow loop file change for exclusive open (Jan)
      
       - Fix revalidate of hidden genhd (Jan)
      
       - Init queue failure memory free fix (Jes)
      
       - Improve rq limits failure print (John)
      
       - Fixup for queue removal/addition (Ming)
      
       - Missed error progagation for io_uring buffer registration (Pavel)
      
      * tag 'for-linus-20190601' of git://git.kernel.dk/linux-block:
        block: print offending values when cloned rq limits are exceeded
        blk-mq: Document the blk_mq_hw_queue_to_node() arguments
        blk-mq: Fix spelling in a source code comment
        block: Fix bsg_setup_queue() kernel-doc header
        block: Fix rq_qos_wait() kernel-doc header
        block: Fix blk_mq_*_map_queues() kernel-doc headers
        block: Fix throtl_pending_timer_fn() kernel-doc header
        block: Convert blk_invalidate_devt() header into a non-kernel-doc header
        block/partitions/ldm: Convert a kernel-doc header into a non-kernel-doc header
        blk-mq: Fix memory leak in error handling
        block: don't protect generic_make_request_checks with blk_queue_enter
        block: move blk_exit_queue into __blk_release_queue
        block: Don't revalidate bdev of hidden gendisk
        loop: Don't change loop device under exclusive opener
        io_uring: Fix __io_uring_register() false success
      9221dced
    • L
      Merge tag 'scsi-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi · 1975b337
      Linus Torvalds 提交于
      Pull SCSI fixes from James Bottomley:
       "Six minor fixes to device drivers and one to the multipath alua
        handler.
      
        The most extensive fix is the zfcp port remove prevention one, but
        it's impact is only s390"
      
      * tag 'scsi-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi:
        scsi: libsas: delete sas port if expander discover failed
        scsi: libsas: only clear phy->in_shutdown after shutdown event done
        scsi: scsi_dh_alua: Fix possible null-ptr-deref
        scsi: smartpqi: properly set both the DMA mask and the coherent DMA mask
        scsi: zfcp: fix to prevent port_remove with pure auto scan LUNs (only sdevs)
        scsi: zfcp: fix missing zfcp_port reference put on -EBUSY from port_remove
        scsi: libcxgbi: add a check for NULL pointer in cxgbi_check_route()
      1975b337
  5. 02 6月, 2019 14 次提交