stable.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: stable@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	patches@lists.linux.dev, Jason Gunthorpe <jgg@nvidia.com>,
	Nicolin Chen <nicolinc@nvidia.com>,
	Kevin Tian <kevin.tian@intel.com>
Subject: [PATCH 6.13 340/443] iommufd: Fix struct iommu_hwpt_pgfault init and padding
Date: Thu, 13 Feb 2025 15:28:25 +0100	[thread overview]
Message-ID: <20250213142453.743345320@linuxfoundation.org> (raw)
In-Reply-To: <20250213142440.609878115@linuxfoundation.org>

6.13-stable review patch.  If anyone has any objections, please let me know.

------------------

From: Nicolin Chen <nicolinc@nvidia.com>

commit e721f619e3ec9bae08bf419c3944cf1e6966c821 upstream.

The iommu_hwpt_pgfault is used to report IO page fault data to userspace,
but iommufd_fault_fops_read was never zeroing its padding. This leaks the
content of the kernel stack memory to userspace.

Also, the iommufd uAPI requires explicit padding and use of __aligned_u64
to ensure ABI compatibility's with 32 bit.

pahole result, before:
struct iommu_hwpt_pgfault {
        __u32     flags;                /*     0     4 */
        __u32     dev_id;               /*     4     4 */
        __u32     pasid;                /*     8     4 */
        __u32     grpid;                /*    12     4 */
        __u32     perm;                 /*    16     4 */

        /* XXX 4 bytes hole, try to pack */

        __u64     addr;                 /*    24     8 */
        __u32     length;               /*    32     4 */
        __u32     cookie;               /*    36     4 */

        /* size: 40, cachelines: 1, members: 8 */
        /* sum members: 36, holes: 1, sum holes: 4 */
        /* last cacheline: 40 bytes */
};

pahole result, after:
struct iommu_hwpt_pgfault {
        __u32      flags;                /*     0     4 */
        __u32      dev_id;               /*     4     4 */
        __u32      pasid;                /*     8     4 */
        __u32      grpid;                /*    12     4 */
        __u32      perm;                 /*    16     4 */
        __u32      __reserved;           /*    20     4 */
        __u64      addr __attribute__((__aligned__(8))); /*    24     8 */
        __u32      length;               /*    32     4 */
        __u32      cookie;               /*    36     4 */

        /* size: 40, cachelines: 1, members: 9 */
        /* forced alignments: 1 */
        /* last cacheline: 40 bytes */
} __attribute__((__aligned__(8)));

Fixes: c714f15860fc ("iommufd: Add fault and response message definitions")
Link: https://patch.msgid.link/r/20250120195051.2450-1-nicolinc@nvidia.com
Cc: stable@vger.kernel.org
Reviewed-by: Jason Gunthorpe <jgg@nvidia.com>
Signed-off-by: Nicolin Chen <nicolinc@nvidia.com>
Reviewed-by: Kevin Tian <kevin.tian@intel.com>
Signed-off-by: Jason Gunthorpe <jgg@nvidia.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
 drivers/iommu/iommufd/fault.c |    2 +-
 include/uapi/linux/iommufd.h  |    4 +++-
 2 files changed, 4 insertions(+), 2 deletions(-)

