Skip to content

Commits

Permalink
dax-zero-range…
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?

Commits on Feb 17, 2020

  1. dax,iomap: Add helper dax_iomap_zero() to zero a range

    Add a helper dax_ioamp_zero() to zero a range. This patch basically
    merges __dax_zero_page_range() and iomap_dax_zero().
    
    Suggested-by: Christoph Hellwig <hch@infradead.org>
    Reviewed-by: Christoph Hellwig <hch@lst.de>
    Signed-off-by: Vivek Goyal <vgoyal@redhat.com>
    rhvgoyal committed Feb 17, 2020
    Copy the full SHA
    e08a59f View commit details
    Browse the repository at this point in the history
  2. dax,iomap: Start using dax native zero_page_range()

    Get rid of calling block device interface for zeroing in iomap dax
    zeroing path and use dax native zeroing interface instead.
    
    Suggested-by: Christoph Hellwig <hch@infradead.org>
    Reviewed-by: Christoph Hellwig <hch@lst.de>
    Signed-off-by: Vivek Goyal <vgoyal@redhat.com>
    rhvgoyal committed Feb 17, 2020
    Copy the full SHA
    1e83010 View commit details
    Browse the repository at this point in the history
  3. dm,dax: Add dax zero_page_range operation

    This patch adds support for dax zero_page_range operation to dm targets.
    
    Signed-off-by: Vivek Goyal <vgoyal@redhat.com>
    rhvgoyal committed Feb 17, 2020
    Copy the full SHA
    bbdbf03 View commit details
    Browse the repository at this point in the history
  4. s390,dcssblk,dax: Add dax zero_page_range operation to dcssblk driver

    Add dax operation zero_page_range for dcssblk driver.
    
    Suggested-by: Christoph Hellwig <hch@infradead.org>
    Reviewed-by: Gerald Schaefer <gerald.schaefer@de.ibm.com>
    Signed-off-by: Vivek Goyal <vgoyal@redhat.com>
    rhvgoyal committed Feb 17, 2020
    Copy the full SHA
    887d2ea View commit details
    Browse the repository at this point in the history
  5. dax, pmem: Add a dax operation zero_page_range

    Add a dax operation zero_page_range, to zero a range of memory. This will
    also clear any poison in the range being zeroed.
    
    As of now, zeroing of up to one page is allowed in a single call. There
    are no callers which are trying to zero more than a page in a single call.
    Once we grow the callers which zero more than a page in single call, we
    can add that support. Primary reason for not doing that yet is that this
    will add little complexity in dm implementation where a range might be
    spanning multiple underlying targets and one will have to split the range
    into multiple sub ranges and call zero_page_range() on individual targets.
    
    Suggested-by: Christoph Hellwig <hch@infradead.org>
    Signed-off-by: Vivek Goyal <vgoyal@redhat.com>
    rhvgoyal committed Feb 17, 2020
    Copy the full SHA
    699005d View commit details
    Browse the repository at this point in the history
  6. pmem: Enable pmem_do_write() to deal with arbitrary ranges

    Currently pmem_do_write() is written with assumption that all I/O is
    sector aligned. Soon I want to use this function in zero_page_range()
    where range passed in does not have to be sector aligned.
    
    Modify this function to be able to deal with an arbitrary range. Which
    is specified by pmem_off and len.
    
    Signed-off-by: Vivek Goyal <vgoyal@redhat.com>
    rhvgoyal committed Feb 17, 2020
    Copy the full SHA
    2c9b924 View commit details
    Browse the repository at this point in the history
  7. pmem: Add functions for reading/writing page to/from pmem

    This splits pmem_do_bvec() into pmem_do_read() and pmem_do_write(). 
    pmem_do_write() will be used by pmem zero_page_range() as well. Hence
    sharing the same code.
    
    Suggested-by: Christoph Hellwig <hch@infradead.org>
    Signed-off-by: Vivek Goyal <vgoyal@redhat.com>
    rhvgoyal committed Feb 17, 2020
    Copy the full SHA
    b1065c2 View commit details
    Browse the repository at this point in the history

Commits on Feb 11, 2020

  1. Merge branch 'for-5.6-fixes' of git://git.kernel.org/pub/scm/linux/ke…

    …rnel/git/tj/cgroup
    
    Pull cgroup fix from Tejun Heo:
     "I made a mistake while removing cgroup task list lazy init
      optimization making the root cgroup.procs show entries for the
      init_tasks. The zero entries doesn't cause critical failures but does
      make systemd print out warning messages during boot.
    
      Fix it by omitting init_tasks as they should be"
    
    * 'for-5.6-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/tj/cgroup:
      cgroup: init_tasks shouldn't be linked to the root cgroup
    torvalds committed Feb 11, 2020
    Copy the full SHA
    0a679e1 View commit details
    Browse the repository at this point in the history
  2. Merge tag 'selinux-pr-20200210' of git://git.kernel.org/pub/scm/linux…

    …/kernel/git/pcmoore/selinux
    
    Pull SELinux fixes from Paul Moore:
     "Two small fixes: one fixes a locking problem in the recently merged
      label translation code, the other fixes an embarrassing 'binderfs' /
      'binder' filesystem name check"
    
    * tag 'selinux-pr-20200210' of git://git.kernel.org/pub/scm/linux/kernel/git/pcmoore/selinux:
      selinux: fix sidtab string cache locking
      selinux: fix typo in filesystem name
    torvalds committed Feb 11, 2020
    Copy the full SHA
    a5650ac View commit details
    Browse the repository at this point in the history

