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, Tim Huang <tim.huang@amd.com>,
	Jesse Zhang <jesse.zhang@amd.com>,
	Alex Deucher <alexander.deucher@amd.com>,
	Sasha Levin <sashal@kernel.org>
Subject: [PATCH 6.10 226/482] drm/amdgpu: fix unchecked return value warning for amdgpu_gfx
Date: Tue,  8 Oct 2024 14:04:49 +0200	[thread overview]
Message-ID: <20241008115657.200419994@linuxfoundation.org> (raw)
In-Reply-To: <20241008115648.280954295@linuxfoundation.org>

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

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

From: Tim Huang <tim.huang@amd.com>

[ Upstream commit c0277b9d7c2ee9ee5dbc948548984f0fbb861301 ]

This resolves the unchecded return value warning reported by Coverity.

Signed-off-by: Tim Huang <tim.huang@amd.com>
Reviewed-by: Jesse Zhang <jesse.zhang@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 drivers/gpu/drm/amd/amdgpu/amdgpu_gfx.c | 18 ++++++++++++++----
 1 file changed, 14 insertions(+), 4 deletions(-)

diff --git a/drivers/gpu/drm/amd/amdgpu/amdgpu_gfx.c b/drivers/gpu/drm/amd/amdgpu/amdgpu_gfx.c
index e92bdc9a39d35..1935b211b527d 100644
--- a/drivers/gpu/drm/amd/amdgpu/amdgpu_gfx.c
+++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_gfx.c
@@ -816,8 +816,11 @@ int amdgpu_gfx_ras_late_init(struct amdgpu_device *adev, struct ras_common_if *r
 	int r;
 
 	if (amdgpu_ras_is_supported(adev, ras_block->block)) {
-		if (!amdgpu_persistent_edc_harvesting_supported(adev))
-			amdgpu_ras_reset_error_status(adev, AMDGPU_RAS_BLOCK__GFX);
+		if (!amdgpu_persistent_edc_harvesting_supported(adev)) {
+			r = amdgpu_ras_reset_error_status(adev, AMDGPU_RAS_BLOCK__GFX);
+			if (r)
+				return r;
+		}
 
 		r = amdgpu_ras_block_late_init(adev, ras_block);
 		if (r)
@@ -961,7 +964,10 @@ uint32_t amdgpu_kiq_rreg(struct amdgpu_device *adev, uint32_t reg, uint32_t xcc_
 		pr_err("critical bug! too many kiq readers\n");
 		goto failed_unlock;
 	}
-	amdgpu_ring_alloc(ring, 32);
+	r = amdgpu_ring_alloc(ring, 32);
+	if (r)
+		goto failed_unlock;
+
 	amdgpu_ring_emit_rreg(ring, reg, reg_val_offs);
 	r = amdgpu_fence_emit_polling(ring, &seq, MAX_KIQ_REG_WAIT);
 	if (r)
@@ -1027,7 +1033,10 @@ void amdgpu_kiq_wreg(struct amdgpu_device *adev, uint32_t reg, uint32_t v, uint3
 	}
 
 	spin_lock_irqsave(&kiq->ring_lock, flags);
-	amdgpu_ring_alloc(ring, 32);
+	r = amdgpu_ring_alloc(ring, 32);
+	if (r)
+		goto failed_unlock;
+
 	amdgpu_ring_emit_wreg(ring, reg, v);
 	r = amdgpu_fence_emit_polling(ring, &seq, MAX_KIQ_REG_WAIT);
 	if (r)
@@ -1063,6 +1072,7 @@ void amdgpu_kiq_wreg(struct amdgpu_device *adev, uint32_t reg, uint32_t v, uint3
 
 failed_undo:
 	amdgpu_ring_undo(ring);
+failed_unlock:
 	spin_unlock_irqrestore(&kiq->ring_lock, flags);
 failed_kiq_write:
 	dev_err(adev->dev, "failed to write reg:%x\n", reg);
-- 
2.43.0




  parent reply	other threads:[~2024-10-08 12:25 UTC|newest]

Thread overview: 503+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-10-08 12:01 [PATCH 6.10 000/482] 6.10.14-rc1 review Greg Kroah-Hartman
2024-10-08 12:01 ` [PATCH 6.10 001/482] static_call: Handle module init failure correctly in static_call_del_module() Greg Kroah-Hartman
2024-10-08 12:01 ` [PATCH 6.10 002/482] static_call: Replace pointless WARN_ON() in static_call_module_notify() Greg Kroah-Hartman
2024-10-08 12:01 ` [PATCH 6.10 003/482] jump_label: Simplify and clarify static_key_fast_inc_cpus_locked() Greg Kroah-Hartman
2024-10-08 12:01 ` [PATCH 6.10 004/482] jump_label: Fix static_key_slow_dec() yet again Greg Kroah-Hartman
2024-10-08 12:01 ` [PATCH 6.10 005/482] scsi: st: Fix input/output error on empty drive reset Greg Kroah-Hartman
2024-10-08 12:01 ` [PATCH 6.10 006/482] scsi: pm8001: Do not overwrite PCI queue mapping Greg Kroah-Hartman
2024-10-08 12:01 ` [PATCH 6.10 007/482] drm/i915/dp: Fix AUX IO power enabling for eDP PSR Greg Kroah-Hartman
2024-10-08 12:01 ` [PATCH 6.10 008/482] drm/amdgpu: Fix get each xcp macro Greg Kroah-Hartman
2024-10-08 12:01 ` [PATCH 6.10 009/482] drm/amd/display: handle nulled pipe context in DCE110s set_drr() Greg Kroah-Hartman
2024-10-08 12:01 ` [PATCH 6.10 010/482] mailbox: ARM_MHU_V3 should depend on ARM64 Greg Kroah-Hartman
2024-10-08 12:01 ` [PATCH 6.10 011/482] mailbox: rockchip: fix a typo in module autoloading Greg Kroah-Hartman
2024-10-08 12:01 ` [PATCH 6.10 012/482] mailbox: bcm2835: Fix timeout during suspend mode Greg Kroah-Hartman
2024-10-08 12:01 ` [PATCH 6.10 013/482] ceph: fix a memory leak on cap_auths in MDS client Greg Kroah-Hartman
2024-10-08 12:01 ` [PATCH 6.10 014/482] ceph: remove the incorrect Fw reference check when dirtying pages Greg Kroah-Hartman
2024-10-08 12:01 ` [PATCH 6.10 015/482] drm/i915/dp: Fix colorimetry detection Greg Kroah-Hartman
2024-10-08 12:01 ` [PATCH 6.10 016/482] ieee802154: Fix build error Greg Kroah-Hartman
2024-10-08 12:01 ` [PATCH 6.10 017/482] net: sparx5: Fix invalid timestamps Greg Kroah-Hartman
2024-10-08 12:01 ` [PATCH 6.10 018/482] net/mlx5: Fix error path in multi-packet WQE transmit Greg Kroah-Hartman
2024-10-08 12:01 ` [PATCH 6.10 019/482] net/mlx5: Added cond_resched() to crdump collection Greg Kroah-Hartman
2024-10-08 12:01 ` [PATCH 6.10 020/482] net/mlx5e: Fix NULL deref in mlx5e_tir_builder_alloc() Greg Kroah-Hartman
2024-10-08 12:01 ` [PATCH 6.10 021/482] net/mlx5e: Fix crash caused by calling __xfrm_state_delete() twice Greg Kroah-Hartman
2024-10-08 12:01 ` [PATCH 6.10 022/482] netfilter: uapi: NFTA_FLOWTABLE_HOOK is NLA_NESTED Greg Kroah-Hartman
2024-10-08 12:01 ` [PATCH 6.10 023/482] net: ieee802154: mcr20a: Use IRQF_NO_AUTOEN flag in request_irq() Greg Kroah-Hartman
2024-10-08 12:01 ` [PATCH 6.10 024/482] net: wwan: qcom_bam_dmux: Fix missing pm_runtime_disable() Greg Kroah-Hartman
2024-10-08 12:01 ` [PATCH 6.10 025/482] selftests: netfilter: Fix nft_audit.sh for newer nft binaries Greg Kroah-Hartman
2024-10-08 12:01 ` [PATCH 6.10 026/482] netfilter: nf_tables: prevent nf_skb_duplicated corruption Greg Kroah-Hartman
2024-10-08 12:01 ` [PATCH 6.10 027/482] selftests: netfilter: Add missing return value Greg Kroah-Hartman
2024-10-08 12:01 ` [PATCH 6.10 028/482] Bluetooth: MGMT: Fix possible crash on mgmt_index_removed Greg Kroah-Hartman
2024-10-08 12:01 ` [PATCH 6.10 029/482] Bluetooth: L2CAP: Fix uaf in l2cap_connect Greg Kroah-Hartman
2024-10-08 12:01 ` [PATCH 6.10 030/482] Bluetooth: btmrvl: Use IRQF_NO_AUTOEN flag in request_irq() Greg Kroah-Hartman
2024-10-08 12:01 ` [PATCH 6.10 031/482] afs: Fix missing wire-up of afs_retry_request() Greg Kroah-Hartman
2024-10-08 12:01 ` [PATCH 6.10 032/482] afs: Fix the setting of the server responding flag Greg Kroah-Hartman
2024-10-08 12:01 ` [PATCH 6.10 033/482] net: dsa: improve shutdown sequence Greg Kroah-Hartman
2024-10-08 12:01 ` [PATCH 6.10 034/482] net: Add netif_get_gro_max_size helper for GRO Greg Kroah-Hartman
2024-10-08 12:01 ` [PATCH 6.10 035/482] net: Fix gso_features_check to check for both dev->gso_{ipv4_,}max_size Greg Kroah-Hartman
2024-10-08 12:01 ` [PATCH 6.10 036/482] net: ethernet: lantiq_etop: fix memory disclosure Greg Kroah-Hartman
2024-10-08 12:01 ` [PATCH 6.10 037/482] net: fec: Restart PPS after link state change Greg Kroah-Hartman
2024-10-08 12:01 ` [PATCH 6.10 038/482] net: fec: Reload PTP registers after link-state change Greg Kroah-Hartman
2024-10-08 12:01 ` [PATCH 6.10 039/482] net: avoid potential underflow in qdisc_pkt_len_init() with UFO Greg Kroah-Hartman
2024-10-08 12:01 ` [PATCH 6.10 040/482] net: add more sanity checks to qdisc_pkt_len_init() Greg Kroah-Hartman
2024-10-08 12:01 ` [PATCH 6.10 041/482] net: stmmac: dwmac4: extend timeout for VLAN Tag register busy bit check Greg Kroah-Hartman
2024-10-08 12:01 ` [PATCH 6.10 042/482] ipv4: ip_gre: Fix drops of small packets in ipgre_xmit Greg Kroah-Hartman
2024-10-08 12:01 ` [PATCH 6.10 043/482] net: test for not too small csum_start in virtio_net_hdr_to_skb() Greg Kroah-Hartman
2024-10-08 12:01 ` [PATCH 6.10 044/482] ppp: do not assume bh is held in ppp_channel_bridge_input() Greg Kroah-Hartman
2024-10-08 12:01 ` [PATCH 6.10 045/482] bridge: mcast: Fail MDB get request on empty entry Greg Kroah-Hartman
2024-10-08 12:01 ` [PATCH 6.10 046/482] net/ncsi: Disable the ncsi work before freeing the associated structure Greg Kroah-Hartman
2024-10-08 12:01 ` [PATCH 6.10 047/482] iomap: constrain the file range passed to iomap_file_unshare Greg Kroah-Hartman
2024-10-08 12:01 ` [PATCH 6.10 048/482] dt-bindings: net: xlnx,axi-ethernet: Add missing reg minItems Greg Kroah-Hartman
2024-10-08 12:01 ` [PATCH 6.10 049/482] sctp: set sk_state back to CLOSED if autobind fails in sctp_listen_start Greg Kroah-Hartman
2024-10-08 12:01 ` [PATCH 6.10 050/482] selftest mm/mseal: fix test_seal_mremap_move_dontunmap_anyaddr Greg Kroah-Hartman
2024-10-08 12:01 ` [PATCH 6.10 051/482] i2c: xiic: improve error message when transfer fails to start Greg Kroah-Hartman
2024-10-08 12:01 ` [PATCH 6.10 052/482] i2c: xiic: Try re-initialization on bus busy timeout Greg Kroah-Hartman
2024-10-08 12:01 ` [PATCH 6.10 053/482] loop: dont set QUEUE_FLAG_NOMERGES Greg Kroah-Hartman
2024-10-08 12:01 ` [PATCH 6.10 054/482] drm/panthor: Fix race when converting group handle to group object Greg Kroah-Hartman
2024-10-08 12:01 ` [PATCH 6.10 055/482] ASoC: atmel: mchp-pdmc: Skip ALSA restoration if substream runtime is uninitialized Greg Kroah-Hartman
2024-10-08 12:01 ` [PATCH 6.10 056/482] io_uring: fix memory leak when cache init fail Greg Kroah-Hartman
2024-10-08 12:02 ` [PATCH 6.10 057/482] ALSA: mixer_oss: Remove some incorrect kfree_const() usages Greg Kroah-Hartman
2024-10-08 12:02 ` [PATCH 6.10 058/482] ALSA: hda/realtek: Fix the push button function for the ALC257 Greg Kroah-Hartman
2024-10-08 12:02 ` [PATCH 6.10 059/482] cifs: Remove intermediate object of failed create reparse call Greg Kroah-Hartman
2024-10-08 12:02 ` [PATCH 6.10 060/482] drm/panthor: Lock the VM resv before calling drm_gpuvm_bo_obtain_prealloc() Greg Kroah-Hartman
2024-10-08 12:02 ` [PATCH 6.10 061/482] ALSA: hda/generic: Unconditionally prefer preferred_dacs pairs Greg Kroah-Hartman
2024-10-08 12:02 ` [PATCH 6.10 062/482] ASoC: imx-card: Set card.owner to avoid a warning calltrace if SND=m Greg Kroah-Hartman
2024-10-08 12:02 ` [PATCH 6.10 063/482] drm/xe: Restore pci state upon resume Greg Kroah-Hartman
2024-10-08 12:02 ` [PATCH 6.10 064/482] drm/xe: Resume TDR after GT reset Greg Kroah-Hartman
2024-10-08 12:02 ` [PATCH 6.10 065/482] drm/xe: Prevent null pointer access in xe_migrate_copy Greg Kroah-Hartman
2024-10-08 12:02 ` [PATCH 6.10 066/482] cifs: Fix buffer overflow when parsing NFS reparse points Greg Kroah-Hartman
2024-10-08 12:02 ` [PATCH 6.10 067/482] cifs: Do not convert delimiter when parsing NFS-style symlinks Greg Kroah-Hartman
2024-10-08 12:02 ` [PATCH 6.10 068/482] tools/rtla: Fix installation from out-of-tree build Greg Kroah-Hartman
2024-10-08 12:02 ` [PATCH 6.10 069/482] ALSA: gus: Fix some error handling paths related to get_bpos() usage Greg Kroah-Hartman
2024-10-08 12:02 ` [PATCH 6.10 070/482] ALSA: hda/conexant: Fix conflicting quirk for System76 Pangolin Greg Kroah-Hartman
2024-10-08 12:02 ` [PATCH 6.10 071/482] wifi: ath9k: fix possible integer overflow in ath9k_get_et_stats() Greg Kroah-Hartman
2024-10-08 12:02 ` [PATCH 6.10 072/482] wifi: rtw89: avoid to add interface to list twice when SER Greg Kroah-Hartman
2024-10-08 12:02 ` [PATCH 6.10 073/482] wifi: ath9k_htc: Use __skb_set_length() for resetting urb before resubmit Greg Kroah-Hartman
2024-10-08 12:02 ` [PATCH 6.10 074/482] crypto: x86/sha256 - Add parentheses around macros single arguments Greg Kroah-Hartman
2024-10-08 12:02 ` [PATCH 6.10 075/482] crypto: octeontx - Fix authenc setkey Greg Kroah-Hartman
2024-10-08 12:02 ` [PATCH 6.10 076/482] crypto: octeontx2 " Greg Kroah-Hartman
2024-10-08 12:02 ` [PATCH 6.10 077/482] ice: Adjust over allocation of memory in ice_sched_add_root_node() and ice_sched_add_node() Greg Kroah-Hartman
2024-10-08 12:02 ` [PATCH 6.10 078/482] wifi: iwlwifi: mvm: Fix a race in scan abort flow Greg Kroah-Hartman
2024-10-08 12:02 ` [PATCH 6.10 079/482] wifi: iwlwifi: mvm: drop wrong STA selection in TX Greg Kroah-Hartman
2024-10-08 12:02 ` [PATCH 6.10 080/482] wifi: cfg80211: Set correct chandef when starting CAC Greg Kroah-Hartman
2024-10-08 12:02 ` [PATCH 6.10 081/482] net/xen-netback: prevent UAF in xenvif_flush_hash() Greg Kroah-Hartman
2024-10-08 12:02 ` [PATCH 6.10 082/482] net: hisilicon: hip04: fix OF node leak in probe() Greg Kroah-Hartman
2024-10-08 12:02 ` [PATCH 6.10 083/482] net: hisilicon: hns_dsaf_mac: fix OF node leak in hns_mac_get_info() Greg Kroah-Hartman
2024-10-08 12:02 ` [PATCH 6.10 084/482] net: hisilicon: hns_mdio: fix OF node leak in probe() Greg Kroah-Hartman
2024-10-08 12:02 ` [PATCH 6.10 085/482] ACPI: PAD: fix crash in exit_round_robin() Greg Kroah-Hartman
2024-10-08 12:02 ` [PATCH 6.10 086/482] ACPICA: Fix memory leak if acpi_ps_get_next_namepath() fails Greg Kroah-Hartman
2024-10-08 12:02 ` [PATCH 6.10 087/482] ACPICA: Fix memory leak if acpi_ps_get_next_field() fails Greg Kroah-Hartman
2024-10-08 12:02 ` [PATCH 6.10 088/482] fs/inode: Prevent dump_mapping() accessing invalid dentry.d_name.name Greg Kroah-Hartman
2024-10-08 12:02 ` [PATCH 6.10 089/482] e1000e: avoid failing the system during pm_suspend Greg Kroah-Hartman
2024-10-08 12:02 ` [PATCH 6.10 090/482] ACPI: resource: Skip IRQ override on Asus Vivobook Go E1404GAB Greg Kroah-Hartman
2024-10-08 12:02 ` [PATCH 6.10 091/482] wifi: mt76: mt7915: disable tx worker during tx BA session enable/disable Greg Kroah-Hartman
2024-10-08 12:02 ` [PATCH 6.10 092/482] net: sched: consistently use rcu_replace_pointer() in taprio_change() Greg Kroah-Hartman
2024-10-08 12:02 ` [PATCH 6.10 093/482] Bluetooth: btusb: Add Realtek RTL8852C support ID 0x0489:0xe122 Greg Kroah-Hartman
2024-10-08 12:02 ` [PATCH 6.10 094/482] Bluetooth: btrtl: Set msft ext address filter quirk for RTL8852B Greg Kroah-Hartman
2024-10-08 12:02 ` [PATCH 6.10 095/482] ACPI: video: Add force_vendor quirk for Panasonic Toughbook CF-18 Greg Kroah-Hartman
2024-10-08 12:02 ` [PATCH 6.10 096/482] ACPI: CPPC: Add support for setting EPP register in FFH Greg Kroah-Hartman
2024-10-08 12:02 ` [PATCH 6.10 097/482] blk_iocost: fix more out of bound shifts Greg Kroah-Hartman
2024-10-08 12:02 ` [PATCH 6.10 098/482] wifi: ath12k: fix array out-of-bound access in SoC stats Greg Kroah-Hartman
2024-10-08 12:02 ` [PATCH 6.10 099/482] wifi: ath11k: " Greg Kroah-Hartman
2024-10-08 12:02 ` [PATCH 6.10 100/482] wifi: rtw88: select WANT_DEV_COREDUMP Greg Kroah-Hartman
2024-10-08 12:02 ` [PATCH 6.10 101/482] ACPI: EC: Do not release locks during operation region accesses Greg Kroah-Hartman
2024-10-08 12:02 ` [PATCH 6.10 102/482] ACPICA: check null return of ACPI_ALLOCATE_ZEROED() in acpi_db_convert_to_package() Greg Kroah-Hartman
2024-10-08 12:02 ` [PATCH 6.10 103/482] tipc: guard against string buffer overrun Greg Kroah-Hartman
2024-10-08 12:02 ` [PATCH 6.10 104/482] net: mvpp2: Increase size of queue_name buffer Greg Kroah-Hartman
2024-10-08 12:02 ` [PATCH 6.10 105/482] bnxt_en: Extend maximum length of version string by 1 byte Greg Kroah-Hartman
2024-10-08 12:02 ` [PATCH 6.10 106/482] ipv4: Check !in_dev earlier for ioctl(SIOCSIFADDR) Greg Kroah-Hartman
2024-10-08 12:02 ` [PATCH 6.10 107/482] wifi: rtw89: correct base HT rate mask for firmware Greg Kroah-Hartman
2024-10-08 12:02 ` [PATCH 6.10 108/482] ipv4: Mask upper DSCP bits and ECN bits in NETLINK_FIB_LOOKUP family Greg Kroah-Hartman
2024-10-08 12:02 ` [PATCH 6.10 109/482] nvme-keyring: restrict match length for version 1 identifiers Greg Kroah-Hartman
2024-10-08 12:02 ` [PATCH 6.10 110/482] nvme-tcp: sanitize TLS key handling Greg Kroah-Hartman
2024-10-08 12:02 ` [PATCH 6.10 111/482] nvme-tcp: check for invalidated or revoked key Greg Kroah-Hartman
2024-10-08 12:02 ` [PATCH 6.10 112/482] net: atlantic: Avoid warning about potential string truncation Greg Kroah-Hartman
2024-10-08 12:02 ` [PATCH 6.10 113/482] crypto: simd - Do not call crypto_alloc_tfm during registration Greg Kroah-Hartman
2024-10-08 12:02 ` [PATCH 6.10 114/482] netpoll: Ensure clean state on setup failures Greg Kroah-Hartman
2024-10-08 12:02 ` [PATCH 6.10 115/482] tcp: avoid reusing FIN_WAIT2 when trying to find port in connect() process Greg Kroah-Hartman
2024-10-08 12:02 ` [PATCH 6.10 116/482] wifi: iwlwifi: mvm: use correct key iteration Greg Kroah-Hartman
2024-10-08 12:03 ` [PATCH 6.10 117/482] wifi: iwlwifi: allow only CN mcc from WRDD Greg Kroah-Hartman
2024-10-08 12:03 ` [PATCH 6.10 118/482] wifi: iwlwifi: mvm: avoid NULL pointer dereference Greg Kroah-Hartman
2024-10-08 12:03 ` [PATCH 6.10 119/482] wifi: mac80211: fix RCU list iterations Greg Kroah-Hartman
2024-10-08 12:03 ` [PATCH 6.10 120/482] ACPICA: iasl: handle empty connection_node Greg Kroah-Hartman
2024-10-08 12:03 ` [PATCH 6.10 121/482] proc: add config & param to block forcing mem writes Greg Kroah-Hartman
2024-10-08 12:03 ` [PATCH 6.10 122/482] drivers/perf: arm_spe: Use perf_allow_kernel() for permissions Greg Kroah-Hartman
2024-10-08 12:03 ` [PATCH 6.10 123/482] can: netlink: avoid call to do_set_data_bittiming callback with stale can_priv::ctrlmode Greg Kroah-Hartman
2024-10-08 12:03 ` [PATCH 6.10 124/482] netdev-genl: Set extack and fix error on napi-get Greg Kroah-Hartman
2024-10-08 12:03 ` [PATCH 6.10 125/482] block: fix integer overflow in BLKSECDISCARD Greg Kroah-Hartman
2024-10-08 12:03 ` [PATCH 6.10 126/482] arm64: trans_pgd: mark PTEs entries as valid to avoid dead kexec() Greg Kroah-Hartman
2024-10-08 12:03 ` [PATCH 6.10 127/482] net: phy: Check for read errors in SIOCGMIIREG Greg Kroah-Hartman
2024-10-08 12:03 ` [PATCH 6.10 128/482] wifi: rtw89: avoid reading out of bounds when loading TX power FW elements Greg Kroah-Hartman
2024-10-08 12:03 ` [PATCH 6.10 129/482] x86/bugs: Add missing NO_SSB flag Greg Kroah-Hartman
2024-10-08 12:03 ` [PATCH 6.10 130/482] x86/bugs: Fix handling when SRSO mitigation is disabled Greg Kroah-Hartman
2024-10-08 12:03 ` [PATCH 6.10 131/482] net: napi: Prevent overflow of napi_defer_hard_irqs Greg Kroah-Hartman
2024-10-08 12:03 ` [PATCH 6.10 132/482] crypto: hisilicon - fix missed error branch Greg Kroah-Hartman
2024-10-08 12:03 ` [PATCH 6.10 133/482] wifi: mt76: mt7915: add dummy HW offload of IEEE 802.11 fragmentation Greg Kroah-Hartman
2024-10-08 12:03 ` [PATCH 6.10 134/482] wifi: mt76: mt7915: hold dev->mt76.mutex while disabling tx worker Greg Kroah-Hartman
2024-10-08 12:03 ` [PATCH 6.10 135/482] wifi: mwifiex: Fix memcpy() field-spanning write warning in mwifiex_cmd_802_11_scan_ext() Greg Kroah-Hartman
2024-10-08 12:03 ` [PATCH 6.10 136/482] netfs: Cancel dirty folios that have no storage destination Greg Kroah-Hartman
2024-10-08 12:03 ` [PATCH 6.10 137/482] nfp: Use IRQF_NO_AUTOEN flag in request_irq() Greg Kroah-Hartman
2024-10-08 12:03 ` [PATCH 6.10 138/482] ALSA: usb-audio: Add input value sanity checks for standard types Greg Kroah-Hartman
2024-10-08 12:03 ` [PATCH 6.10 139/482] x86/ioapic: Handle allocation failures gracefully Greg Kroah-Hartman
2024-10-08 12:03 ` [PATCH 6.10 140/482] x86/apic: Remove logical destination mode for 64-bit Greg Kroah-Hartman
2024-10-08 12:03 ` [PATCH 6.10 141/482] ALSA: usb-audio: Support multiple control interfaces Greg Kroah-Hartman
2024-10-09  7:40   ` Karol Kosik
2024-10-08 12:03 ` [PATCH 6.10 142/482] ALSA: usb-audio: Define macros for quirk table entries Greg Kroah-Hartman
2024-10-08 12:03 ` [PATCH 6.10 143/482] ALSA: usb-audio: Replace complex quirk lines with macros Greg Kroah-Hartman
2024-10-08 12:03 ` [PATCH 6.10 144/482] ALSA: usb-audio: Add quirk for RME Digiface USB Greg Kroah-Hartman
2024-10-08 12:03 ` [PATCH 6.10 145/482] ALSA: usb-audio: Add mixer " Greg Kroah-Hartman
2024-10-08 12:03 ` [PATCH 6.10 146/482] ALSA: usb-audio: Add logitech Audio profile quirk Greg Kroah-Hartman
2024-10-08 12:03 ` [PATCH 6.10 147/482] ASoC: codecs: wsa883x: Handle reading version failure Greg Kroah-Hartman
2024-10-08 12:03 ` [PATCH 6.10 148/482] ALSA: control: Take power_ref lock primarily Greg Kroah-Hartman
2024-10-08 12:03 ` [PATCH 6.10 149/482] tools/x86/kcpuid: Protect against faulty "max subleaf" values Greg Kroah-Hartman
2024-10-08 12:03 ` [PATCH 6.10 150/482] x86/pkeys: Add PKRU as a parameter in signal handling functions Greg Kroah-Hartman
2024-10-08 12:03 ` [PATCH 6.10 151/482] x86/pkeys: Restore altstack access in sigreturn() Greg Kroah-Hartman
2024-10-08 12:03 ` [PATCH 6.10 152/482] x86/kexec: Add EFI config table identity mapping for kexec kernel Greg Kroah-Hartman
2024-10-08 12:03 ` [PATCH 6.10 153/482] x86/mm/ident_map: Use gbpages only where full GB page should be mapped Greg Kroah-Hartman
2024-10-08 12:03 ` [PATCH 6.10 154/482] ALSA: asihpi: Fix potential OOB array access Greg Kroah-Hartman
2024-10-08 12:03 ` [PATCH 6.10 155/482] ALSA: hdsp: Break infinite MIDI input flush loop Greg Kroah-Hartman
2024-10-08 12:03 ` [PATCH 6.10 156/482] tools/nolibc: powerpc: limit stack-protector workaround to GCC Greg Kroah-Hartman
2024-10-08 12:03 ` [PATCH 6.10 157/482] selftests/nolibc: avoid passing NULL to printf("%s") Greg Kroah-Hartman
2024-10-08 12:03 ` [PATCH 6.10 158/482] x86/syscall: Avoid memcpy() for ia32 syscall_get_arguments() Greg Kroah-Hartman
2024-10-08 12:03 ` [PATCH 6.10 159/482] ASoC: Intel: boards: always check the result of acpi_dev_get_first_match_dev() Greg Kroah-Hartman
2024-10-08 12:03 ` [PATCH 6.10 160/482] rcu-tasks: Fix access non-existent percpu rtpcp variable in rcu_tasks_need_gpcb() Greg Kroah-Hartman
2024-10-08 12:03 ` [PATCH 6.10 161/482] hwmon: (nct6775) add G15CF to ASUS WMI monitoring list Greg Kroah-Hartman
2024-10-08 12:03 ` [PATCH 6.10 162/482] fbdev: efifb: Register sysfs groups through driver core Greg Kroah-Hartman
2024-10-08 12:03 ` [PATCH 6.10 163/482] fbdev: pxafb: Fix possible use after free in pxafb_task() Greg Kroah-Hartman
2024-10-08 12:03 ` [PATCH 6.10 164/482] pmdomain: core: Dont hold the genpd-lock when calling dev_pm_domain_set() Greg Kroah-Hartman
2024-10-08 12:03 ` [PATCH 6.10 165/482] rcuscale: Provide clear error when async specified without primitives Greg Kroah-Hartman
2024-10-08 12:03 ` [PATCH 6.10 166/482] power: reset: brcmstb: Do not go into infinite loop if reset fails Greg Kroah-Hartman
2024-10-08 12:03 ` [PATCH 6.10 167/482] iommu/arm-smmu-v3: Match Stall behaviour for S2 Greg Kroah-Hartman
2024-10-08 12:03 ` [PATCH 6.10 168/482] iommu/vt-d: Always reserve a domain ID for identity setup Greg Kroah-Hartman
2024-10-08 12:03 ` [PATCH 6.10 169/482] iommu/vt-d: Fix potential lockup if qi_submit_sync called with 0 count Greg Kroah-Hartman
2024-10-08 12:03 ` [PATCH 6.10 170/482] iommu/vt-d: Unconditionally flush device TLB for pasid table updates Greg Kroah-Hartman
2024-10-08 12:03 ` [PATCH 6.10 171/482] iommu/arm-smmu-v3: Do not use devm for the cd table allocations Greg Kroah-Hartman
2024-10-08 12:03 ` [PATCH 6.10 172/482] cgroup: Disallow mounting v1 hierarchies without controller implementation Greg Kroah-Hartman
2024-10-08 12:03 ` [PATCH 6.10 173/482] drm/stm: Avoid use-after-free issues with crtc and plane Greg Kroah-Hartman
2024-10-08 12:03 ` [PATCH 6.10 174/482] drm/amd/display: Pass non-null to dcn20_validate_apply_pipe_split_flags Greg Kroah-Hartman
2024-10-08 12:03 ` [PATCH 6.10 175/482] drm/amd/display: Check null pointers before using them Greg Kroah-Hartman
2024-10-08 12:03 ` [PATCH 6.10 176/482] drm/amdgpu: disallow multiple BO_HANDLES chunks in one submit Greg Kroah-Hartman
2024-10-08 12:04 ` [PATCH 6.10 177/482] drm/amdkfd: amdkfd_free_gtt_mem clear the correct pointer Greg Kroah-Hartman
2024-10-08 12:04 ` [PATCH 6.10 178/482] drm/amd/display: Add null check for head_pipe in dcn201_acquire_free_pipe_for_layer Greg Kroah-Hartman
2024-10-08 12:04 ` [PATCH 6.10 179/482] drm/amd/display: Add null check for head_pipe in dcn32_acquire_idle_pipe_for_head_pipe_in_layer Greg Kroah-Hartman
2024-10-08 12:04 ` [PATCH 6.10 180/482] drm/amd/display: Add NULL check for clk_mgr and clk_mgr->funcs in dcn30_init_hw Greg Kroah-Hartman
2024-10-08 12:04 ` [PATCH 6.10 181/482] drm/amd/display: Add NULL check for clk_mgr in dcn32_init_hw Greg Kroah-Hartman
2024-10-08 12:04 ` [PATCH 6.10 182/482] drm/xe/hdcp: Check GSC structure validity Greg Kroah-Hartman
2024-10-08 12:04 ` [PATCH 6.10 183/482] drm/amd/display: Add null check for top_pipe_to_program in commit_planes_for_stream Greg Kroah-Hartman
2024-10-08 12:04 ` [PATCH 6.10 184/482] drm/amd/display: Use gpuvm_min_page_size_kbytes for DML2 surfaces Greg Kroah-Hartman
2024-10-08 12:04 ` [PATCH 6.10 185/482] ata: pata_serverworks: Do not use the term blacklist Greg Kroah-Hartman
2024-10-08 12:04 ` [PATCH 6.10 186/482] ata: sata_sil: Rename sil_blacklist to sil_quirks Greg Kroah-Hartman
2024-10-08 12:04 ` [PATCH 6.10 187/482] scsi: smartpqi: Add new controller PCI IDs Greg Kroah-Hartman
2024-10-08 12:04 ` [PATCH 6.10 188/482] HID: Ignore battery for all ELAN I2C-HID devices Greg Kroah-Hartman
2024-10-08 12:04 ` [PATCH 6.10 189/482] drm/amd/display: Handle null stream_status in planes_changed_for_existing_stream Greg Kroah-Hartman
2024-10-08 12:04 ` [PATCH 6.10 190/482] drm/amd/display: Add NULL check for function pointer in dcn20_set_output_transfer_func Greg Kroah-Hartman
2024-10-08 12:04 ` [PATCH 6.10 191/482] drm/amd/display: Add NULL check for function pointer in dcn32_set_output_transfer_func Greg Kroah-Hartman
2024-10-08 12:04 ` [PATCH 6.10 192/482] drm/amd/display: Check null pointers before using dc->clk_mgr Greg Kroah-Hartman
2024-10-08 12:04 ` [PATCH 6.10 193/482] drm/amd/display: Add null check for afb in amdgpu_dm_plane_handle_cursor_update (v2) Greg Kroah-Hartman
2024-10-08 12:04 ` [PATCH 6.10 194/482] drm/amd/display: fix double free issue during amdgpu module unload Greg Kroah-Hartman
2024-10-08 12:04 ` [PATCH 6.10 195/482] drm/amdgpu: add list empty check to avoid null pointer issue Greg Kroah-Hartman
2024-10-08 12:04 ` [PATCH 6.10 196/482] jfs: UBSAN: shift-out-of-bounds in dbFindBits Greg Kroah-Hartman
2024-10-08 12:04 ` [PATCH 6.10 197/482] jfs: Fix uaf in dbFreeBits Greg Kroah-Hartman
2024-10-08 12:04 ` [PATCH 6.10 198/482] jfs: check if leafidx greater than num leaves per dmap tree Greg Kroah-Hartman
2024-10-08 12:04 ` [PATCH 6.10 199/482] scsi: smartpqi: correct stream detection Greg Kroah-Hartman
2024-10-08 12:04 ` [PATCH 6.10 200/482] scsi: smartpqi: add new controller PCI IDs Greg Kroah-Hartman
2024-10-08 12:04 ` [PATCH 6.10 201/482] drm/msm/adreno: Assign msm_gpu->pdev earlier to avoid nullptrs Greg Kroah-Hartman
2024-10-08 12:04 ` [PATCH 6.10 202/482] jfs: Fix uninit-value access of new_ea in ea_buffer Greg Kroah-Hartman
2024-10-08 12:04 ` [PATCH 6.10 203/482] drm/amdgpu: add raven1 gfxoff quirk Greg Kroah-Hartman
2024-10-08 12:04 ` [PATCH 6.10 204/482] drm/amdgpu: enable gfxoff quirk on HP 705G4 Greg Kroah-Hartman
2024-10-08 12:04 ` [PATCH 6.10 205/482] drm/amdkfd: Fix resource leak in criu restore queue Greg Kroah-Hartman
2024-10-08 12:04 ` [PATCH 6.10 206/482] HID: multitouch: Add support for Thinkpad X12 Gen 2 Kbd Portfolio Greg Kroah-Hartman
2024-10-08 12:04 ` [PATCH 6.10 207/482] platform/x86: touchscreen_dmi: add nanote-next quirk Greg Kroah-Hartman
2024-10-08 12:04 ` [PATCH 6.10 208/482] platform/x86/amd: pmf: Add quirk for TUF Gaming A14 Greg Kroah-Hartman
2024-10-08 12:04 ` [PATCH 6.10 209/482] drm/stm: ltdc: reset plane transparency after plane disable Greg Kroah-Hartman
2024-10-08 12:04 ` [PATCH 6.10 210/482] drm/amd/display: Check null-initialized variables Greg Kroah-Hartman
2024-10-08 12:04 ` [PATCH 6.10 211/482] drm/amd/display: Check phantom_stream before it is used Greg Kroah-Hartman
2024-10-08 12:04 ` [PATCH 6.10 212/482] drm/amd/display: Check stream before comparing them Greg Kroah-Hartman
2024-10-08 12:04 ` [PATCH 6.10 213/482] drm/amd/display: Check link_res->hpo_dp_link_enc before using it Greg Kroah-Hartman
2024-10-08 12:04 ` [PATCH 6.10 214/482] drm/amd/display: Fix index out of bounds in DCN30 degamma hardware format translation Greg Kroah-Hartman
2024-10-08 12:04 ` [PATCH 6.10 215/482] drm/amd/display: Fix index out of bounds in " Greg Kroah-Hartman
2024-10-08 12:04 ` [PATCH 6.10 216/482] drm/amd/display: Fix index out of bounds in DCN30 color transformation Greg Kroah-Hartman
2024-10-08 12:04 ` [PATCH 6.10 217/482] drm/amdgpu/gfx9: properly handle error ints on all pipes Greg Kroah-Hartman
2024-10-08 12:04 ` [PATCH 6.10 218/482] drm/amd/display: Avoid overflow assignment in link_dp_cts Greg Kroah-Hartman
2024-10-08 12:04 ` [PATCH 6.10 219/482] drm/amd/display: Initialize get_bytes_per_elements default to 1 Greg Kroah-Hartman
2024-10-08 12:04 ` [PATCH 6.10 220/482] drm/printer: Allow NULL data in devcoredump printer Greg Kroah-Hartman
2024-10-08 12:04 ` [PATCH 6.10 221/482] perf,x86: avoid missing caller address in stack traces captured in uprobe Greg Kroah-Hartman
2024-10-08 12:04 ` [PATCH 6.10 222/482] scsi: aacraid: Rearrange order of struct aac_srb_unit Greg Kroah-Hartman
2024-10-08 12:04 ` [PATCH 6.10 223/482] scsi: lpfc: Validate hdwq pointers before dereferencing in reset/errata paths Greg Kroah-Hartman
2024-10-08 12:04 ` [PATCH 6.10 224/482] scsi: lpfc: Fix unsolicited FLOGI kref imbalance when in direct attached topology Greg Kroah-Hartman
2024-10-08 12:04 ` [PATCH 6.10 225/482] scsi: lpfc: Update PRLO handling " Greg Kroah-Hartman
2024-10-08 12:04 ` Greg Kroah-Hartman [this message]
2024-10-08 12:04 ` [PATCH 6.10 227/482] drm/amdgpu: fix unchecked return value warning for amdgpu_atombios Greg Kroah-Hartman
2024-10-08 12:04 ` [PATCH 6.10 228/482] perf: Fix event_function_call() locking Greg Kroah-Hartman
2024-10-08 12:04 ` [PATCH 6.10 229/482] scsi: NCR5380: Initialize buffer for MSG IN and STATUS transfers Greg Kroah-Hartman
2024-10-08 12:04 ` [PATCH 6.10 230/482] drm/radeon/r100: Handle unknown family in r100_cp_init_microcode() Greg Kroah-Hartman
2024-10-08 12:04 ` [PATCH 6.10 231/482] drm/amdgpu: Block MMR_READ IOCTL in reset Greg Kroah-Hartman
2024-10-08 12:04 ` [PATCH 6.10 232/482] drm/amdgpu/gfx9: use rlc safe mode for soft recovery Greg Kroah-Hartman
2024-10-08 12:04 ` [PATCH 6.10 233/482] drm/amdgpu/gfx11: enter safe mode before touching CP_INT_CNTL Greg Kroah-Hartman
2024-10-08 12:04 ` [PATCH 6.10 234/482] drm/xe: Use topology to determine page fault queue size Greg Kroah-Hartman
2024-10-08 12:04 ` [PATCH 6.10 235/482] drm/amd/pm: ensure the fw_info is not null before using it Greg Kroah-Hartman
2024-10-08 12:04 ` [PATCH 6.10 236/482] drm/amdkfd: Check int source id for utcl2 poison event Greg Kroah-Hartman
2024-10-08 12:05 ` [PATCH 6.10 237/482] drm/xe: Drop warn on xe_guc_pc_gucrc_disable in guc pc fini Greg Kroah-Hartman
2024-10-08 12:05 ` [PATCH 6.10 238/482] of/irq: Refer to actual buffer size in of_irq_parse_one() Greg Kroah-Hartman
2024-10-08 12:05 ` [PATCH 6.10 239/482] powerpc/pseries: Use correct data types from pseries_hp_errorlog struct Greg Kroah-Hartman
2024-10-08 12:05 ` [PATCH 6.10 240/482] ovl: fsync after metadata copy-up Greg Kroah-Hartman
2024-10-08 12:05 ` [PATCH 6.10 241/482] drm/amdgpu/gfx11: use rlc safe mode for soft recovery Greg Kroah-Hartman
2024-10-08 12:05 ` [PATCH 6.10 242/482] drm/amdgpu/gfx10: " Greg Kroah-Hartman
2024-10-08 12:05 ` [PATCH 6.10 243/482] platform/x86: lenovo-ymc: Ignore the 0x0 state Greg Kroah-Hartman
2024-10-08 12:05 ` [PATCH 6.10 244/482] tools/hv: Add memory allocation check in hv_fcopy_start Greg Kroah-Hartman
2024-10-08 12:05 ` [PATCH 6.10 245/482] HID: i2c-hid: ensure various commands do not interfere with each other Greg Kroah-Hartman
2024-10-08 12:05 ` [PATCH 6.10 246/482] ksmbd: add refcnt to ksmbd_conn struct Greg Kroah-Hartman
2024-10-08 12:05 ` [PATCH 6.10 247/482] platform/mellanox: mlxbf-pmc: fix lockdep warning Greg Kroah-Hartman
2024-10-08 12:05 ` [PATCH 6.10 248/482] platform/x86: x86-android-tablets: Adjust Xiaomi Pad 2 bottom bezel touch buttons LED Greg Kroah-Hartman
2024-10-08 12:05 ` [PATCH 6.10 249/482] ext4: dont set SB_RDONLY after filesystem errors Greg Kroah-Hartman
2024-10-08 12:05 ` [PATCH 6.10 250/482] bpf: Make the pointer returned by iter next method valid Greg Kroah-Hartman
2024-10-08 12:05 ` [PATCH 6.10 251/482] ext4: ext4_search_dir should return a proper error Greg Kroah-Hartman
2024-10-08 12:05 ` [PATCH 6.10 252/482] ext4: avoid use-after-free in ext4_ext_show_leaf() Greg Kroah-Hartman
2024-10-08 12:05 ` [PATCH 6.10 253/482] ext4: fix i_data_sem unlock order in ext4_ind_migrate() Greg Kroah-Hartman
2024-10-08 12:05 ` [PATCH 6.10 254/482] bpftool: Fix undefined behavior caused by shifting into the sign bit Greg Kroah-Hartman
2024-10-08 12:05 ` [PATCH 6.10 255/482] iomap: handle a post-direct I/O invalidate race in iomap_write_delalloc_release Greg Kroah-Hartman
2024-10-08 12:05 ` [PATCH 6.10 256/482] bpftool: Fix undefined behavior in qsort(NULL, 0, ...) Greg Kroah-Hartman
2024-10-08 12:05 ` [PATCH 6.10 257/482] bpf: Fix a sdiv overflow issue Greg Kroah-Hartman
2024-10-08 12:05 ` [PATCH 6.10 258/482] EINJ, CXL: Fix CXL device SBDF calculation Greg Kroah-Hartman
2024-10-08 12:05 ` [PATCH 6.10 259/482] spi: spi-imx: Fix pm_runtime_set_suspended() with runtime pm enabled Greg Kroah-Hartman
2024-10-08 12:05 ` [PATCH 6.10 260/482] spi: spi-cadence: " Greg Kroah-Hartman
2024-10-08 12:05 ` [PATCH 6.10 261/482] spi: spi-cadence: Fix missing spi_controller_is_target() check Greg Kroah-Hartman
2024-10-08 12:05 ` [PATCH 6.10 262/482] selftest: hid: add missing run-hid-tools-tests.sh Greg Kroah-Hartman
2024-10-08 12:05 ` [PATCH 6.10 263/482] spi: s3c64xx: fix timeout counters in flush_fifo Greg Kroah-Hartman
2024-10-08 12:05 ` [PATCH 6.10 264/482] kselftest/devices/probe: Fix SyntaxWarning in regex strings for Python3 Greg Kroah-Hartman
2024-10-08 12:05 ` [PATCH 6.10 265/482] selftests: breakpoints: use remaining time to check if suspend succeed Greg Kroah-Hartman
2024-10-08 12:05 ` [PATCH 6.10 266/482] accel/ivpu: Add missing MODULE_FIRMWARE metadata Greg Kroah-Hartman
2024-10-08 12:05 ` [PATCH 6.10 267/482] spi: rpc-if: Add missing MODULE_DEVICE_TABLE Greg Kroah-Hartman
2024-10-08 12:05 ` [PATCH 6.10 268/482] ALSA: control: Fix power_ref lock order for compat code, too Greg Kroah-Hartman
2024-10-08 12:05 ` [PATCH 6.10 269/482] perf callchain: Fix stitch LBR memory leaks Greg Kroah-Hartman
2024-10-08 12:05 ` [PATCH 6.10 270/482] perf: Really fix event_function_call() locking Greg Kroah-Hartman
2024-10-08 12:05 ` [PATCH 6.10 271/482] drm/xe: fixup xe_alloc_pf_queue Greg Kroah-Hartman
2024-10-08 12:05 ` [PATCH 6.10 272/482] drm/xe: Fix memory leak on xe_alloc_pf_queue failure Greg Kroah-Hartman
2024-10-08 12:05 ` [PATCH 6.10 273/482] selftests: vDSO: fix vDSO name for powerpc Greg Kroah-Hartman
2024-10-08 12:05 ` [PATCH 6.10 274/482] selftests: vDSO: fix vdso_config " Greg Kroah-Hartman
2024-10-08 12:05 ` [PATCH 6.10 275/482] selftests: vDSO: fix vDSO symbols lookup for powerpc64 Greg Kroah-Hartman
2024-10-08 12:05 ` [PATCH 6.10 276/482] selftests/mm: fix charge_reserved_hugetlb.sh test Greg Kroah-Hartman
2024-10-08 12:05 ` [PATCH 6.10 277/482] nvme-tcp: fix link failure for TCP auth Greg Kroah-Hartman
2024-10-08 12:05 ` [PATCH 6.10 278/482] f2fs: add write priority option based on zone UFS Greg Kroah-Hartman
2024-10-08 12:05 ` [PATCH 6.10 279/482] f2fs: fix to dont panic system for no free segment fault injection Greg Kroah-Hartman
2024-10-08 12:05 ` [PATCH 6.10 280/482] powerpc/vdso: Fix VDSO data access when running in a non-root time namespace Greg Kroah-Hartman
2024-10-08 12:05 ` [PATCH 6.10 281/482] selftests: vDSO: fix ELF hash table entry size for s390x Greg Kroah-Hartman
2024-10-08 12:05 ` [PATCH 6.10 282/482] selftests: vDSO: fix vdso_config for s390 Greg Kroah-Hartman
2024-10-08 12:05 ` [PATCH 6.10 283/482] f2fs: make BG GC more aggressive for zoned devices Greg Kroah-Hartman
2024-10-08 12:05 ` [PATCH 6.10 284/482] f2fs: introduce migration_window_granularity Greg Kroah-Hartman
2024-10-08 12:05 ` [PATCH 6.10 285/482] f2fs: increase BG GC migration window granularity when boosted for zoned devices Greg Kroah-Hartman
2024-10-08 12:05 ` [PATCH 6.10 286/482] f2fs: do FG_GC when GC boosting is required " Greg Kroah-Hartman
2024-10-08 12:05 ` [PATCH 6.10 287/482] f2fs: forcibly migrate to secure space for zoned device file pinning Greg Kroah-Hartman
2024-10-08 12:05 ` [PATCH 6.10 288/482] Revert "ALSA: hda: Conditionally use snooping for AMD HDMI" Greg Kroah-Hartman
2024-10-08 12:05 ` [PATCH 6.10 289/482] platform/x86: x86-android-tablets: Fix use after free on platform_device_register() errors Greg Kroah-Hartman
2024-10-08 12:05 ` [PATCH 6.10 290/482] platform/x86: ISST: Fix the KASAN report slab-out-of-bounds bug Greg Kroah-Hartman
2024-10-08 12:05 ` [PATCH 6.10 291/482] KVM: arm64: Fix kvm_has_feat*() handling of negative features Greg Kroah-Hartman
2024-10-08 12:05 ` [PATCH 6.10 292/482] i2c: stm32f7: Do not prepare/unprepare clock during runtime suspend/resume Greg Kroah-Hartman
2024-10-08 12:05 ` [PATCH 6.10 293/482] i2c: qcom-geni: Use IRQF_NO_AUTOEN flag in request_irq() Greg Kroah-Hartman
2024-10-08 12:05 ` [PATCH 6.10 294/482] i2c: xiic: Wait for TX empty to avoid missed TX NAKs Greg Kroah-Hartman
2024-10-08 12:05 ` [PATCH 6.10 295/482] media: i2c: ar0521: Use cansleep version of gpiod_set_value() Greg Kroah-Hartman
2024-10-08 12:05 ` [PATCH 6.10 296/482] i2c: core: Lock address during client device instantiation Greg Kroah-Hartman
2024-10-08 12:06 ` [PATCH 6.10 297/482] i2c: xiic: Fix pm_runtime_set_suspended() with runtime pm enabled Greg Kroah-Hartman
2024-10-08 12:06 ` [PATCH 6.10 298/482] i2c: designware: fix controller is holding SCL low while ENABLE bit is disabled Greg Kroah-Hartman
2024-10-08 12:06 ` [PATCH 6.10 299/482] i2c: synquacer: Deal with optional PCLK correctly Greg Kroah-Hartman
2024-10-08 12:06 ` [PATCH 6.10 300/482] rust: sync: require `T: Sync` for `LockedBy::access` Greg Kroah-Hartman
2024-10-08 12:06 ` [PATCH 6.10 301/482] ovl: fail if trusted xattrs are needed but caller lacks permission Greg Kroah-Hartman
2024-10-08 12:06 ` [PATCH 6.10 302/482] firmware: tegra: bpmp: Drop unused mbox_client_to_bpmp() Greg Kroah-Hartman
2024-10-08 12:06 ` [PATCH 6.10 303/482] memory: tegra186-emc: drop unused to_tegra186_emc() Greg Kroah-Hartman
2024-10-08 12:06 ` [PATCH 6.10 304/482] dt-bindings: clock: exynos7885: Fix duplicated binding Greg Kroah-Hartman
2024-10-08 12:06 ` [PATCH 6.10 305/482] spi: bcm63xx: Fix module autoloading Greg Kroah-Hartman
2024-10-08 12:06 ` [PATCH 6.10 306/482] spi: bcm63xx: Fix missing pm_runtime_disable() Greg Kroah-Hartman
2024-10-08 12:06 ` [PATCH 6.10 307/482] power: supply: hwmon: Fix missing temp1_max_alarm attribute Greg Kroah-Hartman
2024-10-08 12:06 ` [PATCH 6.10 308/482] mm, slub: avoid zeroing kmalloc redzone Greg Kroah-Hartman
2024-10-08 12:06 ` [PATCH 6.10 309/482] perf/core: Fix small negative period being ignored Greg Kroah-Hartman
2024-10-08 12:06 ` [PATCH 6.10 310/482] drm/v3d: Prevent out of bounds access in performance query extensions Greg Kroah-Hartman
2024-10-08 12:06 ` [PATCH 6.10 311/482] parisc: Fix itlb miss handler for 64-bit programs Greg Kroah-Hartman
2024-10-08 12:06 ` [PATCH 6.10 312/482] drm/mediatek: ovl_adaptor: Add missing of_node_put() Greg Kroah-Hartman
2024-10-08 12:06 ` [PATCH 6.10 313/482] drm: Consistently use struct drm_mode_rect for FB_DAMAGE_CLIPS Greg Kroah-Hartman
2024-10-08 12:06 ` [PATCH 6.10 314/482] ALSA: hda/tas2781: Add new quirk for Lenovo Y990 Laptop Greg Kroah-Hartman
2024-10-08 12:06 ` [PATCH 6.10 315/482] ALSA: core: add isascii() check to card ID generator Greg Kroah-Hartman
2024-10-08 12:06 ` [PATCH 6.10 316/482] ALSA: usb-audio: Add delay quirk for VIVO USB-C HEADSET Greg Kroah-Hartman
2024-10-08 12:06 ` [PATCH 6.10 317/482] ALSA: usb-audio: Add native DSD support for Luxman D-08u Greg Kroah-Hartman
2024-10-08 12:06 ` [PATCH 6.10 318/482] ALSA: line6: add hw monitor volume control to POD HD500X Greg Kroah-Hartman
2024-10-08 12:06 ` [PATCH 6.10 319/482] ALSA: hda/realtek: fix mute/micmute LED for HP mt645 G8 Greg Kroah-Hartman
2024-10-08 12:06 ` [PATCH 6.10 320/482] ALSA: hda/realtek: Add quirk for Huawei MateBook 13 KLV-WX9 Greg Kroah-Hartman
2024-10-08 12:06 ` [PATCH 6.10 321/482] ALSA: hda/realtek: Add a quirk for HP Pavilion 15z-ec200 Greg Kroah-Hartman
2024-10-08 12:06 ` [PATCH 6.10 322/482] ext4: no need to continue when the number of entries is 1 Greg Kroah-Hartman
2024-10-08 12:06 ` [PATCH 6.10 323/482] ext4: correct encrypted dentry name hash when not casefolded Greg Kroah-Hartman
2024-10-08 12:06 ` [PATCH 6.10 324/482] ext4: fix slab-use-after-free in ext4_split_extent_at() Greg Kroah-Hartman
2024-10-08 12:06 ` [PATCH 6.10 325/482] ext4: propagate errors from ext4_find_extent() in ext4_insert_range() Greg Kroah-Hartman
2024-10-08 12:06 ` [PATCH 6.10 326/482] ext4: fix incorrect tid assumption in ext4_fc_mark_ineligible() Greg Kroah-Hartman
2024-10-08 12:06 ` [PATCH 6.10 327/482] ext4: dax: fix overflowing extents beyond inode size when partially writing Greg Kroah-Hartman
2024-10-08 12:06 ` [PATCH 6.10 328/482] ext4: fix incorrect tid assumption in __jbd2_log_wait_for_space() Greg Kroah-Hartman
2024-10-08 12:06 ` [PATCH 6.10 329/482] ext4: drop ppath from ext4_ext_replay_update_ex() to avoid double-free Greg Kroah-Hartman
2024-10-08 12:06 ` [PATCH 6.10 330/482] ext4: aovid use-after-free in ext4_ext_insert_extent() Greg Kroah-Hartman
2024-10-08 12:06 ` [PATCH 6.10 331/482] ext4: fix double brelse() the buffer of the extents path Greg Kroah-Hartman
2024-10-08 12:06 ` [PATCH 6.10 332/482] ext4: fix timer use-after-free on failed mount Greg Kroah-Hartman
2024-10-08 12:06 ` [PATCH 6.10 333/482] ext4: fix access to uninitialised lock in fc replay path Greg Kroah-Hartman
2024-10-08 12:06 ` [PATCH 6.10 334/482] ext4: update orig_path in ext4_find_extent() Greg Kroah-Hartman
2024-10-08 12:06 ` [PATCH 6.10 335/482] ext4: fix incorrect tid assumption in ext4_wait_for_tail_page_commit() Greg Kroah-Hartman
2024-10-08 12:06 ` [PATCH 6.10 336/482] ext4: fix incorrect tid assumption in jbd2_journal_shrink_checkpoint_list() Greg Kroah-Hartman
2024-10-08 12:06 ` [PATCH 6.10 337/482] ext4: fix fast commit inode enqueueing during a full journal commit Greg Kroah-Hartman
2024-10-08 12:06 ` [PATCH 6.10 338/482] ext4: use handle to mark fc as ineligible in __track_dentry_update() Greg Kroah-Hartman
2024-10-08 12:06 ` [PATCH 6.10 339/482] ext4: mark fc as ineligible using an handle in ext4_xattr_set() Greg Kroah-Hartman
2024-10-08 12:06 ` [PATCH 6.10 340/482] ext4: fix off by one issue in alloc_flex_gd() Greg Kroah-Hartman
2024-10-08 12:06 ` [PATCH 6.10 341/482] parisc: Fix 64-bit userspace syscall path Greg Kroah-Hartman
2024-10-08 12:06 ` [PATCH 6.10 342/482] parisc: Allow mmap(MAP_STACK) memory to automatically expand upwards Greg Kroah-Hartman
2024-10-08 12:06 ` [PATCH 6.10 343/482] parisc: Fix stack start for ADDR_NO_RANDOMIZE personality Greg Kroah-Hartman
2024-10-08 12:06 ` [PATCH 6.10 344/482] drm/rockchip: vop: clear DMA stop bit on RK3066 Greg Kroah-Hartman
2024-10-08 12:06 ` [PATCH 6.10 345/482] of: address: Report error on resource bounds overflow Greg Kroah-Hartman
2024-10-08 12:06 ` [PATCH 6.10 346/482] of/irq: Support #msi-cells=<0> in of_msi_get_domain Greg Kroah-Hartman
2024-10-08 12:06 ` [PATCH 6.10 347/482] drm: omapdrm: Add missing check for alloc_ordered_workqueue Greg Kroah-Hartman
2024-10-08 12:06 ` [PATCH 6.10 348/482] resource: fix region_intersects() vs add_memory_driver_managed() Greg Kroah-Hartman
2024-10-08 12:06 ` [PATCH 6.10 349/482] jbd2: stop waiting for space when jbd2_cleanup_journal_tail() returns error Greg Kroah-Hartman
2024-10-08 12:06 ` [PATCH 6.10 350/482] jbd2: correctly compare tids with tid_geq function in jbd2_fc_begin_commit Greg Kroah-Hartman
2024-10-08 12:06 ` [PATCH 6.10 351/482] mm: krealloc: consider spare memory for __GFP_ZERO Greg Kroah-Hartman
2024-10-08 12:06 ` [PATCH 6.10 352/482] ocfs2: fix the la space leak when unmounting an ocfs2 volume Greg Kroah-Hartman
2024-10-08 12:06 ` [PATCH 6.10 353/482] ocfs2: fix uninit-value in ocfs2_get_block() Greg Kroah-Hartman
2024-10-08 12:06 ` [PATCH 6.10 354/482] ocfs2: reserve space for inline xattr before attaching reflink tree Greg Kroah-Hartman
2024-10-08 12:06 ` [PATCH 6.10 355/482] ocfs2: cancel dqi_sync_work before freeing oinfo Greg Kroah-Hartman
2024-10-08 12:06 ` [PATCH 6.10 356/482] ocfs2: remove unreasonable unlock in ocfs2_read_blocks Greg Kroah-Hartman
2024-10-08 12:07 ` [PATCH 6.10 357/482] ocfs2: fix null-ptr-deref when journal load failed Greg Kroah-Hartman
2024-10-08 12:07 ` [PATCH 6.10 358/482] ocfs2: fix possible null-ptr-deref in ocfs2_set_buffer_uptodate Greg Kroah-Hartman
2024-10-08 12:07 ` [PATCH 6.10 359/482] scripts/gdb: fix timerlist parsing issue Greg Kroah-Hartman
2024-10-08 12:07 ` [PATCH 6.10 360/482] scripts/gdb: add iteration function for rbtree Greg Kroah-Hartman
2024-10-08 12:07 ` [PATCH 6.10 361/482] scripts/gdb: fix lx-mounts command error Greg Kroah-Hartman
2024-10-08 12:07 ` [PATCH 6.10 362/482] arm64: fix selection of HAVE_DYNAMIC_FTRACE_WITH_ARGS Greg Kroah-Hartman
2024-10-08 12:07 ` [PATCH 6.10 363/482] arm64: Subscribe Microsoft Azure Cobalt 100 to erratum 3194386 Greg Kroah-Hartman
2024-10-08 12:07 ` [PATCH 6.10 364/482] sched/deadline: Comment sched_dl_entity::dl_server variable Greg Kroah-Hartman
2024-10-08 12:07 ` [PATCH 6.10 365/482] sched/core: Add clearing of ->dl_server in put_prev_task_balance() Greg Kroah-Hartman
2024-10-08 12:07 ` [PATCH 6.10 366/482] sched/core: Clear prev->dl_server in CFS pick fast path Greg Kroah-Hartman
2024-10-08 12:07 ` [PATCH 6.10 367/482] riscv: define ILLEGAL_POINTER_VALUE for 64bit Greg Kroah-Hartman
2024-10-08 12:07 ` [PATCH 6.10 368/482] exfat: fix memory leak in exfat_load_bitmap() Greg Kroah-Hartman
2024-10-08 12:07 ` [PATCH 6.10 369/482] perf python: Disable -Wno-cast-function-type-mismatch if present on clang Greg Kroah-Hartman
2024-10-08 12:07 ` [PATCH 6.10 370/482] perf hist: Update hist symbol when updating maps Greg Kroah-Hartman
2024-10-08 12:07 ` [PATCH 6.10 371/482] nfsd: fix delegation_blocked() to block correctly for at least 30 seconds Greg Kroah-Hartman
2024-10-08 12:07 ` [PATCH 6.10 372/482] nfsd: map the EBADMSG to nfserr_io to avoid warning Greg Kroah-Hartman
2024-10-08 12:07 ` [PATCH 6.10 373/482] NFSD: Fix NFSv4s PUTPUBFH operation Greg Kroah-Hartman
2024-10-08 12:07 ` [PATCH 6.10 374/482] i3c: master: svc: Fix use after free vulnerability in svc_i3c_master Driver Due to Race Condition Greg Kroah-Hartman
2024-10-08 12:07 ` [PATCH 6.10 375/482] sysctl: avoid spurious permanent empty tables Greg Kroah-Hartman
2024-10-08 12:07 ` [PATCH 6.10 376/482] RDMA/mana_ib: use the correct page size for mapping user-mode doorbell page Greg Kroah-Hartman
2024-10-08 12:07 ` [PATCH 6.10 377/482] drivers/perf: riscv: Align errno for unsupported perf event Greg Kroah-Hartman
2024-10-08 12:07 ` [PATCH 6.10 378/482] riscv: Fix kernel stack size when KASAN is enabled Greg Kroah-Hartman
2024-10-08 12:07 ` [PATCH 6.10 379/482] aoe: fix the potential use-after-free problem in more places Greg Kroah-Hartman
2024-10-08 12:07 ` [PATCH 6.10 380/482] media: imx335: Fix reset-gpio handling Greg Kroah-Hartman
2024-10-08 12:07 ` [PATCH 6.10 381/482] media: ov5675: Fix power on/off delay timings Greg Kroah-Hartman
2024-10-08 12:07 ` [PATCH 6.10 382/482] clk: rockchip: fix error for unknown clocks Greg Kroah-Hartman
2024-10-08 12:07 ` [PATCH 6.10 383/482] remoteproc: k3-r5: Fix error handling when power-up failed Greg Kroah-Hartman
2024-10-08 12:07 ` [PATCH 6.10 384/482] media: videobuf2: Drop minimum allocation requirement of 2 buffers Greg Kroah-Hartman
2024-10-08 12:07 ` [PATCH 6.10 385/482] clk: qcom: dispcc-sm8250: use CLK_SET_RATE_PARENT for branch clocks Greg Kroah-Hartman
2024-10-08 12:07 ` [PATCH 6.10 386/482] media: sun4i_csi: Implement link validate for sun4i_csi subdev Greg Kroah-Hartman
2024-10-08 12:07 ` [PATCH 6.10 387/482] clk: qcom: gcc-sm8450: Do not turn off PCIe GDSCs during gdsc_disable() Greg Kroah-Hartman
2024-10-08 12:07 ` [PATCH 6.10 388/482] media: uapi/linux/cec.h: cec_msg_set_reply_to: zero flags Greg Kroah-Hartman
2024-10-08 12:07 ` [PATCH 6.10 389/482] dt-bindings: clock: qcom: Add GPLL9 support on gcc-sc8180x Greg Kroah-Hartman
2024-10-08 12:07 ` [PATCH 6.10 390/482] clk: qcom: clk-rpmh: Fix overflow in BCM vote Greg Kroah-Hartman
2024-10-08 12:07 ` [PATCH 6.10 391/482] clk: samsung: exynos7885: Update CLKS_NR_FSYS after bindings fix Greg Kroah-Hartman
2024-10-08 12:07 ` [PATCH 6.10 392/482] clk: qcom: gcc-sm8150: De-register gcc_cpuss_ahb_clk_src Greg Kroah-Hartman
2024-10-08 12:07 ` [PATCH 6.10 393/482] media: venus: fix use after free bug in venus_remove due to race condition Greg Kroah-Hartman
2024-10-08 12:07 ` [PATCH 6.10 394/482] clk: qcom: gcc-sm8250: Do not turn off PCIe GDSCs during gdsc_disable() Greg Kroah-Hartman
2024-10-08 12:07 ` [PATCH 6.10 395/482] media: qcom: camss: Remove use_count guard in stop_streaming Greg Kroah-Hartman
2024-10-08 12:07 ` [PATCH 6.10 396/482] clk: qcom: gcc-sc8180x: Add GPLL9 support Greg Kroah-Hartman
2024-10-08 12:07 ` [PATCH 6.10 397/482] media: qcom: camss: Fix ordering of pm_runtime_enable Greg Kroah-Hartman
2024-10-08 12:07 ` [PATCH 6.10 398/482] clk: qcom: gcc-sc8180x: Fix the sdcc2 and sdcc4 clocks freq table Greg Kroah-Hartman
2024-10-08 12:07 ` [PATCH 6.10 399/482] clk: qcom: clk-alpha-pll: Fix CAL_L_VAL override for LUCID EVO PLL Greg Kroah-Hartman
2024-10-08 12:07 ` [PATCH 6.10 400/482] smb: client: use actual path when queryfs Greg Kroah-Hartman
2024-10-08 12:07 ` [PATCH 6.10 401/482] smb3: fix incorrect mode displayed for read-only files Greg Kroah-Hartman
2024-10-08 12:07 ` [PATCH 6.10 402/482] iio: magnetometer: ak8975: Fix reading for ak099xx sensors Greg Kroah-Hartman
2024-10-08 12:07 ` [PATCH 6.10 403/482] vrf: revert "vrf: Remove unnecessary RCU-bh critical section" Greg Kroah-Hartman
2024-10-08 12:07 ` [PATCH 6.10 404/482] net: gso: fix tcp fraglist segmentation after pull from frag_list Greg Kroah-Hartman
2024-10-08 12:07 ` [PATCH 6.10 405/482] gso: fix udp gso " Greg Kroah-Hartman
2024-10-08 12:07 ` [PATCH 6.10 406/482] tomoyo: fallback to realpath if symlinks pathname does not exist Greg Kroah-Hartman
2024-10-08 12:07 ` [PATCH 6.10 407/482] net: stmmac: Fix zero-division error when disabling tc cbs Greg Kroah-Hartman
2024-10-08 12:07 ` [PATCH 6.10 408/482] rtc: at91sam9: fix OF node leak in probe() error path Greg Kroah-Hartman
2024-10-08 12:07 ` [PATCH 6.10 409/482] Input: adp5589-keys - fix NULL pointer dereference Greg Kroah-Hartman
2024-10-08 12:07 ` [PATCH 6.10 410/482] Input: adp5589-keys - fix adp5589_gpio_get_value() Greg Kroah-Hartman
2024-10-08 12:07 ` [PATCH 6.10 411/482] cachefiles: fix dentry leak in cachefiles_open_file() Greg Kroah-Hartman
2024-10-08 12:07 ` [PATCH 6.10 412/482] ACPI: video: Add backlight=native quirk for Dell OptiPlex 5480 AIO Greg Kroah-Hartman
2024-10-08 12:07 ` [PATCH 6.10 413/482] ACPI: resource: Remove duplicate Asus E1504GAB IRQ override Greg Kroah-Hartman
2024-10-08 12:07 ` [PATCH 6.10 414/482] ACPI: resource: Loosen the Asus E1404GAB DMI match to also cover the E1404GA Greg Kroah-Hartman
2024-10-08 12:07 ` [PATCH 6.10 415/482] ACPI: resource: Add Asus Vivobook X1704VAP to irq1_level_low_skip_override[] Greg Kroah-Hartman
2024-10-08 12:07 ` [PATCH 6.10 416/482] ACPI: resource: Add Asus ExpertBook B2502CVA " Greg Kroah-Hartman
2024-10-08 12:08 ` [PATCH 6.10 417/482] btrfs: fix a NULL pointer dereference when failed to start a new trasacntion Greg Kroah-Hartman
2024-10-08 12:08 ` [PATCH 6.10 418/482] btrfs: drop the backref cache during relocation if we commit Greg Kroah-Hartman
2024-10-08 12:08 ` [PATCH 6.10 419/482] btrfs: send: fix invalid clone operation for file that got its size decreased Greg Kroah-Hartman
2024-10-08 12:08 ` [PATCH 6.10 420/482] btrfs: wait for fixup workers before stopping cleaner kthread during umount Greg Kroah-Hartman
2024-10-08 12:08 ` [PATCH 6.10 421/482] cpufreq: Avoid a bad reference count on CPU node Greg Kroah-Hartman
2024-10-08 12:08 ` [PATCH 6.10 422/482] gpio: davinci: fix lazy disable Greg Kroah-Hartman
2024-10-08 12:08 ` [PATCH 6.10 423/482] net: pcs: xpcs: fix the wrong register that was written back Greg Kroah-Hartman
2024-10-08 12:08 ` [PATCH 6.10 424/482] Bluetooth: hci_event: Align BR/EDR JUST_WORKS paring with LE Greg Kroah-Hartman
2024-10-08 12:08 ` [PATCH 6.10 425/482] mac802154: Fix potential RCU dereference issue in mac802154_scan_worker Greg Kroah-Hartman
2024-10-08 12:08 ` [PATCH 6.10 426/482] io_uring/net: harden multishot termination case for recv Greg Kroah-Hartman
2024-10-08 12:08 ` [PATCH 6.10 427/482] ceph: fix cap ref leak via netfs init_request Greg Kroah-Hartman
2024-10-08 12:08 ` [PATCH 6.10 428/482] tracing/hwlat: Fix a race during cpuhp processing Greg Kroah-Hartman
2024-10-08 12:08 ` [PATCH 6.10 429/482] tracing/timerlat: Drop interface_lock in stop_kthread() Greg Kroah-Hartman
2024-10-08 12:08 ` [PATCH 6.10 430/482] tracing/timerlat: Fix a race during cpuhp processing Greg Kroah-Hartman
2024-10-08 12:08 ` [PATCH 6.10 431/482] tracing/timerlat: Fix duplicated kthread creation due to CPU online/offline Greg Kroah-Hartman
2024-10-08 12:08 ` [PATCH 6.10 432/482] rtla: Fix the help text in osnoise and timerlat top tools Greg Kroah-Hartman
2024-10-08 12:08 ` [PATCH 6.10 433/482] firmware/sysfb: Disable sysfb for firmware buffers with unknown parent Greg Kroah-Hartman
2024-10-08 12:08 ` [PATCH 6.10 434/482] close_range(): fix the logics in descriptor table trimming Greg Kroah-Hartman
2024-10-08 12:08 ` [PATCH 6.10 435/482] drm/i915/gem: fix bitwise and logical AND mixup Greg Kroah-Hartman
2024-10-08 12:08 ` [PATCH 6.10 436/482] drm/panthor: Dont add write fences to the shared BOs Greg Kroah-Hartman
2024-10-08 12:08 ` [PATCH 6.10 437/482] drm/panthor: Fix access to uninitialized variable in tick_ctx_cleanup() Greg Kroah-Hartman
2024-10-08 12:08 ` [PATCH 6.10 438/482] drm/panthor: Dont declare a queue blocked if deferred operations are pending Greg Kroah-Hartman
2024-10-08 12:08 ` [PATCH 6.10 439/482] drm/sched: Fix dynamic job-flow control race Greg Kroah-Hartman
2024-10-08 12:08 ` [PATCH 6.10 440/482] drm/sched: Add locking to drm_sched_entity_modify_sched Greg Kroah-Hartman
2024-10-08 12:08 ` [PATCH 6.10 441/482] drm/sched: Always wake up correct scheduler in drm_sched_entity_push_job Greg Kroah-Hartman
2024-10-08 12:08 ` [PATCH 6.10 442/482] drm/sched: Always increment correct scheduler score Greg Kroah-Hartman
2024-10-08 12:08 ` [PATCH 6.10 443/482] drm/amd/display: Add HDR workaround for specific eDP Greg Kroah-Hartman
2024-10-08 12:08 ` [PATCH 6.10 444/482] drm/amd/display: update DML2 policy EnhancedPrefetchScheduleAccelerationFinal DCN35 Greg Kroah-Hartman
2024-10-08 12:08 ` [PATCH 6.10 445/482] drm/amd/display: Fix system hang while resume with TBT monitor Greg Kroah-Hartman
2024-10-08 12:08 ` [PATCH 6.10 446/482] cpufreq: intel_pstate: Make hwp_notify_lock a raw spinlock Greg Kroah-Hartman
2024-10-08 12:08 ` [PATCH 6.10 447/482] kconfig: qconf: fix buffer overflow in debug links Greg Kroah-Hartman
2024-10-08 12:08 ` [PATCH 6.10 448/482] arm64: cputype: Add Neoverse-N3 definitions Greg Kroah-Hartman
2024-10-08 12:08 ` [PATCH 6.10 449/482] arm64: errata: Expand speculative SSBS workaround once more Greg Kroah-Hartman
2024-10-08 12:08 ` [PATCH 6.10 450/482] uprobes: fix kernel info leak via "[uprobes]" vma Greg Kroah-Hartman
2024-10-08 12:08 ` [PATCH 6.10 451/482] mm: z3fold: deprecate CONFIG_Z3FOLD Greg Kroah-Hartman
2024-10-08 12:08 ` [PATCH 6.10 452/482] drm/amd/display: Allow backlight to go below `AMDGPU_DM_DEFAULT_MIN_BACKLIGHT` Greg Kroah-Hartman
2024-10-08 12:08 ` [PATCH 6.10 453/482] build-id: require program headers to be right after ELF header Greg Kroah-Hartman
2024-10-08 12:08 ` [PATCH 6.10 454/482] lib/buildid: harden build ID parsing logic Greg Kroah-Hartman
2024-10-08 12:08 ` [PATCH 6.10 455/482] drm/xe: Delete unused GuC submission_state.suspend Greg Kroah-Hartman
2024-10-08 12:08 ` [PATCH 6.10 456/482] drm/xe: fix UAF around queue destruction Greg Kroah-Hartman
2024-10-08 12:08 ` [PATCH 6.10 457/482] sched: psi: fix bogus pressure spikes from aggregation race Greg Kroah-Hartman
2024-10-08 12:08 ` [PATCH 6.10 458/482] sunrpc: change sp_nrthreads from atomic_t to unsigned int Greg Kroah-Hartman
2024-10-08 12:08 ` [PATCH 6.10 459/482] NFSD: Async COPY result needs to return a write verifier Greg Kroah-Hartman
2024-10-08 12:08 ` [PATCH 6.10 460/482] NFSD: Limit the number of concurrent async COPY operations Greg Kroah-Hartman
2024-10-08 12:08 ` [PATCH 6.10 461/482] net: mana: Add support for page sizes other than 4KB on ARM64 Greg Kroah-Hartman
2024-10-08 12:08 ` [PATCH 6.10 462/482] RDMA/mana_ib: use the correct page table index based on hardware page size Greg Kroah-Hartman
2024-10-08 12:08 ` [PATCH 6.10 463/482] remoteproc: k3-r5: Acquire mailbox handle during probe routine Greg Kroah-Hartman
2024-10-08 12:08 ` [PATCH 6.10 464/482] remoteproc: k3-r5: Delay notification of wakeup event Greg Kroah-Hartman
2024-10-08 12:08 ` [PATCH 6.10 465/482] iio: pressure: bmp280: Improve indentation and line wrapping Greg Kroah-Hartman
2024-10-08 12:08 ` [PATCH 6.10 466/482] iio: pressure: bmp280: Use BME prefix for BME280 specifics Greg Kroah-Hartman
2024-10-08 12:08 ` [PATCH 6.10 467/482] iio: pressure: bmp280: Fix regmap for BMP280 device Greg Kroah-Hartman
2024-10-08 12:08 ` [PATCH 6.10 468/482] iio: pressure: bmp280: Fix waiting time for BMP3xx configuration Greg Kroah-Hartman
2024-10-08 12:08 ` [PATCH 6.10 469/482] r8169: Fix spelling mistake: "tx_underun" -> "tx_underrun" Greg Kroah-Hartman
2024-10-08 12:08 ` [PATCH 6.10 470/482] r8169: add tally counter fields added with RTL8125 Greg Kroah-Hartman
2024-10-08 12:08 ` [PATCH 6.10 471/482] ACPI: battery: Simplify battery hook locking Greg Kroah-Hartman
2024-10-08 12:08 ` [PATCH 6.10 472/482] ACPI: battery: Fix possible crash when unregistering a battery hook Greg Kroah-Hartman
2024-10-08 12:08 ` [PATCH 6.10 473/482] drm/rockchip: vop: enable VOP_FEATURE_INTERNAL_RGB on RK3066 Greg Kroah-Hartman
2024-10-08 12:08 ` [PATCH 6.10 474/482] Revert "drm/amd/display: Skip Recompute DSC Params if no Stream on Link" Greg Kroah-Hartman
2024-10-08 12:08 ` [PATCH 6.10 475/482] drm/sched: revert "Always increment correct scheduler score" Greg Kroah-Hartman
2024-10-08 12:08 ` [PATCH 6.10 476/482] rxrpc: Fix a race between socket set up and I/O thread creation Greg Kroah-Hartman
2024-10-08 12:09 ` [PATCH 6.10 477/482] vhost/scsi: null-ptr-dereference in vhost_scsi_get_req() Greg Kroah-Hartman
2024-10-08 12:09 ` [PATCH 6.10 478/482] ALSA: control: Fix leftover snd_power_unref() Greg Kroah-Hartman
2024-10-08 12:09 ` [PATCH 6.10 479/482] crypto: octeontx* - Select CRYPTO_AUTHENC Greg Kroah-Hartman
2024-10-08 12:09 ` [PATCH 6.10 480/482] drm/amd/display: Revert Avoid overflow assignment Greg Kroah-Hartman
2024-10-08 12:09 ` [PATCH 6.10 481/482] perf report: Fix segfault when sym sort key is not used Greg Kroah-Hartman
2024-10-08 12:09 ` [PATCH 6.10 482/482] drm/amd/display: enable_hpo_dp_link_output: Check link_res->hpo_dp_link_enc before using it Greg Kroah-Hartman
2024-10-08 16:05 ` [PATCH 6.10 000/482] 6.10.14-rc1 review Peter Schneider
2024-10-08 17:25 ` Mark Brown
2024-10-08 18:16 ` Florian Fainelli
2024-10-08 22:03 ` Shuah Khan
2024-10-09  6:22 ` Naresh Kamboju
2024-10-09 11:35   ` Anders Roxell
2024-10-09 11:53     ` [LTP] " Cyril Hrubis
2024-10-09 12:03       ` Jan Stancek
2024-10-09 22:03         ` Sasha Levin
2024-10-09 14:58 ` Jon Hunter
2024-10-09 21:59   ` Sasha Levin
2024-10-10 10:40     ` Jon Hunter
2024-10-10 12:13       ` Jon Hunter
2024-10-09 22:24 ` Kexy Biscuit
2024-10-10  0:04 ` Ron Economos
2024-10-10  8:58 ` Muhammad Usama Anjum
2024-10-10 17:18   ` Peter Schneider
2024-10-10 11:16 ` Miguel Ojeda
2024-10-11 16:22 ` Guenter Roeck

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=20241008115657.200419994@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=alexander.deucher@amd.com \
    --cc=jesse.zhang@amd.com \
    --cc=patches@lists.linux.dev \
    --cc=sashal@kernel.org \
    --cc=stable@vger.kernel.org \
    --cc=tim.huang@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;
as well as URLs for NNTP newsgroup(s).