--- a/drivers/iommu/iommufd/fault.c
+++ b/drivers/iommu/iommufd/fault.c
@@ -247,7 +247,7 @@ static ssize_t iommufd_fault_fops_read(s
 {
 	size_t fault_size = sizeof(struct iommu_hwpt_pgfault);
 	struct iommufd_fault *fault = filep->private_data;
-	struct iommu_hwpt_pgfault data;
+	struct iommu_hwpt_pgfault data = {};
 	struct iommufd_device *idev;
 	struct iopf_group *group;
 	struct iopf_fault *iopf;
--- a/include/uapi/linux/iommufd.h
+++ b/include/uapi/linux/iommufd.h
@@ -868,6 +868,7 @@ enum iommu_hwpt_pgfault_perm {
  * @pasid: Process Address Space ID
  * @grpid: Page Request Group Index
  * @perm: Combination of enum iommu_hwpt_pgfault_perm
+ * @__reserved: Must be 0.
  * @addr: Fault address
  * @length: a hint of how much data the requestor is expecting to fetch. For
  *          example, if the PRI initiator knows it is going to do a 10MB
@@ -883,7 +884,8 @@ struct iommu_hwpt_pgfault {
 	__u32 pasid;
 	__u32 grpid;
 	__u32 perm;
-	__u64 addr;
+	__u32 __reserved;
+	__aligned_u64 addr;
 	__u32 length;
 	__u32 cookie;
 };



  parent reply	other threads:[~2025-02-13 15:15 UTC|newest]

Thread overview: 474+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-02-13 14:22 [PATCH 6.13 000/443] 6.13.3-rc1 review Greg Kroah-Hartman
2025-02-13 14:22 ` [PATCH 6.13 001/443] irqchip/lan966x-oic: Make CONFIG_LAN966X_OIC depend on CONFIG_MCHP_LAN966X_PCI Greg Kroah-Hartman
2025-02-13 14:22 ` [PATCH 6.13 002/443] btrfs: fix lockdep splat while merging a relocation root Greg Kroah-Hartman
2025-02-13 14:22 ` [PATCH 6.13 003/443] btrfs: fix assertion failure when splitting ordered extent after transaction abort Greg Kroah-Hartman
2025-02-13 14:22 ` [PATCH 6.13 004/443] btrfs: do not output error message if a qgroup has been already cleaned up Greg Kroah-Hartman
2025-02-13 14:22 ` [PATCH 6.13 005/443] btrfs: fix use-after-free when attempting to join an aborted transaction Greg Kroah-Hartman
2025-02-13 14:22 ` [PATCH 6.13 006/443] arm64/mm: Ensure adequate HUGE_MAX_HSTATE Greg Kroah-Hartman
2025-02-13 14:22 ` [PATCH 6.13 007/443] exec: fix up /proc/pid/comm in the execveat(AT_EMPTY_PATH) case Greg Kroah-Hartman
2025-02-13 14:22 ` [PATCH 6.13 008/443] s390/stackleak: Use exrl instead of ex in __stackleak_poison() Greg Kroah-Hartman
2025-02-13 14:22 ` [PATCH 6.13 009/443] btrfs: fix data race when accessing the inodes disk_i_size at btrfs_drop_extents() Greg Kroah-Hartman
2025-02-13 14:22 ` [PATCH 6.13 010/443] btrfs: convert BUG_ON in btrfs_reloc_cow_block() to proper error handling Greg Kroah-Hartman
2025-02-13 14:22 ` [PATCH 6.13 011/443] btrfs: dont use btrfs_set_item_key_safe on RAID stripe-extents Greg Kroah-Hartman
2025-02-13 14:22 ` [PATCH 6.13 012/443] sched: Dont try to catch up excess steal time Greg Kroah-Hartman
2025-02-13 14:22 ` [PATCH 6.13 013/443] sched/deadline: Correctly account for allocated bandwidth during hotplug Greg Kroah-Hartman
2025-02-13 14:22 ` [PATCH 6.13 014/443] sched/deadline: Check bandwidth overflow earlier for hotplug Greg Kroah-Hartman
2025-02-13 14:23 ` [PATCH 6.13 015/443] x86: Convert unreachable() to BUG() Greg Kroah-Hartman
2025-02-13 14:23 ` [PATCH 6.13 016/443] locking/ww_mutex/test: Use swap() macro Greg Kroah-Hartman
2025-02-13 14:23 ` [PATCH 6.13 017/443] lockdep: Fix upper limit for LOCKDEP_*_BITS configs Greg Kroah-Hartman
2025-02-13 14:23 ` [PATCH 6.13 018/443] x86/amd_nb: Restrict init function to AMD-based systems Greg Kroah-Hartman
2025-02-13 14:23 ` [PATCH 6.13 019/443] drm/virtio: New fence for every plane update Greg Kroah-Hartman
2025-02-13 14:23 ` [PATCH 6.13 020/443] drm: Add panel backlight quirks Greg Kroah-Hartman
2025-02-13 14:23 ` [PATCH 6.13 021/443] drm/amd/display: Add support for minimum backlight quirk Greg Kroah-Hartman
2025-02-13 14:23 ` [PATCH 6.13 022/443] drm: panel-backlight-quirks: Add Framework 13 matte panel Greg Kroah-Hartman
2025-02-13 14:23 ` [PATCH 6.13 023/443] drm: panel-backlight-quirks: Add Framework 13 glossy and 2.8k panels Greg Kroah-Hartman
2025-02-13 14:23 ` [PATCH 6.13 024/443] nvkm/gsp: correctly advance the read pointer of GSP message queue Greg Kroah-Hartman
2025-02-13 14:23 ` [PATCH 6.13 025/443] nvkm: correctly calculate the available space of the GSP cmdq buffer Greg Kroah-Hartman
2025-02-13 14:23 ` [PATCH 6.13 026/443] drm/tests: hdmi: handle empty modes in find_preferred_mode() Greg Kroah-Hartman
2025-02-13 14:23 ` [PATCH 6.13 027/443] drm/tests: hdmi: return meaningful value from set_connector_edid() Greg Kroah-Hartman
2025-02-13 14:23 ` [PATCH 6.13 028/443] drm/amd/display: Populate chroma prefetch parameters, DET buffer fix Greg Kroah-Hartman
2025-02-13 14:23 ` [PATCH 6.13 029/443] drm/amd/display: Overwriting dualDPP UBF values before usage Greg Kroah-Hartman
2025-02-13 14:23 ` [PATCH 6.13 030/443] printk: Fix signed integer overflow when defining LOG_BUF_LEN_MAX Greg Kroah-Hartman
2025-02-13 14:23 ` [PATCH 6.13 031/443] drm/msm/dpu: filter out too wide modes if no 3dmux is present Greg Kroah-Hartman
2025-02-13 14:23 ` [PATCH 6.13 032/443] drm/connector: add mutex to protect ELD from concurrent access Greg Kroah-Hartman
2025-02-13 14:23 ` [PATCH 6.13 033/443] drm/bridge: anx7625: use eld_mutex to protect access to connector->eld Greg Kroah-Hartman
2025-02-13 14:23 ` [PATCH 6.13 034/443] drm/bridge: ite-it66121: " Greg Kroah-Hartman
2025-02-13 14:23 ` [PATCH 6.13 035/443] drm/amd/display: " Greg Kroah-Hartman
2025-02-13 14:23 ` [PATCH 6.13 036/443] drm/exynos: hdmi: " Greg Kroah-Hartman
2025-02-13 14:23 ` [PATCH 6.13 037/443] drm/msm/dp: " Greg Kroah-Hartman
2025-02-13 14:23 ` [PATCH 6.13 038/443] drm/radeon: " Greg Kroah-Hartman
2025-02-13 14:23 ` [PATCH 6.13 039/443] drm/sti: hdmi: " Greg Kroah-Hartman
2025-02-13 14:23 ` [PATCH 6.13 040/443] drm/vc4: " Greg Kroah-Hartman
2025-02-13 14:23 ` [PATCH 6.13 041/443] drm/amd/display: Fix Mode Cutoff in DSC Passthrough to DP2.1 Monitor Greg Kroah-Hartman
2025-02-13 14:23 ` [PATCH 6.13 042/443] drm/amdgpu: Dont enable sdma 4.4.5 CTXEMPTY interrupt Greg Kroah-Hartman
2025-02-13 14:23 ` [PATCH 6.13 043/443] drm/amdkfd: Queue interrupt work to different CPU Greg Kroah-Hartman
2025-02-13 14:23 ` [PATCH 6.13 044/443] drm/bridge: it6505: Change definition MAX_HDCP_DOWN_STREAM_COUNT Greg Kroah-Hartman
2025-02-13 14:23 ` [PATCH 6.13 045/443] drm/bridge: it6505: fix HDCP Bstatus check Greg Kroah-Hartman
2025-02-13 14:23 ` [PATCH 6.13 046/443] drm/bridge: it6505: fix HDCP encryption when R0 ready Greg Kroah-Hartman
2025-02-13 14:23 ` [PATCH 6.13 047/443] drm/bridge: it6505: fix HDCP CTS compare V matching Greg Kroah-Hartman
2025-02-13 14:23 ` [PATCH 6.13 048/443] drm/bridge: it6505: fix HDCP CTS KSV list wait timer Greg Kroah-Hartman
2025-02-13 14:23 ` [PATCH 6.13 049/443] safesetid: check size of policy writes Greg Kroah-Hartman
2025-02-13 14:23 ` [PATCH 6.13 050/443] drm/amd/display: Increase sanitizer frame larger than limit when compile testing with clang Greg Kroah-Hartman
2025-02-13 14:23 ` [PATCH 6.13 051/443] drm/amd/display: Limit Scaling Ratio on DCN3.01 Greg Kroah-Hartman
2025-02-13 14:23 ` [PATCH 6.13 052/443] ring-buffer: Make reading page consistent with the code logic Greg Kroah-Hartman
2025-02-13 14:23 ` [PATCH 6.13 053/443] wifi: ath12k: Fix for out-of bound access error Greg Kroah-Hartman
2025-02-13 14:23 ` [PATCH 6.13 054/443] wifi: ath12k: ath12k_mac_op_set_key(): fix uninitialized symbol ret Greg Kroah-Hartman
2025-02-13 14:23 ` [PATCH 6.13 055/443] wifi: rtw89: add crystal_cap check to avoid setting as overflow value Greg Kroah-Hartman
2025-02-13 14:23 ` [PATCH 6.13 056/443] tun: fix group permission check Greg Kroah-Hartman
2025-02-13 14:23 ` [PATCH 6.13 057/443] mmc: core: Respect quirk_max_rate for non-UHS SDIO card Greg Kroah-Hartman
2025-02-13 14:23 ` [PATCH 6.13 058/443] mmc: sdhci-esdhc-imx: enable SDHCI_QUIRK_NO_LED quirk for S32G Greg Kroah-Hartman
2025-02-13 14:23 ` [PATCH 6.13 059/443] wifi: brcmsmac: add gain range check to wlc_phy_iqcal_gainparams_nphy() Greg Kroah-Hartman
2025-02-13 14:23 ` [PATCH 6.13 060/443] tomoyo: dont emit warning in tomoyo_write_control() Greg Kroah-Hartman
2025-02-13 14:23 ` [PATCH 6.13 061/443] mfd: lpc_ich: Add another Gemini Lake ISA bridge PCI device-id Greg Kroah-Hartman
2025-02-13 14:23 ` [PATCH 6.13 062/443] wifi: rtw88: add __packed attribute to efuse layout struct Greg Kroah-Hartman
2025-02-13 14:23 ` [PATCH 6.13 063/443] clk: qcom: Make GCC_8150 depend on QCOM_GDSC Greg Kroah-Hartman
2025-02-13 14:23 ` [PATCH 6.13 064/443] net/mlx5: HWS, change error flow on matcher disconnect Greg Kroah-Hartman
2025-02-13 14:23 ` [PATCH 6.13 065/443] net/mlx5: HWS, num_of_rules counter on matcher should be atomic Greg Kroah-Hartman
2025-02-13 14:23 ` [PATCH 6.13 066/443] HID: multitouch: Add quirk for Hantick 5288 touchpad Greg Kroah-Hartman
2025-02-13 14:23 ` [PATCH 6.13 067/443] HID: Wacom: Add PCI Wacom device support Greg Kroah-Hartman
2025-02-13 14:23 ` [PATCH 6.13 068/443] net/mlx5: use do_aux_work for PHC overflow checks Greg Kroah-Hartman
2025-02-13 14:23 ` [PATCH 6.13 069/443] Revert "mfd: axp20x: Allow multiple regulators" Greg Kroah-Hartman
2025-02-13 14:23 ` [PATCH 6.13 070/443] wifi: brcmfmac: Check the return value of of_property_read_string_index() Greg Kroah-Hartman
2025-02-13 14:23 ` [PATCH 6.13 071/443] wifi: iwlwifi: pcie: Add support for new device ids Greg Kroah-Hartman
2025-02-13 14:23 ` [PATCH 6.13 072/443] wifi: iwlwifi: avoid memory leak Greg Kroah-Hartman
2025-02-13 14:23 ` [PATCH 6.13 073/443] i2c: Force ELAN06FA touchpad I2C bus freq to 100KHz Greg Kroah-Hartman
2025-02-13 14:23 ` [PATCH 6.13 074/443] APEI: GHES: Have GHES honor the panic= setting Greg Kroah-Hartman
2025-02-13 14:24 ` [PATCH 6.13 075/443] Bluetooth: btusb: Add ID 0x2c7c:0x0130 for Qualcomm WCN785x Greg Kroah-Hartman
2025-02-13 14:24 ` [PATCH 6.13 076/443] Bluetooth: btusb: Add new VID/PID 13d3/3610 for MT7922 Greg Kroah-Hartman
2025-02-13 14:24 ` [PATCH 6.13 077/443] Bluetooth: btusb: Add new VID/PID 13d3/3628 for MT7925 Greg Kroah-Hartman
2025-02-13 14:24 ` [PATCH 6.13 078/443] Bluetooth: MGMT: Fix slab-use-after-free Read in mgmt_remove_adv_monitor_sync Greg Kroah-Hartman
2025-02-13 14:24 ` [PATCH 6.13 079/443] net: wwan: iosm: Fix hibernation by re-binding the driver around it Greg Kroah-Hartman
2025-02-13 14:24 ` [PATCH 6.13 080/443] HID: hid-asus: Disable OOBE mode on the ProArt P16 Greg Kroah-Hartman
2025-02-13 14:24 ` [PATCH 6.13 081/443] mmc: sdhci-msm: Correctly set the load for the regulator Greg Kroah-Hartman
2025-02-13 14:24 ` [PATCH 6.13 082/443] octeon_ep: update tx/rx stats locally for persistence Greg Kroah-Hartman
2025-02-13 14:24 ` [PATCH 6.13 083/443] octeon_ep_vf: " Greg Kroah-Hartman
2025-02-13 14:24 ` [PATCH 6.13 084/443] tipc: re-order conditions in tipc_crypto_key_rcv() Greg Kroah-Hartman
2025-02-13 14:24 ` [PATCH 6.13 085/443] selftests/net/ipsec: Fix Null pointer dereference in rtattr_pack() Greg Kroah-Hartman
2025-02-13 14:24 ` [PATCH 6.13 086/443] net: ethernet: ti: am65-cpsw: ensure proper channel cleanup in error path Greg Kroah-Hartman
2025-02-13 14:24 ` [PATCH 6.13 087/443] ASoC: SOF: Intel: hda-dai: Ensure DAI widget is valid during params Greg Kroah-Hartman
2025-02-13 14:24 ` [PATCH 6.13 088/443] bpf: Improve verifier log for resource leak on exit Greg Kroah-Hartman
2025-02-13 14:24 ` [PATCH 6.13 089/443] x86/kexec: Allocate PGD for x86_64 transition page tables separately Greg Kroah-Hartman
2025-03-11 15:45   ` [EXTERNAL] " David Woodhouse
2025-03-12  7:47     ` Greg Kroah-Hartman
2025-03-12  7:54       ` Ard Biesheuvel
2025-03-12  8:16         ` Greg Kroah-Hartman
2025-03-12  8:31           ` Ard Biesheuvel
2025-03-12  8:55             ` Greg Kroah-Hartman
2025-03-12  8:37           ` David Woodhouse
2025-02-13 14:24 ` [PATCH 6.13 090/443] ASoC: Intel: sof_sdw: Correct quirk for Lenovo Yoga Slim 7 Greg Kroah-Hartman
2025-02-13 14:24 ` [PATCH 6.13 091/443] iommu/arm-smmu-qcom: add sdm670 adreno iommu compatible Greg Kroah-Hartman
2025-02-13 14:24 ` [PATCH 6.13 092/443] iommu/arm-smmu-v3: Clean up more on probe failure Greg Kroah-Hartman
2025-02-13 14:24 ` [PATCH 6.13 093/443] platform/x86: int3472: Check for adev == NULL Greg Kroah-Hartman
2025-02-13 14:24 ` [PATCH 6.13 094/443] platform/x86: acer-wmi: Add support for Acer PH14-51 Greg Kroah-Hartman
2025-02-13 14:24 ` [PATCH 6.13 095/443] ASoC: soc-pcm: dont use soc_pcm_ret() on .prepare callback Greg Kroah-Hartman
2025-02-13 14:24 ` [PATCH 6.13 096/443] iommu/vt-d: Avoid use of NULL after WARN_ON_ONCE Greg Kroah-Hartman
2025-02-13 14:24 ` [PATCH 6.13 097/443] platform/x86: acer-wmi: Add support for Acer Predator PH16-72 Greg Kroah-Hartman
2025-02-13 14:24 ` [PATCH 6.13 098/443] ASoC: amd: Add ACPI dependency to fix build error Greg Kroah-Hartman
2025-02-13 14:24 ` [PATCH 6.13 099/443] Input: allocate keycode for phone linking Greg Kroah-Hartman
2025-02-13 14:24 ` [PATCH 6.13 100/443] platform/x86: acer-wmi: add support for Acer Nitro AN515-58 Greg Kroah-Hartman
2025-02-13 14:24 ` [PATCH 6.13 101/443] platform/x86: acer-wmi: Ignore AC events Greg Kroah-Hartman
2025-02-13 14:24 ` [PATCH 6.13 102/443] tty: xilinx_uartps: split sysrq handling Greg Kroah-Hartman
2025-02-13 14:24 ` [PATCH 6.13 103/443] tty: Permit some TIOCL_SETSEL modes without CAP_SYS_ADMIN Greg Kroah-Hartman
2025-02-13 14:24 ` [PATCH 6.13 104/443] platform/x86: serdev_helpers: Check for serial_ctrl_uid == NULL Greg Kroah-Hartman
2025-02-13 14:24 ` [PATCH 6.13 105/443] sched/fair: Fix inaccurate h_nr_runnable accounting with delayed dequeue Greg Kroah-Hartman
2025-02-13 14:24 ` [PATCH 6.13 106/443] nvme: handle connectivity loss in nvme_set_queue_count Greg Kroah-Hartman
2025-02-13 14:24 ` [PATCH 6.13 107/443] nvmet: fix a memory leak in controller identify Greg Kroah-Hartman
2025-02-13 14:24 ` [PATCH 6.13 108/443] firmware: iscsi_ibft: fix ISCSI_IBFT Kconfig entry Greg Kroah-Hartman
2025-02-13 14:24 ` [PATCH 6.13 109/443] gpu: drm_dp_cec: fix broken CEC adapter properties check Greg Kroah-Hartman
2025-02-13 14:24 ` [PATCH 6.13 110/443] ice: put Rx buffers after being done with current frame Greg Kroah-Hartman
2025-02-13 14:24 ` [PATCH 6.13 111/443] ice: gather page_count()s of each frag right before XDP prog call Greg Kroah-Hartman
2025-02-13 14:24 ` [PATCH 6.13 112/443] ice: stop storing XDP verdict within ice_rx_buf Greg Kroah-Hartman
2025-02-13 14:24 ` [PATCH 6.13 113/443] nvme: make nvme_tls_attrs_group static Greg Kroah-Hartman
2025-02-13 14:24 ` [PATCH 6.13 114/443] nvme-fc: use ctrl state getter Greg Kroah-Hartman
2025-02-13 14:24 ` [PATCH 6.13 115/443] net: bcmgenet: Correct overlaying of PHY and MAC Wake-on-LAN Greg Kroah-Hartman
2025-02-13 14:24 ` [PATCH 6.13 116/443] ice: Add check for devm_kzalloc() Greg Kroah-Hartman
2025-02-13 14:24 ` [PATCH 6.13 117/443] vmxnet3: Fix tx queue race condition with XDP Greg Kroah-Hartman
2025-02-13 14:24 ` [PATCH 6.13 118/443] tg3: Disable tg3 PCIe AER on system reboot Greg Kroah-Hartman
2025-02-13 14:24 ` [PATCH 6.13 119/443] udp: gso: do not drop small packets when PMTU reduces Greg Kroah-Hartman
2025-02-13 14:24 ` [PATCH 6.13 120/443] drm/i915/hdcp: Fix Repeater authentication during topology change Greg Kroah-Hartman
2025-02-13 14:24 ` [PATCH 6.13 121/443] drm/i915/dp: fix the Adaptive sync Operation mode for SDP Greg Kroah-Hartman
2025-02-13 14:24 ` [PATCH 6.13 122/443] drm/xe/oa: Preserve oa_ctrl unused bits Greg Kroah-Hartman
2025-02-13 14:24 ` [PATCH 6.13 123/443] drm/xe/pf: Fix migration initialization Greg Kroah-Hartman
2025-02-13 14:24 ` [PATCH 6.13 124/443] ethtool: rss: fix hiding unsupported fields in dumps Greg Kroah-Hartman
2025-02-13 14:24 ` [PATCH 6.13 125/443] ethtool: ntuple: fix rss + ring_cookie check Greg Kroah-Hartman
2025-02-13 14:24 ` [PATCH 6.13 126/443] selftests: drv-net: rss_ctx: add missing cleanup in queue reconfigure Greg Kroah-Hartman
2025-02-13 14:24 ` [PATCH 6.13 127/443] rxrpc: Fix the rxrpc_connection attend queue handling Greg Kroah-Hartman
2025-02-13 14:24 ` [PATCH 6.13 128/443] gpio: pca953x: Improve interrupt support Greg Kroah-Hartman
2025-02-13 14:24 ` [PATCH 6.13 129/443] net: atlantic: fix warning during hot unplug Greg Kroah-Hartman
2025-02-13 14:24 ` [PATCH 6.13 130/443] net: rose: lock the socket in rose_bind() Greg Kroah-Hartman
2025-02-13 14:24 ` [PATCH 6.13 131/443] gpio: sim: lock hog configfs items if present Greg Kroah-Hartman
2025-02-13 14:24 ` [PATCH 6.13 132/443] gpio: GPIO_GRGPIO should depend on OF Greg Kroah-Hartman
2025-02-13 14:24 ` [PATCH 6.13 133/443] x86/xen: fix xen_hypercall_hvm() to not clobber %rbx Greg Kroah-Hartman
2025-02-13 14:24 ` [PATCH 6.13 134/443] x86/xen: add FRAME_END to xen_hypercall_hvm() Greg Kroah-Hartman
2025-02-13 14:25 ` [PATCH 6.13 135/443] ACPI: property: Fix return value for nval == 0 in acpi_data_prop_read() Greg Kroah-Hartman
2025-02-13 14:25 ` [PATCH 6.13 136/443] pfifo_tail_enqueue: Drop new packet when sch->limit == 0 Greg Kroah-Hartman
2025-02-13 14:25 ` [PATCH 6.13 137/443] netem: Update sch->q.qlen before qdisc_tree_reduce_backlog() Greg Kroah-Hartman
2025-02-13 14:25 ` [PATCH 6.13 138/443] tun: revert fix group permission check Greg Kroah-Hartman
2025-02-13 14:25 ` [PATCH 6.13 139/443] net: sched: Fix truncation of offloaded action statistics Greg Kroah-Hartman
2025-02-13 14:25 ` [PATCH 6.13 140/443] rxrpc: Fix call state set to not include the SERVER_SECURING state Greg Kroah-Hartman
2025-02-13 14:25 ` [PATCH 6.13 141/443] PCI/TPH: Restore TPH Requester Enable correctly Greg Kroah-Hartman
2025-02-13 14:25 ` [PATCH 6.13 142/443] cpufreq: fix using cpufreq-dt as module Greg Kroah-Hartman
2025-02-13 14:25 ` [PATCH 6.13 143/443] cpufreq: s3c64xx: Fix compilation warning Greg Kroah-Hartman
2025-02-13 14:25 ` [PATCH 6.13 144/443] leds: lp8860: Write full EEPROM, not only half of it Greg Kroah-Hartman
2025-02-13 14:25 ` [PATCH 6.13 145/443] ALSA: hda/realtek: Enable Mute LED on HP Laptop 14s-fq1xxx Greg Kroah-Hartman
2025-02-13 14:25 ` [PATCH 6.13 146/443] cifs: Remove intermediate object of failed create SFU call Greg Kroah-Hartman
2025-02-13 14:25 ` [PATCH 6.13 147/443] drm/modeset: Handle tiled displays in pan_display_atomic Greg Kroah-Hartman
2025-02-13 14:25 ` [PATCH 6.13 148/443] drm/client: Handle tiled displays better Greg Kroah-Hartman
2025-02-13 14:25 ` [PATCH 6.13 149/443] smb: client: fix order of arguments of tracepoints Greg Kroah-Hartman
2025-02-13 14:25 ` [PATCH 6.13 150/443] smb: client: change lease epoch type from unsigned int to __u16 Greg Kroah-Hartman
2025-02-13 14:25 ` [PATCH 6.13 151/443] md: reintroduce md-linear Greg Kroah-Hartman
2025-02-13 14:25 ` [PATCH 6.13 152/443] s390/futex: Fix FUTEX_OP_ANDN implementation Greg Kroah-Hartman
2025-02-13 14:25 ` [PATCH 6.13 153/443] arm64: Filter out SVE hwcaps when FEAT_SVE isnt implemented Greg Kroah-Hartman
2025-02-13 14:25 ` [PATCH 6.13 154/443] m68k: vga: Fix I/O defines Greg Kroah-Hartman
2025-02-13 14:25 ` [PATCH 6.13 155/443] fs/proc: do_task_stat: Fix ESP not readable during coredump Greg Kroah-Hartman
2025-02-13 14:25 ` [PATCH 6.13 156/443] block: mark GFP_NOIO around sysfs ->store() Greg Kroah-Hartman
2025-02-13 14:25 ` [PATCH 6.13 157/443] binfmt_flat: Fix integer overflow bug on 32 bit systems Greg Kroah-Hartman
2025-02-13 14:25 ` [PATCH 6.13 158/443] perf: imx9_perf: Introduce AXI filter version to refactor the driver and better extension Greg Kroah-Hartman
2025-02-13 14:25 ` [PATCH 6.13 159/443] accel/ivpu: Fix Qemu crash when running in passthrough Greg Kroah-Hartman
2025-02-13 14:25 ` [PATCH 6.13 160/443] arm64/kvm: Configure HYP TCR.PS/DS based on host stage1 Greg Kroah-Hartman
2025-02-13 14:25 ` [PATCH 6.13 161/443] arm64/mm: Override PARange for !LPA2 and use it consistently Greg Kroah-Hartman
2025-02-13 14:25 ` [PATCH 6.13 162/443] arm64/sme: Move storage of reg_smidr to __cpuinfo_store_cpu() Greg Kroah-Hartman
2025-02-13 14:25 ` [PATCH 6.13 163/443] arm64/mm: Reduce PA space to 48 bits when LPA2 is not enabled Greg Kroah-Hartman
2025-02-13 14:25 ` [PATCH 6.13 164/443] KVM: arm64: timer: Always evaluate the need for a soft timer Greg Kroah-Hartman
2025-02-13 14:25 ` [PATCH 6.13 165/443] drm/rockchip: cdn-dp: Use drm_connector_helper_hpd_irq_event() Greg Kroah-Hartman
2025-02-13 14:25 ` [PATCH 6.13 166/443] arm64: dts: rockchip: increase gmac rx_delay on rk3399-puma Greg Kroah-Hartman
2025-02-13 14:25 ` [PATCH 6.13 167/443] remoteproc: omap: Handle ARM dma_iommu_mapping Greg Kroah-Hartman
2025-02-13 14:25 ` [PATCH 6.13 168/443] KVM: nVMX: Defer SVI update to vmcs01 on EOI when L2 is active w/o VID Greg Kroah-Hartman
2025-02-13 14:25 ` [PATCH 6.13 169/443] KVM: Explicitly verify target vCPU is online in kvm_get_vcpu() Greg Kroah-Hartman
2025-02-13 14:25 ` [PATCH 6.13 170/443] kvm: defer huge page recovery vhost task to later Greg Kroah-Hartman
2025-02-13 14:25 ` [PATCH 6.13 171/443] KVM: s390: vsie: fix some corner-cases when grabbing vsie pages Greg Kroah-Hartman
2025-02-13 14:25 ` [PATCH 6.13 172/443] ksmbd: fix integer overflows on 32 bit systems Greg Kroah-Hartman
2025-02-13 14:25 ` [PATCH 6.13 173/443] drm/amd/display: Optimize cursor position updates Greg Kroah-Hartman
2025-02-13 14:25 ` [PATCH 6.13 174/443] drm/amd/pm: Mark MM activity as unsupported Greg Kroah-Hartman
2025-02-13 14:25 ` [PATCH 6.13 175/443] drm/amd/amdgpu: change the config of cgcg on gfx12 Greg Kroah-Hartman
2025-02-13 14:25 ` [PATCH 6.13 176/443] drm/amdkfd: only flush the validate MES contex Greg Kroah-Hartman
2025-02-13 14:25 ` [PATCH 6.13 177/443] drm/amdkfd: Block per-queue reset when halt_if_hws_hang=1 Greg Kroah-Hartman
2025-02-13 14:25 ` [PATCH 6.13 178/443] Revert "drm/amd/display: Use HW lock mgr for PSR1" Greg Kroah-Hartman
2025-02-13 14:25 ` [PATCH 6.13 179/443] drm/i915/guc: Debug print LRC state entries only if the context is pinned Greg Kroah-Hartman
2025-02-13 14:25 ` [PATCH 6.13 180/443] drm/i915: Fix page cleanup on DMA remap failure Greg Kroah-Hartman
2025-02-13 14:25 ` [PATCH 6.13 181/443] drm/ast: astdp: Fix timeout for enabling video signal Greg Kroah-Hartman
2025-02-13 14:25 ` [PATCH 6.13 182/443] drm/komeda: Add check for komeda_get_layer_fourcc_list() Greg Kroah-Hartman
2025-02-13 14:25 ` [PATCH 6.13 183/443] drm/xe/devcoredump: Move exec queue snapshot to Contexts section Greg Kroah-Hartman
2025-02-13 14:25 ` [PATCH 6.13 184/443] drm/i915/dp: Iterate DSC BPP from high to low on all platforms Greg Kroah-Hartman
2025-02-13 14:25 ` [PATCH 6.13 185/443] drm/i915: Drop 64bpp YUV formats from ICL+ SDR planes Greg Kroah-Hartman
2025-02-13 14:25 ` [PATCH 6.13 186/443] drm/amdgpu: add a BO metadata flag to disable write compression for Vulkan Greg Kroah-Hartman
2025-02-13 14:25 ` [PATCH 6.13 187/443] drm/amd/display: Fix seamless boot sequence Greg Kroah-Hartman
2025-02-13 14:25 ` [PATCH 6.13 188/443] drm/xe: Fix and re-enable xe_print_blob_ascii85() Greg Kroah-Hartman
2025-02-13 14:25 ` [PATCH 6.13 189/443] Bluetooth: L2CAP: handle NULL sock pointer in l2cap_sock_alloc Greg Kroah-Hartman
2025-02-13 14:25 ` [PATCH 6.13 190/443] Bluetooth: L2CAP: accept zero as a special value for MTU auto-selection Greg Kroah-Hartman
2025-02-13 14:25 ` [PATCH 6.13 191/443] KEYS: trusted: dcp: fix improper sg use with CONFIG_VMAP_STACK=y Greg Kroah-Hartman
2025-02-13 14:25 ` [PATCH 6.13 192/443] Input: synaptics - fix crash when enabling pass-through port Greg Kroah-Hartman
2025-02-13 14:25 ` [PATCH 6.13 193/443] clk: sunxi-ng: a100: enable MMC clock reparenting Greg Kroah-Hartman
2025-02-13 14:25 ` [PATCH 6.13 194/443] clk: mmp2: call pm_genpd_init() only after genpd.name is set Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.13 195/443] media: i2c: ds90ub960: Fix UB9702 refclk register access Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.13 196/443] clk: clk-loongson2: Fix the number count of clk provider Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.13 197/443] clk: qcom: clk-alpha-pll: fix alpha mode configuration Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.13 198/443] clk: qcom: gcc-sm8550: Do not turn off PCIe GDSCs during gdsc_disable() Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.13 199/443] clk: qcom: gcc-sm8650: " Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.13 200/443] clk: qcom: gcc-sm6350: Add missing parent_map for two clocks Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.13 201/443] clk: qcom: dispcc-sm6350: Add missing parent_map for a clock Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.13 202/443] clk: qcom: gcc-mdm9607: Fix cmd_rcgr offset for blsp1_uart6 rcg Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.13 203/443] clk: qcom: clk-rpmh: prevent integer overflow in recalc_rate Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.13 204/443] clk: mediatek: mt2701-vdec: fix conversion to mtk_clk_simple_probe Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.13 205/443] clk: mediatek: mt2701-aud: " Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.13 206/443] clk: mediatek: mt2701-bdp: add missing dummy clk Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.13 207/443] clk: mediatek: mt2701-img: " Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.13 208/443] clk: mediatek: mt2701-mm: " Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.13 209/443] seccomp: passthrough uretprobe systemcall without filtering Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.13 210/443] blk-cgroup: Fix class @block_classs subsystem refcount leakage Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.13 211/443] efi: libstub: Use -std=gnu11 to fix build with GCC 15 Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.13 212/443] x86/efi: skip memattr table on kexec boot Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.13 213/443] perf bench: Fix undefined behavior in cmpworker() Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.13 214/443] scsi: ufs: core: Fix the HIGH/LOW_TEMP Bit Definitions Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.13 215/443] of: Correct child specifier used as input of the 2nd nexus node Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.13 216/443] of: address: Fix empty resource handling in __of_address_resource_bounds() Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.13 217/443] of: Fix of_find_node_opts_by_path() handling of alias+path+options Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.13 218/443] of: reserved-memory: Fix using wrong number of cells to get property alignment Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.13 219/443] of: reserved-memory: Warn for missing static reserved memory regions Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.13 220/443] Input: bbnsm_pwrkey - add remove hook Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.13 221/443] HID: hid-sensor-hub: dont use stale platform-data on remove Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.13 222/443] ring-buffer: Do not allow events in NMI with generic atomic64 cmpxchg() Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.13 223/443] atomic64: Use arch_spin_locks instead of raw_spin_locks Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.13 224/443] wifi: rtlwifi: rtl8821ae: Fix media status report Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.13 225/443] wifi: brcmfmac: fix NULL pointer dereference in brcmf_txfinalize() Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.13 226/443] wifi: mt76: mt7921u: Add VID/PID for TP-Link TXE50UH Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.13 227/443] wifi: rtw88: sdio: Fix disconnection after beacon loss Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.13 228/443] wifi: mt76: mt7915: add module param to select 5 GHz or 6 GHz on MT7916 Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.13 229/443] wifi: rtw88: 8703b: Fix RX/TX issues Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.13 230/443] usb: gadget: f_tcm: Translate error to sense Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.13 231/443] usb: gadget: f_tcm: Decrement command ref count on cleanup Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.13 232/443] usb: gadget: f_tcm: ep_autoconfig with fullspeed endpoint Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.13 233/443] usb: gadget: f_tcm: Dont prepare BOT write request twice Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.13 234/443] usbnet: ipheth: fix possible overflow in DPE length check Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.13 235/443] usbnet: ipheth: use static NDP16 location in URB Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.13 236/443] usbnet: ipheth: check that DPE points past NCM header Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.13 237/443] usbnet: ipheth: refactor NCM datagram loop Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.13 238/443] usbnet: ipheth: break up NCM header size computation Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.13 239/443] usbnet: ipheth: fix DPE OoB read Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.13 240/443] usbnet: ipheth: document scope of NCM implementation Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.13 241/443] arm64: dts: qcom: x1e80100-asus-vivobook-s15: Fix USB QMP PHY supplies Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.13 242/443] arm64: dts: qcom: x1e80100-dell-xps13-9345: " Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.13 243/443] arm64: dts: qcom: x1e80100-qcp: " Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.13 244/443] arm64: dts: qcom: x1e78100-lenovo-thinkpad-t14s: " Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.13 245/443] arm64: dts: qcom: x1e80100-crd: " Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.13 246/443] arm64: dts: qcom: x1e80100-lenovo-yoga-slim7x: " Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.13 247/443] arm64: dts: qcom: x1e80100-microsoft-romulus: " Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.13 248/443] arm64: dts: qcom: x1e80100: Fix usb_2 controller interrupts Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.13 249/443] ASoC: renesas: rz-ssi: Terminate all the DMA transactions Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.13 250/443] ASoC: renesas: rz-ssi: Add a check for negative sample_space Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.13 251/443] ASoC: acp: Support microphone from Lenovo Go S Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.13 252/443] soc: qcom: socinfo: Avoid out of bounds read of serial number Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.13 253/443] serial: sh-sci: Drop __initdata macro for port_cfg Greg Kroah-Hartman
2025-02-13 14:26 ` [PATCH 6.13 254/443] serial: sh-sci: Do not probe the serial port if its slot in sci_ports[] is in use Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.13 255/443] MIPS: Loongson64: remove ROM Size unit in boardinfo Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.13 256/443] LoongArch: Extend the maximum number of watchpoints Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.13 257/443] powerpc/pseries/eeh: Fix get PE state translation Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.13 258/443] dm-crypt: dont update io->sector after kcryptd_crypt_write_io_submit() Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.13 259/443] dm-crypt: track tag_offset in convert_context Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.13 260/443] mips/math-emu: fix emulation of the prefx instruction Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.13 261/443] MIPS: pci-legacy: Override pci_address_to_pio Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.13 262/443] Revert "MIPS: csrc-r4k: Select HAVE_UNSTABLE_SCHED_CLOCK if SMP && 64BIT" Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.13 263/443] block: dont revert iter for -EIOCBQUEUED Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.13 264/443] Revert "media: uvcvideo: Require entities to have a non-zero unique ID" Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.13 265/443] firmware: qcom: scm: Fix missing read barrier in qcom_scm_is_available() Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.13 266/443] firmware: qcom: scm: Fix missing read barrier in qcom_scm_get_tzmem_pool() Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.13 267/443] ALSA: hda/realtek: Enable headset mic on Positivo C6400 Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.13 268/443] ALSA: hda/realtek: Fix quirk matching for Legion Pro 7 Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.13 269/443] ALSA: hda: Fix headset detection failure due to unstable sort Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.13 270/443] ALSA: hda/realtek: Workaround for resume on Dell Venue 11 Pro 7130 Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.13 271/443] arm64: tegra: Fix Tegra234 PCIe interrupt-map Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.13 272/443] s390/pci: Fix SR-IOV for PFs initially in standby Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.13 273/443] PCI: Avoid putting some root ports into D3 on TUXEDO Sirius Gen1 Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.13 274/443] PCI: endpoint: Finish virtual EP removal in pci_epf_remove_vepf() Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.13 275/443] PCI: dwc: ep: Write BAR_MASK before iATU registers in pci_epc_set_bar() Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.13 276/443] PCI: dwc: ep: Prevent changing BAR size/flags " Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.13 277/443] nvme-pci: Add TUXEDO InfinityFlex to Samsung sleep quirk Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.13 278/443] nvme-pci: Add TUXEDO IBP Gen9 " Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.13 279/443] KVM: x86/mmu: Ensure NX huge page recovery thread is alive before waking Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.13 280/443] scsi: st: Dont set pos_unknown just after device recognition Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.13 281/443] scsi: qla2xxx: Move FCE Trace buffer allocation to user control Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.13 282/443] scsi: ufs: qcom: Fix crypto key eviction Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.13 283/443] scsi: ufs: core: Fix use-after free in init error and remove paths Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.13 284/443] scsi: storvsc: Set correct data length for sending SCSI command without payload Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.13 285/443] scsi: core: Do not retry I/Os during depopulation Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.13 286/443] kbuild: Move -Wenum-enum-conversion to W=2 Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.13 287/443] pidfs: check for valid ioctl commands Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.13 288/443] pidfs: improve ioctl handling Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.13 289/443] rust: init: use explicit ABI to clean warning in future compilers Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.13 290/443] x86: rust: set rustc-abi=x86-softfloat on rustc>=1.86.0 Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.13 291/443] x86/acpi: Fix LAPIC/x2APIC parsing order Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.13 292/443] x86/boot: Use -std=gnu11 to fix build with GCC 15 Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.13 293/443] ubi: Add a check for ubi_num Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.13 294/443] ARM: dts: dra7: Add bus_dma_limit for l4 cfg bus Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.13 295/443] ARM: dts: ti/omap: gta04: fix pm issues caused by spi module Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.13 296/443] arm64: dts: mediatek: mt8183: Disable DPI display output by default Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.13 297/443] arm64: dts: mediatek: mt8183: Disable DSI " Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.13 298/443] arm64: dts: qcom: sdx75: Fix MPSS memory length Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.13 299/443] arm64: dts: qcom: x1e80100: Fix ADSP memory base and length Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.13 300/443] arm64: dts: qcom: x1e80100: Fix CDSP memory length Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.13 301/443] arm64: dts: qcom: sm6115: Fix MPSS " Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.13 302/443] arm64: dts: qcom: sm6115: Fix CDSP " Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.13 303/443] arm64: dts: qcom: sm6115: Fix ADSP memory base and length Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.13 304/443] arm64: dts: qcom: sm6350: Fix ADSP memory length Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.13 305/443] arm64: dts: qcom: sm6350: Fix MPSS " Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.13 306/443] arm64: dts: qcom: sm6350: Fix uart1 interconnect path Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.13 307/443] arm64: dts: qcom: sm6375: Fix ADSP memory length Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.13 308/443] arm64: dts: qcom: sm6375: Fix CDSP memory base and length Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.13 309/443] arm64: dts: qcom: sm6375: Fix MPSS " Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.13 310/443] arm64: dts: qcom: sm8350: Fix ADSP " Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.13 311/443] arm64: dts: qcom: sm8350: Fix CDSP " Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.13 312/443] arm64: dts: qcom: sm8350: Fix MPSS memory length Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.13 313/443] arm64: dts: qcom: sm8450: Fix ADSP memory base and length Greg Kroah-Hartman
2025-02-13 14:27 ` [PATCH 6.13 314/443] arm64: dts: qcom: sm8450: Fix CDSP memory length Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.13 315/443] arm64: dts: qcom: sm8450: Fix MPSS " Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.13 316/443] arm64: dts: qcom: sm8550: Fix ADSP memory base and length Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.13 317/443] arm64: dts: qcom: sm8550: Fix CDSP memory length Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.13 318/443] arm64: dts: qcom: sm8550: Fix MPSS " Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.13 319/443] arm64: dts: qcom: sm8650: Fix ADSP memory base and length Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.13 320/443] arm64: dts: qcom: sm8650: Fix CDSP memory length Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.13 321/443] arm64: dts: qcom: sm8650: Fix MPSS " Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.13 322/443] arm64: dts: qcom: sm8550: correct MDSS interconnects Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.13 323/443] arm64: dts: qcom: sm8650: " Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.13 324/443] crypto: qce - fix priority to be less than ARMv8 CE Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.13 325/443] arm64: tegra: Fix typo in Tegra234 dce-fabric compatible Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.13 326/443] arm64: tegra: Disable Tegra234 sce-fabric node Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.13 327/443] parisc: Temporarily disable jump label support Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.13 328/443] pwm: microchip-core: fix incorrect comparison with max period Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.13 329/443] xfs: dont call remap_verify_area with sb write protection held Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.13 330/443] xfs: Propagate errors from xfs_reflink_cancel_cow_range in xfs_dax_write_iomap_end Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.13 331/443] xfs: Add error handling for xfs_reflink_cancel_cow_range Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.13 332/443] accel/ivpu: Fix error handling in ivpu_boot() Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.13 333/443] accel/ivpu: Clear runtime_error after pm_runtime_resume_and_get() fails Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.13 334/443] accel/ivpu: Fix error handling in recovery/reset Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.13 335/443] ACPI: PRM: Remove unnecessary strict handler address checks Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.13 336/443] tpm: Change to kvalloc() in eventlog/acpi.c Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.13 337/443] rv: Reset per-task monitors also for idle tasks Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.13 338/443] hrtimers: Force migrate away hrtimers queued after CPUHP_AP_HRTIMERS_DYING Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.13 339/443] jiffies: Cast to unsigned long in secs_to_jiffies() conversion Greg Kroah-Hartman
2025-02-13 14:28 ` Greg Kroah-Hartman [this message]
2025-02-13 14:28 ` [PATCH 6.13 341/443] kfence: skip __GFP_THISNODE allocations on NUMA systems Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.13 342/443] media: ccs: Clean up parsed CCS static data on parse failure Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.13 343/443] mm/hugetlb: fix avoid_reserve to allow taking folio from subpool Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.13 344/443] iio: chemical: bme680: Fix uninitialized variable in __bme680_read_raw() Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.13 345/443] iio: dac: ad3552r-common: fix ad3541/2r ranges Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.13 346/443] iio: dac: ad3552r-hs: clear reset status flag Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.13 347/443] iio: light: as73211: fix channel handling in only-color triggered buffer Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.13 348/443] iommu/tegra241-cmdqv: Read SMMU IDR1.CMDQS instead of hardcoding Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.13 349/443] iommufd/fault: Destroy response and mutex in iommufd_fault_destroy() Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.13 350/443] iommufd/fault: Use a separate spinlock to protect fault->deliver list Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.13 351/443] soc: samsung: exynos-pmu: Fix uninitialized ret in tensor_set_bits_atomic() Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.13 352/443] soc: mediatek: mtk-devapc: Fix leaking IO map on error paths Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.13 353/443] soc: mediatek: mtk-devapc: Fix leaking IO map on driver remove Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.13 354/443] soc: qcom: llcc: Enable LLCC_WRCACHE at boot on X1 Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.13 355/443] soc: qcom: smem_state: fix missing of_node_put in error path Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.13 356/443] media: mmp: Bring back registration of the device Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.13 357/443] media: Documentation: tx-rx: Fix formatting Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.13 358/443] media: mc: fix endpoint iteration Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.13 359/443] media: nuvoton: Fix an error check in npcm_video_ece_init() Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.13 360/443] media: imx296: Add standby delay during probe Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.13 361/443] media: intel/ipu6: remove cpu latency qos request on error Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.13 362/443] media: ov5640: fix get_light_freq on auto Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.13 363/443] media: stm32: dcmipp: correct dma_set_mask_and_coherent mask value Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.13 364/443] media: venus: destroy hfi session after m2m_ctx release Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.13 365/443] media: ccs: Fix CCS static data parsing for large block sizes Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.13 366/443] media: ccs: Fix cleanup order in ccs_probe() Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.13 367/443] media: i2c: ds90ub9x3: Fix extra fwnode_handle_put() Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.13 368/443] media: i2c: ds90ub960: Fix use of non-existing registers on UB9702 Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.13 369/443] media: i2c: ds90ub960: Fix UB9702 VC map Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.13 370/443] media: i2c: ds90ub960: Fix logging SP & EQ status only for UB9702 Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.13 371/443] media: uvcvideo: Fix crash during unbind if gpio unit is in use Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.13 372/443] media: uvcvideo: Fix event flags in uvc_ctrl_send_events Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.13 373/443] media: uvcvideo: Support partial control reads Greg Kroah-Hartman
2025-02-13 14:28 ` [PATCH 6.13 374/443] media: uvcvideo: Only save async fh if success Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.13 375/443] media: uvcvideo: Remove redundant NULL assignment Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.13 376/443] media: uvcvideo: Remove dangling pointers Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.13 377/443] mm: kmemleak: fix upper boundary check for physical address objects Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.13 378/443] mm: gup: fix infinite loop within __get_longterm_locked Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.13 379/443] mm/vmscan: accumulate nr_demoted for accurate demotion statistics Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.13 380/443] mm/hugetlb: fix hugepage allocation for interleaved memory nodes Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.13 381/443] mm/compaction: fix UBSAN shift-out-of-bounds warning Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.13 382/443] ata: libata-core: Add ATA_QUIRK_NOLPM for Samsung SSD 870 QVO drives Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.13 383/443] ata: libata-sff: Ensure that we cannot write outside the allocated buffer Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.13 384/443] irqchip/irq-mvebu-icu: Fix access to msi_data from irq_domain::host_data Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.13 385/443] crypto: qce - fix goto jump in error path Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.13 386/443] crypto: qce - unregister previously registered algos " Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.13 387/443] ceph: fix memory leak in ceph_mds_auth_match() Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.13 388/443] nvmem: qcom-spmi-sdam: Set size in struct nvmem_config Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.13 389/443] nvmem: core: improve range check for nvmem_cell_write() Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.13 390/443] nvmem: imx-ocotp-ele: simplify read beyond device check Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.13 391/443] nvmem: imx-ocotp-ele: fix MAC address byte order Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.13 392/443] nvmem: imx-ocotp-ele: fix reading from non zero offset Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.13 393/443] nvmem: imx-ocotp-ele: set word length to 1 Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.13 394/443] io_uring: fix multishots with selected buffers Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.13 395/443] io_uring/net: dont retry connect operation on EPOLLERR Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.13 396/443] vfio/platform: check the bounds of read/write syscalls Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.13 397/443] selftests: mptcp: connect: -f: no reconnect Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.13 398/443] pnfs/flexfiles: retry getting layout segment for reads Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.13 399/443] ocfs2: fix incorrect CPU endianness conversion causing mount failure Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.13 400/443] ocfs2: handle a symlink read error correctly Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.13 401/443] nilfs2: fix possible int overflows in nilfs_fiemap() Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.13 402/443] nfs: Make NFS_FSCACHE select NETFS_SUPPORT instead of depending on it Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.13 403/443] NFSD: Encode COMPOUND operation status on page boundaries Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.13 404/443] mailbox: tegra-hsp: Clear mailbox before using message Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.13 405/443] mailbox: zynqmp: Remove invalid __percpu annotation in zynqmp_ipi_probe() Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.13 406/443] NFC: nci: Add bounds checking in nci_hci_create_pipe() Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.13 407/443] fgraph: Fix set_graph_notrace with setting TRACE_GRAPH_NOTRACE_BIT Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.13 408/443] i3c: master: Fix missing ret assignment in set_speed() Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.13 409/443] irqchip/apple-aic: Only handle PMC interrupt as FIQ when configured so Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.13 410/443] mtd: onenand: Fix uninitialized retlen in do_otp_read() Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.13 411/443] misc: misc_minor_alloc to use ida for all dynamic/misc dynamic minors Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.13 412/443] misc: fastrpc: Deregister device nodes properly in error scenarios Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.13 413/443] misc: fastrpc: Fix registered buffer page address Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.13 414/443] misc: fastrpc: Fix copy buffer page size Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.13 415/443] net/ncsi: wait for the last response to Deselect Package before configuring channel Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.13 416/443] net: phy: c45-tjaxx: add delay between MDIO write and read in soft_reset Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.13 417/443] maple_tree: simplify split calculation Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.13 418/443] scripts/gdb: fix aarch64 userspace detection in get_current_task Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.13 419/443] tracing/osnoise: Fix resetting of tracepoints Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.13 420/443] rtla/osnoise: Distinguish missing workload option Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.13 421/443] rtla/timerlat_hist: Set OSNOISE_WORKLOAD for kernel threads Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.13 422/443] rtla/timerlat_top: " Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.13 423/443] rtla: Add trace_instance_stop Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.13 424/443] rtla/timerlat_hist: Stop timerlat tracer on signal Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.13 425/443] rtla/timerlat_top: " Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.13 426/443] pinctrl: samsung: fix fwnode refcount cleanup if platform_get_irq_optional() fails Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.13 427/443] pinctrl: renesas: rzg2l: Fix PFC_MASK for RZ/V2H and RZ/G3E Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.13 428/443] ptp: Ensure info->enable callback is always set Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.13 429/443] RDMA/mlx5: Fix a race for an ODP MR which leads to CQE with error Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.13 430/443] rtc: zynqmp: Fix optional clock name property Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.13 431/443] statmount: let unset strings be empty Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.13 432/443] timers/migration: Fix off-by-one root mis-connection Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.13 433/443] s390/fpu: Add fpc exception handler / remove fixup section again Greg Kroah-Hartman
2025-02-13 14:29 ` [PATCH 6.13 434/443] MIPS: ftrace: Declare ftrace_get_parent_ra_addr() as static Greg Kroah-Hartman
2025-02-13 14:30 ` [PATCH 6.13 435/443] spi: atmel-quadspi: Create `atmel_qspi_ops` to support newer SoC families Greg Kroah-Hartman
2025-02-13 14:30 ` [PATCH 6.13 436/443] spi: atmel-qspi: Memory barriers after memory-mapped I/O Greg Kroah-Hartman
2025-02-13 14:30 ` [PATCH 6.13 437/443] x86/mm: Convert unreachable() to BUG() Greg Kroah-Hartman
2025-02-13 14:30 ` [PATCH 6.13 438/443] md/md-linear: Fix a NULL vs IS_ERR() bug in linear_add() Greg Kroah-Hartman
2025-02-13 14:30 ` [PATCH 6.13 439/443] md: Fix linear_set_limits() Greg Kroah-Hartman
2025-02-13 14:30 ` [PATCH 6.13 440/443] Revert "drm/amd/display: Fix green screen issue after suspend" Greg Kroah-Hartman
2025-02-13 14:30 ` [PATCH 6.13 441/443] wifi: rtw89: pci: disable PCIE wake bit when PCIE deinit Greg Kroah-Hartman
2025-02-13 14:30 ` [PATCH 6.13 442/443] fs: prepend statmount.mnt_opts string with security_sb_mnt_opts() Greg Kroah-Hartman
2025-02-13 14:30 ` [PATCH 6.13 443/443] fs: fix adding security options to statmount.mnt_opt Greg Kroah-Hartman
2025-02-13 19:55 ` [PATCH 6.13 000/443] 6.13.3-rc1 review Pavel Machek
2025-02-13 20:04 ` Florian Fainelli
2025-02-13 20:52 ` Takeshi Ogasawara
2025-02-13 22:57 ` Justin Forbes
2025-02-13 23:59 ` Mark Brown
2025-02-14  0:58 ` [PATCH 6.13 000/619] " Hardik Garg
2025-02-14  3:52 ` [PATCH 6.13 000/443] " Peter Schneider
2025-02-14  6:09 ` Ron Economos
2025-02-14  6:42 ` Luna Jernberg
2025-02-14 10:16   ` Luna Jernberg
2025-02-14  8:32 ` Holger Hoffstätte
2025-02-14  8:42   ` Greg Kroah-Hartman
2025-02-14  9:06     ` Holger Hoffstätte
2025-02-14 10:12     ` Holger Hoffstätte
2025-02-14 13:07       ` Greg Kroah-Hartman
2025-02-14 23:18       ` Suspend failures (was Re: [PATCH 6.13 000/443] 6.13.3-rc1 review) Linus Torvalds
2025-02-15  0:48         ` Suspend failures (was " Holger Hoffstätte
2025-02-15  7:46           ` Greg Kroah-Hartman
2025-02-15  1:35         ` Suspend failures (was " Waiman Long
2025-02-15 19:57           ` Suspend failures (was " Holger Hoffstätte
2025-02-16  7:05             ` Greg Kroah-Hartman
2025-02-17  6:30             ` Juri Lelli
2025-02-14  9:45 ` [PATCH 6.13 000/443] 6.13.3-rc1 review Jon Hunter

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20250213142453.743345320@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=jgg@nvidia.com \
    --cc=kevin.tian@intel.com \
    --cc=nicolinc@nvidia.com \
    --cc=patches@lists.linux.dev \
    --cc=stable@vger.kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).