Commits on Feb 10, 2020

  1. Linux 5.6-rc1

    torvalds committed Feb 10, 2020
    Copy the full SHA
    bb6d3fb View commit details
    Browse the repository at this point in the history
  2. Merge tag 'kbuild-v5.6-2' of git://git.kernel.org/pub/scm/linux/kerne…

    …l/git/masahiroy/linux-kbuild
    
    Pull more Kbuild updates from Masahiro Yamada:
    
     - fix randconfig to generate a sane .config
    
     - rename hostprogs-y / always to hostprogs / always-y, which are more
       natual syntax.
    
     - optimize scripts/kallsyms
    
     - fix yes2modconfig and mod2yesconfig
    
     - make multiple directory targets ('make foo/ bar/') work
    
    * tag 'kbuild-v5.6-2' of git://git.kernel.org/pub/scm/linux/kernel/git/masahiroy/linux-kbuild:
      kbuild: make multiple directory targets work
      kconfig: Invalidate all symbols after changing to y or m.
      kallsyms: fix type of kallsyms_token_table[]
      scripts/kallsyms: change table to store (strcut sym_entry *)
      scripts/kallsyms: rename local variables in read_symbol()
      kbuild: rename hostprogs-y/always to hostprogs/always-y
      kbuild: fix the document to use extra-y for vmlinux.lds
      kconfig: fix broken dependency in randconfig-generated .config
    torvalds committed Feb 10, 2020
    Copy the full SHA
    89a47dd View commit details
    Browse the repository at this point in the history

