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,
	Mario Limonciello <mario.limonciello@amd.com>,
	Alex Deucher <alexander.deucher@amd.com>
Subject: [PATCH 6.5 477/491] drm/amdgpu: dont use pci_is_thunderbolt_attached()
Date: Fri, 24 Nov 2023 17:51:53 +0000	[thread overview]
Message-ID: <20231124172038.973822125@linuxfoundation.org> (raw)
In-Reply-To: <20231124172024.664207345@linuxfoundation.org>

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

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

From: Alex Deucher <alexander.deucher@amd.com>

commit 7b1c6263eaf4fd64ffe1cafdc504a42ee4bfbb33 upstream.

It's only valid on Intel systems with the Intel VSEC.
Use dev_is_removable() instead.  This should do the right
thing regardless of the platform.

Link: https://gitlab.freedesktop.org/drm/amd/-/issues/2925
Reviewed-by: Mario Limonciello <mario.limonciello@amd.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Cc: stable@vger.kernel.org
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
 drivers/gpu/drm/amd/amdgpu/amdgpu_device.c |    8 ++++----
 drivers/gpu/drm/amd/amdgpu/nbio_v2_3.c     |    5 +++--
 2 files changed, 7 insertions(+), 6 deletions(-)

--- a/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c
+++ b/drivers/gpu/drm/amd/amdgpu/amdgpu_device.c
@@ -43,6 +43,7 @@
 #include <drm/drm_fb_helper.h>
 #include <drm/drm_probe_helper.h>
 #include <drm/amdgpu_drm.h>
+#include <linux/device.h>
 #include <linux/vgaarb.h>
 #include <linux/vga_switcheroo.h>
 #include <linux/efi.h>
