Skip to content
Permalink
Hanna-Hawa/Fix…
Switch branches/tags

Commits on Mar 15, 2021

  1. pinctrl: pinctrl-single: fix pcs_pin_dbg_show() when bits_per_mux != 0

    An SError was detected when trying to print the supported pins in a
    pinctrl device which supports multiple pins per register. This change
    fixes the pcs_pin_dbg_show() in pinctrl-single driver when
    bits_per_mux != 0. In addition move offset calculation and pin offset in
    register to common function.
    
    Signed-off-by: Hanna Hawa <hhhawa@amazon.com>
    Hanna Hawa authored and intel-lab-lkp committed Mar 15, 2021
  2. pinctrl: pinctrl-single: remove unused parameter

    Remove unused parameter 'pin_pos' from pcs_add_pin().
    
    Signed-off-by: Hanna Hawa <hhhawa@amazon.com>
    Hanna Hawa authored and intel-lab-lkp committed Mar 15, 2021

Commits on Mar 11, 2021

  1. pinctrl: core: Handling pinmux and pinconf separately

    Right now the handling order depends on how entries are coming which is
    corresponding with order in DT. We have reached the case with DT overlays
    where conf and mux descriptions are exchanged which ends up in sequence
    that firmware has been asked to perform configuration before requesting the
    pin.
    
    The patch is enforcing the order that pin is requested all the time first
    followed by pin configuration. This change will ensure that firmware gets
    requests in the right order.
    
    Signed-off-by: Michal Simek <michal.simek@xilinx.com>
    Link: https://lore.kernel.org/r/cfbe01f791c2dd42a596cbda57e15599969b57aa.1615364211.git.michal.simek@xilinx.com
    Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
    Michal Simek authored and linusw committed Mar 11, 2021