Commits on Feb 9, 2020

  1. Merge tag 'zonefs-5.6-rc1' of git://git.kernel.org/pub/scm/linux/kern…

    …el/git/dlemoal/zonefs
    
    Pull new zonefs file system from Damien Le Moal:
     "Zonefs is a very simple file system exposing each zone of a zoned
      block device as a file.
    
      Unlike a regular file system with native zoned block device support
      (e.g. f2fs or the on-going btrfs effort), zonefs does not hide the
      sequential write constraint of zoned block devices to the user. As a
      result, zonefs is not a POSIX compliant file system. Its goal is to
      simplify the implementation of zoned block devices support in
      applications by replacing raw block device file accesses with a richer
      file based API, avoiding relying on direct block device file ioctls
      which may be more obscure to developers.
    
      One example of this approach is the implementation of LSM
      (log-structured merge) tree structures (such as used in RocksDB and
      LevelDB) on zoned block devices by allowing SSTables to be stored in a
      zone file similarly to a regular file system rather than as a range of
      sectors of a zoned device. The introduction of the higher level
      construct "one file is one zone" can help reducing the amount of
      changes needed in the application while at the same time allowing the
      use of zoned block devices with various programming languages other
      than C.
    
      Zonefs IO management implementation uses the new iomap generic code.
      Zonefs has been successfully tested using a functional test suite
      (available with zonefs userland format tool on github) and a prototype
      implementation of LevelDB on top of zonefs"
    
    * tag 'zonefs-5.6-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/dlemoal/zonefs:
      zonefs: Add documentation
      fs: New zonefs file system
    torvalds committed Feb 9, 2020
    Copy the full SHA
    380a129 View commit details
    Browse the repository at this point in the history
  2. irqchip/gic-v4.1: Avoid 64bit division for the sake of 32bit ARM

    In order to allow the GICv4 code to link properly on 32bit ARM,
    make sure we don't use 64bit divisions when it isn't strictly
    necessary.
    
    Fixes: 4e6437f ("irqchip/gic-v4.1: Ensure L2 vPE table is allocated at RD level")
    Reported-by: Stephen Rothwell <sfr@canb.auug.org.au>
    Cc: Zenghui Yu <yuzenghui@huawei.com>
    Signed-off-by: Marc Zyngier <maz@kernel.org>
    Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
    Marc Zyngier authored and torvalds committed Feb 9, 2020
    Copy the full SHA
    490d332 View commit details
    Browse the repository at this point in the history
  3. Merge tag '5.6-rc-smb3-plugfest-patches' of git://git.samba.org/sfren…

    …ch/cifs-2.6
    
    Pull cifs fixes from Steve French:
     "13 cifs/smb3 patches, most from testing at the SMB3 plugfest this week:
    
       - Important fix for multichannel and for modefromsid mounts.
    
       - Two reconnect fixes
    
       - Addition of SMB3 change notify support
    
       - Backup tools fix
    
       - A few additional minor debug improvements (tracepoints and
         additional logging found useful during testing this week)"
    
    * tag '5.6-rc-smb3-plugfest-patches' of git://git.samba.org/sfrench/cifs-2.6:
      smb3: Add defines for new information level, FileIdInformation
      smb3: print warning once if posix context returned on open
      smb3: add one more dynamic tracepoint missing from strict fsync path
      cifs: fix mode bits from dir listing when mounted with modefromsid
      cifs: fix channel signing
      cifs: add SMB3 change notification support
      cifs: make multichannel warning more visible
      cifs: fix soft mounts hanging in the reconnect code
      cifs: Add tracepoints for errors on flush or fsync
      cifs: log warning message (once) if out of disk space
      cifs: fail i/o on soft mounts if sessionsetup errors out
      smb3: fix problem with null cifs super block with previous patch
      SMB3: Backup intent flag missing from some more ops
    torvalds committed Feb 9, 2020
    Copy the full SHA
    d1ea35f View commit details
    Browse the repository at this point in the history
  4. Merge branch 'work.vboxsf' of git://git.kernel.org/pub/scm/linux/kern…

    …el/git/viro/vfs
    
    Pull vboxfs from Al Viro:
     "This is the VirtualBox guest shared folder support by Hans de Goede,
      with fixups for fs_parse folded in to avoid bisection hazards from
      those API changes..."
    
    * 'work.vboxsf' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs:
      fs: Add VirtualBox guest shared folder (vboxsf) support
    torvalds committed Feb 9, 2020
    Copy the full SHA
    5586c3c View commit details
    Browse the repository at this point in the history
  5. Merge tag 'x86-urgent-2020-02-09' of git://git.kernel.org/pub/scm/lin…

    …ux/kernel/git/tip/tip
    
    Pull x86 fixes from Thomas Gleixner:
     "A set of fixes for X86:
    
       - Ensure that the PIT is set up when the local APIC is disable or
         configured in legacy mode. This is caused by an ordering issue
         introduced in the recent changes which skip PIT initialization when
         the TSC and APIC frequencies are already known.
    
       - Handle malformed SRAT tables during early ACPI parsing which caused
         an infinite loop anda boot hang.
    
       - Fix a long standing race in the affinity setting code which affects
         PCI devices with non-maskable MSI interrupts. The problem is caused
         by the non-atomic writes of the MSI address (destination APIC id)
         and data (vector) fields which the device uses to construct the MSI
         message. The non-atomic writes are mandated by PCI.
    
         If both fields change and the device raises an interrupt after
         writing address and before writing data, then the MSI block
         constructs a inconsistent message which causes interrupts to be
         lost and subsequent malfunction of the device.
    
         The fix is to redirect the interrupt to the new vector on the
         current CPU first and then switch it over to the new target CPU.
         This allows to observe an eventually raised interrupt in the
         transitional stage (old CPU, new vector) to be observed in the APIC
         IRR and retriggered on the new target CPU and the new vector.
    
         The potential spurious interrupts caused by this are harmless and
         can in the worst case expose a buggy driver (all handlers have to
         be able to deal with spurious interrupts as they can and do happen
         for various reasons).
    
       - Add the missing suspend/resume mechanism for the HYPERV hypercall
         page which prevents resume hibernation on HYPERV guests. This
         change got lost before the merge window.
    
       - Mask the IOAPIC before disabling the local APIC to prevent
         potentially stale IOAPIC remote IRR bits which cause stale
         interrupt lines after resume"
    
    * tag 'x86-urgent-2020-02-09' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
      x86/apic: Mask IOAPIC entries when disabling the local APIC
      x86/hyperv: Suspend/resume the hypercall page for hibernation
      x86/apic/msi: Plug non-maskable MSI affinity race
      x86/boot: Handle malformed SRAT tables during early ACPI parsing
      x86/timer: Don't skip PIT setup when APIC is disabled or in legacy mode
    torvalds committed Feb 9, 2020
    Copy the full SHA
    1a2a76c View commit details
    Browse the repository at this point in the history
  6. Merge tag 'smp-urgent-2020-02-09' of git://git.kernel.org/pub/scm/lin…

    …ux/kernel/git/tip/tip
    
    Pull SMP fixes from Thomas Gleixner:
     "Two fixes for the SMP related functionality:
    
       - Make the UP version of smp_call_function_single() match SMP
         semantics when called for a not available CPU. Instead of emitting
         a warning and assuming that the function call target is CPU0,
         return a proper error code like the SMP version does.
    
       - Remove a superfluous check in smp_call_function_many_cond()"
    
    * tag 'smp-urgent-2020-02-09' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
      smp/up: Make smp_call_function_single() match SMP semantics
      smp: Remove superfluous cond_func check in smp_call_function_many_cond()
    torvalds committed Feb 9, 2020
    Copy the full SHA
    f413776 View commit details
    Browse the repository at this point in the history
  7. Merge tag 'perf-urgent-2020-02-09' of git://git.kernel.org/pub/scm/li…

    …nux/kernel/git/tip/tip
    
    Pull perf fixes from Thomas Gleixner:
     "A set of fixes and improvements for the perf subsystem:
    
      Kernel fixes:
    
       - Install cgroup events to the correct CPU context to prevent a
         potential list double add
    
       - Prevent an integer underflow in the perf mlock accounting
    
       - Add a missing prototype for arch_perf_update_userpage()
    
      Tooling:
    
       - Add a missing unlock in the error path of maps__insert() in perf
         maps.
    
       - Fix the build with the latest libbfd
    
       - Fix the perf parser so it does not delete parse event terms, which
         caused a regression for using perf with the ARM CoreSight as the
         sink configuration was missing due to the deletion.
    
       - Fix the double free in the perf CPU map merging test case
    
       - Add the missing ustring support for the perf probe command"
    
    * tag 'perf-urgent-2020-02-09' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
      perf maps: Add missing unlock to maps__insert() error case
      perf probe: Add ustring support for perf probe command
      perf: Make perf able to build with latest libbfd
      perf test: Fix test case Merge cpu map
      perf parse: Copy string to perf_evsel_config_term
      perf parse: Refactor 'struct perf_evsel_config_term'
      kernel/events: Add a missing prototype for arch_perf_update_userpage()
      perf/cgroups: Install cgroup events to correct cpuctx
      perf/core: Fix mlock accounting in perf_mmap()
    torvalds committed Feb 9, 2020
    Copy the full SHA
    ca21b9b View commit details
    Browse the repository at this point in the history
  8. Merge tag 'timers-urgent-2020-02-09' of git://git.kernel.org/pub/scm/…

    …linux/kernel/git/tip/tip
    
    Pull timer fixes from Thomas Gleixner:
     "Two small fixes for the time(r) subsystem:
    
       - Handle a subtle race between the clocksource watchdog and a
         concurrent clocksource watchdog stop/start sequence correctly to
         prevent a timer double add bug.
    
       - Fix the file path for the core time namespace file"
    
    * tag 'timers-urgent-2020-02-09' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
      clocksource: Prevent double add_timer_on() for watchdog_timer
      MAINTAINERS: Correct path to time namespace source file
    torvalds committed Feb 9, 2020
    Copy the full SHA
    2fbc23c View commit details
    Browse the repository at this point in the history
  9. Merge tag 'irq-urgent-2020-02-09' of git://git.kernel.org/pub/scm/lin…

    …ux/kernel/git/tip/tip
    
    Pull interrupt fixes from Thomas Gleixner:
     "A set of fixes for the interrupt subsystem:
    
       - Provision only ACPI enabled redistributors on GICv3
    
       - Use the proper command colums when building the INVALL command for
         the GICv3-ITS
    
       - Ensure the allocation of the L2 vPE table for GICv4.1
    
       - Correct the GICv4.1 VPROBASER programming so it uses the proper
         size
    
       - A set of small GICv4.1 tidy up patches
    
       - Configuration cleanup for C-SKY interrupt chip
    
       - Clarify the function documentation for irq_set_wake() to document
         that the wakeup functionality is orthogonal to the irq
         disable/enable mechanism"
    
    * tag 'irq-urgent-2020-02-09' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
      irqchip/gic-v3-its: Rename VPENDBASER/VPROPBASER accessors
      irqchip/gic-v3-its: Remove superfluous WARN_ON
      irqchip/gic-v4.1: Drop 'tmp' in inherit_vpe_l1_table_from_rd()
      irqchip/gic-v4.1: Ensure L2 vPE table is allocated at RD level
      irqchip/gic-v4.1: Set vpe_l1_base for all redistributors
      irqchip/gic-v4.1: Fix programming of GICR_VPROPBASER_4_1_SIZE
      genirq: Clarify that irq wake state is orthogonal to enable/disable
      irqchip/gic-v3-its: Reference to its_invall_cmd descriptor when building INVALL
      irqchip: Some Kconfig cleanup for C-SKY
      irqchip/gic-v3: Only provision redistributors that are enabled in ACPI
    torvalds committed Feb 9, 2020
    Copy the full SHA
    f06bed8 View commit details
    Browse the repository at this point in the history
  10. Merge tag 'efi-urgent-2020-02-09' of git://git.kernel.org/pub/scm/lin…

    …ux/kernel/git/tip/tip
    
    Pull EFI fix from Thomas Gleixner:
     "A single fix for a EFI boot regression on X86 which was caused by the
      recent rework of the EFI memory map parsing. On systems with invalid
      memmap entries the cleanup function uses an value which cannot be
      relied on in this stage. Use the actual EFI memmap entry instead"
    
    * tag 'efi-urgent-2020-02-09' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
      efi/x86: Fix boot regression on systems with invalid memmap entries
    torvalds committed Feb 9, 2020
    Copy the full SHA
    6ff90aa View commit details
    Browse the repository at this point in the history
  11. Merge tag 'scsi-misc' of git://git.kernel.org/pub/scm/linux/kernel/gi…

    …t/jejb/scsi
    
    Pull misc SCSI fixes from James Bottomley:
     "Five small patches, all in drivers or doc, which missed the initial
      pull request.
    
      The qla2xxx and megaraid_sas are actual fixes and the rest are
      spelling and doc changes"
    
    * tag 'scsi-misc' of git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi:
      scsi: ufs: fix spelling mistake "initilized" -> "initialized"
      scsi: pm80xx: fix spelling mistake "to" -> "too"
      scsi: MAINTAINERS: ufs: remove pedrom.sousa@synopsys.com
      scsi: megaraid_sas: fixup MSIx interrupt setup during resume
      scsi: qla2xxx: Fix unbound NVME response length
    torvalds committed Feb 9, 2020
    Copy the full SHA
    fdfa3a6 View commit details
    Browse the repository at this point in the history
  12. Merge git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net

    Pull networking fixes from David Miller:
    
     1) Unbalanced locking in mwifiex_process_country_ie, from Brian Norris.
    
     2) Fix thermal zone registration in iwlwifi, from Andrei
        Otcheretianski.
    
     3) Fix double free_irq in sgi ioc3 eth, from Thomas Bogendoerfer.
    
     4) Use after free in mptcp, from Florian Westphal.
    
     5) Use after free in wireguard's root_remove_peer_lists, from Eric
        Dumazet.
    
     6) Properly access packets heads in bonding alb code, from Eric
        Dumazet.
    
     7) Fix data race in skb_queue_len(), from Qian Cai.
    
     8) Fix regression in r8169 on some chips, from Heiner Kallweit.
    
     9) Fix XDP program ref counting in hv_netvsc, from Haiyang Zhang.
    
    10) Certain kinds of set link netlink operations can cause a NULL deref
        in the ipv6 addrconf code. Fix from Eric Dumazet.
    
    11) Don't cancel uninitialized work queue in drop monitor, from Ido
        Schimmel.
    
    * git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net: (84 commits)
      net: thunderx: use proper interface type for RGMII
      mt76: mt7615: fix max_nss in mt7615_eeprom_parse_hw_cap
      bpf: Improve bucket_log calculation logic
      selftests/bpf: Test freeing sockmap/sockhash with a socket in it
      bpf, sockhash: Synchronize_rcu before free'ing map
      bpf, sockmap: Don't sleep while holding RCU lock on tear-down
      bpftool: Don't crash on missing xlated program instructions
      bpf, sockmap: Check update requirements after locking
      drop_monitor: Do not cancel uninitialized work item
      mlxsw: spectrum_dpipe: Add missing error path
      mlxsw: core: Add validation of hardware device types for MGPIR register
      mlxsw: spectrum_router: Clear offload indication from IPv6 nexthops on abort
      selftests: mlxsw: Add test cases for local table route replacement
      mlxsw: spectrum_router: Prevent incorrect replacement of local table routes
      net: dsa: microchip: enable module autoprobe
      ipv6/addrconf: fix potential NULL deref in inet6_set_link_af()
      dpaa_eth: support all modes with rate adapting PHYs
      net: stmmac: update pci platform data to use phy_interface
      net: stmmac: xgmac: fix missing IFF_MULTICAST checki in dwxgmac2_set_filter
      net: stmmac: fix missing IFF_MULTICAST check in dwmac4_set_filter
      ...
    torvalds committed Feb 9, 2020
    Copy the full SHA
    291abfe View commit details
    Browse the repository at this point in the history

