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, Matt Fagnani <matt.fagnani@bell.net>,
	Vasant Hegde <vasant.hegde@amd.com>,
	Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>,
	Joerg Roedel <jroedel@suse.de>,
	"Limonciello, Mario" <Mario.Limonciello@amd.com>
Subject: [PATCH 6.2 0003/1001] iommu/amd: Fix error handling for pdev_pri_ats_enable()
Date: Tue,  7 Mar 2023 17:46:15 +0100	[thread overview]
Message-ID: <20230307170022.255799690@linuxfoundation.org> (raw)
In-Reply-To: <20230307170022.094103862@linuxfoundation.org>

From: Vasant Hegde <vasant.hegde@amd.com>

commit 080920e52148b4fbbf9360d5345fdcd7846e4841 upstream.

Current code throws kernel warning if it fails to enable pasid/pri [1].
Do not call pci_disable_[pasid/pri] if pci_enable_[pasid/pri] failed.

[1] https://lore.kernel.org/linux-iommu/15d0f9ff-2a56-b3e9-5b45-e6b23300ae3b@leemhuis.info/

Reported-by: Matt Fagnani <matt.fagnani@bell.net>
Signed-off-by: Vasant Hegde <vasant.hegde@amd.com>
Reviewed-by: Suravee Suthikulpanit <suravee.suthikulpanit@amd.com>
Link: https://lore.kernel.org/r/20230111121503.5931-1-vasant.hegde@amd.com
Signed-off-by: Joerg Roedel <jroedel@suse.de>
Cc: "Limonciello, Mario" <Mario.Limonciello@amd.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
 drivers/iommu/amd/iommu.c |   12 +++++++-----
 1 file changed, 7 insertions(+), 5 deletions(-)