Commits on Mar 10, 2021

  1. pinctrl: qcom: spmi-gpio: Add support for PM8350 and friends

    Add support for the PM8350, PM8350B, PM8350C, PMK8350, PMR735A and
    PMR735B GPIO support to the Qualcomm PMIC GPIO driver.
    
    Signed-off-by: Vinod Koul <vkoul@kernel.org>
    Acked-by: Bjorn Andersson <bjorn.andersson@linaro.org>
    Link: https://lore.kernel.org/r/20210308164845.3210393-2-vkoul@kernel.org
    Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
    vinodkoul authored and linusw committed Mar 10, 2021
  2. dt-bindings: pinctrl: qcom-pmic-gpio: Add pm8350 and friends

    Add support for the PM8350, PM8350B, PM8350C, PMK8350, PMR735A and
    PMR735B GPIO support to the Qualcomm PMIC GPIO binding.
    
    Signed-off-by: Vinod Koul <vkoul@kernel.org>
    Reviewed-by: Bjorn Andersson <bjorn.andersson@linaro.org>
    Link: https://lore.kernel.org/r/20210308164845.3210393-1-vkoul@kernel.org
    Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
    vinodkoul authored and linusw committed Mar 10, 2021
  3. pinctrl: qcom: support gpio_chip .set_config call

    In case of ACPI boot, GPIO core does the right thing to parse GPIO pin
    configs from ACPI table, and call into gpio_chip's .set_config hook for
    setting them up.  It enables such support on qcom platform by using
    generic config function, which in turn calls into .pin_config_set of
    pinconf for setting up hardware.  For qcom platform, it's possible to
    reuse pin group config functions for pin config hooks, because every pin
    is maintained as a single group.
    
    This change fixes the problem that Touchpad of Lenovo Flex 5G laptop
    doesn't work with ACPI boot, because PullUp config of Touchpad GpioInt
    pin is not set up by the kernel.
    
    Signed-off-by: Shawn Guo <shawn.guo@linaro.org>
    Reviewed-by: Andy Shevchenko <andriy.shevchenko@intel.com>
    Acked-by: Bjorn Andersson <bjorn.andersson@linaro.org>
    Link: https://lore.kernel.org/r/20210303131858.3976-1-shawn.guo@linaro.org
    Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
    shawnguo2 authored and linusw committed Mar 10, 2021
  4. docs/pinctrl: document debugfs files

    Document debugfs directories and files created for pinctrl subsystem.
    
    Suggested-by: Andy Shevchenko <andy.shevchenko@gmail.com>
    Reviewed-by: Andy Shevchenko <andy.shevchenko@gmail.com>
    Reviewed-by: Tony Lindgren <tony@atomide.com>
    Signed-off-by: Drew Fustini <drew@beagleboard.org>
    Link: https://lore.kernel.org/r/20210302053059.1049035-5-drew@beagleboard.org
    Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
    pdp7 authored and linusw committed Mar 10, 2021
  5. Documentation: rename pinctl to pin-control

    pinctl is not ideal as pinctrl (with an 'r') is much more common. Linus
    state that pin-control.rst would be the best name for the documentation.
    
    Link: https://lore.kernel.org/linux-gpio/20210126050817.GA187797@x1/#t
    Suggested-by: Linus Walleij <linus.walleij@linaro.org>
    Signed-off-by: Drew Fustini <drew@beagleboard.org>
    Link: https://lore.kernel.org/r/20210302053059.1049035-4-drew@beagleboard.org
    Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
    pdp7 authored and linusw committed Mar 10, 2021
  6. pinctrl: pinmux: Add pinmux-select debugfs file

    Add "pinmux-select" to debugfs which will activate a pin function for a
    given pin group:
    
      echo "<group-name function-name>" > pinmux-select
    
    The write operation pinmux_select() handles this by checking that the
    names map to valid selectors and then calling ops->set_mux().
    
    The existing "pinmux-functions" debugfs file lists the pin functions
    registered for the pin controller. For example:
    
      function: pinmux-uart0, groups = [ pinmux-uart0-pins ]
      function: pinmux-mmc0, groups = [ pinmux-mmc0-pins ]
      function: pinmux-mmc1, groups = [ pinmux-mmc1-pins ]
      function: pinmux-i2c0, groups = [ pinmux-i2c0-pins ]
      function: pinmux-i2c1, groups = [ pinmux-i2c1-pins ]
      function: pinmux-spi1, groups = [ pinmux-spi1-pins ]
    
    To activate function pinmux-i2c1 on group pinmux-i2c1-pins:
    
      echo "pinmux-i2c1-pins pinmux-i2c1" > pinmux-select
    
    Reviewed-by: Andy Shevchenko <andy.shevchenko@gmail.com>
    Reviewed-by: Tony Lindgren <tony@atomide.com>
    Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be>
    Tested-by: Geert Uytterhoeven <geert+renesas@glider.be>
    Signed-off-by: Drew Fustini <drew@beagleboard.org>
    Link: https://lore.kernel.org/r/20210302053059.1049035-3-drew@beagleboard.org
    Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
    pdp7 authored and linusw committed Mar 10, 2021
  7. pinctrl: use to octal permissions for debugfs files

    Switch over pinctrl debugfs files to use octal permissions as they are
    preferred over symbolic permissions. Refer to commit f90774e
    ("checkpatch: look for symbolic permissions and suggest octal instead").
    
    Note: S_IFREG flag is added to the mode by __debugfs_create_file()
    in fs/debugfs/inode.c
    
    Suggested-by: Joe Perches <joe@perches.com>
    Suggested-by: Andy Shevchenko <andy.shevchenko@gmail.com>
    Reviewed-by: Andy Shevchenko <andy.shevchenko@gmail.com>
    Reviewed-by: Geert Uytterhoeven <geert+renesas@glider.be>
    Reviewed-by: Tony Lindgren <tony@atomide.com>
    Signed-off-by: Drew Fustini <drew@beagleboard.org>
    Link: https://lore.kernel.org/r/20210302053059.1049035-2-drew@beagleboard.org
    Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
    pdp7 authored and linusw committed Mar 10, 2021
  8. pinctrl: ingenic: add missing call to of_node_put()

    In one of the error paths of the for_each_child_of_node() loop in
    ingenic_gpio_probe, add missing call to of_node_put().
    
    Fix the following coccicheck warning:
    ./drivers/pinctrl/pinctrl-ingenic.c:2485:1-23: WARNING: Function
    "for_each_child_of_node" should have of_node_put() before return around
    line 2489.
    
    Reported-by: Abaci Robot <abaci@linux.alibaba.com>
    Signed-off-by: Yang Li <yang.lee@linux.alibaba.com>
    Acked-by: Paul Cercueil <paul@crapouillou.net>
    Link: https://lore.kernel.org/r/1614303297-24178-1-git-send-email-yang.lee@linux.alibaba.com
    Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
    Yang Li authored and linusw committed Mar 10, 2021
  9. pinctrl: rockchip: clear int status when driver probed

    Some devices may do gpio interrupt trigger and make an int status before
    pinctrl driver probed, then the gpio handler will keep complain untill
    the device driver works to stop trigger.
    
    Signed-off-by: Ziyuan Xu <xzy.xu@rock-chips.com>
    Signed-off-by: Jianqun Xu <jay.xu@rock-chips.com>
    Reviewed-by: Heiko Stuebner <heiko@sntech.de>
    Link: https://lore.kernel.org/r/20210223101937.273085-1-jay.xu@rock-chips.com
    Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
    jayxurockchip authored and linusw committed Mar 10, 2021
  10. pinctrl: qcom: sc7280: Add GPIO wakeup interrupt map

    GPIOs that can be configured as wakeup sources, have their
    interrupt lines routed to PDC interrupt controller.
    
    Provide the interrupt map of the GPIO to its wakeup capable
    interrupt parent.
    
    Signed-off-by: Maulik Shah <mkshah@codeaurora.org>
    Signed-off-by: Rajendra Nayak <rnayak@codeaurora.org>
    Acked-by: Bjorn Andersson <bjorn.andersson@linaro.org>
    Link: https://lore.kernel.org/r/1613105974-28181-1-git-send-email-rnayak@codeaurora.org
    Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
    mkshahc authored and linusw committed Mar 10, 2021
  11. pinctrl: stm32: add missing of_node_put

    Fix OF node leaks by calling of_node_put in
    for_each_available_child_of_node when the cycle returns.
    
    Generated by: scripts/coccinelle/iterators/for_each_child.cocci
    
    Signed-off-by: Junlin Yang <yangjunlin@yulong.com>
    Link: https://lore.kernel.org/r/20210215103643.898-1-angkery@163.com
    Acked-by: Fabien Dessenne <fabien.dessenne@foss.st.com>
    Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
    Junlin Yang authored and linusw committed Mar 10, 2021
  12. pinctrl: armada-cp110 - fix MPP54/MPP55 functions

    The function name is used for selecting MPP functionality and
    should be unique within function names of the same pin.
    This patch fixes function names for MPP54 and MPP55 that
    have two different functions named the same.
    
    Signed-off-by: Konstantin Porotchkin <kostap@marvell.com>
    Link: https://lore.kernel.org/r/20210216113118.17484-3-kostap@marvell.com
    Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
    kostapr authored and linusw committed Mar 10, 2021
  13. pinctrl: cp110-system-controller: fix the pin function names

    Fix the pin function names for MPP54 and MPP55.
    
    Signed-off-by: Konstantin Porotchkin <kostap@marvell.com>
    Link: https://lore.kernel.org/r/20210216113118.17484-2-kostap@marvell.com
    Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
    kostapr authored and linusw committed Mar 10, 2021
  14. pinctrl: equilibrium: add missing of_node_put

    Fix OF node leaks by calling of_node_put in
    for_each_child_of_node when the cycle returns.
    
    Generated by: scripts/coccinelle/iterators/for_each_child.cocci
    
    Signed-off-by: Junlin Yang <yangjunlin@yulong.com>
    Link: https://lore.kernel.org/r/20210216080231.1303-1-angkery@163.com
    Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
    Junlin Yang authored and linusw committed Mar 10, 2021