Commits on Feb 8, 2020

  1. fs: Add VirtualBox guest shared folder (vboxsf) support

    VirtualBox hosts can share folders with guests, this commit adds a
    VFS driver implementing the Linux-guest side of this, allowing folders
    exported by the host to be mounted under Linux.
    
    This driver depends on the guest <-> host IPC functions exported by
    the vboxguest driver.
    
    Acked-by: Christoph Hellwig <hch@infradead.org>
    Signed-off-by: Hans de Goede <hdegoede@redhat.com>
    Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
    jwrdegoede authored and Al Viro committed Feb 8, 2020
    Copy the full SHA
    0fd1695 View commit details
    Browse the repository at this point in the history
  2. Merge tag 'powerpc-5.6-2' of git://git.kernel.org/pub/scm/linux/kerne…

    …l/git/powerpc/linux
    
    Pull powerpc fixes from Michael Ellerman:
    
     - Fix an existing bug in our user access handling, exposed by one of
       the bug fixes we merged this cycle.
    
     - A fix for a boot hang on 32-bit with CONFIG_TRACE_IRQFLAGS and the
       recently added CONFIG_VMAP_STACK.
    
    Thanks to: Christophe Leroy, Guenter Roeck.
    
    * tag 'powerpc-5.6-2' of git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux:
      powerpc: Fix CONFIG_TRACE_IRQFLAGS with CONFIG_VMAP_STACK
      powerpc/futex: Fix incorrect user access blocking
    torvalds committed Feb 8, 2020
    Copy the full SHA
    d4f309c View commit details
    Browse the repository at this point in the history
  3. Fix up remaining devm_ioremap_nocache() in SGI IOC3 8250 UART driver

    This is a merge error on my part - the driver was merged into mainline
    by commit c5951e7 ("Merge tag 'mips_5.6' of git://../mips/linux")
    over a week ago, but nobody apparently noticed that it didn't actually
    build due to still having a reference to the devm_ioremap_nocache()
    function, removed a few days earlier through commit 6a1000b ("Merge
    tag 'ioremap-5.6' of git://../ioremap").
    
    Apparently this didn't get any build testing anywhere.  Not perhaps all
    that surprising: it's restricted to 64-bit MIPS only, and only with the
    new SGI_MFD_IOC3 support enabled.
    
    I only noticed because the ioremap conflicts in the ARM SoC driver
    update made me check there weren't any others hiding, and I found this
    one.
    
    Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
    torvalds committed Feb 8, 2020
    Copy the full SHA
    b0ef7cd View commit details
    Browse the repository at this point in the history
  4. Merge tag 'armsoc-late' of git://git.kernel.org/pub/scm/linux/kernel/…

    …git/soc/soc
    
    Pull ARM SoC late updates from Olof Johansson:
     "This is some material that we picked up into our tree late, or that
      had more complex dependencies on more than one topic branch that makes
      sense to keep separately.
    
       - TI support for secure accelerators and hwrng on OMAP4/5
    
       - TI camera changes for dra7 and am437x and SGX improvement due to
         better reset control support on am335x, am437x and dra7
    
       - Davinci moves to proper clocksource on DM365, and regulator/audio
         improvements for DM365 and DM644x eval boards"
    
    * tag 'armsoc-late' of git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc: (32 commits)
      ARM: dts: omap4-droid4: Enable hdq for droid4 ds250x 1-wire battery nvmem
      ARM: dts: motorola-cpcap-mapphone: Configure calibration interrupt
      ARM: dts: Configure interconnect target module for am437x sgx
      ARM: dts: Configure sgx for dra7
      ARM: dts: Configure rstctrl reset for am335x SGX
      ARM: dts: dra7: Add ti-sysc node for VPE
      ARM: dts: dra7: add vpe clkctrl node
      ARM: dts: am43x-epos-evm: Add VPFE and OV2659 entries
      ARM: dts: am437x-sk-evm: Add VPFE and OV2659 entries
      ARM: dts: am43xx: add support for clkout1 clock
      arm: dts: dra76-evm: Add CAL and OV5640 nodes
      arm: dtsi: dra76x: Add CAL dtsi node
      arm: dts: dra72-evm-common: Add entries for the CSI2 cameras
      ARM: dts: DRA72: Add CAL dtsi node
      ARM: dts: dra7-l4: Add ti-sysc node for CAM
      ARM: OMAP: DRA7xx: Make CAM clock domain SWSUP only
      ARM: dts: dra7: add cam clkctrl node
      ARM: OMAP2+: Drop legacy platform data for omap4 des
      ARM: OMAP2+: Drop legacy platform data for omap4 sham
      ARM: OMAP2+: Drop legacy platform data for omap4 aes
      ...
    torvalds committed Feb 8, 2020
    Copy the full SHA
    4ef1a30 View commit details
    Browse the repository at this point in the history
  5. Merge tag 'armsoc-defconfig' of git://git.kernel.org/pub/scm/linux/ke…

    …rnel/git/soc/soc
    
    Pull ARM SoC defconfig updates from Olof Johansson:
     "We keep this in a separate branch to avoid cross-branch conflicts, but
      most of the material here is fairly boring -- some new drivers turned
      on for hardware since they were merged, and some refreshed files due
      to time having moved a lot of entries around"
    
    * tag 'armsoc-defconfig' of git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc: (38 commits)
      ARM: configs: at91: enable MMC_SDHCI_OF_AT91 and MICROCHIP_PIT64B
      arm64: defconfig: Enable Broadcom's GENET Ethernet controller
      ARM: multi_v7_defconfig: Enable devfreq thermal integration
      ARM: exynos_defconfig: Enable devfreq thermal integration
      ARM: multi_v7_defconfig: Enable NFS v4.1 and v4.2
      ARM: exynos_defconfig: Enable NFS v4.1 and v4.2
      arm64: defconfig: Enable Actions Semi specific drivers
      arm64: defconfig: Enable Broadcom's STB PCIe controller
      arm64: defconfig: Enable CONFIG_CLK_IMX8MP by default
      ARM: configs: at91: enable config flags for sam9x60 SoC
      ARM: configs: at91: use savedefconfig
      arm64: defconfig: Enable tegra XUDC support
      ARM: defconfig: gemini: Update defconfig
      arm64: defconfig: enable CONFIG_ARM_QCOM_CPUFREQ_NVMEM
      arm64: defconfig: enable CONFIG_QCOM_CPR
      arm64: defconfig: Enable HFPLL
      arm64: defconfig: Enable CRYPTO_DEV_FSL_CAAM
      ARM: imx_v6_v7_defconfig: Select the TFP410 driver
      ARM: imx_v6_v7_defconfig: Enable NFS_V4_1 and NFS_V4_2 support
      arm64: defconfig: Enable ATH10K_SNOC
      ...
    torvalds committed Feb 8, 2020
    Copy the full SHA
    5939224 View commit details
    Browse the repository at this point in the history
  6. Merge tag 'armsoc-drivers' of git://git.kernel.org/pub/scm/linux/kern…

    …el/git/soc/soc
    
    Pull ARM SoC-related driver updates from Olof Johansson:
     "Various driver updates for platforms:
    
       - Nvidia: Fuse support for Tegra194, continued memory controller
         pieces for Tegra30
    
       - NXP/FSL: Refactorings of QuickEngine drivers to support
         ARM/ARM64/PPC
    
       - NXP/FSL: i.MX8MP SoC driver pieces
    
       - TI Keystone: ring accelerator driver
    
       - Qualcomm: SCM driver cleanup/refactoring + support for new SoCs.
    
       - Xilinx ZynqMP: feature checking interface for firmware. Mailbox
         communication for power management
    
       - Overall support patch set for cpuidle on more complex hierarchies
         (PSCI-based)
    
      and misc cleanups, refactorings of Marvell, TI, other platforms"
    
    * tag 'armsoc-drivers' of git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc: (166 commits)
      drivers: soc: xilinx: Use mailbox IPI callback
      dt-bindings: power: reset: xilinx: Add bindings for ipi mailbox
      drivers: soc: ti: knav_qmss_queue: Pass lockdep expression to RCU lists
      MAINTAINERS: Add brcmstb PCIe controller entry
      soc/tegra: fuse: Unmap registers once they are not needed anymore
      soc/tegra: fuse: Correct straps' address for older Tegra124 device trees
      soc/tegra: fuse: Warn if straps are not ready
      soc/tegra: fuse: Cache values of straps and Chip ID registers
      memory: tegra30-emc: Correct error message for timed out auto calibration
      memory: tegra30-emc: Firm up hardware programming sequence
      memory: tegra30-emc: Firm up suspend/resume sequence
      soc/tegra: regulators: Do nothing if voltage is unchanged
      memory: tegra: Correct reset value of xusb_hostr
      soc/tegra: fuse: Add APB DMA dependency for Tegra20
      bus: tegra-aconnect: Remove PM_CLK dependency
      dt-bindings: mediatek: add MT6765 power dt-bindings
      soc: mediatek: cmdq: delete not used define
      memory: tegra: Add support for the Tegra194 memory controller
      memory: tegra: Only include support for enabled SoCs
      memory: tegra: Support DVFS on Tegra186 and later
      ...
    torvalds committed Feb 8, 2020
    Copy the full SHA
    eab3540 View commit details
    Browse the repository at this point in the history
  7. Merge tag 'armsoc-dt' of git://git.kernel.org/pub/scm/linux/kernel/gi…

    …t/soc/soc
    
    Pull ARM Device-tree updates from Olof Johansson:
     "New SoCs:
    
       - Atmel/Microchip SAM9X60 (ARM926 SoC)
    
       - OMAP 37xx gets split into AM3703/AM3715/DM3725, who are all
         variants of it with different GPU/media IP configurations.
    
       - ST stm32mp15 SoCs (1-2 Cortex-A7, CAN, GPU depending on SKU)
    
       - ST Ericsson ab8505 (variant of ab8500) and db8520 (variant of
         db8500)
    
       - Unisoc SC9863A SoC (8x Cortex-A55 mobile chipset w/ GPU, modem)
    
       - Qualcomm SC7180 (8-core 64bit SoC, unnamed CPU class)
    
      New boards:
    
       - Allwinner:
          + Emlid Neutis SoM (H3 variant)
          + Libre Computer ALL-H3-IT
          + PineH64 Model B
    
       - Amlogic:
          + Libretech Amlogic GX PC (s905d and s912-based variants)
    
       - Atmel/Microchip:
          + Kizboxmini, sam9x60 EK, sama5d27 Wireless SOM (wlsom1)
    
       - Marvell:
          + Armada 385-based SolidRun Clearfog GTR
    
       - NXP:
          + Gateworks GW59xx boards based on i.MX6/6Q/6QDL
          + Tolino Shine 3 eBook reader (i.MX6sl)
          + Embedded Artists COM (i.MX7ULP)
          + SolidRun CLearfog CX/ITX and HoneyComb (LX2160A-based systems)
          + Google Coral Edge TPU (i.MX8MQ)
    
       - Rockchip:
          + Radxa Dalang Carrier (supports rk3288 and rk3399 SOMs)
          + Radxa Rock Pi N10 (RK3399Pro-based)
          + VMARC RK3399Pro SOM
    
       - ST:
          + Reference boards for stm32mp15
    
       - ST Ericsson:
          + Samsung Galaxy S III mini (GT-I8190)
          + HREF520 reference board for DB8520
    
       - TI OMAP:
          + Gen1 Amazon Echo (OMAP3630-based)
    
       - Qualcomm:
          + Inforce 6640 Single Board Computer (msm8996-based)
          + SC7180 IDP (SC7180-based)"
    
    * tag 'armsoc-dt' of git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc: (623 commits)
      dt-bindings: fix compilation error of the example in marvell,mmp3-hsic-phy.yaml
      arm64: dts: ti: k3-am654-base-board: Add CSI2 OV5640 camera
      arm64: dts: ti: k3-am65-main Add CAL node
      arm64: dts: ti: k3-j721e-main: Add McASP nodes
      arm64: dts: ti: k3-am654-main: Add McASP nodes
      arm64: dts: ti: k3-j721e: DMA support
      arm64: dts: ti: k3-j721e-main: Move secure proxy and smmu under main_navss
      arm64: dts: ti: k3-j721e-main: Correct main NAVSS representation
      arm64: dts: ti: k3-j721e: Correct the address for MAIN NAVSS
      arm64: dts: ti: k3-am65: DMA support
      arm64: dts: ti: k3-am65-main: Move secure proxy under cbass_main_navss
      arm64: dts: ti: k3-am65-main: Correct main NAVSS representation
      ARM: dts: aspeed: rainier: Add UCD90320 power sequencer
      ARM: dts: aspeed: rainier: Switch PSUs to unknown version
      arm64: dts: rockchip: Kill off "simple-panel" compatibles
      ARM: dts: rockchip: Kill off "simple-panel" compatibles
      arm64: dts: rockchip: rename dwmmc node names to mmc
      ARM: dts: rockchip: rename dwmmc node names to mmc
      arm64: dts: exynos: Rename Samsung and Exynos to lowercase
      arm64: dts: uniphier: add reset-names to NAND controller node
      ...
    torvalds committed Feb 8, 2020
    Copy the full SHA
    1afa9c3 View commit details
    Browse the repository at this point in the history
  8. Merge tag 'armsoc-soc' of git://git.kernel.org/pub/scm/linux/kernel/g…

    …it/soc/soc
    
    Pull ARM SoC platform updates from Olof Johansson:
     "Most of these are smaller fixes that have accrued, and some continued
      cleanup of OMAP platforms towards shared frameworks.
    
      One new SoC from Atmel/Microchip: sam9x60"
    
    * tag 'armsoc-soc' of git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc: (35 commits)
      ARM: OMAP2+: Fix undefined reference to omap_secure_init
      ARM: s3c64xx: Drop unneeded select of TIMER_OF
      ARM: exynos: Drop unneeded select of MIGHT_HAVE_CACHE_L2X0
      ARM: s3c24xx: Switch to atomic pwm API in rx1950
      ARM: OMAP2+: sleep43xx: Call secure suspend/resume handlers
      ARM: OMAP2+: Use ARM SMC Calling Convention when OP-TEE is available
      ARM: OMAP2+: Introduce check for OP-TEE in omap_secure_init()
      ARM: OMAP2+: Add omap_secure_init callback hook for secure initialization
      ARM: at91: Documentation: add sam9x60 product and datasheet
      ARM: at91: pm: use of_device_id array to find the proper shdwc node
      ARM: at91: pm: use SAM9X60 PMC's compatible
      ARM: imx: only select ARM_ERRATA_814220 for ARMv7-A
      ARM: zynq: use physical cpuid in zynq_slcr_cpu_stop/start
      ARM: tegra: Use clk_m CPU on Tegra124 LP1 resume
      ARM: tegra: Modify reshift divider during LP1
      ARM: tegra: Enable PLLP bypass during Tegra124 LP1
      ARM: samsung: Rename Samsung and Exynos to lowercase
      ARM: exynos: Correct the help text for platform Kconfig option
      ARM: bcm: Select ARM_AMBA for ARCH_BRCMSTB
      ARM: brcmstb: Add debug UART entry for 7216
      ...
    torvalds committed Feb 8, 2020
    Copy the full SHA
    469030d View commit details
    Browse the repository at this point in the history
  9. Merge tag 'compat-ioctl-fix' of git://git.kernel.org:/pub/scm/linux/k…

    …ernel/git/arnd/playground
    
    Pull compat-ioctl fix from Arnd Bergmann:
     "One patch in the compat-ioctl series broke 32-bit rootfs for multiple
      people testing on 64-bit kernels. Let's fix it in -rc1 before others
      run into the same issue"
    
    * tag 'compat-ioctl-fix' of git://git.kernel.org:/pub/scm/linux/kernel/git/arnd/playground:
      compat_ioctl: fix FIONREAD on devices
    torvalds committed Feb 8, 2020
    Copy the full SHA
    b85080c View commit details
    Browse the repository at this point in the history
  10. Merge branch 'merge.nfs-fs_parse.1' of git://git.kernel.org/pub/scm/l…

    …inux/kernel/git/viro/vfs
    
    Pull vfs file system parameter updates from Al Viro:
     "Saner fs_parser.c guts and data structures. The system-wide registry
      of syntax types (string/enum/int32/oct32/.../etc.) is gone and so is
      the horror switch() in fs_parse() that would have to grow another case
      every time something got added to that system-wide registry.
    
      New syntax types can be added by filesystems easily now, and their
      namespace is that of functions - not of system-wide enum members. IOW,
      they can be shared or kept private and if some turn out to be widely
      useful, we can make them common library helpers, etc., without having
      to do anything whatsoever to fs_parse() itself.
    
      And we already get that kind of requests - the thing that finally
      pushed me into doing that was "oh, and let's add one for timeouts -
      things like 15s or 2h". If some filesystem really wants that, let them
      do it. Without somebody having to play gatekeeper for the variants
      blessed by direct support in fs_parse(), TYVM.
    
      Quite a bit of boilerplate is gone. And IMO the data structures make a
      lot more sense now. -200LoC, while we are at it"
    
    * 'merge.nfs-fs_parse.1' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs: (25 commits)
      tmpfs: switch to use of invalfc()
      cgroup1: switch to use of errorfc() et.al.
      procfs: switch to use of invalfc()
      hugetlbfs: switch to use of invalfc()
      cramfs: switch to use of errofc() et.al.
      gfs2: switch to use of errorfc() et.al.
      fuse: switch to use errorfc() et.al.
      ceph: use errorfc() and friends instead of spelling the prefix out
      prefix-handling analogues of errorf() and friends
      turn fs_param_is_... into functions
      fs_parse: handle optional arguments sanely
      fs_parse: fold fs_parameter_desc/fs_parameter_spec
      fs_parser: remove fs_parameter_description name field
      add prefix to fs_context->log
      ceph_parse_param(), ceph_parse_mon_ips(): switch to passing fc_log
      new primitive: __fs_parse()
      switch rbd and libceph to p_log-based primitives
      struct p_log, variants of warnf() et.al. taking that one instead
      teach logfc() to handle prefices, give it saner calling conventions
      get rid of cg_invalf()
      ...
    torvalds committed Feb 8, 2020
    Copy the full SHA
    c9d35ee View commit details
    Browse the repository at this point in the history
  11. Merge branch 'work.misc' of git://git.kernel.org/pub/scm/linux/kernel…

    …/git/viro/vfs
    
    Pull misc vfs updates from Al Viro:
    
     - bmap series from cmaiolino
    
     - getting rid of convolutions in copy_mount_options() (use a couple of
       copy_from_user() instead of the __get_user() crap)
    
    * 'work.misc' of git://git.kernel.org/pub/scm/linux/kernel/git/viro/vfs:
      saner copy_mount_options()
      fibmap: Reject negative block numbers
      fibmap: Use bmap instead of ->bmap method in ioctl_fibmap
      ecryptfs: drop direct calls to ->bmap
      cachefiles: drop direct usage of ->bmap method.
      fs: Enable bmap() function to properly return errors
    torvalds committed Feb 8, 2020
    Copy the full SHA
    236f453 View commit details
    Browse the repository at this point in the history
  12. Merge branch 'pipe-exclusive-wakeup'

    Merge thundering herd avoidance on pipe IO.
    
    This would have been applied for 5.5 already, but got delayed because of
    a user-space race condition in the GNU make jobserver code.  Now that
    there's a new GNU make 4.3 release, and most distributions seem to have
    at least applied the (almost three year old) fix for the problem, let's
    see if people notice.
    
    And it might have been just bad random timing luck on my machine.
    
    If you do hit the race condition, things will still work, but the
    symptom is that you don't get nearly the expected parallelism when using
    "make -j<N>".
    
    The jobserver bug can definitely happen without this patch too, but
    seems to be easier to trigger when we no longer wake up pipe waiters
    unnecessarily.
    
    * pipe-exclusive-wakeup:
      pipe: use exclusive waits when reading or writing
    torvalds committed Feb 8, 2020
    Copy the full SHA
    9959333 View commit details
    Browse the repository at this point in the history
Older