1. Oct 08, 2023
    • Linus Torvalds's avatar
      Merge tag 'for-6.6/dm-fixes-2' of... · 4aef108a
      Linus Torvalds authored
      Merge tag 'for-6.6/dm-fixes-2' of git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm
      
      Pull device mapper fixes from Mike Snitzer:
      
       - Fix memory leak when freeing dm zoned target device
      
       - Update dm-devel mailing list address in MAINTAINERS
      
      * tag 'for-6.6/dm-fixes-2' of git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm:
        MAINTAINERS: update the dm-devel mailing list
        dm zoned: free dmz->ddev array in dmz_put_zoned_devices
      4aef108a
    • Linus Torvalds's avatar
      Merge tag 'media/v6.6-3' of git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media · b036cda9
      Linus Torvalds authored
      Pull media fixes from Mauro Carvalho Chehab:
      
       - two Kconfig build fixes under randconfig
      
       - pxa_camera: Fix an error handling path
      
       - mediatek: vcodec: Fix a NULL-access pointer
      
       - tegra-video: fix an infinite recursion regression
      
      * tag 'media/v6.6-3' of git://git.kernel.org/pub/scm/linux/kernel/git/mchehab/linux-media:
        media: mediatek: vcodec: Fix encoder access NULL pointer
        staging: media: tegra-video: fix infinite recursion regression
        media: pci: intel: ivsc: select V4L2_FWNODE
        media: ipu-bridge: Fix Kconfig dependencies
        media: pxa_camera: Fix an error handling path in pxa_camera_probe()
      b036cda9
    • Linus Torvalds's avatar
      Merge tag 'devicetree-fixes-for-6.6-2' of git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux · 5e5558f5
      Linus Torvalds authored
      Pull devicetree fixes from Rob Herring:
      
       - Fix potential memory leak in of_changeset_action()
      
       - Fix some i.MX binding warnings
      
       - Fix typo in renesas,vin binding field-even-active property
      
       - Fix andestech,ax45mp-cache example unit-address
      
       - Add missing additionalProperties on RiscV CPU interrupt-controller
         node
      
       - Add missing unevaluatedProperties on media bindings
      
       - Fix brcm,iproc-pcie binding 'msi' child node schema
      
       - Fix MEMSIC MXC4005 compatible string
      
      * tag 'devicetree-fixes-for-6.6-2' of git://git.kernel.org/pub/scm/linux/kernel/git/robh/linux:
        dt-bindings: trivial-devices: Fix MEMSIC MXC4005 compatible string
        dt-bindings: PCI: brcm,iproc-pcie: Fix 'msi' child node schema
        dt-bindings: PCI: brcm,iproc-pcie: Drop common pci-bus properties
        dt-bindings: PCI: brcm,iproc-pcie: Fix example indentation
        media: dt-bindings: Add missing unevaluatedProperties on child node schemas
        dt-bindings: bus: fsl,imx8qxp-pixel-link-msi-bus: Drop child 'reg' property
        media: dt-bindings: imx7-csi: Make power-domains not required for imx8mq
        dt-bindings: media: renesas,vin: Fix field-even-active spelling
        dt-bindings: cache: andestech,ax45mp-cache: Fix unit address in example
        of: overlay: Reorder struct fragment fields kerneldoc
        dt-bindings: display: fsl,imx6-hdmi: Change to 'unevaluatedProperties: false'
        dt-bindings: riscv: cpus: Add missing additionalProperties on interrupt-controller node
        of: dynamic: Fix potential memory leak in of_changeset_action()
      5e5558f5
    • Linus Torvalds's avatar
      Merge tag 'gpio-fixes-for-v6.6-rc5' of git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux · 22823378
      Linus Torvalds authored
      Pull gpio fixes from Bartosz Golaszewski:
       "Another round of driver one-liners from the GPIO subsystem:
      
         - disable pin control on MMP GPIOs in gpio-pxa
      
         - fix the GPIO number passed to one of the pinctrl callbacks in
           gpio-aspeed"
      
      * tag 'gpio-fixes-for-v6.6-rc5' of git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux:
        gpio: aspeed: fix the GPIO number passed to pinctrl_gpio_set_config()
        gpio: pxa: disable pinctrl calls for MMP_GPIO
      22823378
    • Linus Torvalds's avatar
      Merge tag 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdma · 8fea9f8f
      Linus Torvalds authored
      Pull rdma fixes from Jason Gunthorpe:
       "This includes a fix for a significant security miss in checking the
        RDMA_NLDEV_CMD_SYS_SET operation.
      
        Summary:
      
         - UAF in SRP
      
         - Error unwind failure in siw connection management
      
         - Missing error checks
      
         - NULL/ERR_PTR confusion in erdma
      
         - Possible string truncation in CMA configfs and mlx4
      
         - Data ordering issue in bnxt_re
      
         - Missing stats decrement on object destroy in bnxt_re
      
         - Mlx5 bugs in this merge window:
            * Incorrect access_flag in the new mkey cache
            * Missing unlock on error in flow steering
            * lockdep possible deadlock on new mkey cache destruction (Plus a
              fix for this too)
      
         - Don't leak kernel stack memory to userspace in the CM
      
         - Missing permission validation for RDMA_NLDEV_CMD_SYS_SET"
      
      * tag 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdma:
        RDMA/core: Require admin capabilities to set system parameters
        RDMA/mlx5: Remove not-used cache disable flag
        RDMA/cma: Initialize ib_sa_multicast structure to 0 when join
        RDMA/mlx5: Fix mkey cache possible deadlock on cleanup
        RDMA/mlx5: Fix NULL string error
        RDMA/mlx5: Fix mutex unlocking on error flow for steering anchor creation
        RDMA/mlx5: Fix assigning access flags to cache mkeys
        IB/mlx4: Fix the size of a buffer in add_port_entries()
        RDMA/bnxt_re: Decrement resource stats correctly
        RDMA/bnxt_re: Fix the handling of control path response data
        RDMA/cma: Fix truncation compilation warning in make_cma_ports
        RDMA/erdma: Fix NULL pointer access in regmr_cmd
        RDMA/erdma: Fix error code in erdma_create_scatter_mtt()
        RDMA/uverbs: Fix typo of sizeof argument
        RDMA/cxgb4: Check skb value for failure to allocate
        RDMA/siw: Fix connection failure handling
        RDMA/srp: Do not call scsi_done() from srp_abort()
      8fea9f8f
  2. Oct 07, 2023
  3. Oct 06, 2023