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,
	John Keeping <jkeeping@inmusicbrands.com>,
	Michael Tretter <m.tretter@pengutronix.de>,
	Hans Verkuil <hverkuil@xs4all.nl>
Subject: [PATCH 6.13 208/414] media: rockchip: rga: fix rga offset lookup
Date: Thu, 17 Apr 2025 19:49:26 +0200	[thread overview]
Message-ID: <20250417175119.808382415@linuxfoundation.org> (raw)
In-Reply-To: <20250417175111.386381660@linuxfoundation.org>

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

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

From: John Keeping <jkeeping@inmusicbrands.com>

commit 11de3582675cc0b7136e12f3971f1da3e5a05382 upstream.

The arguments to rga_lookup_draw_pos() are passed in the wrong order,
rotate mode should be before mirror mode.

Fixes: 558c248f930e6 ("media: rockchip: rga: split src and dst buffer setup")
Cc: stable@vger.kernel.org
Signed-off-by: John Keeping <jkeeping@inmusicbrands.com>
Reviewed-by: Michael Tretter <m.tretter@pengutronix.de>
Signed-off-by: Hans Verkuil <hverkuil@xs4all.nl>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
 drivers/media/platform/rockchip/rga/rga-hw.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

--- a/drivers/media/platform/rockchip/rga/rga-hw.c
+++ b/drivers/media/platform/rockchip/rga/rga-hw.c
@@ -376,7 +376,7 @@ static void rga_cmd_set_dst_info(struct
 	 * Configure the dest framebuffer base address with pixel offset.
 	 */
 	offsets = rga_get_addr_offset(&ctx->out, offset, dst_x, dst_y, dst_w, dst_h);
-	dst_offset = rga_lookup_draw_pos(&offsets, mir_mode, rot_mode);
+	dst_offset = rga_lookup_draw_pos(&offsets, rot_mode, mir_mode);
 
 	dest[(RGA_DST_Y_RGB_BASE_ADDR - RGA_MODE_BASE_REG) >> 2] =
 		dst_offset->y_off;



  parent reply	other threads:[~2025-04-17 18:28 UTC|newest]

Thread overview: 420+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-04-17 17:45 [PATCH 6.13 000/414] 6.13.12-rc1 review Greg Kroah-Hartman
2025-04-17 17:45 ` [PATCH 6.13 001/414] ASoC: Intel: adl: add 2xrt1316 audio configuration Greg Kroah-Hartman
2025-04-17 17:46 ` [PATCH 6.13 002/414] cgroup/cpuset: Fix incorrect isolated_cpus update in update_parent_effective_cpumask() Greg Kroah-Hartman
2025-04-17 17:46 ` [PATCH 6.13 003/414] cgroup/cpuset: Fix error handling in remote_partition_disable() Greg Kroah-Hartman
2025-04-17 17:46 ` [PATCH 6.13 004/414] cgroup/cpuset: Fix race between newly created partition and dying one Greg Kroah-Hartman
2025-04-17 17:46 ` [PATCH 6.13 005/414] gpiolib: of: Fix the choice for Ingenic NAND quirk Greg Kroah-Hartman
2025-04-17 17:46 ` [PATCH 6.13 006/414] selftests/futex: futex_waitv wouldblock test should fail Greg Kroah-Hartman
2025-04-17 17:46 ` [PATCH 6.13 007/414] ublk: fix handling recovery & reissue in ublk_abort_queue() Greg Kroah-Hartman
2025-04-17 17:46 ` [PATCH 6.13 008/414] drm/i915: Disable RPG during live selftest Greg Kroah-Hartman
2025-04-17 17:46 ` [PATCH 6.13 009/414] x86/acpi: Dont limit CPUs to 1 for Xen PV guests due to disabled ACPI Greg Kroah-Hartman
2025-04-17 17:46 ` [PATCH 6.13 010/414] drm/xe/hw_engine: define sysfs_ops on all directories Greg Kroah-Hartman
2025-04-17 17:46 ` [PATCH 6.13 011/414] drm/xe: Restore EIO errno return when GuC PC start fails Greg Kroah-Hartman
2025-04-17 17:46 ` [PATCH 6.13 012/414] ata: pata_pxa: Fix potential NULL pointer dereference in pxa_ata_probe() Greg Kroah-Hartman
2025-04-17 17:46 ` [PATCH 6.13 013/414] objtool: Fix INSN_CONTEXT_SWITCH handling in validate_unret() Greg Kroah-Hartman
2025-04-17 17:46 ` [PATCH 6.13 014/414] tipc: fix memory leak in tipc_link_xmit Greg Kroah-Hartman
2025-04-17 17:46 ` [PATCH 6.13 015/414] codel: remove sch->q.qlen check before qdisc_tree_reduce_backlog() Greg Kroah-Hartman
2025-04-17 17:46 ` [PATCH 6.13 016/414] net: tls: explicitly disallow disconnect Greg Kroah-Hartman
2025-04-17 17:46 ` [PATCH 6.13 017/414] octeontx2-pf: qos: fix VF root node parent queue index Greg Kroah-Hartman
2025-04-17 17:46 ` [PATCH 6.13 018/414] tc: Ensure we have enough buffer space when sending filter netlink notifications Greg Kroah-Hartman
2025-04-17 17:46 ` [PATCH 6.13 019/414] net: ethtool: Dont call .cleanup_data when prepare_data fails Greg Kroah-Hartman
2025-04-17 17:46 ` [PATCH 6.13 020/414] drm/tests: modeset: Fix drm_display_mode memory leak Greg Kroah-Hartman
2025-04-17 17:46 ` [PATCH 6.13 021/414] drm/tests: helpers: Create kunit helper to destroy a drm_display_mode Greg Kroah-Hartman
2025-04-17 17:46 ` [PATCH 6.13 022/414] drm/tests: cmdline: Fix drm_display_mode memory leak Greg Kroah-Hartman
2025-04-17 17:46 ` [PATCH 6.13 023/414] drm/tests: modes: " Greg Kroah-Hartman
2025-04-17 17:46 ` [PATCH 6.13 024/414] drm/tests: probe-helper: " Greg Kroah-Hartman
2025-04-17 17:46 ` [PATCH 6.13 025/414] net: libwx: handle page_pool_dev_alloc_pages error Greg Kroah-Hartman
2025-04-17 17:46 ` [PATCH 6.13 026/414] ata: sata_sx4: Add error handling in pdc20621_i2c_read() Greg Kroah-Hartman
2025-04-17 17:46 ` [PATCH 6.13 027/414] drm/i915/huc: Fix fence not released on early probe errors Greg Kroah-Hartman
2025-04-17 17:46 ` [PATCH 6.13 028/414] nvmet-fcloop: swap list_add_tail arguments Greg Kroah-Hartman
2025-04-17 17:46 ` [PATCH 6.13 029/414] net_sched: sch_sfq: use a temporary work area for validating configuration Greg Kroah-Hartman
2025-04-17 17:46 ` [PATCH 6.13 030/414] net_sched: sch_sfq: move the limit validation Greg Kroah-Hartman
2025-04-17 17:46 ` [PATCH 6.13 031/414] smb: client: fix UAF in decryption with multichannel Greg Kroah-Hartman
2025-04-17 17:46 ` [PATCH 6.13 032/414] net: phy: move phy_link_change() prior to mdio_bus_phy_may_suspend() Greg Kroah-Hartman
2025-04-17 17:46 ` [PATCH 6.13 033/414] net: phy: allow MDIO bus PM ops to start/stop state machine for phylink-controlled PHY Greg Kroah-Hartman
2025-04-17 17:46 ` [PATCH 6.13 034/414] ipv6: Align behavior across nexthops during path selection Greg Kroah-Hartman
2025-04-17 17:46 ` [PATCH 6.13 035/414] net: ppp: Add bound checking for skb data on ppp_sync_txmung Greg Kroah-Hartman
2025-04-17 17:46 ` [PATCH 6.13 036/414] nft_set_pipapo: fix incorrect avx2 match of 5th field octet Greg Kroah-Hartman
2025-04-17 17:46 ` [PATCH 6.13 037/414] ethtool: cmis_cdb: Fix incorrect read / write length extension Greg Kroah-Hartman
2025-04-17 17:46 ` [PATCH 6.13 038/414] iommu/exynos: Fix suspend/resume with IDENTITY domain Greg Kroah-Hartman
2025-04-17 17:46 ` [PATCH 6.13 039/414] iommu/mediatek: Fix NULL pointer deference in mtk_iommu_device_group Greg Kroah-Hartman
2025-04-17 17:46 ` [PATCH 6.13 040/414] perf/core: Simplify the perf_event_alloc() error path Greg Kroah-Hartman
2025-04-17 17:46 ` [PATCH 6.13 041/414] perf: Fix hang while freeing sigtrap event Greg Kroah-Hartman
2025-04-17 17:46 ` [PATCH 6.13 042/414] fs: consistently deref the files table with rcu_dereference_raw() Greg Kroah-Hartman
2025-04-17 17:46 ` [PATCH 6.13 043/414] umount: Allow superblock owners to force umount Greg Kroah-Hartman
2025-04-17 17:46 ` [PATCH 6.13 044/414] srcu: Force synchronization for srcu_get_delay() Greg Kroah-Hartman
2025-04-17 17:46 ` [PATCH 6.13 045/414] pm: cpupower: bench: Prevent NULL dereference on malloc failure Greg Kroah-Hartman
2025-04-17 17:46 ` [PATCH 6.13 046/414] irqchip/gic-v3: Add Rockchip 3568002 erratum workaround Greg Kroah-Hartman
2025-04-17 17:46 ` [PATCH 6.13 047/414] x86/mm: Clear _PAGE_DIRTY for kernel mappings when we clear _PAGE_RW Greg Kroah-Hartman
2025-04-17 17:46 ` [PATCH 6.13 048/414] x86/percpu: Disable named address spaces for UBSAN_BOOL with KASAN for GCC < 14.2 Greg Kroah-Hartman
2025-04-17 17:46 ` [PATCH 6.13 049/414] x86/ia32: Leave NULL selector values 0~3 unchanged Greg Kroah-Hartman
2025-04-17 17:46 ` [PATCH 6.13 050/414] x86/cpu: Dont clear X86_FEATURE_LAHF_LM flag in init_amd_k8() on AMD when running in a virtual machine Greg Kroah-Hartman
2025-04-17 17:46 ` [PATCH 6.13 051/414] perf: arm_pmu: Dont disable counter in armpmu_add() Greg Kroah-Hartman
2025-04-17 17:46 ` [PATCH 6.13 052/414] perf/dwc_pcie: fix some unreleased resources Greg Kroah-Hartman
2025-04-17 17:46 ` [PATCH 6.13 053/414] PM: hibernate: Avoid deadlock in hibernate_compressor_param_set() Greg Kroah-Hartman
2025-04-17 17:46 ` [PATCH 6.13 054/414] Flush console log from kernel_power_off() Greg Kroah-Hartman
2025-04-17 17:46 ` [PATCH 6.13 055/414] arm64: cputype: Add QCOM_CPU_PART_KRYO_3XX_GOLD Greg Kroah-Hartman
2025-04-17 17:46 ` [PATCH 6.13 056/414] xen/mcelog: Add __nonstring annotations for unterminated strings Greg Kroah-Hartman
2025-04-17 17:46 ` [PATCH 6.13 057/414] zstd: Increase DYNAMIC_BMI2 GCC version cutoff from 4.8 to 11.0 to work around compiler segfault Greg Kroah-Hartman
2025-04-17 17:46 ` [PATCH 6.13 058/414] tracing: Disable branch profiling in noinstr code Greg Kroah-Hartman
2025-04-17 17:46 ` [PATCH 6.13 059/414] platform/chrome: cros_ec_lpc: Match on Framework ACPI device Greg Kroah-Hartman
2025-04-17 17:46 ` [PATCH 6.13 060/414] ASoC: SOF: topology: Use krealloc_array() to replace krealloc() Greg Kroah-Hartman
2025-04-17 17:46 ` [PATCH 6.13 061/414] HID: pidff: Convert infinite length from Linux API to PID standard Greg Kroah-Hartman
2025-04-17 17:47 ` [PATCH 6.13 062/414] HID: pidff: Do not send effect envelope if its empty Greg Kroah-Hartman
2025-04-17 17:47 ` [PATCH 6.13 063/414] HID: pidff: Add MISSING_DELAY quirk and its detection Greg Kroah-Hartman
2025-04-17 17:47 ` [PATCH 6.13 064/414] HID: pidff: Add MISSING_PBO " Greg Kroah-Hartman
2025-04-17 17:47 ` [PATCH 6.13 065/414] HID: pidff: Add PERMISSIVE_CONTROL quirk Greg Kroah-Hartman
2025-04-17 17:47 ` [PATCH 6.13 066/414] HID: pidff: Add hid_pidff_init_with_quirks and export as GPL symbol Greg Kroah-Hartman
2025-04-17 17:47 ` [PATCH 6.13 067/414] HID: pidff: Add FIX_WHEEL_DIRECTION quirk Greg Kroah-Hartman
2025-04-17 17:47 ` [PATCH 6.13 068/414] HID: Add hid-universal-pidff driver and supported device ids Greg Kroah-Hartman
2025-04-17 17:47 ` [PATCH 6.13 069/414] HID: pidff: Add PERIODIC_SINE_ONLY quirk Greg Kroah-Hartman
2025-04-17 17:47 ` [PATCH 6.13 070/414] HID: pidff: Fix null pointer dereference in pidff_find_fields Greg Kroah-Hartman
2025-04-17 17:47 ` [PATCH 6.13 071/414] ASoC: amd: ps: use macro for ACP6.3 pci revision id Greg Kroah-Hartman
2025-04-17 17:47 ` [PATCH 6.13 072/414] ASoC: amd: amd_sdw: Add quirks for Dell SKUs Greg Kroah-Hartman
2025-04-17 17:47 ` [PATCH 6.13 073/414] ALSA: hda: intel: Fix Optimus when GPU has no sound Greg Kroah-Hartman
2025-04-17 17:47 ` [PATCH 6.13 074/414] ALSA: hda: intel: Add Lenovo IdeaPad Z570 to probe denylist Greg Kroah-Hartman
2025-04-17 17:47 ` [PATCH 6.13 075/414] ASoC: fsl_audmix: register card device depends on dais property Greg Kroah-Hartman
2025-04-17 17:47 ` [PATCH 6.13 076/414] media: uvcvideo: Add quirk for Actions UVC05 Greg Kroah-Hartman
2025-04-17 17:47 ` [PATCH 6.13 077/414] media: s5p-mfc: Corrected NV12M/NV21M plane-sizes Greg Kroah-Hartman
2025-04-17 17:47 ` [PATCH 6.13 078/414] mmc: dw_mmc: add a quirk for accessing 64-bit FIFOs in two halves Greg Kroah-Hartman
2025-04-17 17:47 ` [PATCH 6.13 079/414] ALSA: usb-audio: Fix CME quirk for UF series keyboards Greg Kroah-Hartman
2025-04-17 17:47 ` [PATCH 6.13 080/414] ASoC: amd: Add DMI quirk for ACP6X mic support Greg Kroah-Hartman
2025-04-17 17:47 ` [PATCH 6.13 081/414] ASoC: amd: yc: update quirk data for new Lenovo model Greg Kroah-Hartman
2025-04-17 17:47 ` [PATCH 6.13 082/414] platform/x86: x86-android-tablets: Add select POWER_SUPPLY to Kconfig Greg Kroah-Hartman
2025-04-17 17:47 ` [PATCH 6.13 083/414] wifi: ath11k: Fix DMA buffer allocation to resolve SWIOTLB issues Greg Kroah-Hartman
2025-04-17 17:47 ` [PATCH 6.13 084/414] wifi: ath11k: fix memory leak in ath11k_xxx_remove() Greg Kroah-Hartman
2025-04-17 17:47 ` [PATCH 6.13 085/414] wifi: ath12k: fix memory leak in ath12k_pci_remove() Greg Kroah-Hartman
2025-04-17 17:47 ` [PATCH 6.13 086/414] wifi: ath12k: Fix invalid entry fetch in ath12k_dp_mon_srng_process Greg Kroah-Hartman
2025-04-17 17:47 ` [PATCH 6.13 087/414] ata: libata-core: Add external to the libata.force kernel parameter Greg Kroah-Hartman
2025-04-17 17:47 ` [PATCH 6.13 088/414] scsi: mpi3mr: Avoid reply queue full condition Greg Kroah-Hartman
2025-04-17 17:47 ` [PATCH 6.13 089/414] scsi: mpi3mr: Synchronous access b/w reset and tm thread for reply queue Greg Kroah-Hartman
2025-04-17 17:47 ` [PATCH 6.13 090/414] net: page_pool: dont cast mp param to devmem Greg Kroah-Hartman
2025-04-17 17:47 ` [PATCH 6.13 091/414] f2fs: dont retry IO for corrupted data scenario Greg Kroah-Hartman
2025-04-17 17:47 ` [PATCH 6.13 092/414] wifi: mac80211: add strict mode disabling workarounds Greg Kroah-Hartman
2025-04-17 17:47 ` [PATCH 6.13 093/414] wifi: mac80211: ensure sdata->work is canceled before initialized Greg Kroah-Hartman
2025-04-17 17:47 ` [PATCH 6.13 094/414] scsi: target: spc: Fix RSOC parameter data header size Greg Kroah-Hartman
2025-04-17 17:47 ` [PATCH 6.13 095/414] net: usb: asix_devices: add FiberGecko DeviceID Greg Kroah-Hartman
2025-04-17 17:47 ` [PATCH 6.13 096/414] page_pool: avoid infinite loop to schedule delayed worker Greg Kroah-Hartman
2025-04-17 17:47 ` [PATCH 6.13 097/414] can: flexcan: Add quirk to handle separate interrupt lines for mailboxes Greg Kroah-Hartman
2025-04-17 17:47 ` [PATCH 6.13 098/414] can: flexcan: add NXP S32G2/S32G3 SoC support Greg Kroah-Hartman
2025-04-17 17:47 ` [PATCH 6.13 099/414] jfs: Fix uninit-value access of imap allocated in the diMount() function Greg Kroah-Hartman
2025-04-17 17:47 ` [PATCH 6.13 100/414] fs/jfs: cast inactags to s64 to prevent potential overflow Greg Kroah-Hartman
2025-04-17 17:47 ` [PATCH 6.13 101/414] fs/jfs: Prevent integer overflow in AG size calculation Greg Kroah-Hartman
2025-04-17 17:47 ` [PATCH 6.13 102/414] jfs: Prevent copying of nlink with value 0 from disk inode Greg Kroah-Hartman
2025-04-17 17:47 ` [PATCH 6.13 103/414] jfs: add sanity check for agwidth in dbMount Greg Kroah-Hartman
2025-04-17 17:47 ` [PATCH 6.13 104/414] ata: libata-eh: Do not use ATAPI DMA for a device limited to PIO mode Greg Kroah-Hartman
2025-04-17 17:47 ` [PATCH 6.13 105/414] net: sfp: add quirk for 2.5G OEM BX SFP Greg Kroah-Hartman
2025-04-17 17:47 ` [PATCH 6.13 106/414] wifi: ath12k: Fix invalid data access in ath12k_dp_rx_h_undecap_nwifi Greg Kroah-Hartman
2025-04-17 17:47 ` [PATCH 6.13 107/414] f2fs: fix to avoid out-of-bounds access in f2fs_truncate_inode_blocks() Greg Kroah-Hartman
2025-04-17 17:47 ` [PATCH 6.13 108/414] net: sfp: add quirk for FS SFP-10GM-T copper SFP+ module Greg Kroah-Hartman
2025-04-17 17:47 ` [PATCH 6.13 109/414] ahci: add PCI ID for Marvell 88SE9215 SATA Controller Greg Kroah-Hartman
2025-04-17 17:47 ` [PATCH 6.13 110/414] ext4: protect ext4_release_dquot against freezing Greg Kroah-Hartman
2025-04-17 17:47 ` [PATCH 6.13 111/414] Revert "f2fs: rebuild nat_bits during umount" Greg Kroah-Hartman
2025-04-17 17:47 ` [PATCH 6.13 112/414] ext4: ignore xattrs past end Greg Kroah-Hartman
2025-04-17 17:47 ` [PATCH 6.13 113/414] cdc_ether|r8152: ThinkPad Hybrid USB-C/A Dock quirk Greg Kroah-Hartman
2025-04-17 17:47 ` [PATCH 6.13 114/414] scsi: st: Fix array overflow in st_setup() Greg Kroah-Hartman
2025-04-17 17:47 ` [PATCH 6.13 115/414] ahci: Marvell 88SE9215 controllers prefer DMA for ATAPI Greg Kroah-Hartman
2025-04-17 17:47 ` [PATCH 6.13 116/414] btrfs: harden block_group::bg_list against list_del() races Greg Kroah-Hartman
2025-04-17 17:47 ` [PATCH 6.13 117/414] wifi: mt76: mt76x2u: add TP-Link TL-WDN6200 ID to device table Greg Kroah-Hartman
2025-04-17 17:47 ` [PATCH 6.13 118/414] net: vlan: dont propagate flags on open Greg Kroah-Hartman
2025-04-17 17:47 ` [PATCH 6.13 119/414] tracing: fix return value in __ftrace_event_enable_disable for TRACE_REG_UNREGISTER Greg Kroah-Hartman
2025-04-17 17:47 ` [PATCH 6.13 120/414] Bluetooth: btusb: Add new VID/PID for WCN785x Greg Kroah-Hartman
2025-04-17 17:47 ` [PATCH 6.13 121/414] Bluetooth: btintel_pcie: Add device id of Whale Peak Greg Kroah-Hartman
2025-04-17 17:48 ` [PATCH 6.13 122/414] Bluetooth: btusb: Add 13 USB device IDs for Qualcomm WCN785x Greg Kroah-Hartman
2025-04-17 17:48 ` [PATCH 6.13 123/414] Bluetooth: hci_uart: fix race during initialization Greg Kroah-Hartman
2025-04-17 17:48 ` [PATCH 6.13 124/414] Bluetooth: btusb: Add 2 HWIDs for MT7922 Greg Kroah-Hartman
2025-04-17 17:48 ` [PATCH 6.13 125/414] Bluetooth: hci_qca: use the power sequencer for wcn6750 Greg Kroah-Hartman
2025-04-17 17:48 ` [PATCH 6.13 126/414] Bluetooth: qca: simplify WCN399x NVM loading Greg Kroah-Hartman
2025-04-17 17:48 ` [PATCH 6.13 127/414] Bluetooth: Add quirk for broken READ_VOICE_SETTING Greg Kroah-Hartman
2025-04-17 17:48 ` [PATCH 6.13 128/414] Bluetooth: Add quirk for broken READ_PAGE_SCAN_TYPE Greg Kroah-Hartman
2025-04-17 17:48 ` [PATCH 6.13 129/414] drm: allow encoder mode_set even when connectors change for crtc Greg Kroah-Hartman
2025-04-17 17:48 ` [PATCH 6.13 130/414] drm/xe/bmg: Add new PCI IDs Greg Kroah-Hartman
2025-04-17 17:48 ` [PATCH 6.13 131/414] drm/xe/pf: Dont send BEGIN_ID if VF has no context/doorbells Greg Kroah-Hartman
2025-04-17 17:48 ` [PATCH 6.13 132/414] drm/xe/vf: Dont try to trigger a full GT reset if VF Greg Kroah-Hartman
2025-04-17 17:48 ` [PATCH 6.13 133/414] drm/amd/display: Update Cursor request mode to the beginning prefetch always Greg Kroah-Hartman
2025-04-17 17:48 ` [PATCH 6.13 134/414] drm/amd/display: add workaround flag to link to force FFE preset Greg Kroah-Hartman
2025-04-17 17:48 ` [PATCH 6.13 135/414] drm/amdgpu: Unlocked unmap only clear page table leaves Greg Kroah-Hartman
2025-04-17 17:48 ` [PATCH 6.13 136/414] drm: panel-orientation-quirks: Add support for AYANEO 2S Greg Kroah-Hartman
2025-04-17 17:48 ` [PATCH 6.13 137/414] drm: panel-orientation-quirks: Add quirks for AYA NEO Flip DS and KB Greg Kroah-Hartman
2025-04-17 17:48 ` [PATCH 6.13 138/414] drm: panel-orientation-quirks: Add quirk for AYA NEO Slide Greg Kroah-Hartman
2025-04-17 17:48 ` [PATCH 6.13 139/414] drm: panel-orientation-quirks: Add new quirk for GPD Win 2 Greg Kroah-Hartman
2025-04-17 17:48 ` [PATCH 6.13 140/414] drm: panel-orientation-quirks: Add quirk for OneXPlayer Mini (Intel) Greg Kroah-Hartman
2025-04-17 17:48 ` [PATCH 6.13 141/414] drm/debugfs: fix printk format for bridge index Greg Kroah-Hartman
2025-04-17 17:48 ` [PATCH 6.13 142/414] drm/bridge: panel: forbid initializing a panel with unknown connector type Greg Kroah-Hartman
2025-04-17 17:48 ` [PATCH 6.13 143/414] drm/amd/display: Update FIXED_VS Link Rate Toggle Workaround Usage Greg Kroah-Hartman
2025-04-17 17:48 ` [PATCH 6.13 144/414] drm/amd/display: stop DML2 from removing pipes based on planes Greg Kroah-Hartman
2025-04-17 17:48 ` [PATCH 6.13 145/414] drivers: base: devres: Allow to release group on device release Greg Kroah-Hartman
2025-04-17 17:48 ` [PATCH 6.13 146/414] drm/amdkfd: clamp queue size to minimum Greg Kroah-Hartman
2025-04-17 17:48 ` [PATCH 6.13 147/414] drm/amdkfd: Fix mode1 reset crash issue Greg Kroah-Hartman
2025-04-17 17:48 ` [PATCH 6.13 148/414] drm/amdkfd: Fix pqm_destroy_queue race with GPU reset Greg Kroah-Hartman
2025-04-17 17:48 ` [PATCH 6.13 149/414] drm/amdkfd: debugfs hang_hws skip GPU with MES Greg Kroah-Hartman
2025-04-17 17:48 ` [PATCH 6.13 150/414] drm/xe/xelp: Move Wa_16011163337 from tunings to workarounds Greg Kroah-Hartman
2025-04-17 17:48 ` [PATCH 6.13 151/414] drm/mediatek: mtk_dpi: Move the input_2p_en bit to platform data Greg Kroah-Hartman
2025-04-17 17:48 ` [PATCH 6.13 152/414] drm/mediatek: mtk_dpi: Explicitly manage TVD clock in power on/off Greg Kroah-Hartman
2025-04-17 17:48 ` [PATCH 6.13 153/414] PCI: Add Rockchip Vendor ID Greg Kroah-Hartman
2025-04-17 17:48 ` [PATCH 6.13 154/414] drm/amdgpu: handle amdgpu_cgs_create_device() errors in amd_powerplay_create() Greg Kroah-Hartman
2025-04-17 17:48 ` [PATCH 6.13 155/414] drm/amd/display: Prevent VStartup Overflow Greg Kroah-Hartman
2025-04-17 17:48 ` [PATCH 6.13 156/414] PCI: Enable Configuration RRS SV early Greg Kroah-Hartman
2025-04-17 17:48 ` [PATCH 6.13 157/414] drm/amdgpu: Fix the race condition for draining retry fault Greg Kroah-Hartman
2025-04-17 17:48 ` [PATCH 6.13 158/414] PCI: Check BAR index for validity Greg Kroah-Hartman
2025-04-17 17:48 ` [PATCH 6.13 159/414] PCI: vmd: Make vmd_dev::cfg_lock a raw_spinlock_t type Greg Kroah-Hartman
2025-04-17 17:48 ` [PATCH 6.13 160/414] drm/amdgpu: grab an additional reference on the gang fence v2 Greg Kroah-Hartman
2025-04-17 17:48 ` [PATCH 6.13 161/414] fbdev: omapfb: Add plane value check Greg Kroah-Hartman
2025-04-17 17:48 ` [PATCH 6.13 162/414] tracing: probe-events: Add comments about entry data storing code Greg Kroah-Hartman
2025-04-17 17:48 ` [PATCH 6.13 163/414] ktest: Fix Test Failures Due to Missing LOG_FILE Directories Greg Kroah-Hartman
2025-04-17 17:48 ` [PATCH 6.13 164/414] tpm, tpm_tis: Workaround failed command reception on Infineon devices Greg Kroah-Hartman
2025-04-17 17:48 ` [PATCH 6.13 165/414] tpm: End any active auth session before shutdown Greg Kroah-Hartman
2025-04-17 17:48 ` [PATCH 6.13 166/414] pwm: mediatek: Prevent divide-by-zero in pwm_mediatek_config() Greg Kroah-Hartman
2025-04-17 17:48 ` [PATCH 6.13 167/414] pwm: rcar: Improve register calculation Greg Kroah-Hartman
2025-04-17 17:48 ` [PATCH 6.13 168/414] pwm: fsl-ftm: Handle clk_get_rate() returning 0 Greg Kroah-Hartman
2025-04-17 17:48 ` [PATCH 6.13 169/414] pwm: stm32: Search an appropriate duty_cycle if period cannot be modified Greg Kroah-Hartman
2025-04-17 17:48 ` [PATCH 6.13 170/414] erofs: set error to bio if file-backed IO fails Greg Kroah-Hartman
2025-04-17 17:48 ` [PATCH 6.13 171/414] bpf: support SKF_NET_OFF and SKF_LL_OFF on skb frags Greg Kroah-Hartman
2025-04-17 17:48 ` [PATCH 6.13 172/414] ext4: dont treat fhandle lookup of ea_inode as FS corruption Greg Kroah-Hartman
2025-04-17 17:48 ` [PATCH 6.13 173/414] s390/pci: Fix s390_mmio_read/write syscall page fault handling Greg Kroah-Hartman
2025-04-17 17:48 ` [PATCH 6.13 174/414] HID: pidff: Clamp PERIODIC effect period to devices logical range Greg Kroah-Hartman
2025-04-17 17:48 ` [PATCH 6.13 175/414] HID: pidff: Stop all effects before enabling actuators Greg Kroah-Hartman
2025-04-17 17:48 ` [PATCH 6.13 176/414] HID: pidff: Completely rework and fix pidff_reset function Greg Kroah-Hartman
2025-04-17 17:48 ` [PATCH 6.13 177/414] HID: pidff: Simplify pidff_upload_effect function Greg Kroah-Hartman
2025-04-17 17:48 ` [PATCH 6.13 178/414] HID: pidff: Define values used in pidff_find_special_fields Greg Kroah-Hartman
2025-04-17 17:48 ` [PATCH 6.13 179/414] HID: pidff: Rescale time values to match field units Greg Kroah-Hartman
2025-04-17 17:48 ` [PATCH 6.13 180/414] HID: pidff: Factor out code for setting gain Greg Kroah-Hartman
2025-04-17 17:48 ` [PATCH 6.13 181/414] HID: pidff: Move all hid-pidff definitions to a dedicated header Greg Kroah-Hartman
2025-04-17 17:49 ` [PATCH 6.13 182/414] HID: pidff: Simplify pidff_rescale_signed Greg Kroah-Hartman
2025-04-17 17:49 ` [PATCH 6.13 183/414] HID: pidff: Use macros instead of hardcoded min/max values for shorts Greg Kroah-Hartman
2025-04-17 17:49 ` [PATCH 6.13 184/414] HID: pidff: Factor out pool report fetch and remove excess declaration Greg Kroah-Hartman
2025-04-17 17:49 ` [PATCH 6.13 185/414] HID: pidff: Make sure to fetch pool before checking SIMULTANEOUS_MAX Greg Kroah-Hartman
2025-04-17 17:49 ` [PATCH 6.13 186/414] HID: hid-universal-pidff: Add Asetek wheelbases support Greg Kroah-Hartman
2025-04-17 17:49 ` [PATCH 6.13 187/414] HID: pidff: Comment and code style update Greg Kroah-Hartman
2025-04-17 17:49 ` [PATCH 6.13 188/414] HID: pidff: Support device error response from PID_BLOCK_LOAD Greg Kroah-Hartman
2025-04-17 17:49 ` [PATCH 6.13 189/414] HID: pidff: Remove redundant call to pidff_find_special_keys Greg Kroah-Hartman
2025-04-17 17:49 ` [PATCH 6.13 190/414] HID: pidff: Rename two functions to align them with naming convention Greg Kroah-Hartman
2025-04-17 17:49 ` [PATCH 6.13 191/414] HID: pidff: Clamp effect playback LOOP_COUNT value Greg Kroah-Hartman
2025-04-17 17:49 ` [PATCH 6.13 192/414] HID: pidff: Compute INFINITE value instead of using hardcoded 0xffff Greg Kroah-Hartman
2025-04-17 17:49 ` [PATCH 6.13 193/414] HID: pidff: Fix 90 degrees direction name North -> East Greg Kroah-Hartman
2025-04-17 17:49 ` [PATCH 6.13 194/414] HID: pidff: Fix set_device_control() Greg Kroah-Hartman
2025-04-17 17:49 ` [PATCH 6.13 195/414] auxdisplay: hd44780: Fix an API misuse in hd44780.c Greg Kroah-Hartman
2025-04-17 17:49 ` [PATCH 6.13 196/414] dt-bindings: media: st,stmipid02: correct lane-polarities maxItems Greg Kroah-Hartman
2025-04-17 17:49 ` [PATCH 6.13 197/414] media: mediatek: vcodec: Fix a resource leak related to the scp device in FW initialization Greg Kroah-Hartman
2025-04-17 17:49 ` [PATCH 6.13 198/414] media: mtk-vcodec: venc: avoid -Wenum-compare-conditional warning Greg Kroah-Hartman
2025-04-17 17:49 ` [PATCH 6.13 199/414] media: uapi: rkisp1-config: Fix typo in extensible params example Greg Kroah-Hartman
2025-04-17 17:49 ` [PATCH 6.13 200/414] media: mgb4: Fix CMT registers update logic Greg Kroah-Hartman
2025-04-17 17:49 ` [PATCH 6.13 201/414] media: i2c: adv748x: Fix test pattern selection mask Greg Kroah-Hartman
2025-04-17 17:49 ` [PATCH 6.13 202/414] media: mgb4: Fix switched CMT frequency range "magic values" sets Greg Kroah-Hartman
2025-04-17 17:49 ` [PATCH 6.13 203/414] media: intel/ipu6: set the dev_parent of video device to pdev Greg Kroah-Hartman
2025-04-17 17:49 ` [PATCH 6.13 204/414] media: venus: hfi: add a check to handle OOB in sfr region Greg Kroah-Hartman
2025-04-17 17:49 ` [PATCH 6.13 205/414] media: venus: hfi: add check to handle incorrect queue size Greg Kroah-Hartman
2025-04-17 17:49 ` [PATCH 6.13 206/414] media: vim2m: print device name after registering device Greg Kroah-Hartman
2025-04-17 17:49 ` [PATCH 6.13 207/414] media: siano: Fix error handling in smsdvb_module_init() Greg Kroah-Hartman
2025-04-17 17:49 ` Greg Kroah-Hartman [this message]
2025-04-17 17:49 ` [PATCH 6.13 209/414] xenfs/xensyms: respect hypervisors "next" indication Greg Kroah-Hartman
2025-04-17 17:49 ` [PATCH 6.13 210/414] KVM: arm64: PMU: Set raw values from user to PM{C,I}NTEN{SET,CLR}, PMOVS{SET,CLR} Greg Kroah-Hartman
2025-04-17 17:49 ` [PATCH 6.13 211/414] arm64: cputype: Add MIDR_CORTEX_A76AE Greg Kroah-Hartman
2025-04-17 17:49 ` [PATCH 6.13 212/414] arm64: errata: Add QCOM_KRYO_4XX_GOLD to the spectre_bhb_k24_list Greg Kroah-Hartman
2025-04-17 17:49 ` [PATCH 6.13 213/414] arm64: errata: Assume that unknown CPUs _are_ vulnerable to Spectre BHB Greg Kroah-Hartman
2025-04-17 17:49 ` [PATCH 6.13 214/414] arm64: errata: Add KRYO 2XX/3XX/4XX silver cores to Spectre BHB safe list Greg Kroah-Hartman
2025-04-17 17:49 ` [PATCH 6.13 215/414] KVM: arm64: Tear down vGIC on failed vCPU creation Greg Kroah-Hartman
2025-04-17 17:49 ` [PATCH 6.13 216/414] KVM: arm64: Set HCR_EL2.TID1 unconditionally Greg Kroah-Hartman
2025-04-17 17:49 ` [PATCH 6.13 217/414] spi: cadence-qspi: Fix probe on AM62A LP SK Greg Kroah-Hartman
2025-04-17 17:49 ` [PATCH 6.13 218/414] mtd: rawnand: brcmnand: fix PM resume warning Greg Kroah-Hartman
2025-04-17 17:49 ` [PATCH 6.13 219/414] tpm, tpm_tis: Fix timeout handling when waiting for TPM status Greg Kroah-Hartman
2025-04-17 17:49 ` [PATCH 6.13 220/414] accel/ivpu: Fix PM related deadlocks in MS IOCTLs Greg Kroah-Hartman
2025-04-17 17:49 ` [PATCH 6.13 221/414] media: ov08x40: Properly turn sensor on/off when runtime-suspended Greg Kroah-Hartman
2025-04-17 17:49 ` [PATCH 6.13 222/414] media: streamzap: prevent processing IR data on URB failure Greg Kroah-Hartman
2025-04-17 17:49 ` [PATCH 6.13 223/414] media: hi556: Fix memory leak (on error) in hi556_check_hwcfg() Greg Kroah-Hartman
2025-04-17 17:49 ` [PATCH 6.13 224/414] media: visl: Fix ERANGE error when setting enum controls Greg Kroah-Hartman
2025-04-17 17:49 ` [PATCH 6.13 225/414] media: platform: stm32: Add check for clk_enable() Greg Kroah-Hartman
2025-04-17 17:49 ` [PATCH 6.13 226/414] media: xilinx-tpg: fix double put in xtpg_parse_of() Greg Kroah-Hartman
2025-04-17 17:49 ` [PATCH 6.13 227/414] media: imx219: Adjust PLL settings based on the number of MIPI lanes Greg Kroah-Hartman
2025-04-17 17:49 ` [PATCH 6.13 228/414] media: v4l2-dv-timings: prevent possible overflow in v4l2_detect_gtf() Greg Kroah-Hartman
2025-04-17 17:49 ` [PATCH 6.13 229/414] Revert "media: imx214: Fix the error handling in imx214_probe()" Greg Kroah-Hartman
2025-04-17 17:49 ` [PATCH 6.13 230/414] media: i2c: ccs: Set the devices runtime PM status correctly in remove Greg Kroah-Hartman
2025-04-17 17:49 ` [PATCH 6.13 231/414] media: i2c: ccs: Set the devices runtime PM status correctly in probe Greg Kroah-Hartman
2025-04-17 17:49 ` [PATCH 6.13 232/414] media: i2c: ov7251: Set enable GPIO low " Greg Kroah-Hartman
2025-04-17 17:49 ` [PATCH 6.13 233/414] media: i2c: ov7251: Introduce 1 ms delay between regulators and en GPIO Greg Kroah-Hartman
2025-04-17 17:49 ` [PATCH 6.13 234/414] media: nuvoton: Fix reference handling of ece_node Greg Kroah-Hartman
2025-04-17 17:49 ` [PATCH 6.13 235/414] media: nuvoton: Fix reference handling of ece_pdev Greg Kroah-Hartman
2025-04-17 17:49 ` [PATCH 6.13 236/414] media: venus: hfi_parser: add check to avoid out of bound access Greg Kroah-Hartman
2025-04-17 17:49 ` [PATCH 6.13 237/414] media: venus: hfi_parser: refactor hfi packet parsing logic Greg Kroah-Hartman
2025-04-17 17:49 ` [PATCH 6.13 238/414] media: i2c: imx319: Rectify runtime PM handling probe and remove Greg Kroah-Hartman
2025-04-17 17:49 ` [PATCH 6.13 239/414] media: i2c: imx219: Rectify runtime PM handling in " Greg Kroah-Hartman
2025-04-17 17:49 ` [PATCH 6.13 240/414] media: i2c: imx214: Rectify probe error handling related to runtime PM Greg Kroah-Hartman
2025-04-17 17:49 ` [PATCH 6.13 241/414] media: chips-media: wave5: Fix gray color on screen Greg Kroah-Hartman
2025-04-17 17:50 ` [PATCH 6.13 242/414] media: chips-media: wave5: Avoid race condition in the interrupt handler Greg Kroah-Hartman
2025-04-17 17:50 ` [PATCH 6.13 243/414] media: chips-media: wave5: Fix a hang after seeking Greg Kroah-Hartman
2025-04-17 17:50 ` [PATCH 6.13 244/414] media: chips-media: wave5: Fix timeout while testing 10bit hevc fluster Greg Kroah-Hartman
2025-04-17 17:50 ` [PATCH 6.13 245/414] irqchip/renesas-rzv2h: Fix wrong variable usage in rzv2h_tint_set_type() Greg Kroah-Hartman
2025-04-17 17:50 ` [PATCH 6.13 246/414] gve: unlink old napi only if page pool exists Greg Kroah-Hartman
2025-04-17 17:50 ` [PATCH 6.13 247/414] mptcp: sockopt: fix getting IPV6_V6ONLY Greg Kroah-Hartman
2025-04-17 17:50 ` [PATCH 6.13 248/414] mptcp: sockopt: fix getting freebind & transparent Greg Kroah-Hartman
2025-04-17 17:50 ` [PATCH 6.13 249/414] block: make sure ->nr_integrity_segments is cloned in blk_rq_prep_clone Greg Kroah-Hartman
2025-04-17 17:50 ` [PATCH 6.13 250/414] mtd: Add check for devm_kcalloc() Greg Kroah-Hartman
2025-04-17 17:50 ` [PATCH 6.13 251/414] net: dsa: mv88e6xxx: workaround RGMII transmit delay erratum for 6320 family Greg Kroah-Hartman
2025-04-17 17:50 ` [PATCH 6.13 252/414] net: dsa: mv88e6xxx: fix internal PHYs " Greg Kroah-Hartman
2025-04-17 17:50 ` [PATCH 6.13 253/414] mtd: Replace kcalloc() with devm_kcalloc() Greg Kroah-Hartman
2025-04-17 17:50 ` [PATCH 6.13 254/414] clocksource/drivers/stm32-lptimer: Use wakeup capable instead of init wakeup Greg Kroah-Hartman
2025-04-17 17:50 ` [PATCH 6.13 255/414] wifi: mt76: Add check for devm_kstrdup() Greg Kroah-Hartman
2025-04-17 17:50 ` [PATCH 6.13 256/414] wifi: mac80211: fix integer overflow in hwmp_route_info_get() Greg Kroah-Hartman
2025-04-17 17:50 ` [PATCH 6.13 257/414] wifi: mt76: mt7925: ensure wow pattern command align fw format Greg Kroah-Hartman
2025-04-17 17:50 ` [PATCH 6.13 258/414] wifi: mt76: mt7925: fix country count limitation for CLC Greg Kroah-Hartman
2025-04-17 17:50 ` [PATCH 6.13 259/414] wifi: mt76: mt7925: fix the wrong link_idx when a p2p_device is present Greg Kroah-Hartman
2025-04-17 17:50 ` [PATCH 6.13 260/414] wifi: mt76: mt7925: fix the wrong simultaneous cap for MLO Greg Kroah-Hartman
2025-04-17 17:50 ` [PATCH 6.13 261/414] scsi: lpfc: Restore clearing of NLP_UNREG_INP in ndlp->nlp_flag Greg Kroah-Hartman
2025-04-17 17:50 ` [PATCH 6.13 262/414] net: stmmac: Fix accessing freed irq affinity_hint Greg Kroah-Hartman
2025-04-17 17:50 ` [PATCH 6.13 263/414] io_uring/net: fix accept multishot handling Greg Kroah-Hartman
2025-04-17 17:50 ` [PATCH 6.13 264/414] io_uring/net: fix io_req_post_cqe abuse by send bundle Greg Kroah-Hartman
2025-04-17 17:50 ` [PATCH 6.13 265/414] io_uring/kbuf: reject zero sized provided buffers Greg Kroah-Hartman
2025-04-17 17:50 ` [PATCH 6.13 266/414] ASoC: codecs: wcd937x: fix a potential memory leak in wcd937x_soc_codec_probe() Greg Kroah-Hartman
2025-04-17 17:50 ` [PATCH 6.13 267/414] ASoC: q6apm: add q6apm_get_hw_pointer helper Greg Kroah-Hartman
2025-04-17 17:50 ` [PATCH 6.13 268/414] ASoC: q6apm-dai: schedule all available frames to avoid dsp under-runs Greg Kroah-Hartman
2025-04-17 17:50 ` [PATCH 6.13 269/414] ASoC: q6apm-dai: make use of q6apm_get_hw_pointer Greg Kroah-Hartman
2025-04-17 17:50 ` [PATCH 6.13 270/414] ASoC: qdsp6: q6apm-dai: set 10 ms period and buffer alignment Greg Kroah-Hartman
2025-04-17 17:50 ` [PATCH 6.13 271/414] ASoC: qdsp6: q6apm-dai: fix capture pipeline overruns Greg Kroah-Hartman
2025-04-17 17:50 ` [PATCH 6.13 272/414] ASoC: qdsp6: q6asm-dai: fix q6asm_dai_compr_set_params error path Greg Kroah-Hartman
2025-04-17 17:50 ` [PATCH 6.13 273/414] ALSA: hda/realtek: Enable Mute LED on HP OMEN 16 Laptop xd000xx Greg Kroah-Hartman
2025-04-17 17:50 ` [PATCH 6.13 274/414] accel/ivpu: Fix warning in ivpu_ipc_send_receive_internal() Greg Kroah-Hartman
2025-04-17 17:50 ` [PATCH 6.13 275/414] accel/ivpu: Fix deadlock in ivpu_ms_cleanup() Greg Kroah-Hartman
2025-04-17 17:50 ` [PATCH 6.13 276/414] bus: mhi: host: Fix race between unprepare and queue_buf Greg Kroah-Hartman
2025-04-17 17:50 ` [PATCH 6.13 277/414] ext4: fix off-by-one error in do_split Greg Kroah-Hartman
2025-04-17 17:50 ` [PATCH 6.13 278/414] f2fs: fix the missing write pointer correction Greg Kroah-Hartman
2025-04-17 17:50 ` [PATCH 6.13 279/414] f2fs: fix to avoid atomicity corruption of atomic file Greg Kroah-Hartman
2025-04-17 17:50 ` [PATCH 6.13 280/414] vdpa/mlx5: Fix oversized null mkey longer than 32bit Greg Kroah-Hartman
2025-04-17 17:50 ` [PATCH 6.13 281/414] udf: Fix inode_getblk() return value Greg Kroah-Hartman
2025-04-17 17:50 ` [PATCH 6.13 282/414] tpm: do not start chip while suspended Greg Kroah-Hartman
2025-04-17 17:50 ` [PATCH 6.13 283/414] svcrdma: do not unregister device for listeners Greg Kroah-Hartman
2025-04-17 17:50 ` [PATCH 6.13 284/414] soc: samsung: exynos-chipid: Add NULL pointer check in exynos_chipid_probe() Greg Kroah-Hartman
2025-04-17 17:50 ` [PATCH 6.13 285/414] smb311 client: fix missing tcon check when mounting with linux/posix extensions Greg Kroah-Hartman
2025-04-17 17:50 ` [PATCH 6.13 286/414] ima: limit the number of open-writers integrity violations Greg Kroah-Hartman
2025-04-17 17:50 ` [PATCH 6.13 287/414] ima: limit the number of ToMToU " Greg Kroah-Hartman
2025-04-17 17:50 ` [PATCH 6.13 288/414] i3c: master: svc: Use readsb helper for reading MDB Greg Kroah-Hartman
2025-04-17 17:50 ` [PATCH 6.13 289/414] i3c: Add NULL pointer check in i3c_master_queue_ibi() Greg Kroah-Hartman
2025-04-17 17:50 ` [PATCH 6.13 290/414] jbd2: remove wrong sb->s_sequence check Greg Kroah-Hartman
2025-04-17 17:50 ` [PATCH 6.13 291/414] kbuild: exclude .rodata.(cst|str)* when building ranges Greg Kroah-Hartman
2025-04-17 17:50 ` [PATCH 6.13 292/414] kbuild: Add -fno-builtin-wcslen Greg Kroah-Hartman
2025-04-17 17:50 ` [PATCH 6.13 293/414] leds: rgb: leds-qcom-lpg: Fix pwm resolution max for Hi-Res PWMs Greg Kroah-Hartman
2025-04-17 17:50 ` [PATCH 6.13 294/414] leds: rgb: leds-qcom-lpg: Fix calculation of best period " Greg Kroah-Hartman
2025-04-17 17:50 ` [PATCH 6.13 295/414] mfd: ene-kb3930: Fix a potential NULL pointer dereference Greg Kroah-Hartman
2025-04-17 17:50 ` [PATCH 6.13 296/414] mailbox: tegra-hsp: Define dimensioning masks in SoC data Greg Kroah-Hartman
2025-04-17 17:50 ` [PATCH 6.13 297/414] locking/lockdep: Decrease nr_unused_locks if lock unused in zap_class() Greg Kroah-Hartman
2025-04-17 17:50 ` [PATCH 6.13 298/414] lib: scatterlist: fix sg_split_phys to preserve original scatterlist offsets Greg Kroah-Hartman
2025-04-17 17:50 ` [PATCH 6.13 299/414] mptcp: fix NULL pointer in can_accept_new_subflow Greg Kroah-Hartman
2025-04-17 17:50 ` [PATCH 6.13 300/414] mptcp: only inc MPJoinAckHMacFailure for HMAC failures Greg Kroah-Hartman
2025-04-17 17:50 ` [PATCH 6.13 301/414] mtd: inftlcore: Add error check for inftl_read_oob() Greg Kroah-Hartman
2025-04-17 17:51 ` [PATCH 6.13 302/414] mtd: rawnand: Add status chack in r852_ready() Greg Kroah-Hartman
2025-04-17 17:51 ` [PATCH 6.13 303/414] arm64: mops: Do not dereference src reg for a set operation Greg Kroah-Hartman
2025-04-17 17:51 ` [PATCH 6.13 304/414] arm64: tegra: Remove the Orin NX/Nano suspend key Greg Kroah-Hartman
2025-04-17 17:51 ` [PATCH 6.13 305/414] arm64: mm: Correct the update of max_pfn Greg Kroah-Hartman
2025-04-17 17:51 ` [PATCH 6.13 306/414] arm64: dts: ti: k3-j784s4-j742s2-main-common: Correct the GICD size Greg Kroah-Hartman
2025-04-17 17:51 ` [PATCH 6.13 307/414] arm64: dts: ti: k3-j784s4-j742s2-main-common: Fix serdes_ln_ctrl reg-masks Greg Kroah-Hartman
2025-04-17 17:51 ` [PATCH 6.13 308/414] arm64: dts: mediatek: mt8188: Assign apll1 clock as parent to avoid hang Greg Kroah-Hartman
2025-04-17 17:51 ` [PATCH 6.13 309/414] arm64: dts: mediatek: mt8173: Fix disp-pwm compatible string Greg Kroah-Hartman
2025-04-17 17:51 ` [PATCH 6.13 310/414] arm64: dts: exynos: gs101: disable pinctrl_gsacore node Greg Kroah-Hartman
2025-04-17 17:51 ` [PATCH 6.13 311/414] backlight: led_bl: Hold led_access lock when calling led_sysfs_disable() Greg Kroah-Hartman
2025-04-17 17:51 ` [PATCH 6.13 312/414] btrfs: fix non-empty delayed iputs list on unmount due to compressed write workers Greg Kroah-Hartman
2025-04-17 17:51 ` [PATCH 6.13 313/414] btrfs: tests: fix chunk map leak after failure to add it to the tree Greg Kroah-Hartman
2025-04-17 17:51 ` [PATCH 6.13 314/414] btrfs: zoned: fix zone activation with missing devices Greg Kroah-Hartman
2025-04-17 17:51 ` [PATCH 6.13 315/414] btrfs: zoned: fix zone finishing " Greg Kroah-Hartman
2025-04-17 17:51 ` [PATCH 6.13 316/414] iommufd: Fix uninitialized rc in iommufd_access_rw() Greg Kroah-Hartman
2025-04-17 17:51 ` [PATCH 6.13 317/414] iommu/tegra241-cmdqv: Fix warnings due to dmam_free_coherent() Greg Kroah-Hartman
2025-04-17 17:51 ` [PATCH 6.13 318/414] iommu/vt-d: Put IRTE back into posted MSI mode if vCPU posting is disabled Greg Kroah-Hartman
2025-04-17 17:51 ` [PATCH 6.13 319/414] iommu/vt-d: Dont clobber posted vCPU IRTE when host IRQ affinity changes Greg Kroah-Hartman
2025-04-17 17:51 ` [PATCH 6.13 320/414] iommu/vt-d: Fix possible circular locking dependency Greg Kroah-Hartman
2025-04-17 17:51 ` [PATCH 6.13 321/414] iommu/vt-d: Wire up irq_ack() to irq_move_irq() for posted MSIs Greg Kroah-Hartman
2025-04-17 17:51 ` [PATCH 6.13 322/414] sparc/mm: disable preemption in lazy mmu mode Greg Kroah-Hartman
2025-04-17 17:51 ` [PATCH 6.13 323/414] sparc/mm: avoid calling arch_enter/leave_lazy_mmu() in set_ptes Greg Kroah-Hartman
2025-04-17 17:51 ` [PATCH 6.13 324/414] net: Fix null-ptr-deref by sock_lock_init_class_and_name() and rmmod Greg Kroah-Hartman
2025-04-17 17:51 ` [PATCH 6.13 325/414] mm/damon/ops: have damon_get_folio return folio even for tail pages Greg Kroah-Hartman
2025-04-17 17:51 ` [PATCH 6.13 326/414] mm/rmap: reject hugetlb folios in folio_make_device_exclusive() Greg Kroah-Hartman
2025-04-17 17:51 ` [PATCH 6.13 327/414] mm: make page_mapped_in_vma() hugetlb walk aware Greg Kroah-Hartman
2025-04-17 17:51 ` [PATCH 6.13 328/414] mm: fix lazy mmu docs and usage Greg Kroah-Hartman
2025-04-17 17:51 ` [PATCH 6.13 329/414] mm/mremap: correctly handle partial mremap() of VMA starting at 0 Greg Kroah-Hartman
2025-04-17 17:51 ` [PATCH 6.13 330/414] mm: add missing release barrier on PGDAT_RECLAIM_LOCKED unlock Greg Kroah-Hartman
2025-04-17 17:51 ` [PATCH 6.13 331/414] mm/userfaultfd: fix release hang over concurrent GUP Greg Kroah-Hartman
2025-04-17 17:51 ` [PATCH 6.13 332/414] mm/hwpoison: do not send SIGBUS to processes with recovered clean pages Greg Kroah-Hartman
2025-04-17 17:51 ` [PATCH 6.13 333/414] mm/hugetlb: move hugetlb_sysctl_init() to the __init section Greg Kroah-Hartman
2025-04-17 17:51 ` [PATCH 6.13 334/414] mm/hwpoison: introduce folio_contain_hwpoisoned_page() helper Greg Kroah-Hartman
2025-04-17 17:51 ` [PATCH 6.13 335/414] sctp: detect and prevent references to a freed transport in sendmsg Greg Kroah-Hartman
2025-04-17 17:51 ` [PATCH 6.13 336/414] x86/xen: fix balloon target initialization for PVH dom0 Greg Kroah-Hartman
2025-04-17 17:51 ` [PATCH 6.13 337/414] tracing: fprobe events: Fix possible UAF on modules Greg Kroah-Hartman
2025-04-17 17:51 ` [PATCH 6.13 338/414] tracing: Do not add length to print format in synthetic events Greg Kroah-Hartman
2025-04-17 17:51 ` [PATCH 6.13 339/414] thermal/drivers/rockchip: Add missing rk3328 mapping entry Greg Kroah-Hartman
2025-04-17 17:51 ` [PATCH 6.13 340/414] CIFS: Propagate min offload along with other parameters from primary to secondary channels Greg Kroah-Hartman
2025-04-17 17:51 ` [PATCH 6.13 341/414] cifs: avoid NULL pointer dereference in dbg call Greg Kroah-Hartman
2025-04-17 17:51 ` [PATCH 6.13 342/414] cifs: fix integer overflow in match_server() Greg Kroah-Hartman
2025-04-17 17:51 ` [PATCH 6.13 343/414] cifs: Ensure that all non-client-specific reparse points are processed by the server Greg Kroah-Hartman
2025-04-17 17:51 ` [PATCH 6.13 344/414] clk: renesas: r9a07g043: Fix HP clock source for RZ/Five Greg Kroah-Hartman
2025-04-17 17:51 ` [PATCH 6.13 345/414] clk: qcom: clk-branch: Fix invert halt status bit check for votable clocks Greg Kroah-Hartman
2025-04-17 17:51 ` [PATCH 6.13 346/414] clk: qcom: gdsc: Release pm subdomains in reverse add order Greg Kroah-Hartman
2025-04-17 17:51 ` [PATCH 6.13 347/414] clk: qcom: gdsc: Capture pm_genpd_add_subdomain result code Greg Kroah-Hartman
2025-04-17 17:51 ` [PATCH 6.13 348/414] clk: qcom: gdsc: Set retain_ff before moving to HW CTRL Greg Kroah-Hartman
2025-04-17 17:51 ` [PATCH 6.13 349/414] crypto: ccp - Fix check for the primary ASP device Greg Kroah-Hartman
2025-04-17 17:51 ` [PATCH 6.13 350/414] crypto: ccp - Fix uAPI definitions of PSP errors Greg Kroah-Hartman
2025-04-17 17:51 ` [PATCH 6.13 351/414] dlm: fix error if inactive rsb is not hashed Greg Kroah-Hartman
2025-04-17 17:51 ` [PATCH 6.13 352/414] dlm: fix error if active " Greg Kroah-Hartman
2025-04-17 17:51 ` [PATCH 6.13 353/414] dm-ebs: fix prefetch-vs-suspend race Greg Kroah-Hartman
2025-04-17 17:51 ` [PATCH 6.13 354/414] dm-integrity: set ti->error on memory allocation failure Greg Kroah-Hartman
2025-04-17 17:51 ` [PATCH 6.13 355/414] dm-integrity: fix non-constant-time tag verification Greg Kroah-Hartman
2025-04-17 17:51 ` [PATCH 6.13 356/414] dm-verity: fix prefetch-vs-suspend race Greg Kroah-Hartman
2025-04-17 17:51 ` [PATCH 6.13 357/414] dt-bindings: coresight: qcom,coresight-tpda: Fix too many reg Greg Kroah-Hartman
2025-04-17 17:51 ` [PATCH 6.13 358/414] dt-bindings: coresight: qcom,coresight-tpdm: " Greg Kroah-Hartman
2025-04-17 17:51 ` [PATCH 6.13 359/414] ftrace: Add cond_resched() to ftrace_graph_set_hash() Greg Kroah-Hartman
2025-04-17 17:51 ` [PATCH 6.13 360/414] ftrace: Properly merge notrace hashes Greg Kroah-Hartman
2025-04-17 17:51 ` [PATCH 6.13 361/414] gpio: tegra186: fix resource handling in ACPI probe path Greg Kroah-Hartman
2025-04-17 17:52 ` [PATCH 6.13 362/414] gpio: zynq: Fix wakeup source leaks on device unbind Greg Kroah-Hartman
2025-04-17 17:52 ` [PATCH 6.13 363/414] gve: handle overflow when reporting TX consumed descriptors Greg Kroah-Hartman
2025-04-17 17:52 ` [PATCH 6.13 364/414] KVM: Allow building irqbypass.ko as as module when kvm.ko is a module Greg Kroah-Hartman
2025-04-17 17:52 ` [PATCH 6.13 365/414] KVM: PPC: Enable CAP_SPAPR_TCE_VFIO on pSeries KVM guests Greg Kroah-Hartman
2025-04-17 17:52 ` [PATCH 6.13 366/414] KVM: x86: Explicitly zero-initialize on-stack CPUID unions Greg Kroah-Hartman
2025-04-17 17:52 ` [PATCH 6.13 367/414] KVM: x86: Acquire SRCU in KVM_GET_MP_STATE to protect guest memory accesses Greg Kroah-Hartman
2025-04-17 17:52 ` [PATCH 6.13 368/414] scsi: ufs: qcom: fix dev reference leaked through of_qcom_ice_get Greg Kroah-Hartman
2025-04-17 17:52 ` [PATCH 6.13 369/414] landlock: Move code to ease future backports Greg Kroah-Hartman
2025-04-17 17:52 ` [PATCH 6.13 370/414] landlock: Add the errata interface Greg Kroah-Hartman
2025-04-17 17:52 ` [PATCH 6.13 371/414] landlock: Add erratum for TCP fix Greg Kroah-Hartman
2025-04-17 17:52 ` [PATCH 6.13 372/414] landlock: Always allow signals between threads of the same process Greg Kroah-Hartman
2025-04-17 17:52 ` [PATCH 6.13 373/414] landlock: Prepare to add second errata Greg Kroah-Hartman
2025-04-17 17:52 ` [PATCH 6.13 374/414] selftests/landlock: Split signal_scoping_threads tests Greg Kroah-Hartman
2025-04-17 17:52 ` [PATCH 6.13 375/414] selftests/landlock: Add a new test for setuid() Greg Kroah-Hartman
2025-04-17 17:52 ` [PATCH 6.13 376/414] misc: pci_endpoint_test: Fix displaying irq_type after request_irq error Greg Kroah-Hartman
2025-04-17 17:52 ` [PATCH 6.13 377/414] net: mana: Switch to page pool for jumbo frames Greg Kroah-Hartman
2025-04-17 17:52 ` [PATCH 6.13 378/414] ntb: use 64-bit arithmetic for the MSI doorbell mask Greg Kroah-Hartman
2025-04-17 17:52 ` [PATCH 6.13 379/414] of/irq: Fix device node refcount leakage in API of_irq_parse_one() Greg Kroah-Hartman
2025-04-17 17:52 ` [PATCH 6.13 380/414] of/irq: Fix device node refcount leakage in API of_irq_parse_raw() Greg Kroah-Hartman
2025-04-17 17:52 ` [PATCH 6.13 381/414] of/irq: Fix device node refcount leakages in of_irq_count() Greg Kroah-Hartman
2025-04-17 17:52 ` [PATCH 6.13 382/414] of/irq: Fix device node refcount leakage in API irq_of_parse_and_map() Greg Kroah-Hartman
2025-04-17 17:52 ` [PATCH 6.13 383/414] of/irq: Fix device node refcount leakages in of_irq_init() Greg Kroah-Hartman
2025-04-17 17:52 ` [PATCH 6.13 384/414] PCI: brcmstb: Fix missing of_node_put() in brcm_pcie_probe() Greg Kroah-Hartman
2025-04-17 17:52 ` [PATCH 6.13 385/414] PCI: j721e: Fix the value of .linkdown_irq_regfield for J784S4 Greg Kroah-Hartman
2025-04-17 17:52 ` [PATCH 6.13 386/414] PCI: pciehp: Avoid unnecessary device replacement check Greg Kroah-Hartman
2025-04-17 17:52 ` [PATCH 6.13 387/414] PCI: Fix reference leak in pci_alloc_child_bus() Greg Kroah-Hartman
2025-04-17 17:52 ` [PATCH 6.13 388/414] PCI: Fix reference leak in pci_register_host_bridge() Greg Kroah-Hartman
2025-04-17 17:52 ` [PATCH 6.13 389/414] PCI: Fix wrong length of devres array Greg Kroah-Hartman
2025-04-17 17:52 ` [PATCH 6.13 390/414] phy: freescale: imx8m-pcie: assert phy reset and perst in power off Greg Kroah-Hartman
2025-04-17 17:52 ` [PATCH 6.13 391/414] pinctrl: qcom: Clear latched interrupt status when changing IRQ type Greg Kroah-Hartman
2025-04-17 17:52 ` [PATCH 6.13 392/414] pinctrl: samsung: add support for eint_fltcon_offset Greg Kroah-Hartman
2025-04-17 17:52 ` [PATCH 6.13 393/414] ring-buffer: Use flush_kernel_vmap_range() over flush_dcache_folio() Greg Kroah-Hartman
2025-04-17 17:52 ` [PATCH 6.13 394/414] s390/pci: Fix zpci_bus_is_isolated_vf() for non-VFs Greg Kroah-Hartman
2025-04-17 17:52 ` [PATCH 6.13 395/414] s390/virtio_ccw: Dont allocate/assign airqs for non-existing queues Greg Kroah-Hartman
2025-04-17 17:52 ` [PATCH 6.13 396/414] s390: Fix linker error when -no-pie option is unavailable Greg Kroah-Hartman
2025-04-17 17:52 ` [PATCH 6.13 397/414] sched_ext: create_dsq: Return -EEXIST on duplicate request Greg Kroah-Hartman
2025-04-17 17:52 ` [PATCH 6.13 398/414] selftests: mptcp: close fd_in before returning in main_loop Greg Kroah-Hartman
2025-04-17 17:52 ` [PATCH 6.13 399/414] selftests: mptcp: fix incorrect fd checks " Greg Kroah-Hartman
2025-04-17 17:52 ` [PATCH 6.13 400/414] spi: fsl-qspi: use devm function instead of driver remove Greg Kroah-Hartman
2025-04-17 17:52 ` [PATCH 6.13 401/414] spi: fsl-qspi: Fix double cleanup in probe error path Greg Kroah-Hartman
2025-04-17 17:52 ` [PATCH 6.13 402/414] thermal/drivers/mediatek/lvts: Disable monitor mode during suspend Greg Kroah-Hartman
2025-04-17 17:52 ` [PATCH 6.13 403/414] thermal/drivers/mediatek/lvts: Disable Stage 3 thermal threshold Greg Kroah-Hartman
2025-04-17 17:52 ` [PATCH 6.13 404/414] arm64: errata: Add newer ARM cores to the spectre_bhb_loop_affected() lists Greg Kroah-Hartman
2025-04-17 17:52 ` [PATCH 6.13 405/414] iommufd: Make attach_handle generic than fault specific Greg Kroah-Hartman
2025-04-17 17:52 ` [PATCH 6.13 406/414] iommufd: Fail replace if device has not been attached Greg Kroah-Hartman
2025-04-17 17:52 ` [PATCH 6.13 407/414] x86/paravirt: Move halt paravirt calls under CONFIG_PARAVIRT Greg Kroah-Hartman
2025-04-17 17:52 ` [PATCH 6.13 408/414] ACPI: platform-profile: Fix CFI violation when accessing sysfs files Greg Kroah-Hartman
2025-04-17 17:52 ` [PATCH 6.13 409/414] NFSD: fix decoding in nfs4_xdr_dec_cb_getattr Greg Kroah-Hartman
2025-04-17 17:52 ` [PATCH 6.13 410/414] NFSD: Fix CB_GETATTR status fix Greg Kroah-Hartman
2025-04-17 17:52 ` [PATCH 6.13 411/414] nfsd: dont ignore the return code of svc_proc_register() Greg Kroah-Hartman
2025-04-17 17:52 ` [PATCH 6.13 412/414] x86/e820: Fix handling of subpage regions when calculating nosave ranges in e820__register_nosave_regions() Greg Kroah-Hartman
2025-04-17 17:52 ` [PATCH 6.13 413/414] Bluetooth: hci_uart: Fix another race during initialization Greg Kroah-Hartman
2025-04-17 17:52 ` [PATCH 6.13 414/414] s390/cpumf: Fix double free on error in cpumf_pmu_event_init() Greg Kroah-Hartman
2025-04-17 19:35 ` [PATCH 6.13 000/414] 6.13.12-rc1 review Florian Fainelli
2025-04-17 23:47 ` Peter Schneider
2025-04-18  8:39 ` Naresh Kamboju
2025-04-24  9:44   ` Christian Eggers
2025-04-24 10:17     ` Naresh Kamboju

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=20250417175119.808382415@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=hverkuil@xs4all.nl \
    --cc=jkeeping@inmusicbrands.com \
    --cc=m.tretter@pengutronix.de \
    --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).