Skip to content
Permalink
Viresh-Kumar/v…
Switch branches/tags

Commits on Jul 22, 2021

  1. virtio: Bind virtio device to device-tree node

    Bind the virtio devices with their of_node. This will help users of the
    virtio devices to mention their dependencies on the device in the DT
    itself. Like GPIO pin users can use the phandle of the device node, or
    the node may contain more subnodes to add i2c or spi eeproms and other
    users.
    
    Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
    vireshk authored and intel-lab-lkp committed Jul 22, 2021
  2. uapi: virtio_ids: Sync ids with specification

    This synchronizes the virtio ids with the latest list from virtio
    specification.
    
    Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
    vireshk authored and intel-lab-lkp committed Jul 22, 2021
  3. dt-bindings: gpio: Add bindings for gpio-virtio

    This patch adds binding for virtio GPIO controller, it is based on
    virtio-device bindings.
    
    Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
    vireshk authored and intel-lab-lkp committed Jul 22, 2021
  4. dt-bindings: i2c: Add bindings for i2c-virtio

    This patch adds binding for virtio I2C device, it is based on
    virtio-device bindings.
    
    Cc: Wolfram Sang <wsa@kernel.org>
    Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
    vireshk authored and intel-lab-lkp committed Jul 22, 2021
  5. dt-bindings: virtio: Add binding for virtio devices

    Allow virtio device sub-nodes to be added to the virtio mmio or pci
    nodes. The compatible property for virtio device must be of format
    "virtio,<DID>", where DID is virtio device ID in hexadecimal format.
    
    Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
    vireshk authored and intel-lab-lkp committed Jul 22, 2021

Commits on Jul 19, 2021

  1. dt-bindings: PCI: remove designware-pcie.txt

    Now that the properties defined there were converted to DT schema,
    and the other dt-bindings are pointing to the new schemas,
    drop it.
    
    Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
    Link: https://lore.kernel.org/r/c93261b41f9ffe8d97d8c930f57b41aaf7de5264.1626608375.git.mchehab+huawei@kernel.org
    Signed-off-by: Rob Herring <robh@kernel.org>
    mchehab authored and robherring committed Jul 19, 2021
  2. dt-bindings: PCI: update references to Designware schema

    Now that its contents were converted to a DT schema, replace
    the references for the old file on existing properties.
    
    Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
    Link: https://lore.kernel.org/r/dfff4d94631546c53450d1baeddc694dd26b5c36.1626608375.git.mchehab+huawei@kernel.org
    Signed-off-by: Rob Herring <robh@kernel.org>
    mchehab authored and robherring committed Jul 19, 2021
  3. dt-bindings: PCI: add snps,dw-pcie-ep.yaml

    Currently, the designware schema is defined on a text file:
    	designware-pcie.txt
    
    It contains two separate schemas on it:
    
    - snps,dw-pcie
      This one uses the pci-bus.yaml schema;
    - snps,dw-pcie-ep
      This one uses the pci-ep.yaml schema.
    
    As the:
    	AllOf:
    	  - $ref: <foo>
    
    for the endpoint part is different than the PCI one, place
    it on a separate yaml file.
    
    Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
    Link: https://lore.kernel.org/r/26025b256232c2e4bd91954907b9d92db27199a3.1626608375.git.mchehab+huawei@kernel.org
    Signed-off-by: Rob Herring <robh@kernel.org>
    mchehab authored and robherring committed Jul 19, 2021
  4. dt-bindings: PCI: add snps,dw-pcie.yaml

    Currently, the designware schema is defined on a text file:
    	designware-pcie.txt
    
    Convert the pci-bus part into a schema.
    
    Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
    Link: https://lore.kernel.org/r/53363a7609176ca56c47ef57287466ee84087dc5.1626608375.git.mchehab+huawei@kernel.org
    Signed-off-by: Rob Herring <robh@kernel.org>
    mchehab authored and robherring committed Jul 19, 2021

Commits on Jul 16, 2021

  1. of: kexec: Remove FDT_PROP_* definitions

    The FDT_PROP_* definitions make it harder to follow the code.
    Remove them, and use the actual string literals instead.
    
    Signed-off-by: Geert Uytterhoeven <geert+renesas@glider.be>
    Link: https://lore.kernel.org/r/af415c86cd2ba9c8a6bb2eaaf56c3198a24b23d3.1626267092.git.geert+renesas@glider.be
    Signed-off-by: Rob Herring <robh@kernel.org>
    geertu authored and robherring committed Jul 16, 2021

