public inbox for stable@vger.kernel.org
 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, Tom Lendacky <thomas.lendacky@amd.com>,
	Herbert Xu <herbert@gondor.apana.org.au>
Subject: [PATCH 6.6 208/393] crypto: ccp - Fix check for the primary ASP device
Date: Wed, 23 Apr 2025 16:41:44 +0200	[thread overview]
Message-ID: <20250423142651.977297413@linuxfoundation.org> (raw)
In-Reply-To: <20250423142643.246005366@linuxfoundation.org>

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

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

From: Tom Lendacky <thomas.lendacky@amd.com>

commit 07bb097b92b987db518e72525b515d77904e966e upstream.

Currently, the ASP primary device check does not have support for PCI
domains, and, as a result, when the system is configured with PCI domains
(PCI segments) the wrong device can be selected as primary. This results
in commands submitted to the device timing out and failing. The device
check also relies on specific device and function assignments that may
not hold in the future.

Fix the primary ASP device check to include support for PCI domains and
to perform proper checking of the Bus/Device/Function positions.

Fixes: 2a6170dfe755 ("crypto: ccp: Add Platform Security Processor (PSP) device support")
Cc: stable@vger.kernel.org
Signed-off-by: Tom Lendacky <thomas.lendacky@amd.com>
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
 drivers/crypto/ccp/sp-pci.c |   15 +++++++++------
 1 file changed, 9 insertions(+), 6 deletions(-)

--- a/drivers/crypto/ccp/sp-pci.c
+++ b/drivers/crypto/ccp/sp-pci.c
@@ -243,14 +243,17 @@ static bool sp_pci_is_master(struct sp_d
 	pdev_new = to_pci_dev(dev_new);
 	pdev_cur = to_pci_dev(dev_cur);
 
-	if (pdev_new->bus->number < pdev_cur->bus->number)
-		return true;
+	if (pci_domain_nr(pdev_new->bus) != pci_domain_nr(pdev_cur->bus))
+		return pci_domain_nr(pdev_new->bus) < pci_domain_nr(pdev_cur->bus);
 
-	if (PCI_SLOT(pdev_new->devfn) < PCI_SLOT(pdev_cur->devfn))
-		return true;
+	if (pdev_new->bus->number != pdev_cur->bus->number)
+		return pdev_new->bus->number < pdev_cur->bus->number;
 
-	if (PCI_FUNC(pdev_new->devfn) < PCI_FUNC(pdev_cur->devfn))
-		return true;
+	if (PCI_SLOT(pdev_new->devfn) != PCI_SLOT(pdev_cur->devfn))
+		return PCI_SLOT(pdev_new->devfn) < PCI_SLOT(pdev_cur->devfn);
+
+	if (PCI_FUNC(pdev_new->devfn) != PCI_FUNC(pdev_cur->devfn))
+		return PCI_FUNC(pdev_new->devfn) < PCI_FUNC(pdev_cur->devfn);
 
 	return false;
 }



  parent reply	other threads:[~2025-04-23 15:21 UTC|newest]