Commits on Mar 6, 2021

  1. Linux 5.12-rc2

    torvalds committed Mar 6, 2021
  2. Merge tag 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/gi…

    …t/rdma/rdma
    
    Pull rdma fixes from Jason Gunthorpe:
     "Nothing special here, though Bob's regression fixes for rxe would have
      made it before the rc cycle had there not been such strong winter
      weather!
    
       - Fix corner cases in the rxe reference counting cleanup that are
         causing regressions in blktests for SRP
    
       - Two kdoc fixes so W=1 is clean
    
       - Missing error return in error unwind for mlx5
    
       - Wrong lock type nesting in IB CM"
    
    * tag 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdma:
      RDMA/rxe: Fix errant WARN_ONCE in rxe_completer()
      RDMA/rxe: Fix extra deref in rxe_rcv_mcast_pkt()
      RDMA/rxe: Fix missed IB reference counting in loopback
      RDMA/uverbs: Fix kernel-doc warning of _uverbs_alloc
      RDMA/mlx5: Set correct kernel-doc identifier
      IB/mlx5: Add missing error code
      RDMA/rxe: Fix missing kconfig dependency on CRYPTO
      RDMA/cm: Fix IRQ restore in ib_send_cm_sidr_rep
    torvalds committed Mar 6, 2021
  3. Merge tag 'gcc-plugins-v5.12-rc2' of git://git.kernel.org/pub/scm/lin…

    …ux/kernel/git/kees/linux
    
    Pull gcc-plugins fixes from Kees Cook:
     "Tiny gcc-plugin fixes for v5.12-rc2. These issues are small but have
      been reported a couple times now by static analyzers, so best to get
      them fixed to reduce the noise. :)
    
       - Fix coding style issues (Jason Yan)"
    
    * tag 'gcc-plugins-v5.12-rc2' of git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux:
      gcc-plugins: latent_entropy: remove unneeded semicolon
      gcc-plugins: structleak: remove unneeded variable 'ret'
    torvalds committed Mar 6, 2021
  4. Merge tag 'pstore-v5.12-rc2' of git://git.kernel.org/pub/scm/linux/ke…

    …rnel/git/kees/linux
    
    Pull pstore fixes from Kees Cook:
    
     - Rate-limit ECC warnings (Dmitry Osipenko)
    
     - Fix error path check for NULL (Tetsuo Handa)
    
    * tag 'pstore-v5.12-rc2' of git://git.kernel.org/pub/scm/linux/kernel/git/kees/linux:
      pstore/ram: Rate-limit "uncorrectable error in header" message
      pstore: Fix warning in pstore_kill_sb()
    torvalds committed Mar 6, 2021