Commits on Jul 15, 2021

  1. dt-bindings: i2c: brcm,iproc-i2c: convert to the json-schema

    This helps validating DTS files.
    
    Introduced changes:
    1. Added arm-gic.h include
    
    Signed-off-by: Rafał Miłecki <rafal@milecki.pl>
    Link: https://lore.kernel.org/r/20210713093155.1752-1-zajec5@gmail.com
    Signed-off-by: Rob Herring <robh@kernel.org>
    Rafał Miłecki authored and robherring committed Jul 15, 2021
  2. of: fdt: remove unnecessary codes

    While unflattening the device tree, we try to populate dt nodes and
    properties into tree-shaped data structure.
    
    In populate_properties function, pprev is initially set to
    &np->properties, and then updated to &pp->next.
    
    In both scenarios *pprev is NULL, since the memory area that we are
    allocating from is initially zeroed.
    
    I tested the code as below, and it showed that BUG was never called.
    
    -       if (!dryrun)
    +       if (!dryrun) {
    +               if (*pprev)
    +                       BUG();
                    *pprev = NULL;
    +       }
    
    Let's remove unnecessary code.
    
    Signed-off-by: Ohhoon Kwon <ohoono.kwon@samsung.com>
    Link: https://lore.kernel.org/r/20210701140457epcms1p2cc43a7c62150f012619feab913f017af@epcms1p2
    Signed-off-by: Rob Herring <robh@kernel.org>
    권오훈 authored and robherring committed Jul 15, 2021
  3. of: base: remove unnecessary for loop

    In __of_get_next_child function, loop iteration for getting next node is
    unnecessary.
    
    for loop is already checking if next is NULL or not, and
    of_node_get(next) always returns next itself.
    
    Therefore checking return value in the if clause always evaluates to
    true, and thus it always breaks out from for loop in the first iteration.
    
    Remove the unnecessary for loop for readability.
    
    I tested the code as below, and it showed that BUG was never called.
    
    -       for (; next; next = next->sibling)
    +       for (; next; next = next->sibling) {
                    if (of_node_get(next))
                            break;
    +               BUG();
    +       }
    
    Signed-off-by: Ohhoon Kwon <ohoono.kwon@samsung.com>
    Link: https://lore.kernel.org/r/20210701140328epcms1p85149318b6c18fa18b3c7c8e966c14db0@epcms1p8
    Signed-off-by: Rob Herring <robh@kernel.org>
    권오훈 authored and robherring committed Jul 15, 2021
  4. dt-bindings: PCI: ftpci100: convert faraday,ftpci100 to YAML

    Converts pci/faraday,ftpci100.txt to yaml.
    Some change are also made:
    - example has wrong interrupts place
    
    Reviewed-by: Linus Walleij <linus.walleij@linaro.org>
    Signed-off-by: Corentin Labbe <clabbe@baylibre.com>
    Link: https://lore.kernel.org/r/20210628193508.2826903-1-clabbe@baylibre.com
    Signed-off-by: Rob Herring <robh@kernel.org>
    montjoie authored and robherring committed Jul 15, 2021
  5. dt-bindings: irqchip: Update pruss-intc binding for K3 AM64x SoCs

    The K3 AM64x SoCs also have a ICSSG IP that is similar to existing K3
    AM65x and J721E SoCs. The ICSSG interrupt controller is identical to
    that of the INTC on J721E SoCs, and supports 20 host interrupts and
    160 input events from various SoC interrupt sources. All the 8 output
    host interrupts are routed to multiple entities though. Update the
    PRUSS interrupt controller binding with this information, though the
    same K3 compatible shall be used for the ICSSG INTC on AM64x SoCs.
    
    Signed-off-by: Suman Anna <s-anna@ti.com>
    Link: https://lore.kernel.org/r/20210623170630.1430-1-s-anna@ti.com
    Signed-off-by: Rob Herring <robh@kernel.org>
    sumananna authored and robherring committed Jul 15, 2021