Thread overview: 401+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-04-23 14:38 [PATCH 6.6 000/393] 6.6.88-rc1 review Greg Kroah-Hartman
2025-04-23 14:38 ` [PATCH 6.6 001/393] selftests/futex: futex_waitv wouldblock test should fail Greg Kroah-Hartman
2025-04-23 14:38 ` [PATCH 6.6 002/393] drm/i915/mocs: use to_gt() instead of direct &i915->gt Greg Kroah-Hartman
2025-04-23 14:38 ` [PATCH 6.6 003/393] drm/i915/xelpg: Extend driver code of Xe_LPG to Xe_LPG+ Greg Kroah-Hartman
2025-04-23 14:38 ` [PATCH 6.6 004/393] drm/i915/dg2: wait for HuC load completion before running selftests Greg Kroah-Hartman
2025-04-23 14:38 ` [PATCH 6.6 005/393] drm/i915: Disable RPG during live selftest Greg Kroah-Hartman
2025-04-23 14:38 ` [PATCH 6.6 006/393] ata: pata_pxa: Fix potential NULL pointer dereference in pxa_ata_probe() Greg Kroah-Hartman
2025-04-23 14:38 ` [PATCH 6.6 007/393] objtool: Fix INSN_CONTEXT_SWITCH handling in validate_unret() Greg Kroah-Hartman
2025-04-23 14:38 ` [PATCH 6.6 008/393] tipc: fix memory leak in tipc_link_xmit Greg Kroah-Hartman
2025-04-23 14:38 ` [PATCH 6.6 009/393] codel: remove sch->q.qlen check before qdisc_tree_reduce_backlog() Greg Kroah-Hartman
2025-04-23 14:38 ` [PATCH 6.6 010/393] net: tls: explicitly disallow disconnect Greg Kroah-Hartman
2025-04-23 14:38 ` [PATCH 6.6 011/393] octeontx2-pf: qos: fix VF root node parent queue index Greg Kroah-Hartman
2025-04-23 14:38 ` [PATCH 6.6 012/393] rtnl: add helper to check if rtnl group has listeners Greg Kroah-Hartman
2025-04-23 14:38 ` [PATCH 6.6 013/393] rtnl: add helper to check if a notification is needed Greg Kroah-Hartman
2025-04-23 14:38 ` [PATCH 6.6 014/393] net/sched: cls_api: conditional notification of events Greg Kroah-Hartman
2025-04-23 14:38 ` [PATCH 6.6 015/393] tc: Ensure we have enough buffer space when sending filter netlink notifications Greg Kroah-Hartman
2025-04-23 14:38 ` [PATCH 6.6 016/393] net: ethtool: Dont call .cleanup_data when prepare_data fails Greg Kroah-Hartman
2025-04-23 14:38 ` [PATCH 6.6 017/393] drm/tests: modeset: Fix drm_display_mode memory leak Greg Kroah-Hartman
2025-04-23 14:38 ` [PATCH 6.6 018/393] drm/tests: helpers: Add atomic helpers Greg Kroah-Hartman
2025-04-23 14:38 ` [PATCH 6.6 019/393] drm/tests: Add helper to create mock plane Greg Kroah-Hartman
2025-04-23 14:38 ` [PATCH 6.6 020/393] drm/tests: Add helper to create mock crtc Greg Kroah-Hartman
2025-04-23 14:38 ` [PATCH 6.6 021/393] drm/tests: helpers: Add helper for drm_display_mode_from_cea_vic() Greg Kroah-Hartman
2025-04-23 14:38 ` [PATCH 6.6 022/393] drm/tests: helpers: Fix compiler warning Greg Kroah-Hartman
2025-04-23 14:38 ` [PATCH 6.6 023/393] drm/tests: helpers: Create kunit helper to destroy a drm_display_mode Greg Kroah-Hartman
2025-04-23 14:38 ` [PATCH 6.6 024/393] drm/tests: cmdline: Fix drm_display_mode memory leak Greg Kroah-Hartman
2025-04-23 14:38 ` [PATCH 6.6 025/393] drm/tests: modes: " Greg Kroah-Hartman
2025-04-23 14:38 ` [PATCH 6.6 026/393] drm/tests: probe-helper: " Greg Kroah-Hartman
2025-04-23 14:38 ` [PATCH 6.6 027/393] net: libwx: handle page_pool_dev_alloc_pages error Greg Kroah-Hartman
2025-04-23 14:38 ` [PATCH 6.6 028/393] ata: sata_sx4: Add error handling in pdc20621_i2c_read() Greg Kroah-Hartman
2025-04-23 14:38 ` [PATCH 6.6 029/393] drm/i915/huc: Fix fence not released on early probe errors Greg Kroah-Hartman
2025-04-23 14:38 ` [PATCH 6.6 030/393] nvmet-fcloop: swap list_add_tail arguments Greg Kroah-Hartman
2025-04-23 14:38 ` [PATCH 6.6 031/393] net_sched: sch_sfq: use a temporary work area for validating configuration Greg Kroah-Hartman
2025-04-23 14:38 ` [PATCH 6.6 032/393] net_sched: sch_sfq: move the limit validation Greg Kroah-Hartman
2025-04-23 14:38 ` [PATCH 6.6 033/393] ipv6: Align behavior across nexthops during path selection Greg Kroah-Hartman
2025-04-23 14:38 ` [PATCH 6.6 034/393] net: ppp: Add bound checking for skb data on ppp_sync_txmung Greg Kroah-Hartman
2025-04-23 14:38 ` [PATCH 6.6 035/393] nft_set_pipapo: fix incorrect avx2 match of 5th field octet Greg Kroah-Hartman
2025-04-23 14:38 ` [PATCH 6.6 036/393] iommu/mediatek: Fix NULL pointer deference in mtk_iommu_device_group Greg Kroah-Hartman
2025-04-23 14:38 ` [PATCH 6.6 037/393] fs: consistently deref the files table with rcu_dereference_raw() Greg Kroah-Hartman
2025-04-23 14:38 ` [PATCH 6.6 038/393] umount: Allow superblock owners to force umount Greg Kroah-Hartman
2025-04-23 14:38 ` [PATCH 6.6 039/393] pm: cpupower: bench: Prevent NULL dereference on malloc failure Greg Kroah-Hartman
2025-04-23 14:38 ` [PATCH 6.6 040/393] x86/mm: Clear _PAGE_DIRTY for kernel mappings when we clear _PAGE_RW Greg Kroah-Hartman
2025-04-23 14:38 ` [PATCH 6.6 041/393] x86/ia32: Leave NULL selector values 0~3 unchanged Greg Kroah-Hartman
2025-04-23 14:38 ` [PATCH 6.6 042/393] 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-23 14:38 ` [PATCH 6.6 043/393] perf: arm_pmu: Dont disable counter in armpmu_add() Greg Kroah-Hartman
2025-04-23 14:39 ` [PATCH 6.6 044/393] arm64: cputype: Add QCOM_CPU_PART_KRYO_3XX_GOLD Greg Kroah-Hartman
2025-04-23 14:39 ` [PATCH 6.6 045/393] xen/mcelog: Add __nonstring annotations for unterminated strings Greg Kroah-Hartman
2025-04-23 14:39 ` [PATCH 6.6 046/393] zstd: Increase DYNAMIC_BMI2 GCC version cutoff from 4.8 to 11.0 to work around compiler segfault Greg Kroah-Hartman
2025-04-23 14:39 ` [PATCH 6.6 047/393] ASoC: SOF: topology: Use krealloc_array() to replace krealloc() Greg Kroah-Hartman
2025-04-23 14:39 ` [PATCH 6.6 048/393] HID: pidff: Convert infinite length from Linux API to PID standard Greg Kroah-Hartman
2025-04-23 14:39 ` [PATCH 6.6 049/393] HID: pidff: Do not send effect envelope if its empty Greg Kroah-Hartman
2025-04-23 14:39 ` [PATCH 6.6 050/393] HID: pidff: Add MISSING_DELAY quirk and its detection Greg Kroah-Hartman
2025-04-23 14:39 ` [PATCH 6.6 051/393] HID: pidff: Add MISSING_PBO " Greg Kroah-Hartman
2025-04-23 14:39 ` [PATCH 6.6 052/393] HID: pidff: Add PERMISSIVE_CONTROL quirk Greg Kroah-Hartman
2025-04-23 14:39 ` [PATCH 6.6 053/393] HID: pidff: Add hid_pidff_init_with_quirks and export as GPL symbol Greg Kroah-Hartman
2025-04-23 14:39 ` [PATCH 6.6 054/393] HID: pidff: Add FIX_WHEEL_DIRECTION quirk Greg Kroah-Hartman
2025-04-23 14:39 ` [PATCH 6.6 055/393] HID: Add hid-universal-pidff driver and supported device ids Greg Kroah-Hartman
2025-04-23 14:39 ` [PATCH 6.6 056/393] HID: pidff: Add PERIODIC_SINE_ONLY quirk Greg Kroah-Hartman
2025-04-23 14:39 ` [PATCH 6.6 057/393] HID: pidff: Fix null pointer dereference in pidff_find_fields Greg Kroah-Hartman
2025-04-23 14:39 ` [PATCH 6.6 058/393] ALSA: hda: intel: Fix Optimus when GPU has no sound Greg Kroah-Hartman
2025-04-23 14:39 ` [PATCH 6.6 059/393] ALSA: hda: intel: Add Lenovo IdeaPad Z570 to probe denylist Greg Kroah-Hartman
2025-04-23 14:39 ` [PATCH 6.6 060/393] ASoC: fsl_audmix: register card device depends on dais property Greg Kroah-Hartman
2025-04-23 14:39 ` [PATCH 6.6 061/393] media: uvcvideo: Add quirk for Actions UVC05 Greg Kroah-Hartman
2025-04-23 14:39 ` [PATCH 6.6 062/393] mmc: dw_mmc: add a quirk for accessing 64-bit FIFOs in two halves Greg Kroah-Hartman
2025-04-23 14:39 ` [PATCH 6.6 063/393] ALSA: usb-audio: Fix CME quirk for UF series keyboards Greg Kroah-Hartman
2025-04-23 14:39 ` [PATCH 6.6 064/393] ASoC: amd: Add DMI quirk for ACP6X mic support Greg Kroah-Hartman
2025-04-23 14:39 ` [PATCH 6.6 065/393] ASoC: amd: yc: update quirk data for new Lenovo model Greg Kroah-Hartman
2025-04-23 14:39 ` [PATCH 6.6 066/393] wifi: ath12k: Fix invalid entry fetch in ath12k_dp_mon_srng_process Greg Kroah-Hartman
2025-04-23 14:39 ` [PATCH 6.6 067/393] f2fs: dont retry IO for corrupted data scenario Greg Kroah-Hartman
2025-04-23 14:39 ` [PATCH 6.6 068/393] scsi: target: spc: Fix RSOC parameter data header size Greg Kroah-Hartman
2025-04-23 14:39 ` [PATCH 6.6 069/393] net: usb: asix_devices: add FiberGecko DeviceID Greg Kroah-Hartman
2025-04-23 14:39 ` [PATCH 6.6 070/393] page_pool: avoid infinite loop to schedule delayed worker Greg Kroah-Hartman
2025-04-23 14:39 ` [PATCH 6.6 071/393] jfs: Fix uninit-value access of imap allocated in the diMount() function Greg Kroah-Hartman
2025-04-23 14:39 ` [PATCH 6.6 072/393] fs/jfs: cast inactags to s64 to prevent potential overflow Greg Kroah-Hartman
2025-04-23 14:39 ` [PATCH 6.6 073/393] fs/jfs: Prevent integer overflow in AG size calculation Greg Kroah-Hartman
2025-04-23 14:39 ` [PATCH 6.6 074/393] jfs: Prevent copying of nlink with value 0 from disk inode Greg Kroah-Hartman
2025-04-23 14:39 ` [PATCH 6.6 075/393] jfs: add sanity check for agwidth in dbMount Greg Kroah-Hartman
2025-04-23 14:39 ` [PATCH 6.6 076/393] ata: libata-eh: Do not use ATAPI DMA for a device limited to PIO mode Greg Kroah-Hartman
2025-04-23 14:39 ` [PATCH 6.6 077/393] net: sfp: add quirk for 2.5G OEM BX SFP Greg Kroah-Hartman
2025-04-23 14:39 ` [PATCH 6.6 078/393] wifi: ath12k: Fix invalid data access in ath12k_dp_rx_h_undecap_nwifi Greg Kroah-Hartman
2025-04-23 14:39 ` [PATCH 6.6 079/393] f2fs: fix to avoid out-of-bounds access in f2fs_truncate_inode_blocks() Greg Kroah-Hartman
2025-04-23 14:39 ` [PATCH 6.6 080/393] ahci: add PCI ID for Marvell 88SE9215 SATA Controller Greg Kroah-Hartman
2025-04-23 14:39 ` [PATCH 6.6 081/393] ext4: protect ext4_release_dquot against freezing Greg Kroah-Hartman
2025-04-23 14:39 ` [PATCH 6.6 082/393] Revert "f2fs: rebuild nat_bits during umount" Greg Kroah-Hartman
2025-04-23 14:39 ` [PATCH 6.6 083/393] ext4: ignore xattrs past end Greg Kroah-Hartman
2025-04-23 14:39 ` [PATCH 6.6 084/393] cdc_ether|r8152: ThinkPad Hybrid USB-C/A Dock quirk Greg Kroah-Hartman
2025-04-23 14:39 ` [PATCH 6.6 085/393] scsi: st: Fix array overflow in st_setup() Greg Kroah-Hartman
2025-04-23 14:39 ` [PATCH 6.6 086/393] wifi: mt76: mt76x2u: add TP-Link TL-WDN6200 ID to device table Greg Kroah-Hartman
2025-04-23 14:39 ` [PATCH 6.6 087/393] net: vlan: dont propagate flags on open Greg Kroah-Hartman
2025-04-23 14:39 ` [PATCH 6.6 088/393] tracing: fix return value in __ftrace_event_enable_disable for TRACE_REG_UNREGISTER Greg Kroah-Hartman
2025-04-23 14:39 ` [PATCH 6.6 089/393] Bluetooth: hci_uart: fix race during initialization Greg Kroah-Hartman
2025-04-23 14:39 ` [PATCH 6.6 090/393] Bluetooth: qca: simplify WCN399x NVM loading Greg Kroah-Hartman
2025-04-23 14:39 ` [PATCH 6.6 091/393] drm: allow encoder mode_set even when connectors change for crtc Greg Kroah-Hartman
2025-04-23 14:39 ` [PATCH 6.6 092/393] drm/amd/display: Update Cursor request mode to the beginning prefetch always Greg Kroah-Hartman
2025-04-23 14:39 ` [PATCH 6.6 093/393] drm/amd/display: add workaround flag to link to force FFE preset Greg Kroah-Hartman
2025-04-23 14:39 ` [PATCH 6.6 094/393] drm: panel-orientation-quirks: Add support for AYANEO 2S Greg Kroah-Hartman
2025-04-23 14:39 ` [PATCH 6.6 095/393] drm: panel-orientation-quirks: Add quirks for AYA NEO Flip DS and KB Greg Kroah-Hartman
2025-04-23 14:39 ` [PATCH 6.6 096/393] drm: panel-orientation-quirks: Add quirk for AYA NEO Slide Greg Kroah-Hartman
2025-04-23 14:39 ` [PATCH 6.6 097/393] drm: panel-orientation-quirks: Add new quirk for GPD Win 2 Greg Kroah-Hartman
2025-04-23 14:39 ` [PATCH 6.6 098/393] drm: panel-orientation-quirks: Add quirk for OneXPlayer Mini (Intel) Greg Kroah-Hartman
2025-04-23 14:39 ` [PATCH 6.6 099/393] drm/bridge: panel: forbid initializing a panel with unknown connector type Greg Kroah-Hartman
2025-04-23 14:39 ` [PATCH 6.6 100/393] drivers: base: devres: Allow to release group on device release Greg Kroah-Hartman
2025-04-23 14:39 ` [PATCH 6.6 101/393] drm/amdkfd: clamp queue size to minimum Greg Kroah-Hartman
2025-04-23 14:39 ` [PATCH 6.6 102/393] drm/amdkfd: Fix mode1 reset crash issue Greg Kroah-Hartman
2025-04-23 14:39 ` [PATCH 6.6 103/393] drm/amdkfd: Fix pqm_destroy_queue race with GPU reset Greg Kroah-Hartman
2025-04-23 14:40 ` [PATCH 6.6 104/393] drm/amdkfd: debugfs hang_hws skip GPU with MES Greg Kroah-Hartman
2025-04-23 14:40 ` [PATCH 6.6 105/393] drm/mediatek: mtk_dpi: Move the input_2p_en bit to platform data Greg Kroah-Hartman
2025-04-23 14:40 ` [PATCH 6.6 106/393] drm/mediatek: mtk_dpi: Explicitly manage TVD clock in power on/off Greg Kroah-Hartman
2025-04-23 14:40 ` [PATCH 6.6 107/393] drm/amdgpu: handle amdgpu_cgs_create_device() errors in amd_powerplay_create() Greg Kroah-Hartman
2025-04-23 14:40 ` [PATCH 6.6 108/393] PCI: vmd: Make vmd_dev::cfg_lock a raw_spinlock_t type Greg Kroah-Hartman
2025-04-23 14:40 ` [PATCH 6.6 109/393] drm/amdgpu: grab an additional reference on the gang fence v2 Greg Kroah-Hartman
2025-04-23 14:40 ` [PATCH 6.6 110/393] fbdev: omapfb: Add plane value check Greg Kroah-Hartman
2025-04-23 14:40 ` [PATCH 6.6 111/393] tracing: probe-events: Add comments about entry data storing code Greg Kroah-Hartman
2025-04-23 14:40 ` [PATCH 6.6 112/393] ktest: Fix Test Failures Due to Missing LOG_FILE Directories Greg Kroah-Hartman
2025-04-23 14:40 ` [PATCH 6.6 113/393] tpm, tpm_tis: Workaround failed command reception on Infineon devices Greg Kroah-Hartman
2025-04-23 14:40 ` [PATCH 6.6 114/393] pwm: mediatek: Prevent divide-by-zero in pwm_mediatek_config() Greg Kroah-Hartman
2025-04-23 14:40 ` [PATCH 6.6 115/393] pwm: rcar: Improve register calculation Greg Kroah-Hartman
2025-04-23 14:40 ` [PATCH 6.6 116/393] pwm: fsl-ftm: Handle clk_get_rate() returning 0 Greg Kroah-Hartman
2025-04-23 14:40 ` [PATCH 6.6 117/393] bpf: support SKF_NET_OFF and SKF_LL_OFF on skb frags Greg Kroah-Hartman
2025-04-23 14:40 ` [PATCH 6.6 118/393] ext4: dont treat fhandle lookup of ea_inode as FS corruption Greg Kroah-Hartman
2025-04-23 14:40 ` [PATCH 6.6 119/393] dt-bindings: media: st,stmipid02: correct lane-polarities maxItems Greg Kroah-Hartman
2025-04-23 14:40 ` [PATCH 6.6 120/393] media: mediatek: vcodec: Fix a resource leak related to the scp device in FW initialization Greg Kroah-Hartman
2025-04-23 14:40 ` [PATCH 6.6 121/393] media: mtk-vcodec: venc: avoid -Wenum-compare-conditional warning Greg Kroah-Hartman
2025-04-23 14:40 ` [PATCH 6.6 122/393] media: i2c: adv748x: Fix test pattern selection mask Greg Kroah-Hartman
2025-04-23 14:40 ` [PATCH 6.6 123/393] media: venus: hfi: add a check to handle OOB in sfr region Greg Kroah-Hartman
2025-04-23 14:40 ` [PATCH 6.6 124/393] media: venus: hfi: add check to handle incorrect queue size Greg Kroah-Hartman
2025-04-23 14:40 ` [PATCH 6.6 125/393] media: vim2m: print device name after registering device Greg Kroah-Hartman
2025-04-23 14:40 ` [PATCH 6.6 126/393] media: siano: Fix error handling in smsdvb_module_init() Greg Kroah-Hartman
2025-04-23 14:40 ` [PATCH 6.6 127/393] xenfs/xensyms: respect hypervisors "next" indication Greg Kroah-Hartman
2025-04-23 14:40 ` [PATCH 6.6 128/393] arm64: cputype: Add MIDR_CORTEX_A76AE Greg Kroah-Hartman
2025-04-23 14:40 ` [PATCH 6.6 129/393] arm64: errata: Add QCOM_KRYO_4XX_GOLD to the spectre_bhb_k24_list Greg Kroah-Hartman
2025-04-23 14:40 ` [PATCH 6.6 130/393] arm64: errata: Assume that unknown CPUs _are_ vulnerable to Spectre BHB Greg Kroah-Hartman
2025-04-23 14:40 ` [PATCH 6.6 131/393] arm64: errata: Add KRYO 2XX/3XX/4XX silver cores to Spectre BHB safe list Greg Kroah-Hartman
2025-04-23 14:40 ` [PATCH 6.6 132/393] KVM: arm64: Tear down vGIC on failed vCPU creation Greg Kroah-Hartman
2025-04-23 14:40 ` [PATCH 6.6 133/393] spi: cadence-qspi: Fix probe on AM62A LP SK Greg Kroah-Hartman
2025-04-23 14:40 ` [PATCH 6.6 134/393] mtd: rawnand: brcmnand: fix PM resume warning Greg Kroah-Hartman
2025-04-23 14:40 ` [PATCH 6.6 135/393] tpm, tpm_tis: Fix timeout handling when waiting for TPM status Greg Kroah-Hartman
2025-04-23 14:40 ` [PATCH 6.6 136/393] media: streamzap: prevent processing IR data on URB failure Greg Kroah-Hartman
2025-04-23 14:40 ` [PATCH 6.6 137/393] media: visl: Fix ERANGE error when setting enum controls Greg Kroah-Hartman
2025-04-23 14:40 ` [PATCH 6.6 138/393] media: platform: stm32: Add check for clk_enable() Greg Kroah-Hartman
2025-04-23 14:40 ` [PATCH 6.6 139/393] media: v4l2-dv-timings: prevent possible overflow in v4l2_detect_gtf() Greg Kroah-Hartman
2025-04-23 14:40 ` [PATCH 6.6 140/393] media: i2c: ccs: Set the devices runtime PM status correctly in remove Greg Kroah-Hartman
2025-04-23 14:40 ` [PATCH 6.6 141/393] media: i2c: ccs: Set the devices runtime PM status correctly in probe Greg Kroah-Hartman
2025-04-23 14:40 ` [PATCH 6.6 142/393] media: i2c: ov7251: Set enable GPIO low " Greg Kroah-Hartman
2025-04-23 14:40 ` [PATCH 6.6 143/393] media: i2c: ov7251: Introduce 1 ms delay between regulators and en GPIO Greg Kroah-Hartman
2025-04-23 14:40 ` [PATCH 6.6 144/393] media: venus: hfi_parser: add check to avoid out of bound access Greg Kroah-Hartman
2025-04-23 14:40 ` [PATCH 6.6 145/393] media: venus: hfi_parser: refactor hfi packet parsing logic Greg Kroah-Hartman
2025-04-23 14:40 ` [PATCH 6.6 146/393] media: i2c: imx219: Rectify runtime PM handling in probe and remove Greg Kroah-Hartman
2025-04-23 14:40 ` [PATCH 6.6 147/393] mptcp: sockopt: fix getting IPV6_V6ONLY Greg Kroah-Hartman
2025-04-23 14:40 ` [PATCH 6.6 148/393] mtd: Add check for devm_kcalloc() Greg Kroah-Hartman
2025-04-23 14:40 ` [PATCH 6.6 149/393] net: dsa: mv88e6xxx: workaround RGMII transmit delay erratum for 6320 family Greg Kroah-Hartman
2025-04-23 14:40 ` [PATCH 6.6 150/393] mtd: Replace kcalloc() with devm_kcalloc() Greg Kroah-Hartman
2025-04-23 14:40 ` [PATCH 6.6 151/393] clocksource/drivers/stm32-lptimer: Use wakeup capable instead of init wakeup Greg Kroah-Hartman
2025-04-23 14:40 ` [PATCH 6.6 152/393] wifi: mt76: Add check for devm_kstrdup() Greg Kroah-Hartman
2025-04-23 14:40 ` [PATCH 6.6 153/393] wifi: mac80211: fix integer overflow in hwmp_route_info_get() Greg Kroah-Hartman
2025-04-23 14:40 ` [PATCH 6.6 154/393] io_uring/kbuf: reject zero sized provided buffers Greg Kroah-Hartman
2025-04-23 14:40 ` [PATCH 6.6 155/393] ASoC: q6apm: add q6apm_get_hw_pointer helper Greg Kroah-Hartman
2025-04-23 14:40 ` [PATCH 6.6 156/393] ASoC: qdsp6: q6apm-dai: set 10 ms period and buffer alignment Greg Kroah-Hartman
2025-04-23 14:40 ` [PATCH 6.6 157/393] ASoC: qdsp6: q6apm-dai: fix capture pipeline overruns Greg Kroah-Hartman
2025-04-23 14:40 ` [PATCH 6.6 158/393] ASoC: qdsp6: q6asm-dai: fix q6asm_dai_compr_set_params error path Greg Kroah-Hartman
2025-04-23 14:40 ` [PATCH 6.6 159/393] bus: mhi: host: Fix race between unprepare and queue_buf Greg Kroah-Hartman
2025-04-23 14:40 ` [PATCH 6.6 160/393] ext4: fix off-by-one error in do_split Greg Kroah-Hartman
2025-04-23 14:40 ` [PATCH 6.6 161/393] f2fs: fix to avoid atomicity corruption of atomic file Greg Kroah-Hartman
2025-04-23 14:40 ` [PATCH 6.6 162/393] vdpa/mlx5: Fix oversized null mkey longer than 32bit Greg Kroah-Hartman
2025-04-23 14:40 ` [PATCH 6.6 163/393] udf: Fix inode_getblk() return value Greg Kroah-Hartman
2025-04-23 14:41 ` [PATCH 6.6 164/393] tpm: do not start chip while suspended Greg Kroah-Hartman
2025-04-23 14:41 ` [PATCH 6.6 165/393] soc: samsung: exynos-chipid: Add NULL pointer check in exynos_chipid_probe() Greg Kroah-Hartman
2025-04-23 14:41 ` [PATCH 6.6 166/393] smb311 client: fix missing tcon check when mounting with linux/posix extensions Greg Kroah-Hartman
2025-04-23 14:41 ` [PATCH 6.6 167/393] i3c: master: svc: Use readsb helper for reading MDB Greg Kroah-Hartman
2025-04-23 14:41 ` [PATCH 6.6 168/393] i3c: Add NULL pointer check in i3c_master_queue_ibi() Greg Kroah-Hartman
2025-04-23 14:41 ` [PATCH 6.6 169/393] jbd2: remove wrong sb->s_sequence check Greg Kroah-Hartman
2025-04-23 14:41 ` [PATCH 6.6 170/393] leds: rgb: leds-qcom-lpg: Fix pwm resolution max for Hi-Res PWMs Greg Kroah-Hartman
2025-04-23 14:41 ` [PATCH 6.6 171/393] leds: rgb: leds-qcom-lpg: Fix calculation of best period " Greg Kroah-Hartman
2025-04-23 14:41 ` [PATCH 6.6 172/393] mfd: ene-kb3930: Fix a potential NULL pointer dereference Greg Kroah-Hartman
2025-04-23 14:41 ` [PATCH 6.6 173/393] mailbox: tegra-hsp: Define dimensioning masks in SoC data Greg Kroah-Hartman
2025-04-23 14:41 ` [PATCH 6.6 174/393] locking/lockdep: Decrease nr_unused_locks if lock unused in zap_class() Greg Kroah-Hartman
2025-04-23 14:41 ` [PATCH 6.6 175/393] lib: scatterlist: fix sg_split_phys to preserve original scatterlist offsets Greg Kroah-Hartman
2025-04-23 14:41 ` [PATCH 6.6 176/393] mptcp: fix NULL pointer in can_accept_new_subflow Greg Kroah-Hartman
2025-04-23 14:41 ` [PATCH 6.6 177/393] mptcp: only inc MPJoinAckHMacFailure for HMAC failures Greg Kroah-Hartman
2025-04-23 14:41 ` [PATCH 6.6 178/393] mtd: inftlcore: Add error check for inftl_read_oob() Greg Kroah-Hartman
2025-04-23 14:41 ` [PATCH 6.6 179/393] mtd: rawnand: Add status chack in r852_ready() Greg Kroah-Hartman
2025-04-23 14:41 ` [PATCH 6.6 180/393] arm64: mm: Correct the update of max_pfn Greg Kroah-Hartman
2025-04-23 14:41 ` [PATCH 6.6 181/393] arm64: dts: mediatek: mt8173: Fix disp-pwm compatible string Greg Kroah-Hartman
2025-04-23 14:41 ` [PATCH 6.6 182/393] backlight: led_bl: Hold led_access lock when calling led_sysfs_disable() Greg Kroah-Hartman
2025-04-23 14:41 ` [PATCH 6.6 183/393] btrfs: fix non-empty delayed iputs list on unmount due to compressed write workers Greg Kroah-Hartman
2025-04-23 14:41 ` [PATCH 6.6 184/393] btrfs: zoned: fix zone activation with missing devices Greg Kroah-Hartman
2025-04-23 14:41 ` [PATCH 6.6 185/393] btrfs: zoned: fix zone finishing " Greg Kroah-Hartman
2025-04-23 14:41 ` [PATCH 6.6 186/393] iommufd: Fix uninitialized rc in iommufd_access_rw() Greg Kroah-Hartman
2025-04-23 14:41 ` [PATCH 6.6 187/393] sparc/mm: disable preemption in lazy mmu mode Greg Kroah-Hartman
2025-04-23 14:41 ` [PATCH 6.6 188/393] sparc/mm: avoid calling arch_enter/leave_lazy_mmu() in set_ptes Greg Kroah-Hartman
2025-04-23 14:41 ` [PATCH 6.6 189/393] mm/rmap: reject hugetlb folios in folio_make_device_exclusive() Greg Kroah-Hartman
2025-04-23 14:41 ` [PATCH 6.6 190/393] mm: make page_mapped_in_vma() hugetlb walk aware Greg Kroah-Hartman
2025-04-23 14:41 ` [PATCH 6.6 191/393] mm: fix lazy mmu docs and usage Greg Kroah-Hartman
2025-04-23 14:41 ` [PATCH 6.6 192/393] mm/mremap: correctly handle partial mremap() of VMA starting at 0 Greg Kroah-Hartman
2025-04-23 14:41 ` [PATCH 6.6 193/393] mm: add missing release barrier on PGDAT_RECLAIM_LOCKED unlock Greg Kroah-Hartman
2025-04-23 14:41 ` [PATCH 6.6 194/393] mm/userfaultfd: fix release hang over concurrent GUP Greg Kroah-Hartman
2025-04-23 14:41 ` [PATCH 6.6 195/393] mm/hwpoison: do not send SIGBUS to processes with recovered clean pages Greg Kroah-Hartman
2025-04-23 14:41 ` [PATCH 6.6 196/393] mm/hugetlb: move hugetlb_sysctl_init() to the __init section Greg Kroah-Hartman
2025-04-23 14:41 ` [PATCH 6.6 197/393] sctp: detect and prevent references to a freed transport in sendmsg Greg Kroah-Hartman
2025-04-23 14:41 ` [PATCH 6.6 198/393] x86/xen: fix balloon target initialization for PVH dom0 Greg Kroah-Hartman
2025-04-23 14:41 ` [PATCH 6.6 199/393] tracing: Do not add length to print format in synthetic events Greg Kroah-Hartman
2025-04-23 14:41 ` [PATCH 6.6 200/393] thermal/drivers/rockchip: Add missing rk3328 mapping entry Greg Kroah-Hartman
2025-04-23 14:41 ` [PATCH 6.6 201/393] cifs: avoid NULL pointer dereference in dbg call Greg Kroah-Hartman
2025-04-23 14:41 ` [PATCH 6.6 202/393] cifs: fix integer overflow in match_server() Greg Kroah-Hartman
2025-04-23 14:41 ` [PATCH 6.6 203/393] cifs: Ensure that all non-client-specific reparse points are processed by the server Greg Kroah-Hartman
2025-04-23 14:41 ` [PATCH 6.6 204/393] clk: qcom: clk-branch: Fix invert halt status bit check for votable clocks Greg Kroah-Hartman
2025-04-23 14:41 ` [PATCH 6.6 205/393] clk: qcom: gdsc: Release pm subdomains in reverse add order Greg Kroah-Hartman
2025-04-23 14:41 ` [PATCH 6.6 206/393] clk: qcom: gdsc: Capture pm_genpd_add_subdomain result code Greg Kroah-Hartman
2025-04-23 14:41 ` [PATCH 6.6 207/393] clk: qcom: gdsc: Set retain_ff before moving to HW CTRL Greg Kroah-Hartman
2025-04-23 14:41 ` Greg Kroah-Hartman [this message]
2025-04-23 14:41 ` [PATCH 6.6 209/393] dm-ebs: fix prefetch-vs-suspend race Greg Kroah-Hartman
2025-04-23 14:41 ` [PATCH 6.6 210/393] dm-integrity: set ti->error on memory allocation failure Greg Kroah-Hartman
2025-04-23 14:41 ` [PATCH 6.6 211/393] dm-verity: fix prefetch-vs-suspend race Greg Kroah-Hartman
2025-04-23 14:41 ` [PATCH 6.6 212/393] dt-bindings: coresight: qcom,coresight-tpda: Fix too many reg Greg Kroah-Hartman
2025-04-23 14:41 ` [PATCH 6.6 213/393] dt-bindings: coresight: qcom,coresight-tpdm: " Greg Kroah-Hartman
2025-04-23 14:41 ` [PATCH 6.6 215/393] gpio: tegra186: fix resource handling in ACPI probe path Greg Kroah-Hartman
2025-04-23 14:41 ` [PATCH 6.6 216/393] gpio: zynq: Fix wakeup source leaks on device unbind Greg Kroah-Hartman
2025-04-23 14:41 ` [PATCH 6.6 217/393] gve: handle overflow when reporting TX consumed descriptors Greg Kroah-Hartman
2025-04-23 14:41 ` [PATCH 6.6 218/393] KVM: x86: Explicitly zero-initialize on-stack CPUID unions Greg Kroah-Hartman
2025-04-23 14:41 ` [PATCH 6.6 219/393] KVM: x86: Acquire SRCU in KVM_GET_MP_STATE to protect guest memory accesses Greg Kroah-Hartman
2025-04-23 14:41 ` [PATCH 6.6 220/393] ntb: use 64-bit arithmetic for the MSI doorbell mask Greg Kroah-Hartman
2025-04-23 14:41 ` [PATCH 6.6 221/393] of/irq: Fix device node refcount leakage in API of_irq_parse_one() Greg Kroah-Hartman
2025-04-23 14:41 ` [PATCH 6.6 222/393] of/irq: Fix device node refcount leakage in API of_irq_parse_raw() Greg Kroah-Hartman
2025-04-23 14:41 ` [PATCH 6.6 223/393] of/irq: Fix device node refcount leakages in of_irq_count() Greg Kroah-Hartman
2025-04-23 14:42 ` [PATCH 6.6 224/393] of/irq: Fix device node refcount leakage in API irq_of_parse_and_map() Greg Kroah-Hartman
2025-04-23 14:42 ` [PATCH 6.6 225/393] of/irq: Fix device node refcount leakages in of_irq_init() Greg Kroah-Hartman
2025-04-23 14:42 ` [PATCH 6.6 226/393] PCI: brcmstb: Fix missing of_node_put() in brcm_pcie_probe() Greg Kroah-Hartman
2025-04-23 14:42 ` [PATCH 6.6 227/393] PCI: Fix reference leak in pci_alloc_child_bus() Greg Kroah-Hartman
2025-04-23 14:42 ` [PATCH 6.6 228/393] phy: freescale: imx8m-pcie: assert phy reset and perst in power off Greg Kroah-Hartman
2025-04-23 14:42 ` [PATCH 6.6 229/393] pinctrl: qcom: Clear latched interrupt status when changing IRQ type Greg Kroah-Hartman
2025-04-23 14:42 ` [PATCH 6.6 230/393] selftests: mptcp: close fd_in before returning in main_loop Greg Kroah-Hartman
2025-04-23 14:42 ` [PATCH 6.6 231/393] selftests: mptcp: fix incorrect fd checks " Greg Kroah-Hartman
2025-04-23 14:42 ` [PATCH 6.6 232/393] arm64: errata: Add newer ARM cores to the spectre_bhb_loop_affected() lists Greg Kroah-Hartman
2025-04-23 14:42 ` [PATCH 6.6 233/393] x86/paravirt: Move halt paravirt calls under CONFIG_PARAVIRT Greg Kroah-Hartman
2025-04-23 14:42 ` [PATCH 6.6 234/393] ACPI: platform-profile: Fix CFI violation when accessing sysfs files Greg Kroah-Hartman
2025-04-23 14:42 ` [PATCH 6.6 235/393] iommufd: Fail replace if device has not been attached Greg Kroah-Hartman
2025-04-23 14:42 ` [PATCH 6.6 236/393] x86/e820: Fix handling of subpage regions when calculating nosave ranges in e820__register_nosave_regions() Greg Kroah-Hartman
2025-04-23 14:42 ` [PATCH 6.6 237/393] media: mediatek: vcodec: mark vdec_vp9_slice_map_counts_eob_coef noinline Greg Kroah-Hartman
2025-04-23 14:42 ` [PATCH 6.6 238/393] Bluetooth: hci_uart: Fix another race during initialization Greg Kroah-Hartman
2025-04-23 14:42 ` [PATCH 6.6 239/393] HSI: ssi_protocol: Fix use after free vulnerability in ssi_protocol Driver Due to Race Condition Greg Kroah-Hartman
2025-04-23 14:42 ` [PATCH 6.6 240/393] scsi: hisi_sas: Enable force phy when SATA disk directly connected Greg Kroah-Hartman
2025-04-23 14:42 ` [PATCH 6.6 241/393] wifi: at76c50x: fix use after free access in at76_disconnect Greg Kroah-Hartman
2025-04-23 14:42 ` [PATCH 6.6 242/393] wifi: mac80211: Update skbs control block key in ieee80211_tx_dequeue() Greg Kroah-Hartman
2025-04-23 14:42 ` [PATCH 6.6 243/393] wifi: mac80211: Purge vif txq in ieee80211_do_stop() Greg Kroah-Hartman
2025-04-23 14:42 ` [PATCH 6.6 244/393] wifi: wl1251: fix memory leak in wl1251_tx_work Greg Kroah-Hartman
2025-04-23 14:42 ` [PATCH 6.6 245/393] scsi: iscsi: Fix missing scsi_host_put() in error path Greg Kroah-Hartman
2025-04-23 14:42 ` [PATCH 6.6 246/393] md/raid10: fix missing discard IO accounting Greg Kroah-Hartman
2025-04-23 14:42 ` [PATCH 6.6 247/393] md/md-bitmap: fix stats collection for external bitmaps Greg Kroah-Hartman
2025-04-23 14:42 ` [PATCH 6.6 248/393] ASoC: dwc: always enable/disable i2s irqs Greg Kroah-Hartman
2025-04-23 14:42 ` [PATCH 6.6 249/393] ASoC: Intel: avs: Fix null-ptr-deref in avs_component_probe() Greg Kroah-Hartman
2025-04-23 14:42 ` [PATCH 6.6 250/393] ovl: remove unused forward declaration Greg Kroah-Hartman
2025-04-23 14:42 ` [PATCH 6.6 251/393] RDMA/usnic: Fix passing zero to PTR_ERR in usnic_ib_pci_probe() Greg Kroah-Hartman
2025-04-23 14:42 ` [PATCH 6.6 252/393] RDMA/hns: Fix wrong maximum DMA segment size Greg Kroah-Hartman
2025-04-23 14:42 ` [PATCH 6.6 253/393] ASoC: cs42l43: Reset clamp override on jack removal Greg Kroah-Hartman
2025-04-23 14:42 ` [PATCH 6.6 254/393] RDMA/core: Silence oversized kvmalloc() warning Greg Kroah-Hartman
2025-04-23 14:42 ` [PATCH 6.6 255/393] Bluetooth: hci_event: Fix sending MGMT_EV_DEVICE_FOUND for invalid address Greg Kroah-Hartman
2025-04-23 14:42 ` [PATCH 6.6 256/393] Bluetooth: btrtl: Prevent potential NULL dereference Greg Kroah-Hartman
2025-04-23 14:42 ` [PATCH 6.6 257/393] Bluetooth: l2cap: Check encryption key size on incoming connection Greg Kroah-Hartman
2025-04-23 14:42 ` [PATCH 6.6 258/393] Revert "wifi: mac80211: Update skbs control block key in ieee80211_tx_dequeue()" Greg Kroah-Hartman
2025-04-23 14:42 ` [PATCH 6.6 259/393] igc: fix PTM cycle trigger logic Greg Kroah-Hartman
2025-04-23 14:42 ` [PATCH 6.6 260/393] igc: increase wait time before retrying PTM Greg Kroah-Hartman
2025-04-23 14:42 ` [PATCH 6.6 261/393] igc: move ktime snapshot into PTM retry loop Greg Kroah-Hartman
2025-04-23 14:42 ` [PATCH 6.6 262/393] igc: handle the IGC_PTP_ENABLED flag correctly Greg Kroah-Hartman
2025-04-23 14:42 ` [PATCH 6.6 263/393] igc: cleanup PTP module if probe fails Greg Kroah-Hartman
2025-04-23 14:42 ` [PATCH 6.6 264/393] igc: add lock preventing multiple simultaneous PTM transactions Greg Kroah-Hartman
2025-04-23 14:42 ` [PATCH 6.6 265/393] test suite: use %zu to print size_t Greg Kroah-Hartman
2025-04-23 14:42 ` [PATCH 6.6 266/393] pds_core: fix memory leak in pdsc_debugfs_add_qcq() Greg Kroah-Hartman
2025-04-23 14:42 ` [PATCH 6.6 267/393] net: mctp: Set SOCK_RCU_FREE Greg Kroah-Hartman
2025-04-23 14:42 ` [PATCH 6.6 268/393] block: fix resource leak in blk_register_queue() error path Greg Kroah-Hartman
2025-04-23 14:42 ` [PATCH 6.6 269/393] net: openvswitch: fix nested key length validation in the set() action Greg Kroah-Hartman
2025-04-23 14:42 ` [PATCH 6.6 270/393] net: ngbe: fix memory leak in ngbe_probe() error path Greg Kroah-Hartman
2025-04-23 14:42 ` [PATCH 6.6 271/393] net: ethernet: ti: am65-cpsw-nuss: rename phy_node -> port_np Greg Kroah-Hartman
2025-04-23 14:42 ` [PATCH 6.6 272/393] net: ethernet: ti: am65-cpsw: fix port_np reference counting Greg Kroah-Hartman
2025-04-23 14:42 ` [PATCH 6.6 273/393] ata: libata-sata: Save all fields from sense data descriptor Greg Kroah-Hartman
2025-04-23 14:42 ` [PATCH 6.6 274/393] cxgb4: fix memory leak in cxgb4_init_ethtool_filters() error path Greg Kroah-Hartman
2025-04-23 14:42 ` [PATCH 6.6 275/393] tools: ynl-gen: track attribute use Greg Kroah-Hartman
2025-04-23 14:42 ` [PATCH 6.6 276/393] tools: ynl-gen: record information about recursive nests Greg Kroah-Hartman
2025-04-23 14:42 ` [PATCH 6.6 277/393] tools: ynl-gen: re-sort ignoring " Greg Kroah-Hartman
2025-04-23 14:42 ` [PATCH 6.6 278/393] tools: ynl-gen: store recursive nests by a pointer Greg Kroah-Hartman
2025-04-23 14:42 ` [PATCH 6.6 279/393] tools: ynl-gen: individually free previous values on double set Greg Kroah-Hartman
2025-04-23 14:42 ` [PATCH 6.6 280/393] netlink: specs: rt-link: add an attr layer around alt-ifname Greg Kroah-Hartman
2025-04-23 14:42 ` [PATCH 6.6 281/393] netlink: specs: rt-link: adjust mctp attribute naming Greg Kroah-Hartman
2025-04-23 14:42 ` [PATCH 6.6 282/393] net: b53: enable BPDU reception for management port Greg Kroah-Hartman
2025-04-23 14:42 ` [PATCH 6.6 283/393] net: bridge: switchdev: do not notify new brentries as changed Greg Kroah-Hartman
2025-04-23 14:43 ` [PATCH 6.6 284/393] net: dsa: mv88e6xxx: avoid unregistering devlink regions which were never registered Greg Kroah-Hartman
2025-04-23 14:43 ` [PATCH 6.6 285/393] net: dsa: mv88e6xxx: fix -ENOENT when deleting VLANs and MST is unsupported Greg Kroah-Hartman
2025-04-23 14:43 ` [PATCH 6.6 286/393] net: dsa: clean up FDB, MDB, VLAN entries on unbind Greg Kroah-Hartman
2025-04-23 14:43 ` [PATCH 6.6 287/393] net: dsa: free routing table on probe failure Greg Kroah-Hartman
2025-04-23 14:43 ` [PATCH 6.6 288/393] net: dsa: avoid refcount warnings when ds->ops->tag_8021q_vlan_del() fails Greg Kroah-Hartman
2025-04-23 14:43 ` [PATCH 6.6 289/393] ptp: ocp: fix start time alignment in ptp_ocp_signal_set Greg Kroah-Hartman
2025-04-23 14:43 ` [PATCH 6.6 290/393] net: ti: icss-iep: Add pwidth configuration for perout signal Greg Kroah-Hartman
2025-04-23 14:43 ` [PATCH 6.6 291/393] net: ti: icss-iep: Add phase offset " Greg Kroah-Hartman
2025-04-23 14:43 ` [PATCH 6.6 292/393] net: ti: icss-iep: Fix possible NULL pointer dereference for perout request Greg Kroah-Hartman
2025-04-23 14:43 ` [PATCH 6.6 293/393] net: ethernet: mtk_eth_soc: correct the max weight of the queue limit for 100Mbps Greg Kroah-Hartman
2025-04-23 14:43 ` [PATCH 6.6 294/393] net: ethernet: mtk_eth_soc: revise QDMA packet scheduler settings Greg Kroah-Hartman
2025-04-23 14:43 ` [PATCH 6.6 295/393] riscv: Properly export reserved regions in /proc/iomem Greg Kroah-Hartman
2025-04-23 14:43 ` [PATCH 6.6 296/393] kunit: qemu_configs: SH: Respect kunit cmdline Greg Kroah-Hartman
2025-04-23 14:43 ` [PATCH 6.6 297/393] riscv: KGDB: Do not inline arch_kgdb_breakpoint() Greg Kroah-Hartman
2025-04-23 14:43 ` [PATCH 6.6 298/393] riscv: KGDB: Remove ".option norvc/.option rvc" for kgdb_compiled_break Greg Kroah-Hartman
2025-04-23 14:43 ` [PATCH 6.6 299/393] cpufreq/sched: Fix the usage of CPUFREQ_NEED_UPDATE_LIMITS Greg Kroah-Hartman
2025-04-23 14:43 ` [PATCH 6.6 300/393] writeback: fix false warning in inode_to_wb() Greg Kroah-Hartman
2025-04-23 14:43 ` [PATCH 6.6 301/393] Revert "PCI: Avoid reset when disabled via sysfs" Greg Kroah-Hartman
2025-04-23 14:43 ` [PATCH 6.6 302/393] ASoC: codecs:lpass-wsa-macro: Fix vi feedback rate Greg Kroah-Hartman
2025-04-23 14:43 ` [PATCH 6.6 303/393] ASoC: codecs:lpass-wsa-macro: Fix logic of enabling vi channels Greg Kroah-Hartman
2025-04-23 14:43 ` [PATCH 6.6 304/393] ASoC: qcom: Fix sc7280 lpass potential buffer overflow Greg Kroah-Hartman
2025-04-23 14:43 ` [PATCH 6.6 305/393] asus-laptop: Fix an uninitialized variable Greg Kroah-Hartman
2025-04-23 14:43 ` [PATCH 6.6 306/393] nfs: add missing selections of CONFIG_CRC32 Greg Kroah-Hartman
2025-04-23 14:43 ` [PATCH 6.6 307/393] nfsd: decrease sc_count directly if fail to queue dl_recall Greg Kroah-Hartman
2025-04-23 14:43 ` [PATCH 6.6 308/393] i2c: atr: Fix wrong include Greg Kroah-Hartman
2025-04-23 14:43 ` [PATCH 6.6 309/393] ftrace: fix incorrect hash size in register_ftrace_direct() Greg Kroah-Hartman
2025-04-23 14:43 ` [PATCH 6.6 310/393] Bluetooth: l2cap: Process valid commands in too long frame Greg Kroah-Hartman
2025-04-23 14:43 ` [PATCH 6.6 311/393] Bluetooth: vhci: Avoid needless snprintf() calls Greg Kroah-Hartman
2025-04-23 14:43 ` [PATCH 6.6 312/393] btrfs: correctly escape subvol in btrfs_show_options() Greg Kroah-Hartman
2025-04-23 14:43 ` [PATCH 6.6 313/393] cpufreq: Avoid using inconsistent policy->min and policy->max Greg Kroah-Hartman
2025-04-23 14:43 ` [PATCH 6.6 314/393] crypto: caam/qi - Fix drv_ctx refcount bug Greg Kroah-Hartman
2025-04-23 14:43 ` [PATCH 6.6 315/393] hfs/hfsplus: fix slab-out-of-bounds in hfs_bnode_read_key Greg Kroah-Hartman
2025-04-23 14:43 ` [PATCH 6.6 316/393] i2c: cros-ec-tunnel: defer probe if parent EC is not present Greg Kroah-Hartman
2025-04-23 14:43 ` [PATCH 6.6 317/393] isofs: Prevent the use of too small fid Greg Kroah-Hartman
2025-04-23 14:43 ` [PATCH 6.6 318/393] loop: properly send KOBJ_CHANGED uevent for disk device Greg Kroah-Hartman
2025-04-23 14:43 ` [PATCH 6.6 319/393] loop: LOOP_SET_FD: send uevents for partitions Greg Kroah-Hartman
2025-04-23 14:43 ` [PATCH 6.6 320/393] mm/gup: fix wrongly calculated returned value in fault_in_safe_writeable() Greg Kroah-Hartman
2025-04-23 14:43 ` [PATCH 6.6 321/393] mm: fix filemap_get_folios_contig returning batches of identical folios Greg Kroah-Hartman
2025-04-23 14:43 ` [PATCH 6.6 322/393] mm: fix apply_to_existing_page_range() Greg Kroah-Hartman
2025-04-23 14:43 ` [PATCH 6.6 323/393] ovl: dont allow datadir only Greg Kroah-Hartman
2025-04-23 14:43 ` [PATCH 6.6 324/393] ksmbd: Fix dangling pointer in krb_authenticate Greg Kroah-Hartman
2025-04-23 14:43 ` [PATCH 6.6 325/393] ksmbd: fix use-after-free in smb_break_all_levII_oplock() Greg Kroah-Hartman
2025-04-23 14:43 ` [PATCH 6.6 326/393] ksmbd: Prevent integer overflow in calculation of deadtime Greg Kroah-Hartman
2025-04-23 14:43 ` [PATCH 6.6 327/393] ksmbd: fix the warning from __kernel_write_iter Greg Kroah-Hartman
2025-04-23 14:43 ` [PATCH 6.6 328/393] Revert "smb: client: Fix netns refcount imbalance causing leaks and use-after-free" Greg Kroah-Hartman
2025-04-23 14:43 ` [PATCH 6.6 329/393] Revert "smb: client: fix TCP timers deadlock after rmmod" Greg Kroah-Hartman
2025-04-23 14:43 ` [PATCH 6.6 330/393] riscv: Avoid fortify warning in syscall_get_arguments() Greg Kroah-Hartman
2025-04-23 14:43 ` [PATCH 6.6 331/393] selftests/mm: generate a temporary mountpoint for cgroup filesystem Greg Kroah-Hartman
2025-04-23 14:43 ` [PATCH 6.6 332/393] smb3 client: fix open hardlink on deferred close file error Greg Kroah-Hartman
2025-04-23 14:43 ` [PATCH 6.6 333/393] string: Add load_unaligned_zeropad() code path to sized_strscpy() Greg Kroah-Hartman
2025-04-23 14:43 ` [PATCH 6.6 334/393] tracing: Fix filter string testing Greg Kroah-Hartman
2025-04-23 14:43 ` [PATCH 6.6 335/393] virtiofs: add filesystem context source name check Greg Kroah-Hartman
2025-04-23 14:43 ` [PATCH 6.6 336/393] x86/microcode/AMD: Extend the SHA check to Zen5, block loading of any unreleased standalone Zen5 microcode patches Greg Kroah-Hartman
2025-04-23 14:43 ` [PATCH 6.6 337/393] x86/cpu/amd: Fix workaround for erratum 1054 Greg Kroah-Hartman
2025-04-23 14:43 ` [PATCH 6.6 338/393] x86/boot/sev: Avoid shared GHCB page for early memory acceptance Greg Kroah-Hartman
2025-04-23 14:43 ` [PATCH 6.6 339/393] scsi: megaraid_sas: Block zero-length ATA VPD inquiry Greg Kroah-Hartman
2025-04-23 14:43 ` [PATCH 6.6 340/393] scsi: ufs: exynos: Ensure consistent phy reference counts Greg Kroah-Hartman
2025-04-23 14:43 ` [PATCH 6.6 341/393] RDMA/cma: Fix workqueue crash in cma_netevent_work_handler Greg Kroah-Hartman
2025-04-23 14:43 ` [PATCH 6.6 342/393] perf/x86/intel: Allow to update user space GPRs from PEBS records Greg Kroah-Hartman
2025-04-23 14:43 ` [PATCH 6.6 343/393] perf/x86/intel/uncore: Fix the scale of IIO free running counters on SNR Greg Kroah-Hartman
2025-04-23 14:44 ` [PATCH 6.6 344/393] perf/x86/intel/uncore: Fix the scale of IIO free running counters on ICX Greg Kroah-Hartman
2025-04-23 14:44 ` [PATCH 6.6 345/393] perf/x86/intel/uncore: Fix the scale of IIO free running counters on SPR Greg Kroah-Hartman
2025-04-23 14:44 ` [PATCH 6.6 346/393] drm/repaper: fix integer overflows in repeat functions Greg Kroah-Hartman
2025-04-23 14:44 ` [PATCH 6.6 347/393] drm/msm/a6xx: Fix stale rpmh votes from GPU Greg Kroah-Hartman
2025-04-23 14:44 ` [PATCH 6.6 348/393] drm/amd: Handle being compiled without SI or CIK support better Greg Kroah-Hartman
2025-04-23 14:44 ` [PATCH 6.6 349/393] drm/amd/pm: Prevent division by zero Greg Kroah-Hartman
2025-04-23 14:44 ` [PATCH 6.6 350/393] drm/amd/pm/powerplay: " Greg Kroah-Hartman
2025-04-23 14:44 ` [PATCH 6.6 351/393] drm/amd/pm/smu11: " Greg Kroah-Hartman
2025-04-23 14:44 ` [PATCH 6.6 352/393] drm/amd/pm/powerplay/hwmgr/smu7_thermal: " Greg Kroah-Hartman
2025-04-23 14:44 ` [PATCH 6.6 353/393] drm/amd/pm/swsmu/smu13/smu_v13_0: " Greg Kroah-Hartman
2025-04-23 14:44 ` [PATCH 6.6 354/393] drm/amd/pm/powerplay/hwmgr/vega20_thermal: " Greg Kroah-Hartman
2025-04-23 14:44 ` [PATCH 6.6 355/393] drm/amdgpu/dma_buf: fix page_link check Greg Kroah-Hartman
2025-04-23 14:44 ` [PATCH 6.6 356/393] drm/nouveau: prime: fix ttm_bo_delayed_delete oops Greg Kroah-Hartman
2025-04-23 14:44 ` [PATCH 6.6 357/393] drm/sti: remove duplicate object names Greg Kroah-Hartman
2025-04-23 14:44 ` [PATCH 6.6 358/393] drm/i915/gvt: fix unterminated-string-initialization warning Greg Kroah-Hartman
2025-04-23 14:44 ` [PATCH 6.6 359/393] io_uring/net: fix accept multishot handling Greg Kroah-Hartman
2025-04-23 14:44 ` [PATCH 6.6 360/393] cpufreq: Reference count policy in cpufreq_update_limits() Greg Kroah-Hartman
2025-04-23 14:44 ` [PATCH 6.6 361/393] kbuild: Add -fno-builtin-wcslen Greg Kroah-Hartman
2025-04-23 14:44 ` [PATCH 6.6 362/393] md: fix mddev uaf while iterating all_mddevs list Greg Kroah-Hartman
2025-04-23 14:44 ` [PATCH 6.6 363/393] mptcp: sockopt: fix getting freebind & transparent Greg Kroah-Hartman
2025-04-23 14:44 ` [PATCH 6.6 364/393] selftests: mptcp: add mptcp_lib_wait_local_port_listen Greg Kroah-Hartman
2025-04-23 14:44 ` [PATCH 6.6 365/393] misc: pci_endpoint_test: Avoid issue of interrupts remaining after request_irq error Greg Kroah-Hartman
2025-04-23 14:44 ` [PATCH 6.6 366/393] misc: pci_endpoint_test: Fix displaying irq_type " Greg Kroah-Hartman
2025-04-23 14:44 ` [PATCH 6.6 367/393] misc: pci_endpoint_test: Fix irq_type to convey the correct type Greg Kroah-Hartman
2025-04-23 14:44 ` [PATCH 6.6 368/393] Fix mmu notifiers for range-based invalidates Greg Kroah-Hartman
2025-04-23 14:44 ` [PATCH 6.6 369/393] efi/libstub: Bump up EFI_MMAP_NR_SLACK_SLOTS to 32 Greg Kroah-Hartman
2025-04-23 14:44 ` [PATCH 6.6 370/393] x86/xen: move xen_reserve_extra_memory() Greg Kroah-Hartman
2025-04-23 14:44 ` [PATCH 6.6 371/393] x86/xen: fix memblock_reserve() usage on PVH Greg Kroah-Hartman
2025-04-23 14:44 ` [PATCH 6.6 372/393] x86/tdx: Fix arch_safe_halt() execution for TDX VMs Greg Kroah-Hartman
2025-04-23 14:44 ` [PATCH 6.6 373/393] x86/split_lock: Fix the delayed detection logic Greg Kroah-Hartman
2025-04-23 14:44 ` [PATCH 6.6 374/393] nvme-rdma: unquiesce admin_q before destroy it Greg Kroah-Hartman
2025-04-23 14:44 ` [PATCH 6.6 375/393] powerpc/rtas: Prevent Spectre v1 gadget construction in sys_rtas() Greg Kroah-Hartman
2025-04-23 14:44 ` [PATCH 6.6 376/393] LoongArch: Eliminate superfluous get_numa_distances_cnt() Greg Kroah-Hartman
2025-04-23 14:44 ` [PATCH 6.6 377/393] usb: typec: fix potential array underflow in ucsi_ccg_sync_control() Greg Kroah-Hartman
2025-04-23 14:44 ` [PATCH 6.6 378/393] usb: typec: fix pm usage counter imbalance " Greg Kroah-Hartman
2025-04-23 14:44 ` [PATCH 6.6 379/393] btrfs: fix qgroup reserve leaks in cow_file_range Greg Kroah-Hartman
2025-04-23 14:44 ` [PATCH 6.6 380/393] wifi: rtw89: pci: add pre_deinit to be called after probe complete Greg Kroah-Hartman
2025-04-23 14:44 ` [PATCH 6.6 381/393] wifi: rtw89: pci: disable PCIE wake bit when PCIE deinit Greg Kroah-Hartman
2025-04-23 14:44 ` [PATCH 6.6 382/393] drm/amd/display: Stop amdgpu_dm initialize when link nums greater than max_links Greg Kroah-Hartman
2025-04-23 14:44 ` [PATCH 6.6 383/393] landlock: Add the errata interface Greg Kroah-Hartman
2025-04-23 14:44 ` [PATCH 6.6 384/393] nvmet-fc: Remove unused functions Greg Kroah-Hartman
2025-04-23 14:44 ` [PATCH 6.6 385/393] [PATCH stable] xdp: Reset bpf_redirect_info before running a xdps BPF prog Greg Kroah-Hartman
2025-04-23 14:44 ` [PATCH 6.6 386/393] sign-file,extract-cert: move common SSL helper functions to a header Greg Kroah-Hartman
2025-04-23 14:44 ` [PATCH 6.6 387/393] sign-file,extract-cert: avoid using deprecated ERR_get_error_line() Greg Kroah-Hartman
2025-04-23 14:44 ` [PATCH 6.6 388/393] sign-file,extract-cert: use pkcs11 provider for OPENSSL MAJOR >= 3 Greg Kroah-Hartman
2025-04-23 14:44 ` [PATCH 6.6 389/393] MIPS: dec: Declare which_prom() as static Greg Kroah-Hartman
2025-04-23 14:44 ` [PATCH 6.6 390/393] MIPS: cevt-ds1287: Add missing ds1287.h include Greg Kroah-Hartman
2025-04-23 14:44 ` [PATCH 6.6 391/393] MIPS: ds1287: Match ds1287_set_base_clock() function types Greg Kroah-Hartman
2025-04-23 14:44 ` [PATCH 6.6 392/393] btrfs: fix the length of reserved qgroup to free Greg Kroah-Hartman
2025-04-23 14:44 ` [PATCH 6.6 393/393] drm/tests: Build KMS helpers when DRM_KUNIT_TEST_HELPERS is enabled Greg Kroah-Hartman
2025-04-23 18:08 ` [PATCH 6.6 000/393] 6.6.88-rc1 review Peter Schneider
2025-04-23 21:15 ` Shuah Khan
2025-04-24  7:24 ` Ron Economos
2025-04-24 10:54 ` Jon Hunter
2025-04-24 11:55 ` Mark Brown
2025-04-24 13:01 ` Florian Fainelli
2025-04-25  0:16 ` Miguel Ojeda
2025-04-25  4:18 ` 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=20250423142651.977297413@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=herbert@gondor.apana.org.au \
    --cc=patches@lists.linux.dev \
    --cc=stable@vger.kernel.org \
    --cc=thomas.lendacky@amd.com \
    /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