--- a/drivers/iommu/amd/iommu.c
+++ b/drivers/iommu/amd/iommu.c
@@ -1702,27 +1702,29 @@ static int pdev_pri_ats_enable(struct pc
 	/* Only allow access to user-accessible pages */
 	ret = pci_enable_pasid(pdev, 0);
 	if (ret)
-		goto out_err;
+		return ret;
 
 	/* First reset the PRI state of the device */
 	ret = pci_reset_pri(pdev);
 	if (ret)
-		goto out_err;
+		goto out_err_pasid;
 
 	/* Enable PRI */
 	/* FIXME: Hardcode number of outstanding requests for now */
 	ret = pci_enable_pri(pdev, 32);
 	if (ret)
-		goto out_err;
+		goto out_err_pasid;
 
 	ret = pci_enable_ats(pdev, PAGE_SHIFT);
 	if (ret)
-		goto out_err;
+		goto out_err_pri;
 
 	return 0;
 
-out_err:
+out_err_pri:
 	pci_disable_pri(pdev);
+
+out_err_pasid:
 	pci_disable_pasid(pdev);
 
 	return ret;



  parent reply	other threads:[~2023-03-07 17:12 UTC|newest]

Thread overview: 1015+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-03-07 16:46 [PATCH 6.2 0000/1001] 6.2.3-rc1 review Greg Kroah-Hartman
2023-03-07 16:46 ` [PATCH 6.2 0001/1001] HID: asus: use spinlock to protect concurrent accesses Greg Kroah-Hartman
2023-03-07 16:46 ` [PATCH 6.2 0002/1001] HID: asus: use spinlock to safely schedule workers Greg Kroah-Hartman
2023-03-07 16:46 ` Greg Kroah-Hartman [this message]
2023-03-07 16:46 ` [PATCH 6.2 0004/1001] iommu/amd: Skip attach device domain is same as new domain Greg Kroah-Hartman
2023-03-07 16:46 ` [PATCH 6.2 0005/1001] iommu/amd: Improve page fault error reporting Greg Kroah-Hartman
2023-03-07 16:46 ` [PATCH 6.2 0006/1001] iommu: Attach device group to old domain in error path Greg Kroah-Hartman
2023-03-07 16:46 ` [PATCH 6.2 0007/1001] powerpc/mm: Rearrange if-else block to avoid clang warning Greg Kroah-Hartman
2023-03-07 16:46 ` [PATCH 6.2 0008/1001] ata: ahci: Revert "ata: ahci: Add Tiger Lake UP{3,4} AHCI controller" Greg Kroah-Hartman
2023-03-07 16:46 ` [PATCH 6.2 0009/1001] ARM: OMAP2+: Fix memory leak in realtime_counter_init() Greg Kroah-Hartman
2023-03-07 16:46 ` [PATCH 6.2 0010/1001] arm64: dts: qcom: qcs404: use symbol names for PCIe resets Greg Kroah-Hartman
2023-03-07 16:46 ` [PATCH 6.2 0011/1001] arm64: dts: qcom: msm8996-tone: Fix USB taking 6 minutes to wake up Greg Kroah-Hartman
2023-03-07 16:46 ` [PATCH 6.2 0012/1001] arm64: dts: qcom: sm6115: Fix UFS node Greg Kroah-Hartman
2023-03-07 16:46 ` [PATCH 6.2 0013/1001] arm64: dts: qcom: sm6115: Provide xo clk to rpmcc Greg Kroah-Hartman
2023-03-07 16:46 ` [PATCH 6.2 0014/1001] arm64: dts: qcom: sm8150-kumano: Panel framebuffer is 2.5k instead of 4k Greg Kroah-Hartman
2023-03-07 16:46 ` [PATCH 6.2 0015/1001] arm64: dts: qcom: pmi8950: Correct rev_1250v channel label to mv Greg Kroah-Hartman
2023-03-07 16:46 ` [PATCH 6.2 0016/1001] arm64: dts: qcom: sm6350: Fix up the ramoops node Greg Kroah-Hartman
2023-03-07 16:46 ` [PATCH 6.2 0017/1001] arm64: dts: qcom: sdm670-google-sargo: keep pm660 ldo8 on Greg Kroah-Hartman
2023-03-07 16:46 ` [PATCH 6.2 0018/1001] arm64: dts: qcom: Re-enable resin on MSM8998 and SDM845 boards Greg Kroah-Hartman
2023-03-07 16:46 ` [PATCH 6.2 0019/1001] arm64: dts: qcom: sm8350-sagami: Configure SLG51000 PMIC on PDX215 Greg Kroah-Hartman
2023-03-07 16:46 ` [PATCH 6.2 0020/1001] arm64: dts: qcom: sm8350-sagami: Add GPIO line names for PMIC GPIOs Greg Kroah-Hartman
2023-03-07 16:46 ` [PATCH 6.2 0021/1001] arm64: dts: qcom: sm8350-sagami: Rectify GPIO keys Greg Kroah-Hartman
2023-03-07 16:46 ` [PATCH 6.2 0022/1001] arm64: dts: qcom: sm6350-lena: Flatten gpio-keys pinctrl state Greg Kroah-Hartman
2023-03-07 16:46 ` [PATCH 6.2 0023/1001] arm64: dts: qcom: sm6125: Reorder HSUSB PHY clocks to match bindings Greg Kroah-Hartman
2023-03-07 16:46 ` [PATCH 6.2 0024/1001] arm64: dts: qcom: sm6125-seine: Clean up gpio-keys (volume down) Greg Kroah-Hartman
2023-03-07 16:46 ` [PATCH 6.2 0025/1001] arm64: dts: imx8m: Align SoC unique ID node unit address Greg Kroah-Hartman
2023-03-07 16:46 ` [PATCH 6.2 0026/1001] ARM: zynq: Fix refcount leak in zynq_early_slcr_init Greg Kroah-Hartman
2023-03-07 16:46 ` [PATCH 6.2 0027/1001] fs: dlm: fix return value check in dlm_memory_init() Greg Kroah-Hartman
2023-03-07 16:46 ` [PATCH 6.2 0028/1001] arm64: dts: mediatek: mt8195: Add power domain to U3PHY1 T-PHY Greg Kroah-Hartman
2023-03-07 16:46 ` [PATCH 6.2 0029/1001] arm64: dts: mediatek: mt8183: Fix systimer 13 MHz clock description Greg Kroah-Hartman
2023-03-07 16:46 ` [PATCH 6.2 0030/1001] arm64: dts: mediatek: mt8192: " Greg Kroah-Hartman
2023-03-07 16:46 ` [PATCH 6.2 0031/1001] arm64: dts: mediatek: mt8195: " Greg Kroah-Hartman
2023-03-07 16:46 ` [PATCH 6.2 0032/1001] arm64: dts: mediatek: mt8186: " Greg Kroah-Hartman
2023-03-07 16:46 ` [PATCH 6.2 0033/1001] arm64: dts: qcom: sdm845-db845c: fix audio codec interrupt pin name Greg Kroah-Hartman
2023-03-07 16:46 ` [PATCH 6.2 0034/1001] arm64: dts: qcom: sdm845-xiaomi-beryllium: " Greg Kroah-Hartman
2023-03-07 16:46 ` [PATCH 6.2 0035/1001] x86/acpi/boot: Do not register processors that cannot be onlined for x2APIC Greg Kroah-Hartman
2023-03-07 16:46 ` [PATCH 6.2 0036/1001] arm64: dts: qcom: sc7180: correct SPMI bus address cells Greg Kroah-Hartman
2023-03-07 16:46 ` [PATCH 6.2 0037/1001] arm64: dts: qcom: sc7280: " Greg Kroah-Hartman
2023-03-07 16:46 ` [PATCH 6.2 0038/1001] arm64: dts: qcom: sc8280xp: " Greg Kroah-Hartman
2023-03-07 16:46 ` [PATCH 6.2 0039/1001] arm64: dts: qcom: sm8450: correct Soundwire wakeup interrupt name Greg Kroah-Hartman
2023-03-07 16:46 ` [PATCH 6.2 0040/1001] arm64: dts: qcom: sdm845: make DP node follow the schema Greg Kroah-Hartman
2023-03-07 16:46 ` [PATCH 6.2 0041/1001] arm64: dts: qcom: msm8996-oneplus-common: drop vdda-supply from DSI PHY Greg Kroah-Hartman
2023-03-07 16:46 ` [PATCH 6.2 0042/1001] arm64: dts: qcom: sc8280xp: Vote for CX in USB controllers Greg Kroah-Hartman
2023-03-07 16:46 ` [PATCH 6.2 0043/1001] arm64: dts: meson-gxl: jethub-j80: Fix WiFi MAC address node Greg Kroah-Hartman
2023-03-07 16:46 ` [PATCH 6.2 0044/1001] arm64: dts: meson-gxl: jethub-j80: Fix Bluetooth MAC node name Greg Kroah-Hartman
2023-03-07 16:46 ` [PATCH 6.2 0045/1001] arm64: dts: meson-axg: jethub-j1xx: Fix MAC address node names Greg Kroah-Hartman
2023-03-07 16:46 ` [PATCH 6.2 0046/1001] arm64: dts: meson-gx: Fix Ethernet MAC address unit name Greg Kroah-Hartman
2023-03-07 16:46 ` [PATCH 6.2 0047/1001] arm64: dts: meson-g12a: Fix internal Ethernet PHY " Greg Kroah-Hartman
2023-03-07 16:47 ` [PATCH 6.2 0048/1001] arm64: dts: meson-gx: Fix the SCPI DVFS node name and unit address Greg Kroah-Hartman
2023-03-07 16:47 ` [PATCH 6.2 0049/1001] cpuidle, intel_idle: Fix CPUIDLE_FLAG_IRQ_ENABLE *again* Greg Kroah-Hartman
2023-03-07 16:47 ` [PATCH 6.2 0050/1001] arm64: dts: ti: k3-am62-main: Fix clocks for McSPI Greg Kroah-Hartman
2023-03-07 16:47 ` [PATCH 6.2 0051/1001] arm64: tegra: Fix duplicate regulator on Jetson TX1 Greg Kroah-Hartman
2023-03-07 16:47 ` [PATCH 6.2 0052/1001] arm64: dts: qcom: msm8992-bullhead: Fix cont_splash_mem size Greg Kroah-Hartman
2023-03-07 16:47 ` [PATCH 6.2 0053/1001] arm64: dts: qcom: msm8992-bullhead: Disable dfps_data_mem Greg Kroah-Hartman
2023-03-07 16:47 ` [PATCH 6.2 0054/1001] arm64: dts: qcom: msm8956: use SoC-specific compat for tsens Greg Kroah-Hartman
2023-03-07 16:47 ` [PATCH 6.2 0055/1001] arm64: dts: qcom: ipq8074: correct USB3 QMP PHY-s clock output names Greg Kroah-Hartman
2023-03-07 16:47 ` [PATCH 6.2 0056/1001] arm64: dts: qcom: ipq8074: fix Gen2 PCIe QMP PHY Greg Kroah-Hartman
2023-03-07 16:47 ` [PATCH 6.2 0057/1001] arm64: dts: qcom: ipq8074: fix Gen3 " Greg Kroah-Hartman
2023-03-07 16:47 ` [PATCH 6.2 0058/1001] arm64: dts: qcom: ipq8074: correct Gen2 PCIe ranges Greg Kroah-Hartman
2023-03-07 16:47 ` [PATCH 6.2 0059/1001] arm64: dts: qcom: ipq8074: fix Gen3 PCIe node Greg Kroah-Hartman
2023-03-07 16:47 ` [PATCH 6.2 0060/1001] arm64: dts: qcom: ipq8074: correct PCIe QMP PHY output clock names Greg Kroah-Hartman
2023-03-07 16:47 ` [PATCH 6.2 0061/1001] arm64: dts: meson: remove CPU opps below 1GHz for G12A boards Greg Kroah-Hartman
2023-03-07 16:47 ` [PATCH 6.2 0062/1001] ARM: OMAP1: call platform_device_put() in error case in omap1_dm_timer_init() Greg Kroah-Hartman
2023-03-07 16:47 ` [PATCH 6.2 0063/1001] arm64: dts: mediatek: mt8192: Mark scp_adsp clock as broken Greg Kroah-Hartman
2023-03-07 16:47 ` [PATCH 6.2 0064/1001] ARM: bcm2835_defconfig: Enable the framebuffer Greg Kroah-Hartman
2023-03-07 16:47 ` [PATCH 6.2 0065/1001] ARM: s3c: fix s3c64xx_set_timer_source prototype Greg Kroah-Hartman
2023-03-07 16:47 ` [PATCH 6.2 0066/1001] arm64: dts: ti: k3-j7200: Fix wakeup pinmux range Greg Kroah-Hartman
2023-03-07 16:47 ` [PATCH 6.2 0067/1001] ARM: dts: exynos: correct wr-active property in Exynos3250 Rinato Greg Kroah-Hartman
2023-03-07 16:47 ` [PATCH 6.2 0068/1001] ARM: imx: Call ida_simple_remove() for ida_simple_get Greg Kroah-Hartman
2023-03-07 16:47 ` [PATCH 6.2 0069/1001] arm64: dts: amlogic: meson-gx: fix SCPI clock dvfs node name Greg Kroah-Hartman
2023-03-07 16:47 ` [PATCH 6.2 0070/1001] arm64: dts: amlogic: meson-axg: " Greg Kroah-Hartman
2023-03-07 16:47 ` [PATCH 6.2 0071/1001] arm64: dts: amlogic: meson-gx: add missing SCPI sensors compatible Greg Kroah-Hartman
2023-03-07 16:47 ` [PATCH 6.2 0072/1001] arm64: dts: amlogic: meson-axg-jethome-jethub-j1xx: fix supply name of USB controller node Greg Kroah-Hartman
2023-03-07 16:47 ` [PATCH 6.2 0073/1001] arm64: dts: amlogic: meson-gxl-s905d-sml5442tw: drop invalid clock-names property Greg Kroah-Hartman
2023-03-07 16:47 ` [PATCH 6.2 0074/1001] arm64: dts: amlogic: meson-gx: add missing unit address to rng node name Greg Kroah-Hartman
2023-03-07 16:47 ` [PATCH 6.2 0075/1001] arm64: dts: amlogic: meson-gxl-s905w-jethome-jethub-j80: fix invalid rtc " Greg Kroah-Hartman
2023-03-07 16:47 ` [PATCH 6.2 0076/1001] arm64: dts: amlogic: meson-axg-jethome-jethub-j1xx: " Greg Kroah-Hartman
2023-03-07 16:47 ` [PATCH 6.2 0077/1001] arm64: dts: amlogic: meson-gxl: add missing unit address to eth-phy-mux " Greg Kroah-Hartman
2023-03-07 16:47 ` [PATCH 6.2 0078/1001] arm64: dts: amlogic: meson-gx-libretech-pc: fix update button name Greg Kroah-Hartman
2023-03-07 16:47 ` [PATCH 6.2 0079/1001] arm64: dts: amlogic: meson-sm1-bananapi-m5: fix adc keys node names Greg Kroah-Hartman
2023-03-07 16:47 ` [PATCH 6.2 0080/1001] arm64: dts: amlogic: meson-gxl-s905d-phicomm-n1: fix led node name Greg Kroah-Hartman
2023-03-07 16:47 ` [PATCH 6.2 0081/1001] arm64: dts: amlogic: meson-gxbb-kii-pro: " Greg Kroah-Hartman
2023-03-07 16:47 ` [PATCH 6.2 0082/1001] arm64: dts: amlogic: meson-g12b-odroid-go-ultra: fix rk818 pmic properties Greg Kroah-Hartman
2023-03-07 16:47 ` [PATCH 6.2 0083/1001] arm64: dts: amlogic: meson-sm1-odroid-hc4: fix active fan thermal trip Greg Kroah-Hartman
2023-03-07 16:47 ` [PATCH 6.2 0084/1001] locking/rwsem: Disable preemption in all down_read*() and up_read() code paths Greg Kroah-Hartman
2023-03-07 16:47 ` [PATCH 6.2 0085/1001] arm64: tegra: Bump #address-cells and #size-cells Greg Kroah-Hartman
2023-03-07 16:47 ` [PATCH 6.2 0086/1001] arm64: tegra: Sort nodes by unit-address, then alphabetically Greg Kroah-Hartman
2023-03-07 16:47 ` [PATCH 6.2 0087/1001] arm64: tegra: Mark host1x as dma-coherent on Tegra194/234 Greg Kroah-Hartman
2023-03-07 16:47 ` [PATCH 6.2 0088/1001] arm64: dts: renesas: beacon-renesom: Fix gpio expander reference Greg Kroah-Hartman
2023-03-07 16:47 ` [PATCH 6.2 0089/1001] arm64: dts: meson: radxa-zero: allow usb otg mode Greg Kroah-Hartman
2023-03-07 16:47 ` [PATCH 6.2 0090/1001] arm64: dts: meson: bananapi-m5: switch VDDIO_C pin to OPEN_DRAIN Greg Kroah-Hartman
2023-03-07 16:47 ` [PATCH 6.2 0091/1001] ARM: dts: sun8i: nanopi-duo2: Fix regulator GPIO reference Greg Kroah-Hartman
2023-03-07 16:47 ` [PATCH 6.2 0092/1001] ublk_drv: remove nr_aborted_queues from ublk_device Greg Kroah-Hartman
2023-03-07 16:47 ` [PATCH 6.2 0093/1001] ublk_drv: dont probe partitions if the ubq daemon isnt trusted Greg Kroah-Hartman
2023-03-07 16:47 ` [PATCH 6.2 0094/1001] ARM: dts: imx7s: correct iomuxc gpr mux controller cells Greg Kroah-Hartman
2023-03-07 16:47 ` [PATCH 6.2 0095/1001] sbitmap: remove redundant check in __sbitmap_queue_get_batch Greg Kroah-Hartman
2023-03-07 16:47 ` [PATCH 6.2 0096/1001] sbitmap: correct wake_batch recalculation to avoid potential IO hung Greg Kroah-Hartman
2023-03-07 16:47 ` [PATCH 6.2 0097/1001] arm64: dts: mt8195: Fix CPU map for single-cluster SoC Greg Kroah-Hartman
2023-03-07 16:47 ` [PATCH 6.2 0098/1001] arm64: dts: mt8192: " Greg Kroah-Hartman
2023-03-07 16:47 ` [PATCH 6.2 0099/1001] arm64: dts: mt8186: " Greg Kroah-Hartman
2023-03-07 16:47 ` [PATCH 6.2 0100/1001] arm64: dts: mediatek: mt7622: Add missing pwm-cells to pwm node Greg Kroah-Hartman
2023-03-07 16:47 ` [PATCH 6.2 0101/1001] arm64: dts: mediatek: mt8186: Fix watchdog compatible Greg Kroah-Hartman
2023-03-07 16:47 ` [PATCH 6.2 0102/1001] arm64: dts: mediatek: mt8195: " Greg Kroah-Hartman
2023-03-07 16:47 ` [PATCH 6.2 0103/1001] arm64: dts: mediatek: mt7986: " Greg Kroah-Hartman
2023-03-07 16:47 ` [PATCH 6.2 0104/1001] ARM: dts: stm32: Update part number NVMEM description on stm32mp131 Greg Kroah-Hartman
2023-03-07 16:47 ` [PATCH 6.2 0105/1001] arm64: dts: qcom: sm8450-nagara: Correct firmware paths Greg Kroah-Hartman
2023-03-07 16:47 ` [PATCH 6.2 0106/1001] blk-mq: avoid sleep in blk_mq_alloc_request_hctx Greg Kroah-Hartman
2023-03-07 16:47 ` [PATCH 6.2 0107/1001] blk-mq: remove stale comment for blk_mq_sched_mark_restart_hctx Greg Kroah-Hartman
2023-03-07 16:48 ` [PATCH 6.2 0108/1001] blk-mq: wait on correct sbitmap_queue in blk_mq_mark_tag_wait Greg Kroah-Hartman
2023-03-07 16:48 ` [PATCH 6.2 0109/1001] blk-mq: Fix potential io hung for shared sbitmap per tagset Greg Kroah-Hartman
2023-03-07 16:48 ` [PATCH 6.2 0110/1001] blk-mq: correct stale comment of .get_budget Greg Kroah-Hartman
2023-03-07 16:48 ` [PATCH 6.2 0111/1001] arm64: dts: qcom: msm8996: support using GPLL0 as kryocc input Greg Kroah-Hartman
2023-03-07 16:48 ` [PATCH 6.2 0112/1001] arm64: dts: qcom: msm8996 switch from RPM_SMD_BB_CLK1 to RPM_SMD_XO_CLK_SRC Greg Kroah-Hartman
2023-03-07 16:48 ` [PATCH 6.2 0113/1001] arm64: dts: qcom: sm8350: drop incorrect cells from serial Greg Kroah-Hartman
2023-03-07 16:48 ` [PATCH 6.2 0114/1001] arm64: dts: qcom: sm8450: " Greg Kroah-Hartman
2023-03-07 16:48 ` [PATCH 6.2 0115/1001] arm64: dts: qcom: msm8992-lg-bullhead: Correct memory overlaps with the SMEM and MPSS memory regions Greg Kroah-Hartman
2023-03-07 16:48 ` [PATCH 6.2 0116/1001] arm64: dts: qcom: msm8953: correct TLMM gpio-ranges Greg Kroah-Hartman
2023-03-07 16:48 ` [PATCH 6.2 0117/1001] arm64: dts: qcom: sm6115: " Greg Kroah-Hartman
2023-03-07 16:48 ` [PATCH 6.2 0118/1001] arm64: dts: qcom: msm8992-lg-bullhead: Enable regulators Greg Kroah-Hartman
2023-03-07 16:48 ` [PATCH 6.2 0119/1001] s390/dasd: Fix potential memleak in dasd_eckd_init() Greg Kroah-Hartman
2023-03-07 16:48 ` [PATCH 6.2 0120/1001] io_uring,audit: dont log IORING_OP_MADVISE Greg Kroah-Hartman
2023-03-07 16:48 ` [PATCH 6.2 0121/1001] sched/rt: pick_next_rt_entity(): check list_entry Greg Kroah-Hartman
2023-03-07 16:48 ` [PATCH 6.2 0122/1001] perf/x86/intel/ds: Fix the conversion from TSC to perf time Greg Kroah-Hartman
2023-03-07 16:48 ` [PATCH 6.2 0123/1001] x86/perf/zhaoxin: Add stepping check for ZXC Greg Kroah-Hartman
2023-03-07 16:48 ` [PATCH 6.2 0124/1001] KEYS: asymmetric: Fix ECDSA use via keyctl uapi Greg Kroah-Hartman
2023-03-07 16:48 ` [PATCH 6.2 0125/1001] block: ublk: check IO buffer based on flag need_get_data Greg Kroah-Hartman
2023-03-07 16:48 ` [PATCH 6.2 0126/1001] arm64: dts: qcom: pmk8350: Use the correct PON compatible Greg Kroah-Hartman
2023-03-07 16:48 ` [PATCH 6.2 0127/1001] erofs: relinquish volume with mutex held Greg Kroah-Hartman
2023-03-07 16:48 ` [PATCH 6.2 0128/1001] block: sync mixed merged requests failfast with 1st bios Greg Kroah-Hartman
2023-03-07 16:48 ` [PATCH 6.2 0129/1001] block: Fix io statistics for cgroup in throttle path Greg Kroah-Hartman
2023-03-07 16:48 ` [PATCH 6.2 0130/1001] block: bio-integrity: Copy flags when bio_integrity_payload is cloned Greg Kroah-Hartman
2023-03-07 16:48 ` [PATCH 6.2 0131/1001] block: use proper return value from bio_failfast() Greg Kroah-Hartman
2023-03-07 16:48 ` [PATCH 6.2 0132/1001] wifi: mt76: mt7915: add missing of_node_put() Greg Kroah-Hartman
2023-03-07 16:48 ` [PATCH 6.2 0133/1001] wifi: mt76: mt7921s: fix slab-out-of-bounds access in sdio host Greg Kroah-Hartman
2023-03-07 16:48 ` [PATCH 6.2 0134/1001] wifi: mt76: mt7915: fix mt7915_rate_txpower_get() resource leaks Greg Kroah-Hartman
2023-03-07 16:48 ` [PATCH 6.2 0135/1001] wifi: mt76: mt7996: fix insecure data handling of mt7996_mcu_ie_countdown() Greg Kroah-Hartman
2023-03-07 16:48 ` [PATCH 6.2 0136/1001] wifi: mt76: mt7996: fix insecure data handling of mt7996_mcu_rx_radar_detected() Greg Kroah-Hartman
2023-03-07 16:48 ` [PATCH 6.2 0137/1001] wifi: mt76: mt7996: fix integer handling issue of mt7996_rf_regval_set() Greg Kroah-Hartman
2023-03-07 16:48 ` [PATCH 6.2 0138/1001] wifi: mt76: mt7915: check return value before accessing free_block_num Greg Kroah-Hartman
2023-03-07 16:48 ` [PATCH 6.2 0139/1001] wifi: mt76: mt7996: " Greg Kroah-Hartman
2023-03-07 16:48 ` [PATCH 6.2 0140/1001] wifi: mt76: mt7915: drop always true condition of __mt7915_reg_addr() Greg Kroah-Hartman
2023-03-07 16:48 ` [PATCH 6.2 0141/1001] wifi: mt76: mt7996: drop always true condition of __mt7996_reg_addr() Greg Kroah-Hartman
2023-03-07 16:48 ` [PATCH 6.2 0142/1001] wifi: mt76: mt7996: fix endianness warning in mt7996_mcu_sta_he_tlv Greg Kroah-Hartman
2023-03-07 16:48 ` [PATCH 6.2 0143/1001] wifi: mt76: mt76x0: fix oob access in mt76x0_phy_get_target_power Greg Kroah-Hartman
2023-03-07 16:48 ` [PATCH 6.2 0144/1001] wifi: mt76: mt7996: fix unintended sign extension of mt7996_hw_queue_read() Greg Kroah-Hartman
2023-03-07 16:48 ` [PATCH 6.2 0145/1001] wifi: mt76: mt7915: fix unintended sign extension of mt7915_hw_queue_read() Greg Kroah-Hartman
2023-03-07 16:48 ` [PATCH 6.2 0146/1001] wifi: mt76: fix coverity uninit_use_in_call in mt76_connac2_reverse_frag0_hdr_trans() Greg Kroah-Hartman
2023-03-07 16:48 ` [PATCH 6.2 0147/1001] wifi: mt76: mt7921: resource leaks at mt7921_check_offload_capability() Greg Kroah-Hartman
2023-03-07 16:48 ` [PATCH 6.2 0148/1001] wifi: rsi: Fix memory leak in rsi_coex_attach() Greg Kroah-Hartman
2023-03-07 16:48 ` [PATCH 6.2 0149/1001] wifi: rtlwifi: rtl8821ae: dont call kfree_skb() under spin_lock_irqsave() Greg Kroah-Hartman
2023-03-07 16:48 ` [PATCH 6.2 0150/1001] wifi: rtlwifi: rtl8188ee: " Greg Kroah-Hartman
2023-03-07 16:48 ` [PATCH 6.2 0151/1001] wifi: rtlwifi: rtl8723be: " Greg Kroah-Hartman
2023-03-07 16:48 ` [PATCH 6.2 0152/1001] wifi: iwlegacy: common: dont call dev_kfree_skb() " Greg Kroah-Hartman
2023-03-07 16:48 ` [PATCH 6.2 0153/1001] wifi: libertas: fix memory leak in lbs_init_adapter() Greg Kroah-Hartman
2023-03-07 16:48 ` [PATCH 6.2 0154/1001] wifi: rtl8xxxu: Fix assignment to bit field priv->pi_enabled Greg Kroah-Hartman
2023-03-07 16:48 ` [PATCH 6.2 0155/1001] wifi: rtl8xxxu: Fix assignment to bit field priv->cck_agc_report_type Greg Kroah-Hartman
2023-03-07 16:48 ` [PATCH 6.2 0156/1001] wifi: rtl8xxxu: dont call dev_kfree_skb() under spin_lock_irqsave() Greg Kroah-Hartman
2023-03-07 16:48 ` [PATCH 6.2 0157/1001] wifi: rtw89: 8852c: rfk: correct DACK setting Greg Kroah-Hartman
2023-03-07 16:48 ` [PATCH 6.2 0158/1001] wifi: rtw89: 8852c: rfk: correct DPK settings Greg Kroah-Hartman
2023-03-07 16:48 ` [PATCH 6.2 0159/1001] wifi: rtlwifi: Fix global-out-of-bounds bug in _rtl8812ae_phy_set_txpower_limit() Greg Kroah-Hartman
2023-03-07 16:48 ` [PATCH 6.2 0160/1001] libbpf: Fix single-line struct definition output in btf_dump Greg Kroah-Hartman
2023-03-07 16:48 ` [PATCH 6.2 0161/1001] libbpf: Fix btf__align_of() by taking into account field offsets Greg Kroah-Hartman
2023-03-07 16:48 ` [PATCH 6.2 0162/1001] wifi: ipw2x00: dont call dev_kfree_skb() under spin_lock_irqsave() Greg Kroah-Hartman
2023-03-07 16:48 ` [PATCH 6.2 0163/1001] wifi: ipw2200: fix memory leak in ipw_wdev_init() Greg Kroah-Hartman
2023-03-07 16:48 ` [PATCH 6.2 0164/1001] wifi: wilc1000: fix potential memory leak in wilc_mac_xmit() Greg Kroah-Hartman
2023-03-07 16:48 ` [PATCH 6.2 0165/1001] wifi: wilc1000: add missing unregister_netdev() in wilc_netdev_ifc_init() Greg Kroah-Hartman
2023-03-07 16:48 ` [PATCH 6.2 0166/1001] wifi: brcmfmac: fix potential memory leak in brcmf_netdev_start_xmit() Greg Kroah-Hartman
2023-03-07 16:48 ` [PATCH 6.2 0167/1001] wifi: brcmfmac: unmap dma buffer in brcmf_msgbuf_alloc_pktid() Greg Kroah-Hartman
2023-03-07 16:49 ` [PATCH 6.2 0168/1001] wifi: libertas_tf: dont call kfree_skb() under spin_lock_irqsave() Greg Kroah-Hartman
2023-03-07 16:49 ` [PATCH 6.2 0169/1001] wifi: libertas: if_usb: " Greg Kroah-Hartman
2023-03-07 16:49 ` [PATCH 6.2 0170/1001] wifi: libertas: main: " Greg Kroah-Hartman
2023-03-07 16:49 ` [PATCH 6.2 0171/1001] wifi: libertas: cmdresp: " Greg Kroah-Hartman
2023-03-07 16:49 ` [PATCH 6.2 0172/1001] wifi: wl3501_cs: " Greg Kroah-Hartman
2023-03-07 16:49 ` [PATCH 6.2 0173/1001] libbpf: Fix invalid return address register in s390 Greg Kroah-Hartman
2023-03-07 16:49 ` [PATCH 6.2 0174/1001] crypto: x86/ghash - fix unaligned access in ghash_setkey() Greg Kroah-Hartman
2023-03-07 16:49 ` [PATCH 6.2 0175/1001] crypto: ux500 - update debug config after ux500 cryp driver removal Greg Kroah-Hartman
2023-03-07 16:49 ` [PATCH 6.2 0176/1001] ACPICA: Drop port I/O validation for some regions Greg Kroah-Hartman
2023-03-07 16:49 ` [PATCH 6.2 0177/1001] genirq: Fix the return type of kstat_cpu_irqs_sum() Greg Kroah-Hartman
2023-03-07 16:49 ` [PATCH 6.2 0178/1001] rcu-tasks: Improve comments explaining tasks_rcu_exit_srcu purpose Greg Kroah-Hartman
2023-03-07 16:49 ` [PATCH 6.2 0179/1001] rcu-tasks: Remove preemption disablement around srcu_read_[un]lock() calls Greg Kroah-Hartman
2023-03-07 16:49 ` [PATCH 6.2 0180/1001] rcu-tasks: Fix synchronize_rcu_tasks() VS zap_pid_ns_processes() Greg Kroah-Hartman
2023-03-07 16:49 ` [PATCH 6.2 0181/1001] lib/mpi: Fix buffer overrun when SG is too long Greg Kroah-Hartman
2023-03-07 16:49 ` [PATCH 6.2 0182/1001] crypto: ccp - Avoid page allocation failure warning for SEV_GET_ID2 Greg Kroah-Hartman
2023-03-07 16:49 ` [PATCH 6.2 0183/1001] platform/chrome: cros_ec_typec: Update port DP VDO Greg Kroah-Hartman
2023-03-07 16:49 ` [PATCH 6.2 0184/1001] ACPICA: nsrepair: handle cases without a return value correctly Greg Kroah-Hartman
2023-03-07 16:49 ` [PATCH 6.2 0185/1001] libbpf: Fix map creation flags sanitization Greg Kroah-Hartman
2023-03-07 16:49 ` [PATCH 6.2 0186/1001] bpf_doc: Fix build error with older python versions Greg Kroah-Hartman
2023-03-07 16:49 ` [PATCH 6.2 0187/1001] selftests/xsk: print correct payload for packet dump Greg Kroah-Hartman
2023-03-07 16:49 ` [PATCH 6.2 0188/1001] selftests/xsk: print correct error codes when exiting Greg Kroah-Hartman
2023-03-07 16:49 ` [PATCH 6.2 0189/1001] arm64/cpufeature: Fix field sign for DIT hwcap detection Greg Kroah-Hartman
2023-03-07 16:49 ` [PATCH 6.2 0190/1001] arm64/sysreg: Fix errors in 32 bit enumeration values Greg Kroah-Hartman
2023-03-07 16:49 ` [PATCH 6.2 0191/1001] kselftest/arm64: Fix syscall-abi for systems without 128 bit SME Greg Kroah-Hartman
2023-03-07 16:49 ` [PATCH 6.2 0192/1001] workqueue: Protects wq_unbound_cpumask with wq_pool_attach_mutex Greg Kroah-Hartman
2023-03-07 16:49 ` [PATCH 6.2 0193/1001] s390/early: fix sclp_early_sccb variable lifetime Greg Kroah-Hartman
2023-03-07 16:49 ` [PATCH 6.2 0194/1001] s390/vfio-ap: fix an error handling path in vfio_ap_mdev_probe_queue() Greg Kroah-Hartman
2023-03-07 16:49 ` [PATCH 6.2 0195/1001] x86/signal: Fix the value returned by strict_sas_size() Greg Kroah-Hartman
2023-03-07 16:49 ` [PATCH 6.2 0196/1001] thermal/drivers/tsens: Drop msm8976-specific defines Greg Kroah-Hartman
2023-03-07 16:49 ` [PATCH 6.2 0197/1001] thermal/drivers/tsens: Sort out msm8976 vs msm8956 data Greg Kroah-Hartman
2023-03-07 16:49 ` [PATCH 6.2 0198/1001] thermal/drivers/tsens: fix slope values for msm8939 Greg Kroah-Hartman
2023-03-07 16:49 ` [PATCH 6.2 0199/1001] thermal/drivers/tsens: limit num_sensors to 9 " Greg Kroah-Hartman
2023-03-07 16:49 ` [PATCH 6.2 0200/1001] wifi: rtw89: fix potential leak in rtw89_append_probe_req_ie() Greg Kroah-Hartman
2023-03-07 16:49 ` [PATCH 6.2 0201/1001] wifi: rtw89: Add missing check for alloc_workqueue Greg Kroah-Hartman
2023-03-07 16:49 ` [PATCH 6.2 0202/1001] wifi: rtl8xxxu: Fix memory leaks with RTL8723BU, RTL8192EU Greg Kroah-Hartman
2023-03-07 16:49 ` [PATCH 6.2 0203/1001] wifi: orinoco: check return value of hermes_write_wordrec() Greg Kroah-Hartman
2023-03-07 16:49 ` [PATCH 6.2 0204/1001] wifi: rtw88: Use rtw_iterate_vifs() for rtw_vif_watch_dog_iter() Greg Kroah-Hartman
2023-03-07 16:49 ` [PATCH 6.2 0205/1001] wifi: rtw88: Use non-atomic sta iterator in rtw_ra_mask_info_update() Greg Kroah-Hartman
2023-03-07 16:49 ` [PATCH 6.2 0206/1001] thermal/drivers/imx_sc_thermal: Fix the loop condition Greg Kroah-Hartman
2023-03-07 16:49 ` [PATCH 6.2 0207/1001] wifi: ath9k: htc_hst: free skb in ath9k_htc_rx_msg() if there is no callback function Greg Kroah-Hartman
2023-03-07 16:49 ` [PATCH 6.2 0208/1001] wifi: ath9k: hif_usb: clean up skbs if ath9k_hif_usb_rx_stream() fails Greg Kroah-Hartman
2023-03-07 16:49 ` [PATCH 6.2 0209/1001] wifi: ath9k: Fix potential stack-out-of-bounds write in ath9k_wmi_rsp_callback() Greg Kroah-Hartman
2023-03-07 16:49 ` [PATCH 6.2 0210/1001] wifi: ath11k: Fix memory leak in ath11k_peer_rx_frag_setup Greg Kroah-Hartman
2023-03-07 16:49 ` [PATCH 6.2 0211/1001] wifi: cfg80211: Fix extended KCK key length check in nl80211_set_rekey_data() Greg Kroah-Hartman
2023-03-07 16:49 ` [PATCH 6.2 0212/1001] ACPI: battery: Fix missing NUL-termination with large strings Greg Kroah-Hartman
2023-03-07 16:49 ` [PATCH 6.2 0213/1001] selftests/bpf: Fix build errors if CONFIG_NF_CONNTRACK=m Greg Kroah-Hartman
2023-03-07 16:49 ` [PATCH 6.2 0214/1001] crypto: ccp - Failure on re-initialization due to duplicate sysfs filename Greg Kroah-Hartman
2023-03-07 16:49 ` [PATCH 6.2 0215/1001] crypto: essiv - Handle EBUSY correctly Greg Kroah-Hartman
2023-03-07 16:49 ` [PATCH 6.2 0216/1001] crypto: seqiv " Greg Kroah-Hartman
2023-03-07 16:49 ` [PATCH 6.2 0217/1001] powercap: fix possible name leak in powercap_register_zone() Greg Kroah-Hartman
2023-03-07 16:49 ` [PATCH 6.2 0218/1001] bpf: Fix state pruning for STACK_DYNPTR stack slots Greg Kroah-Hartman
2023-03-07 16:49 ` [PATCH 6.2 0219/1001] bpf: Fix missing var_off check for ARG_PTR_TO_DYNPTR Greg Kroah-Hartman
2023-03-07 16:49 ` [PATCH 6.2 0220/1001] bpf: Fix partial dynptr stack slot reads/writes Greg Kroah-Hartman
2023-03-07 16:49 ` [PATCH 6.2 0221/1001] x86/microcode: Add a parameter to microcode_check() to store CPU capabilities Greg Kroah-Hartman
2023-03-07 16:49 ` [PATCH 6.2 0222/1001] x86/microcode: Check CPU capabilities after late microcode update correctly Greg Kroah-Hartman
2023-03-07 16:49 ` [PATCH 6.2 0223/1001] x86/microcode: Adjust late loading result reporting message Greg Kroah-Hartman
2023-03-07 16:49 ` [PATCH 6.2 0224/1001] net: ethernet: ti: am65-cpsw/cpts: Fix CPTS release action Greg Kroah-Hartman
2023-03-07 16:49 ` [PATCH 6.2 0225/1001] selftests/bpf: Fix vmtest static compilation error Greg Kroah-Hartman
2023-03-07 16:49 ` [PATCH 6.2 0226/1001] crypto: xts - Handle EBUSY correctly Greg Kroah-Hartman
2023-03-07 16:49 ` [PATCH 6.2 0227/1001] leds: led-class: Add missing put_device() to led_put() Greg Kroah-Hartman
2023-03-07 16:50 ` [PATCH 6.2 0228/1001] drm/nouveau/disp: Fix nvif_outp_acquire_dp() argument size Greg Kroah-Hartman
2023-03-07 16:50 ` [PATCH 6.2 0229/1001] s390/bpf: Add expoline to tail calls Greg Kroah-Hartman
2023-03-07 16:50 ` [PATCH 6.2 0230/1001] wifi: iwlwifi: mei: fix compilation errors in rfkill() Greg Kroah-Hartman
2023-03-07 16:50 ` [PATCH 6.2 0231/1001] kselftest/arm64: Fix enumeration of systems without 128 bit SME Greg Kroah-Hartman
2023-03-07 16:50 ` [PATCH 6.2 0232/1001] can: rcar_canfd: Fix R-Car V3U CAN mode selection Greg Kroah-Hartman
2023-03-07 16:50 ` [PATCH 6.2 0233/1001] can: rcar_canfd: Fix R-Car V3U GAFLCFG field accesses Greg Kroah-Hartman
2023-03-07 16:50 ` [PATCH 6.2 0234/1001] selftests/bpf: Initialize tc in xdp_synproxy Greg Kroah-Hartman
2023-03-07 16:50 ` [PATCH 6.2 0235/1001] crypto: ccp - Flush the SEV-ES TMR memory before giving it to firmware Greg Kroah-Hartman
2023-03-07 16:50 ` [PATCH 6.2 0236/1001] bpftool: profile online CPUs instead of possible Greg Kroah-Hartman
2023-03-07 16:50 ` [PATCH 6.2 0237/1001] wifi: mt76: mt7921: fix deadlock in mt7921_abort_roc Greg Kroah-Hartman
2023-03-07 16:50 ` [PATCH 6.2 0238/1001] wifi: mt76: mt7915: call mt7915_mcu_set_thermal_throttling() only after init_work Greg Kroah-Hartman
2023-03-07 16:50 ` [PATCH 6.2 0239/1001] wifi: mt76: mt7915: rework mt7915_mcu_set_thermal_throttling Greg Kroah-Hartman
2023-03-07 16:50 ` [PATCH 6.2 0240/1001] wifi: mt76: mt7915: rework mt7915_thermal_temp_store() Greg Kroah-Hartman
2023-03-07 16:50 ` [PATCH 6.2 0241/1001] wifi: mt76: mt7921: fix channel switch fail in monitor mode Greg Kroah-Hartman
2023-03-07 16:50 ` [PATCH 6.2 0242/1001] wifi: mt76: mt7996: fix chainmask calculation in mt7996_set_antenna() Greg Kroah-Hartman
2023-03-07 16:50 ` [PATCH 6.2 0243/1001] wifi: mt76: mt7996: update register for CFEND_RATE Greg Kroah-Hartman
2023-03-07 16:50 ` [PATCH 6.2 0244/1001] wifi: mt76: connac: fix POWER_CTRL command name typo Greg Kroah-Hartman
2023-03-07 16:50 ` [PATCH 6.2 0245/1001] wifi: mt76: mt7921: fix invalid remain_on_channel duration Greg Kroah-Hartman
2023-03-07 16:50 ` [PATCH 6.2 0246/1001] wifi: mt76: mt7915: fix memory leak in mt7915_mcu_exit Greg Kroah-Hartman
2023-03-07 16:50 ` [PATCH 6.2 0247/1001] wifi: mt76: mt7996: fix memory leak in mt7996_mcu_exit Greg Kroah-Hartman
2023-03-07 16:50 ` [PATCH 6.2 0248/1001] wifi: mt76: dma: fix memory leak running mt76_dma_tx_cleanup Greg Kroah-Hartman
2023-03-07 16:50 ` [PATCH 6.2 0249/1001] wifi: mt76: fix switch default case in mt7996_reverse_frag0_hdr_trans Greg Kroah-Hartman
2023-03-07 16:50 ` [PATCH 6.2 0250/1001] wifi: mt76: mt7915: fix WED TxS reporting Greg Kroah-Hartman
2023-03-07 16:50 ` [PATCH 6.2 0251/1001] wifi: mt76: add memory barrier to SDIO queue kick Greg Kroah-Hartman
2023-03-07 16:50 ` [PATCH 6.2 0252/1001] wifi: mt76: mt7921: fix error code of return in mt7921_acpi_read Greg Kroah-Hartman
2023-03-07 16:50 ` [PATCH 6.2 0253/1001] wifi: mt76: mt7996: rely on mt76_connac2_mac_tx_rate_val Greg Kroah-Hartman
2023-03-07 16:50 ` [PATCH 6.2 0254/1001] net/mlx5: Enhance debug print in page allocation failure Greg Kroah-Hartman
2023-03-07 16:50 ` [PATCH 6.2 0255/1001] irqchip: Fix refcount leak in platform_irqchip_probe Greg Kroah-Hartman
2023-03-07 16:50 ` [PATCH 6.2 0256/1001] irqchip/alpine-msi: Fix refcount leak in alpine_msix_init_domains Greg Kroah-Hartman
2023-03-07 16:50 ` [PATCH 6.2 0257/1001] irqchip/irq-mvebu-gicp: Fix refcount leak in mvebu_gicp_probe Greg Kroah-Hartman
2023-03-07 16:50 ` [PATCH 6.2 0258/1001] irqchip/ti-sci: Fix refcount leak in ti_sci_intr_irq_domain_probe Greg Kroah-Hartman
2023-03-07 16:50 ` [PATCH 6.2 0259/1001] s390/mem_detect: fix detect_memory() error handling Greg Kroah-Hartman
2023-03-07 16:50 ` [PATCH 6.2 0260/1001] s390/vmem: fix empty page tables cleanup under KASAN Greg Kroah-Hartman
2023-03-07 16:50 ` [PATCH 6.2 0261/1001] s390/boot: cleanup decompressor header files Greg Kroah-Hartman
2023-03-07 16:50 ` [PATCH 6.2 0262/1001] s390/mem_detect: rely on diag260() if sclp_early_get_memsize() fails Greg Kroah-Hartman
2023-03-07 16:50 ` [PATCH 6.2 0263/1001] s390/boot: fix mem_detect extended area allocation Greg Kroah-Hartman
2023-03-07 16:50 ` [PATCH 6.2 0264/1001] net: add sock_init_data_uid() Greg Kroah-Hartman
2023-03-07 16:50 ` [PATCH 6.2 0265/1001] tun: tun_chr_open(): correctly initialize socket uid Greg Kroah-Hartman
2023-03-07 16:50 ` [PATCH 6.2 0266/1001] tap: tap_open(): " Greg Kroah-Hartman
2023-03-07 16:50 ` [PATCH 6.2 0267/1001] rxrpc: Fix overwaking on call poking Greg Kroah-Hartman
2023-03-07 16:50 ` [PATCH 6.2 0268/1001] OPP: fix error checking in opp_migrate_dentry() Greg Kroah-Hartman
2023-03-07 16:50 ` [PATCH 6.2 0269/1001] cpufreq: davinci: Fix clk use after free Greg Kroah-Hartman
2023-03-07 16:50 ` [PATCH 6.2 0270/1001] Bluetooth: hci_conn: Refactor hci_bind_bis() since it always succeeds Greg Kroah-Hartman
2023-03-07 16:50 ` [PATCH 6.2 0271/1001] Bluetooth: L2CAP: Fix potential user-after-free Greg Kroah-Hartman
2023-03-07 16:50 ` [PATCH 6.2 0272/1001] Bluetooth: hci_qca: get wakeup status from serdev device handle Greg Kroah-Hartman
2023-03-07 16:50 ` [PATCH 6.2 0273/1001] net: ipa: generic command param fix Greg Kroah-Hartman
2023-03-07 16:50 ` [PATCH 6.2 0274/1001] s390: vfio-ap: tighten the NIB validity check Greg Kroah-Hartman
2023-03-07 16:50 ` [PATCH 6.2 0275/1001] s390/ap: fix status returned by ap_aqic() Greg Kroah-Hartman
2023-03-07 16:50 ` [PATCH 6.2 0276/1001] s390/ap: fix status returned by ap_qact() Greg Kroah-Hartman
2023-03-07 16:50 ` [PATCH 6.2 0277/1001] libbpf: Fix alen calculation in libbpf_nla_dump_errormsg() Greg Kroah-Hartman
2023-03-07 16:50 ` [PATCH 6.2 0278/1001] xen/grant-dma-iommu: Implement a dummy probe_device() callback Greg Kroah-Hartman
2023-03-07 16:50 ` [PATCH 6.2 0279/1001] rds: rds_rm_zerocopy_callback() correct order for list_add_tail() Greg Kroah-Hartman
2023-03-07 16:50 ` [PATCH 6.2 0280/1001] crypto: rsa-pkcs1pad - Use akcipher_request_complete Greg Kroah-Hartman
2023-03-07 16:50 ` [PATCH 6.2 0281/1001] m68k: /proc/hardware should depend on PROC_FS Greg Kroah-Hartman
2023-03-07 16:50 ` [PATCH 6.2 0282/1001] RISC-V: time: initialize hrtimer based broadcast clock event device Greg Kroah-Hartman
2023-03-07 16:50 ` [PATCH 6.2 0283/1001] clocksource/drivers/riscv: Patch riscv_clock_next_event() jump before first use Greg Kroah-Hartman
2023-03-07 16:50 ` [PATCH 6.2 0284/1001] wifi: iwl3945: Add missing check for create_singlethread_workqueue Greg Kroah-Hartman
2023-03-07 16:50 ` [PATCH 6.2 0285/1001] wifi: iwl4965: Add missing check for create_singlethread_workqueue() Greg Kroah-Hartman
2023-03-07 16:50 ` [PATCH 6.2 0286/1001] wifi: brcmfmac: Rename Cypress 89459 to BCM4355 Greg Kroah-Hartman
2023-03-07 16:50 ` [PATCH 6.2 0287/1001] wifi: brcmfmac: pcie: Add IDs/properties for BCM4355 Greg Kroah-Hartman
2023-03-07 16:51 ` [PATCH 6.2 0288/1001] wifi: brcmfmac: pcie: Add IDs/properties for BCM4377 Greg Kroah-Hartman
2023-03-07 16:51 ` [PATCH 6.2 0289/1001] wifi: brcmfmac: pcie: Perform correct BCM4364 firmware selection Greg Kroah-Hartman
2023-03-07 16:51 ` [PATCH 6.2 0290/1001] wifi: mwifiex: fix loop iterator in mwifiex_update_ampdu_txwinsize() Greg Kroah-Hartman
2023-03-07 16:51 ` [PATCH 6.2 0291/1001] wifi: rtw89: fix parsing offset for MCC C2H Greg Kroah-Hartman
2023-03-07 16:51 ` [PATCH 6.2 0292/1001] selftests/bpf: Fix out-of-srctree build Greg Kroah-Hartman
2023-03-07 16:51 ` [PATCH 6.2 0293/1001] ACPI: resource: Add IRQ overrides for MAINGEAR Vector Pro 2 models Greg Kroah-Hartman
2023-03-07 16:51 ` [PATCH 6.2 0294/1001] ACPI: resource: Do IRQ override on all TongFang GMxRGxx Greg Kroah-Hartman
2023-03-07 16:51 ` [PATCH 6.2 0295/1001] crypto: octeontx2 - Fix objects shared between several modules Greg Kroah-Hartman
2023-03-07 16:51 ` [PATCH 6.2 0296/1001] crypto: crypto4xx - Call dma_unmap_page when done Greg Kroah-Hartman
2023-03-07 16:51 ` [PATCH 6.2 0297/1001] vfio/ccw: remove WARN_ON during shutdown Greg Kroah-Hartman
2023-03-07 16:51 ` [PATCH 6.2 0298/1001] wifi: mac80211: move color collision detection report in a delayed work Greg Kroah-Hartman
2023-03-07 16:51 ` [PATCH 6.2 0299/1001] wifi: mac80211: make rate u32 in sta_set_rate_info_rx() Greg Kroah-Hartman
2023-03-07 16:51 ` [PATCH 6.2 0300/1001] wifi: mac80211: fix non-MLO station association Greg Kroah-Hartman
2023-03-07 16:51 ` [PATCH 6.2 0301/1001] wifi: mac80211: Dont translate MLD addresses for multicast Greg Kroah-Hartman
2023-03-07 16:51 ` [PATCH 6.2 0302/1001] wifi: mac80211: avoid u32_encode_bits() warning Greg Kroah-Hartman
2023-03-07 16:51 ` [PATCH 6.2 0303/1001] wifi: mac80211: fix off-by-one link setting Greg Kroah-Hartman
2023-03-07 16:51 ` [PATCH 6.2 0304/1001] tools/lib/thermal: Fix thermal_sampling_exit() Greg Kroah-Hartman
2023-03-07 16:51 ` [PATCH 6.2 0305/1001] thermal/drivers/hisi: Drop second sensor hi3660 Greg Kroah-Hartman
2023-03-07 16:51 ` [PATCH 6.2 0306/1001] selftests/bpf: Fix map_kptr test Greg Kroah-Hartman
2023-03-07 16:51 ` [PATCH 6.2 0307/1001] wifi: mac80211: pass sta to ieee80211_rx_data_set_sta() Greg Kroah-Hartman
2023-03-07 16:51 ` [PATCH 6.2 0308/1001] bpf: Zeroing allocated object from slab in bpf memory allocator Greg Kroah-Hartman
2023-03-07 16:51 ` [PATCH 6.2 0309/1001] selftests/bpf: Fix xdp_do_redirect on s390x Greg Kroah-Hartman
2023-03-07 16:51 ` [PATCH 6.2 0310/1001] can: esd_usb: Move mislocated storage of SJA1000_ECC_SEG bits in case of a bus error Greg Kroah-Hartman
2023-03-07 16:51 ` [PATCH 6.2 0311/1001] can: esd_usb: Make use of can_change_state() and relocate checking skb for NULL Greg Kroah-Hartman
2023-03-07 16:51 ` [PATCH 6.2 0312/1001] xsk: check IFF_UP earlier in Tx path Greg Kroah-Hartman
2023-03-07 16:51 ` [PATCH 6.2 0313/1001] LoongArch, bpf: Use 4 instructions for function address in JIT Greg Kroah-Hartman
2023-03-07 16:51 ` [PATCH 6.2 0314/1001] bpf: Fix global subprog context argument resolution logic Greg Kroah-Hartman
2023-03-07 16:51 ` [PATCH 6.2 0315/1001] irqchip/irq-brcmstb-l2: Set IRQ_LEVEL for level triggered interrupts Greg Kroah-Hartman
2023-03-07 16:51 ` [PATCH 6.2 0316/1001] irqchip/irq-bcm7120-l2: " Greg Kroah-Hartman
2023-03-07 16:51 ` [PATCH 6.2 0317/1001] net/smc: fix potential panic dues to unprotected smc_llc_srv_add_link() Greg Kroah-Hartman
2023-03-07 16:51 ` [PATCH 6.2 0318/1001] net/smc: fix application data exception Greg Kroah-Hartman
2023-03-07 16:51 ` [PATCH 6.2 0319/1001] selftests/net: Interpret UDP_GRO cmsg data as an int value Greg Kroah-Hartman
2023-03-07 16:51 ` [PATCH 6.2 0320/1001] l2tp: Avoid possible recursive deadlock in l2tp_tunnel_register() Greg Kroah-Hartman
2023-03-07 16:51 ` [PATCH 6.2 0321/1001] net: bcmgenet: fix MoCA LED control Greg Kroah-Hartman
2023-03-07 16:51 ` [PATCH 6.2 0322/1001] net: lan966x: Fix possible deadlock inside PTP Greg Kroah-Hartman
2023-03-07 16:51 ` [PATCH 6.2 0323/1001] net/mlx4_en: Introduce flexible array to silence overflow warning Greg Kroah-Hartman
2023-03-07 16:51 ` [PATCH 6.2 0324/1001] net/mlx5e: Align IPsec ASO result memory to be as required by hardware Greg Kroah-Hartman
2023-03-07 16:51 ` [PATCH 6.2 0325/1001] selftest: fib_tests: Always cleanup before exit Greg Kroah-Hartman
2023-03-07 16:51 ` [PATCH 6.2 0326/1001] sefltests: netdevsim: wait for devlink instance after netns removal Greg Kroah-Hartman
2023-03-07 16:51 ` [PATCH 6.2 0327/1001] drm: Fix potential null-ptr-deref due to drmm_mode_config_init() Greg Kroah-Hartman
2023-03-07 16:51 ` [PATCH 6.2 0328/1001] drm/fourcc: Add missing big-endian XRGB1555 and RGB565 formats Greg Kroah-Hartman
2023-03-07 16:51 ` [PATCH 6.2 0329/1001] drm/bridge: ti-sn65dsi83: Fix delay after reset deassert to match spec Greg Kroah-Hartman
2023-03-07 16:51 ` [PATCH 6.2 0330/1001] drm: mxsfb: DRM_IMX_LCDIF should depend on ARCH_MXC Greg Kroah-Hartman
2023-03-07 16:51 ` [PATCH 6.2 0331/1001] drm: mxsfb: DRM_MXSFB should depend on ARCH_MXS || ARCH_MXC Greg Kroah-Hartman
2023-03-07 16:51 ` [PATCH 6.2 0332/1001] drm/bridge: megachips: Fix error handling in i2c_register_driver() Greg Kroah-Hartman
2023-03-07 16:51 ` [PATCH 6.2 0333/1001] drm/vkms: Fix memory leak in vkms_init() Greg Kroah-Hartman
2023-03-07 16:51 ` [PATCH 6.2 0334/1001] drm/vkms: Fix null-ptr-deref in vkms_release() Greg Kroah-Hartman
2023-03-07 16:51 ` [PATCH 6.2 0335/1001] drm/modes: Use strscpy() to copy command-line mode name Greg Kroah-Hartman
2023-03-07 16:51 ` [PATCH 6.2 0336/1001] drm/vc4: dpi: Fix format mapping for RGB565 Greg Kroah-Hartman
2023-03-07 16:51 ` [PATCH 6.2 0337/1001] drm/bridge: it6505: Guard bridge power in IRQ handler Greg Kroah-Hartman
2023-03-07 16:51 ` [PATCH 6.2 0338/1001] drm: tidss: Fix pixel format definition Greg Kroah-Hartman
2023-03-07 16:51 ` [PATCH 6.2 0339/1001] gpu: ipu-v3: common: Add of_node_put() for reference returned by of_graph_get_port_by_id() Greg Kroah-Hartman
2023-03-07 16:51 ` [PATCH 6.2 0340/1001] drm/ast: Init iosys_map pointer as I/O memory for damage handling Greg Kroah-Hartman
2023-03-07 16:51 ` [PATCH 6.2 0341/1001] drm/vc4: drop all currently held locks if deadlock happens Greg Kroah-Hartman
2023-03-07 16:51 ` [PATCH 6.2 0342/1001] hwmon: (ftsteutates) Fix scaling of measurements Greg Kroah-Hartman
2023-03-07 16:51 ` [PATCH 6.2 0343/1001] drm/msm/dpu: check for null return of devm_kzalloc() in dpu_writeback_init() Greg Kroah-Hartman
2023-03-07 16:51 ` [PATCH 6.2 0344/1001] drm/msm/hdmi: Add missing check for alloc_ordered_workqueue Greg Kroah-Hartman
2023-03-07 16:51 ` [PATCH 6.2 0345/1001] pinctrl: qcom: pinctrl-msm8976: Correct function names for wcss pins Greg Kroah-Hartman
2023-03-07 16:51 ` [PATCH 6.2 0346/1001] pinctrl: stm32: Fix refcount leak in stm32_pctrl_get_irq_domain Greg Kroah-Hartman
2023-03-07 16:51 ` [PATCH 6.2 0347/1001] pinctrl: rockchip: Fix refcount leak in rockchip_pinctrl_parse_groups Greg Kroah-Hartman
2023-03-07 16:52 ` [PATCH 6.2 0348/1001] drm/vc4: hvs: Configure the HVS COB allocations Greg Kroah-Hartman
2023-03-07 16:52 ` [PATCH 6.2 0349/1001] drm/vc4: hvs: Set AXI panic modes Greg Kroah-Hartman
2023-03-07 16:52 ` [PATCH 6.2 0350/1001] drm/vc4: hvs: SCALER_DISPBKGND_AUTOHS is only valid on HVS4 Greg Kroah-Hartman
2023-03-07 16:52 ` [PATCH 6.2 0351/1001] drm/vc4: hvs: Correct interrupt masking bit assignment for HVS5 Greg Kroah-Hartman
2023-03-07 16:52 ` [PATCH 6.2 0352/1001] drm/vc4: hvs: Fix colour order for xRGB1555 on HVS5 Greg Kroah-Hartman
2023-03-07 16:52 ` [PATCH 6.2 0353/1001] drm/vc4: hdmi: Correct interlaced timings again Greg Kroah-Hartman
2023-03-07 16:52 ` [PATCH 6.2 0354/1001] drm/msm: clean event_thread->worker in case of an error Greg Kroah-Hartman
2023-03-07 16:52 ` [PATCH 6.2 0355/1001] drm/panel-edp: fix name for IVO product id 854b Greg Kroah-Hartman
2023-03-07 16:52 ` [PATCH 6.2 0356/1001] scsi: qla2xxx: Fix exchange oversubscription Greg Kroah-Hartman
2023-03-07 16:52 ` [PATCH 6.2 0357/1001] scsi: qla2xxx: Fix exchange oversubscription for management commands Greg Kroah-Hartman
2023-03-07 16:52 ` [PATCH 6.2 0358/1001] scsi: qla2xxx: edif: Fix clang warning Greg Kroah-Hartman
2023-03-07 16:52 ` [PATCH 6.2 0359/1001] ASoC: fsl_sai: initialize is_dsp_mode flag Greg Kroah-Hartman
2023-03-07 16:52 ` [PATCH 6.2 0360/1001] drm/bridge: tc358767: Set default CLRSIPO count Greg Kroah-Hartman
2023-03-07 16:52 ` [PATCH 6.2 0361/1001] drm/msm/adreno: Fix null ptr access in adreno_gpu_cleanup() Greg Kroah-Hartman
2023-03-07 16:52 ` [PATCH 6.2 0362/1001] ALSA: hda/ca0132: minor fix for allocation size Greg Kroah-Hartman
2023-03-07 16:52 ` [PATCH 6.2 0363/1001] drm/amdgpu: Use the sched from entity for amdgpu_cs trace Greg Kroah-Hartman
2023-03-07 16:52 ` [PATCH 6.2 0364/1001] drm/msm/gem: Add check for kmalloc Greg Kroah-Hartman
2023-03-07 16:52 ` [PATCH 6.2 0365/1001] drm/msm/dpu: Disallow unallocated resources to be returned Greg Kroah-Hartman
2023-03-07 16:52 ` [PATCH 6.2 0366/1001] drm/bridge: lt9611: fix sleep mode setup Greg Kroah-Hartman
2023-03-07 16:52 ` [PATCH 6.2 0367/1001] drm/bridge: lt9611: fix HPD reenablement Greg Kroah-Hartman
2023-03-07 16:52 ` [PATCH 6.2 0368/1001] drm/bridge: lt9611: fix polarity programming Greg Kroah-Hartman
2023-03-07 16:52 ` [PATCH 6.2 0369/1001] drm/bridge: lt9611: fix programming of video modes Greg Kroah-Hartman
2023-03-07 16:52 ` [PATCH 6.2 0370/1001] drm/bridge: lt9611: fix clock calculation Greg Kroah-Hartman
2023-03-07 16:52 ` [PATCH 6.2 0371/1001] drm/bridge: lt9611: pass a pointer to the of node Greg Kroah-Hartman
2023-03-07 16:52 ` [PATCH 6.2 0372/1001] regulator: tps65219: use IS_ERR() to detect an error pointer Greg Kroah-Hartman
2023-03-07 16:52 ` [PATCH 6.2 0373/1001] drm/mipi-dsi: Fix byte order of 16-bit DCS set/get brightness Greg Kroah-Hartman
2023-03-07 16:52 ` [PATCH 6.2 0374/1001] drm: exynos: dsi: Fix MIPI_DSI*_NO_* mode flags Greg Kroah-Hartman
2023-03-07 16:52 ` [PATCH 6.2 0375/1001] drm/msm/dsi: Allow 2 CTRLs on v2.5.0 Greg Kroah-Hartman
2023-03-07 16:52 ` [PATCH 6.2 0376/1001] scsi: ufs: exynos: Fix DMA alignment for PAGE_SIZE != 4096 Greg Kroah-Hartman
2023-03-07 16:52 ` [PATCH 6.2 0377/1001] drm/msm/dpu: sc7180: add missing WB2 clock control Greg Kroah-Hartman
2023-03-07 16:52 ` [PATCH 6.2 0378/1001] drm/msm: use strscpy instead of strncpy Greg Kroah-Hartman
2023-03-07 16:52 ` [PATCH 6.2 0379/1001] drm/msm/dpu: Add check for cstate Greg Kroah-Hartman
2023-03-07 16:52 ` [PATCH 6.2 0380/1001] drm/msm/dpu: Add check for pstates Greg Kroah-Hartman
2023-03-07 16:52 ` [PATCH 6.2 0381/1001] drm/msm/mdp5: Add check for kzalloc Greg Kroah-Hartman
2023-03-07 16:52 ` [PATCH 6.2 0382/1001] habanalabs: bugs fixes in timestamps buff alloc Greg Kroah-Hartman
2023-03-07 16:52 ` [PATCH 6.2 0383/1001] pinctrl: bcm2835: Remove of_node_put() in bcm2835_of_gpio_ranges_fallback() Greg Kroah-Hartman
2023-03-07 16:52 ` [PATCH 6.2 0384/1001] pinctrl: mediatek: Initialize variable pullen and pullup to zero Greg Kroah-Hartman
2023-03-07 16:52 ` [PATCH 6.2 0385/1001] pinctrl: mediatek: Initialize variable *buf " Greg Kroah-Hartman
2023-03-07 16:52 ` [PATCH 6.2 0386/1001] gpu: host1x: Fix mask for syncpoint increment register Greg Kroah-Hartman
2023-03-07 16:52 ` [PATCH 6.2 0387/1001] gpu: host1x: Dont skip assigning syncpoints to channels Greg Kroah-Hartman
2023-03-07 16:52 ` [PATCH 6.2 0388/1001] drm/tegra: firewall: Check for is_addr_reg existence in IMM check Greg Kroah-Hartman
2023-03-07 16:52 ` [PATCH 6.2 0389/1001] drm/i915/mtl: Add initial gt workarounds Greg Kroah-Hartman
2023-03-07 16:52 ` [PATCH 6.2 0390/1001] drm/i915/xehp: GAM registers dont need to be re-applied on engine resets Greg Kroah-Hartman
2023-03-07 16:52 ` [PATCH 6.2 0391/1001] pinctrl: renesas: rzg2l: Fix configuring the GPIO pins as interrupts Greg Kroah-Hartman
2023-03-07 16:52 ` [PATCH 6.2 0392/1001] drm/i915/xehp: Annotate a couple more workaround registers as MCR Greg Kroah-Hartman
2023-03-07 16:52 ` [PATCH 6.2 0393/1001] drm/msm/dpu: set pdpu->is_rt_pipe early in dpu_plane_sspp_atomic_update() Greg Kroah-Hartman
2023-03-07 16:52 ` [PATCH 6.2 0394/1001] drm/mediatek: dsi: Reduce the time of dsi from LP11 to sending cmd Greg Kroah-Hartman
2023-03-07 16:52 ` [PATCH 6.2 0395/1001] drm/mediatek: Use NULL instead of 0 for NULL pointer Greg Kroah-Hartman
2023-03-07 16:52 ` [PATCH 6.2 0396/1001] drm/mediatek: Drop unbalanced obj unref Greg Kroah-Hartman
2023-03-07 16:52 ` [PATCH 6.2 0397/1001] drm/mediatek: mtk_drm_crtc: Add checks for devm_kcalloc Greg Kroah-Hartman
2023-03-07 16:52 ` [PATCH 6.2 0398/1001] drm/mediatek: Clean dangling pointer on bind error path Greg Kroah-Hartman
2023-03-07 16:52 ` [PATCH 6.2 0399/1001] ASoC: soc-compress.c: fixup private_data on snd_soc_new_compress() Greg Kroah-Hartman
2023-03-07 16:52 ` [PATCH 6.2 0400/1001] dt-bindings: display: mediatek: Fix the fallback for mediatek,mt8186-disp-ccorr Greg Kroah-Hartman
2023-03-07 16:52 ` [PATCH 6.2 0401/1001] gpio: pca9570: rename platform_data to chip_data Greg Kroah-Hartman
2023-03-07 16:52 ` [PATCH 6.2 0402/1001] gpio: vf610: connect GPIO label to dev name Greg Kroah-Hartman
2023-03-07 16:52 ` [PATCH 6.2 0403/1001] ASoC: topology: Properly access value coming from topology file Greg Kroah-Hartman
2023-03-07 16:52 ` [PATCH 6.2 0404/1001] spi: dw_bt1: fix MUX_MMIO dependencies Greg Kroah-Hartman
2023-03-07 16:52 ` [PATCH 6.2 0405/1001] ASoC: mchp-spdifrx: fix controls which rely on rsr register Greg Kroah-Hartman
2023-03-07 16:52 ` [PATCH 6.2 0406/1001] ASoC: mchp-spdifrx: fix return value in case completion times out Greg Kroah-Hartman
2023-03-07 16:52 ` [PATCH 6.2 0407/1001] ASoC: mchp-spdifrx: fix controls that works with completion mechanism Greg Kroah-Hartman
2023-03-07 16:53 ` [PATCH 6.2 0408/1001] ASoC: mchp-spdifrx: disable all interrupts in mchp_spdifrx_dai_remove() Greg Kroah-Hartman
2023-03-07 16:53 ` [PATCH 6.2 0409/1001] dm: improve shrinker debug names Greg Kroah-Hartman
2023-03-07 16:53 ` [PATCH 6.2 0410/1001] regmap: apply reg_base and reg_downshift for single register ops Greg Kroah-Hartman
2023-03-07 16:53 ` [PATCH 6.2 0411/1001] accel: fix CONFIG_DRM dependencies Greg Kroah-Hartman
2023-03-07 16:53 ` [PATCH 6.2 0412/1001] ASoC: rsnd: fixup #endif position Greg Kroah-Hartman
2023-03-07 16:53 ` [PATCH 6.2 0413/1001] ASoC: mchp-spdifrx: Fix uninitialized use of mr in mchp_spdifrx_hw_params() Greg Kroah-Hartman
2023-03-07 16:53 ` [PATCH 6.2 0414/1001] ASoC: dt-bindings: meson: fix gx-card codec node regex Greg Kroah-Hartman
2023-03-07 16:53 ` [PATCH 6.2 0415/1001] regulator: tps65219: use generic set_bypass() Greg Kroah-Hartman
2023-03-07 16:53 ` [PATCH 6.2 0416/1001] hwmon: (asus-ec-sensors) add missing mutex path Greg Kroah-Hartman
2023-03-07 16:53 ` [PATCH 6.2 0417/1001] hwmon: (ltc2945) Handle error case in ltc2945_value_store Greg Kroah-Hartman
2023-03-07 16:53 ` [PATCH 6.2 0418/1001] ALSA: hda: Fix the control element identification for multiple codecs Greg Kroah-Hartman
2023-03-07 16:53 ` [PATCH 6.2 0419/1001] drm/amdgpu: fix enum odm_combine_mode mismatch Greg Kroah-Hartman
2023-03-07 16:53 ` [PATCH 6.2 0420/1001] scsi: mpt3sas: Fix a memory leak Greg Kroah-Hartman
2023-03-07 16:53 ` [PATCH 6.2 0421/1001] scsi: aic94xx: Add missing check for dma_map_single() Greg Kroah-Hartman
2023-03-07 16:53 ` [PATCH 6.2 0422/1001] HID: multitouch: Add quirks for flipped axes Greg Kroah-Hartman
2023-03-07 16:53 ` [PATCH 6.2 0423/1001] HID: retain initial quirks set up when creating HID devices Greg Kroah-Hartman
2023-03-07 16:53 ` [PATCH 6.2 0424/1001] ASoC: qcom: q6apm-lpass-dai: unprepare stream if its already prepared Greg Kroah-Hartman
2023-03-07 16:53 ` [PATCH 6.2 0425/1001] ASoC: qcom: q6apm-dai: fix race condition while updating the position pointer Greg Kroah-Hartman
2023-03-07 16:53 ` [PATCH 6.2 0426/1001] ASoC: qcom: q6apm-dai: Add SNDRV_PCM_INFO_BATCH flag Greg Kroah-Hartman
2023-03-07 16:53 ` [PATCH 6.2 0427/1001] ASoC: codecs: lpass: register mclk after runtime pm Greg Kroah-Hartman
2023-03-07 16:53 ` [PATCH 6.2 0428/1001] ASoC: codecs: lpass: fix incorrect mclk rate Greg Kroah-Hartman
2023-03-07 16:53 ` [PATCH 6.2 0429/1001] spi: bcm63xx-hsspi: Endianness fix for ARM based SoC Greg Kroah-Hartman
2023-03-07 16:53 ` [PATCH 6.2 0430/1001] drm/amd/display: dont call dc_interrupt_set() for disabled crtcs Greg Kroah-Hartman
2023-03-07 16:53 ` [PATCH 6.2 0431/1001] HID: logitech-hidpp: Hard-code HID++ 1.0 fast scroll support Greg Kroah-Hartman
2023-03-07 16:53 ` [PATCH 6.2 0432/1001] spi: bcm63xx-hsspi: Fix multi-bit mode setting Greg Kroah-Hartman
2023-03-07 16:53 ` [PATCH 6.2 0433/1001] hwmon: (mlxreg-fan) Return zero speed for broken fan Greg Kroah-Hartman
2023-03-07 16:53 ` [PATCH 6.2 0434/1001] ASoC: tlv320adcx140: fix ti,gpio-config DT property init Greg Kroah-Hartman
2023-03-07 16:53 ` [PATCH 6.2 0435/1001] dm: remove flush_scheduled_work() during local_exit() Greg Kroah-Hartman
2023-03-07 16:53 ` [PATCH 6.2 0436/1001] nfs4trace: fix state manager flag printing Greg Kroah-Hartman
2023-03-07 16:53 ` [PATCH 6.2 0437/1001] NFS: fix disabling of swap Greg Kroah-Hartman
2023-03-07 16:53 ` [PATCH 6.2 0438/1001] drm/i915/pvc: Implement recommended caching policy Greg Kroah-Hartman
2023-03-07 16:53 ` [PATCH 6.2 0439/1001] drm/i915/pvc: Annotate two more workaround/tuning registers as MCR Greg Kroah-Hartman
2023-03-07 16:53 ` [PATCH 6.2 0440/1001] drm/i915: Fix GEN8_MISCCPCTL Greg Kroah-Hartman
2023-03-07 16:53 ` [PATCH 6.2 0441/1001] spi: synquacer: Fix timeout handling in synquacer_spi_transfer_one() Greg Kroah-Hartman
2023-03-07 16:53 ` [PATCH 6.2 0442/1001] ASoC: soc-dapm.h: fixup warning struct snd_pcm_substream not declared Greg Kroah-Hartman
2023-03-07 16:53 ` [PATCH 6.2 0443/1001] HID: bigben: use spinlock to protect concurrent accesses Greg Kroah-Hartman
2023-03-07 16:53 ` [PATCH 6.2 0444/1001] HID: bigben_worker() remove unneeded check on report_field Greg Kroah-Hartman
2023-03-07 16:53 ` [PATCH 6.2 0445/1001] HID: bigben: use spinlock to safely schedule workers Greg Kroah-Hartman
2023-03-07 16:53 ` [PATCH 6.2 0446/1001] hid: bigben_probe(): validate report count Greg Kroah-Hartman
2023-03-07 16:53 ` [PATCH 6.2 0447/1001] ALSA: hda/hdmi: Register with vga_switcheroo on Dual GPU Macbooks Greg Kroah-Hartman
2023-03-07 16:53 ` [PATCH 6.2 0448/1001] drm/shmem-helper: Fix locking for drm_gem_shmem_get_pages_sgt() Greg Kroah-Hartman
2023-03-07 16:53 ` [PATCH 6.2 0449/1001] NFSD: enhance inter-server copy cleanup Greg Kroah-Hartman
2023-03-07 16:53 ` [PATCH 6.2 0450/1001] NFSD: fix leaked reference count of nfsd4_ssc_umount_item Greg Kroah-Hartman
2023-03-07 16:53 ` [PATCH 6.2 0451/1001] nfsd: fix race to check ls_layouts Greg Kroah-Hartman
2023-03-07 16:53 ` [PATCH 6.2 0452/1001] nfsd: clean up potential nfsd_file refcount leaks in COPY codepath Greg Kroah-Hartman
2023-03-07 16:53 ` [PATCH 6.2 0453/1001] NFSD: fix problems with cleanup on errors in nfsd4_copy Greg Kroah-Hartman
2023-03-07 16:53 ` [PATCH 6.2 0454/1001] nfsd: fix courtesy client with deny mode handling in nfs4_upgrade_open Greg Kroah-Hartman
2023-03-07 16:53 ` [PATCH 6.2 0455/1001] nfsd: dont fsync nfsd_files on last close Greg Kroah-Hartman
2023-03-07 16:53 ` [PATCH 6.2 0456/1001] NFSD: copy the whole verifier in nfsd_copy_write_verifier Greg Kroah-Hartman
2023-03-07 16:53 ` [PATCH 6.2 0457/1001] cifs: Fix lost destroy smbd connection when MR allocate failed Greg Kroah-Hartman
2023-03-07 16:53 ` [PATCH 6.2 0458/1001] cifs: Fix warning and UAF when destroy the MR list Greg Kroah-Hartman
2023-03-07 16:53 ` [PATCH 6.2 0459/1001] cifs: use tcon allocation functions even for dummy tcon Greg Kroah-Hartman
2023-03-07 16:53 ` [PATCH 6.2 0460/1001] gfs2: jdata writepage fix Greg Kroah-Hartman
2023-03-07 16:53 ` [PATCH 6.2 0461/1001] perf llvm: Fix inadvertent file creation Greg Kroah-Hartman
2023-03-07 16:53 ` [PATCH 6.2 0462/1001] leds: led-core: Fix refcount leak in of_led_get() Greg Kroah-Hartman
2023-03-07 16:53 ` [PATCH 6.2 0463/1001] leds: is31fl319x: Wrap mutex_destroy() for devm_add_action_or_rest() Greg Kroah-Hartman
2023-03-07 16:53 ` [PATCH 6.2 0464/1001] leds: simatic-ipc-leds-gpio: Make sure we have the GPIO providing driver Greg Kroah-Hartman
2023-03-07 16:53 ` [PATCH 6.2 0465/1001] tools/tracing/rtla: osnoise_hist: use total duration for average calculation Greg Kroah-Hartman
2023-03-07 16:53 ` [PATCH 6.2 0466/1001] perf inject: Use perf_data__read() for auxtrace Greg Kroah-Hartman
2023-03-07 16:53 ` [PATCH 6.2 0467/1001] perf intel-pt: Do not try to queue auxtrace data on pipe Greg Kroah-Hartman
2023-03-07 16:54 ` [PATCH 6.2 0468/1001] perf stat: Hide invalid uncore event output for aggr mode Greg Kroah-Hartman
2023-03-07 16:54 ` [PATCH 6.2 0469/1001] perf jevents: Correct bad character encoding Greg Kroah-Hartman
2023-03-07 16:54 ` [PATCH 6.2 0470/1001] perf test bpf: Skip test if kernel-debuginfo is not present Greg Kroah-Hartman
2023-03-07 16:54 ` [PATCH 6.2 0471/1001] perf tools: Fix auto-complete on aarch64 Greg Kroah-Hartman
2023-03-07 16:54 ` [PATCH 6.2 0472/1001] perf stat: Avoid merging/aggregating metric counts twice Greg Kroah-Hartman
2023-03-07 16:54 ` [PATCH 6.2 0473/1001] sparc: allow PM configs for sparc32 COMPILE_TEST Greg Kroah-Hartman
2023-03-07 16:54 ` [PATCH 6.2 0474/1001] selftests: find echo binary to use -ne options Greg Kroah-Hartman
2023-03-07 16:54 ` [PATCH 6.2 0475/1001] selftests/ftrace: Fix bash specific "==" operator Greg Kroah-Hartman
2023-03-07 16:54 ` [PATCH 6.2 0476/1001] selftests: use printf instead of echo -ne Greg Kroah-Hartman
2023-03-07 16:54 ` [PATCH 6.2 0477/1001] perf record: Fix segfault with --overwrite and --max-size Greg Kroah-Hartman
2023-03-07 16:54 ` [PATCH 6.2 0478/1001] printf: fix errname.c list Greg Kroah-Hartman
2023-03-07 16:54 ` [PATCH 6.2 0479/1001] perf tests stat_all_metrics: Change true workload to sleep workload for system wide check Greg Kroah-Hartman
2023-03-07 16:54 ` [PATCH 6.2 0480/1001] objtool: add UACCESS exceptions for __tsan_volatile_read/write Greg Kroah-Hartman
2023-03-07 16:54 ` [PATCH 6.2 0481/1001] selftests/ftrace: Fix probepoint testcase to ignore __pfx_* symbols Greg Kroah-Hartman
2023-03-07 16:54 ` [PATCH 6.2 0482/1001] sysctl: fix proc_dobool() usability Greg Kroah-Hartman
2023-03-07 16:54 ` [PATCH 6.2 0483/1001] mfd: rk808: Re-add rk808-clkout to RK818 Greg Kroah-Hartman
2023-03-07 16:54 ` [PATCH 6.2 0484/1001] mfd: cs5535: Dont build on UML Greg Kroah-Hartman
2023-03-07 16:54 ` [PATCH 6.2 0485/1001] mfd: pcf50633-adc: Fix potential memleak in pcf50633_adc_async_read() Greg Kroah-Hartman
2023-03-07 16:54 ` [PATCH 6.2 0486/1001] dmaengine: idxd: Set traffic class values in GRPCFG on DSA 2.0 Greg Kroah-Hartman
2023-03-07 16:54 ` [PATCH 6.2 0487/1001] RDMA/erdma: Fix refcount leak in erdma_mmap Greg Kroah-Hartman
2023-03-07 16:54 ` [PATCH 6.2 0488/1001] dmaengine: HISI_DMA should depend on ARCH_HISI Greg Kroah-Hartman
2023-03-07 16:54 ` [PATCH 6.2 0489/1001] RDMA/hns: Fix refcount leak in hns_roce_mmap Greg Kroah-Hartman
2023-03-07 16:54 ` [PATCH 6.2 0490/1001] iio: light: tsl2563: Do not hardcode interrupt trigger type Greg Kroah-Hartman
2023-03-07 16:54 ` [PATCH 6.2 0491/1001] usb: gadget: fusb300_udc: free irq on the error path in fusb300_probe() Greg Kroah-Hartman
2023-03-07 16:54 ` [PATCH 6.2 0492/1001] i2c: designware: fix i2c_dw_clk_rate() return size to be u32 Greg Kroah-Hartman
2023-03-07 16:54 ` [PATCH 6.2 0493/1001] i2c: qcom-geni: change i2c_master_hub to static Greg Kroah-Hartman
2023-03-07 16:54 ` [PATCH 6.2 0494/1001] soundwire: cadence: Dont overflow the command FIFOs Greg Kroah-Hartman
2023-03-07 16:54 ` [PATCH 6.2 0495/1001] driver core: fix potential null-ptr-deref in device_add() Greg Kroah-Hartman
2023-03-07 16:54 ` [PATCH 6.2 0496/1001] kobject: Fix slab-out-of-bounds in fill_kobj_path() Greg Kroah-Hartman
2023-03-07 16:54 ` [PATCH 6.2 0497/1001] alpha/boot/tools/objstrip: fix the check for ELF header Greg Kroah-Hartman
2023-03-07 16:54 ` [PATCH 6.2 0498/1001] media: uvcvideo: Check for INACTIVE in uvc_ctrl_is_accessible() Greg Kroah-Hartman
2023-03-07 16:54 ` [PATCH 6.2 0499/1001] media: uvcvideo: Implement mask for V4L2_CTRL_TYPE_MENU Greg Kroah-Hartman
2023-03-07 16:54 ` [PATCH 6.2 0500/1001] media: uvcvideo: Refactor uvc_ctrl_mappings_uvcXX Greg Kroah-Hartman
2023-03-07 16:54 ` [PATCH 6.2 0501/1001] media: uvcvideo: Refactor power_line_frequency_controls_limited Greg Kroah-Hartman
2023-03-07 16:54 ` [PATCH 6.2 0502/1001] coresight: etm4x: Fix accesses to TRCSEQRSTEVR and TRCSEQSTR Greg Kroah-Hartman
2023-03-07 16:54 ` [PATCH 6.2 0503/1001] coresight: cti: Prevent negative values of enable count Greg Kroah-Hartman
2023-03-07 16:54 ` [PATCH 6.2 0504/1001] coresight: cti: Add PM runtime call in enable_store Greg Kroah-Hartman
2023-03-07 16:54 ` [PATCH 6.2 0505/1001] usb: typec: intel_pmc_mux: Dont leak the ACPI device reference count Greg Kroah-Hartman
2023-03-07 16:54 ` [PATCH 6.2 0506/1001] PCI/IOV: Enlarge virtfn sysfs name buffer Greg Kroah-Hartman
2023-03-07 16:54 ` [PATCH 6.2 0507/1001] PCI: switchtec: Return -EFAULT for copy_to_user() errors Greg Kroah-Hartman
2023-03-07 16:54 ` [PATCH 6.2 0508/1001] PCI: endpoint: pci-epf-vntb: Add epf_ntb_mw_bar_clear() num_mws kernel-doc Greg Kroah-Hartman
2023-03-07 16:54 ` [PATCH 6.2 0509/1001] hwtracing: hisi_ptt: Only add the supported devices to the filters list Greg Kroah-Hartman
2023-03-07 16:54 ` [PATCH 6.2 0510/1001] tty: serial: fsl_lpuart: disable Rx/Tx DMA in lpuart32_shutdown() Greg Kroah-Hartman
2023-03-07 16:54 ` [PATCH 6.2 0511/1001] tty: serial: fsl_lpuart: clear LPUART Status Register " Greg Kroah-Hartman
2023-03-07 16:54 ` [PATCH 6.2 0512/1001] tty: serial: qcom-geni-serial: stop operations in progress at shutdown Greg Kroah-Hartman
2023-03-07 16:54 ` [PATCH 6.2 0513/1001] serial: tegra: Add missing clk_disable_unprepare() in tegra_uart_hw_init() Greg Kroah-Hartman
2023-03-07 16:54 ` [PATCH 6.2 0514/1001] Revert "char: pcmcia: cm4000_cs: Replace mdelay with usleep_range in set_protocol" Greg Kroah-Hartman
2023-03-07 16:54 ` [PATCH 6.2 0515/1001] eeprom: idt_89hpesx: Fix error handling in idt_init() Greg Kroah-Hartman
2023-03-07 16:54 ` [PATCH 6.2 0516/1001] applicom: Fix PCI device refcount leak in applicom_init() Greg Kroah-Hartman
2023-03-07 16:54 ` [PATCH 6.2 0517/1001] firmware: stratix10-svc: add missing gen_pool_destroy() in stratix10_svc_drv_probe() Greg Kroah-Hartman
2023-03-07 16:54 ` [PATCH 6.2 0518/1001] firmware: stratix10-svc: fix error handle while alloc/add device failed Greg Kroah-Hartman
2023-03-07 16:54 ` [PATCH 6.2 0519/1001] VMCI: check context->notify_page after call to get_user_pages_fast() to avoid GPF Greg Kroah-Hartman
2023-03-07 16:54 ` [PATCH 6.2 0520/1001] mei: pxp: Use correct macros to initialize uuid_le Greg Kroah-Hartman
2023-03-07 16:54 ` [PATCH 6.2 0521/1001] misc/mei/hdcp: " Greg Kroah-Hartman
2023-03-07 16:54 ` [PATCH 6.2 0522/1001] misc: fastrpc: Fix an error handling path in fastrpc_rpmsg_probe() Greg Kroah-Hartman
2023-03-07 16:54 ` [PATCH 6.2 0523/1001] iommu/exynos: Fix error handling in exynos_iommu_init() Greg Kroah-Hartman
2023-03-07 16:54 ` [PATCH 6.2 0524/1001] driver core: fix resource leak in device_add() Greg Kroah-Hartman
2023-03-07 16:54 ` [PATCH 6.2 0525/1001] driver core: location: Free struct acpi_pld_info *pld before return false Greg Kroah-Hartman
2023-03-07 16:54 ` [PATCH 6.2 0526/1001] drivers: base: transport_class: fix possible memory leak Greg Kroah-Hartman
2023-03-07 16:54 ` [PATCH 6.2 0527/1001] drivers: base: transport_class: fix resource leak when transport_add_device() fails Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 6.2 0528/1001] firmware: dmi-sysfs: Fix null-ptr-deref in dmi_sysfs_register_handle Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 6.2 0529/1001] selftests: iommu: Fix test_cmd_destroy_access() call in user_copy Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 6.2 0530/1001] iommufd: Add three missing structures in ucmd_buffer Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 6.2 0531/1001] fotg210-udc: Add missing completion handler Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 6.2 0532/1001] dmaengine: dw-edma: Fix missing src/dst address of interleaved xfers Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 6.2 0533/1001] fpga: microchip-spi: move SPI I/O buffers out of stack Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 6.2 0534/1001] fpga: microchip-spi: rewrite status polling in a time measurable way Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 6.2 0535/1001] usb: early: xhci-dbc: Fix a potential out-of-bound memory access Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 6.2 0536/1001] tty: serial: fsl_lpuart: Fix the wrong RXWATER setting for rx dma case Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 6.2 0537/1001] RDMA/cxgb4: add null-ptr-check after ip_dev_find() Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 6.2 0538/1001] usb: musb: mediatek: dont unregister something that wasnt registered Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 6.2 0539/1001] usb: gadget: configfs: Restrict symlink creation is UDC already binded Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 6.2 0540/1001] phy: mediatek: remove temporary variable @mask_ Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 6.2 0541/1001] PCI: mt7621: Delay phy ports initialization Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 6.2 0542/1001] iommu/vt-d: Set No Execute Enable bit in PASID table entry Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 6.2 0543/1001] power: supply: remove faulty cooling logic Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 6.2 0544/1001] RDMA/siw: Fix user page pinning accounting Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 6.2 0545/1001] RDMA/cxgb4: Fix potential null-ptr-deref in pass_establish() Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 6.2 0546/1001] usb: max-3421: Fix setting of I/O pins Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 6.2 0547/1001] RDMA/irdma: Cap MSIX used to online CPUs + 1 Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 6.2 0548/1001] serial: fsl_lpuart: fix RS485 RTS polariy inverse issue Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 6.2 0549/1001] tty: serial: imx: disable Ageing Timer interrupt request irq Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 6.2 0550/1001] driver core: fw_devlink: Add DL_FLAG_CYCLE support to device links Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 6.2 0551/1001] driver core: fw_devlink: Dont purge child fwnodes consumer links Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 6.2 0552/1001] driver core: fw_devlink: Allow marking a fwnode link as being part of a cycle Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 6.2 0553/1001] driver core: fw_devlink: Consolidate device link flag computation Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 6.2 0554/1001] driver core: fw_devlink: Improve check for fwnode with no device/driver Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 6.2 0555/1001] driver core: fw_devlink: Make cycle detection more robust Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 6.2 0556/1001] mtd: mtdpart: Dont create platform device thatll never probe Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 6.2 0557/1001] usb: host: fsl-mph-dr-of: reuse device_set_of_node_from_dev Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 6.2 0558/1001] dmaengine: dw-edma: Fix readq_ch() return value truncation Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 6.2 0559/1001] PCI: Fix dropping valid root bus resources with .end = zero Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 6.2 0560/1001] phy: rockchip-typec: fix tcphy_get_mode error case Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 6.2 0561/1001] PCI: qcom: Fix host-init error handling Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 6.2 0562/1001] iw_cxgb4: Fix potential NULL dereference in c4iw_fill_res_cm_id_entry() Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 6.2 0563/1001] iommu: Fix error unwind in iommu_group_alloc() Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 6.2 0564/1001] iommu/amd: Do not identity map v2 capable device when snp is enabled Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 6.2 0565/1001] dmaengine: sf-pdma: pdma_desc memory leak fix Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 6.2 0566/1001] dmaengine: dw-axi-dmac: Do not dereference NULL structure Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 6.2 0567/1001] dmaengine: ptdma: check for null desc before calling pt_cmd_callback Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 6.2 0568/1001] iommu/vt-d: Fix error handling in sva enable/disable paths Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 6.2 0569/1001] iommu/vt-d: Allow to use flush-queue when first level is default Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 6.2 0570/1001] RDMA/rxe: Cleanup mr_check_range Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 6.2 0571/1001] RDMA/rxe: Move rxe_map_mr_sg to rxe_mr.c Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 6.2 0572/1001] RDMA-rxe: Isolate mr code from atomic_reply() Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 6.2 0573/1001] RDMA-rxe: Isolate mr code from atomic_write_reply() Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 6.2 0574/1001] RDMA/rxe: Cleanup page variables in rxe_mr.c Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 6.2 0575/1001] RDMA/rxe: Replace rxe_map and rxe_phys_buf by xarray Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 6.2 0576/1001] Subject: RDMA/rxe: Handle zero length rdma Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 6.2 0577/1001] RDMA/mana_ib: Fix a bug when the PF indicates more entries for registering memory on first packet Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 6.2 0578/1001] RDMA/rxe: Fix missing memory barriers in rxe_queue.h Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 6.2 0579/1001] IB/hfi1: Fix math bugs in hfi1_can_pin_pages() Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 6.2 0580/1001] IB/hfi1: Fix sdma.h tx->num_descs off-by-one errors Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 6.2 0581/1001] Revert "remoteproc: qcom_q6v5_mss: map/unmap metadata region before/after use" Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 6.2 0582/1001] remoteproc: qcom_q6v5_mss: Use a carveout to authenticate modem headers Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 6.2 0583/1001] media: ti: cal: fix possible memory leak in cal_ctx_create() Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 6.2 0584/1001] media: platform: ti: Add missing check for devm_regulator_get Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 6.2 0585/1001] media: imx: imx7-media-csi: fix missing clk_disable_unprepare() in imx7_csi_init() Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 6.2 0586/1001] powerpc: Remove linker flag from KBUILD_AFLAGS Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 6.2 0587/1001] s390/vdso: Drop -shared from KBUILD_CFLAGS_64 Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 6.2 0588/1001] builddeb: clean generated package content Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 6.2 0589/1001] media: max9286: Fix memleak in max9286_v4l2_register() Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 6.2 0590/1001] media: ov2740: Fix memleak in ov2740_init_controls() Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 6.2 0591/1001] media: ov5675: Fix memleak in ov5675_init_controls() Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 6.2 0592/1001] media: i2c: tc358746: fix missing return assignment Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 6.2 0593/1001] media: i2c: tc358746: fix ignoring read error in g_register callback Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 6.2 0594/1001] media: i2c: tc358746: fix possible endianness issue Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 6.2 0595/1001] media: ov5640: Fix soft reset sequence and timings Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 6.2 0596/1001] media: ov5640: Handle delays when no reset_gpio set Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 6.2 0597/1001] media: mc: Get media_device directly from pad Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 6.2 0598/1001] media: i2c: ov772x: Fix memleak in ov772x_probe() Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 6.2 0599/1001] media: i2c: imx219: Split common registers from mode tables Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 6.2 0600/1001] media: i2c: imx219: Fix binning for RAW8 capture Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 6.2 0601/1001] media: platform: mtk-mdp3: Fix return value check in mdp_probe() Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 6.2 0602/1001] media: camss: csiphy-3ph: avoid undefined behavior Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 6.2 0603/1001] media: platform: mtk-mdp3: fix Kconfig dependencies Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 6.2 0604/1001] media: v4l2-jpeg: correct the skip count in jpeg_parse_app14_data Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 6.2 0605/1001] media: v4l2-jpeg: ignore the unknown APP14 marker Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 6.2 0606/1001] media: hantro: Fix JPEG encoder ENUM_FRMSIZE on RK3399 Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 6.2 0607/1001] media: imx-jpeg: Apply clk_bulk api instead of operating specific clk Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 6.2 0608/1001] media: amphion: correct the unspecified color space Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 6.2 0609/1001] media: drivers/media/v4l2-core/v4l2-h264 : add detection of null pointers Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 6.2 0610/1001] media: rc: Fix use-after-free bugs caused by ene_tx_irqsim() Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 6.2 0611/1001] media: atomisp: fix videobuf2 Kconfig depenendency Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 6.2 0612/1001] media: atomisp: Only set default_run_mode on first open of a stream/asd Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 6.2 0613/1001] media: i2c: ov7670: 0 instead of -EINVAL was returned Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 6.2 0614/1001] media: usb: siano: Fix use after free bugs caused by do_submit_urb Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 6.2 0615/1001] media: saa7134: Use video_unregister_device for radio_dev Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 6.2 0616/1001] rpmsg: glink: Avoid infinite loop on intent for missing channel Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 6.2 0617/1001] rpmsg: glink: Release driver_override Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 6.2 0618/1001] ARM: OMAP2+: omap4-common: Fix refcount leak bug Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 6.2 0619/1001] arm64: dts: qcom: msm8996: Add additional A2NoC clocks Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 6.2 0620/1001] udf: Define EFSCORRUPTED error code Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 6.2 0621/1001] context_tracking: Fix noinstr vs KASAN Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 6.2 0622/1001] exit: Detect and fix irq disabled state in oops Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 6.2 0623/1001] ARM: dts: exynos: Use Exynos5420 compatible for the MIPI video phy Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 6.2 0624/1001] fs: Use CHECK_DATA_CORRUPTION() when kernel bugs are detected Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 6.2 0625/1001] blk-iocost: fix divide by 0 error in calc_lcoefs() Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 6.2 0626/1001] blk-cgroup: dropping parent refcount after pd_free_fn() is done Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 6.2 0627/1001] blk-cgroup: synchronize pd_free_fn() from blkg_free_workfn() and blkcg_deactivate_policy() Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 6.2 0628/1001] trace/blktrace: fix memory leak with using debugfs_lookup() Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 6.2 0629/1001] btrfs: scrub: improve tree block error reporting Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 6.2 0630/1001] arm64: zynqmp: Enable hs termination flag for USB dwc3 controller Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 6.2 0631/1001] cpuidle, intel_idle: Fix CPUIDLE_FLAG_INIT_XSTATE Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 6.2 0632/1001] x86/fpu: Dont set TIF_NEED_FPU_LOAD for PF_IO_WORKER threads Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 6.2 0633/1001] cpuidle: drivers: firmware: psci: Dont instrument suspend code Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 6.2 0634/1001] cpuidle: lib/bug: Disable rcu_is_watching() during WARN/BUG Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 6.2 0635/1001] perf/x86/intel/uncore: Add Meteor Lake support Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 6.2 0636/1001] wifi: ath9k: Fix use-after-free in ath9k_hif_usb_disconnect() Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 6.2 0637/1001] wifi: ath11k: fix monitor mode bringup crash Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 6.2 0638/1001] wifi: brcmfmac: Fix potential stack-out-of-bounds in brcmf_c_preinit_dcmds() Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 6.2 0639/1001] rcu: Make RCU_LOCKDEP_WARN() avoid early lockdep checks Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 6.2 0640/1001] rcu: Suppress smp_processor_id() complaint in synchronize_rcu_expedited_wait() Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 6.2 0641/1001] srcu: Delegate work to the boot cpu if using SRCU_SIZE_SMALL Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 6.2 0642/1001] rcu-tasks: Make rude RCU-Tasks work well with CPU hotplug Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 6.2 0643/1001] rcu-tasks: Handle queue-shrink/callback-enqueue race condition Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 6.2 0644/1001] wifi: ath11k: debugfs: fix to work with multiple PCI devices Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 6.2 0645/1001] thermal: intel: Fix unsigned comparison with less than zero Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 6.2 0646/1001] timers: Prevent union confusion from unexpected restart_syscall() Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 6.2 0647/1001] x86/bugs: Reset speculation control settings on init Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 6.2 0648/1001] bpftool: Always disable stack protection for BPF objects Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 6.2 0649/1001] wifi: brcmfmac: ensure CLM version is null-terminated to prevent stack-out-of-bounds Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 6.2 0650/1001] wifi: rtw89: fix assignation of TX BD RAM table Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 6.2 0651/1001] wifi: mt7601u: fix an integer underflow Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 6.2 0652/1001] inet: fix fast path in __inet_hash_connect() Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 6.2 0653/1001] ice: restrict PTP HW clock freq adjustments to 100, 000, 000 PPB Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 6.2 0654/1001] ice: add missing checks for PF vsi type Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 6.2 0655/1001] Compiler attributes: GCC cold function alignment workarounds Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 6.2 0656/1001] ACPI: Dont build ACPICA with -Os Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 6.2 0657/1001] bpf, docs: Fix modulo zero, division by zero, overflow, and underflow Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 6.2 0658/1001] thermal: intel: intel_pch: Add support for Wellsburg PCH Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 6.2 0659/1001] clocksource: Suspend the watchdog temporarily when high read latency detected Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 6.2 0660/1001] crypto: hisilicon: Wipe entire pool on error Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 6.2 0661/1001] net: bcmgenet: Add a check for oversized packets Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 6.2 0662/1001] m68k: Check syscall_trace_enter() return code Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 6.2 0663/1001] s390/mm,ptdump: avoid Kasan vs Memcpy Real markers swapping Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 6.2 0664/1001] netfilter: nf_tables: NULL pointer dereference in nf_tables_updobj() Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 6.2 0665/1001] can: isotp: check CAN address family in isotp_bind() Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 6.2 0666/1001] gcc-plugins: drop -std=gnu++11 to fix GCC 13 build Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 6.2 0667/1001] tools/power/x86/intel-speed-select: Add Emerald Rapid quirk Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 6.2 0668/1001] platform/x86: dell-ddv: Add support for interface version 3 Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 6.2 0669/1001] wifi: mt76: dma: free rx_head in mt76_dma_rx_cleanup Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 6.2 0670/1001] ACPI: video: Fix Lenovo Ideapad Z570 DMI match Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 6.2 0671/1001] net/mlx5: fw_tracer: Fix debug print Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 6.2 0672/1001] coda: Avoid partial allocation of sig_inputArgs Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 6.2 0673/1001] uaccess: Add minimum bounds check on kernel buffer size Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 6.2 0674/1001] s390/idle: mark arch_cpu_idle() noinstr Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 6.2 0675/1001] time/debug: Fix memory leak with using debugfs_lookup() Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 6.2 0676/1001] PM: domains: fix " Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 6.2 0677/1001] PM: EM: " Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 6.2 0678/1001] Bluetooth: Fix issue with Actions Semi ATS2851 based devices Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 6.2 0679/1001] Bluetooth: btusb: Add new PID/VID 0489:e0f2 for MT7921 Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 6.2 0680/1001] Bluetooth: btusb: Add VID:PID 13d3:3529 for Realtek RTL8821CE Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 6.2 0681/1001] wifi: rtw89: debug: avoid invalid access on RTW89_DBG_SEL_MAC_30 Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 6.2 0682/1001] hv_netvsc: Check status in SEND_RNDIS_PKT completion message Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 6.2 0683/1001] s390/kfence: fix page fault reporting Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 6.2 0684/1001] devlink: Fix TP_STRUCT_entry in trace of devlink health report Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 6.2 0685/1001] scm: add user copy checks to put_cmsg() Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 6.2 0686/1001] drm: panel-orientation-quirks: Add quirk for Lenovo Yoga Tab 3 X90F Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 6.2 0687/1001] drm: panel-orientation-quirks: Add quirk for DynaBook K50 Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 6.2 0688/1001] drm/amd/display: Reduce expected sdp bandwidth for dcn321 Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 6.2 0689/1001] drm/amd/display: Revert Reduce delay when sink device not able to ACK 00340h write Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 6.2 0690/1001] drm/amd/display: Fix potential null-deref in dm_resume Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 6.2 0691/1001] drm/omap: dsi: Fix excessive stack usage Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 6.2 0692/1001] HID: Add Mapping for System Microphone Mute Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 6.2 0693/1001] drm/tiny: ili9486: Do not assume 8-bit only SPI controllers Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 6.2 0694/1001] drm/amd/display: Defer DIG FIFO disable after VID stream enable Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 6.2 0695/1001] drm/radeon: free iio for atombios when driver shutdown Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 6.2 0696/1001] drm/amd: Avoid BUG() for case of SRIOV missing IP version Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 6.2 0697/1001] drm/amdkfd: Page aligned memory reserve size Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 6.2 0698/1001] scsi: lpfc: Fix use-after-free KFENCE violation during sysfs firmware write Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 6.2 0699/1001] Revert "fbcon: dont lose the console font across generic->chip driver switch" Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 6.2 0700/1001] drm/amd: Avoid ASSERT for some message failures Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 6.2 0701/1001] drm: amd: display: Fix memory leakage Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 6.2 0702/1001] drm/amd/display: fix mapping to non-allocated address Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 6.2 0703/1001] HID: uclogic: Add frame type quirk Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 6.2 0704/1001] HID: uclogic: Add battery quirk Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 6.2 0705/1001] HID: uclogic: Add support for XP-PEN Deco Pro SW Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 6.2 0706/1001] HID: uclogic: Add support for XP-PEN Deco Pro MW Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 6.2 0707/1001] drm/msm/dsi: Add missing check for alloc_ordered_workqueue Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 6.2 0708/1001] drm: rcar-du: Add quirk for H3 ES1.x pclk workaround Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 6.2 0709/1001] drm: rcar-du: Fix setting a reserved bit in DPLLCR Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 6.2 0710/1001] drm/drm_print: correct format problem Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 6.2 0711/1001] drm/amd/display: Set hvm_enabled flag for S/G mode Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 6.2 0712/1001] drm/client: Test for connectors before sending hotplug event Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 6.2 0713/1001] habanalabs: extend fatal messages to contain PCI info Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 6.2 0714/1001] habanalabs: fix bug in timestamps registration code Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 6.2 0715/1001] docs/scripts/gdb: add necessary make scripts_gdb step Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 6.2 0716/1001] drm/msm/dpu: Add DSC hardware blocks to register snapshot Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 6.2 0717/1001] ASoC: soc-compress: Reposition and add pcm_mutex Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 6.2 0718/1001] ASoC: kirkwood: Iterate over array indexes instead of using pointer math Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 6.2 0719/1001] regulator: max77802: Bounds check regulator id against opmode Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 6.2 0720/1001] regulator: s5m8767: Bounds check id indexing into arrays Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 6.2 0721/1001] Revert "drm/amdgpu: TA unload messages are not actually sent to psp when amdgpu is uninstalled" Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 6.2 0722/1001] drm/amd/display: fix FCLK pstate change underflow Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 6.2 0723/1001] gfs2: Improve gfs2_make_fs_rw error handling Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 6.2 0724/1001] hwmon: (coretemp) Simplify platform device handling Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 6.2 0725/1001] hwmon: (nct6775) Directly call ASUS ACPI WMI method Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 6.2 0726/1001] hwmon: (nct6775) B650/B660/X670 ASUS boards support Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 6.2 0727/1001] pinctrl: at91: use devm_kasprintf() to avoid potential leaks Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 6.2 0728/1001] drm/amd/display: Do not commit pipe when updating DRR Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 6.2 0729/1001] scsi: snic: Fix memory leak with using debugfs_lookup() Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 6.2 0730/1001] scsi: ufs: core: Fix device management cmd timeout flow Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 6.2 0731/1001] HID: logitech-hidpp: Dont restart communication if not necessary Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 6.2 0732/1001] drm/amd/display: Enable P-state validation checks for DCN314 Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 6.2 0733/1001] drm: panel-orientation-quirks: Add quirk for Lenovo IdeaPad Duet 3 10IGL5 Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 6.2 0734/1001] drm/amd/display: Disable HUBP/DPP PG on DCN314 for now Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 6.2 0735/1001] drm/amd/display: disable SubVP + DRR to prevent underflow Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 6.2 0736/1001] dm thin: add cond_resched() to various workqueue loops Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 6.2 0737/1001] dm cache: " Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 6.2 0738/1001] nfsd: zero out pointers after putting nfsd_files on COPY setup error Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 6.2 0739/1001] nfsd: dont hand out delegation on setuid files being opened for write Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 6.2 0740/1001] cifs: prevent data race in smb2_reconnect() Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 6.2 0741/1001] drm/i915/mtl: Correct implementation of Wa_18018781329 Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 6.2 0742/1001] drm/shmem-helper: Revert accidental non-GPL export Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 6.2 0743/1001] driver core: fw_devlink: Avoid spurious error message Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 6.2 0744/1001] wifi: rtl8xxxu: fixing transmisison failure for rtl8192eu Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 6.2 0745/1001] firmware: coreboot: framebuffer: Ignore reserved pixel color bits Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 6.2 0746/1001] block: dont allow multiple bios for IOCB_NOWAIT issue Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 6.2 0747/1001] block: clear bio->bi_bdev when putting a bio back in the cache Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 6.2 0748/1001] block: be a bit more careful in checking for NULL bdev while polling Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 6.2 0749/1001] rtc: pm8xxx: fix set-alarm race Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 6.2 0750/1001] ipmi: ipmb: Fix the MODULE_PARM_DESC associated to retry_time_ms Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 6.2 0751/1001] ipmi:ssif: resend_msg() cannot fail Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 6.2 0752/1001] ipmi_ssif: Rename idle state and check Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 6.2 0753/1001] ipmi:ssif: Add a timer between request retries Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 6.2 0754/1001] io_uring: Replace 0-length array with flexible array Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 6.2 0755/1001] io_uring: use user visible tail in io_uring_poll() Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 6.2 0756/1001] io_uring: handle TIF_NOTIFY_RESUME when checking for task_work Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 6.2 0757/1001] io_uring: add a conditional reschedule to the IOPOLL cancelation loop Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 6.2 0758/1001] io_uring: add reschedule point to handle_tw_list() Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 6.2 0759/1001] io_uring/rsrc: disallow multi-source reg buffers Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 6.2 0760/1001] io_uring: remove MSG_NOSIGNAL from recvmsg Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 6.2 0761/1001] io_uring/poll: allow some retries for poll triggering spuriously Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 6.2 0762/1001] io_uring: fix fget leak when fs dont support nowait buffered read Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 6.2 0763/1001] s390/extmem: return correct segment type in __segment_load() Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 6.2 0764/1001] s390: discard .interp section Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 6.2 0765/1001] s390/ipl: add DEFINE_GENERIC_LOADPARM() Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 6.2 0766/1001] s390/ipl: add loadparm parameter to eckd ipl/reipl data Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 6.2 0767/1001] s390/kprobes: fix irq mask clobbering on kprobe reenter from post_handler Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 6.2 0768/1001] s390/kprobes: fix current_kprobe never cleared after kprobes reenter Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 6.2 0769/1001] KVM: s390: disable migration mode when dirty tracking is disabled Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 6.2 0770/1001] cifs: improve checking of DFS links over STATUS_OBJECT_NAME_INVALID Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 6.2 0771/1001] cifs: Fix uninitialized memory read in smb3_qfs_tcon() Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 6.2 0772/1001] cifs: Fix uninitialized memory reads for oparms.mode Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 6.2 0773/1001] cifs: fix mount on old smb servers Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 6.2 0774/1001] cifs: introduce cifs_io_parms in smb2_async_writev() Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 6.2 0775/1001] cifs: split out smb3_use_rdma_offload() helper Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 6.2 0776/1001] cifs: dont try to use rdma offload on encrypted connections Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 6.2 0777/1001] cifs: Check the lease context if we actually got a lease Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 6.2 0778/1001] cifs: return a single-use cfid if we did not get " Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 6.2 0779/1001] scsi: mpi3mr: Fix missing mrioc->evtack_cmds initialization Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 6.2 0780/1001] scsi: mpi3mr: Fix issues in mpi3mr_get_all_tgt_info() Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 6.2 0781/1001] scsi: mpi3mr: Remove unnecessary memcpy() to alltgt_info->dmi Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 6.2 0782/1001] btrfs: hold block group refcount during async discard Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 6.2 0783/1001] btrfs: sysfs: update fs features directory asynchronously Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 6.2 0784/1001] locking/rwsem: Prevent non-first waiter from spinning in down_write() slowpath Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 6.2 0785/1001] ksmbd: fix wrong data area length for smb2 lock request Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 6.2 0786/1001] ksmbd: do not allow the actual frame length to be smaller than the rfc1002 length Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 6.2 0787/1001] ksmbd: fix possible memory leak in smb2_lock() Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 6.2 0788/1001] torture: Fix hang during kthread shutdown phase Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 6.2 0789/1001] ARM: dts: exynos: correct HDMI phy compatible in Exynos4 Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 6.2 0790/1001] io_uring: mark task TASK_RUNNING before handling resume/task work Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 6.2 0791/1001] hfs: fix missing hfs_bnode_get() in __hfs_bnode_create Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 6.2 0792/1001] fs: hfsplus: fix UAF issue in hfsplus_put_super Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 6.2 0793/1001] exfat: fix reporting fs error when reading dir beyond EOF Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 6.2 0794/1001] exfat: fix unexpected EOF while reading dir Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 6.2 0795/1001] exfat: redefine DIR_DELETED as the bad cluster number Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 6.2 0796/1001] exfat: fix inode->i_blocks for non-512 byte sector size device Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 6.2 0797/1001] fs: dlm: start midcomms before scand Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 6.2 0798/1001] fs: dlm: fix use after free in midcomms commit Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 6.2 0799/1001] fs: dlm: be sure to call dlm_send_queue_flush() Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 6.2 0800/1001] fs: dlm: fix race setting stop tx flag Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 6.2 0801/1001] fs: dlm: dont set stop rx flag after node reset Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 6.2 0802/1001] fs: dlm: move sending fin message into state change handling Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 6.2 0803/1001] fs: dlm: send FIN ack back in right cases Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 6.2 0804/1001] f2fs: fix information leak in f2fs_move_inline_dirents() Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 6.2 0805/1001] f2fs: retry to update the inode page given data corruption Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 6.2 0806/1001] f2fs: fix cgroup writeback accounting with fs-layer encryption Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 6.2 0807/1001] f2fs: fix kernel crash due to null io->bio Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 6.2 0808/1001] f2fs: Revert "f2fs: truncate blocks in batch in __complete_revoke_list()" Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 6.2 0809/1001] ocfs2: fix defrag path triggering jbd2 ASSERT Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 6.2 0810/1001] ocfs2: fix non-auto defrag path not working issue Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 6.2 0811/1001] fs/cramfs/inode.c: initialize file_ra_state Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 6.2 0812/1001] selftests/landlock: Skip overlayfs tests when not supported Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 6.2 0813/1001] selftests/landlock: Test ptrace as much as possible with Yama Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 6.2 0814/1001] udf: Truncate added extents on failed expansion Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 6.2 0815/1001] udf: Do not bother merging very long extents Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 6.2 0816/1001] udf: Do not update file length for failed writes to inline files Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 6.2 0817/1001] udf: Preserve link count of system files Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 6.2 0818/1001] udf: Detect system inodes linked into directory hierarchy Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 6.2 0819/1001] udf: Fix file corruption when appending just after end of preallocated extent Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 6.2 0820/1001] md: dont update recovery_cp when curr_resync is ACTIVE Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 6.2 0821/1001] KVM: Destroy target device if coalesced MMIO unregistration fails Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 6.2 0822/1001] KVM: VMX: Fix crash due to uninitialized current_vmcs Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 6.2 0823/1001] KVM: Register /dev/kvm as the _very_ last thing during initialization Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 6.2 0824/1001] KVM: x86: Purge "highest ISR" cache when updating APICv state Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 6.2 0825/1001] KVM: x86: Blindly get current x2APIC reg value on "nodecode write" traps Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 6.2 0826/1001] KVM: x86: Dont inhibit APICv/AVIC on xAPIC ID "change" if APIC is disabled Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 6.2 0827/1001] KVM: x86: Dont inhibit APICv/AVIC if xAPIC ID mismatch is due to 32-bit ID Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 6.2 0828/1001] KVM: SVM: Flush the "current" TLB when activating AVIC Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 6.2 0829/1001] KVM: SVM: Process ICR on AVIC IPI delivery failure due to invalid target Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 6.2 0830/1001] KVM: SVM: Dont put/load AVIC when setting virtual APIC mode Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 6.2 0831/1001] KVM: x86: Inject #GP if WRMSR sets reserved bits in APIC Self-IPI Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 6.2 0832/1001] KVM: x86: Inject #GP on x2APIC WRMSR that sets reserved bits 63:32 Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 6.2 0833/1001] KVM: SVM: Fix potential overflow in SEVs send|receive_update_data() Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 6.2 0834/1001] KVM: SVM: hyper-v: placate modpost section mismatch error Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 6.2 0835/1001] selftests: x86: Fix incorrect kernel headers search path Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 6.2 0836/1001] x86/virt: Force GIF=1 prior to disabling SVM (for reboot flows) Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 6.2 0837/1001] x86/crash: Disable virt in core NMI crash handler to avoid double shootdown Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 6.2 0838/1001] x86/reboot: Disable virtualization in an emergency if SVM is supported Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 6.2 0839/1001] x86/reboot: Disable SVM, not just VMX, when stopping CPUs Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 6.2 0840/1001] x86/kprobes: Fix __recover_optprobed_insn check optimizing logic Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 6.2 0841/1001] x86/kprobes: Fix arch_check_optimized_kprobe check within optimized_kprobe range Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 6.2 0842/1001] x86/microcode/amd: Remove load_microcode_amd()s bsp parameter Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 6.2 0843/1001] x86/microcode/AMD: Add a @cpu parameter to the reloading functions Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 6.2 0844/1001] x86/microcode/AMD: Fix mixed steppings support Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 6.2 0845/1001] x86/speculation: Allow enabling STIBP with legacy IBRS Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 6.2 0846/1001] Documentation/hw-vuln: Document the interaction between IBRS and STIBP Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 6.2 0847/1001] virt/sev-guest: Return -EIO if certificate buffer is not large enough Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 6.2 0848/1001] brd: mark as nowait compatible Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 6.2 0849/1001] brd: return 0/-error from brd_insert_page() Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 6.2 0850/1001] brd: check for REQ_NOWAIT and set correct page allocation mask Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 6.2 0851/1001] ima: fix error handling logic when file measurement failed Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 6.2 0852/1001] ima: Align ima_file_mmap() parameters with mmap_file LSM hook Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 6.2 0853/1001] powerpc/boot: Dont always pass -mcpu=powerpc when building 32-bit uImage Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 6.2 0854/1001] selftests/powerpc: Fix incorrect kernel headers search path Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 6.2 0855/1001] selftests/ftrace: Fix eprobe syntax test case to check filter support Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 6.2 0856/1001] selftests: sched: Fix incorrect kernel headers search path Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 6.2 0857/1001] selftests: core: " Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 6.2 0858/1001] selftests: pid_namespace: " Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 6.2 0859/1001] selftests: arm64: " Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 6.2 0860/1001] selftests: clone3: " Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 6.2 0861/1001] selftests: pidfd: " Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 6.2 0862/1001] selftests: membarrier: " Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 6.2 0863/1001] selftests: kcmp: " Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 6.2 0864/1001] selftests: media_tests: " Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 6.2 0865/1001] selftests: gpio: " Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 6.2 0866/1001] selftests: filesystems: " Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 6.2 0867/1001] selftests: user_events: " Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 6.2 0868/1001] selftests: ptp: " Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 6.2 0869/1001] selftests: sync: " Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 6.2 0870/1001] selftests: rseq: " Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 6.2 0871/1001] selftests: move_mount_set_group: " Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 6.2 0872/1001] selftests: mount_setattr: " Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 6.2 0873/1001] selftests: perf_events: " Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 6.2 0874/1001] selftests: ipc: " Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 6.2 0875/1001] selftests: futex: " Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 6.2 0876/1001] selftests: drivers: " Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 6.2 0877/1001] selftests: dmabuf-heaps: " Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 6.2 0878/1001] selftests: vm: " Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 6.2 0879/1001] selftests: seccomp: " Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 6.2 0880/1001] irqdomain: Fix association race Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 6.2 0881/1001] irqdomain: Fix disassociation race Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 6.2 0882/1001] irqdomain: Look for existing mapping only once Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 6.2 0883/1001] irqdomain: Drop bogus fwspec-mapping error handling Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 6.2 0884/1001] irqdomain: Refactor __irq_domain_alloc_irqs() Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 6.2 0885/1001] irqdomain: Fix mapping-creation race Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 6.2 0886/1001] irqdomain: Fix domain registration race Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 6.2 0887/1001] crypto: qat - fix out-of-bounds read Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 6.2 0888/1001] mm/damon/paddr: fix missing folio_put() Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 6.2 0889/1001] ALSA: ice1712: Do not left ice->gpio_mutex locked in aureon_add_controls() Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 6.2 0890/1001] ALSA: hda/realtek: Add quirk for HP EliteDesk 800 G6 Tower PC Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 6.2 0891/1001] jbd2: fix data missing when reusing bh which is ready to be checkpointed Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 6.2 0892/1001] ext4: optimize ea_inode block expansion Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 6.2 0893/1001] ext4: refuse to create ea block when umounted Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 6.2 0894/1001] ext4: Fix possible corruption when moving a directory Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 6.2 0895/1001] cxl/pmem: Fix nvdimm registration races Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 6.2 0896/1001] Input: exc3000 - properly stop timer on shutdown Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 6.2 0897/1001] mtd: spi-nor: sfdp: Fix index value for SCCR dwords Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 6.2 0898/1001] mtd: spi-nor: spansion: Consider reserved bits in CFR5 register Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 6.2 0899/1001] mtd: spi-nor: Fix shift-out-of-bounds in spi_nor_set_erase_type Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 6.2 0900/1001] dm: send just one event on resize, not two Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 6.2 0901/1001] dm: add cond_resched() to dm_wq_work() Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 6.2 0902/1001] dm: add cond_resched() to dm_wq_requeue_work() Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 6.2 0903/1001] wifi: rtw88: use RTW_FLAG_POWERON flag to prevent to power on/off twice Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 6.2 0904/1001] wifi: rtl8xxxu: Use a longer retry limit of 48 Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 6.2 0905/1001] wifi: ath11k: allow system suspend to survive ath11k Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 6.2 0906/1001] wifi: cfg80211: Fix use after free for wext Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 6.2 0907/1001] wifi: cfg80211: Set SSID if it is not already set Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 6.2 0908/1001] cpuidle: add ARCH_SUSPEND_POSSIBLE dependencies Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 6.2 0909/1001] qede: fix interrupt coalescing configuration Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 6.2 0910/1001] thermal: intel: powerclamp: Fix cur_state for multi package system Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 6.2 0911/1001] dm flakey: fix logic when corrupting a bio Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 6.2 0912/1001] dm cache: free background trackers queued work in btracker_destroy Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 6.2 0913/1001] dm flakey: dont corrupt the zero page Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 6.2 0914/1001] dm flakey: fix a bug with 32-bit highmem systems Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 6.2 0915/1001] hwmon: (peci/cputemp) Fix off-by-one in coretemp_label allocation Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 6.2 0916/1001] hwmon: (nct6775) Fix incorrect parenthesization in nct6775_write_fan_div() Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 6.2 0917/1001] spi: intel: Check number of chip selects after reading the descriptor Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 6.2 0918/1001] ARM: dts: qcom: sdx65: Add Qcom SMMU-500 as the fallback for IOMMU node Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 6.2 0919/1001] ARM: dts: qcom: sdx55: " Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 6.2 0920/1001] ARM: dts: exynos: correct TMU phandle in Exynos4210 Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 6.2 0921/1001] ARM: dts: exynos: correct TMU phandle in Exynos4 Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 6.2 0922/1001] ARM: dts: exynos: correct TMU phandle in Odroid XU3 family Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 6.2 0923/1001] ARM: dts: exynos: correct TMU phandle in Exynos5250 Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 6.2 0924/1001] ARM: dts: exynos: correct TMU phandle in Odroid XU Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 6.2 0925/1001] ARM: dts: exynos: correct TMU phandle in Odroid HC1 Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 6.2 0926/1001] arm64: acpi: Fix possible memory leak of ffh_ctxt Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 6.2 0927/1001] arm64: mm: hugetlb: Disable HUGETLB_PAGE_OPTIMIZE_VMEMMAP Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 6.2 0928/1001] arm64: Reset KASAN tag in copy_highpage with HW tags only Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 6.2 0929/1001] fuse: add inode/permission checks to fileattr_get/fileattr_set Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 6.2 0930/1001] rbd: avoid use-after-free in do_rbd_add() when rbd_dev_create() fails Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 6.2 0931/1001] ceph: update the time stamps and try to drop the suid/sgid Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 6.2 0932/1001] regulator: core: Use ktime_get_boottime() to determine how long a regulator was off Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 6.2 0933/1001] panic: fix the panic_print NMI backtrace setting Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 6.2 0934/1001] mm/hwpoison: convert TTU_IGNORE_HWPOISON to TTU_HWPOISON Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 6.2 0935/1001] genirq/msi, platform-msi: Ensure that MSI descriptors are unreferenced Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 6.2 0936/1001] genirq/msi: Take the per-device MSI lock before validating the control structure Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 6.2 0937/1001] spi: spi-sn-f-ospi: fix duplicate flag while assigning to mode_bits Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 6.2 0938/1001] alpha: fix FEN fault handling Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 6.2 0939/1001] dax/kmem: Fix leak of memory-hotplug resources Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 6.2 0940/1001] mips: fix syscall_get_nr Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 6.2 0941/1001] media: ipu3-cio2: Fix PM runtime usage_count in driver unbind Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 6.2 0942/1001] remoteproc/mtk_scp: Move clk ops outside send_lock Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 6.2 0943/1001] vfio: Fix NULL pointer dereference caused by uninitialized group->iommufd Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 6.2 0944/1001] docs: gdbmacros: print newest record Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 6.2 0945/1001] mm: memcontrol: deprecate charge moving Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 6.2 0946/1001] mm/thp: check and bail out if page in deferred queue already Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 6.2 0947/1001] ktest.pl: Give back console on Ctrt^C on monitor Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 6.2 0948/1001] kprobes: Fix to handle forcibly unoptimized kprobes on freeing_list Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 6.2 0949/1001] ktest.pl: Fix missing "end_monitor" when machine check fails Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 6.2 0950/1001] ktest.pl: Add RUN_TIMEOUT option with default unlimited Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 6.2 0951/1001] memory tier: release the new_memtier in find_create_memory_tier() Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 6.2 0952/1001] ring-buffer: Handle race between rb_move_tail and rb_check_pages Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 6.2 0953/1001] tools/bootconfig: fix single & used for logical condition Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 6.2 0954/1001] tracing/eprobe: Fix to add filter on eprobe description in README file Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 6.2 0955/1001] iommu/amd: Add a length limitation for the ivrs_acpihid command-line parameter Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 6.2 0956/1001] scsi: aacraid: Allocate cmd_priv with scsicmd Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 6.2 0957/1001] scsi: core: Remove the /proc/scsi/${proc_name} directory earlier Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 6.2 0958/1001] scsi: qla2xxx: Fix link failure in NPIV environment Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 6.2 0959/1001] scsi: qla2xxx: Check if port is online before sending ELS Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 6.2 0960/1001] scsi: qla2xxx: Fix DMA-API call trace on NVMe LS requests Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 6.2 0961/1001] scsi: qla2xxx: Remove unintended flag clearing Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 6.2 0962/1001] scsi: qla2xxx: Fix erroneous link down Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 6.2 0963/1001] scsi: qla2xxx: Remove increment of interface err cnt Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 6.2 0964/1001] scsi: ses: Dont attach if enclosure has no components Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 6.2 0965/1001] scsi: ses: Fix slab-out-of-bounds in ses_enclosure_data_process() Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 6.2 0966/1001] scsi: ses: Fix possible addl_desc_ptr out-of-bounds accesses Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 6.2 0967/1001] scsi: ses: Fix possible desc_ptr " Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 6.2 0968/1001] scsi: ses: Fix slab-out-of-bounds in ses_intf_remove() Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 6.2 0969/1001] RISC-V: add a spin_shadow_stack declaration Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 6.2 0970/1001] riscv: Avoid enabling interrupts in die() Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 6.2 0971/1001] riscv: mm: fix regression due to update_mmu_cache change Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 6.2 0972/1001] riscv: jump_label: Fixup unaligned arch_static_branch function Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 6.2 0973/1001] riscv: ftrace: Fixup panic by disabling preemption Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 6.2 0974/1001] riscv, mm: Perform BPF exhandler fixup on page fault Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 6.2 0975/1001] riscv: ftrace: Remove wasted nops for !RISCV_ISA_C Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 6.2 0976/1001] riscv: ftrace: Reduce the detour code size to half Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 6.2 0977/1001] MIPS: DTS: CI20: fix otg power gpio Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 6.2 0978/1001] PCI/PM: Observe reset delay irrespective of bridge_d3 Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 6.2 0979/1001] PCI: Unify delay handling for reset and resume Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 6.2 0980/1001] PCI: hotplug: Allow marking devices as disconnected during bind/unbind Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 6.2 0981/1001] PCI: Avoid FLR for AMD FCH AHCI adapters Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 6.2 0982/1001] PCI/DPC: Await readiness of secondary bus after reset Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 6.2 0983/1001] bus: mhi: ep: Only send -ENOTCONN status if client driver is available Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 6.2 0984/1001] bus: mhi: ep: Move chan->lock to the start of processing queued ch ring Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 6.2 0985/1001] bus: mhi: ep: Save channel state locally during suspend and resume Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 6.2 0986/1001] iommufd: Make sure to zero vfio_iommu_type1_info before copying to user Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 6.2 0987/1001] iommufd: Do not add the same hwpt to the ioas->hwpt_list twice Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 6.2 0988/1001] iommu/vt-d: Avoid superfluous IOTLB tracking in lazy mode Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 6.2 0989/1001] iommu/vt-d: Fix PASID directory pointer coherency Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 6.2 0990/1001] vfio/type1: exclude mdevs from VFIO_UPDATE_VADDR Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 6.2 0991/1001] vfio/type1: prevent underflow of locked_vm via exec() Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 6.2 0992/1001] vfio/type1: track locked_vm per dma Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 6.2 0993/1001] vfio/type1: restore locked_vm Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 6.2 0994/1001] drm/amd: Fix initialization for nbio 7.5.1 Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 6.2 0995/1001] drm/i915/quirks: Add inverted backlight quirk for HP 14-r206nv Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 6.2 0996/1001] drm/radeon: Fix eDP for single-display iMac11,2 Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 6.2 0997/1001] drm/i915: Dont use stolen memory for ring buffers with LLC Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 6.2 0998/1001] drm/i915: Dont use BAR mappings " Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 6.2 0999/1001] drm/gud: Fix UBSAN warning Greg Kroah-Hartman

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=20230307170022.255799690@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=Mario.Limonciello@amd.com \
    --cc=jroedel@suse.de \
    --cc=matt.fagnani@bell.net \
    --cc=patches@lists.linux.dev \
    --cc=stable@vger.kernel.org \
    --cc=suravee.suthikulpanit@amd.com \
    --cc=vasant.hegde@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).