@@ -2233,7 +2234,6 @@ out:
  */
 static int amdgpu_device_ip_early_init(struct amdgpu_device *adev)
 {
-	struct drm_device *dev = adev_to_drm(adev);
 	struct pci_dev *parent;
 	int i, r;
 	bool total;
@@ -2304,7 +2304,7 @@ static int amdgpu_device_ip_early_init(s
 	    (amdgpu_is_atpx_hybrid() ||
 	     amdgpu_has_atpx_dgpu_power_cntl()) &&
 	    ((adev->flags & AMD_IS_APU) == 0) &&
-	    !pci_is_thunderbolt_attached(to_pci_dev(dev->dev)))
+	    !dev_is_removable(&adev->pdev->dev))
 		adev->flags |= AMD_IS_PX;
 
 	if (!(adev->flags & AMD_IS_APU)) {
@@ -4132,7 +4132,7 @@ fence_driver_init:
 
 	px = amdgpu_device_supports_px(ddev);
 
-	if (px || (!pci_is_thunderbolt_attached(adev->pdev) &&
+	if (px || (!dev_is_removable(&adev->pdev->dev) &&
 				apple_gmux_detect(NULL, NULL)))
 		vga_switcheroo_register_client(adev->pdev,
 					       &amdgpu_switcheroo_ops, px);
@@ -4278,7 +4278,7 @@ void amdgpu_device_fini_sw(struct amdgpu
 
 	px = amdgpu_device_supports_px(adev_to_drm(adev));
 
-	if (px || (!pci_is_thunderbolt_attached(adev->pdev) &&
+	if (px || (!dev_is_removable(&adev->pdev->dev) &&
 				apple_gmux_detect(NULL, NULL)))
 		vga_switcheroo_unregister_client(adev->pdev);
 
--- a/drivers/gpu/drm/amd/amdgpu/nbio_v2_3.c
+++ b/drivers/gpu/drm/amd/amdgpu/nbio_v2_3.c
@@ -28,6 +28,7 @@
 #include "nbio/nbio_2_3_offset.h"
 #include "nbio/nbio_2_3_sh_mask.h"
 #include <uapi/linux/kfd_ioctl.h>
+#include <linux/device.h>
 #include <linux/pci.h>
 
 #define smnPCIE_CONFIG_CNTL	0x11180044
@@ -361,7 +362,7 @@ static void nbio_v2_3_enable_aspm(struct
 
 		data |= NAVI10_PCIE__LC_L0S_INACTIVITY_DEFAULT << PCIE_LC_CNTL__LC_L0S_INACTIVITY__SHIFT;
 
-		if (pci_is_thunderbolt_attached(adev->pdev))
+		if (dev_is_removable(&adev->pdev->dev))
 			data |= NAVI10_PCIE__LC_L1_INACTIVITY_TBT_DEFAULT  << PCIE_LC_CNTL__LC_L1_INACTIVITY__SHIFT;
 		else
 			data |= NAVI10_PCIE__LC_L1_INACTIVITY_DEFAULT << PCIE_LC_CNTL__LC_L1_INACTIVITY__SHIFT;
@@ -480,7 +481,7 @@ static void nbio_v2_3_program_aspm(struc
 
 	def = data = RREG32_PCIE(smnPCIE_LC_CNTL);
 	data |= NAVI10_PCIE__LC_L0S_INACTIVITY_DEFAULT << PCIE_LC_CNTL__LC_L0S_INACTIVITY__SHIFT;
-	if (pci_is_thunderbolt_attached(adev->pdev))
+	if (dev_is_removable(&adev->pdev->dev))
 		data |= NAVI10_PCIE__LC_L1_INACTIVITY_TBT_DEFAULT  << PCIE_LC_CNTL__LC_L1_INACTIVITY__SHIFT;
 	else
 		data |= NAVI10_PCIE__LC_L1_INACTIVITY_DEFAULT << PCIE_LC_CNTL__LC_L1_INACTIVITY__SHIFT;



  parent reply	other threads:[~2023-11-24 18:45 UTC|newest]

Thread overview: 498+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-11-24 17:43 [PATCH 6.5 000/491] 6.5.13-rc1 review Greg Kroah-Hartman
2023-11-24 17:43 ` [PATCH 6.5 001/491] locking/ww_mutex/test: Fix potential workqueue corruption Greg Kroah-Hartman
2023-11-24 17:43 ` [PATCH 6.5 002/491] btrfs: abort transaction on generation mismatch when marking eb as dirty Greg Kroah-Hartman
2023-11-24 17:43 ` [PATCH 6.5 003/491] lib/generic-radix-tree.c: Dont overflow in peek() Greg Kroah-Hartman
2023-11-24 17:44 ` [PATCH 6.5 004/491] x86/retpoline: Make sure there are no unconverted return thunks due to KCSAN Greg Kroah-Hartman
2023-11-24 17:44 ` [PATCH 6.5 005/491] perf/core: Bail out early if the request AUX area is out of bound Greg Kroah-Hartman
2023-11-24 17:44 ` [PATCH 6.5 006/491] rcu: Dump memory object info if callback function is invalid Greg Kroah-Hartman
2023-11-24 17:44 ` [PATCH 6.5 007/491] srcu: Fix srcu_struct node grpmask overflow on 64-bit systems Greg Kroah-Hartman
2023-11-24 17:44 ` [PATCH 6.5 008/491] selftests/lkdtm: Disable CONFIG_UBSAN_TRAP in test config Greg Kroah-Hartman
2023-11-24 17:44 ` [PATCH 6.5 009/491] clocksource/drivers/timer-imx-gpt: Fix potential memory leak Greg Kroah-Hartman
2023-11-24 17:44 ` [PATCH 6.5 010/491] clocksource/drivers/timer-atmel-tcb: Fix initialization on SAM9 hardware Greg Kroah-Hartman
2023-11-24 17:44 ` [PATCH 6.5 011/491] srcu: Only accelerate on enqueue time Greg Kroah-Hartman
2023-11-24 17:44 ` [PATCH 6.5 012/491] smp,csd: Throw an error if a CSD lock is stuck for too long Greg Kroah-Hartman
2023-11-24 17:44 ` [PATCH 6.5 013/491] cpu/hotplug: Dont offline the last non-isolated CPU Greg Kroah-Hartman
2023-11-24 17:44 ` [PATCH 6.5 014/491] workqueue: Provide one lock class key per work_on_cpu() callsite Greg Kroah-Hartman
2023-11-24 17:44 ` [PATCH 6.5 015/491] x86/mm: Drop the 4 MB restriction on minimal NUMA node memory size Greg Kroah-Hartman
2023-11-24 17:44 ` [PATCH 6.5 016/491] wifi: plfxlc: fix clang-specific fortify warning Greg Kroah-Hartman
2023-11-24 17:44 ` [PATCH 6.5 017/491] wifi: ath12k: Ignore fragments from uninitialized peer in dp Greg Kroah-Hartman
2023-11-24 17:44 ` [PATCH 6.5 018/491] wifi: mac80211_hwsim: fix clang-specific fortify warning Greg Kroah-Hartman
2023-11-24 17:44 ` [PATCH 6.5 019/491] wifi: mac80211: dont return unset power in ieee80211_get_tx_power() Greg Kroah-Hartman
2023-11-24 17:44 ` [PATCH 6.5 020/491] atl1c: Work around the DMA RX overflow issue Greg Kroah-Hartman
2023-11-24 17:44 ` [PATCH 6.5 021/491] bpf: Detect IP == ksym.end as part of BPF program Greg Kroah-Hartman
2023-11-24 17:44 ` [PATCH 6.5 022/491] wifi: ath9k: fix clang-specific fortify warnings Greg Kroah-Hartman
2023-11-24 17:44 ` [PATCH 6.5 023/491] wifi: ath12k: fix possible out-of-bound read in ath12k_htt_pull_ppdu_stats() Greg Kroah-Hartman
2023-11-24 17:44 ` [PATCH 6.5 024/491] wifi: ath10k: fix clang-specific fortify warning Greg Kroah-Hartman
2023-11-24 17:44 ` [PATCH 6.5 025/491] wifi: ath12k: fix possible out-of-bound write in ath12k_wmi_ext_hal_reg_caps() Greg Kroah-Hartman
2023-11-24 17:44 ` [PATCH 6.5 026/491] ACPI: APEI: Fix AER info corruption when error status data has multiple sections Greg Kroah-Hartman
2023-11-24 17:44 ` [PATCH 6.5 027/491] net: sfp: add quirk for Fiberstone GPON-ONU-34-20BI Greg Kroah-Hartman
2023-11-24 17:44 ` [PATCH 6.5 028/491] wifi: mt76: mt7921e: Support MT7992 IP in Xiaomi Redmibook 15 Pro (2023) Greg Kroah-Hartman
2023-11-24 17:44 ` [PATCH 6.5 029/491] net: annotate data-races around sk->sk_tx_queue_mapping Greg Kroah-Hartman
2023-11-24 17:44 ` [PATCH 6.5 030/491] net: annotate data-races around sk->sk_dst_pending_confirm Greg Kroah-Hartman
2023-11-24 17:44 ` [PATCH 6.5 031/491] wifi: ath12k: mhi: fix potential memory leak in ath12k_mhi_register() Greg Kroah-Hartman
2023-11-24 17:44 ` [PATCH 6.5 032/491] wifi: ath10k: Dont touch the CE interrupt registers after power up Greg Kroah-Hartman
2023-11-24 17:44 ` [PATCH 6.5 033/491] net: sfp: add quirk for FSs 2.5G copper SFP Greg Kroah-Hartman
2023-11-24 17:44 ` [PATCH 6.5 034/491] vsock: read from sockets error queue Greg Kroah-Hartman
2023-11-24 17:44 ` [PATCH 6.5 035/491] bpf: Ensure proper register state printing for cond jumps Greg Kroah-Hartman
2023-11-24 17:44 ` [PATCH 6.5 036/491] wifi: iwlwifi: mvm: fix size check for fw_link_id Greg Kroah-Hartman
2023-11-24 17:44 ` [PATCH 6.5 037/491] Bluetooth: btusb: Add date->evt_skb is NULL check Greg Kroah-Hartman
2023-11-24 17:44 ` [PATCH 6.5 038/491] Bluetooth: Fix double free in hci_conn_cleanup Greg Kroah-Hartman
2023-11-24 17:44 ` [PATCH 6.5 039/491] ACPI: EC: Add quirk for HP 250 G7 Notebook PC Greg Kroah-Hartman
2023-11-24 17:44 ` [PATCH 6.5 040/491] tsnep: Fix tsnep_request_irq() format-overflow warning Greg Kroah-Hartman
2023-11-24 17:44 ` [PATCH 6.5 041/491] gpiolib: acpi: Add a ignore interrupt quirk for Peaq C1010 Greg Kroah-Hartman
2023-11-24 17:44 ` [PATCH 6.5 042/491] platform/chrome: kunit: initialize lock for fake ec_dev Greg Kroah-Hartman
2023-11-24 17:44 ` [PATCH 6.5 043/491] of: address: Fix address translation when address-size is greater than 2 Greg Kroah-Hartman
2023-11-24 17:44 ` [PATCH 6.5 044/491] platform/x86: thinkpad_acpi: Add battery quirk for Thinkpad X120e Greg Kroah-Hartman
2023-11-24 17:44 ` [PATCH 6.5 045/491] drm/gma500: Fix call trace when psb_gem_mm_init() fails Greg Kroah-Hartman
2023-11-24 17:44 ` [PATCH 6.5 046/491] drm/amdkfd: ratelimited SQ interrupt messages Greg Kroah-Hartman
2023-11-24 17:44 ` [PATCH 6.5 047/491] drm/komeda: drop all currently held locks if deadlock happens Greg Kroah-Hartman
2023-11-24 17:44 ` [PATCH 6.5 048/491] drm/amd/display: Blank phantom OTG before enabling Greg Kroah-Hartman
2023-11-24 17:44 ` [PATCH 6.5 049/491] drm/amd/display: Dont lock phantom pipe on disabling Greg Kroah-Hartman
2023-11-24 17:44 ` [PATCH 6.5 050/491] drm/amd/display: add seamless pipe topology transition check Greg Kroah-Hartman
2023-11-24 17:44 ` [PATCH 6.5 051/491] drm/edid: Fixup h/vsync_end instead of h/vtotal Greg Kroah-Hartman
2023-11-24 17:44 ` [PATCH 6.5 052/491] md: dont rely on mddev->pers to be set in mddev_suspend() Greg Kroah-Hartman
2023-11-24 17:44 ` [PATCH 6.5 053/491] drm/amdgpu: not to save bo in the case of RAS err_event_athub Greg Kroah-Hartman
2023-11-24 17:44 ` [PATCH 6.5 054/491] drm/amdkfd: Fix a race condition of vram buffer unref in svm code Greg Kroah-Hartman
2023-11-24 17:44 ` [PATCH 6.5 055/491] drm/amd: Update `update_pcie_parameters` functions to use uint8_t arguments Greg Kroah-Hartman
2023-11-24 17:44 ` [PATCH 6.5 056/491] drm/amd/display: use full update for clip size increase of large plane source Greg Kroah-Hartman
2023-11-24 17:44 ` [PATCH 6.5 057/491] string.h: add array-wrappers for (v)memdup_user() Greg Kroah-Hartman
2023-11-24 17:44 ` [PATCH 6.5 058/491] kernel: kexec: copy user-array safely Greg Kroah-Hartman
2023-11-24 17:44 ` [PATCH 6.5 059/491] kernel: watch_queue: " Greg Kroah-Hartman
2023-11-24 17:44 ` [PATCH 6.5 060/491] drm_lease.c: " Greg Kroah-Hartman
2023-11-24 17:44 ` [PATCH 6.5 061/491] drm: vmwgfx_surface.c: " Greg Kroah-Hartman
2023-11-24 17:44 ` [PATCH 6.5 062/491] drm/msm/dp: skip validity check for DP CTS EDID checksum Greg Kroah-Hartman
2023-11-24 17:44 ` [PATCH 6.5 063/491] drm/amd: Fix UBSAN array-index-out-of-bounds for SMU7 Greg Kroah-Hartman
2023-11-24 17:45 ` [PATCH 6.5 064/491] drm/amd: Fix UBSAN array-index-out-of-bounds for Polaris and Tonga Greg Kroah-Hartman
2023-11-24 17:45 ` [PATCH 6.5 065/491] drm/amdgpu: Fix potential null pointer derefernce Greg Kroah-Hartman
2023-11-24 17:45 ` [PATCH 6.5 066/491] drm/panel: fix a possible null pointer dereference Greg Kroah-Hartman
2023-11-24 17:45 ` [PATCH 6.5 067/491] drm/panel/panel-tpo-tpg110: " Greg Kroah-Hartman
2023-11-24 17:45 ` [PATCH 6.5 068/491] drm/radeon: " Greg Kroah-Hartman
2023-11-24 17:45 ` [PATCH 6.5 069/491] drm/amdgpu/vkms: " Greg Kroah-Hartman
2023-11-24 17:45 ` [PATCH 6.5 070/491] drm/panel: st7703: Pick different reset sequence Greg Kroah-Hartman
2023-11-24 17:45 ` [PATCH 6.5 071/491] drm/amdkfd: Fix shift out-of-bounds issue Greg Kroah-Hartman
2023-11-24 17:45 ` [PATCH 6.5 072/491] drm/amdgpu: Fix a null pointer access when the smc_rreg pointer is NULL Greg Kroah-Hartman
2023-11-24 17:45 ` [PATCH 6.5 073/491] drm/amd: Disable PP_PCIE_DPM_MASK when dynamic speed switching not supported Greg Kroah-Hartman
2023-11-24 17:45 ` [PATCH 6.5 074/491] drm/amd/display: fix num_ways overflow error Greg Kroah-Hartman
2023-11-24 17:45 ` [PATCH 6.5 075/491] drm/amd: check num of link levels when update pcie param Greg Kroah-Hartman
2023-11-24 17:45 ` [PATCH 6.5 076/491] arm64: dts: ls208xa: use a pseudo-bus to constrain usb dma size Greg Kroah-Hartman
2023-11-24 17:45 ` [PATCH 6.5 077/491] selftests/efivarfs: create-read: fix a resource leak Greg Kroah-Hartman
2023-11-24 17:45 ` [PATCH 6.5 078/491] ASoC: mediatek: mt8188-mt6359: support dynamic pinctrl Greg Kroah-Hartman
2023-11-24 17:45 ` [PATCH 6.5 079/491] ASoC: soc-card: Add storage for PCI SSID Greg Kroah-Hartman
2023-11-24 17:45 ` [PATCH 6.5 080/491] ASoC: SOF: Pass PCI SSID to machine driver Greg Kroah-Hartman
2023-11-24 17:45 ` [PATCH 6.5 081/491] crypto: pcrypt - Fix hungtask for PADATA_RESET Greg Kroah-Hartman
2023-11-24 17:45 ` [PATCH 6.5 082/491] ALSA: scarlett2: Move USB IDs out from device_info struct Greg Kroah-Hartman
2023-11-24 17:45 ` [PATCH 6.5 083/491] ASoC: SOF: ipc4: handle EXCEPTION_CAUGHT notification from firmware Greg Kroah-Hartman
2023-11-24 17:45 ` [PATCH 6.5 084/491] RDMA/hfi1: Use FIELD_GET() to extract Link Width Greg Kroah-Hartman
2023-11-24 17:45 ` [PATCH 6.5 085/491] scsi: hisi_sas: Set debugfs_dir pointer to NULL after removing debugfs Greg Kroah-Hartman
2023-11-24 17:45 ` [PATCH 6.5 086/491] scsi: ibmvfc: Remove BUG_ON in the case of an empty event pool Greg Kroah-Hartman
2023-11-24 17:45 ` [PATCH 6.5 087/491] fs/jfs: Add check for negative db_l2nbperpage Greg Kroah-Hartman
2023-11-24 17:45 ` [PATCH 6.5 088/491] fs/jfs: Add validity check for db_maxag and db_agpref Greg Kroah-Hartman
2023-11-24 17:45 ` [PATCH 6.5 089/491] jfs: fix array-index-out-of-bounds in dbFindLeaf Greg Kroah-Hartman
2023-11-24 17:45 ` [PATCH 6.5 090/491] jfs: fix array-index-out-of-bounds in diAlloc Greg Kroah-Hartman
2023-11-24 17:45 ` [PATCH 6.5 091/491] HID: lenovo: Detect quirk-free fw on cptkbd and stop applying workaround Greg Kroah-Hartman
2023-11-24 17:45 ` [PATCH 6.5 092/491] ARM: 9320/1: fix stack depot IRQ stack filter Greg Kroah-Hartman
2023-11-24 17:45 ` [PATCH 6.5 093/491] ALSA: hda: Fix possible null-ptr-deref when assigning a stream Greg Kroah-Hartman
2023-11-24 17:45 ` [PATCH 6.5 094/491] gpiolib: of: Add quirk for mt2701-cs42448 ASoC sound Greg Kroah-Hartman
2023-11-24 17:45 ` [PATCH 6.5 095/491] PCI: tegra194: Use FIELD_GET()/FIELD_PREP() with Link Width fields Greg Kroah-Hartman
2023-11-24 17:45 ` [PATCH 6.5 096/491] PCI: mvebu: Use FIELD_PREP() with Link Width Greg Kroah-Hartman
2023-11-24 17:45 ` [PATCH 6.5 097/491] atm: iphase: Do PCI error checks on own line Greg Kroah-Hartman
2023-11-24 17:45 ` [PATCH 6.5 098/491] PCI: Do error check on own line to split long "if" conditions Greg Kroah-Hartman
2023-11-24 17:45 ` [PATCH 6.5 099/491] scsi: libfc: Fix potential NULL pointer dereference in fc_lport_ptp_setup() Greg Kroah-Hartman
2023-11-24 17:45 ` [PATCH 6.5 100/491] PCI: Use FIELD_GET() to extract Link Width Greg Kroah-Hartman
2023-11-24 17:45 ` [PATCH 6.5 101/491] PCI: Extract ATS disabling to a helper function Greg Kroah-Hartman
2023-11-24 17:45 ` [PATCH 6.5 102/491] PCI: Disable ATS for specific Intel IPU E2000 devices Greg Kroah-Hartman
2023-11-24 17:45 ` [PATCH 6.5 103/491] PCI: dwc: Add dw_pcie_link_set_max_link_width() Greg Kroah-Hartman
2023-11-24 17:45 ` [PATCH 6.5 104/491] PCI: dwc: Add missing PCI_EXP_LNKCAP_MLW handling Greg Kroah-Hartman
2023-11-24 17:45 ` [PATCH 6.5 105/491] misc: pci_endpoint_test: Add Device ID for R-Car S4-8 PCIe controller Greg Kroah-Hartman
2023-11-24 17:45 ` [PATCH 6.5 106/491] PCI: Use FIELD_GET() in Sapphire RX 5600 XT Pulse quirk Greg Kroah-Hartman
2023-11-24 17:45 ` [PATCH 6.5 107/491] ASoC: Intel: soc-acpi-cht: Add Lenovo Yoga Tab 3 Pro YT3-X90 quirk Greg Kroah-Hartman
2023-11-24 17:45 ` [PATCH 6.5 108/491] crypto: hisilicon/qm - prevent soft lockup in receive loop Greg Kroah-Hartman
2023-11-24 17:45 ` [PATCH 6.5 109/491] HID: Add quirk for Dell Pro Wireless Keyboard and Mouse KM5221W Greg Kroah-Hartman
2023-11-24 17:45 ` [PATCH 6.5 110/491] exfat: support handle zero-size directory Greg Kroah-Hartman
2023-11-24 17:45 ` [PATCH 6.5 111/491] mfd: intel-lpss: Add Intel Lunar Lake-M PCI IDs Greg Kroah-Hartman
2023-11-24 17:45 ` [PATCH 6.5 112/491] iio: adc: stm32-adc: harden against NULL pointer deref in stm32_adc_probe() Greg Kroah-Hartman
2023-11-24 17:45 ` [PATCH 6.5 113/491] thunderbolt: Apply USB 3.x bandwidth quirk only in software connection manager Greg Kroah-Hartman
2023-11-24 17:45 ` [PATCH 6.5 114/491] tty: vcc: Add check for kstrdup() in vcc_probe() Greg Kroah-Hartman
2023-11-24 17:45 ` [PATCH 6.5 115/491] dt-bindings: phy: qcom,snps-eusb2-repeater: Add magic tuning overrides Greg Kroah-Hartman
2023-11-24 17:45 ` [PATCH 6.5 116/491] phy: qualcomm: phy-qcom-eusb2-repeater: Use regmap_fields Greg Kroah-Hartman
2023-11-24 17:45 ` [PATCH 6.5 117/491] phy: qualcomm: phy-qcom-eusb2-repeater: Zero out untouched tuning regs Greg Kroah-Hartman
2023-11-24 17:45 ` [PATCH 6.5 118/491] usb: dwc3: core: configure TX/RX threshold for DWC3_IP Greg Kroah-Hartman
2023-11-24 17:45 ` [PATCH 6.5 119/491] usb: ucsi: glink: use the connector orientation GPIO to provide switch events Greg Kroah-Hartman
2023-11-24 17:45 ` [PATCH 6.5 120/491] soundwire: dmi-quirks: update HP Omen match Greg Kroah-Hartman
2023-11-24 17:45 ` [PATCH 6.5 121/491] f2fs: fix error path of __f2fs_build_free_nids Greg Kroah-Hartman
2023-11-24 17:45 ` [PATCH 6.5 122/491] f2fs: fix error handling of __get_node_page Greg Kroah-Hartman
2023-11-24 17:45 ` [PATCH 6.5 123/491] usb: host: xhci: Avoid XHCI resume delay if SSUSB device is not present Greg Kroah-Hartman
2023-11-24 17:46 ` [PATCH 6.5 124/491] usb: gadget: f_ncm: Always set current gadget in ncm_bind() Greg Kroah-Hartman
2023-11-24 17:46 ` [PATCH 6.5 125/491] 9p/trans_fd: Annotate data-racy writes to file::f_flags Greg Kroah-Hartman
2023-11-24 17:46 ` [PATCH 6.5 126/491] 9p: v9fs_listxattr: fix %s null argument warning Greg Kroah-Hartman
2023-11-24 17:46 ` [PATCH 6.5 127/491] i3c: mipi-i3c-hci: Fix out of bounds access in hci_dma_irq_handler Greg Kroah-Hartman
2023-11-24 17:46 ` [PATCH 6.5 128/491] i2c: i801: Add support for Intel Birch Stream SoC Greg Kroah-Hartman
2023-11-24 17:46 ` [PATCH 6.5 129/491] i2c: fix memleak in i2c_new_client_device() Greg Kroah-Hartman
2023-11-24 17:46 ` [PATCH 6.5 130/491] i2c: sun6i-p2wi: Prevent potential division by zero Greg Kroah-Hartman
2023-11-24 17:46 ` [PATCH 6.5 131/491] virtio-blk: fix implicit overflow on virtio_max_dma_size Greg Kroah-Hartman
2023-11-24 17:46 ` [PATCH 6.5 132/491] i3c: master: mipi-i3c-hci: Fix a kernel panic for accessing DAT_data Greg Kroah-Hartman
2023-11-24 17:46 ` [PATCH 6.5 133/491] media: gspca: cpia1: shift-out-of-bounds in set_flicker Greg Kroah-Hartman
2023-11-24 17:46 ` [PATCH 6.5 134/491] media: vivid: avoid integer overflow Greg Kroah-Hartman
2023-11-24 17:46 ` [PATCH 6.5 135/491] media: ipu-bridge: increase sensor_name size Greg Kroah-Hartman
2023-11-24 17:46 ` [PATCH 6.5 136/491] gfs2: ignore negated quota changes Greg Kroah-Hartman
2023-11-24 17:46 ` [PATCH 6.5 137/491] gfs2: fix an oops in gfs2_permission Greg Kroah-Hartman
2023-11-24 17:46 ` [PATCH 6.5 138/491] media: cobalt: Use FIELD_GET() to extract Link Width Greg Kroah-Hartman
2023-11-24 17:46 ` [PATCH 6.5 139/491] media: ccs: Fix driver quirk struct documentation Greg Kroah-Hartman
2023-11-24 17:46 ` [PATCH 6.5 140/491] media: imon: fix access to invalid resource for the second interface Greg Kroah-Hartman
2023-11-24 17:46 ` [PATCH 6.5 141/491] drm/amd/display: Avoid NULL dereference of timing generator Greg Kroah-Hartman
2023-11-24 17:46 ` [PATCH 6.5 142/491] kgdb: Flush console before entering kgdb on panic Greg Kroah-Hartman
2023-11-24 17:46 ` [PATCH 6.5 143/491] riscv: VMAP_STACK overflow detection thread-safe Greg Kroah-Hartman
2023-11-24 17:46 ` [PATCH 6.5 144/491] i2c: dev: copy userspace array safely Greg Kroah-Hartman
2023-11-24 17:46 ` [PATCH 6.5 145/491] ASoC: ti: omap-mcbsp: Fix runtime PM underflow warnings Greg Kroah-Hartman
2023-11-24 17:46 ` [PATCH 6.5 146/491] drm/qxl: prevent memory leak Greg Kroah-Hartman
2023-11-24 17:46 ` [PATCH 6.5 147/491] ALSA: hda/realtek: Add quirk for ASUS UX7602ZM Greg Kroah-Hartman
2023-11-24 17:46 ` [PATCH 6.5 148/491] drm/amdgpu: fix software pci_unplug on some chips Greg Kroah-Hartman
2023-11-24 17:46 ` [PATCH 6.5 149/491] pwm: Fix double shift bug Greg Kroah-Hartman
2023-11-24 17:46 ` [PATCH 6.5 150/491] mtd: rawnand: tegra: add missing check for platform_get_irq() Greg Kroah-Hartman
2023-11-24 17:46 ` [PATCH 6.5 151/491] wifi: iwlwifi: Use FW rate for non-data frames Greg Kroah-Hartman
2023-11-24 17:46 ` [PATCH 6.5 152/491] sched/core: Optimize in_task() and in_interrupt() a bit Greg Kroah-Hartman
2023-11-24 17:46 ` [PATCH 6.5 153/491] samples/bpf: syscall_tp_user: Rename num_progs into nr_tests Greg Kroah-Hartman
2023-11-24 17:46 ` [PATCH 6.5 154/491] samples/bpf: syscall_tp_user: Fix array out-of-bound access Greg Kroah-Hartman
2023-11-24 17:46 ` [PATCH 6.5 155/491] dt-bindings: serial: fix regex pattern for matching serial node children Greg Kroah-Hartman
2023-11-24 17:46 ` [PATCH 6.5 156/491] SUNRPC: ECONNRESET might require a rebind Greg Kroah-Hartman
2023-11-24 17:46 ` [PATCH 6.5 157/491] mtd: rawnand: intel: check return value of devm_kasprintf() Greg Kroah-Hartman
2023-11-24 17:46 ` [PATCH 6.5 158/491] mtd: rawnand: meson: " Greg Kroah-Hartman
2023-11-24 17:46 ` [PATCH 6.5 159/491] drm/i915/mtl: avoid stringop-overflow warning Greg Kroah-Hartman
2023-11-24 17:46 ` [PATCH 6.5 160/491] NFSv4.1: fix handling NFS4ERR_DELAY when testing for session trunking Greg Kroah-Hartman
2023-11-24 17:46 ` [PATCH 6.5 161/491] SUNRPC: Add an IS_ERR() check back to where it was Greg Kroah-Hartman
2023-11-24 17:46 ` [PATCH 6.5 162/491] NFSv4.1: fix SP4_MACH_CRED protection for pnfs IO Greg Kroah-Hartman
2023-11-24 17:46 ` [PATCH 6.5 163/491] SUNRPC: Fix RPC client cleaned up the freed pipefs dentries Greg Kroah-Hartman
2023-11-24 17:46 ` [PATCH 6.5 164/491] RISC-V: hwprobe: Fix vDSO SIGSEGV Greg Kroah-Hartman
2023-11-24 17:46 ` [PATCH 6.5 165/491] riscv: provide riscv-specific is_trap_insn() Greg Kroah-Hartman
2023-11-24 17:46 ` [PATCH 6.5 166/491] gfs2: Silence "suspicious RCU usage in gfs2_permission" warning Greg Kroah-Hartman
2023-11-24 17:46 ` [PATCH 6.5 167/491] drm/i915/tc: Fix -Wformat-truncation in intel_tc_port_init Greg Kroah-Hartman
2023-11-24 17:46 ` [PATCH 6.5 168/491] vdpa_sim_blk: allocate the buffer zeroed Greg Kroah-Hartman
2023-11-24 17:46 ` [PATCH 6.5 169/491] vhost-vdpa: fix use after free in vhost_vdpa_probe() Greg Kroah-Hartman
2023-11-24 17:46 ` [PATCH 6.5 170/491] gcc-plugins: randstruct: Only warn about true flexible arrays Greg Kroah-Hartman
2023-11-24 17:46 ` [PATCH 6.5 171/491] bpf: handle ldimm64 properly in check_cfg() Greg Kroah-Hartman
2023-11-24 17:46 ` [PATCH 6.5 172/491] bpf: fix precision backtracking instruction iteration Greg Kroah-Hartman
2023-11-24 17:46 ` [PATCH 6.5 173/491] net: set SOCK_RCU_FREE before inserting socket into hashtable Greg Kroah-Hartman
2023-11-24 17:46 ` [PATCH 6.5 174/491] ipvlan: add ipvlan_route_v6_outbound() helper Greg Kroah-Hartman
2023-11-24 17:46 ` [PATCH 6.5 175/491] tty: Fix uninit-value access in ppp_sync_receive() Greg Kroah-Hartman
2023-11-24 17:46 ` [PATCH 6.5 176/491] xen/events: avoid using info_for_irq() in xen_send_IPI_one() Greg Kroah-Hartman
2023-11-24 18:38   ` David Woodhouse
2023-11-24 17:46 ` [PATCH 6.5 177/491] net: hns3: fix add VLAN fail issue Greg Kroah-Hartman
2023-11-24 17:46 ` [PATCH 6.5 178/491] net: hns3: add barrier in vf mailbox reply process Greg Kroah-Hartman
2023-11-24 17:46 ` [PATCH 6.5 179/491] net: hns3: fix incorrect capability bit display for copper port Greg Kroah-Hartman
2023-11-24 17:46 ` [PATCH 6.5 180/491] net: hns3: fix out-of-bounds access may occur when coalesce info is read via debugfs Greg Kroah-Hartman
2023-11-24 17:46 ` [PATCH 6.5 181/491] net: hns3: fix variable may not initialized problem in hns3_init_mac_addr() Greg Kroah-Hartman
2023-11-24 17:46 ` [PATCH 6.5 182/491] net: hns3: fix VF reset fail issue Greg Kroah-Hartman
2023-11-24 17:46 ` [PATCH 6.5 183/491] net: hns3: fix VF wrong speed and duplex issue Greg Kroah-Hartman
2023-11-24 17:47 ` [PATCH 6.5 184/491] tipc: Fix kernel-infoleak due to uninitialized TLV value Greg Kroah-Hartman
2023-11-24 17:47 ` [PATCH 6.5 185/491] net: mvneta: fix calls to page_pool_get_stats Greg Kroah-Hartman
2023-11-24 17:47 ` [PATCH 6.5 186/491] ppp: limit MRU to 64K Greg Kroah-Hartman
2023-11-24 17:47 ` [PATCH 6.5 187/491] xen/events: fix delayed eoi list handling Greg Kroah-Hartman
2023-11-24 17:47 ` [PATCH 6.5 188/491] blk-mq: make sure active queue usage is held for bio_integrity_prep() Greg Kroah-Hartman
2023-11-24 17:47 ` [PATCH 6.5 189/491] ptp: annotate data-race around q->head and q->tail Greg Kroah-Hartman
2023-11-24 17:47 ` [PATCH 6.5 190/491] bonding: stop the device in bond_setup_by_slave() Greg Kroah-Hartman
2023-11-24 17:47 ` [PATCH 6.5 191/491] net: ethernet: cortina: Fix max RX frame define Greg Kroah-Hartman
2023-11-24 17:47 ` [PATCH 6.5 192/491] net: ethernet: cortina: Handle large frames Greg Kroah-Hartman
2023-11-24 17:47 ` [PATCH 6.5 193/491] net: ethernet: cortina: Fix MTU max setting Greg Kroah-Hartman
2023-11-24 17:47 ` [PATCH 6.5 194/491] af_unix: fix use-after-free in unix_stream_read_actor() Greg Kroah-Hartman
2023-11-24 17:47 ` [PATCH 6.5 195/491] netfilter: nf_conntrack_bridge: initialize err to 0 Greg Kroah-Hartman
2023-11-24 17:47 ` [PATCH 6.5 196/491] netfilter: nf_tables: fix pointer math issue in nft_byteorder_eval() Greg Kroah-Hartman
2023-11-24 17:47 ` [PATCH 6.5 197/491] netfilter: nf_tables: bogus ENOENT when destroying element which does not exist Greg Kroah-Hartman
2023-11-24 17:47 ` [PATCH 6.5 198/491] net: stmmac: fix rx budget limit check Greg Kroah-Hartman
2023-11-24 17:47 ` [PATCH 6.5 199/491] net: stmmac: avoid rx queue overrun Greg Kroah-Hartman
2023-11-24 17:47 ` [PATCH 6.5 200/491] pds_core: use correct index to mask irq Greg Kroah-Hartman
2023-11-24 17:47 ` [PATCH 6.5 201/491] pds_core: fix up some format-truncation complaints Greg Kroah-Hartman
2023-11-24 17:47 ` [PATCH 6.5 202/491] gve: Fixes for napi_poll when budget is 0 Greg Kroah-Hartman
2023-11-24 17:47 ` [PATCH 6.5 203/491] io_uring/fdinfo: remove need for sqpoll lock for thread/pid retrieval Greg Kroah-Hartman
2023-11-24 17:47 ` [PATCH 6.5 204/491] net/mlx5: Decouple PHC .adjtime and .adjphase implementations Greg Kroah-Hartman
2023-11-24 17:47 ` [PATCH 6.5 205/491] net/mlx5e: fix double free of encap_header Greg Kroah-Hartman
2023-11-24 17:47 ` [PATCH 6.5 206/491] net/mlx5e: fix double free of encap_header in update funcs Greg Kroah-Hartman
2023-11-24 17:47 ` [PATCH 6.5 207/491] net/mlx5e: Fix pedit endianness Greg Kroah-Hartman
2023-11-24 17:47 ` [PATCH 6.5 208/491] net/mlx5: Consolidate devlink documentation in devlink/mlx5.rst Greg Kroah-Hartman
2023-11-24 17:47 ` [PATCH 6.5 209/491] net/mlx5e: Make tx_port_ts logic resilient to out-of-order CQEs Greg Kroah-Hartman
2023-11-24 17:47 ` [PATCH 6.5 210/491] net/mlx5e: Add recovery flow for tx devlink health reporter for unhealthy PTP SQ Greg Kroah-Hartman
2023-11-24 17:47 ` [PATCH 6.5 211/491] net/mlx5e: Update doorbell for port timestamping CQ before the software counter Greg Kroah-Hartman
2023-11-24 17:47 ` [PATCH 6.5 212/491] net/mlx5: Increase size of irq name buffer Greg Kroah-Hartman
2023-11-24 17:47 ` [PATCH 6.5 213/491] net/mlx5e: Reduce the size of icosq_str Greg Kroah-Hartman
2023-11-24 17:47 ` [PATCH 6.5 214/491] net/mlx5e: Check return value of snprintf writing to fw_version buffer Greg Kroah-Hartman
2023-11-24 17:47 ` [PATCH 6.5 215/491] net/mlx5e: Check return value of snprintf writing to fw_version buffer for representors Greg Kroah-Hartman
2023-11-24 17:47 ` [PATCH 6.5 216/491] net: sched: do not offload flows with a helper in act_ct Greg Kroah-Hartman
2023-11-24 17:47 ` [PATCH 6.5 217/491] macvlan: Dont propagate promisc change to lower dev in passthru Greg Kroah-Hartman
2023-11-24 17:47 ` [PATCH 6.5 218/491] tools/power/turbostat: Fix a knl bug Greg Kroah-Hartman
2023-11-24 17:47 ` [PATCH 6.5 219/491] tools/power/turbostat: Enable the C-state Pre-wake printing Greg Kroah-Hartman
2023-11-24 17:47 ` [PATCH 6.5 220/491] scsi: ufs: core: Expand MCQ queue slot to DeviceQueueDepth + 1 Greg Kroah-Hartman
2023-11-24 17:47 ` [PATCH 6.5 221/491] cifs: spnego: add ; in HOST_KEY_LEN Greg Kroah-Hartman
2023-11-24 17:47 ` [PATCH 6.5 222/491] cifs: fix check of rc in function generate_smb3signingkey Greg Kroah-Hartman
2023-11-24 17:47 ` [PATCH 6.5 223/491] perf/core: Fix cpuctx refcounting Greg Kroah-Hartman
2023-11-24 17:47 ` [PATCH 6.5 224/491] i915/perf: Fix NULL deref bugs with drm_dbg() calls Greg Kroah-Hartman
2023-11-24 17:47 ` [PATCH 6.5 225/491] perf: arm_cspmu: Reject events meant for other PMUs Greg Kroah-Hartman
2023-11-24 17:47 ` [PATCH 6.5 226/491] drivers: perf: Check find_first_bit() return value Greg Kroah-Hartman
2023-11-24 17:47 ` [PATCH 6.5 227/491] media: venus: hfi: add checks to perform sanity on queue pointers Greg Kroah-Hartman
2023-11-24 17:47 ` [PATCH 6.5 228/491] perf intel-pt: Fix async branch flags Greg Kroah-Hartman
2023-11-24 17:47 ` [PATCH 6.5 229/491] powerpc/perf: Fix disabling BHRB and instruction sampling Greg Kroah-Hartman
2023-11-24 17:47 ` [PATCH 6.5 230/491] randstruct: Fix gcc-plugin performance mode to stay in group Greg Kroah-Hartman
2023-11-24 17:47 ` [PATCH 6.5 231/491] bpf: Fix check_stack_write_fixed_off() to correctly spill imm Greg Kroah-Hartman
2023-11-24 17:47 ` [PATCH 6.5 232/491] bpf: Fix precision tracking for BPF_ALU | BPF_TO_BE | BPF_END Greg Kroah-Hartman
2023-11-24 17:47 ` [PATCH 6.5 233/491] scsi: mpt3sas: Fix loop logic Greg Kroah-Hartman
2023-11-24 17:47 ` [PATCH 6.5 234/491] scsi: megaraid_sas: Increase register read retry rount from 3 to 30 for selected registers Greg Kroah-Hartman
2023-11-24 17:47 ` [PATCH 6.5 235/491] scsi: ufs: qcom: Update PHY settings only when scaling to higher gears Greg Kroah-Hartman
2023-11-24 17:47 ` [PATCH 6.5 236/491] scsi: qla2xxx: Fix system crash due to bad pointer access Greg Kroah-Hartman
2023-11-24 17:47 ` [PATCH 6.5 237/491] scsi: ufs: core: Fix racing issue between ufshcd_mcq_abort() and ISR Greg Kroah-Hartman
2023-11-24 17:47 ` [PATCH 6.5 238/491] crypto: x86/sha - load modules based on CPU features Greg Kroah-Hartman
2023-11-24 17:47 ` [PATCH 6.5 239/491] x86/PCI: Avoid PME from D3hot/D3cold for AMD Rembrandt and Phoenix USB4 Greg Kroah-Hartman
2023-11-24 17:47 ` [PATCH 6.5 240/491] x86/apic/msi: Fix misconfigured non-maskable MSI quirk Greg Kroah-Hartman
2023-11-24 17:47 ` [PATCH 6.5 241/491] x86/cpu/hygon: Fix the CPU topology evaluation for real Greg Kroah-Hartman
2023-11-24 17:47 ` [PATCH 6.5 242/491] KVM: x86: hyper-v: Dont auto-enable stimer on write from user-space Greg Kroah-Hartman
2023-11-24 17:47 ` [PATCH 6.5 243/491] KVM: x86: Ignore MSR_AMD64_TW_CFG access Greg Kroah-Hartman
2023-11-24 17:48 ` [PATCH 6.5 244/491] KVM: x86: Clear bit12 of ICR after APIC-write VM-exit Greg Kroah-Hartman
2023-11-24 17:48 ` [PATCH 6.5 245/491] KVM: x86: Fix lapic timer interrupt lost after loading a snapshot Greg Kroah-Hartman
2023-11-24 17:48 ` [PATCH 6.5 246/491] mmc: sdhci-pci-gli: GL9755: Mask the replay timer timeout of AER Greg Kroah-Hartman
2023-11-24 17:48 ` [PATCH 6.5 247/491] sched: psi: fix unprivileged polling against cgroups Greg Kroah-Hartman
2023-11-24 17:48 ` [PATCH 6.5 248/491] audit: dont take task_lock() in audit_exe_compare() code path Greg Kroah-Hartman
2023-11-24 17:48 ` [PATCH 6.5 249/491] audit: dont WARN_ON_ONCE(!current->mm) in audit_exe_compare() Greg Kroah-Hartman
2023-11-24 17:48 ` [PATCH 6.5 250/491] proc: sysctl: prevent aliased sysctls from getting passed to init Greg Kroah-Hartman
2023-11-24 17:48 ` [PATCH 6.5 251/491] tty/sysrq: replace smp_processor_id() with get_cpu() Greg Kroah-Hartman
2023-11-24 17:48 ` [PATCH 6.5 252/491] tty: serial: meson: fix hard LOCKUP on crtscts mode Greg Kroah-Hartman
2023-11-24 17:48 ` [PATCH 6.5 253/491] hvc/xen: fix console unplug Greg Kroah-Hartman
2023-11-24 17:48 ` [PATCH 6.5 254/491] hvc/xen: fix error path in xen_hvc_init() to always register frontend driver Greg Kroah-Hartman
2023-11-24 17:48 ` [PATCH 6.5 255/491] hvc/xen: fix event channel handling for secondary consoles Greg Kroah-Hartman
2023-11-24 17:48 ` [PATCH 6.5 256/491] PCI/sysfs: Protect drivers D3cold preference from user space Greg Kroah-Hartman
2023-11-24 17:48 ` [PATCH 6.5 257/491] mm/damon/sysfs: remove requested targets when online-commit inputs Greg Kroah-Hartman
2023-11-24 17:48 ` [PATCH 6.5 258/491] mm/damon/sysfs: update monitoring target regions for online input commit Greg Kroah-Hartman
2023-11-24 17:48 ` [PATCH 6.5 259/491] watchdog: move softlockup_panic back to early_param Greg Kroah-Hartman
2023-11-24 17:48 ` [PATCH 6.5 260/491] iommufd: Fix missing update of domains_itree after splitting iopt_area Greg Kroah-Hartman
2023-11-24 17:48 ` [PATCH 6.5 261/491] fbdev: stifb: Make the STI next font pointer a 32-bit signed offset Greg Kroah-Hartman
2023-11-24 17:48 ` [PATCH 6.5 262/491] dm crypt: account large pages in cc->n_allocated_pages Greg Kroah-Hartman
2023-11-24 17:48 ` [PATCH 6.5 263/491] mm/damon/lru_sort: avoid divide-by-zero in hot threshold calculation Greg Kroah-Hartman
2023-11-24 17:48 ` [PATCH 6.5 264/491] mm/damon/ops-common: avoid divide-by-zero during region hotness calculation Greg Kroah-Hartman
2023-11-24 17:48 ` [PATCH 6.5 265/491] mm/damon: implement a function for max nr_accesses safe calculation Greg Kroah-Hartman
2023-11-24 17:48 ` [PATCH 6.5 266/491] mm/damon/core: avoid divide-by-zero during monitoring results update Greg Kroah-Hartman
2023-11-24 17:48 ` [PATCH 6.5 267/491] mm/damon/sysfs-schemes: handle tried region directory allocation failure Greg Kroah-Hartman
2023-11-24 17:48 ` [PATCH 6.5 268/491] mm/damon/sysfs-schemes: handle tried regions sysfs " Greg Kroah-Hartman
2023-11-24 17:48 ` [PATCH 6.5 269/491] mm/damon/sysfs: check error from damon_sysfs_update_target() Greg Kroah-Hartman
2023-11-24 17:48 ` [PATCH 6.5 270/491] parisc: Add nop instructions after TLB inserts Greg Kroah-Hartman
2023-11-24 17:48 ` [PATCH 6.5 271/491] ACPI: resource: Do IRQ override on TongFang GMxXGxx Greg Kroah-Hartman
2023-11-24 17:48 ` [PATCH 6.5 272/491] regmap: Ensure range selector registers are updated after cache sync Greg Kroah-Hartman
2023-11-24 17:48 ` [PATCH 6.5 273/491] wifi: ath11k: fix temperature event locking Greg Kroah-Hartman
2023-11-24 17:48 ` [PATCH 6.5 274/491] wifi: ath11k: fix dfs radar " Greg Kroah-Hartman
2023-11-24 17:48 ` [PATCH 6.5 275/491] wifi: ath11k: fix htt pktlog locking Greg Kroah-Hartman
2023-11-24 17:48 ` [PATCH 6.5 276/491] wifi: ath11k: fix gtk offload status event locking Greg Kroah-Hartman
2023-11-24 17:48 ` [PATCH 6.5 277/491] wifi: ath12k: fix htt mlo-offset " Greg Kroah-Hartman
2023-11-24 17:48 ` [PATCH 6.5 278/491] wifi: ath12k: fix dfs-radar and temperature " Greg Kroah-Hartman
2023-11-24 17:48 ` [PATCH 6.5 279/491] mmc: meson-gx: Remove setting of CMD_CFG_ERROR Greg Kroah-Hartman
2023-11-24 17:48 ` [PATCH 6.5 280/491] genirq/generic_chip: Make irq_remove_generic_chip() irqdomain aware Greg Kroah-Hartman
2023-11-24 17:48 ` [PATCH 6.5 281/491] sched/core: Fix RQCF_ACT_SKIP leak Greg Kroah-Hartman
2023-11-24 17:48 ` [PATCH 6.5 282/491] KEYS: trusted: tee: Refactor register SHM usage Greg Kroah-Hartman
2023-11-24 17:48 ` [PATCH 6.5 283/491] KEYS: trusted: Rollback init_trusted() consistently Greg Kroah-Hartman
2023-11-24 17:48 ` [PATCH 6.5 284/491] PCI: keystone: Dont discard .remove() callback Greg Kroah-Hartman
2023-11-24 17:48 ` [PATCH 6.5 285/491] PCI: keystone: Dont discard .probe() callback Greg Kroah-Hartman
2023-11-24 17:48 ` [PATCH 6.5 286/491] arm64: Restrict CPU_BIG_ENDIAN to GNU as or LLVM IAS 15.x or newer Greg Kroah-Hartman
2023-11-24 17:48 ` [PATCH 6.5 287/491] arm64: module: Fix PLT counting when CONFIG_RANDOMIZE_BASE=n Greg Kroah-Hartman
2023-11-24 17:48 ` [PATCH 6.5 288/491] parisc/agp: Use 64-bit LE values in SBA IOMMU PDIR table Greg Kroah-Hartman
2023-11-24 17:48 ` [PATCH 6.5 289/491] parisc/pdc: Add width field to struct pdc_model Greg Kroah-Hartman
2023-11-24 17:48 ` [PATCH 6.5 290/491] parisc/power: Add power soft-off when running on qemu Greg Kroah-Hartman
2023-11-24 17:48 ` [PATCH 6.5 291/491] cpufreq: stats: Fix buffer overflow detection in trans_stats() Greg Kroah-Hartman
2023-11-24 17:48 ` [PATCH 6.5 292/491] powercap: intel_rapl: Downgrade BIOS locked limits pr_warn() to pr_debug() Greg Kroah-Hartman
2023-11-24 17:48 ` [PATCH 6.5 293/491] clk: socfpga: Fix undefined behavior bug in struct stratix10_clock_data Greg Kroah-Hartman
2023-11-24 17:48 ` [PATCH 6.5 294/491] clk: visconti: Fix undefined behavior bug in struct visconti_pll_provider Greg Kroah-Hartman
2023-11-24 17:48 ` [PATCH 6.5 295/491] clk: qcom: ipq8074: drop the CLK_SET_RATE_PARENT flag from PLL clocks Greg Kroah-Hartman
2023-11-24 17:48 ` [PATCH 6.5 296/491] clk: qcom: ipq6018: " Greg Kroah-Hartman
2023-11-24 17:48 ` [PATCH 6.5 297/491] ksmbd: fix recursive locking in vfs helpers Greg Kroah-Hartman
2023-11-24 17:48 ` [PATCH 6.5 298/491] ksmbd: handle malformed smb1 message Greg Kroah-Hartman
2023-11-24 17:48 ` [PATCH 6.5 299/491] ksmbd: fix slab out of bounds write in smb_inherit_dacl() Greg Kroah-Hartman
2023-11-24 17:48 ` [PATCH 6.5 300/491] mmc: vub300: fix an error code Greg Kroah-Hartman
2023-11-24 17:48 ` [PATCH 6.5 301/491] mmc: sdhci_am654: fix start loop index for TAP value parsing Greg Kroah-Hartman
2023-11-24 17:48 ` [PATCH 6.5 302/491] mmc: Add quirk MMC_QUIRK_BROKEN_CACHE_FLUSH for Micron eMMC Q2J54A Greg Kroah-Hartman
2023-11-24 17:48 ` [PATCH 6.5 303/491] PCI/ASPM: Fix L1 substate handling in aspm_attr_store_common() Greg Kroah-Hartman
2023-11-24 17:49 ` [PATCH 6.5 304/491] PCI: kirin: Dont discard .remove() callback Greg Kroah-Hartman
2023-11-24 17:49 ` [PATCH 6.5 305/491] PCI: exynos: " Greg Kroah-Hartman
2023-11-24 17:49 ` [PATCH 6.5 306/491] wifi: wilc1000: use vmm_table as array in wilc struct Greg Kroah-Hartman
2023-11-24 17:49 ` [PATCH 6.5 307/491] svcrdma: Drop connection after an RDMA Read error Greg Kroah-Hartman
2023-11-24 17:49 ` [PATCH 6.5 308/491] rcu/tree: Defer setting of jiffies during stall reset Greg Kroah-Hartman
2023-11-24 17:49 ` [PATCH 6.5 309/491] arm64: dts: qcom: ipq6018: Fix hwlock index for SMEM Greg Kroah-Hartman
2023-11-24 17:49 ` [PATCH 6.5 310/491] dt-bindings: timer: renesas,rz-mtu3: Fix overflow/underflow interrupt names Greg Kroah-Hartman
2023-11-24 17:49 ` [PATCH 6.5 311/491] PM: hibernate: Use __get_safe_page() rather than touching the list Greg Kroah-Hartman
2023-11-24 17:49 ` [PATCH 6.5 312/491] PM: hibernate: Clean up sync_read handling in snapshot_write_next() Greg Kroah-Hartman
2023-11-24 17:49 ` [PATCH 6.5 313/491] rcu: kmemleak: Ignore kmemleak false positives when RCU-freeing objects Greg Kroah-Hartman
2023-11-24 17:49 ` [PATCH 6.5 314/491] btrfs: dont arbitrarily slow down delalloc if were committing Greg Kroah-Hartman
2023-11-24 17:49 ` [PATCH 6.5 315/491] thermal: intel: powerclamp: fix mismatch in get function for max_idle Greg Kroah-Hartman
2023-11-24 17:49 ` [PATCH 6.5 316/491] arm64: dts: qcom: ipq5332: Fix hwlock index for SMEM Greg Kroah-Hartman
2023-11-24 17:49 ` [PATCH 6.5 317/491] arm64: dts: qcom: ipq8074: " Greg Kroah-Hartman
2023-11-24 17:49 ` [PATCH 6.5 318/491] firmware: qcom_scm: use 64-bit calling convention only when client is 64-bit Greg Kroah-Hartman
2023-11-24 17:49 ` [PATCH 6.5 319/491] ACPI: FPDT: properly handle invalid FPDT subtables Greg Kroah-Hartman
2023-11-24 17:49 ` [PATCH 6.5 320/491] arm64: dts: qcom: ipq9574: Fix hwlock index for SMEM Greg Kroah-Hartman
2023-11-24 17:49 ` [PATCH 6.5 321/491] arm64: dts: qcom: ipq6018: Fix tcsr_mutex register size Greg Kroah-Hartman
2023-11-24 17:49 ` [PATCH 6.5 322/491] leds: trigger: netdev: Move size check in set_device_name Greg Kroah-Hartman
2023-11-24 17:49 ` [PATCH 6.5 323/491] mfd: qcom-spmi-pmic: Fix reference leaks in revid helper Greg Kroah-Hartman
2023-11-24 17:49 ` [PATCH 6.5 324/491] mfd: qcom-spmi-pmic: Fix revid implementation Greg Kroah-Hartman
2023-11-24 17:49 ` [PATCH 6.5 325/491] ima: annotate iint mutex to avoid lockdep false positive warnings Greg Kroah-Hartman
2023-11-24 17:49 ` [PATCH 6.5 326/491] ima: detect changes to the backing overlay file Greg Kroah-Hartman
2023-11-24 17:49 ` [PATCH 6.5 327/491] netfilter: nf_tables: remove catchall element in GC sync path Greg Kroah-Hartman
2023-11-24 17:49 ` [PATCH 6.5 328/491] netfilter: nf_tables: split async and sync catchall in two functions Greg Kroah-Hartman
2023-11-24 17:49 ` [PATCH 6.5 329/491] ASoC: soc-dai: add flag to mute and unmute stream during trigger Greg Kroah-Hartman
2023-11-24 17:49 ` [PATCH 6.5 330/491] ASoC: codecs: wsa883x: make use of new mute_unmute_on_trigger flag Greg Kroah-Hartman
2023-11-24 17:49 ` [PATCH 6.5 331/491] selftests/resctrl: Fix uninitialized .sa_flags Greg Kroah-Hartman
2023-11-24 17:49 ` [PATCH 6.5 332/491] selftests/resctrl: Remove duplicate feature check from CMT test Greg Kroah-Hartman
2023-11-24 17:49 ` [PATCH 6.5 333/491] selftests/resctrl: Move _GNU_SOURCE define into Makefile Greg Kroah-Hartman
2023-11-24 17:49 ` [PATCH 6.5 334/491] selftests/resctrl: Reduce failures due to outliers in MBA/MBM tests Greg Kroah-Hartman
2023-11-24 17:49 ` [PATCH 6.5 335/491] hid: lenovo: Resend all settings on reset_resume for compact keyboards Greg Kroah-Hartman
2023-11-24 17:49 ` [PATCH 6.5 336/491] ASoC: codecs: wsa-macro: fix uninitialized stack variables with name prefix Greg Kroah-Hartman
2023-11-24 17:49 ` [PATCH 6.5 337/491] jbd2: fix potential data lost in recovering journal raced with synchronizing fs bdev Greg Kroah-Hartman
2023-11-24 17:49 ` [PATCH 6.5 338/491] quota: explicitly forbid quota files from being encrypted Greg Kroah-Hartman
2023-11-24 17:49 ` [PATCH 6.5 339/491] kernel/reboot: emergency_restart: Set correct system_state Greg Kroah-Hartman
2023-11-24 17:49 ` [PATCH 6.5 340/491] i2c: core: Run atomic i2c xfer when !preemptible Greg Kroah-Hartman
2023-11-24 17:49 ` [PATCH 6.5 341/491] selftests/clone3: Fix broken test under !CONFIG_TIME_NS Greg Kroah-Hartman
2023-11-24 17:49 ` [PATCH 6.5 342/491] tracing: Have the user copy of synthetic event address use correct context Greg Kroah-Hartman
2023-11-24 17:49 ` [PATCH 6.5 343/491] driver core: Release all resources during unbind before updating device links Greg Kroah-Hartman
2023-11-24 17:49 ` [PATCH 6.5 344/491] mcb: fix error handling for different scenarios when parsing Greg Kroah-Hartman
2023-11-24 17:49 ` [PATCH 6.5 345/491] powerpc/pseries/iommu: enable_ddw incorrectly returns direct mapping for SR-IOV device Greg Kroah-Hartman
2023-11-24 17:49 ` [PATCH 6.5 346/491] dmaengine: stm32-mdma: correct desc prep when channel running Greg Kroah-Hartman
2023-11-24 17:49 ` [PATCH 6.5 347/491] s390/mm: add missing arch_set_page_dat() call to vmem_crst_alloc() Greg Kroah-Hartman
2023-11-24 17:49 ` [PATCH 6.5 348/491] s390/cmma: fix initial kernel address space page table walk Greg Kroah-Hartman
2023-11-24 17:49 ` [PATCH 6.5 349/491] s390/cmma: fix detection of DAT pages Greg Kroah-Hartman
2023-11-24 17:49 ` [PATCH 6.5 350/491] s390/cmma: fix handling of swapper_pg_dir and invalid_pg_dir Greg Kroah-Hartman
2023-11-24 17:49 ` [PATCH 6.5 351/491] mm/cma: use nth_page() in place of direct struct page manipulation Greg Kroah-Hartman
2023-11-24 17:49 ` [PATCH 6.5 352/491] mm/memory_hotplug: use pfn math " Greg Kroah-Hartman
2023-11-24 17:49 ` [PATCH 6.5 353/491] mm: make PR_MDWE_REFUSE_EXEC_GAIN an unsigned long Greg Kroah-Hartman
2023-11-24 17:49 ` [PATCH 6.5 354/491] mtd: cfi_cmdset_0001: Byte swap OTP info Greg Kroah-Hartman
2023-11-24 17:49 ` [PATCH 6.5 355/491] cxl/region: Do not try to cleanup after cxl_region_setup_targets() fails Greg Kroah-Hartman
2023-11-24 17:49 ` [PATCH 6.5 356/491] i3c: master: cdns: Fix reading status register Greg Kroah-Hartman
2023-11-24 17:49 ` [PATCH 6.5 357/491] i3c: master: svc: fix race condition in ibi work thread Greg Kroah-Hartman
2023-11-24 17:49 ` [PATCH 6.5 358/491] i3c: master: svc: fix wrong data return when IBI happen during start frame Greg Kroah-Hartman
2023-11-24 17:49 ` [PATCH 6.5 359/491] i3c: master: svc: fix ibi may not return mandatory data byte Greg Kroah-Hartman
2023-11-24 17:49 ` [PATCH 6.5 360/491] i3c: master: svc: fix check wrong status register in irq handler Greg Kroah-Hartman
2023-11-24 17:49 ` [PATCH 6.5 361/491] i3c: master: svc: fix SDA keep low when polling IBIWON timeout happen Greg Kroah-Hartman
2023-11-24 17:49 ` [PATCH 6.5 362/491] i3c: master: svc: fix random hot join failure since timeout error Greg Kroah-Hartman
2023-11-24 17:49 ` [PATCH 6.5 363/491] cxl/region: Fix x1 root-decoder granularity calculations Greg Kroah-Hartman
2023-11-24 17:50 ` [PATCH 6.5 364/491] cxl/port: Fix delete_endpoint() vs parent unregistration race Greg Kroah-Hartman
2023-11-24 17:50 ` [PATCH 6.5 365/491] pmdomain: bcm: bcm2835-power: check if the ASB register is equal to enable Greg Kroah-Hartman
2023-11-24 17:50 ` [PATCH 6.5 366/491] pmdomain: amlogic: Fix mask for the second NNA mem PD domain Greg Kroah-Hartman
2023-11-24 17:50 ` [PATCH 6.5 367/491] pmdomain: imx: Make imx pgc power domain also set the fwnode Greg Kroah-Hartman
2023-11-24 17:50 ` [PATCH 6.5 368/491] PCI: qcom-ep: Add dedicated callback for writing to DBI2 registers Greg Kroah-Hartman
2023-11-24 17:50 ` [PATCH 6.5 369/491] of: dynamic: Add interfaces for creating device node dynamically Greg Kroah-Hartman
2023-11-24 21:53   ` Thomas Petazzoni
2023-11-25 15:32     ` Greg Kroah-Hartman
2023-11-24 17:50 ` [PATCH 6.5 370/491] PCI: Create device tree node for bridge Greg Kroah-Hartman
2023-11-24 17:50 ` [PATCH 6.5 371/491] PCI: Add quirks to generate device tree node for Xilinx Alveo U50 Greg Kroah-Hartman
2023-11-24 17:50 ` [PATCH 6.5 372/491] PCI: Lengthen reset delay for VideoPropulsion Torrent QN16e card Greg Kroah-Hartman
2023-11-24 17:50 ` [PATCH 6.5 373/491] torture: Add a kthread-creation callback to _torture_create_kthread() Greg Kroah-Hartman
2023-11-24 17:50 ` [PATCH 6.5 374/491] torture: Add lock_torture writer_fifo module parameter Greg Kroah-Hartman
2023-11-24 17:50 ` [PATCH 6.5 375/491] torture: Make torture_hrtimeout_*() use TASK_IDLE Greg Kroah-Hartman
2023-11-24 17:50 ` [PATCH 6.5 376/491] torture: Move stutter_wait() timeouts to hrtimers Greg Kroah-Hartman
2023-11-24 17:50 ` [PATCH 6.5 377/491] torture: Make torture_hrtimeout_ns() take an hrtimer mode parameter Greg Kroah-Hartman
2023-11-24 17:50 ` [PATCH 6.5 378/491] rcutorture: Fix stuttering races and other issues Greg Kroah-Hartman
2023-11-24 17:50 ` [PATCH 6.5 379/491] mm/hugetlb: prepare hugetlb_follow_page_mask() for FOLL_PIN Greg Kroah-Hartman
2023-11-24 17:50 ` [PATCH 6.5 380/491] mm/hugetlb: use nth_page() in place of direct struct page manipulation Greg Kroah-Hartman
2023-11-24 17:50 ` [PATCH 6.5 381/491] parisc: Prevent booting 64-bit kernels on PA1.x machines Greg Kroah-Hartman
2023-11-24 17:50 ` [PATCH 6.5 382/491] parisc/pgtable: Do not drop upper 5 address bits of physical address Greg Kroah-Hartman
2023-11-24 17:50 ` [PATCH 6.5 383/491] parisc/power: Fix power soft-off when running on qemu Greg Kroah-Hartman
2023-11-24 17:50 ` [PATCH 6.5 384/491] xhci: Enable RPM on controllers that support low-power states Greg Kroah-Hartman
2023-11-24 17:50 ` [PATCH 6.5 385/491] fs: add ctime accessors infrastructure Greg Kroah-Hartman
2023-11-24 17:50 ` [PATCH 6.5 386/491] smb3: fix creating FIFOs when mounting with "sfu" mount option Greg Kroah-Hartman
2023-11-24 17:50 ` [PATCH 6.5 387/491] smb3: fix touch -h of symlink Greg Kroah-Hartman
2023-11-24 17:50 ` [PATCH 6.5 388/491] smb3: allow dumping session and tcon id to improve stats analysis and debugging Greg Kroah-Hartman
2023-11-24 17:50 ` [PATCH 6.5 389/491] smb3: fix caching of ctime on setxattr Greg Kroah-Hartman
2023-11-24 17:50 ` [PATCH 6.5 390/491] smb: client: fix use-after-free bug in cifs_debug_data_proc_show() Greg Kroah-Hartman
2023-11-24 17:50 ` [PATCH 6.5 391/491] smb: client: fix use-after-free in smb2_query_info_compound() Greg Kroah-Hartman
2023-11-24 17:50 ` [PATCH 6.5 392/491] smb: client: fix potential deadlock when releasing mids Greg Kroah-Hartman
2023-11-24 17:50 ` [PATCH 6.5 393/491] cifs: reconnect helper should set reconnect for the right channel Greg Kroah-Hartman
2023-11-24 17:50 ` [PATCH 6.5 394/491] cifs: force interface update before a fresh session setup Greg Kroah-Hartman
2023-11-24 17:50 ` [PATCH 6.5 395/491] cifs: do not reset chan_max if multichannel is not supported at mount Greg Kroah-Hartman
2023-11-24 17:50 ` [PATCH 6.5 396/491] cifs: Fix encryption of cleared, but unset rq_iter data buffers Greg Kroah-Hartman
2023-11-24 17:50 ` [PATCH 6.5 397/491] xfs: recovery should not clear di_flushiter unconditionally Greg Kroah-Hartman
2023-11-24 17:50 ` [PATCH 6.5 398/491] btrfs: zoned: wait for data BG to be finished on direct IO allocation Greg Kroah-Hartman
2023-11-24 17:50 ` [PATCH 6.5 399/491] ALSA: info: Fix potential deadlock at disconnection Greg Kroah-Hartman
2023-11-24 17:50 ` [PATCH 6.5 400/491] ALSA: hda/realtek: Enable Mute LED on HP 255 G8 Greg Kroah-Hartman
2023-11-24 17:50 ` [PATCH 6.5 401/491] ALSA: hda/realtek - Add Dell ALC295 to pin fall back table Greg Kroah-Hartman
2023-11-24 17:50 ` [PATCH 6.5 402/491] ALSA: hda/realtek - Enable internal speaker of ASUS K6500ZC Greg Kroah-Hartman
2023-11-24 17:50 ` [PATCH 6.5 403/491] ALSA: hda/realtek: Enable Mute LED on HP 255 G10 Greg Kroah-Hartman
2023-11-24 17:50 ` [PATCH 6.5 404/491] ALSA: hda/realtek: Add quirks for HP Laptops Greg Kroah-Hartman
2023-11-24 17:50 ` [PATCH 6.5 405/491] Revert ncsi: Propagate carrier gain/loss events to the NCSI controller Greg Kroah-Hartman
2023-11-24 17:50 ` [PATCH 6.5 406/491] Revert "i2c: pxa: move to generic GPIO recovery" Greg Kroah-Hartman
2023-11-24 17:50 ` [PATCH 6.5 407/491] lsm: fix default return value for vm_enough_memory Greg Kroah-Hartman
2023-11-24 17:50 ` [PATCH 6.5 408/491] lsm: fix default return value for inode_getsecctx Greg Kroah-Hartman
2023-11-24 17:50 ` [PATCH 6.5 409/491] sbsa_gwdt: Calculate timeout with 64-bit math Greg Kroah-Hartman
2023-11-24 17:50 ` [PATCH 6.5 410/491] i2c: designware: Disable TX_EMPTY irq while waiting for block length byte Greg Kroah-Hartman
2023-11-24 17:50 ` [PATCH 6.5 411/491] s390/ap: fix AP bus crash on early config change callback invocation Greg Kroah-Hartman
2023-11-24 17:50 ` [PATCH 6.5 412/491] net: ethtool: Fix documentation of ethtool_sprintf() Greg Kroah-Hartman
2023-11-24 17:50 ` [PATCH 6.5 413/491] net: dsa: lan9303: consequently nested-lock physical MDIO Greg Kroah-Hartman
2023-11-24 17:50 ` [PATCH 6.5 414/491] net: phylink: initialize carrier state at creation Greg Kroah-Hartman
2023-11-24 17:50 ` [PATCH 6.5 415/491] gfs2: dont withdraw if init_threads() got interrupted Greg Kroah-Hartman
2023-11-24 17:50 ` [PATCH 6.5 416/491] i2c: i801: fix potential race in i801_block_transaction_byte_by_byte Greg Kroah-Hartman
2023-11-24 17:50 ` [PATCH 6.5 417/491] f2fs: do not return EFSCORRUPTED, but try to run online repair Greg Kroah-Hartman
2023-11-24 17:50 ` [PATCH 6.5 418/491] f2fs: set the default compress_level on ioctl Greg Kroah-Hartman
2023-11-24 17:50 ` [PATCH 6.5 419/491] f2fs: avoid format-overflow warning Greg Kroah-Hartman
2023-11-24 17:50 ` [PATCH 6.5 420/491] f2fs: split initial and dynamic conditions for extent_cache Greg Kroah-Hartman
2023-11-24 17:50 ` [PATCH 6.5 421/491] media: lirc: drop trailing space from scancode transmit Greg Kroah-Hartman
2023-11-24 17:50 ` [PATCH 6.5 422/491] media: sharp: fix sharp encoding Greg Kroah-Hartman
2023-11-24 17:50 ` [PATCH 6.5 423/491] media: venus: hfi_parser: Add check to keep the number of codecs within range Greg Kroah-Hartman
2023-11-24 17:51 ` [PATCH 6.5 424/491] media: venus: hfi: fix the check to handle session buffer requirement Greg Kroah-Hartman
2023-11-24 17:51 ` [PATCH 6.5 425/491] media: venus: hfi: add checks to handle capabilities from firmware Greg Kroah-Hartman
2023-11-24 17:51 ` [PATCH 6.5 426/491] media: ccs: Correctly initialise try compose rectangle Greg Kroah-Hartman
2023-11-24 17:51 ` [PATCH 6.5 427/491] drm/mediatek/dp: fix memory leak on ->get_edid callback audio detection Greg Kroah-Hartman
2023-11-24 17:51 ` [PATCH 6.5 428/491] drm/mediatek/dp: fix memory leak on ->get_edid callback error path Greg Kroah-Hartman
2023-11-24 17:51 ` [PATCH 6.5 429/491] dm-bufio: fix no-sleep mode Greg Kroah-Hartman
2023-11-24 17:51 ` [PATCH 6.5 430/491] dm-verity: dont use blocking calls from tasklets Greg Kroah-Hartman
2023-11-24 17:51 ` [PATCH 6.5 431/491] nfsd: fix file memleak on client_opens_release Greg Kroah-Hartman
2023-11-24 17:51 ` [PATCH 6.5 432/491] NFSD: Update nfsd_cache_append() to use xdr_stream Greg Kroah-Hartman
2023-11-24 17:51 ` [PATCH 6.5 433/491] LoongArch: Mark __percpu functions as always inline Greg Kroah-Hartman
2023-11-24 17:51 ` [PATCH 6.5 434/491] riscv: Using TOOLCHAIN_HAS_ZIHINTPAUSE marco replace zihintpause Greg Kroah-Hartman
2023-11-24 17:51 ` [PATCH 6.5 435/491] riscv: put interrupt entries into .irqentry.text Greg Kroah-Hartman
2023-11-24 17:51 ` [PATCH 6.5 436/491] riscv: mm: Update the comment of CONFIG_PAGE_OFFSET Greg Kroah-Hartman
2023-11-24 17:51 ` [PATCH 6.5 437/491] riscv: correct pt_level name via pgtable_l5/4_enabled Greg Kroah-Hartman
2023-11-24 17:51 ` [PATCH 6.5 438/491] riscv: kprobes: allow writing to x0 Greg Kroah-Hartman
2023-11-24 17:51 ` [PATCH 6.5 439/491] mmc: sdhci-pci-gli: A workaround to allow GL9750 to enter ASPM L1.2 Greg Kroah-Hartman
2023-11-24 17:51 ` [PATCH 6.5 440/491] mm: fix for negative counter: nr_file_hugepages Greg Kroah-Hartman
2023-11-24 17:51 ` [PATCH 6.5 441/491] mm: kmem: drop __GFP_NOFAIL when allocating objcg vectors Greg Kroah-Hartman
2023-11-24 17:51 ` [PATCH 6.5 442/491] mptcp: deal with large GSO size Greg Kroah-Hartman
2023-11-24 17:51 ` [PATCH 6.5 443/491] mptcp: add validity check for sending RM_ADDR Greg Kroah-Hartman
2023-11-24 17:51 ` [PATCH 6.5 444/491] mptcp: fix setsockopt(IP_TOS) subflow locking Greg Kroah-Hartman
2023-11-24 17:51 ` [PATCH 6.5 445/491] selftests: mptcp: fix fastclose with csum failure Greg Kroah-Hartman
2023-11-24 17:51 ` [PATCH 6.5 446/491] r8169: fix network lost after resume on DASH systems Greg Kroah-Hartman
2023-11-24 17:51 ` [PATCH 6.5 447/491] r8169: add handling DASH when DASH is disabled Greg Kroah-Hartman
2023-11-24 17:51 ` [PATCH 6.5 448/491] mmc: sdhci-pci-gli: GL9750: Mask the replay timer timeout of AER Greg Kroah-Hartman
2023-11-24 17:51 ` [PATCH 6.5 449/491] media: qcom: camss: Fix pm_domain_on sequence in probe Greg Kroah-Hartman
2023-11-24 17:51 ` [PATCH 6.5 450/491] media: qcom: camss: Fix vfe_get() error jump Greg Kroah-Hartman
2023-11-24 17:51 ` [PATCH 6.5 451/491] media: qcom: camss: Fix VFE-17x vfe_disable_output() Greg Kroah-Hartman
2023-11-24 17:51 ` [PATCH 6.5 452/491] media: qcom: camss: Fix VFE-480 vfe_disable_output() Greg Kroah-Hartman
2023-11-24 17:51 ` [PATCH 6.5 453/491] media: qcom: camss: Fix missing vfe_lite clocks check Greg Kroah-Hartman
2023-11-24 17:51 ` [PATCH 6.5 454/491] media: qcom: camss: Fix set CSI2_RX_CFG1_VC_MODE when VC is greater than 3 Greg Kroah-Hartman
2023-11-24 17:51 ` [PATCH 6.5 455/491] media: qcom: camss: Fix invalid clock enable bit disjunction Greg Kroah-Hartman
2023-11-24 17:51 ` [PATCH 6.5 456/491] media: qcom: camss: Fix csid-gen2 for test pattern generator Greg Kroah-Hartman
2023-11-24 17:51 ` [PATCH 6.5 457/491] Revert "net: r8169: Disable multicast filter for RTL8168H and RTL8107E" Greg Kroah-Hartman
2023-11-24 17:51 ` [PATCH 6.5 458/491] ext4: fix race between writepages and remount Greg Kroah-Hartman
2023-11-24 17:51 ` [PATCH 6.5 459/491] ext4: make sure allocate pending entry not fail Greg Kroah-Hartman
2023-11-24 17:51 ` [PATCH 6.5 460/491] ext4: apply umask if ACL support is disabled Greg Kroah-Hartman
2023-11-24 17:51 ` [PATCH 6.5 461/491] ext4: correct offset of gdb backup in non meta_bg group to update_backups Greg Kroah-Hartman
2023-11-24 17:51 ` [PATCH 6.5 462/491] ext4: mark buffer new if it is unwritten to avoid stale data exposure Greg Kroah-Hartman
2023-11-24 17:51 ` [PATCH 6.5 463/491] ext4: correct return value of ext4_convert_meta_bg Greg Kroah-Hartman
2023-11-24 17:51 ` [PATCH 6.5 464/491] ext4: correct the start block of counting reserved clusters Greg Kroah-Hartman
2023-11-24 17:51 ` [PATCH 6.5 465/491] ext4: remove gdb backup copy for meta bg in setup_new_flex_group_blocks Greg Kroah-Hartman
2023-11-24 17:51 ` [PATCH 6.5 466/491] ext4: add missed brelse in update_backups Greg Kroah-Hartman
2023-11-24 17:51 ` [PATCH 6.5 467/491] ext4: properly sync file size update after O_SYNC direct IO Greg Kroah-Hartman
2023-11-24 17:51 ` [PATCH 6.5 468/491] ext4: fix racy may inline data check in dio write Greg Kroah-Hartman
2023-11-24 17:51 ` [PATCH 6.5 469/491] drm/amd/pm: Handle non-terminated overdrive commands Greg Kroah-Hartman
2023-11-24 17:51 ` [PATCH 6.5 470/491] drm: bridge: it66121: ->get_edid callback must not return err pointers Greg Kroah-Hartman
2023-11-24 17:51 ` [PATCH 6.5 471/491] drm/i915/mtl: Support HBR3 rate with C10 phy and eDP in MTL Greg Kroah-Hartman
2023-11-24 17:51 ` [PATCH 6.5 472/491] drm/i915: Bump GLK CDCLK frequency when driving multiple pipes Greg Kroah-Hartman
2023-11-24 17:51 ` [PATCH 6.5 473/491] drm/i915: Fix potential spectre vulnerability Greg Kroah-Hartman
2023-11-24 17:51 ` [PATCH 6.5 474/491] drm/i915: Flush WC GGTT only on required platforms Greg Kroah-Hartman
2023-11-24 17:51 ` [PATCH 6.5 475/491] drm/amd/pm: Fix error of MACO flag setting code Greg Kroah-Hartman
2023-11-24 17:51 ` [PATCH 6.5 476/491] drm/amdgpu/smu13: drop compute workload workaround Greg Kroah-Hartman
2023-11-24 17:51 ` Greg Kroah-Hartman [this message]
2023-11-24 17:51 ` [PATCH 6.5 478/491] drm/amdgpu: fix GRBM read timeout when do mes_self_test Greg Kroah-Hartman
2023-11-24 17:51 ` [PATCH 6.5 479/491] drm/amdgpu: add a retry for IP discovery init Greg Kroah-Hartman
2023-11-24 17:51 ` [PATCH 6.5 480/491] drm/amdgpu: dont use ATRM for external devices Greg Kroah-Hartman
2023-11-24 17:51 ` [PATCH 6.5 481/491] drm/amdgpu: fix error handling in amdgpu_vm_init Greg Kroah-Hartman
2023-11-24 17:51 ` [PATCH 6.5 482/491] drm/amdgpu: fix error handling in amdgpu_bo_list_get() Greg Kroah-Hartman
2023-11-24 17:51 ` [PATCH 6.5 483/491] drm/amdgpu: lower CS errors to debug severity Greg Kroah-Hartman
2023-11-24 17:52 ` [PATCH 6.5 484/491] drm/amdgpu: Fix possible null pointer dereference Greg Kroah-Hartman
2023-11-24 17:52 ` [PATCH 6.5 485/491] drm/amd/display: Guard against invalid RPTR/WPTR being set Greg Kroah-Hartman
2023-11-24 17:52 ` [PATCH 6.5 486/491] drm/amd/display: Fix DSC not Enabled on Direct MST Sink Greg Kroah-Hartman
2023-11-24 17:52 ` [PATCH 6.5 487/491] drm/amd/display: fix a NULL pointer dereference in amdgpu_dm_i2c_xfer() Greg Kroah-Hartman
2023-11-24 17:52 ` [PATCH 6.5 488/491] drm/amd/display: Enable fast plane updates on DCN3.2 and above Greg Kroah-Hartman
2023-11-24 17:52 ` [PATCH 6.5 489/491] drm/amd/display: Change the DMCUB mailbox memory location from FB to inbox Greg Kroah-Hartman
2023-11-24 17:52 ` [PATCH 6.5 490/491] powerpc/powernv: Fix fortify source warnings in opal-prd.c Greg Kroah-Hartman
2023-11-24 17:52 ` [PATCH 6.5 491/491] tracing: Have trace_event_file have ref counters Greg Kroah-Hartman
2023-11-24 19:15 ` [PATCH 6.5 000/491] 6.5.13-rc1 review Naresh Kamboju
2023-11-24 22:06 ` Nam Cao
2023-11-25  9:44 ` Ron Economos

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=20231124172038.973822125@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=alexander.deucher@amd.com \
    --cc=mario.limonciello@amd.com \
    --cc=patches@lists.linux.dev \
    --cc=stable@vger.kernel.org \
    /path/to/YOUR_REPLY

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

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