Commits on Jul 13, 2021

  1. dt-bindings: mxsfb: Add compatible for i.MX8MN

    NXP's i.MX8MN has an LCDIF as well.
    
    Signed-off-by: Marek Vasut <marex@denx.de>
    Cc: Fabio Estevam <festevam@gmail.com>
    Cc: Lucas Stach <l.stach@pengutronix.de>
    Cc: NXP Linux Team <linux-imx@nxp.com>
    Cc: Rob Herring <robh+dt@kernel.org>
    Cc: Shawn Guo <shawnguo@kernel.org>
    Reviewed-by: Lucas Stach <l.stach@pengutronix.de>
    Link: https://lore.kernel.org/r/20210620225028.189637-1-marex@denx.de
    Signed-off-by: Rob Herring <robh@kernel.org>
    Marek Vasut authored and robherring committed Jul 13, 2021
  2. dt-bindings: net: ks8851: Convert to YAML schema

    Convert the Micrel KSZ8851 DT bindings to YAML schema.
    
    Signed-off-by: Marek Vasut <marex@denx.de>
    Cc: Andrew Lunn <andrew@lunn.ch>
    Cc: David S. Miller <davem@davemloft.net>
    Cc: Lukas Wunner <lukas@wunner.de>
    Cc: Petr Stetiar <ynezz@true.cz>
    Cc: Rob Herring <robh+dt@kernel.org>
    Cc: linux@dh-electronics.com
    Cc: netdev@vger.kernel.org
    To: devicetree@vger.kernel.org
    Link: https://lore.kernel.org/r/20210620210741.100206-1-marex@denx.de
    Signed-off-by: Rob Herring <robh@kernel.org>
    Marek Vasut authored and robherring committed Jul 13, 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
  7. Merge tag 'thermal-v5.14-rc1' of git://git.kernel.org/pub/scm/linux/k…

    …ernel/git/thermal/linux
    
    Pull thermal updates from Daniel Lezcano:
    
     - Add rk3568 sensor support (Finley Xiao)
    
     - Add missing MODULE_DEVICE_TABLE for the Spreadtrum sensor (Chunyan
       Zhang)
    
     - Export additionnal attributes for the int340x thermal processor
       (Srinivas Pandruvada)
    
     - Add SC7280 compatible for the tsens driver (Rajeshwari Ravindra
       Kamble)
    
     - Fix kernel documentation for thermal_zone_device_unregister() and use
       devm_platform_get_and_ioremap_resource() (Yang Yingliang)
    
     - Fix coefficient calculations for the rcar_gen3 sensor driver (Niklas
       Söderlund)
    
     - Fix shadowing variable rcar_gen3_ths_tj_1 (Geert Uytterhoeven)
    
     - Add missing of_node_put() for the iMX and Spreadtrum sensors
       (Krzysztof Kozlowski)
    
     - Add tegra3 thermal sensor DT bindings (Dmitry Osipenko)
    
     - Stop the thermal zone monitoring when unregistering it to prevent a
       temperature update without the 'get_temp' callback (Dmitry Osipenko)
    
     - Add rk3568 DT bindings, convert bindings to yaml schemas and add the
       corresponding compatible in the Rockchip sensor (Ezequiel Garcia)
    
     - Add the sc8180x compatible for the Qualcomm tsensor (Bjorn Andersson)
    
     - Use the find_first_zero_bit() function instead of custom code (Andy
       Shevchenko)
    
     - Fix the kernel doc for the device cooling device (Yang Li)
    
     - Reorg the processor thermal int340x to set the scene for the PCI mmio
       driver (Srinivas Pandruvada)
    
     - Add PCI MMIO driver for the int340x processor thermal driver
       (Srinivas Pandruvada)
    
     - Add hwmon sensors for the mediatek sensor (Frank Wunderlich)
    
     - Fix warning for return value reported by Smatch for the int340x
       thermal processor (Srinivas Pandruvada)
    
     - Fix wrong register access and decoding for the int340x thermal
       processor (Srinivas Pandruvada)
    
    * tag 'thermal-v5.14-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/thermal/linux: (23 commits)
      thermal/drivers/int340x/processor_thermal: Fix tcc setting
      thermal/drivers/int340x/processor_thermal: Fix warning for return value
      thermal/drivers/mediatek: Add sensors-support
      thermal/drivers/int340x/processor_thermal: Add PCI MMIO based thermal driver
      thermal/drivers/int340x/processor_thermal: Split enumeration and processing part
      thermal: devfreq_cooling: Fix kernel-doc
      thermal/drivers/intel/intel_soc_dts_iosf: Switch to use find_first_zero_bit()
      dt-bindings: thermal: tsens: Add sc8180x compatible
      dt-bindings: rockchip-thermal: Support the RK3568 SoC compatible
      dt-bindings: thermal: convert rockchip-thermal to json-schema
      thermal/core/thermal_of: Stop zone device before unregistering it
      dt-bindings: thermal: Add binding for Tegra30 thermal sensor
      thermal/drivers/sprd: Add missing of_node_put for loop iteration
      thermal/drivers/imx_sc: Add missing of_node_put for loop iteration
      thermal/drivers/rcar_gen3_thermal: Do not shadow rcar_gen3_ths_tj_1
      thermal/drivers/rcar_gen3_thermal: Fix coefficient calculations
      thermal/drivers/st: Use devm_platform_get_and_ioremap_resource()
      thermal/core: Correct function name thermal_zone_device_unregister()
      dt-bindings: thermal: tsens: Add compatible string to TSENS binding for SC7280
      thermal/drivers/int340x: processor_thermal: Export additional attributes
      ...
    torvalds committed Jul 10, 2021
Older