Forum | Documentation | Website | Blog

Skip to content
Snippets Groups Projects
  1. Jul 26, 2024
  2. Jul 23, 2024
  3. Jul 21, 2024
    • Linus Torvalds's avatar
      Merge tag '6.11-rc-part1-smb3-client-fixes' of git://git.samba.org/sfrench/cifs-2.6 · 33c9de29
      Linus Torvalds authored
      Pull smb client fixes from Steve French:
       "Six smb3 client fixes, most for stable including important netfs fixes:
      
         - various netfs related fixes for cifs addressing some regressions in
           6.10 (e.g. generic/708 and some multichannel crediting related
           issues)
      
         - fix for a noisy log message on copy_file_range
      
         - add trace point for read/write credits"
      
      * tag '6.11-rc-part1-smb3-client-fixes' of git://git.samba.org/sfrench/cifs-2.6:
        cifs: Fix missing fscache invalidation
        cifs: Add a tracepoint to track credits involved in R/W requests
        cifs: Fix setting of zero_point after DIO write
        cifs: Fix missing error code set
        cifs: Fix server re-repick on subrequest retry
        cifs: fix noisy message on copy_file_range
      33c9de29
    • Linus Torvalds's avatar
      Merge tag 'pinctrl-v6.11-1' of git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl · 8e313211
      Linus Torvalds authored
      Pull pin control updates from Linus Walleij:
       "Some new drivers is the main part, the rest is cleanups and nonurgent
        fixes.
      
        Nothing much special about this, no core changes this time.
      
        New drivers:
      
         - Renesas RZ/V2H(P) SoC
      
         - NXP Freescale i.MX91 SoC
      
         - Nuvoton MA35D1 SoC
      
         - Qualcomm PMC8380, SM4250, SM4250 LPI
      
        Enhancements:
      
         - A slew of scoped-based simplifications of of_node_put()"
      
      * tag 'pinctrl-v6.11-1' of git://git.kernel.org/pub/scm/linux/kernel/git/linusw/linux-pinctrl: (110 commits)
        pinctrl: renesas: rzg2l: Support output enable on RZ/G2L
        pinctrl: renesas: rzg2l: Clean up and refactor OEN read/write functions
        pinctrl: renesas: rzg2l: Clarify OEN read/write support
        dt-bindings: pinctrl: pinctrl-single: Fix pinctrl-single,gpio-range description
        dt-bindings: pinctrl: npcm8xx: add missing pin group and mux function
        dt-bindings: pinctrl: pinctrl-single: fix schmitt rel...
      8e313211
  4. Jul 20, 2024
    • Linus Torvalds's avatar
      Merge tag 'for-linus' of git://git.kernel.org/pub/scm/virt/kvm/kvm · 2c9b3512
      Linus Torvalds authored
      Pull kvm updates from Paolo Bonzini:
       "ARM:
      
         - Initial infrastructure for shadow stage-2 MMUs, as part of nested
           virtualization enablement
      
         - Support for userspace changes to the guest CTR_EL0 value, enabling
           (in part) migration of VMs between heterogenous hardware
      
         - Fixes + improvements to pKVM's FF-A proxy, adding support for v1.1
           of the protocol
      
         - FPSIMD/SVE support for nested, including merged trap configuration
           and exception routing
      
         - New command-line parameter to control the WFx trap behavior under
           KVM
      
         - Introduce kCFI hardening in the EL2 hypervisor
      
         - Fixes + cleanups for handling presence/absence of FEAT_TCRX
      
         - Miscellaneous fixes + documentation updates
      
        LoongArch:
      
         - Add paravirt steal time support
      
         - Add support for KVM_DIRTY_LOG_INITIALLY_SET
      
         - Add perf kvm-stat support for loongarch
      
        RISC-V:
      
         - Redirect AMO load/store access fault traps to guest
      
         - perf...
      2c9b3512
    • David Howells's avatar
      cifs: Fix missing fscache invalidation · a07d38af
      David Howells authored
      
      A network filesystem needs to implement a netfslib hook to invalidate
      fscache if it's to be able to use the cache.
      
      Fix cifs to implement the cache invalidation hook.
      
      Signed-off-by: default avatarDavid Howells <dhowells@redhat.com>
      Reviewed-by: default avatarPaulo Alcantara (Red Hat) <pc@manguebit.com>
      cc: Jeff Layton <jlayton@kernel.org>
      cc: linux-cifs@vger.kernel.org
      cc: netfs@lists.linux.dev
      cc: linux-fsdevel@vger.kernel.org
      Cc: stable@vger.kernel.org
      Fixes: 3ee1a1fc
      
       ("cifs: Cut over to using netfslib")
      Signed-off-by: default avatarSteve French <stfrench@microsoft.com>
      a07d38af
    • Linus Torvalds's avatar
      Merge tag 'mtd/for-6.11' of git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux · c43a20e4
      Linus Torvalds authored
      Pull MTD updates from Miquel Raynal:
       "Nothing stands out for this merge window, mostly minor fixes, such as
        module descriptions, the use of debug macros and Makefile
        improvements.
      
        Raw NAND changes;
      
         - The Freescale MXC driver has been converted to the newer
           '->exec_op()' interface
      
         - The meson driver now supports handling the boot ROM area with very
           specific ECC needs
      
         - Support for the iMX8QXP has been added to the GPMI driver
      
         - The lpx32xx driver now can get the DMA channels using DT entries
      
         - The Qcom binding has been improved to be more future proof by Rob
      
         - And then there is the usual load of misc and minor changes
      
        SPI-NAND changes:
      
         - The Macronix vendor driver has been improved to support an extended
           ID to avoid conflicting with older devices after an ID reuse issue
      
        SPI NOR changes:
      
         - Drop support for Xilinx S3AN flashes. These flashes are for the
           very old Xilinx Spartan 3 FPGAs and they need some awkward code in
           the core to support.
      
           Drop support for these flashes, along with the special handling we
           needed for them in the core like non-power-of-2 page size handling
           and the .setup() callback.
      
         - Fix regression for old w25q128 flashes without SFDP tables.
      
           Commit 83e824a4 ("mtd: spi-nor: Correct flags for Winbond
           w25q128") dropped support for such devices under the assumption
           that they aren't being used anymore. Users have now surfaced [0] so
           fix the regression by supporting both kind of devices.
      
         - Core cleanups including removal of SPI_NOR_NO_FR flag and
           simplification of spi_nor_get_flash_info()"
      
      Link: https://lore.kernel.org/r/CALxbwRo_-9CaJmt7r7ELgu+vOcgk=xZcGHobnKf=oT2=u4d4aA@mail.gmail.com/ [0]
      
      * tag 'mtd/for-6.11' of git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux: (28 commits)
        mtd: rawnand: lpx32xx: Fix dma_request_chan() error checks
        mtd: spinand: macronix: Add support for serial NAND flash
        mtd: spinand: macronix: Add support for reading Device ID 2
        mtd: rawnand: lpx32xx: Request DMA channels using DT entries
        dt-bindings: mtd: qcom,nandc: Define properties at top-level
        mtd: rawnand: intel: use 'time_left' variable with wait_for_completion_timeout()
        mtd: rawnand: mxc: use 'time_left' variable with wait_for_completion_timeout()
        mtd: rawnand: gpmi: add iMX8QXP support.
        mtd: rawnand: gpmi: add 'support_edo_timing' in gpmi_devdata
        mtd: cmdlinepart: Replace `dbg()` macro with `pr_debug()`
        mtd: add missing MODULE_DESCRIPTION() macros
        mtd: make mtd_test.c a separate module
        dt-bindings: mtd: gpmi-nand: Add 'fsl,imx8qxp-gpmi-nand' compatible string
        mtd: rawnand: cadence: remove unused struct 'ecc_info'
        mtd: rawnand: mxc: support software ECC
        mtd: rawnand: mxc: implement exec_op
        mtd: rawnand: mxc: separate page read from ecc calc
        mtd: spi-nor: winbond: fix w25q128 regression
        mtd: spi-nor: simplify spi_nor_get_flash_info()
        mtd: spi-nor: get rid of SPI_NOR_NO_FR
        ...
      c43a20e4
    • Linus Torvalds's avatar
      Merge tag 'landlock-6.11-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/mic/linux · 9fa23750
      Linus Torvalds authored
      Pull landlock updates from Mickaël Salaün:
       "This simplifies code and improves documentation"
      
      * tag 'landlock-6.11-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/mic/linux:
        landlock: Various documentation improvements
        landlock: Clarify documentation for struct landlock_ruleset_attr
        landlock: Use bit-fields for storing handled layer access masks
      9fa23750
    • Linus Torvalds's avatar
      Merge tag 'firewire-updates-6.11' of... · 8326f5e1
      Linus Torvalds authored
      Merge tag 'firewire-updates-6.11' of git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394
      
      Pull firewire updates from Takashi Sakamoto:
       "There are many lines of changes for FireWire subsystem, but there is
        practically no functional change.
      
        Most of the changes are for code refactoring, some KUnit tests to
        added helper functions, and new tracepoints events for both the core
        functions and 1394 OHCI driver.
      
        The tracepoints events now cover the verbose logging enabled by debug
        parameter of firewire-ohci kernel module. The parameter would be
        removed in any future timing, thus it is now deprecated"
      
      * tag 'firewire-updates-6.11' of git://git.kernel.org/pub/scm/linux/kernel/git/ieee1394/linux1394: (32 commits)
        firewire: core: move copy_port_status() helper function to TP_fast_assign() block
        Revert "firewire: ohci: use common macro to interpret be32 data in le32 buffer"
        firewire: ohci: add tracepoints event for data of Self-ID DMA
        firewire: ohci: use inline functions to operate data of self-ID DMA
        firewire: ohci: add static inline functions to deserialize for Self-ID DMA operation
        firewire: ohci: use static function to handle endian issue on PowerPC platform
        firewire: ohci: use common macro to interpret be32 data in le32 buffer
        firewire: core: Fix spelling mistakes in tracepoint messages
        firewire: ohci: add tracepoints event for hardIRQ event
        firewire: ohci: add support for Linux kernel tracepoints
        firewire: core: add tracepoints events for completions of packets in isochronous context
        firewire: core: add tracepoints events for queueing packets of isochronous context
        firewire: core: add tracepoints events for flushing completions of isochronous context
        firewire: core: add tracepoints events for flushing of isochronous context
        firewire: core: add tracepoints events for starting/stopping of isochronous context
        firewire: core: add tracepoints events for setting channels of multichannel context
        firewire: core: add tracepoints events for allocation/deallocation of isochronous context
        firewire: core: undefine macros after use in tracepoints events
        firewire: core: record card index in tracepoints event for self ID sequence
        firewire: core: use inline helper functions to serialize phy config packet
        ...
      8326f5e1
    • Linus Torvalds's avatar
      Merge tag 'libnvdimm-for-6.11' of git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm · 13a78715
      Linus Torvalds authored
      Pull libnvdimm updates from Ira Weiny:
      
       - One small cleanup to use sizeof(*pointer)
      
       - Add MODULE_DESCRIPTIONS() to eliminate make W=1 warnings
      
      * tag 'libnvdimm-for-6.11' of git://git.kernel.org/pub/scm/linux/kernel/git/nvdimm/nvdimm:
        testing: nvdimm: Add MODULE_DESCRIPTION() macros
        testing: nvdimm: iomap: add MODULE_DESCRIPTION()
        dax: add missing MODULE_DESCRIPTION() macros
        nvdimm: add missing MODULE_DESCRIPTION() macros
        ACPI: NFIT: add missing MODULE_DESCRIPTION() macro
        nvdimm/btt: use sizeof(*pointer) instead of sizeof(type)
      13a78715
    • Linus Torvalds's avatar
      Merge tag 'riscv-for-linus-6.11-mw1' of git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux · f557af08
      Linus Torvalds authored
      Pull RISC-V updates from Palmer Dabbelt:
      
       - Support for various new ISA extensions:
           * The Zve32[xf] and Zve64[xfd] sub-extensios of the vector
             extension
           * Zimop and Zcmop for may-be-operations
           * The Zca, Zcf, Zcd and Zcb sub-extensions of the C extension
           * Zawrs
      
       - riscv,cpu-intc is now dtschema
      
       - A handful of performance improvements and cleanups to text patching
      
       - Support for memory hot{,un}plug
      
       - The highest user-allocatable virtual address is now visible in
         hwprobe
      
      * tag 'riscv-for-linus-6.11-mw1' of git://git.kernel.org/pub/scm/linux/kernel/git/riscv/linux: (58 commits)
        riscv: lib: relax assembly constraints in hweight
        riscv: set trap vector earlier
        KVM: riscv: selftests: Add Zawrs extension to get-reg-list test
        KVM: riscv: Support guest wrs.nto
        riscv: hwprobe: export Zawrs ISA extension
        riscv: Add Zawrs support for spinlocks
        dt-bindings: riscv: Add Za...
      f557af08
    • Linus Torvalds's avatar
      Merge tag 'mips_6.11' of git://git.kernel.org/pub/scm/linux/kernel/git/mips/linux · d2be38b9
      Linus Torvalds authored
      Pull MIPS updates from Thomas Bogendoerfer:
      
       - add support for Realtek RTL9302C
      
       - add support for Mobileye EyeQ6H
      
       - add support for Mobileye EyeQ OLB system controller
      
       - improve r4k clocksource
      
       - add mode for emulating ieee754 NAN2008
      
       - rework for BMIPS CBR address handling
      
       - fixes for Loongson 2K1000
      
       - defconfig updates
      
       - cleanups and fixes
      
      * tag 'mips_6.11' of git://git.kernel.org/pub/scm/linux/kernel/git/mips/linux: (58 commits)
        MIPS: config: Add ip30_defconfig
        MIPS: config: lemote2f: Regenerate defconfig
        MIPS: config: generic: Add board-litex
        MIPS: config: Enable MSA and virtualization for MIPS64R6
        MIPS: Fix fallback march for SB1
        mips: dts: realtek: Add RTL9302C board
        mips: generic: add fdt fixup for Realtek reference board
        mips: select REALTEK_OTTO_TIMER for Realtek platforms
        dt-bindings: interrupt-controller: realtek,rtl-intc: Add rtl9300-intc
        dt-bindings: mips: realtek: Add rtl930x-soc compatible
        dt-bindings: vendor-prefixes: Add Cameo Communications
        mips: dts: realtek: add device_type property to cpu node
        mips: dts: realtek: use "serial" instead of "uart" in node name
        MIPS: Implement ieee754 NAN2008 emulation mode
        MIPS: lantiq: improve USB initialization
        MIPS: GIC: Generate redirect block accessors
        MIPS: CPS: Add a couple of multi-cluster utility functions
        MIPS: Octeron: remove source file executable bit
        MAINTAINERS: Mobileye: add OLB drivers and dt-bindings
        MIPS: mobileye: eyeq5: add OLB system-controller node
        ...
      d2be38b9
    • Miquel Raynal's avatar
      Merge tag 'nand/for-6.11' into mtd/next · 78a0b13f
      Miquel Raynal authored
      
      Raw NAND changes;
      
      The Freescale MXC driver has been converted to the newer ->exec_op()
      interface. The meson driver now supports handling the boot ROM area with
      very specific ECC needs. Support for the iMX8QXP has been added to the
      GPMI driver. The lpx32xx driver now can get the DMA channels using DT
      entries. The Qcom binding has been improved to be more future proof by
      Rob. And then there is the usual load of misc and minor changes.
      
      SPI-NAND changes:
      
      The Macronix vendor driver has been improved to support an extended ID
      to avoid conflicting with older devices after an ID reuse issue.
      
      Signed-off-by: default avatarMiquel Raynal <miquel.raynal@bootlin.com>
      78a0b13f
    • Miquel Raynal's avatar
      Merge tag 'spi-nor/for-6.11' into mtd/next · b93f410b
      Miquel Raynal authored
      SPI NOR changes for 6.11
      
      Notable changes:
      
      - Drop support for Xilinx S3AN flashes. These flashes are for the very
        old Xilinx Spartan 3 FPGAs and they need some awkward code in the core
        to support. Drop support for these flashes, along with the special
        handling we needed for them in the core like non-power-of-2 page size
        handling and the .setup() callback.
      
      - Fix regression for old w25q128 flashes without SFDP tables. Commit
        83e824a4 ("mtd: spi-nor: Correct flags for Winbond w25q128")
        dropped support for such devices under the assumption that they aren't
        being used anymore. Users have now surfaced [0] so fix the regression
        by supporting both kind of devices.
      
      - Core cleanups including removal of SPI_NOR_NO_FR flag and
        simplification of spi_nor_get_flash_info().
      
      [0] https://lore.kernel.org/r/CALxbwRo_-9CaJmt7r7ELgu+vOcgk=xZcGHobnKf=oT2=u4d4aA@mail.gmail.com/
      
      
      
      Signed-off-by: default avatarMiquel Raynal <miquel.raynal@bootlin.com>
      b93f410b
    • Linus Torvalds's avatar
      Merge tag 'powerpc-6.11-1' of git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux · 3c3ff7be
      Linus Torvalds authored
      Pull powerpc updates from Michael Ellerman:
      
       - Remove support for 40x CPUs & platforms
      
       - Add support to the 64-bit BPF JIT for cpu v4 instructions
      
       - Fix PCI hotplug driver crash on powernv
      
       - Fix doorbell emulation for KVM on PAPR guests (nestedv2)
      
       - Fix KVM nested guest handling of some less used SPRs
      
       - Online NUMA nodes with no CPU/memory if they have a PCI device
         attached
      
       - Reduce memory overhead of enabling kfence on 64-bit Radix MMU kernels
      
       - Reimplement the iommu table_group_ops for pseries for VFIO SPAPR TCE
      
      Thanks to: Anjali K, Artem Savkov, Athira Rajeev, Breno Leitao, Brian
      King, Celeste Liu, Christophe Leroy, Esben Haabendal, Gaurav Batra,
      Gautam Menghani, Haren Myneni, Hari Bathini, Jeff Johnson, Krishna
      Kumar, Krzysztof Kozlowski, Nathan Lynch, Nicholas Piggin, Nick Bowler,
      Nilay Shroff, Rob Herring (Arm), Shawn Anastasio, Shivaprasad G Bhat,
      Sourabh Jain, Srikar Dronamraju, Timothy Pearson, Uwe Kleine-König, and
      Vaibhav Jain.
      
      * tag 'powerpc-6.11-1' of git://git.kernel.org/pub/scm/linux/kernel/git/powerpc/linux: (57 commits)
        Documentation/powerpc: Mention 40x is removed
        powerpc: Remove 40x leftovers
        macintosh/therm_windtunnel: fix module unload.
        powerpc: Check only single values are passed to CPU/MMU feature checks
        powerpc/xmon: Fix disassembly CPU feature checks
        powerpc: Drop clang workaround for builtin constant checks
        powerpc64/bpf: jit support for signed division and modulo
        powerpc64/bpf: jit support for sign extended mov
        powerpc64/bpf: jit support for sign extended load
        powerpc64/bpf: jit support for unconditional byte swap
        powerpc64/bpf: jit support for 32bit offset jmp instruction
        powerpc/pci: Hotplug driver bridge support
        pci/hotplug/pnv_php: Fix hotplug driver crash on Powernv
        powerpc/configs: Update defconfig with now user-visible CONFIG_FSL_IFC
        powerpc: add missing MODULE_DESCRIPTION() macros
        macintosh/mac_hid: add MODULE_DESCRIPTION()
        KVM: PPC: add missing MODULE_DESCRIPTION() macros
        powerpc/kexec: Use of_property_read_reg()
        powerpc/64s/radix/kfence: map __kfence_pool at page granularity
        powerpc/pseries/iommu: Define spapr_tce_table_group_ops only with CONFIG_IOMMU_API
        ...
      3c3ff7be
  5. Jul 19, 2024
    • Linus Torvalds's avatar
      Merge tag 'pci-v6.11-changes' of git://git.kernel.org/pub/scm/linux/kernel/git/pci/pci · 3f386cb8
      Linus Torvalds authored
      Pull pci updates from Bjorn Helgaas:
       "Enumeration:
      
         - Define PCIE_RESET_CONFIG_DEVICE_WAIT_MS for the generic 100ms
           required after reset before config access (Kevin Xie)
      
         - Define PCIE_T_RRS_READY_MS for the generic 100ms required after
           reset before config access (probably should be unified with
           PCIE_RESET_CONFIG_DEVICE_WAIT_MS) (Damien Le Moal)
      
        Resource management:
      
         - Rename find_resource() to find_resource_space() to be more
           descriptive (Ilpo Järvinen)
      
         - Export find_resource_space() for use by PCI core, which needs to
           learn whether there is available space for a bridge window (Ilpo
           Järvinen)
      
         - Prevent double counting of resources so window size doesn't grow on
           each remove/rescan cycle (Ilpo Järvinen)
      
         - Relax bridge window sizing algorithm so a device doesn't break
           simply because it was removed and rescanned (Ilpo Järvinen)
      
         - Evaluate the ACPI PRE...
      3f386cb8
    • Linus Torvalds's avatar
      Merge tag 'input-for-v6.11-rc0' of git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input · 8e5c0abf
      Linus Torvalds authored
      Pull input updates from Dmitry Torokhov:
      
       - streamlined logic in input core for handling normal input handlers vs
         input filters
      
       - updates to input drivers to allocate memory with sizeof(*pointer)
         instead of sizeof(type)
      
       - change to ads7846 touchscreen driver to use hsync GPIO instead of
         requiring platform data with special method (which is not compatible
         with boards using device tree)
      
       - update to adc-joystick driver to handle inverted axes
      
       - cleanups in various drivers switching them to use the new "guard" and
         "__free()" facilities
      
       - changes to several drivers (adxl34x, atmel_mxt_ts, ati-remote2,
         omap-keypad, yealink) to stop creating driver-specific device
         attributes manually and use driver core facilities for this
      
       - update to Cypress PS/2 protocol driver to properly handle errors from
         the PS/2 transport as well as other cleanups
      
       - update to edt-ft5x06 driver to support ft5426 variant
      
       - update to ektf2127 driver to support ektf2232 variant
      
       - update to exc3000 driver to support EXC81W32 variant
      
       - update to imagis driver to support IST3038 variant
      
       - other assorted driver cleanups.
      
      * tag 'input-for-v6.11-rc0' of git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input: (71 commits)
        Input: yealink - simplify locking in sysfs attribute handling
        Input: yealink - use driver core to instantiate device attributes
        Input: ati-remote2 - use driver core to instantiate device attributes
        Input: omap-keypad - use driver core to instantiate device attributes
        Input: atmel_mxt_ts - use driver core to instantiate device attributes
        Input: exc3000 - add EXC81W32 support
        dt-bindings: input: touchscreen: exc3000: add EXC81W32
        Input: twl4030-pwrbutton - fix kernel-doc warning
        Input: himax_hx83112b - add support for HX83100A
        Input: himax_hx83112b - add himax_chip struct for multi-chip support
        Input: himax_hx83112b - implement MCU register reading
        Input: himax_hx83112b - use more descriptive register defines
        dt-bindings: input: touchscreen: himax,hx83112b: add HX83100A
        Input: do not check number of events in input_pass_values()
        Input: preallocate memory to hold event values
        Input: rearrange input_alloc_device() to prepare for preallocating of vals
        Input: simplify event handling logic
        Input: make events() method return number of events processed
        Input: make sure input handlers define only one processing method
        Input: evdev - remove ->event() method
        ...
      8e5c0abf
    • Linus Torvalds's avatar
      Merge tag 'i2c-for-6.11-rc1-try2' of git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux · ef035628
      Linus Torvalds authored
      Pull i2c fixes from Wolfram Sang:
       "The I2C core gains documentation updates for the testunit, a cleanup
        regarding unneeded 'driver_data' and more sanity checks in the char
        device.
      
        For the host drivers, this release includes significant updates, with
        the primary change being the renaming from "master/slave" to
        "controller/target" to adhere to I2C v7 and SMBus 3.2 standards.
      
        New Support:
      
         - Added support for Intel Arrow Lake-H
         - Added I2C support in the Arioha SoC by linking the Mediatek I2C
           controller
      
        Cleanups:
      
         - Added the MODULE_DESCRIPTION() macro, resolving a modpost warning
           in the ALi 1563 Southbridge driver.
         - Constified the regmap_config declaration in the i2c-designware
           driver.
         - Improved the coding style in the Renesas R-Car driver by removing
           unnecessary semicolons after brackets.
      
        General improvements:
      
         - In the OMAP device, replaced NOIRQ_SYSTEM_SLEEP_PM_OPS with
           RUNTIME_PM_OPS to enable waking up the controller during suspend()
           before suspend_noirq() kicks in.
         - Improved logging in the Xilinx driver.
         - Added a warning (WARN()) in the Renesas R-Car driver for spurious
           interrupts.
      
        DTS Changes:
      
         - Removed address-cell and size-cell from the Atmel at91sam, nVidia
           Tegra 20, and Samsung S3c2410 devices.
         - Fixed Texas Instruments OMAP4 I2C controller to comply with the
           i2c-controller.yaml schema.
         - Improved indentation in DTS examples for several I2C devices.
         - Converted the NXP LPC1788 binding to the dt-schema.
         - Added documentation for the compatible string thead,th1520-i2c.
         - Added the "power-domains" property for the Meson I2C driver.
      
        AT24 EEPROM driver changes:
      
         - add support for two new Microchip models
         - document even more new models in DT bindings (those use fallback
           compatibles so no code changes)"
      
      * tag 'i2c-for-6.11-rc1-try2' of git://git.kernel.org/pub/scm/linux/kernel/git/wsa/linux: (87 commits)
        i2c: document new callbacks in i2c_algorithm
        dt-bindings: i2c: amlogic,meson6-i2c: add optional power-domains
        dt-bindings: i2c: at91: Add sama7d65 compatible string
        i2c: st: reword according to newest specification
        i2c: cpm: reword according to newest specification
        i2c: virtio: reword according to newest specification
        i2c: nvidia-gpu: reword according to newest specification
        i2c: viai2c: reword according to newest specification
        i2c: viperboard: reword according to newest specification
        i2c: uniphier: reword according to newest specification
        i2c: uniphier-f: reword according to newest specification
        i2c: tiny-usb: reword according to newest specification
        i2c: thunderx-pcidrv: reword according to newest specification
        i2c: tegra-bpmp: reword according to newest specification
        i2c: taos-evm: reword according to newest specification
        i2c: sun6i-p2wi: reword according to newest specification
        i2c: stm32f4: reword according to newest specification
        i2c: sprd: reword according to newest specification
        i2c: sis5595: reword according to newest specification
        i2c: rzv2m: reword according to newest specification
        ...
      ef035628
    • Linus Torvalds's avatar
      Merge tag 'char-misc-6.11-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc · acc5965b
      Linus Torvalds authored
      Pull char / misc and other driver updates from Greg KH:
       "Here is the "big" set of char/misc and other driver subsystem changes
        for 6.11-rc1. Nothing major in here, just loads of new drivers and
        updates. Included in here are:
      
         - IIO api updates and new drivers added
      
         - wait_interruptable_timeout() api cleanups for some drivers
      
         - MODULE_DESCRIPTION() additions for loads of drivers
      
         - parport out-of-bounds fix
      
         - interconnect driver updates and additions
      
         - mhi driver updates and additions
      
         - w1 driver fixes
      
         - binder speedups and fixes
      
         - eeprom driver updates
      
         - coresight driver updates
      
         - counter driver update
      
         - new misc driver additions
      
         - other minor api updates
      
        All of these, EXCEPT for the final Kconfig build fix for 32bit
        systems, have been in linux-next for a while with no reported issues.
        The Kconfig fixup went in 29 hours ago, so might have missed the...
      acc5965b
    • Linus Torvalds's avatar
      Merge tag 'staging-6.11-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging · 09ea8089
      Linus Torvalds authored
      Pull staging driver updates from Greg KH:
       "This is the "big" staging driver update for 6.11-rc1. Not really all
        that much happened this release cycle, just lots of tiny cleanups,
        overall about 3000 lines removed, so the cleanups were worth it.
      
        Included in here are:
      
         - loads of rtl8723bs driver cleanups
      
         - lots of rtl8192e driver cleanups
      
         - vc04_services reworks and cleanups as that codebase gets slowly
           evolved into something that will make it into the "real" part of
           the kernel hopefully soon.
      
         - other tiny staging driver cleanups
      
        All of these have been in linux-next for a while with no reported
        issues"
      
      * tag 'staging-6.11-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/staging: (124 commits)
        staging: rtl8723bs: Remove constant result function CheckNegative()
        staging: rtl8723bs: Remove unused macros in rtw_mlme_ext.h
        staging: rtl8723bs: Remove unused macros in hal_pwr_seq.h
        staging: rtl8723bs: Remove unused macros in rtw_efuse.h
        staging: rtl8723bs: Remove unused macros in rtw_mlme.h
        staging: rtl8723bs: Remove unused macros in HalPwrSeqCmd.h
        staging: rtl8723bs: Remove unused macros in Hal8723BReg.h
        staging: rtl8723bs: Remove unused macros in Hal8192CPhyReg.h
        staging: rtl8723bs: Delete file hal_phy_reg_8723b.h
        staging: rtl8723bs: Move last macro from hal_phy_reg_8723b.h
        staging: rtl8723bs: Remove unused macros in hal_phy_reg_8723b.h
        staging: rtl8723bs: Remove unused macros in hal_com_reg.h
        staging: rtl8723bs: Remove unused macros in rtw_ht.h
        staging: rtl8723bs: Remove unused macros in hal_com_h2c.h
        staging: vc04_services: vchiq_core: Stop kthreads on vchiq module unload
        staging: vchiq_core: Bubble up wait_event_interruptible() return value
        staging: nvec: Use x instead of x != NULL to improve readability.
        staging: rtl8192e: Fix conflicting types error with net_device.
        staging: rtl8723bs: Remove unused variable pwdev_priv
        staging: vc04_services: Update testing instructions
        ...
      09ea8089
    • Linus Torvalds's avatar
      Merge tag 'usb-6.11-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb · 04d17331
      Linus Torvalds authored
      Pull USB / Thunderbolt updates from Greg KH:
       "Here is the big set of USB and Thunderbolt changes for 6.11-rc1.
      
        Nothing earth-shattering in here, just constant forward progress in
        adding support for new hardware and better debugging functionalities
        for thunderbolt devices and the subsystem. Included in here are:
      
         - thunderbolt debugging update and driver additions
      
         - xhci driver updates
      
         - typec driver updates
      
         - kselftest device driver changes (acked by the relevant maintainers,
           depended on other changes in this tree.)
      
         - cdns3 driver updates
      
         - gadget driver updates
      
         - MODULE_DESCRIPTION() additions
      
         - dwc3 driver updates and fixes
      
        All of these have been in linux-next for a while with no reported
        issues"
      
      * tag 'usb-6.11-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/usb: (112 commits)
        kselftest: devices: Add test to detect device error logs
        kselftest: Move ksft helper module to common directory
        kselftest: devices: Move discoverable devices test to subdirectory
        usb: gadget: f_uac2: fix non-newline-terminated function name
        USB: uas: Implement the new shutdown callback
        USB: core: add 'shutdown' callback to usb_driver
        usb: typec: Drop explicit initialization of struct i2c_device_id::driver_data to 0
        usb: dwc3: enable CCI support for AMD-xilinx DWC3 controller
        usb: dwc2: add support for other Lantiq SoCs
        usb: gadget: Use u16 types for 16-bit fields
        usb: gadget: midi2: Fix incorrect default MIDI2 protocol setup
        usb: dwc3: core: Check all ports when set phy suspend
        usb: typec: tcpci: add support to set connector orientation
        dt-bindings: usb: Convert fsl-usb to yaml
        usb: typec: ucsi: reorder operations in ucsi_run_command()
        usb: typec: ucsi: extract common code for command handling
        usb: typec: ucsi: inline ucsi_read_message_in
        usb: typec: ucsi: rework command execution functions
        usb: typec: ucsi: split read operation
        usb: typec: ucsi: simplify command sending API
        ...
      04d17331
    • Linus Torvalds's avatar
      Merge tag 'tty-6.11-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty · aba9753c
      Linus Torvalds authored
      Pull tty / serial updates from Greg KH:
       "Here is a small set of tty and serial driver updates for 6.11-rc1. Not
        much happened this cycle, unlike the previous kernel release which had
        lots of "excitement" in this part of the kernel. Included in here are
        the following changes:
      
         - dt binding updates for new platforms
      
         - 8250 driver updates
      
         - various small serial driver fixes and updates
      
         - printk/console naming and matching attempt #2 (was reverted for
           6.10-final, should be good to go this time around, acked by the
           relevant maintainers).
      
        All of these have been in linux-next for a while with no reported
        issues"
      
      * tag 'tty-6.11-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/tty: (22 commits)
        Documentation: kernel-parameters: Add DEVNAME:0.0 format for serial ports
        serial: core: Add serial_base_match_and_update_preferred_console()
        printk: Add match_devname_and_update_prefe...
      aba9753c
    • Linus Torvalds's avatar
      Merge tag 'net-6.11-rc0' of git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net · d7e78951
      Linus Torvalds authored
      Pull networking fixes from Paolo Abeni:
       "Including fixes from netfilter.
      
        Notably this includes fixes for a s390 build breakage.
      
        Current release - new code bugs:
      
         - eth: fbnic: fix s390 build
      
         - eth: airoha: fix NULL pointer dereference in
           airoha_qdma_cleanup_rx_queue()
      
        Previous releases - regressions:
      
         - flow_dissector: use DEBUG_NET_WARN_ON_ONCE
      
         - ipv4: fix incorrect TOS in route get reply
      
         - dsa: fix chip-wide frame size config in some drivers
      
        Previous releases - always broken:
      
         - netfilter: nf_set_pipapo: fix initial map fill
      
         - eth: gve: fix XDP TX completion handling when counters overflow"
      
      * tag 'net-6.11-rc0' of git://git.kernel.org/pub/scm/linux/kernel/git/netdev/net:
        eth: fbnic: don't build the driver when skb has more than 21 frags
        net: dsa: b53: Limit chip-wide jumbo frame config to CPU ports
        net: dsa: mv88e6xxx: Limit chip-wide frame size config to CPU ports
        net...
      d7e78951
    • Linus Torvalds's avatar
      Merge tag 'for-6.11-tag' of git://git.kernel.org/pub/scm/linux/kernel/git/kdave/linux · 53a5182c
      Linus Torvalds authored
      Pull btrfs fix from David Sterba:
       "A fix for build breakage on 32bit platforms"
      
      * tag 'for-6.11-tag' of git://git.kernel.org/pub/scm/linux/kernel/git/kdave/linux:
        btrfs: change BTRFS_MOUNT_* flags to 64bit type
      53a5182c
    • Linus Torvalds's avatar
      Merge tag 'probes-fixes-v6.11-pre-rc' of... · 33cf0987
      Linus Torvalds authored
      Merge tag 'probes-fixes-v6.11-pre-rc' of git://git.kernel.org/pub/scm/linux/kernel/git/trace/linux-trace
      
      Pull uprobe fix from Masami Hiramatsu:
      
       - Add sys_uretprobe entry to scripts/syscall.tbl.
      
      * tag 'probes-fixes-v6.11-pre-rc' of git://git.kernel.org/pub/scm/linux/kernel/git/trace/linux-trace:
        syscalls: Fix to add sys_uretprobe to syscall.tbl
      33cf0987
    • Linus Torvalds's avatar
      Merge tag 'pwrseq-fixes-for-v6.11-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux · 9c67f908
      Linus Torvalds authored
      Pull power sequencing fixes from Bartosz Golaszewski:
       "There's one fix for an invalid pointer dereference in error path
        reported by smatch and two patches that address the noisy config
        choices you reported earlier this week.
      
        Summary:
      
         - fix an invalid pointer dereference in error path in pwrseq core
      
         - reduce the Kconfig noise from PCI pwrctl choices"
      
      * tag 'pwrseq-fixes-for-v6.11-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/brgl/linux:
        arm64: qcom: don't select HAVE_PWRCTL when PCI=n
        Kconfig: reduce the amount of power sequencing noise
        power: sequencing: fix an invalid pointer dereference in error path
      9c67f908
    • Linus Torvalds's avatar
      Merge tag 'sound-6.11-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound · 12cc3d53
      Linus Torvalds authored
      Pull sound updates from Takashi Iwai:
       "Lots of changes in this cycle, but mostly for cleanups and
        refactoring.
      
        Significant amount of changes are about DT schema conversions for ASoC
        at this time while we see other usual suspects, too.
      
        Some highlights below:
      
        Core:
         - Re-introduction of PCM sync ID support API
         - MIDI2 time-base extension in ALSA sequencer API
      
        ASoC:
         - Syncing of features between simple-audio-card and the two
           audio-graph cards
         - Support for specifying the order of operations for components
           within cards to allow quirking for unusual systems
         - Lots of DT schema conversions
         - Continued SOF/Intel updates for topology, SoundWire, IPC3/4
         - New support for Asahi Kasei AK4619, Cirrus Logic CS530x, Everest
           Semiconductors ES8311, NXP i.MX95 and LPC32xx, Qualcomm LPASS v2.5
           and WCD937x, Realtek RT1318 and RT1320 and Texas Instruments
           PCM5242
      
        HD-audio:
       ...
      12cc3d53
    • Linus Torvalds's avatar
      Merge tag 'clk-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/clk/linux · a4f92855
      Linus Torvalds authored
      Pull clk updates from Stephen Boyd:
       "This a large collection of clk driver updates and a handful of new SoC
        clk driver support.
      
        We have the usual Qualcomm clk drivers, along with clk drivers for the
        Sophgo and T-Head vendors, all to support some new SoCs.
      
        Nothing in particular stands out to me in the updates. There's the
        interconnect clk driver which exposes clks as interconnects, crossing
        subsystems. There's a bunch of janitorial things that are improving
        drivers in general like kmemdup_array() or fixing error paths. But
        overall the updates look normal to fix the description data which is
        usually the stuff that's wrong and/or untested.
      
        Core:
         - Skip gate basic type KUnit tests on s390 due to lack of MMIO
           emulation
      
        New Drivers:
         - AP sub-system clock controller in the T-Head TH1520
         - Sophgo Sophon sg2042 clk driver
         - Qualcomm SM7150 camera, display and video clk drivers
         - Qualc...
      a4f92855
    • Linus Torvalds's avatar
      Merge tag 'for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost · f4f92db4
      Linus Torvalds authored
      Pull virtio updates from Michael Tsirkin:
       "Several new features here:
      
         - Virtio find vqs API has been reworked (required to fix the
           scalability issue we have with adminq, which I hope to merge later
           in the cycle)
      
         - vDPA driver for Marvell OCTEON
      
         - virtio fs performance improvement
      
         - mlx5 migration speedups
      
        Fixes, cleanups all over the place"
      
      * tag 'for_linus' of git://git.kernel.org/pub/scm/linux/kernel/git/mst/vhost: (56 commits)
        virtio: rename virtio_find_vqs_info() to virtio_find_vqs()
        virtio: remove unused virtio_find_vqs() and virtio_find_vqs_ctx() helpers
        virtio: convert the rest virtio_find_vqs() users to virtio_find_vqs_info()
        virtio_balloon: convert to use virtio_find_vqs_info()
        virtiofs: convert to use virtio_find_vqs_info()
        scsi: virtio_scsi: convert to use virtio_find_vqs_info()
        virtio_net: convert to use virtio_find_vqs_info()
        virtio_crypto: convert to use virtio_find...
      f4f92db4
    • Linus Torvalds's avatar
      Merge tag 'vfio-v6.11-rc1' of https://github.com/awilliam/linux-vfio · f66b07c5
      Linus Torvalds authored
      Pull VFIO updates from Alex Williamson:
      
       - Add support for 8-byte accesses when using read/write through the
         device regions.  This fills a gap for userspace drivers that might
         not be able to use access through mmap to perform native register
         width accesses (Gerd Bayer)
      
       - Add missing MODULE_DESCRIPTION to vfio-mdev sample drivers and
         replace a non-standard MODULE_INFO usage (Jeff Johnson)
      
      * tag 'vfio-v6.11-rc1' of https://github.com/awilliam/linux-vfio:
        vfio-mdev: add missing MODULE_DESCRIPTION() macros
        vfio/pci: Fix typo in macro to declare accessors
        vfio/pci: Support 8-byte PCI loads and stores
        vfio/pci: Extract duplicated code into macro
      f66b07c5
    • Linus Torvalds's avatar
      Merge tag 'scsi-misc' of git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi · 4305ca00
      Linus Torvalds authored
      Pull SCSI updates from James Bottomley:
       "Updates to the usual drivers (ufs, lpfc, qla2xxx, mpi3mr) plus some
        misc small fixes.
      
        The only core changes are to both bsg and scsi to pass in the device
        instead of setting it afterwards as q->queuedata, so no functional
        change"
      
      * tag 'scsi-misc' of git://git.kernel.org/pub/scm/linux/kernel/git/jejb/scsi: (69 commits)
        scsi: aha152x: Use DECLARE_COMPLETION_ONSTACK for non-constant completion
        scsi: qla2xxx: Convert comma to semicolon
        scsi: qla2xxx: Update version to 10.02.09.300-k
        scsi: qla2xxx: Use QP lock to search for bsg
        scsi: qla2xxx: Reduce fabric scan duplicate code
        scsi: qla2xxx: Fix optrom version displayed in FDMI
        scsi: qla2xxx: During vport delete send async logout explicitly
        scsi: qla2xxx: Complete command early within lock
        scsi: qla2xxx: Fix flash read failure
        scsi: qla2xxx: Return ENOBUFS if sg_cnt is more than one for ELS cmds
        scsi: qla2xx...
      4305ca00
    • Linus Torvalds's avatar
      Merge tag 'for-6.11/dm-changes' of... · 661fb4e6
      Linus Torvalds authored
      Merge tag 'for-6.11/dm-changes' of git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm
      
      Pull device mapper updates from Mikulas Patocka:
      
       - Optimize processing of flush bios in the dm-linear and dm-stripe
         targets
      
       - Dm-io cleansups and refactoring
      
       - Remove unused 'struct thunk' in dm-cache
      
       - Handle minor device numbers > 255 in dm-init
      
       - Dm-verity refactoring & enabling platform keyring
      
       - Fix warning in dm-raid
      
       - Improve dm-crypt performance - split bios to smaller pieces, so that
         They could be processed concurrently
      
       - Stop using blk_limits_io_{min,opt}
      
       - Dm-vdo cleanup and refactoring
      
       - Remove max_write_zeroes_granularity and max_secure_erase_granularity
      
       - Dm-multipath cleanup & refactoring
      
       - Add dm-crypt and dm-integrity support for non-power-of-2 sector size
      
       - Fix reshape in dm-raid
      
       - Make dm_block_validator const
      
      * tag 'for-6.11/dm-changes' of git://git.kernel.org/pub/scm/linux/kernel/git/device-mapper/linux-dm: (33 commits)
        dm vdo: fix a minor formatting issue in vdo.rst
        dm vdo int-map: fix kerneldoc formatting
        dm vdo repair: add missing kerneldoc fields
        dm: Constify struct dm_block_validator
        dm-integrity: introduce the Inline mode
        dm: introduce the target flag mempool_needs_integrity
        dm raid: fix stripes adding reshape size issues
        dm raid: move _get_reshape_sectors() as prerequisite to fixing reshape size issues
        dm-crypt: support for per-sector NVMe metadata
        dm mpath: don't call dm_get_device in multipath_message
        dm: factor out helper function from dm_get_device
        dm-verity: fix dm_is_verity_target() when dm-verity is builtin
        dm: Remove max_secure_erase_granularity
        dm: Remove max_write_zeroes_granularity
        dm vdo indexer: use swap() instead of open coding it
        dm vdo: remove unused struct 'uds_attribute'
        dm: stop using blk_limits_io_{min,opt}
        dm-crypt: limit the size of encryption requests
        dm verity: add support for signature verification with platform keyring
        dm-raid: Fix WARN_ON_ONCE check for sync_thread in raid_resume
        ...
      661fb4e6
    • Linus Torvalds's avatar
      Merge tag 'dma-mapping-6.11-2024-07-19' of git://git.infradead.org/users/hch/dma-mapping · afd81d91
      Linus Torvalds authored
      Pull dma-mapping updates from Christoph Hellwig:
      
       - reduce duplicate swiotlb pool lookups (Michael Kelley)
      
       - minor small fixes (Yicong Yang, Yang Li)
      
      * tag 'dma-mapping-6.11-2024-07-19' of git://git.infradead.org/users/hch/dma-mapping:
        swiotlb: fix kernel-doc description for swiotlb_del_transient
        swiotlb: reduce swiotlb pool lookups
        dma-mapping: benchmark: Don't starve others when doing the test
      afd81d91
    • Linus Torvalds's avatar
      Merge tag 'iommu-updates-v6.11' of git://git.kernel.org/pub/scm/linux/kernel/git/iommu/linux · ebcfbf02
      Linus Torvalds authored
      Pull iommu updates from Will Deacon:
       "Core:
      
         - Support for the "ats-supported" device-tree property
      
         - Removal of the 'ops' field from 'struct iommu_fwspec'
      
         - Introduction of iommu_paging_domain_alloc() and partial conversion
           of existing users
      
         - Introduce 'struct iommu_attach_handle' and provide corresponding
           IOMMU interfaces which will be used by the IOMMUFD subsystem
      
         - Remove stale documentation
      
         - Add missing MODULE_DESCRIPTION() macro
      
         - Misc cleanups
      
        Allwinner Sun50i:
      
         - Ensure bypass mode is disabled on H616 SoCs
      
         - Ensure page-tables are allocated below 4GiB for the 32-bit
           page-table walker
      
         - Add new device-tree compatible strings
      
        AMD Vi:
      
         - Use try_cmpxchg64() instead of cmpxchg64() when updating pte
      
        Arm SMMUv2:
      
         - Print much more useful information on context faults
      
         - Fix Qualcomm TBU probing when CONFIG_ARM_SMMU_QCOM_DEBUG=n
      
         - Add n...
      ebcfbf02
    • Linus Torvalds's avatar
      Merge tag 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdma · 3d515209
      Linus Torvalds authored
      Pull rdma updates from Jason Gunthorpe:
       "Usual collection of small improvements and fixes:
      
         - Bug fixes and minor improvments in efa, irdma, mlx4, mlx5, rxe,
           hf1, qib, ocrdma
      
         - bnxt_re support for MSN, which is a new retransmit logic
      
         - Initial mana support for RC qps
      
         - Use after free bug and cleanups in iwcm
      
         - Reduce resource usage in mlx5 when RDMA verbs features are not used
      
         - New verb to drain shared recieve queues, similar to normal recieve
           queues. This is necessary to allow ULPs a clean shutdown. Used in
           the iscsi rdma target
      
         - mlx5 support for more than 16 bits of doorbell indexes
      
         - Doorbell moderation support for bnxt_re
      
         - IB multi-plane support for mlx5
      
         - New EFA adaptor PCI IDs
      
         - RDMA_NAME_ASSIGN_TYPE_USER to hint to userspace that it shouldn't
           rename the device
      
         - A collection of hns bugs
      
         - Fix long standing bug in bnxt_re with incorrect endian handling of
           immediate data"
      
      * tag 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/rdma/rdma: (65 commits)
        IB/hfi1: Constify struct flag_table
        RDMA/mana_ib: Set correct device into ib
        bnxt_re: Fix imm_data endianness
        RDMA: Fix netdev tracker in ib_device_set_netdev
        RDMA/hns: Fix mbx timing out before CMD execution is completed
        RDMA/hns: Fix insufficient extend DB for VFs.
        RDMA/hns: Fix undifined behavior caused by invalid max_sge
        RDMA/hns: Fix shift-out-bounds when max_inline_data is 0
        RDMA/hns: Fix missing pagesize and alignment check in FRMR
        RDMA/hns: Fix unmatch exception handling when init eq table fails
        RDMA/hns: Fix soft lockup under heavy CEQE load
        RDMA/hns: Check atomic wr length
        RDMA/ocrdma: Don't inline statistics functions
        RDMA/core: Introduce "name_assign_type" for an IB device
        RDMA/qib: Fix truncation compilation warnings in qib_verbs.c
        RDMA/qib: Fix truncation compilation warnings in qib_init.c
        RDMA/efa: Add EFA 0xefa3 PCI ID
        RDMA/mlx5: Support per-plane port IB counters by querying PPCNT register
        net/mlx5: mlx5_ifc update for accessing ppcnt register of plane ports
        RDMA/mlx5: Add plane index support when querying PTYS registers
        ...
      3d515209
    • Linus Torvalds's avatar
      Merge tag 'for-linus-iommufd' of git://git.kernel.org/pub/scm/linux/kernel/git/jgg/iommufd · ef7c8f2b
      Linus Torvalds authored
      Pull iommufd updates from Jason Gunthorpe:
      
       - The iova_bitmap logic for efficiently reporting dirty pages back to
         userspace has a few more tricky corner case bugs that have been
         resolved and backed with new tests.
      
         The revised version has simpler logic.
      
       - Shared branch with iommu for handle support when doing domain attach.
      
         Handles allow the domain owner to include additional private data on
         a per-device basis.
      
       - IO Page Fault Reporting to userspace via iommufd. Page faults can be
         generated on fault capable HWPTs when a translation is not present.
      
         Routing them to userspace would allow a VMM to be able to virtualize
         them into an emulated vIOMMU. This is the next step to fully enabling
         vSVA support.
      
      * tag 'for-linus-iommufd' of git://git.kernel.org/pub/scm/linux/kernel/git/jgg/iommufd: (26 commits)
        iommufd: Put constants for all the uAPI enums
        iommufd: Fix error pointer checking
      ...
      ef7c8f2b
    • Linus Torvalds's avatar
      Merge tag 'tpmdd-next-6.11-rc1-roundtwo' of... · 07e773db
      Linus Torvalds authored
      Merge tag 'tpmdd-next-6.11-rc1-roundtwo' of git://git.kernel.org/pub/scm/linux/kernel/git/jarkko/linux-tpmdd
      
      Pull tpm fix from Jarkko Sakkinen:
       "An additional fix that supplements my earlier fixes for handling auth,
        which I unfortunately missed last time"
      
      * tag 'tpmdd-next-6.11-rc1-roundtwo' of git://git.kernel.org/pub/scm/linux/kernel/git/jarkko/linux-tpmdd:
        tpm: Use auth only after NULL check in tpm_buf_check_hmac_response()
      07e773db
    • David Howells's avatar
      cifs: Add a tracepoint to track credits involved in R/W requests · 519be989
      David Howells authored
      
      Add a tracepoint to track the credit changes and server in_flight value
      involved in the lifetime of a R/W request, logging it against the
      request/subreq debugging ID.  This requires the debugging IDs to be
      recorded in the cifs_credits struct.
      
      The tracepoint can be enabled with:
      
      	echo 1 >/sys/kernel/debug/tracing/events/cifs/smb3_rw_credits/enable
      
      Also add a three-state flag to struct cifs_credits to note if we're
      interested in determining when the in_flight contribution ends and, if so,
      to track whether we've decremented the contribution yet.
      
      Signed-off-by: default avatarDavid Howells <dhowells@redhat.com>
      Reviewed-by: default avatarPaulo Alcantara (Red Hat) <pc@manguebit.com>
      cc: Jeff Layton <jlayton@kernel.org>
      cc: linux-cifs@vger.kernel.org
      cc: netfs@lists.linux.dev
      cc: linux-fsdevel@vger.kernel.org
      Signed-off-by: default avatarSteve French <stfrench@microsoft.com>
      519be989