Skip to content
Permalink
Matthew-Wilcox…
Switch branches/tags

Commits on Jul 12, 2021

  1. mm/workingset: Convert workingset_activation to take a folio

    This function already assumed it was being passed a head page.  No real
    change here, except that thp_nr_pages() compiles away on kernels with
    THP compiled out while folio_nr_pages() is always present.  Also convert
    page_memcg_rcu() to folio_memcg_rcu().
    
    Signed-off-by: Matthew Wilcox (Oracle) <willy@infradead.org>
    Reviewed-by: Christoph Hellwig <hch@lst.de>
    Matthew Wilcox (Oracle) authored and intel-lab-lkp committed Jul 12, 2021
  2. mm/memcg: Add folio_lruvec_relock_irq() and folio_lruvec_relock_irqsa…

    …ve()
    
    These are the folio equivalents of relock_page_lruvec_irq() and
    folio_lruvec_relock_irqsave().  Also convert page_matches_lruvec()
    to folio_matches_lruvec().
    
    Signed-off-by: Matthew Wilcox (Oracle) <willy@infradead.org>
    Matthew Wilcox (Oracle) authored and intel-lab-lkp committed Jul 12, 2021
  3. mm/memcg: Add folio_lruvec_lock() and similar functions

    These are the folio equivalents of lock_page_lruvec() and similar
    functions.  Also convert lruvec_memcg_debug() to take a folio.
    
    Signed-off-by: Matthew Wilcox (Oracle) <willy@infradead.org>
    Matthew Wilcox (Oracle) authored and intel-lab-lkp committed Jul 12, 2021
  4. mm/memcg: Add folio_lruvec()

    This replaces mem_cgroup_page_lruvec().  All callers converted.
    
    Signed-off-by: Matthew Wilcox (Oracle) <willy@infradead.org>
    Matthew Wilcox (Oracle) authored and intel-lab-lkp committed Jul 12, 2021
  5. mm/memcg: Convert mem_cgroup_move_account() to use a folio

    This saves dozens of bytes of text by eliminating a lot of calls to
    compound_head().
    
    Signed-off-by: Matthew Wilcox (Oracle) <willy@infradead.org>
    Matthew Wilcox (Oracle) authored and intel-lab-lkp committed Jul 12, 2021
  6. mm/memcg: Add folio_memcg_lock() and folio_memcg_unlock()

    These are the folio equivalents of lock_page_memcg() and
    unlock_page_memcg().
    
    lock_page_memcg() and unlock_page_memcg() have too many callers to be
    easily replaced in a single patch, so reimplement them as wrappers for
    now to be cleaned up later when enough callers have been converted to
    use folios.
    
    Signed-off-by: Matthew Wilcox (Oracle) <willy@infradead.org>
    Matthew Wilcox (Oracle) authored and intel-lab-lkp committed Jul 12, 2021
  7. mm/memcg: Convert mem_cgroup_track_foreign_dirty_slowpath() to folio

    The page was only being used for the memcg and to gather trace
    information, so this is a simple conversion.  The only caller of
    mem_cgroup_track_foreign_dirty() will be converted to folios in a later
    patch, so doing this now makes that patch simpler.
    
    Signed-off-by: Matthew Wilcox (Oracle) <willy@infradead.org>
    Reviewed-by: Christoph Hellwig <hch@lst.de>
    Matthew Wilcox (Oracle) authored and intel-lab-lkp committed Jul 12, 2021
  8. mm/memcg: Convert mem_cgroup_migrate() to take folios

    Convert all callers of mem_cgroup_migrate() to call page_folio() first.
    They all look like they're using head pages already, but this proves it.
    
    Signed-off-by: Matthew Wilcox (Oracle) <willy@infradead.org>
    Reviewed-by: Christoph Hellwig <hch@lst.de>
    Matthew Wilcox (Oracle) authored and intel-lab-lkp committed Jul 12, 2021
  9. mm/memcg: Convert mem_cgroup_uncharge() to take a folio

    Convert all the callers to call page_folio().  Most of them were already
    using a head page, but a few of them I can't prove were, so this may
    actually fix a bug.
    
    Signed-off-by: Matthew Wilcox (Oracle) <willy@infradead.org>
    Reviewed-by: Christoph Hellwig <hch@lst.de>
    Matthew Wilcox (Oracle) authored and intel-lab-lkp committed Jul 12, 2021
  10. mm/memcg: Convert uncharge_page() to uncharge_folio()

    Use a folio rather than a page to ensure that we're only operating on
    base or head pages, and not tail pages.
    
    Signed-off-by: Matthew Wilcox (Oracle) <willy@infradead.org>
    Reviewed-by: Christoph Hellwig <hch@lst.de>
    Matthew Wilcox (Oracle) authored and intel-lab-lkp committed Jul 12, 2021
  11. mm/memcg: Convert mem_cgroup_charge() to take a folio

    Convert all callers of mem_cgroup_charge() to call page_folio() on the
    page they're currently passing in.  Many of them will be converted to
    use folios themselves soon.
    
    Signed-off-by: Matthew Wilcox (Oracle) <willy@infradead.org>
    Reviewed-by: Christoph Hellwig <hch@lst.de>
    Matthew Wilcox (Oracle) authored and intel-lab-lkp committed Jul 12, 2021
  12. mm/memcg: Convert commit_charge() to take a folio

    The memcg_data is only set on the head page, so enforce that by
    typing it as a folio.
    
    Signed-off-by: Matthew Wilcox (Oracle) <willy@infradead.org>
    Reviewed-by: Christoph Hellwig <hch@lst.de>
    Acked-by: Michal Hocko <mhocko@suse.com>
    Matthew Wilcox (Oracle) authored and intel-lab-lkp committed Jul 12, 2021
  13. mm/memcg: Add folio_memcg() and related functions

    memcg information is only stored in the head page, so the memcg
    subsystem needs to assure that all accesses are to the head page.
    The first step is converting page_memcg() to folio_memcg().
    
    The callers of page_memcg() and PageMemcgKmem() are not yet ready to be
    converted to use folios, so retain them as wrappers around folio_memcg()
    and folio_memcg_kmem().  They will be converted in a later patch set.
    
    Signed-off-by: Matthew Wilcox (Oracle) <willy@infradead.org>
    Reviewed-by: Christoph Hellwig <hch@lst.de>
    Matthew Wilcox (Oracle) authored and intel-lab-lkp committed Jul 12, 2021
  14. mm/memcg: Convert memcg_check_events to take a node ID

    memcg_check_events only uses the page's nid, so call page_to_nid in the
    callers to make the interface easier to understand.
    
    Signed-off-by: Matthew Wilcox (Oracle) <willy@infradead.org>
    Acked-by: Michal Hocko <mhocko@suse.com>
    Reviewed-by: Christoph Hellwig <hch@lst.de>
    Matthew Wilcox (Oracle) authored and intel-lab-lkp committed Jul 12, 2021
  15. mm/memcg: Remove soft_limit_tree_node()

    Opencode this one-line function in its three callers.
    
    Signed-off-by: Matthew Wilcox (Oracle) <willy@infradead.org>
    Acked-by: Michal Hocko <mhocko@suse.com>
    Acked-by: Johannes Weiner <hannes@cmpxchg.org>
    Reviewed-by: Christoph Hellwig <hch@lst.de>
    Matthew Wilcox (Oracle) authored and intel-lab-lkp committed Jul 12, 2021
  16. mm/memcg: Use the node id in mem_cgroup_update_tree()

    By using the node id in mem_cgroup_update_tree(), we can delete
    soft_limit_tree_from_page() and mem_cgroup_page_nodeinfo().  Saves 42
    bytes of kernel text on my config.
    
    Signed-off-by: Matthew Wilcox (Oracle) <willy@infradead.org>
    Acked-by: Michal Hocko <mhocko@suse.com>
    Acked-by: Johannes Weiner <hannes@cmpxchg.org>
    Reviewed-by: Christoph Hellwig <hch@lst.de>
    Matthew Wilcox (Oracle) authored and intel-lab-lkp committed Jul 12, 2021
  17. mm/memcg: Remove 'page' parameter to mem_cgroup_charge_statistics()

    The last use of 'page' was removed by commit 468c398 ("mm:
    memcontrol: switch to native NR_ANON_THPS counter"), so we can now remove
    the parameter from the function.
    
    Signed-off-by: Matthew Wilcox (Oracle) <willy@infradead.org>
    Reviewed-by: Christoph Hellwig <hch@lst.de>
    Acked-by: Michal Hocko <mhocko@suse.com>
    Acked-by: Johannes Weiner <hannes@cmpxchg.org>
    Matthew Wilcox (Oracle) authored and intel-lab-lkp committed Jul 12, 2021
  18. mm: Add folio_nid()

    This is the folio equivalent of page_to_nid().
    
    Signed-off-by: Matthew Wilcox (Oracle) <willy@infradead.org>
    Reviewed-by: Christoph Hellwig <hch@lst.de>
    Matthew Wilcox (Oracle) authored and intel-lab-lkp committed Jul 12, 2021

Commits on Jul 11, 2021

  1. Linux 5.14-rc1

    torvalds committed Jul 11, 2021
  2. mm/rmap: try_to_migrate() skip zone_device !device_private

    I know nothing about zone_device pages and !device_private pages; but if
    try_to_migrate_one() will do nothing for them, then it's better that
    try_to_migrate() filter them first, than trawl through all their vmas.
    
    Signed-off-by: Hugh Dickins <hughd@google.com>
    Reviewed-by: Shakeel Butt <shakeelb@google.com>
    Reviewed-by: Alistair Popple <apopple@nvidia.com>
    Link: https://lore.kernel.org/lkml/1241d356-8ec9-f47b-a5ec-9b2bf66d242@google.com/
    Cc: Andrew Morton <akpm@linux-foundation.org>
    Cc: Jason Gunthorpe <jgg@nvidia.com>
    Cc: Ralph Campbell <rcampbell@nvidia.com>
    Cc: Christoph Hellwig <hch@lst.de>
    Cc: Yang Shi <shy828301@gmail.com>
    Cc: Kirill A. Shutemov <kirill.shutemov@linux.intel.com>
    Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
    Hugh Dickins authored and torvalds committed Jul 11, 2021
  3. mm/rmap: fix new bug: premature return from page_mlock_one()

    In the unlikely race case that page_mlock_one() finds VM_LOCKED has been
    cleared by the time it got page table lock, page_vma_mapped_walk_done()
    must be called before returning, either explicitly, or by a final call
    to page_vma_mapped_walk() - otherwise the page table remains locked.
    
    Fixes: cd62734 ("mm/rmap: split try_to_munlock from try_to_unmap")
    Signed-off-by: Hugh Dickins <hughd@google.com>
    Reviewed-by: Alistair Popple <apopple@nvidia.com>
    Reviewed-by: Shakeel Butt <shakeelb@google.com>
    Reported-by: kernel test robot <oliver.sang@intel.com>
    Link: https://lore.kernel.org/lkml/20210711151446.GB4070@xsang-OptiPlex-9020/
    Link: https://lore.kernel.org/lkml/f71f8523-cba7-3342-40a7-114abc5d1f51@google.com/
    Cc: Andrew Morton <akpm@linux-foundation.org>
    Cc: Jason Gunthorpe <jgg@nvidia.com>
    Cc: Ralph Campbell <rcampbell@nvidia.com>
    Cc: Christoph Hellwig <hch@lst.de>
    Cc: Yang Shi <shy828301@gmail.com>
    Cc: Kirill A. Shutemov <kirill.shutemov@linux.intel.com>
    Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
    Hugh Dickins authored and torvalds committed Jul 11, 2021
  4. mm/rmap: fix old bug: munlocking THP missed other mlocks

    The kernel recovers in due course from missing Mlocked pages: but there
    was no point in calling page_mlock() (formerly known as
    try_to_munlock()) on a THP, because nothing got done even when it was
    found to be mapped in another VM_LOCKED vma.
    
    It's true that we need to be careful: Mlocked accounting of pte-mapped
    THPs is too difficult (so consistently avoided); but Mlocked accounting
    of only-pmd-mapped THPs is supposed to work, even when multiple mappings
    are mlocked and munlocked or munmapped.  Refine the tests.
    
    There is already a VM_BUG_ON_PAGE(PageDoubleMap) in page_mlock(), so
    page_mlock_one() does not even have to worry about that complication.
    
    (I said the kernel recovers: but would page reclaim be likely to split
    THP before rediscovering that it's VM_LOCKED? I've not followed that up)
    
    Fixes: 9a73f61 ("thp, mlock: do not mlock PTE-mapped file huge pages")
    Signed-off-by: Hugh Dickins <hughd@google.com>
    Reviewed-by: Shakeel Butt <shakeelb@google.com>
    Acked-by: Kirill A. Shutemov <kirill.shutemov@linux.intel.com>
    Link: https://lore.kernel.org/lkml/cfa154c-d595-406-eb7d-eb9df730f944@google.com/
    Cc: Andrew Morton <akpm@linux-foundation.org>
    Cc: Alistair Popple <apopple@nvidia.com>
    Cc: Jason Gunthorpe <jgg@nvidia.com>
    Cc: Ralph Campbell <rcampbell@nvidia.com>
    Cc: Christoph Hellwig <hch@lst.de>
    Cc: Yang Shi <shy828301@gmail.com>
    Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
    Hugh Dickins authored and torvalds committed Jul 11, 2021
  5. mm/rmap: fix comments left over from recent changes

    Parallel developments in mm/rmap.c have left behind some out-of-date
    comments: try_to_migrate_one() also accepts TTU_SYNC (already commented
    in try_to_migrate() itself), and try_to_migrate() returns nothing at
    all.
    
    TTU_SPLIT_FREEZE has just been deleted, so reword the comment about it
    in mm/huge_memory.c; and TTU_IGNORE_ACCESS was removed in 5.11, so
    delete the "recently referenced" comment from try_to_unmap_one() (once
    upon a time the comment was near the removed codeblock, but they drifted
    apart).
    
    Signed-off-by: Hugh Dickins <hughd@google.com>
    Reviewed-by: Shakeel Butt <shakeelb@google.com>
    Reviewed-by: Alistair Popple <apopple@nvidia.com>
    Link: https://lore.kernel.org/lkml/563ce5b2-7a44-5b4d-1dfd-59a0e65932a9@google.com/
    Cc: Andrew Morton <akpm@linux-foundation.org>
    Cc: Jason Gunthorpe <jgg@nvidia.com>
    Cc: Ralph Campbell <rcampbell@nvidia.com>
    Cc: Christoph Hellwig <hch@lst.de>
    Cc: Yang Shi <shy828301@gmail.com>
    Cc: Kirill A. Shutemov <kirill.shutemov@linux.intel.com>
    Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
    Hugh Dickins authored and torvalds committed Jul 11, 2021
  6. Merge tag 'irq-urgent-2021-07-11' of git://git.kernel.org/pub/scm/lin…

    …ux/kernel/git/tip/tip
    
    Pull irq fixes from Ingo Molnar:
     "Two fixes:
    
       - Fix a MIPS IRQ handling RCU bug
    
       - Remove a DocBook annotation for a parameter that doesn't exist
         anymore"
    
    * tag 'irq-urgent-2021-07-11' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
      irqchip/mips: Fix RCU violation when using irqdomain lookup on interrupt entry
      genirq/irqdesc: Drop excess kernel-doc entry @lookup
    torvalds committed Jul 11, 2021
  7. Merge tag 'sched-urgent-2021-07-11' of git://git.kernel.org/pub/scm/l…

    …inux/kernel/git/tip/tip
    
    Pull scheduler fixes from Ingo Molnar:
     "Three fixes:
    
       - Fix load tracking bug/inconsistency
    
       - Fix a sporadic CFS bandwidth constraints enforcement bug
    
       - Fix a uclamp utilization tracking bug for newly woken tasks"
    
    * tag 'sched-urgent-2021-07-11' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
      sched/uclamp: Ignore max aggregation if rq is idle
      sched/fair: Fix CFS bandwidth hrtimer expiry type
      sched/fair: Sync load_sum with load_avg after dequeue
    torvalds committed Jul 11, 2021
  8. Merge tag 'perf-urgent-2021-07-11' of git://git.kernel.org/pub/scm/li…

    …nux/kernel/git/tip/tip
    
    Pull perf fixes from Ingo Molnar:
     "A fix and a hardware-enablement addition:
    
       - Robustify uncore_snbep's skx_iio_set_mapping()'s error cleanup
    
       - Add cstate event support for Intel ICELAKE_X and ICELAKE_D"
    
    * tag 'perf-urgent-2021-07-11' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
      perf/x86/intel/uncore: Clean up error handling path of iio mapping
      perf/x86/cstate: Add ICELAKE_X and ICELAKE_D support
    torvalds committed Jul 11, 2021
  9. Merge tag 'locking-urgent-2021-07-11' of git://git.kernel.org/pub/scm…

    …/linux/kernel/git/tip/tip
    
    Pull locking fixes from Ingo Molnar:
    
     - Fix a Sparc crash
    
     - Fix a number of objtool warnings
    
     - Fix /proc/lockdep output on certain configs
    
     - Restore a kprobes fail-safe
    
    * tag 'locking-urgent-2021-07-11' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/tip:
      locking/atomic: sparc: Fix arch_cmpxchg64_local()
      kprobe/static_call: Restore missing static_call_text_reserved()
      static_call: Fix static_call_text_reserved() vs __init
      jump_label: Fix jump_label_text_reserved() vs __init
      locking/lockdep: Fix meaningless /proc/lockdep output of lock classes on !CONFIG_PROVE_LOCKING
    torvalds committed Jul 11, 2021
  10. Merge tag 'scsi-misc' of git://git.kernel.org/pub/scm/linux/kernel/gi…

    …t/jejb/scsi
    
    Pull more SCSI updates from James Bottomley:
     "This is a set of minor fixes and clean ups in the core and various
      drivers.
    
      The only core change in behaviour is the I/O retry for spinup notify,
      but that shouldn't impact anything other than the failing case"
    
    * tag 'scsi-misc' of git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi: (23 commits)
      scsi: virtio_scsi: Add validation for residual bytes from response
      scsi: ipr: System crashes when seeing type 20 error
      scsi: core: Retry I/O for Notify (Enable Spinup) Required error
      scsi: mpi3mr: Fix warnings reported by smatch
      scsi: qedf: Add check to synchronize abort and flush
      scsi: MAINTAINERS: Add mpi3mr driver maintainers
      scsi: libfc: Fix array index out of bound exception
      scsi: mvsas: Use DEVICE_ATTR_RO()/RW() macro
      scsi: megaraid_mbox: Use DEVICE_ATTR_ADMIN_RO() macro
      scsi: qedf: Use DEVICE_ATTR_RO() macro
      scsi: qedi: Use DEVICE_ATTR_RO() macro
      scsi: message: mptfc: Switch from pci_ to dma_ API
      scsi: be2iscsi: Fix some missing space in some messages
      scsi: be2iscsi: Fix an error handling path in beiscsi_dev_probe()
      scsi: ufs: Fix build warning without CONFIG_PM
      scsi: bnx2fc: Remove meaningless bnx2fc_abts_cleanup() return value assignment
      scsi: qla2xxx: Add heartbeat check
      scsi: virtio_scsi: Do not overwrite SCSI status
      scsi: libsas: Add LUN number check in .slave_alloc callback
      scsi: core: Inline scsi_mq_alloc_queue()
      ...
    torvalds committed Jul 11, 2021
  11. Merge tag 'perf-tools-for-v5.14-2021-07-10' of git://git.kernel.org/p…

    …ub/scm/linux/kernel/git/acme/linux
    
    Pull more perf tool updates from Arnaldo Carvalho de Melo:
     "New features:
    
       - Enable use of BPF counters with 'perf stat --for-each-cgroup',
         using per-CPU 'cgroup-switch' events with an attached BPF program
         that does aggregation per-cgroup in the kernel instead of using
         per-cgroup perf events.
    
       - Add Topdown metrics L2 events as default events in 'perf stat' for
         systems having those events.
    
      Hardware tracing:
    
       - Add a config for max loops without consuming a packet in the Intel
         PT packet decoder, set via 'perf config intel-pt.max-loops=N'
    
      Hardware enablement:
    
       - Disable misleading NMI watchdog message in 'perf stat' on hybrid
         systems such as Intel Alder Lake.
    
       - Add a dummy event on hybrid systems to collect metadata records.
    
       - Add 24x7 nest metric events for the Power10 platform.
    
      Fixes:
    
       - Fix event parsing for PMUs starting with the same prefix.
    
       - Fix the 'perf trace' 'trace' alias installation dir.
    
       - Fix buffer size to report iregs in perf script python scripts,
         supporting the extended registers in PowerPC.
    
       - Fix overflow in elf_sec__is_text().
    
       - Fix 's' on source line when disasm is empty in the annotation TUI,
         accessible via 'perf annotate', 'perf report' and 'perf top'.
    
       - Plug leaks in scandir() returned dirent entries in 'perf test' when
         sorting the shell tests.
    
       - Fix --task and --stat with pipe input in 'perf report'.
    
       - Fix 'perf probe' use of debuginfo files by build id.
    
       - If a DSO has both dynsym and symtab ELF sections, read from both
         when loading the symbol table, fixing a problem processing Fedora
         32 glibc DSOs.
    
      Libraries:
    
       - Add grouping of events to libperf, from code in tools/perf,
         allowing libperf users to use that mode.
    
      Misc:
    
       - Filter plt stubs from the 'perf probe --functions' output.
    
       - Update UAPI header copies for asound, DRM, mman-common.h and the
         ones affected by the quotactl_fd syscall"
    
    * tag 'perf-tools-for-v5.14-2021-07-10' of git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux: (29 commits)
      perf test: Add free() calls for scandir() returned dirent entries
      libperf: Add tests for perf_evlist__set_leader()
      libperf: Remove BUG_ON() from library code in get_group_fd()
      libperf: Add group support to perf_evsel__open()
      perf tools: Fix pattern matching for same substring in different PMU type
      perf record: Add a dummy event on hybrid systems to collect metadata records
      perf stat: Add Topdown metrics L2 events as default events
      libperf: Adopt evlist__set_leader() from tools/perf as perf_evlist__set_leader()
      libperf: Move 'nr_groups' from tools/perf to evlist::nr_groups
      libperf: Move 'leader' from tools/perf to perf_evsel::leader
      libperf: Move 'idx' from tools/perf to perf_evsel::idx
      libperf: Change tests to single static and shared binaries
      perf intel-pt: Add a config for max loops without consuming a packet
      perf stat: Disable the NMI watchdog message on hybrid
      perf vendor events power10: Adds 24x7 nest metric events for power10 platform
      perf script python: Fix buffer size to report iregs in perf script
      perf trace: Fix the perf trace link location
      perf top: Fix overflow in elf_sec__is_text()
      perf annotate: Fix 's' on source line when disasm is empty
      perf probe: Do not show @plt function by default
      ...
    torvalds committed Jul 11, 2021

Commits on Jul 10, 2021

  1. Merge tag 'rtc-5.14' of git://git.kernel.org/pub/scm/linux/kernel/git…

    …/abelloni/linux
    
    Pull RTC updates from Alexandre Belloni:
     "Mostly documentation/comment changes and non urgent fixes.
    
       - add or fix SPDX identifiers
    
       - NXP pcf*: fix datasheet URLs
    
       - imxdi: add wakeup support
    
       - pcf2127: handle timestamp interrupts, this fixes a possible
         interrupt storm
    
       - bd70528: Drop BD70528 support"
    
    * tag 'rtc-5.14' of git://git.kernel.org/pub/scm/linux/kernel/git/abelloni/linux: (33 commits)
      rtc: pcf8523: rename register and bit defines
      rtc: pcf2127: handle timestamp interrupts
      rtc: at91sam9: Remove unnecessary offset variable checks
      rtc: s5m: Check return value of s5m_check_peding_alarm_interrupt()
      rtc: spear: convert to SPDX identifier
      rtc: tps6586x: convert to SPDX identifier
      rtc: tps80031: convert to SPDX identifier
      rtc: rtd119x: Fix format of SPDX identifier
      rtc: sc27xx: Fix format of SPDX identifier
      rtc: palmas: convert to SPDX identifier
      rtc: max6900: convert to SPDX identifier
      rtc: ds1374: convert to SPDX identifier
      rtc: au1xxx: convert to SPDX identifier
      rtc: pcf85063: Update the PCF85063A datasheet revision
      dt-bindings: rtc: ti,bq32k: take maintainership
      rtc: pcf8563: Fix the datasheet URL
      rtc: pcf85063: Fix the datasheet URL
      rtc: pcf2127: Fix the datasheet URL
      dt-bindings: rtc: ti,bq32k: Convert to json-schema
      dt-bindings: rtc: rx8900: Convert to YAML schema
      ...
    torvalds committed Jul 10, 2021
  2. mm/page_alloc: Revert pahole zero-sized workaround

    Commit dbbee9d ("mm/page_alloc: convert per-cpu list protection to
    local_lock") folded in a workaround patch for pahole that was unable to
    deal with zero-sized percpu structures.
    
    A superior workaround is achieved with commit a0b8200 ("kbuild:
    skip per-CPU BTF generation for pahole v1.18-v1.21").
    
    This patch reverts the dummy field and the pahole version check.
    
    Fixes: dbbee9d ("mm/page_alloc: convert per-cpu list protection to local_lock")
    Signed-off-by: Mel Gorman <mgorman@techsingularity.net>
    Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
    gormanm authored and torvalds committed Jul 10, 2021
  3. rtc: pcf8523: rename register and bit defines

    arch/arm/mach-ixp4xx/include/mach/platform.h now gets included indirectly
    and defines REG_OFFSET. Rename the register and bit definition to something
    specific to the driver.
    
    Fixes: 7fd70c6 ("ARM: irqstat: Get rid of duplicated declaration")
    Reported-by: kernel test robot <lkp@intel.com>
    Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com>
    Link: https://lore.kernel.org/r/20210710211431.1393589-1-alexandre.belloni@bootlin.com
    alexandrebelloni committed Jul 10, 2021
  4. Merge tag '5.14-rc-smb3-fixes-part2' of git://git.samba.org/sfrench/c…

    …ifs-2.6
    
    Pull cifs fixes from Steve French:
     "13 cifs/smb3 fixes. Most are to address minor issues pointed out by
      Coverity.
    
      Also includes a packet signing enhancement and mount improvement"
    
    * tag '5.14-rc-smb3-fixes-part2' of git://git.samba.org/sfrench/cifs-2.6:
      cifs: update internal version number
      cifs: prevent NULL deref in cifs_compose_mount_options()
      SMB3.1.1: Add support for negotiating signing algorithm
      cifs: use helpers when parsing uid/gid mount options and validate them
      CIFS: Clarify SMB1 code for POSIX Lock
      CIFS: Clarify SMB1 code for rename open file
      CIFS: Clarify SMB1 code for delete
      CIFS: Clarify SMB1 code for SetFileSize
      smb3: fix typo in header file
      CIFS: Clarify SMB1 code for UnixSetPathInfo
      CIFS: Clarify SMB1 code for UnixCreateSymLink
      cifs: clarify SMB1 code for UnixCreateHardLink
      cifs: make locking consistent around the server session status
    torvalds committed Jul 10, 2021
  5. Merge tag 'pci-v5.14-fixes-1' of git://git.kernel.org/pub/scm/linux/k…

    …ernel/git/helgaas/pci
    
    Pull pci fix from Bjorn Helgaas:
     "Revert host bridge window patch that fixed HP EliteDesk 805 G6, but
      broke ppc:sam460ex (Bjorn Helgaas)"
    
    * tag 'pci-v5.14-fixes-1' of git://git.kernel.org/pub/scm/linux/kernel/git/helgaas/pci:
      Revert "PCI: Coalesce host bridge contiguous apertures"
    torvalds committed Jul 10, 2021
  6. Merge tag 'i3c/for-5.14' of git://git.kernel.org/pub/scm/linux/kernel…

    …/git/i3c/linux
    
    Pull i3c updates from Alexandre Belloni:
    
     - two small fixes to the svc driver
    
    * tag 'i3c/for-5.14' of git://git.kernel.org/pub/scm/linux/kernel/git/i3c/linux:
      i3c: master: svc: fix doc warning in svc-i3c-master.c
      i3c: master: svc: drop free_irq of devm_request_irq allocated irq
    torvalds committed Jul 10, 2021
Older