Commits on Mar 5, 2021

  1. Merge tag 'for-5.12/dm-fixes' of git://git.kernel.org/pub/scm/linux/k…

    …ernel/git/device-mapper/linux-dm
    
    Pull device mapper fixes from Mike Snitzer:
     "Fix DM verity target's optional Forward Error Correction (FEC) for
      Reed-Solomon roots that are unaligned to block size"
    
    * tag 'for-5.12/dm-fixes' of git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm:
      dm verity: fix FEC for RS roots unaligned to block size
      dm bufio: subtract the number of initial sectors in dm_bufio_get_device_size
    torvalds committed Mar 5, 2021
  2. Merge tag 'block-5.12-2021-03-05' of git://git.kernel.dk/linux-block

    Pull block fixes from Jens Axboe:
    
     - NVMe fixes:
          - more device quirks (Julian Einwag, Zoltán Böszörményi, Pascal
            Terjan)
          - fix a hwmon error return (Daniel Wagner)
          - fix the keep alive timeout initialization (Martin George)
          - ensure the model_number can't be changed on a used subsystem
            (Max Gurtovoy)
    
     - rsxx missing -EFAULT on copy_to_user() failure (Dan)
    
     - rsxx remove unused linux.h include (Tian)
    
     - kill unused RQF_SORTED (Jean)
    
     - updated outdated BFQ comments (Joseph)
    
     - revert work-around commit for bd_size_lock, since we removed the
       offending user in this merge window (Damien)
    
    * tag 'block-5.12-2021-03-05' of git://git.kernel.dk/linux-block:
      nvmet: model_number must be immutable once set
      nvme-fabrics: fix kato initialization
      nvme-hwmon: Return error code when registration fails
      nvme-pci: add quirks for Lexar 256GB SSD
      nvme-pci: mark Kingston SKC2000 as not supporting the deepest power state
      nvme-pci: mark Seagate Nytro XM1440 as QUIRK_NO_NS_DESC_LIST.
      rsxx: Return -EFAULT if copy_to_user() fails
      block/bfq: update comments and default value in docs for fifo_expire
      rsxx: remove unused including <linux/version.h>
      block: Drop leftover references to RQF_SORTED
      block: revert "block: fix bd_size_lock use"
    torvalds committed Mar 5, 2021
  3. Merge tag 'io_uring-5.12-2021-03-05' of git://git.kernel.dk/linux-block

    Pull io_uring fixes from Jens Axboe:
     "A bit of a mix between fallout from the worker change, cleanups and
      reductions now possible from that change, and fixes in general. In
      detail:
    
       - Fully serialize manager and worker creation, fixing races due to
         that.
    
       - Clean up some naming that had gone stale.
    
       - SQPOLL fixes.
    
       - Fix race condition around task_work rework that went into this
         merge window.
    
       - Implement unshare. Used for when the original task does unshare(2)
         or setuid/seteuid and friends, drops the original workers and forks
         new ones.
    
       - Drop the only remaining piece of state shuffling we had left, which
         was cred. Move it into issue instead, and we can drop all of that
         code too.
    
       - Kill f_op->flush() usage. That was such a nasty hack that we had
         out of necessity, we no longer need it.
    
       - Following from ->flush() removal, we can also drop various bits of
         ctx state related to SQPOLL and cancelations.
    
       - Fix an issue with IOPOLL retry, which originally was fallout from a
         filemap change (removing iov_iter_revert()), but uncovered an issue
         with iovec re-import too late.
    
       - Fix an issue with system suspend.
    
       - Use xchg() for fallback work, instead of cmpxchg().
    
       - Properly destroy io-wq on exec.
    
       - Add create_io_thread() core helper, and use that in io-wq and
         io_uring. This allows us to remove various silly completion events
         related to thread setup.
    
       - A few error handling fixes.
    
      This should be the grunt of fixes necessary for the new workers, next
      week should be quieter. We've got a pending series from Pavel on
      cancelations, and how tasks and rings are indexed. Outside of that,
      should just be minor fixes. Even with these fixes, we're still killing
      a net ~80 lines"
    
    * tag 'io_uring-5.12-2021-03-05' of git://git.kernel.dk/linux-block: (41 commits)
      io_uring: don't restrict issue_flags for io_openat
      io_uring: make SQPOLL thread parking saner
      io-wq: kill hashed waitqueue before manager exits
      io_uring: clear IOCB_WAITQ for non -EIOCBQUEUED return
      io_uring: don't keep looping for more events if we can't flush overflow
      io_uring: move to using create_io_thread()
      kernel: provide create_io_thread() helper
      io_uring: reliably cancel linked timeouts
      io_uring: cancel-match based on flags
      io-wq: ensure all pending work is canceled on exit
      io_uring: ensure that threads freeze on suspend
      io_uring: remove extra in_idle wake up
      io_uring: inline __io_queue_async_work()
      io_uring: inline io_req_clean_work()
      io_uring: choose right tctx->io_wq for try cancel
      io_uring: fix -EAGAIN retry with IOPOLL
      io-wq: fix error path leak of buffered write hash map
      io_uring: remove sqo_task
      io_uring: kill sqo_dead and sqo submission halting
      io_uring: ignore double poll add on the same waitqueue head
      ...
    torvalds committed Mar 5, 2021
  4. Merge tag 'pm-5.12-rc2' of git://git.kernel.org/pub/scm/linux/kernel/…

    …git/rafael/linux-pm
    
    Pull power management fixes from Rafael Wysocki:
     "These fix the usage of device links in the runtime PM core code and
      update the DTPM (Dynamic Thermal Power Management) feature added
      recently.
    
      Specifics:
    
       - Make the runtime PM core code avoid attempting to suspend supplier
         devices before updating the PM-runtime status of a consumer to
         'suspended' (Rafael Wysocki).
    
       - Fix DTPM (Dynamic Thermal Power Management) root node
         initialization and label that feature as EXPERIMENTAL in Kconfig
         (Daniel Lezcano)"
    
    * tag 'pm-5.12-rc2' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm:
      powercap/drivers/dtpm: Add the experimental label to the option description
      powercap/drivers/dtpm: Fix root node initialization
      PM: runtime: Update device status before letting suppliers suspend
    torvalds committed Mar 5, 2021
  5. Merge tag 'acpi-5.12-rc2' of git://git.kernel.org/pub/scm/linux/kerne…

    …l/git/rafael/linux-pm
    
    Pull ACPI fix from Rafael Wysocki:
     "Make the empty stubs of some helper functions used when CONFIG_ACPI is
      not set actually match those functions (Andy Shevchenko)"
    
    * tag 'acpi-5.12-rc2' of git://git.kernel.org/pub/scm/linux/kernel/git/rafael/linux-pm:
      ACPI: bus: Constify is_acpi_node() and friends (part 2)
    torvalds committed Mar 5, 2021
  6. Merge tag 'iommu-fixes-v5.12-rc1' of git://git.kernel.org/pub/scm/lin…

    …ux/kernel/git/joro/iommu
    
    Pull iommu fixes from Joerg Roedel:
    
     - Fix a sleeping-while-atomic issue in the AMD IOMMU code
    
     - Disable lazy IOTLB flush for untrusted devices in the Intel VT-d
       driver
    
     - Fix status code definitions for Intel VT-d
    
     - Fix IO Page Fault issue in Tegra IOMMU driver
    
    * tag 'iommu-fixes-v5.12-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/joro/iommu:
      iommu/vt-d: Fix status code for Allocate/Free PASID command
      iommu: Don't use lazy flush for untrusted device
      iommu/tegra-smmu: Fix mc errors on tegra124-nyan
      iommu/amd: Fix sleeping in atomic in increase_address_space()
    torvalds committed Mar 5, 2021
  7. Merge tag 'for-5.12-rc1-tag' of git://git.kernel.org/pub/scm/linux/ke…

    …rnel/git/kdave/linux
    
    Pull btrfs fixes from David Sterba:
     "More regression fixes and stabilization.
    
      Regressions:
    
       - zoned mode
          - count zone sizes in wider int types
          - fix space accounting for read-only block groups
    
       - subpage: fix page tail zeroing
    
      Fixes:
    
       - fix spurious warning when remounting with free space tree
    
       - fix warning when creating a directory with smack enabled
    
       - ioctl checks for qgroup inheritance when creating a snapshot
    
       - qgroup
          - fix missing unlock on error path in zero range
          - fix amount of released reservation on error
          - fix flushing from unsafe context with open transaction,
            potentially deadlocking
    
       - minor build warning fixes"
    
    * tag 'for-5.12-rc1-tag' of git://git.kernel.org/pub/scm/linux/kernel/git/kdave/linux:
      btrfs: zoned: do not account freed region of read-only block group as zone_unusable
      btrfs: zoned: use sector_t for zone sectors
      btrfs: subpage: fix the false data csum mismatch error
      btrfs: fix warning when creating a directory with smack enabled
      btrfs: don't flush from btrfs_delayed_inode_reserve_metadata
      btrfs: export and rename qgroup_reserve_meta
      btrfs: free correct amount of space in btrfs_delayed_inode_reserve_metadata
      btrfs: fix spurious free_space_tree remount warning
      btrfs: validate qgroup inherit for SNAP_CREATE_V2 ioctl
      btrfs: unlock extents in btrfs_zero_range in case of quota reservation errors
      btrfs: ref-verify: use 'inline void' keyword ordering
    torvalds committed Mar 5, 2021
  8. Merge tag 'devicetree-fixes-for-5.12-1' of git://git.kernel.org/pub/s…

    …cm/linux/kernel/git/robh/linux
    
    Pull devicetree fixes from Rob Herring:
    
     - Another batch of graph and video-interfaces schema conversions
    
     - Drop DT header symlink for dropped C6X arch
    
     - Fix bcm2711-hdmi schema error
    
    * tag 'devicetree-fixes-for-5.12-1' of git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux:
      dt-bindings: media: Use graph and video-interfaces schemas, round 2
      dts: drop dangling c6x symlink
      dt-bindings: bcm2711-hdmi: Fix broken schema
    torvalds committed Mar 5, 2021
  9. Merge tag 'trace-v5.12-rc1' of git://git.kernel.org/pub/scm/linux/ker…

    …nel/git/rostedt/linux-trace
    
    Pull tracing fixes from Steven Rostedt:
     "Functional fixes:
    
       - Fix big endian conversion for arm64 in recordmcount processing
    
       - Fix timestamp corruption in ring buffer on discarding events
    
       - Fix memory leak in __create_synth_event()
    
       - Skip selftests if tracing is disabled as it will cause them to
         fail.
    
      Non-functional fixes:
    
       - Fix help text in Kconfig
    
       - Remove duplicate prototype for trace_empty()
    
       - Fix stale comment about the trace_event_call flags.
    
      Self test update:
    
       - Add more information to the validation output of when a corrupt
         timestamp is found in the ring buffer, and also trigger a warning
         to make sure that tests catch it"
    
    * tag 'trace-v5.12-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/rostedt/linux-trace:
      tracing: Fix comment about the trace_event_call flags
      tracing: Skip selftests if tracing is disabled
      tracing: Fix memory leak in __create_synth_event()
      ring-buffer: Add a little more information and a WARN when time stamp going backwards is detected
      ring-buffer: Force before_stamp and write_stamp to be different on discard
      tracing: Fix help text of TRACEPOINT_BENCHMARK in Kconfig
      tracing: Remove duplicate declaration from trace.h
      ftrace: Have recordmcount use w8 to read relp->r_info in arm64_is_fake_mcount
    torvalds committed Mar 5, 2021
  10. RDMA/rxe: Fix errant WARN_ONCE in rxe_completer()

    In rxe_comp.c in rxe_completer() the function free_pkt() did not clear skb
    which triggered a warning at 'done:' and could possibly at 'exit:'. The
    WARN_ONCE() calls are not actually needed.  The call to free_pkt() is
    moved to the end to clearly show that all skbs are freed.
    
    Fixes: 899aba8 ("RDMA/rxe: Fix FIXME in rxe_udp_encap_recv()")
    Link: https://lore.kernel.org/r/20210304192048.2958-1-rpearson@hpe.com
    Signed-off-by: Bob Pearson <rpearsonhpe@gmail.com>
    Signed-off-by: Jason Gunthorpe <jgg@nvidia.com>
    Bob Pearson authored and jgunthorpe committed Mar 5, 2021
  11. RDMA/rxe: Fix extra deref in rxe_rcv_mcast_pkt()

    rxe_rcv_mcast_pkt() dropped a reference to ib_device when no error
    occurred causing an underflow on the reference counter.  This code is
    cleaned up to be clearer and easier to read.
    
    Fixes: 899aba8 ("RDMA/rxe: Fix FIXME in rxe_udp_encap_recv()")
    Link: https://lore.kernel.org/r/20210304192048.2958-1-rpearson@hpe.com
    Signed-off-by: Bob Pearson <rpearsonhpe@gmail.com>
    Signed-off-by: Jason Gunthorpe <jgg@nvidia.com>
    Bob Pearson authored and jgunthorpe committed Mar 5, 2021
  12. RDMA/rxe: Fix missed IB reference counting in loopback

    When the noted patch below extending the reference taken by
    rxe_get_dev_from_net() in rxe_udp_encap_recv() until each skb is freed it
    was not matched by a reference in the loopback path resulting in
    underflows.
    
    Fixes: 899aba8 ("RDMA/rxe: Fix FIXME in rxe_udp_encap_recv()")
    Link: https://lore.kernel.org/r/20210304192048.2958-1-rpearson@hpe.com
    Signed-off-by: Bob Pearson <rpearsonhpe@gmail.com>
    Signed-off-by: Jason Gunthorpe <jgg@nvidia.com>
    Bob Pearson authored and jgunthorpe committed Mar 5, 2021
  13. io_uring: don't restrict issue_flags for io_openat

    45d189c ("io_uring: replace force_nonblock with flags") did
    something strange for io_openat() slicing all issue_flags but
    IO_URING_F_NONBLOCK. Not a bug for now, but better to just forward the
    flags.
    
    Signed-off-by: Pavel Begunkov <asml.silence@gmail.com>
    Signed-off-by: Jens Axboe <axboe@kernel.dk>
    isilence authored and axboe committed Mar 5, 2021
  14. Merge tag 'nvme-5.12-2021-03-05' of git://git.infradead.org/nvme into…

    … block-5.12
    
    Pull NVMe fixes from Christoph:
    
    "nvme fixes for 5.12:
    
     - more device quirks (Julian Einwag, Zoltán Böszörményi, Pascal Terjan)
     - fix a hwmon error return (Daniel Wagner)
     - fix the keep alive timeout initialization (Martin George)
     - ensure the model_number can't be changed on a used subsystem
       (Max Gurtovoy)"
    
    * tag 'nvme-5.12-2021-03-05' of git://git.infradead.org/nvme:
      nvmet: model_number must be immutable once set
      nvme-fabrics: fix kato initialization
      nvme-hwmon: Return error code when registration fails
      nvme-pci: add quirks for Lexar 256GB SSD
      nvme-pci: mark Kingston SKC2000 as not supporting the deepest power state
      nvme-pci: mark Seagate Nytro XM1440 as QUIRK_NO_NS_DESC_LIST.
    axboe committed Mar 5, 2021
Older