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, Robin Murphy <robin.murphy@arm.com>,
	Janusz Krzysztofik <janusz.krzysztofik@linux.intel.com>,
	Guenter Roeck <linux@roeck-us.net>,
	Sasha Levin <sashal@kernel.org>
Subject: [PATCH 6.1 629/885] hwmon: (coretemp) Simplify platform device handling
Date: Tue,  7 Mar 2023 17:59:23 +0100	[thread overview]
Message-ID: <20230307170029.533668315@linuxfoundation.org> (raw)
In-Reply-To: <20230307170001.594919529@linuxfoundation.org>

From: Robin Murphy <robin.murphy@arm.com>

[ Upstream commit 6d03bbff456befeccdd4d663177c4d6c75d0c4ff ]

Coretemp's platform driver is unconventional. All the real work is done
globally by the initcall and CPU hotplug notifiers, while the "driver"
effectively just wraps an allocation and the registration of the hwmon
interface in a long-winded round-trip through the driver core.  The whole
logic of dynamically creating and destroying platform devices to bring
the interfaces up and down is error prone, since it assumes
platform_device_add() will synchronously bind the driver and set drvdata
before it returns, thus results in a NULL dereference if drivers_autoprobe
is turned off for the platform bus. Furthermore, the unusual approach of
doing that from within a CPU hotplug notifier, already commented in the
code that it deadlocks suspend, also causes lockdep issues for other
drivers or subsystems which may want to legitimately register a CPU
hotplug notifier from a platform bus notifier.

All of these issues can be solved by ripping this unusual behaviour out
completely, simply tying the platform devices to the lifetime of the
module itself, and directly managing the hwmon interfaces from the
hotplug notifiers. There is a slight user-visible change in that
/sys/bus/platform/drivers/coretemp will no longer appear, and
/sys/devices/platform/coretemp.n will remain present if package n is
hotplugged off, but hwmon users should really only be looking for the
presence of the hwmon interfaces, whose behaviour remains unchanged.

Link: https://lore.kernel.org/lkml/20220922101036.87457-1-janusz.krzysztofik@linux.intel.com/
Link: https://gitlab.freedesktop.org/drm/intel/issues/6641
Signed-off-by: Robin Murphy <robin.murphy@arm.com>
Signed-off-by: Janusz Krzysztofik <janusz.krzysztofik@linux.intel.com>
Link: https://lore.kernel.org/r/20230103114620.15319-1-janusz.krzysztofik@linux.intel.com
Signed-off-by: Guenter Roeck <linux@roeck-us.net>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 drivers/hwmon/coretemp.c | 128 ++++++++++++++++++---------------------
 1 file changed, 58 insertions(+), 70 deletions(-)

diff --git a/drivers/hwmon/coretemp.c b/drivers/hwmon/coretemp.c
index 9bee4d33fbdf0..baaf8af4cb443 100644
--- a/drivers/hwmon/coretemp.c
+++ b/drivers/hwmon/coretemp.c
@@ -550,66 +550,49 @@ static void coretemp_remove_core(struct platform_data *pdata, int indx)
 		ida_free(&pdata->ida, indx - BASE_SYSFS_ATTR_NO);
 }
 
-static int coretemp_probe(struct platform_device *pdev)
+static int coretemp_device_add(int zoneid)
 {
-	struct device *dev = &pdev->dev;
+	struct platform_device *pdev;
 	struct platform_data *pdata;
+	int err;
 
 	/* Initialize the per-zone data structures */
-	pdata = devm_kzalloc(dev, sizeof(struct platform_data), GFP_KERNEL);
+	pdata = kzalloc(sizeof(*pdata), GFP_KERNEL);
 	if (!pdata)
 		return -ENOMEM;
 
-	pdata->pkg_id = pdev->id;
+	pdata->pkg_id = zoneid;
 	ida_init(&pdata->ida);
-	platform_set_drvdata(pdev, pdata);
 
-	pdata->hwmon_dev = devm_hwmon_device_register_with_groups(dev, DRVNAME,
-								  pdata, NULL);
-	return PTR_ERR_OR_ZERO(pdata->hwmon_dev);
-}
-
-static int coretemp_remove(struct platform_device *pdev)
-{
-	struct platform_data *pdata = platform_get_drvdata(pdev);
-	int i;
+	pdev = platform_device_alloc(DRVNAME, zoneid);
+	if (!pdev) {
+		err = -ENOMEM;
+		goto err_free_pdata;
+	}
 
-	for (i = MAX_CORE_DATA - 1; i >= 0; --i)
-		if (pdata->core_data[i])
-			coretemp_remove_core(pdata, i);
+	err = platform_device_add(pdev);
+	if (err)
+		goto err_put_dev;
 
-	ida_destroy(&pdata->ida);
+	platform_set_drvdata(pdev, pdata);
+	zone_devices[zoneid] = pdev;
 	return 0;
-}
 
-static struct platform_driver coretemp_driver = {
-	.driver = {
-		.name = DRVNAME,
-	},
-	.probe = coretemp_probe,
-	.remove = coretemp_remove,
-};
+err_put_dev:
+	platform_device_put(pdev);
+err_free_pdata:
+	kfree(pdata);
+	return err;
+}
 
-static struct platform_device *coretemp_device_add(unsigned int cpu)
+static void coretemp_device_remove(int zoneid)
 {
-	int err, zoneid = topology_logical_die_id(cpu);
-	struct platform_device *pdev;
-
-	if (zoneid < 0)
-		return ERR_PTR(-ENOMEM);
-
-	pdev = platform_device_alloc(DRVNAME, zoneid);
-	if (!pdev)
-		return ERR_PTR(-ENOMEM);
-
-	err = platform_device_add(pdev);
-	if (err) {
-		platform_device_put(pdev);
-		return ERR_PTR(err);
-	}
+	struct platform_device *pdev = zone_devices[zoneid];
+	struct platform_data *pdata = platform_get_drvdata(pdev);
 
-	zone_devices[zoneid] = pdev;
-	return pdev;
+	ida_destroy(&pdata->ida);
+	kfree(pdata);
+	platform_device_unregister(pdev);
 }
 
 static int coretemp_cpu_online(unsigned int cpu)
@@ -633,7 +616,10 @@ static int coretemp_cpu_online(unsigned int cpu)
 	if (!cpu_has(c, X86_FEATURE_DTHERM))
 		return -ENODEV;
 
-	if (!pdev) {
+	pdata = platform_get_drvdata(pdev);
+	if (!pdata->hwmon_dev) {
+		struct device *hwmon;
+
 		/* Check the microcode version of the CPU */
 		if (chk_ucode_version(cpu))
 			return -EINVAL;
@@ -644,9 +630,11 @@ static int coretemp_cpu_online(unsigned int cpu)
 		 * online. So, initialize per-pkg data structures and
 		 * then bring this core online.
 		 */
-		pdev = coretemp_device_add(cpu);
-		if (IS_ERR(pdev))
-			return PTR_ERR(pdev);
+		hwmon = hwmon_device_register_with_groups(&pdev->dev, DRVNAME,
+							  pdata, NULL);
+		if (IS_ERR(hwmon))
+			return PTR_ERR(hwmon);
+		pdata->hwmon_dev = hwmon;
 
 		/*
 		 * Check whether pkgtemp support is available.
@@ -656,7 +644,6 @@ static int coretemp_cpu_online(unsigned int cpu)
 			coretemp_add_core(pdev, cpu, 1);
 	}
 
-	pdata = platform_get_drvdata(pdev);
 	/*
 	 * Check whether a thread sibling is already online. If not add the
 	 * interface for this CPU core.
@@ -675,18 +662,14 @@ static int coretemp_cpu_offline(unsigned int cpu)
 	struct temp_data *tdata;
 	int i, indx = -1, target;
 
-	/*
-	 * Don't execute this on suspend as the device remove locks
-	 * up the machine.
-	 */
+	/* No need to tear down any interfaces for suspend */
 	if (cpuhp_tasks_frozen)
 		return 0;
 
 	/* If the physical CPU device does not exist, just return */
-	if (!pdev)
-		return 0;
-
 	pd = platform_get_drvdata(pdev);
+	if (!pd->hwmon_dev)
+		return 0;
 
 	for (i = 0; i < NUM_REAL_CORES; i++) {
 		if (pd->cpu_map[i] == topology_core_id(cpu)) {
@@ -718,13 +701,14 @@ static int coretemp_cpu_offline(unsigned int cpu)
 	}
 
 	/*
-	 * If all cores in this pkg are offline, remove the device. This
-	 * will invoke the platform driver remove function, which cleans up
-	 * the rest.
+	 * If all cores in this pkg are offline, remove the interface.
 	 */
+	tdata = pd->core_data[PKG_SYSFS_ATTR_NO];
 	if (cpumask_empty(&pd->cpumask)) {
-		zone_devices[topology_logical_die_id(cpu)] = NULL;
-		platform_device_unregister(pdev);
+		if (tdata)
+			coretemp_remove_core(pd, PKG_SYSFS_ATTR_NO);
+		hwmon_device_unregister(pd->hwmon_dev);
+		pd->hwmon_dev = NULL;
 		return 0;
 	}
 
@@ -732,7 +716,6 @@ static int coretemp_cpu_offline(unsigned int cpu)
 	 * Check whether this core is the target for the package
 	 * interface. We need to assign it to some other cpu.
 	 */
-	tdata = pd->core_data[PKG_SYSFS_ATTR_NO];
 	if (tdata && tdata->cpu == cpu) {
 		target = cpumask_first(&pd->cpumask);
 		mutex_lock(&tdata->update_lock);
@@ -751,7 +734,7 @@ static enum cpuhp_state coretemp_hp_online;
 
 static int __init coretemp_init(void)
 {
-	int err;
+	int i, err;
 
 	/*
 	 * CPUID.06H.EAX[0] indicates whether the CPU has thermal
@@ -767,20 +750,22 @@ static int __init coretemp_init(void)
 	if (!zone_devices)
 		return -ENOMEM;
 
-	err = platform_driver_register(&coretemp_driver);
-	if (err)
-		goto outzone;
+	for (i = 0; i < max_zones; i++) {
+		err = coretemp_device_add(i);
+		if (err)
+			goto outzone;
+	}
 
 	err = cpuhp_setup_state(CPUHP_AP_ONLINE_DYN, "hwmon/coretemp:online",
 				coretemp_cpu_online, coretemp_cpu_offline);
 	if (err < 0)
-		goto outdrv;
+		goto outzone;
 	coretemp_hp_online = err;
 	return 0;
 
-outdrv:
-	platform_driver_unregister(&coretemp_driver);
 outzone:
+	while (i--)
+		coretemp_device_remove(i);
 	kfree(zone_devices);
 	return err;
 }
@@ -788,8 +773,11 @@ module_init(coretemp_init)
 
 static void __exit coretemp_exit(void)
 {
+	int i;
+
 	cpuhp_remove_state(coretemp_hp_online);
-	platform_driver_unregister(&coretemp_driver);
+	for (i = 0; i < max_zones; i++)
+		coretemp_device_remove(i);
 	kfree(zone_devices);
 }
 module_exit(coretemp_exit)
-- 
2.39.2




  parent reply	other threads:[~2023-03-07 18:39 UTC|newest]

Thread overview: 891+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-03-07 16:48 [PATCH 6.1 000/885] 6.1.16-rc1 review Greg Kroah-Hartman
2023-03-07 16:48 ` [PATCH 6.1 001/885] HID: asus: use spinlock to protect concurrent accesses Greg Kroah-Hartman
2023-03-07 16:48 ` [PATCH 6.1 002/885] HID: asus: use spinlock to safely schedule workers Greg Kroah-Hartman
2023-03-07 16:48 ` [PATCH 6.1 003/885] powerpc/mm: Rearrange if-else block to avoid clang warning Greg Kroah-Hartman
2023-03-07 16:48 ` [PATCH 6.1 004/885] ata: ahci: Revert "ata: ahci: Add Tiger Lake UP{3,4} AHCI controller" Greg Kroah-Hartman
2023-03-07 16:48 ` [PATCH 6.1 005/885] ARM: OMAP2+: Fix memory leak in realtime_counter_init() Greg Kroah-Hartman
2023-03-07 16:49 ` [PATCH 6.1 006/885] arm64: dts: qcom: qcs404: use symbol names for PCIe resets Greg Kroah-Hartman
2023-03-07 16:49 ` [PATCH 6.1 007/885] arm64: dts: qcom: msm8996-tone: Fix USB taking 6 minutes to wake up Greg Kroah-Hartman
2023-03-07 16:49 ` [PATCH 6.1 008/885] arm64: dts: qcom: sm8150-kumano: Panel framebuffer is 2.5k instead of 4k Greg Kroah-Hartman
2023-03-07 16:49 ` [PATCH 6.1 009/885] arm64: dts: qcom: sm6350: Fix up the ramoops node Greg Kroah-Hartman
2023-03-07 16:49 ` [PATCH 6.1 010/885] arm64: dts: qcom: sm6125: Reorder HSUSB PHY clocks to match bindings Greg Kroah-Hartman
2023-03-07 16:49 ` [PATCH 6.1 011/885] arm64: dts: qcom: sm6125-seine: Clean up gpio-keys (volume down) Greg Kroah-Hartman
2023-03-07 16:49 ` [PATCH 6.1 012/885] arm64: dts: imx8m: Align SoC unique ID node unit address Greg Kroah-Hartman
2023-03-07 16:49 ` [PATCH 6.1 013/885] ARM: zynq: Fix refcount leak in zynq_early_slcr_init Greg Kroah-Hartman
2023-03-07 16:49 ` [PATCH 6.1 014/885] arm64: dts: mediatek: mt8195: Add power domain to U3PHY1 T-PHY Greg Kroah-Hartman
2023-03-07 16:49 ` [PATCH 6.1 015/885] arm64: dts: mediatek: mt8183: Fix systimer 13 MHz clock description Greg Kroah-Hartman
2023-03-07 16:49 ` [PATCH 6.1 016/885] arm64: dts: mediatek: mt8192: " Greg Kroah-Hartman
2023-03-07 16:49 ` [PATCH 6.1 017/885] arm64: dts: mediatek: mt8195: " Greg Kroah-Hartman
2023-03-07 16:49 ` [PATCH 6.1 018/885] arm64: dts: mediatek: mt8186: " Greg Kroah-Hartman
2023-03-07 16:49 ` [PATCH 6.1 019/885] arm64: dts: qcom: sdm845-db845c: fix audio codec interrupt pin name Greg Kroah-Hartman
2023-03-07 16:49 ` [PATCH 6.1 020/885] x86/acpi/boot: Do not register processors that cannot be onlined for x2APIC Greg Kroah-Hartman
2023-03-07 16:49 ` [PATCH 6.1 021/885] arm64: dts: qcom: sc7180: correct SPMI bus address cells Greg Kroah-Hartman
2023-03-07 16:49 ` [PATCH 6.1 022/885] arm64: dts: qcom: sc7280: " Greg Kroah-Hartman
2023-03-07 16:49 ` [PATCH 6.1 023/885] arm64: dts: qcom: sc8280xp: " Greg Kroah-Hartman
2023-03-07 16:49 ` [PATCH 6.1 024/885] arm64: dts: qcom: sc8280xp: Vote for CX in USB controllers Greg Kroah-Hartman
2023-03-07 16:49 ` [PATCH 6.1 025/885] arm64: dts: meson-gxl: jethub-j80: Fix WiFi MAC address node Greg Kroah-Hartman
2023-03-07 16:49 ` [PATCH 6.1 026/885] arm64: dts: meson-gxl: jethub-j80: Fix Bluetooth MAC node name Greg Kroah-Hartman
2023-03-07 16:49 ` [PATCH 6.1 027/885] arm64: dts: meson-axg: jethub-j1xx: Fix MAC address node names Greg Kroah-Hartman
2023-03-07 16:49 ` [PATCH 6.1 028/885] arm64: dts: meson-gx: Fix Ethernet MAC address unit name Greg Kroah-Hartman
2023-03-07 16:49 ` [PATCH 6.1 029/885] arm64: dts: meson-g12a: Fix internal Ethernet PHY " Greg Kroah-Hartman
2023-03-07 16:49 ` [PATCH 6.1 030/885] arm64: dts: meson-gx: Fix the SCPI DVFS node name and unit address Greg Kroah-Hartman
2023-03-07 16:49 ` [PATCH 6.1 031/885] cpuidle, intel_idle: Fix CPUIDLE_FLAG_IRQ_ENABLE *again* Greg Kroah-Hartman
2023-03-07 16:49 ` [PATCH 6.1 032/885] arm64: dts: ti: k3-am62: Enable SPI nodes at the board level Greg Kroah-Hartman
2023-03-07 16:49 ` [PATCH 6.1 033/885] arm64: dts: ti: k3-am62-main: Fix clocks for McSPI Greg Kroah-Hartman
2023-03-07 16:49 ` [PATCH 6.1 034/885] arm64: tegra: Fix duplicate regulator on Jetson TX1 Greg Kroah-Hartman
2023-03-07 16:49 ` [PATCH 6.1 035/885] arm64: dts: msm8992-bullhead: add memory hole region Greg Kroah-Hartman
2023-03-07 16:49 ` [PATCH 6.1 036/885] arm64: dts: qcom: msm8992-bullhead: Fix cont_splash_mem size Greg Kroah-Hartman
2023-03-07 16:49 ` [PATCH 6.1 037/885] arm64: dts: qcom: msm8992-bullhead: Disable dfps_data_mem Greg Kroah-Hartman
2023-03-07 16:49 ` [PATCH 6.1 038/885] arm64: dts: qcom: ipq8074: correct USB3 QMP PHY-s clock output names Greg Kroah-Hartman
2023-03-07 16:49 ` [PATCH 6.1 039/885] arm64: dts: qcom: ipq8074: fix Gen2 PCIe QMP PHY Greg Kroah-Hartman
2023-03-07 16:49 ` [PATCH 6.1 040/885] arm64: dts: qcom: ipq8074: fix Gen3 " Greg Kroah-Hartman
2023-03-07 16:49 ` [PATCH 6.1 041/885] arm64: dts: qcom: ipq8074: correct Gen2 PCIe ranges Greg Kroah-Hartman
2023-03-07 16:49 ` [PATCH 6.1 042/885] arm64: dts: qcom: ipq8074: fix Gen3 PCIe node Greg Kroah-Hartman
2023-03-07 16:49 ` [PATCH 6.1 043/885] arm64: dts: qcom: ipq8074: correct PCIe QMP PHY output clock names Greg Kroah-Hartman
2023-03-07 16:49 ` [PATCH 6.1 044/885] arm64: dts: meson: remove CPU opps below 1GHz for G12A boards Greg Kroah-Hartman
2023-03-07 16:49 ` [PATCH 6.1 045/885] ARM: OMAP1: call platform_device_put() in error case in omap1_dm_timer_init() Greg Kroah-Hartman
2023-03-07 16:49 ` [PATCH 6.1 046/885] arm64: dts: mediatek: mt8192: Mark scp_adsp clock as broken Greg Kroah-Hartman
2023-03-07 16:49 ` [PATCH 6.1 047/885] ARM: bcm2835_defconfig: Enable the framebuffer Greg Kroah-Hartman
2023-03-07 16:49 ` [PATCH 6.1 048/885] ARM: s3c: fix s3c64xx_set_timer_source prototype Greg Kroah-Hartman
2023-03-07 16:49 ` [PATCH 6.1 049/885] arm64: dts: ti: k3-j7200: Fix wakeup pinmux range Greg Kroah-Hartman
2023-03-07 16:49 ` [PATCH 6.1 050/885] ARM: dts: exynos: correct wr-active property in Exynos3250 Rinato Greg Kroah-Hartman
2023-03-07 16:49 ` [PATCH 6.1 051/885] ARM: imx: Call ida_simple_remove() for ida_simple_get Greg Kroah-Hartman
2023-03-07 16:49 ` [PATCH 6.1 052/885] arm64: dts: amlogic: meson-gx: fix SCPI clock dvfs node name Greg Kroah-Hartman
2023-03-07 16:49 ` [PATCH 6.1 053/885] arm64: dts: amlogic: meson-axg: " Greg Kroah-Hartman
2023-03-07 16:49 ` [PATCH 6.1 054/885] arm64: dts: amlogic: meson-gx: add missing SCPI sensors compatible Greg Kroah-Hartman
2023-03-07 16:49 ` [PATCH 6.1 055/885] arm64: dts: amlogic: meson-axg-jethome-jethub-j1xx: fix supply name of USB controller node Greg Kroah-Hartman
2023-03-07 16:49 ` [PATCH 6.1 056/885] arm64: dts: amlogic: meson-gxl-s905d-sml5442tw: drop invalid clock-names property Greg Kroah-Hartman
2023-03-07 16:49 ` [PATCH 6.1 057/885] arm64: dts: amlogic: meson-gx: add missing unit address to rng node name Greg Kroah-Hartman
2023-03-07 16:49 ` [PATCH 6.1 058/885] arm64: dts: amlogic: meson-gxl-s905w-jethome-jethub-j80: fix invalid rtc " Greg Kroah-Hartman
2023-03-07 16:49 ` [PATCH 6.1 059/885] arm64: dts: amlogic: meson-axg-jethome-jethub-j1xx: " Greg Kroah-Hartman
2023-03-07 16:49 ` [PATCH 6.1 060/885] arm64: dts: amlogic: meson-gxl: add missing unit address to eth-phy-mux " Greg Kroah-Hartman
2023-03-07 16:49 ` [PATCH 6.1 061/885] arm64: dts: amlogic: meson-gx-libretech-pc: fix update button name Greg Kroah-Hartman
2023-03-07 16:49 ` [PATCH 6.1 062/885] arm64: dts: amlogic: meson-sm1-bananapi-m5: fix adc keys node names Greg Kroah-Hartman
2023-03-07 16:49 ` [PATCH 6.1 063/885] arm64: dts: amlogic: meson-gxl-s905d-phicomm-n1: fix led node name Greg Kroah-Hartman
2023-03-07 16:49 ` [PATCH 6.1 064/885] arm64: dts: amlogic: meson-gxbb-kii-pro: " Greg Kroah-Hartman
2023-03-07 16:49 ` [PATCH 6.1 065/885] arm64: dts: amlogic: meson-sm1-odroid-hc4: fix active fan thermal trip Greg Kroah-Hartman
2023-03-07 16:50 ` [PATCH 6.1 066/885] locking/rwsem: Disable preemption in all down_read*() and up_read() code paths Greg Kroah-Hartman
2023-03-07 16:50 ` [PATCH 6.1 067/885] arm64: dts: renesas: beacon-renesom: Fix gpio expander reference Greg Kroah-Hartman
2023-03-07 16:50 ` [PATCH 6.1 068/885] arm64: dts: meson: radxa-zero: allow usb otg mode Greg Kroah-Hartman
2023-03-07 16:50 ` [PATCH 6.1 069/885] arm64: dts: meson: bananapi-m5: switch VDDIO_C pin to OPEN_DRAIN Greg Kroah-Hartman
2023-03-07 16:50 ` [PATCH 6.1 070/885] ARM: dts: sun8i: nanopi-duo2: Fix regulator GPIO reference Greg Kroah-Hartman
2023-03-07 16:50 ` [PATCH 6.1 071/885] ublk_drv: remove nr_aborted_queues from ublk_device Greg Kroah-Hartman
2023-03-07 16:50 ` [PATCH 6.1 072/885] ublk_drv: dont probe partitions if the ubq daemon isnt trusted Greg Kroah-Hartman
2023-03-07 16:50 ` [PATCH 6.1 073/885] ARM: dts: imx7s: correct iomuxc gpr mux controller cells Greg Kroah-Hartman
2023-03-07 16:50 ` [PATCH 6.1 074/885] sbitmap: remove redundant check in __sbitmap_queue_get_batch Greg Kroah-Hartman
2023-03-07 16:50 ` [PATCH 6.1 075/885] sbitmap: Use single per-bitmap counting to wake up queued tags Greg Kroah-Hartman
2023-03-07 16:50 ` [PATCH 6.1 076/885] sbitmap: correct wake_batch recalculation to avoid potential IO hung Greg Kroah-Hartman
2023-03-07 16:50 ` [PATCH 6.1 077/885] arm64: dts: mt8195: Fix CPU map for single-cluster SoC Greg Kroah-Hartman
2023-03-07 16:50 ` [PATCH 6.1 078/885] arm64: dts: mt8192: " Greg Kroah-Hartman
2023-03-07 16:50 ` [PATCH 6.1 079/885] arm64: dts: mt8186: " Greg Kroah-Hartman
2023-03-07 16:50 ` [PATCH 6.1 080/885] arm64: dts: mediatek: mt7622: Add missing pwm-cells to pwm node Greg Kroah-Hartman
2023-03-07 16:50 ` [PATCH 6.1 081/885] arm64: dts: mediatek: mt8186: Fix watchdog compatible Greg Kroah-Hartman
2023-03-07 16:50 ` [PATCH 6.1 082/885] arm64: dts: mediatek: mt8195: " Greg Kroah-Hartman
2023-03-07 16:50 ` [PATCH 6.1 083/885] arm64: dts: mediatek: mt7986: " Greg Kroah-Hartman
2023-03-07 16:50 ` [PATCH 6.1 084/885] ARM: dts: stm32: Update part number NVMEM description on stm32mp131 Greg Kroah-Hartman
2023-03-07 16:50 ` [PATCH 6.1 085/885] blk-mq: avoid sleep in blk_mq_alloc_request_hctx Greg Kroah-Hartman
2023-03-07 16:50 ` [PATCH 6.1 086/885] blk-mq: remove stale comment for blk_mq_sched_mark_restart_hctx Greg Kroah-Hartman
2023-03-07 16:50 ` [PATCH 6.1 087/885] blk-mq: wait on correct sbitmap_queue in blk_mq_mark_tag_wait Greg Kroah-Hartman
2023-03-07 16:50 ` [PATCH 6.1 088/885] blk-mq: Fix potential io hung for shared sbitmap per tagset Greg Kroah-Hartman
2023-03-07 16:50 ` [PATCH 6.1 089/885] blk-mq: correct stale comment of .get_budget Greg Kroah-Hartman
2023-03-07 16:50 ` [PATCH 6.1 090/885] arm64: dts: qcom: msm8996: support using GPLL0 as kryocc input Greg Kroah-Hartman
2023-03-07 16:50 ` [PATCH 6.1 091/885] arm64: dts: qcom: msm8996 switch from RPM_SMD_BB_CLK1 to RPM_SMD_XO_CLK_SRC Greg Kroah-Hartman
2023-03-07 16:50 ` [PATCH 6.1 092/885] arm64: dts: qcom: sm8350: drop incorrect cells from serial Greg Kroah-Hartman
2023-03-07 16:50 ` [PATCH 6.1 093/885] arm64: dts: qcom: sm8450: " Greg Kroah-Hartman
2023-03-07 16:50 ` [PATCH 6.1 094/885] arm64: dts: qcom: msm8992-lg-bullhead: Correct memory overlaps with the SMEM and MPSS memory regions Greg Kroah-Hartman
2023-03-07 16:50 ` [PATCH 6.1 095/885] arm64: dts: qcom: msm8953: correct TLMM gpio-ranges Greg Kroah-Hartman
2023-03-07 16:50 ` [PATCH 6.1 096/885] arm64: dts: qcom: msm8992-*: Fix up comments Greg Kroah-Hartman
2023-03-07 16:50 ` [PATCH 6.1 097/885] arm64: dts: qcom: msm8992-lg-bullhead: Enable regulators Greg Kroah-Hartman
2023-03-07 16:50 ` [PATCH 6.1 098/885] s390/dasd: Fix potential memleak in dasd_eckd_init() Greg Kroah-Hartman
2023-03-07 16:50 ` [PATCH 6.1 099/885] sched/rt: pick_next_rt_entity(): check list_entry Greg Kroah-Hartman
2023-03-07 16:50 ` [PATCH 6.1 100/885] perf/x86/intel/ds: Fix the conversion from TSC to perf time Greg Kroah-Hartman
2023-03-07 16:50 ` [PATCH 6.1 101/885] x86/perf/zhaoxin: Add stepping check for ZXC Greg Kroah-Hartman
2023-03-07 16:50 ` [PATCH 6.1 102/885] KEYS: asymmetric: Fix ECDSA use via keyctl uapi Greg Kroah-Hartman
2023-03-07 16:50 ` [PATCH 6.1 103/885] block: ublk: check IO buffer based on flag need_get_data Greg Kroah-Hartman
2023-03-07 16:50 ` [PATCH 6.1 104/885] arm64: dts: qcom: pmk8350: Specify PBS register for PON Greg Kroah-Hartman
2023-03-07 16:50 ` [PATCH 6.1 105/885] arm64: dts: qcom: pmk8350: Use the correct PON compatible Greg Kroah-Hartman
2023-03-07 16:50 ` [PATCH 6.1 106/885] erofs: relinquish volume with mutex held Greg Kroah-Hartman
2023-03-07 16:50 ` [PATCH 6.1 107/885] block: sync mixed merged requests failfast with 1st bios Greg Kroah-Hartman
2023-03-07 16:50 ` [PATCH 6.1 108/885] block: Fix io statistics for cgroup in throttle path Greg Kroah-Hartman
2023-03-07 16:50 ` [PATCH 6.1 109/885] block: bio-integrity: Copy flags when bio_integrity_payload is cloned Greg Kroah-Hartman
2023-03-07 16:50 ` [PATCH 6.1 110/885] block: use proper return value from bio_failfast() Greg Kroah-Hartman
2023-03-07 16:50 ` [PATCH 6.1 111/885] wifi: mt76: mt7915: add missing of_node_put() Greg Kroah-Hartman
2023-03-07 16:50 ` [PATCH 6.1 112/885] wifi: mt76: mt7921s: fix slab-out-of-bounds access in sdio host Greg Kroah-Hartman
2023-03-07 16:50 ` [PATCH 6.1 113/885] wifi: mt76: mt7915: check return value before accessing free_block_num Greg Kroah-Hartman
2023-03-07 16:50 ` [PATCH 6.1 114/885] wifi: mt76: mt7915: drop always true condition of __mt7915_reg_addr() Greg Kroah-Hartman
2023-03-07 16:50 ` [PATCH 6.1 115/885] wifi: mt76: mt7915: fix unintended sign extension of mt7915_hw_queue_read() Greg Kroah-Hartman
2023-03-07 16:50 ` [PATCH 6.1 116/885] wifi: mt76: fix coverity uninit_use_in_call in mt76_connac2_reverse_frag0_hdr_trans() Greg Kroah-Hartman
2023-03-07 16:50 ` [PATCH 6.1 117/885] wifi: rsi: Fix memory leak in rsi_coex_attach() Greg Kroah-Hartman
2023-03-07 16:50 ` [PATCH 6.1 118/885] wifi: rtlwifi: rtl8821ae: dont call kfree_skb() under spin_lock_irqsave() Greg Kroah-Hartman
2023-03-07 16:50 ` [PATCH 6.1 119/885] wifi: rtlwifi: rtl8188ee: " Greg Kroah-Hartman
2023-03-07 16:50 ` [PATCH 6.1 120/885] wifi: rtlwifi: rtl8723be: " Greg Kroah-Hartman
2023-03-07 16:50 ` [PATCH 6.1 121/885] wifi: iwlegacy: common: dont call dev_kfree_skb() " Greg Kroah-Hartman
2023-03-07 16:50 ` [PATCH 6.1 122/885] wifi: libertas: fix memory leak in lbs_init_adapter() Greg Kroah-Hartman
2023-03-07 16:50 ` [PATCH 6.1 123/885] wifi: rtl8xxxu: dont call dev_kfree_skb() under spin_lock_irqsave() Greg Kroah-Hartman
2023-03-07 16:50 ` [PATCH 6.1 124/885] wifi: rtw89: 8852c: rfk: correct DACK setting Greg Kroah-Hartman
2023-03-07 16:50 ` [PATCH 6.1 125/885] wifi: rtw89: 8852c: rfk: correct DPK settings Greg Kroah-Hartman
2023-03-07 16:51 ` [PATCH 6.1 126/885] wifi: rtlwifi: Fix global-out-of-bounds bug in _rtl8812ae_phy_set_txpower_limit() Greg Kroah-Hartman
2023-03-07 16:51 ` [PATCH 6.1 127/885] libbpf: Fix btf__align_of() by taking into account field offsets Greg Kroah-Hartman
2023-03-07 16:51 ` [PATCH 6.1 128/885] wifi: ipw2x00: dont call dev_kfree_skb() under spin_lock_irqsave() Greg Kroah-Hartman
2023-03-07 16:51 ` [PATCH 6.1 129/885] wifi: ipw2200: fix memory leak in ipw_wdev_init() Greg Kroah-Hartman
2023-03-07 16:51 ` [PATCH 6.1 130/885] wifi: wilc1000: fix potential memory leak in wilc_mac_xmit() Greg Kroah-Hartman
2023-03-07 16:51 ` [PATCH 6.1 131/885] wifi: wilc1000: add missing unregister_netdev() in wilc_netdev_ifc_init() Greg Kroah-Hartman
2023-03-07 16:51 ` [PATCH 6.1 132/885] wifi: brcmfmac: fix potential memory leak in brcmf_netdev_start_xmit() Greg Kroah-Hartman
2023-03-07 16:51 ` [PATCH 6.1 133/885] wifi: brcmfmac: unmap dma buffer in brcmf_msgbuf_alloc_pktid() Greg Kroah-Hartman
2023-03-07 16:51 ` [PATCH 6.1 134/885] wifi: libertas_tf: dont call kfree_skb() under spin_lock_irqsave() Greg Kroah-Hartman
2023-03-07 16:51 ` [PATCH 6.1 135/885] wifi: libertas: if_usb: " Greg Kroah-Hartman
2023-03-07 16:51 ` [PATCH 6.1 136/885] wifi: libertas: main: " Greg Kroah-Hartman
2023-03-07 16:51 ` [PATCH 6.1 137/885] wifi: libertas: cmdresp: " Greg Kroah-Hartman
2023-03-07 16:51 ` [PATCH 6.1 138/885] wifi: wl3501_cs: " Greg Kroah-Hartman
2023-03-07 16:51 ` [PATCH 6.1 139/885] libbpf: Fix invalid return address register in s390 Greg Kroah-Hartman
2023-03-07 16:51 ` [PATCH 6.1 140/885] crypto: x86/ghash - fix unaligned access in ghash_setkey() Greg Kroah-Hartman
2023-03-07 16:51 ` [PATCH 6.1 141/885] ACPICA: Drop port I/O validation for some regions Greg Kroah-Hartman
2023-03-07 16:51 ` [PATCH 6.1 142/885] genirq: Fix the return type of kstat_cpu_irqs_sum() Greg Kroah-Hartman
2023-03-07 16:51 ` [PATCH 6.1 143/885] rcu-tasks: Improve comments explaining tasks_rcu_exit_srcu purpose Greg Kroah-Hartman
2023-03-07 16:51 ` [PATCH 6.1 144/885] rcu-tasks: Remove preemption disablement around srcu_read_[un]lock() calls Greg Kroah-Hartman
2023-03-07 16:51 ` [PATCH 6.1 145/885] rcu-tasks: Fix synchronize_rcu_tasks() VS zap_pid_ns_processes() Greg Kroah-Hartman
2023-03-07 16:51 ` [PATCH 6.1 146/885] lib/mpi: Fix buffer overrun when SG is too long Greg Kroah-Hartman
2023-03-07 16:51 ` [PATCH 6.1 147/885] crypto: ccp - Avoid page allocation failure warning for SEV_GET_ID2 Greg Kroah-Hartman
2023-03-07 16:51 ` [PATCH 6.1 148/885] platform/chrome: cros_ec_typec: Update port DP VDO Greg Kroah-Hartman
2023-03-07 16:51 ` [PATCH 6.1 149/885] ACPICA: nsrepair: handle cases without a return value correctly Greg Kroah-Hartman
2023-03-07 16:51 ` [PATCH 6.1 150/885] selftests/xsk: print correct payload for packet dump Greg Kroah-Hartman
2023-03-07 16:51 ` [PATCH 6.1 151/885] selftests/xsk: print correct error codes when exiting Greg Kroah-Hartman
2023-03-07 16:51 ` [PATCH 6.1 152/885] arm64/cpufeature: Fix field sign for DIT hwcap detection Greg Kroah-Hartman
2023-03-07 16:51 ` [PATCH 6.1 153/885] kselftest/arm64: Fix syscall-abi for systems without 128 bit SME Greg Kroah-Hartman
2023-03-07 16:51 ` [PATCH 6.1 154/885] workqueue: Protects wq_unbound_cpumask with wq_pool_attach_mutex Greg Kroah-Hartman
2023-03-07 16:51 ` [PATCH 6.1 155/885] s390/early: fix sclp_early_sccb variable lifetime Greg Kroah-Hartman
2023-03-07 16:51 ` [PATCH 6.1 156/885] s390/vfio-ap: fix an error handling path in vfio_ap_mdev_probe_queue() Greg Kroah-Hartman
2023-03-07 16:51 ` [PATCH 6.1 157/885] x86/signal: Fix the value returned by strict_sas_size() Greg Kroah-Hartman
2023-03-07 16:51 ` [PATCH 6.1 158/885] thermal/drivers/tsens: Drop msm8976-specific defines Greg Kroah-Hartman
2023-03-07 16:51 ` [PATCH 6.1 159/885] thermal/drivers/tsens: Sort out msm8976 vs msm8956 data Greg Kroah-Hartman
2023-03-07 16:51 ` [PATCH 6.1 160/885] thermal/drivers/tsens: fix slope values for msm8939 Greg Kroah-Hartman
2023-03-07 16:51 ` [PATCH 6.1 161/885] thermal/drivers/tsens: limit num_sensors to 9 " Greg Kroah-Hartman
2023-03-07 16:51 ` [PATCH 6.1 162/885] wifi: rtw89: fix potential leak in rtw89_append_probe_req_ie() Greg Kroah-Hartman
2023-03-07 16:51 ` [PATCH 6.1 163/885] wifi: rtw89: Add missing check for alloc_workqueue Greg Kroah-Hartman
2023-03-07 16:51 ` [PATCH 6.1 164/885] wifi: rtl8xxxu: Fix memory leaks with RTL8723BU, RTL8192EU Greg Kroah-Hartman
2023-03-07 16:51 ` [PATCH 6.1 165/885] wifi: orinoco: check return value of hermes_write_wordrec() Greg Kroah-Hartman
2023-03-07 16:51 ` [PATCH 6.1 166/885] thermal/drivers/imx_sc_thermal: Drop empty platform remove function Greg Kroah-Hartman
2023-03-07 16:51 ` [PATCH 6.1 167/885] thermal/drivers/imx_sc_thermal: Fix the loop condition Greg Kroah-Hartman
2023-03-07 16:51 ` [PATCH 6.1 168/885] wifi: ath9k: htc_hst: free skb in ath9k_htc_rx_msg() if there is no callback function Greg Kroah-Hartman
2023-03-07 16:51 ` [PATCH 6.1 169/885] wifi: ath9k: hif_usb: clean up skbs if ath9k_hif_usb_rx_stream() fails Greg Kroah-Hartman
2023-03-07 16:51 ` [PATCH 6.1 170/885] wifi: ath9k: Fix potential stack-out-of-bounds write in ath9k_wmi_rsp_callback() Greg Kroah-Hartman
2023-03-07 16:51 ` [PATCH 6.1 171/885] wifi: ath11k: Fix memory leak in ath11k_peer_rx_frag_setup Greg Kroah-Hartman
2023-03-07 16:51 ` [PATCH 6.1 172/885] wifi: cfg80211: Fix extended KCK key length check in nl80211_set_rekey_data() Greg Kroah-Hartman
2023-03-07 16:51 ` [PATCH 6.1 173/885] ACPI: battery: Fix missing NUL-termination with large strings Greg Kroah-Hartman
2023-03-07 16:51 ` [PATCH 6.1 174/885] selftests/bpf: Fix build errors if CONFIG_NF_CONNTRACK=m Greg Kroah-Hartman
2023-03-07 16:51 ` [PATCH 6.1 175/885] crypto: ccp - Failure on re-initialization due to duplicate sysfs filename Greg Kroah-Hartman
2023-03-07 16:51 ` [PATCH 6.1 176/885] crypto: essiv - Handle EBUSY correctly Greg Kroah-Hartman
2023-03-07 16:51 ` [PATCH 6.1 177/885] crypto: seqiv " Greg Kroah-Hartman
2023-03-07 16:51 ` [PATCH 6.1 178/885] powercap: fix possible name leak in powercap_register_zone() Greg Kroah-Hartman
2023-03-07 16:51 ` [PATCH 6.1 179/885] x86/microcode: Add a parameter to microcode_check() to store CPU capabilities Greg Kroah-Hartman
2023-03-07 16:51 ` [PATCH 6.1 180/885] x86/microcode: Check CPU capabilities after late microcode update correctly Greg Kroah-Hartman
2023-03-07 16:51 ` [PATCH 6.1 181/885] x86/microcode: Adjust late loading result reporting message Greg Kroah-Hartman
2023-03-07 16:51 ` [PATCH 6.1 182/885] selftests/bpf: Use consistent build-id type for liburandom_read.so Greg Kroah-Hartman
2023-03-07 16:51 ` [PATCH 6.1 183/885] selftests/bpf: Fix vmtest static compilation error Greg Kroah-Hartman
2023-03-07 16:51 ` [PATCH 6.1 184/885] crypto: xts - Handle EBUSY correctly Greg Kroah-Hartman
2023-03-07 16:51 ` [PATCH 6.1 185/885] leds: led-class: Add missing put_device() to led_put() Greg Kroah-Hartman
2023-03-07 16:52 ` [PATCH 6.1 186/885] s390/bpf: Add expoline to tail calls Greg Kroah-Hartman
2023-03-07 16:52 ` [PATCH 6.1 187/885] wifi: iwlwifi: mei: fix compilation errors in rfkill() Greg Kroah-Hartman
2023-03-07 16:52 ` [PATCH 6.1 188/885] kselftest/arm64: Fix enumeration of systems without 128 bit SME Greg Kroah-Hartman
2023-03-07 16:52 ` [PATCH 6.1 189/885] can: rcar_canfd: Fix R-Car V3U GAFLCFG field accesses Greg Kroah-Hartman
2023-03-07 16:52 ` [PATCH 6.1 190/885] selftests/bpf: Initialize tc in xdp_synproxy Greg Kroah-Hartman
2023-03-07 16:52 ` [PATCH 6.1 191/885] crypto: ccp - Flush the SEV-ES TMR memory before giving it to firmware Greg Kroah-Hartman
2023-03-07 16:52 ` [PATCH 6.1 192/885] bpftool: profile online CPUs instead of possible Greg Kroah-Hartman
2023-03-07 16:52 ` [PATCH 6.1 193/885] wifi: mt76: mt7915: call mt7915_mcu_set_thermal_throttling() only after init_work Greg Kroah-Hartman
2023-03-07 16:52 ` [PATCH 6.1 194/885] wifi: mt76: mt7915: fix memory leak in mt7915_mcu_exit Greg Kroah-Hartman
2023-03-07 16:52 ` [PATCH 6.1 195/885] wifi: mt76: mt7915: fix WED TxS reporting Greg Kroah-Hartman
2023-03-07 16:52 ` [PATCH 6.1 196/885] wifi: mt76: add memory barrier to SDIO queue kick Greg Kroah-Hartman
2023-03-07 16:52 ` [PATCH 6.1 197/885] wifi: mt76: mt7921: fix error code of return in mt7921_acpi_read Greg Kroah-Hartman
2023-03-07 16:52 ` [PATCH 6.1 198/885] net/mlx5: Enhance debug print in page allocation failure Greg Kroah-Hartman
2023-03-07 16:52 ` [PATCH 6.1 199/885] irqchip: Fix refcount leak in platform_irqchip_probe Greg Kroah-Hartman
2023-03-07 16:52 ` [PATCH 6.1 200/885] irqchip/alpine-msi: Fix refcount leak in alpine_msix_init_domains Greg Kroah-Hartman
2023-03-07 16:52 ` [PATCH 6.1 201/885] irqchip/irq-mvebu-gicp: Fix refcount leak in mvebu_gicp_probe Greg Kroah-Hartman
2023-03-07 16:52 ` [PATCH 6.1 202/885] irqchip/ti-sci: Fix refcount leak in ti_sci_intr_irq_domain_probe Greg Kroah-Hartman
2023-03-07 16:52 ` [PATCH 6.1 203/885] s390/mem_detect: fix detect_memory() error handling Greg Kroah-Hartman
2023-03-07 16:52 ` [PATCH 6.1 204/885] s390/vmem: fix empty page tables cleanup under KASAN Greg Kroah-Hartman
2023-03-07 16:52 ` [PATCH 6.1 205/885] s390/boot: cleanup decompressor header files Greg Kroah-Hartman
2023-03-07 16:52 ` [PATCH 6.1 206/885] s390/mem_detect: rely on diag260() if sclp_early_get_memsize() fails Greg Kroah-Hartman
2023-03-07 16:52 ` [PATCH 6.1 207/885] s390/boot: fix mem_detect extended area allocation Greg Kroah-Hartman
2023-03-07 16:52 ` [PATCH 6.1 208/885] net: add sock_init_data_uid() Greg Kroah-Hartman
2023-03-07 16:52 ` [PATCH 6.1 209/885] tun: tun_chr_open(): correctly initialize socket uid Greg Kroah-Hartman
2023-03-07 16:52 ` [PATCH 6.1 210/885] tap: tap_open(): " Greg Kroah-Hartman
2023-03-07 16:52 ` [PATCH 6.1 211/885] OPP: fix error checking in opp_migrate_dentry() Greg Kroah-Hartman
2023-03-07 16:52 ` [PATCH 6.1 212/885] cpufreq: davinci: Fix clk use after free Greg Kroah-Hartman
2023-03-07 16:52 ` [PATCH 6.1 213/885] Bluetooth: hci_conn: Refactor hci_bind_bis() since it always succeeds Greg Kroah-Hartman
2023-03-07 16:52 ` [PATCH 6.1 214/885] Bluetooth: L2CAP: Fix potential user-after-free Greg Kroah-Hartman
2023-03-07 16:52 ` [PATCH 6.1 215/885] Bluetooth: hci_qca: get wakeup status from serdev device handle Greg Kroah-Hartman
2023-03-07 16:52 ` [PATCH 6.1 216/885] net: ipa: generic command param fix Greg Kroah-Hartman
2023-03-07 16:52 ` [PATCH 6.1 217/885] s390: vfio-ap: tighten the NIB validity check Greg Kroah-Hartman
2023-03-07 16:52 ` [PATCH 6.1 218/885] s390/ap: fix status returned by ap_aqic() Greg Kroah-Hartman
2023-03-07 16:52 ` [PATCH 6.1 219/885] s390/ap: fix status returned by ap_qact() Greg Kroah-Hartman
2023-03-07 16:52 ` [PATCH 6.1 220/885] libbpf: Fix alen calculation in libbpf_nla_dump_errormsg() Greg Kroah-Hartman
2023-03-07 16:52 ` [PATCH 6.1 221/885] xen/grant-dma-iommu: Implement a dummy probe_device() callback Greg Kroah-Hartman
2023-03-07 16:52 ` [PATCH 6.1 222/885] rds: rds_rm_zerocopy_callback() correct order for list_add_tail() Greg Kroah-Hartman
2023-03-07 16:52 ` [PATCH 6.1 223/885] crypto: rsa-pkcs1pad - Use akcipher_request_complete Greg Kroah-Hartman
2023-03-07 16:52 ` [PATCH 6.1 224/885] m68k: /proc/hardware should depend on PROC_FS Greg Kroah-Hartman
2023-03-07 16:52 ` [PATCH 6.1 225/885] RISC-V: time: initialize hrtimer based broadcast clock event device Greg Kroah-Hartman
2023-03-07 16:52 ` [PATCH 6.1 226/885] clocksource/drivers/riscv: Patch riscv_clock_next_event() jump before first use Greg Kroah-Hartman
2023-03-07 16:52 ` [PATCH 6.1 227/885] wifi: iwl3945: Add missing check for create_singlethread_workqueue Greg Kroah-Hartman
2023-03-07 16:52 ` [PATCH 6.1 228/885] wifi: iwl4965: Add missing check for create_singlethread_workqueue() Greg Kroah-Hartman
2023-03-07 16:52 ` [PATCH 6.1 229/885] wifi: mwifiex: fix loop iterator in mwifiex_update_ampdu_txwinsize() Greg Kroah-Hartman
2023-03-07 16:52 ` [PATCH 6.1 230/885] selftests/bpf: Fix out-of-srctree build Greg Kroah-Hartman
2023-03-07 16:52 ` [PATCH 6.1 231/885] ACPI: resource: Add IRQ overrides for MAINGEAR Vector Pro 2 models Greg Kroah-Hartman
2023-03-07 16:52 ` [PATCH 6.1 232/885] ACPI: resource: Do IRQ override on all TongFang GMxRGxx Greg Kroah-Hartman
2023-03-07 16:52 ` [PATCH 6.1 233/885] crypto: octeontx2 - Fix objects shared between several modules Greg Kroah-Hartman
2023-03-07 16:52 ` [PATCH 6.1 234/885] crypto: crypto4xx - Call dma_unmap_page when done Greg Kroah-Hartman
2023-03-07 16:52 ` [PATCH 6.1 235/885] wifi: mac80211: move color collision detection report in a delayed work Greg Kroah-Hartman
2023-03-07 16:52 ` [PATCH 6.1 236/885] wifi: mac80211: make rate u32 in sta_set_rate_info_rx() Greg Kroah-Hartman
2023-03-07 16:52 ` [PATCH 6.1 237/885] wifi: mac80211: fix non-MLO station association Greg Kroah-Hartman
2023-03-07 16:52 ` [PATCH 6.1 238/885] wifi: mac80211: Dont translate MLD addresses for multicast Greg Kroah-Hartman
2023-03-07 16:52 ` [PATCH 6.1 239/885] wifi: mac80211: avoid u32_encode_bits() warning Greg Kroah-Hartman
2023-03-07 16:52 ` [PATCH 6.1 240/885] wifi: mac80211: fix off-by-one link setting Greg Kroah-Hartman
2023-03-07 16:52 ` [PATCH 6.1 241/885] tools/lib/thermal: Fix thermal_sampling_exit() Greg Kroah-Hartman
2023-03-07 16:52 ` [PATCH 6.1 242/885] thermal/drivers/hisi: Drop second sensor hi3660 Greg Kroah-Hartman
2023-03-07 16:52 ` [PATCH 6.1 243/885] selftests/bpf: Fix map_kptr test Greg Kroah-Hartman
2023-03-07 16:52 ` [PATCH 6.1 244/885] wifi: mac80211: pass sta to ieee80211_rx_data_set_sta() Greg Kroah-Hartman
2023-03-07 16:52 ` [PATCH 6.1 245/885] bpf: Zeroing allocated object from slab in bpf memory allocator Greg Kroah-Hartman
2023-03-07 16:53 ` [PATCH 6.1 246/885] selftests/bpf: Fix xdp_do_redirect on s390x Greg Kroah-Hartman
2023-03-07 16:53 ` [PATCH 6.1 247/885] can: esd_usb: Move mislocated storage of SJA1000_ECC_SEG bits in case of a bus error Greg Kroah-Hartman
2023-03-07 16:53 ` [PATCH 6.1 248/885] can: esd_usb: Make use of can_change_state() and relocate checking skb for NULL Greg Kroah-Hartman
2023-03-07 16:53 ` [PATCH 6.1 249/885] xsk: check IFF_UP earlier in Tx path Greg Kroah-Hartman
2023-03-07 16:53 ` [PATCH 6.1 250/885] LoongArch, bpf: Use 4 instructions for function address in JIT Greg Kroah-Hartman
2023-03-07 16:53 ` [PATCH 6.1 251/885] bpf: Fix global subprog context argument resolution logic Greg Kroah-Hartman
2023-03-07 16:53 ` [PATCH 6.1 252/885] irqchip/irq-brcmstb-l2: Set IRQ_LEVEL for level triggered interrupts Greg Kroah-Hartman
2023-03-07 16:53 ` [PATCH 6.1 253/885] irqchip/irq-bcm7120-l2: " Greg Kroah-Hartman
2023-03-07 16:53 ` [PATCH 6.1 254/885] net/smc: fix potential panic dues to unprotected smc_llc_srv_add_link() Greg Kroah-Hartman
2023-03-07 16:53 ` [PATCH 6.1 255/885] net/smc: fix application data exception Greg Kroah-Hartman
2023-03-07 16:53 ` [PATCH 6.1 256/885] selftests/net: Interpret UDP_GRO cmsg data as an int value Greg Kroah-Hartman
2023-03-07 16:53 ` [PATCH 6.1 257/885] l2tp: Avoid possible recursive deadlock in l2tp_tunnel_register() Greg Kroah-Hartman
2023-03-07 16:53 ` [PATCH 6.1 258/885] net: bcmgenet: fix MoCA LED control Greg Kroah-Hartman
2023-03-07 16:53 ` [PATCH 6.1 259/885] net: lan966x: Fix possible deadlock inside PTP Greg Kroah-Hartman
2023-03-07 16:53 ` [PATCH 6.1 260/885] net/mlx4_en: Introduce flexible array to silence overflow warning Greg Kroah-Hartman
2023-03-07 16:53 ` [PATCH 6.1 261/885] selftest: fib_tests: Always cleanup before exit Greg Kroah-Hartman
2023-03-07 16:53 ` [PATCH 6.1 262/885] sefltests: netdevsim: wait for devlink instance after netns removal Greg Kroah-Hartman
2023-03-07 16:53 ` [PATCH 6.1 263/885] drm: Fix potential null-ptr-deref due to drmm_mode_config_init() Greg Kroah-Hartman
2023-03-07 16:53 ` [PATCH 6.1 264/885] drm/fourcc: Add missing big-endian XRGB1555 and RGB565 formats Greg Kroah-Hartman
2023-03-07 16:53 ` [PATCH 6.1 265/885] drm/bridge: ti-sn65dsi83: Fix delay after reset deassert to match spec Greg Kroah-Hartman
2023-03-07 16:53 ` [PATCH 6.1 266/885] drm: mxsfb: DRM_IMX_LCDIF should depend on ARCH_MXC Greg Kroah-Hartman
2023-03-07 16:53 ` [PATCH 6.1 267/885] drm: mxsfb: DRM_MXSFB should depend on ARCH_MXS || ARCH_MXC Greg Kroah-Hartman
2023-03-07 16:53 ` [PATCH 6.1 268/885] drm/bridge: megachips: Fix error handling in i2c_register_driver() Greg Kroah-Hartman
2023-03-07 16:53 ` [PATCH 6.1 269/885] drm/vkms: Fix memory leak in vkms_init() Greg Kroah-Hartman
2023-03-07 16:53 ` [PATCH 6.1 270/885] drm/vkms: Fix null-ptr-deref in vkms_release() Greg Kroah-Hartman
2023-03-07 16:53 ` [PATCH 6.1 271/885] drm/vc4: dpi: Fix format mapping for RGB565 Greg Kroah-Hartman
2023-03-07 16:53 ` [PATCH 6.1 272/885] drm: tidss: Fix pixel format definition Greg Kroah-Hartman
2023-03-07 16:53 ` [PATCH 6.1 273/885] 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:53 ` [PATCH 6.1 274/885] drm/vc4: drop all currently held locks if deadlock happens Greg Kroah-Hartman
2023-03-07 16:53 ` [PATCH 6.1 275/885] hwmon: (ftsteutates) Fix scaling of measurements Greg Kroah-Hartman
2023-03-07 16:53 ` [PATCH 6.1 276/885] drm/msm/dpu: check for null return of devm_kzalloc() in dpu_writeback_init() Greg Kroah-Hartman
2023-03-07 16:53 ` [PATCH 6.1 277/885] drm/msm/hdmi: Add missing check for alloc_ordered_workqueue Greg Kroah-Hartman
2023-03-07 16:53 ` [PATCH 6.1 278/885] pinctrl: qcom: pinctrl-msm8976: Correct function names for wcss pins Greg Kroah-Hartman
2023-03-07 16:53 ` [PATCH 6.1 279/885] pinctrl: stm32: Fix refcount leak in stm32_pctrl_get_irq_domain Greg Kroah-Hartman
2023-03-07 16:53 ` [PATCH 6.1 280/885] pinctrl: rockchip: Fix refcount leak in rockchip_pinctrl_parse_groups Greg Kroah-Hartman
2023-03-07 16:53 ` [PATCH 6.1 281/885] drm/vc4: hvs: Set AXI panic modes Greg Kroah-Hartman
2023-03-07 16:53 ` [PATCH 6.1 282/885] drm/vc4: hvs: SCALER_DISPBKGND_AUTOHS is only valid on HVS4 Greg Kroah-Hartman
2023-03-07 16:53 ` [PATCH 6.1 283/885] drm/vc4: hvs: Correct interrupt masking bit assignment for HVS5 Greg Kroah-Hartman
2023-03-07 16:53 ` [PATCH 6.1 284/885] drm/vc4: hvs: Fix colour order for xRGB1555 on HVS5 Greg Kroah-Hartman
2023-03-07 16:53 ` [PATCH 6.1 285/885] drm/vc4: hdmi: Correct interlaced timings again Greg Kroah-Hartman
2023-03-07 16:53 ` [PATCH 6.1 286/885] drm/msm: clean event_thread->worker in case of an error Greg Kroah-Hartman
2023-03-07 16:53 ` [PATCH 6.1 287/885] drm/panel-edp: fix name for IVO product id 854b Greg Kroah-Hartman
2023-03-07 16:53 ` [PATCH 6.1 288/885] scsi: qla2xxx: Fix exchange oversubscription Greg Kroah-Hartman
2023-03-07 16:53 ` [PATCH 6.1 289/885] scsi: qla2xxx: Fix exchange oversubscription for management commands Greg Kroah-Hartman
2023-03-07 16:53 ` [PATCH 6.1 290/885] scsi: qla2xxx: edif: Fix clang warning Greg Kroah-Hartman
2023-03-07 16:53 ` [PATCH 6.1 291/885] ASoC: fsl_sai: initialize is_dsp_mode flag Greg Kroah-Hartman
2023-03-07 16:53 ` [PATCH 6.1 292/885] drm/bridge: tc358767: Set default CLRSIPO count Greg Kroah-Hartman
2023-03-07 16:53 ` [PATCH 6.1 293/885] drm/msm/adreno: Fix null ptr access in adreno_gpu_cleanup() Greg Kroah-Hartman
2023-03-07 16:53 ` [PATCH 6.1 294/885] ALSA: hda/ca0132: minor fix for allocation size Greg Kroah-Hartman
2023-03-07 16:53 ` [PATCH 6.1 295/885] drm/amdgpu: Use the sched from entity for amdgpu_cs trace Greg Kroah-Hartman
2023-03-07 16:53 ` [PATCH 6.1 296/885] drm/msm/gem: Add check for kmalloc Greg Kroah-Hartman
2023-03-07 16:53 ` [PATCH 6.1 297/885] drm/msm/dpu: Disallow unallocated resources to be returned Greg Kroah-Hartman
2023-03-07 16:53 ` [PATCH 6.1 298/885] drm/bridge: lt9611: fix sleep mode setup Greg Kroah-Hartman
2023-03-07 16:53 ` [PATCH 6.1 299/885] drm/bridge: lt9611: fix HPD reenablement Greg Kroah-Hartman
2023-03-07 16:53 ` [PATCH 6.1 300/885] drm/bridge: lt9611: fix polarity programming Greg Kroah-Hartman
2023-03-07 16:53 ` [PATCH 6.1 301/885] drm/bridge: lt9611: fix programming of video modes Greg Kroah-Hartman
2023-03-07 16:53 ` [PATCH 6.1 302/885] drm/bridge: lt9611: fix clock calculation Greg Kroah-Hartman
2023-03-07 16:53 ` [PATCH 6.1 303/885] drm/bridge: lt9611: pass a pointer to the of node Greg Kroah-Hartman
2023-03-07 16:53 ` [PATCH 6.1 304/885] regulator: tps65219: use IS_ERR() to detect an error pointer Greg Kroah-Hartman
2023-03-07 16:53 ` [PATCH 6.1 305/885] drm/mipi-dsi: Fix byte order of 16-bit DCS set/get brightness Greg Kroah-Hartman
2023-03-07 16:54 ` [PATCH 6.1 306/885] drm: exynos: dsi: Fix MIPI_DSI*_NO_* mode flags Greg Kroah-Hartman
2023-03-07 16:54 ` [PATCH 6.1 307/885] drm/msm/dsi: Allow 2 CTRLs on v2.5.0 Greg Kroah-Hartman
2023-03-07 16:54 ` [PATCH 6.1 308/885] scsi: ufs: exynos: Fix DMA alignment for PAGE_SIZE != 4096 Greg Kroah-Hartman
2023-03-07 16:54 ` [PATCH 6.1 309/885] drm/msm/dpu: sc7180: add missing WB2 clock control Greg Kroah-Hartman
2023-03-07 16:54 ` [PATCH 6.1 310/885] drm/msm: use strscpy instead of strncpy Greg Kroah-Hartman
2023-03-07 16:54 ` [PATCH 6.1 311/885] drm/msm/dpu: Add check for cstate Greg Kroah-Hartman
2023-03-07 16:54 ` [PATCH 6.1 312/885] drm/msm/dpu: Add check for pstates Greg Kroah-Hartman
2023-03-07 16:54 ` [PATCH 6.1 313/885] drm/msm/mdp5: Add check for kzalloc Greg Kroah-Hartman
2023-03-07 16:54 ` [PATCH 6.1 314/885] habanalabs: bugs fixes in timestamps buff alloc Greg Kroah-Hartman
2023-03-07 16:54 ` [PATCH 6.1 315/885] pinctrl: bcm2835: Remove of_node_put() in bcm2835_of_gpio_ranges_fallback() Greg Kroah-Hartman
2023-03-07 16:54 ` [PATCH 6.1 316/885] pinctrl: mediatek: Initialize variable pullen and pullup to zero Greg Kroah-Hartman
2023-03-07 16:54 ` [PATCH 6.1 317/885] pinctrl: mediatek: Initialize variable *buf " Greg Kroah-Hartman
2023-03-07 16:54 ` [PATCH 6.1 318/885] gpu: host1x: Fix mask for syncpoint increment register Greg Kroah-Hartman
2023-03-07 16:54 ` [PATCH 6.1 319/885] gpu: host1x: Dont skip assigning syncpoints to channels Greg Kroah-Hartman
2023-03-07 16:54 ` [PATCH 6.1 320/885] drm/tegra: firewall: Check for is_addr_reg existence in IMM check Greg Kroah-Hartman
2023-03-07 16:54 ` [PATCH 6.1 321/885] pinctrl: renesas: rzg2l: Fix configuring the GPIO pins as interrupts Greg Kroah-Hartman
2023-03-07 16:54 ` [PATCH 6.1 322/885] drm/msm/dpu: set pdpu->is_rt_pipe early in dpu_plane_sspp_atomic_update() Greg Kroah-Hartman
2023-03-07 16:54 ` [PATCH 6.1 323/885] drm/mediatek: dsi: Reduce the time of dsi from LP11 to sending cmd Greg Kroah-Hartman
2023-03-07 16:54 ` [PATCH 6.1 324/885] drm/mediatek: Use NULL instead of 0 for NULL pointer Greg Kroah-Hartman
2023-03-07 16:54 ` [PATCH 6.1 325/885] drm/mediatek: Drop unbalanced obj unref Greg Kroah-Hartman
2023-03-07 16:54 ` [PATCH 6.1 326/885] drm/mediatek: mtk_drm_crtc: Add checks for devm_kcalloc Greg Kroah-Hartman
2023-03-07 16:54 ` [PATCH 6.1 327/885] drm/mediatek: Clean dangling pointer on bind error path Greg Kroah-Hartman
2023-03-07 16:54 ` [PATCH 6.1 328/885] ASoC: soc-compress.c: fixup private_data on snd_soc_new_compress() Greg Kroah-Hartman
2023-03-07 16:54 ` [PATCH 6.1 329/885] dt-bindings: display: mediatek: Fix the fallback for mediatek,mt8186-disp-ccorr Greg Kroah-Hartman
2023-03-07 16:54 ` [PATCH 6.1 330/885] gpio: vf610: connect GPIO label to dev name Greg Kroah-Hartman
2023-03-07 16:54 ` [PATCH 6.1 331/885] ASoC: topology: Properly access value coming from topology file Greg Kroah-Hartman
2023-03-07 16:54 ` [PATCH 6.1 332/885] spi: dw_bt1: fix MUX_MMIO dependencies Greg Kroah-Hartman
2023-03-07 16:54 ` [PATCH 6.1 333/885] ASoC: mchp-spdifrx: fix controls which rely on rsr register Greg Kroah-Hartman
2023-03-07 16:54 ` [PATCH 6.1 334/885] ASoC: mchp-spdifrx: fix return value in case completion times out Greg Kroah-Hartman
2023-03-07 16:54 ` [PATCH 6.1 335/885] ASoC: mchp-spdifrx: fix controls that works with completion mechanism Greg Kroah-Hartman
2023-03-07 16:54 ` [PATCH 6.1 336/885] ASoC: mchp-spdifrx: disable all interrupts in mchp_spdifrx_dai_remove() Greg Kroah-Hartman
2023-03-07 16:54 ` [PATCH 6.1 337/885] dm: improve shrinker debug names Greg Kroah-Hartman
2023-03-07 16:54 ` [PATCH 6.1 338/885] regmap: apply reg_base and reg_downshift for single register ops Greg Kroah-Hartman
2023-03-07 16:54 ` [PATCH 6.1 339/885] ASoC: rsnd: fixup #endif position Greg Kroah-Hartman
2023-03-07 16:54 ` [PATCH 6.1 340/885] ASoC: mchp-spdifrx: Fix uninitialized use of mr in mchp_spdifrx_hw_params() Greg Kroah-Hartman
2023-03-07 16:54 ` [PATCH 6.1 341/885] ASoC: dt-bindings: meson: fix gx-card codec node regex Greg Kroah-Hartman
2023-03-07 16:54 ` [PATCH 6.1 342/885] regulator: tps65219: use generic set_bypass() Greg Kroah-Hartman
2023-03-07 16:54 ` [PATCH 6.1 343/885] hwmon: (asus-ec-sensors) add missing mutex path Greg Kroah-Hartman
2023-03-07 16:54 ` [PATCH 6.1 344/885] hwmon: (ltc2945) Handle error case in ltc2945_value_store Greg Kroah-Hartman
2023-03-07 16:54 ` [PATCH 6.1 345/885] ALSA: hda: Fix the control element identification for multiple codecs Greg Kroah-Hartman
2023-03-07 16:54 ` [PATCH 6.1 346/885] drm/amdgpu: fix enum odm_combine_mode mismatch Greg Kroah-Hartman
2023-03-07 16:54 ` [PATCH 6.1 347/885] scsi: mpt3sas: Fix a memory leak Greg Kroah-Hartman
2023-03-07 16:54 ` [PATCH 6.1 348/885] scsi: aic94xx: Add missing check for dma_map_single() Greg Kroah-Hartman
2023-03-07 16:54 ` [PATCH 6.1 349/885] HID: multitouch: Add quirks for flipped axes Greg Kroah-Hartman
2023-03-07 16:54 ` [PATCH 6.1 350/885] HID: retain initial quirks set up when creating HID devices Greg Kroah-Hartman
2023-03-07 16:54 ` [PATCH 6.1 351/885] ASoC: qcom: q6apm-lpass-dai: unprepare stream if its already prepared Greg Kroah-Hartman
2023-03-07 16:54 ` [PATCH 6.1 352/885] ASoC: qcom: q6apm-dai: fix race condition while updating the position pointer Greg Kroah-Hartman
2023-03-07 16:54 ` [PATCH 6.1 353/885] ASoC: qcom: q6apm-dai: Add SNDRV_PCM_INFO_BATCH flag Greg Kroah-Hartman
2023-03-07 16:54 ` [PATCH 6.1 354/885] ASoC: codecs: lpass: register mclk after runtime pm Greg Kroah-Hartman
2023-03-07 16:54 ` [PATCH 6.1 355/885] ASoC: codecs: lpass: fix incorrect mclk rate Greg Kroah-Hartman
2023-03-07 16:54 ` [PATCH 6.1 356/885] spi: bcm63xx-hsspi: Endianness fix for ARM based SoC Greg Kroah-Hartman
2023-03-07 16:54 ` [PATCH 6.1 357/885] drm/amd/display: dont call dc_interrupt_set() for disabled crtcs Greg Kroah-Hartman
2023-03-07 16:54 ` [PATCH 6.1 358/885] HID: logitech-hidpp: Hard-code HID++ 1.0 fast scroll support Greg Kroah-Hartman
2023-03-07 16:54 ` [PATCH 6.1 359/885] spi: bcm63xx-hsspi: Fix multi-bit mode setting Greg Kroah-Hartman
2023-03-07 16:54 ` [PATCH 6.1 360/885] hwmon: (mlxreg-fan) Return zero speed for broken fan Greg Kroah-Hartman
2023-03-07 16:54 ` [PATCH 6.1 361/885] ASoC: tlv320adcx140: fix ti,gpio-config DT property init Greg Kroah-Hartman
2023-03-07 16:54 ` [PATCH 6.1 362/885] dm: remove flush_scheduled_work() during local_exit() Greg Kroah-Hartman
2023-03-07 16:54 ` [PATCH 6.1 363/885] nfs4trace: fix state manager flag printing Greg Kroah-Hartman
2023-03-07 16:54 ` [PATCH 6.1 364/885] NFS: fix disabling of swap Greg Kroah-Hartman
2023-03-07 16:54 ` [PATCH 6.1 365/885] spi: synquacer: Fix timeout handling in synquacer_spi_transfer_one() Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 6.1 366/885] ASoC: soc-dapm.h: fixup warning struct snd_pcm_substream not declared Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 6.1 367/885] HID: bigben: use spinlock to protect concurrent accesses Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 6.1 368/885] HID: bigben_worker() remove unneeded check on report_field Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 6.1 369/885] HID: bigben: use spinlock to safely schedule workers Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 6.1 370/885] hid: bigben_probe(): validate report count Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 6.1 371/885] ALSA: hda/hdmi: Register with vga_switcheroo on Dual GPU Macbooks Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 6.1 372/885] drm/shmem-helper: Fix locking for drm_gem_shmem_get_pages_sgt() Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 6.1 373/885] NFSD: enhance inter-server copy cleanup Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 6.1 374/885] NFSD: fix leaked reference count of nfsd4_ssc_umount_item Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 6.1 375/885] nfsd: fix race to check ls_layouts Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 6.1 376/885] nfsd: clean up potential nfsd_file refcount leaks in COPY codepath Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 6.1 377/885] NFSD: fix problems with cleanup on errors in nfsd4_copy Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 6.1 378/885] nfsd: fix courtesy client with deny mode handling in nfs4_upgrade_open Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 6.1 379/885] nfsd: dont fsync nfsd_files on last close Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 6.1 380/885] NFSD: copy the whole verifier in nfsd_copy_write_verifier Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 6.1 381/885] cifs: Fix lost destroy smbd connection when MR allocate failed Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 6.1 382/885] cifs: Fix warning and UAF when destroy the MR list Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 6.1 383/885] cifs: use tcon allocation functions even for dummy tcon Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 6.1 384/885] gfs2: jdata writepage fix Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 6.1 385/885] perf llvm: Fix inadvertent file creation Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 6.1 386/885] leds: led-core: Fix refcount leak in of_led_get() Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 6.1 387/885] leds: is31fl319x: Wrap mutex_destroy() for devm_add_action_or_rest() Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 6.1 388/885] leds: simatic-ipc-leds-gpio: Make sure we have the GPIO providing driver Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 6.1 389/885] tools/tracing/rtla: osnoise_hist: use total duration for average calculation Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 6.1 390/885] perf inject: Use perf_data__read() for auxtrace Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 6.1 391/885] perf intel-pt: Do not try to queue auxtrace data on pipe Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 6.1 392/885] perf test bpf: Skip test if kernel-debuginfo is not present Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 6.1 393/885] perf tools: Fix auto-complete on aarch64 Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 6.1 394/885] sparc: allow PM configs for sparc32 COMPILE_TEST Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 6.1 395/885] selftests: find echo binary to use -ne options Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 6.1 396/885] selftests/ftrace: Fix bash specific "==" operator Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 6.1 397/885] selftests: use printf instead of echo -ne Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 6.1 398/885] perf record: Fix segfault with --overwrite and --max-size Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 6.1 399/885] printf: fix errname.c list Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 6.1 400/885] perf tests stat_all_metrics: Change true workload to sleep workload for system wide check Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 6.1 401/885] objtool: add UACCESS exceptions for __tsan_volatile_read/write Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 6.1 402/885] mfd: cs5535: Dont build on UML Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 6.1 403/885] mfd: pcf50633-adc: Fix potential memleak in pcf50633_adc_async_read() Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 6.1 404/885] dmaengine: idxd: Set traffic class values in GRPCFG on DSA 2.0 Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 6.1 405/885] RDMA/erdma: Fix refcount leak in erdma_mmap Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 6.1 406/885] dmaengine: HISI_DMA should depend on ARCH_HISI Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 6.1 407/885] RDMA/hns: Fix refcount leak in hns_roce_mmap Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 6.1 408/885] iio: light: tsl2563: Do not hardcode interrupt trigger type Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 6.1 409/885] usb: gadget: fusb300_udc: free irq on the error path in fusb300_probe() Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 6.1 410/885] i2c: designware: fix i2c_dw_clk_rate() return size to be u32 Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 6.1 411/885] soundwire: cadence: Dont overflow the command FIFOs Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 6.1 412/885] driver core: fix potential null-ptr-deref in device_add() Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 6.1 413/885] kobject: modify kobject_get_path() to take a const * Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 6.1 414/885] kobject: Fix slab-out-of-bounds in fill_kobj_path() Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 6.1 415/885] alpha/boot/tools/objstrip: fix the check for ELF header Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 6.1 416/885] media: uvcvideo: Check for INACTIVE in uvc_ctrl_is_accessible() Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 6.1 417/885] media: uvcvideo: Implement mask for V4L2_CTRL_TYPE_MENU Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 6.1 418/885] media: uvcvideo: Refactor uvc_ctrl_mappings_uvcXX Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 6.1 419/885] media: uvcvideo: Refactor power_line_frequency_controls_limited Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 6.1 420/885] coresight: etm4x: Fix accesses to TRCSEQRSTEVR and TRCSEQSTR Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 6.1 421/885] coresight: cti: Prevent negative values of enable count Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 6.1 422/885] coresight: cti: Add PM runtime call in enable_store Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 6.1 423/885] usb: typec: intel_pmc_mux: Dont leak the ACPI device reference count Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 6.1 424/885] PCI/IOV: Enlarge virtfn sysfs name buffer Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 6.1 425/885] PCI: switchtec: Return -EFAULT for copy_to_user() errors Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 6.1 426/885] PCI: endpoint: pci-epf-vntb: Clean up kernel_doc warning Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 6.1 427/885] PCI: endpoint: pci-epf-vntb: Add epf_ntb_mw_bar_clear() num_mws kernel-doc Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 6.1 428/885] hwtracing: hisi_ptt: Only add the supported devices to the filters list Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 6.1 429/885] tty: serial: fsl_lpuart: disable Rx/Tx DMA in lpuart32_shutdown() Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 6.1 430/885] tty: serial: fsl_lpuart: clear LPUART Status Register " Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 6.1 431/885] tty: serial: qcom-geni-serial: stop operations in progress at shutdown Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 6.1 432/885] serial: tegra: Add missing clk_disable_unprepare() in tegra_uart_hw_init() Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 6.1 433/885] Revert "char: pcmcia: cm4000_cs: Replace mdelay with usleep_range in set_protocol" Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 6.1 434/885] eeprom: idt_89hpesx: Fix error handling in idt_init() Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 6.1 435/885] applicom: Fix PCI device refcount leak in applicom_init() Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 6.1 436/885] firmware: stratix10-svc: add missing gen_pool_destroy() in stratix10_svc_drv_probe() Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 6.1 437/885] firmware: stratix10-svc: fix error handle while alloc/add device failed Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 6.1 438/885] VMCI: check context->notify_page after call to get_user_pages_fast() to avoid GPF Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 6.1 439/885] mei: pxp: Use correct macros to initialize uuid_le Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 6.1 440/885] misc/mei/hdcp: " Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 6.1 441/885] misc: fastrpc: Fix an error handling path in fastrpc_rpmsg_probe() Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 6.1 442/885] driver core: fix resource leak in device_add() Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 6.1 443/885] driver core: location: Free struct acpi_pld_info *pld before return false Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 6.1 444/885] drivers: base: transport_class: fix possible memory leak Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 6.1 445/885] drivers: base: transport_class: fix resource leak when transport_add_device() fails Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 6.1 446/885] firmware: dmi-sysfs: Fix null-ptr-deref in dmi_sysfs_register_handle Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 6.1 447/885] fotg210-udc: Add missing completion handler Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 6.1 448/885] dmaengine: dw-edma: Fix missing src/dst address of interleaved xfers Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 6.1 449/885] fpga: microchip-spi: move SPI I/O buffers out of stack Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 6.1 450/885] fpga: microchip-spi: rewrite status polling in a time measurable way Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 6.1 451/885] usb: early: xhci-dbc: Fix a potential out-of-bound memory access Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 6.1 452/885] tty: serial: fsl_lpuart: Fix the wrong RXWATER setting for rx dma case Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 6.1 453/885] RDMA/cxgb4: add null-ptr-check after ip_dev_find() Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 6.1 454/885] usb: musb: mediatek: dont unregister something that wasnt registered Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 6.1 455/885] usb: gadget: configfs: Restrict symlink creation is UDC already binded Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 6.1 456/885] phy: mediatek: remove temporary variable @mask_ Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 6.1 457/885] PCI: mt7621: Delay phy ports initialization Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 6.1 458/885] iommu: dart: Add suspend/resume support Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 6.1 459/885] iommu: dart: Support >64 stream IDs Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 6.1 460/885] iommu/dart: Fix apple_dart_device_group for PCI groups Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 6.1 461/885] iommu/vt-d: Set No Execute Enable bit in PASID table entry Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 6.1 462/885] power: supply: remove faulty cooling logic Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 6.1 463/885] RDMA/cxgb4: Fix potential null-ptr-deref in pass_establish() Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 6.1 464/885] usb: max-3421: Fix setting of I/O pins Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 6.1 465/885] RDMA/irdma: Cap MSIX used to online CPUs + 1 Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 6.1 466/885] serial: fsl_lpuart: fix RS485 RTS polariy inverse issue Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 6.1 467/885] tty: serial: imx: Handle RS485 DE signal active high Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 6.1 468/885] tty: serial: imx: disable Ageing Timer interrupt request irq Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 6.1 469/885] driver core: fw_devlink: Add DL_FLAG_CYCLE support to device links Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 6.1 470/885] driver core: fw_devlink: Dont purge child fwnodes consumer links Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 6.1 471/885] driver core: fw_devlink: Allow marking a fwnode link as being part of a cycle Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 6.1 472/885] driver core: fw_devlink: Consolidate device link flag computation Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 6.1 473/885] driver core: fw_devlink: Improve check for fwnode with no device/driver Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 6.1 474/885] driver core: fw_devlink: Make cycle detection more robust Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 6.1 475/885] mtd: mtdpart: Dont create platform device thatll never probe Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 6.1 476/885] usb: host: fsl-mph-dr-of: reuse device_set_of_node_from_dev Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 6.1 477/885] dmaengine: dw-edma: Fix readq_ch() return value truncation Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 6.1 478/885] PCI: Fix dropping valid root bus resources with .end = zero Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 6.1 479/885] phy: rockchip-typec: fix tcphy_get_mode error case Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 6.1 480/885] PCI: qcom: Fix host-init error handling Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 6.1 481/885] iw_cxgb4: Fix potential NULL dereference in c4iw_fill_res_cm_id_entry() Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 6.1 482/885] iommu: Fix error unwind in iommu_group_alloc() Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 6.1 483/885] iommu/amd: Do not identity map v2 capable device when snp is enabled Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 6.1 484/885] dmaengine: sf-pdma: pdma_desc memory leak fix Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 6.1 485/885] dmaengine: dw-axi-dmac: Do not dereference NULL structure Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 6.1 486/885] dmaengine: ptdma: check for null desc before calling pt_cmd_callback Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 6.1 487/885] iommu/vt-d: Fix error handling in sva enable/disable paths Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 6.1 488/885] iommu/vt-d: Allow to use flush-queue when first level is default Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 6.1 489/885] RDMA/rxe: cleanup some error handling in rxe_verbs.c Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 6.1 490/885] RDMA/rxe: Fix missing memory barriers in rxe_queue.h Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 6.1 491/885] IB/hfi1: Fix math bugs in hfi1_can_pin_pages() Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 6.1 492/885] IB/hfi1: Fix sdma.h tx->num_descs off-by-one errors Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 6.1 493/885] Revert "remoteproc: qcom_q6v5_mss: map/unmap metadata region before/after use" Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 6.1 494/885] remoteproc: qcom_q6v5_mss: Use a carveout to authenticate modem headers Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 6.1 495/885] media: ti: cal: fix possible memory leak in cal_ctx_create() Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 6.1 496/885] media: platform: ti: Add missing check for devm_regulator_get Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 6.1 497/885] media: imx: imx7-media-csi: fix missing clk_disable_unprepare() in imx7_csi_init() Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 6.1 498/885] powerpc: Remove linker flag from KBUILD_AFLAGS Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 6.1 499/885] s390/vdso: Drop -shared from KBUILD_CFLAGS_64 Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 6.1 500/885] builddeb: clean generated package content Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 6.1 501/885] media: max9286: Fix memleak in max9286_v4l2_register() Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 6.1 502/885] media: ov2740: Fix memleak in ov2740_init_controls() Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 6.1 503/885] media: ov5675: Fix memleak in ov5675_init_controls() Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 6.1 504/885] media: ov5640: Fix soft reset sequence and timings Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 6.1 505/885] media: ov5640: Handle delays when no reset_gpio set Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 6.1 506/885] media: mc: Get media_device directly from pad Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 6.1 507/885] media: i2c: ov772x: Fix memleak in ov772x_probe() Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 6.1 508/885] media: i2c: imx219: Split common registers from mode tables Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 6.1 509/885] media: i2c: imx219: Fix binning for RAW8 capture Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 6.1 510/885] media: platform: mtk-mdp3: Fix return value check in mdp_probe() Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 6.1 511/885] media: camss: csiphy-3ph: avoid undefined behavior Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 6.1 512/885] media: platform: mtk-mdp3: remove unused VIDEO_MEDIATEK_VPU config Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 6.1 513/885] media: platform: mtk-mdp3: fix Kconfig dependencies Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 6.1 514/885] media: v4l2-jpeg: correct the skip count in jpeg_parse_app14_data Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 6.1 515/885] media: v4l2-jpeg: ignore the unknown APP14 marker Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 6.1 516/885] media: hantro: Fix JPEG encoder ENUM_FRMSIZE on RK3399 Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 6.1 517/885] media: imx-jpeg: Apply clk_bulk api instead of operating specific clk Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 6.1 518/885] media: amphion: correct the unspecified color space Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 6.1 519/885] media: drivers/media/v4l2-core/v4l2-h264 : add detection of null pointers Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 6.1 520/885] media: rc: Fix use-after-free bugs caused by ene_tx_irqsim() Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 6.1 521/885] media: atomisp: Only set default_run_mode on first open of a stream/asd Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 6.1 522/885] media: i2c: ov7670: 0 instead of -EINVAL was returned Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 6.1 523/885] media: usb: siano: Fix use after free bugs caused by do_submit_urb Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 6.1 524/885] media: saa7134: Use video_unregister_device for radio_dev Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 6.1 525/885] rpmsg: glink: Avoid infinite loop on intent for missing channel Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 6.1 526/885] rpmsg: glink: Release driver_override Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 6.1 527/885] ARM: OMAP2+: omap4-common: Fix refcount leak bug Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 6.1 528/885] arm64: dts: qcom: msm8996: Add additional A2NoC clocks Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 6.1 529/885] udf: Define EFSCORRUPTED error code Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 6.1 530/885] context_tracking: Fix noinstr vs KASAN Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 6.1 531/885] exit: Detect and fix irq disabled state in oops Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 6.1 532/885] ARM: dts: exynos: Use Exynos5420 compatible for the MIPI video phy Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 6.1 533/885] fs: Use CHECK_DATA_CORRUPTION() when kernel bugs are detected Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 6.1 534/885] blk-iocost: fix divide by 0 error in calc_lcoefs() Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 6.1 535/885] blk-cgroup: dropping parent refcount after pd_free_fn() is done Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 6.1 536/885] blk-cgroup: synchronize pd_free_fn() from blkg_free_workfn() and blkcg_deactivate_policy() Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 6.1 537/885] trace/blktrace: fix memory leak with using debugfs_lookup() Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 6.1 538/885] btrfs: scrub: improve tree block error reporting Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 6.1 539/885] arm64: zynqmp: Enable hs termination flag for USB dwc3 controller Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 6.1 540/885] cpuidle, intel_idle: Fix CPUIDLE_FLAG_INIT_XSTATE Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 6.1 541/885] x86/fpu: Dont set TIF_NEED_FPU_LOAD for PF_IO_WORKER threads Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 6.1 542/885] cpuidle: drivers: firmware: psci: Dont instrument suspend code Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 6.1 543/885] cpuidle: lib/bug: Disable rcu_is_watching() during WARN/BUG Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 6.1 544/885] perf/x86/intel/uncore: Add Meteor Lake support Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 6.1 545/885] wifi: ath9k: Fix use-after-free in ath9k_hif_usb_disconnect() Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 6.1 546/885] wifi: ath11k: fix monitor mode bringup crash Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 6.1 547/885] wifi: brcmfmac: Fix potential stack-out-of-bounds in brcmf_c_preinit_dcmds() Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 6.1 548/885] rcu: Make RCU_LOCKDEP_WARN() avoid early lockdep checks Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 6.1 549/885] rcu: Suppress smp_processor_id() complaint in synchronize_rcu_expedited_wait() Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 6.1 550/885] srcu: Delegate work to the boot cpu if using SRCU_SIZE_SMALL Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 6.1 551/885] rcu-tasks: Make rude RCU-Tasks work well with CPU hotplug Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 6.1 552/885] rcu-tasks: Handle queue-shrink/callback-enqueue race condition Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 6.1 553/885] wifi: ath11k: debugfs: fix to work with multiple PCI devices Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 6.1 554/885] thermal: intel: Fix unsigned comparison with less than zero Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 6.1 555/885] timers: Prevent union confusion from unexpected restart_syscall() Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 6.1 556/885] x86/bugs: Reset speculation control settings on init Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 6.1 557/885] bpftool: Always disable stack protection for BPF objects Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 6.1 558/885] wifi: brcmfmac: ensure CLM version is null-terminated to prevent stack-out-of-bounds Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 6.1 559/885] wifi: mt7601u: fix an integer underflow Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 6.1 560/885] inet: fix fast path in __inet_hash_connect() Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 6.1 561/885] ice: restrict PTP HW clock freq adjustments to 100, 000, 000 PPB Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 6.1 562/885] ice: add missing checks for PF vsi type Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 6.1 563/885] ACPI: Dont build ACPICA with -Os Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 6.1 564/885] bpf, docs: Fix modulo zero, division by zero, overflow, and underflow Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 6.1 565/885] thermal: intel: intel_pch: Add support for Wellsburg PCH Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 6.1 566/885] clocksource: Suspend the watchdog temporarily when high read latency detected Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 6.1 567/885] crypto: hisilicon: Wipe entire pool on error Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 6.1 568/885] net: bcmgenet: Add a check for oversized packets Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 6.1 569/885] m68k: Check syscall_trace_enter() return code Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 6.1 570/885] s390/mm,ptdump: avoid Kasan vs Memcpy Real markers swapping Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 6.1 571/885] netfilter: nf_tables: NULL pointer dereference in nf_tables_updobj() Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 6.1 572/885] can: isotp: check CAN address family in isotp_bind() Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 6.1 573/885] gcc-plugins: drop -std=gnu++11 to fix GCC 13 build Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 6.1 574/885] tools/power/x86/intel-speed-select: Add Emerald Rapid quirk Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 6.1 575/885] wifi: mt76: dma: free rx_head in mt76_dma_rx_cleanup Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 6.1 576/885] ACPI: video: Fix Lenovo Ideapad Z570 DMI match Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 6.1 577/885] net/mlx5: fw_tracer: Fix debug print Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 6.1 578/885] coda: Avoid partial allocation of sig_inputArgs Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 6.1 579/885] uaccess: Add minimum bounds check on kernel buffer size Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 6.1 580/885] s390/idle: mark arch_cpu_idle() noinstr Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 6.1 581/885] time/debug: Fix memory leak with using debugfs_lookup() Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 6.1 582/885] PM: domains: fix " Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 6.1 583/885] PM: EM: " Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 6.1 584/885] Bluetooth: Fix issue with Actions Semi ATS2851 based devices Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 6.1 585/885] Bluetooth: btusb: Add new PID/VID 0489:e0f2 for MT7921 Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 6.1 586/885] Bluetooth: btusb: Add VID:PID 13d3:3529 for Realtek RTL8821CE Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 6.1 587/885] wifi: rtw89: debug: avoid invalid access on RTW89_DBG_SEL_MAC_30 Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 6.1 588/885] hv_netvsc: Check status in SEND_RNDIS_PKT completion message Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 6.1 589/885] s390/kfence: fix page fault reporting Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 6.1 590/885] devlink: Fix TP_STRUCT_entry in trace of devlink health report Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 6.1 591/885] scm: add user copy checks to put_cmsg() Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 6.1 592/885] drm: panel-orientation-quirks: Add quirk for Lenovo Yoga Tab 3 X90F Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 6.1 593/885] drm: panel-orientation-quirks: Add quirk for DynaBook K50 Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 6.1 594/885] drm/amd/display: Reduce expected sdp bandwidth for dcn321 Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 6.1 595/885] drm/amd/display: Revert Reduce delay when sink device not able to ACK 00340h write Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 6.1 596/885] drm/amd/display: Fix potential null-deref in dm_resume Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 6.1 597/885] drm/omap: dsi: Fix excessive stack usage Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 6.1 598/885] HID: Add Mapping for System Microphone Mute Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 6.1 599/885] drm/tiny: ili9486: Do not assume 8-bit only SPI controllers Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 6.1 600/885] drm/amd/display: Defer DIG FIFO disable after VID stream enable Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 6.1 601/885] drm/radeon: free iio for atombios when driver shutdown Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 6.1 602/885] drm/amd: Avoid BUG() for case of SRIOV missing IP version Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 6.1 603/885] drm/amdkfd: Page aligned memory reserve size Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 6.1 604/885] scsi: lpfc: Fix use-after-free KFENCE violation during sysfs firmware write Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 6.1 605/885] Revert "fbcon: dont lose the console font across generic->chip driver switch" Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 6.1 606/885] drm/amd: Avoid ASSERT for some message failures Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 6.1 607/885] drm: amd: display: Fix memory leakage Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 6.1 608/885] drm/amd/display: fix mapping to non-allocated address Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 6.1 609/885] HID: uclogic: Add frame type quirk Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 6.1 610/885] HID: uclogic: Add battery quirk Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 6.1 611/885] HID: uclogic: Add support for XP-PEN Deco Pro SW Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 6.1 612/885] HID: uclogic: Add support for XP-PEN Deco Pro MW Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 6.1 613/885] drm/msm/dsi: Add missing check for alloc_ordered_workqueue Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 6.1 614/885] drm: rcar-du: Add quirk for H3 ES1.x pclk workaround Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 6.1 615/885] drm: rcar-du: Fix setting a reserved bit in DPLLCR Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 6.1 616/885] drm/drm_print: correct format problem Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 6.1 617/885] drm/amd/display: Set hvm_enabled flag for S/G mode Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 6.1 618/885] habanalabs: extend fatal messages to contain PCI info Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 6.1 619/885] habanalabs: fix bug in timestamps registration code Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 6.1 620/885] docs/scripts/gdb: add necessary make scripts_gdb step Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 6.1 621/885] drm/msm/dpu: Add DSC hardware blocks to register snapshot Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 6.1 622/885] ASoC: soc-compress: Reposition and add pcm_mutex Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 6.1 623/885] ASoC: kirkwood: Iterate over array indexes instead of using pointer math Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 6.1 624/885] regulator: max77802: Bounds check regulator id against opmode Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 6.1 625/885] regulator: s5m8767: Bounds check id indexing into arrays Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 6.1 626/885] Revert "drm/amdgpu: TA unload messages are not actually sent to psp when amdgpu is uninstalled" Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 6.1 627/885] drm/amd/display: fix FCLK pstate change underflow Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 6.1 628/885] gfs2: Improve gfs2_make_fs_rw error handling Greg Kroah-Hartman
2023-03-07 16:59 ` Greg Kroah-Hartman [this message]
2023-03-07 16:59 ` [PATCH 6.1 630/885] hwmon: (nct6775) Directly call ASUS ACPI WMI method Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 6.1 631/885] hwmon: (nct6775) B650/B660/X670 ASUS boards support Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 6.1 632/885] pinctrl: at91: use devm_kasprintf() to avoid potential leaks Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 6.1 633/885] drm/amd/display: Do not commit pipe when updating DRR Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 6.1 634/885] scsi: snic: Fix memory leak with using debugfs_lookup() Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 6.1 635/885] scsi: ufs: core: Fix device management cmd timeout flow Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 6.1 636/885] HID: logitech-hidpp: Dont restart communication if not necessary Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 6.1 637/885] drm/amd/display: Enable P-state validation checks for DCN314 Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 6.1 638/885] drm: panel-orientation-quirks: Add quirk for Lenovo IdeaPad Duet 3 10IGL5 Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 6.1 639/885] drm/amd/display: Disable HUBP/DPP PG on DCN314 for now Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 6.1 640/885] dm thin: add cond_resched() to various workqueue loops Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 6.1 641/885] dm cache: " Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 6.1 642/885] nfsd: zero out pointers after putting nfsd_files on COPY setup error Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 6.1 643/885] nfsd: dont hand out delegation on setuid files being opened for write Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 6.1 644/885] cifs: prevent data race in smb2_reconnect() Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 6.1 645/885] drm/shmem-helper: Revert accidental non-GPL export Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 6.1 646/885] driver core: fw_devlink: Avoid spurious error message Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 6.1 647/885] wifi: rtl8xxxu: fixing transmisison failure for rtl8192eu Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 6.1 648/885] scsi: mpt3sas: Remove usage of dma_get_required_mask() API Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 6.1 649/885] firmware: coreboot: framebuffer: Ignore reserved pixel color bits Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 6.1 650/885] block: dont allow multiple bios for IOCB_NOWAIT issue Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 6.1 651/885] block: clear bio->bi_bdev when putting a bio back in the cache Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 6.1 652/885] block: be a bit more careful in checking for NULL bdev while polling Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 6.1 653/885] rtc: pm8xxx: fix set-alarm race Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 6.1 654/885] ipmi: ipmb: Fix the MODULE_PARM_DESC associated to retry_time_ms Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 6.1 655/885] ipmi:ssif: resend_msg() cannot fail Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 6.1 656/885] ipmi_ssif: Rename idle state and check Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 6.1 657/885] io_uring: Replace 0-length array with flexible array Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 6.1 658/885] io_uring: use user visible tail in io_uring_poll() Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 6.1 659/885] io_uring: handle TIF_NOTIFY_RESUME when checking for task_work Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 6.1 660/885] io_uring: add a conditional reschedule to the IOPOLL cancelation loop Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 6.1 661/885] io_uring: add reschedule point to handle_tw_list() Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 6.1 662/885] io_uring/rsrc: disallow multi-source reg buffers Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 6.1 663/885] io_uring: remove MSG_NOSIGNAL from recvmsg Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 6.1 664/885] io_uring: fix fget leak when fs dont support nowait buffered read Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 6.1 665/885] s390/extmem: return correct segment type in __segment_load() Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 6.1 666/885] s390: discard .interp section Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 6.1 667/885] s390/kprobes: fix irq mask clobbering on kprobe reenter from post_handler Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 6.1 668/885] s390/kprobes: fix current_kprobe never cleared after kprobes reenter Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 6.1 669/885] KVM: s390: disable migration mode when dirty tracking is disabled Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 6.1 670/885] cifs: Fix uninitialized memory read in smb3_qfs_tcon() Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 6.1 671/885] cifs: Fix uninitialized memory reads for oparms.mode Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 6.1 672/885] cifs: fix mount on old smb servers Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 6.1 673/885] cifs: introduce cifs_io_parms in smb2_async_writev() Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 6.1 674/885] cifs: split out smb3_use_rdma_offload() helper Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 6.1 675/885] cifs: dont try to use rdma offload on encrypted connections Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 6.1 676/885] cifs: Check the lease context if we actually got a lease Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 6.1 677/885] cifs: return a single-use cfid if we did not get " Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 6.1 678/885] scsi: mpi3mr: Fix missing mrioc->evtack_cmds initialization Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 6.1 679/885] scsi: mpi3mr: Fix issues in mpi3mr_get_all_tgt_info() Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 6.1 680/885] scsi: mpi3mr: Remove unnecessary memcpy() to alltgt_info->dmi Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 6.1 681/885] btrfs: hold block group refcount during async discard Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 6.1 682/885] locking/rwsem: Prevent non-first waiter from spinning in down_write() slowpath Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 6.1 683/885] ksmbd: fix wrong data area length for smb2 lock request Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 6.1 684/885] ksmbd: do not allow the actual frame length to be smaller than the rfc1002 length Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 6.1 685/885] ksmbd: fix possible memory leak in smb2_lock() Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 6.1 686/885] torture: Fix hang during kthread shutdown phase Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 6.1 687/885] ARM: dts: exynos: correct HDMI phy compatible in Exynos4 Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 6.1 688/885] io_uring: mark task TASK_RUNNING before handling resume/task work Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 6.1 689/885] hfs: fix missing hfs_bnode_get() in __hfs_bnode_create Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 6.1 690/885] fs: hfsplus: fix UAF issue in hfsplus_put_super Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 6.1 691/885] exfat: fix reporting fs error when reading dir beyond EOF Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 6.1 692/885] exfat: fix unexpected EOF while reading dir Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 6.1 693/885] exfat: redefine DIR_DELETED as the bad cluster number Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 6.1 694/885] exfat: fix inode->i_blocks for non-512 byte sector size device Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 6.1 695/885] fs: dlm: dont set stop rx flag after node reset Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 6.1 696/885] fs: dlm: move sending fin message into state change handling Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 6.1 697/885] fs: dlm: send FIN ack back in right cases Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 6.1 698/885] f2fs: fix information leak in f2fs_move_inline_dirents() Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 6.1 699/885] f2fs: retry to update the inode page given data corruption Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 6.1 700/885] f2fs: fix cgroup writeback accounting with fs-layer encryption Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 6.1 701/885] f2fs: fix kernel crash due to null io->bio Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 6.1 702/885] ocfs2: fix defrag path triggering jbd2 ASSERT Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 6.1 703/885] ocfs2: fix non-auto defrag path not working issue Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 6.1 704/885] fs/cramfs/inode.c: initialize file_ra_state Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 6.1 705/885] selftests/landlock: Skip overlayfs tests when not supported Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 6.1 706/885] selftests/landlock: Test ptrace as much as possible with Yama Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 6.1 707/885] udf: Truncate added extents on failed expansion Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 6.1 708/885] udf: Do not bother merging very long extents Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 6.1 709/885] udf: Do not update file length for failed writes to inline files Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 6.1 710/885] udf: Preserve link count of system files Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 6.1 711/885] udf: Detect system inodes linked into directory hierarchy Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 6.1 712/885] udf: Fix file corruption when appending just after end of preallocated extent Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 6.1 713/885] md: dont update recovery_cp when curr_resync is ACTIVE Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 6.1 714/885] RDMA/siw: Fix user page pinning accounting Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 6.1 715/885] KVM: Destroy target device if coalesced MMIO unregistration fails Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 6.1 716/885] KVM: VMX: Fix crash due to uninitialized current_vmcs Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 6.1 717/885] KVM: Register /dev/kvm as the _very_ last thing during initialization Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 6.1 718/885] KVM: x86: Purge "highest ISR" cache when updating APICv state Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 6.1 719/885] KVM: x86: Blindly get current x2APIC reg value on "nodecode write" traps Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 6.1 720/885] KVM: x86: Dont inhibit APICv/AVIC on xAPIC ID "change" if APIC is disabled Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 6.1 721/885] 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.1 722/885] KVM: SVM: Flush the "current" TLB when activating AVIC Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 6.1 723/885] KVM: SVM: Process ICR on AVIC IPI delivery failure due to invalid target Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 6.1 724/885] KVM: SVM: Dont put/load AVIC when setting virtual APIC mode Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 6.1 725/885] KVM: x86: Inject #GP if WRMSR sets reserved bits in APIC Self-IPI Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 6.1 726/885] KVM: x86: Inject #GP on x2APIC WRMSR that sets reserved bits 63:32 Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 6.1 727/885] KVM: SVM: Fix potential overflow in SEVs send|receive_update_data() Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 6.1 728/885] KVM: SVM: hyper-v: placate modpost section mismatch error Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 6.1 729/885] selftests: x86: Fix incorrect kernel headers search path Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 6.1 730/885] x86/virt: Force GIF=1 prior to disabling SVM (for reboot flows) Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 6.1 731/885] x86/crash: Disable virt in core NMI crash handler to avoid double shootdown Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 6.1 732/885] x86/reboot: Disable virtualization in an emergency if SVM is supported Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 6.1 733/885] x86/reboot: Disable SVM, not just VMX, when stopping CPUs Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 6.1 734/885] x86/kprobes: Fix __recover_optprobed_insn check optimizing logic Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 6.1 735/885] x86/kprobes: Fix arch_check_optimized_kprobe check within optimized_kprobe range Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 6.1 736/885] x86/microcode/amd: Remove load_microcode_amd()s bsp parameter Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 6.1 737/885] x86/microcode/AMD: Add a @cpu parameter to the reloading functions Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 6.1 738/885] x86/microcode/AMD: Fix mixed steppings support Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 6.1 739/885] x86/speculation: Allow enabling STIBP with legacy IBRS Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 6.1 740/885] Documentation/hw-vuln: Document the interaction between IBRS and STIBP Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 6.1 741/885] virt/sev-guest: Return -EIO if certificate buffer is not large enough Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 6.1 742/885] brd: mark as nowait compatible Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 6.1 743/885] brd: return 0/-error from brd_insert_page() Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 6.1 744/885] brd: check for REQ_NOWAIT and set correct page allocation mask Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 6.1 745/885] ima: fix error handling logic when file measurement failed Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 6.1 746/885] ima: Align ima_file_mmap() parameters with mmap_file LSM hook Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 6.1 747/885] powerpc/boot: Dont always pass -mcpu=powerpc when building 32-bit uImage Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 6.1 748/885] selftests/powerpc: Fix incorrect kernel headers search path Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 6.1 749/885] selftests/ftrace: Fix eprobe syntax test case to check filter support Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 6.1 750/885] selftests: sched: Fix incorrect kernel headers search path Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 6.1 751/885] selftests: core: " Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 6.1 752/885] selftests: pid_namespace: " Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 6.1 753/885] selftests: arm64: " Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 6.1 754/885] selftests: clone3: " Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 6.1 755/885] selftests: pidfd: " Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 6.1 756/885] selftests: membarrier: " Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 6.1 757/885] selftests: kcmp: " Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 6.1 758/885] selftests: media_tests: " Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 6.1 759/885] selftests: gpio: " Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 6.1 760/885] selftests: filesystems: " Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 6.1 761/885] selftests: user_events: " Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 6.1 762/885] selftests: ptp: " Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 6.1 763/885] selftests: sync: " Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 6.1 764/885] selftests: rseq: " Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 6.1 765/885] selftests: move_mount_set_group: " Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 6.1 766/885] selftests: mount_setattr: " Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 6.1 767/885] selftests: perf_events: " Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 6.1 768/885] selftests: ipc: " Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 6.1 769/885] selftests: futex: " Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 6.1 770/885] selftests: drivers: " Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 6.1 771/885] selftests: dmabuf-heaps: " Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 6.1 772/885] selftests: vm: " Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 6.1 773/885] selftests: seccomp: " Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 6.1 774/885] irqdomain: Fix association race Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 6.1 775/885] irqdomain: Fix disassociation race Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 6.1 776/885] irqdomain: Look for existing mapping only once Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 6.1 777/885] irqdomain: Drop bogus fwspec-mapping error handling Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 6.1 778/885] irqdomain: Refactor __irq_domain_alloc_irqs() Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 6.1 779/885] irqdomain: Fix mapping-creation race Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 6.1 780/885] irqdomain: Fix domain registration race Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 6.1 781/885] crypto: qat - fix out-of-bounds read Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 6.1 782/885] mm/damon/paddr: fix missing folio_put() Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 6.1 783/885] ALSA: ice1712: Do not left ice->gpio_mutex locked in aureon_add_controls() Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 6.1 784/885] ALSA: hda/realtek: Add quirk for HP EliteDesk 800 G6 Tower PC Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 6.1 785/885] jbd2: fix data missing when reusing bh which is ready to be checkpointed Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 6.1 786/885] ext4: optimize ea_inode block expansion Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 6.1 787/885] ext4: refuse to create ea block when umounted Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 6.1 788/885] ext4: Fix possible corruption when moving a directory Greg Kroah-Hartman
2023-03-07 19:23   ` Eric Biggers
2023-03-08  7:17     ` Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 6.1 789/885] cxl/pmem: Fix nvdimm registration races Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 6.1 790/885] mtd: spi-nor: sfdp: Fix index value for SCCR dwords Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 6.1 791/885] mtd: spi-nor: spansion: Consider reserved bits in CFR5 register Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 6.1 792/885] mtd: spi-nor: Fix shift-out-of-bounds in spi_nor_set_erase_type Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 6.1 793/885] dm: send just one event on resize, not two Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 6.1 794/885] dm: add cond_resched() to dm_wq_work() Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 6.1 795/885] dm: add cond_resched() to dm_wq_requeue_work() Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 6.1 796/885] wifi: rtw88: use RTW_FLAG_POWERON flag to prevent to power on/off twice Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 6.1 797/885] wifi: rtl8xxxu: Use a longer retry limit of 48 Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 6.1 798/885] wifi: ath11k: allow system suspend to survive ath11k Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 6.1 799/885] wifi: cfg80211: Fix use after free for wext Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 6.1 800/885] wifi: cfg80211: Set SSID if it is not already set Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 6.1 801/885] cpuidle: add ARCH_SUSPEND_POSSIBLE dependencies Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 6.1 802/885] qede: fix interrupt coalescing configuration Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 6.1 803/885] thermal: intel: powerclamp: Fix cur_state for multi package system Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 6.1 804/885] dm flakey: fix logic when corrupting a bio Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 6.1 805/885] dm cache: free background trackers queued work in btracker_destroy Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 6.1 806/885] dm flakey: dont corrupt the zero page Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 6.1 807/885] dm flakey: fix a bug with 32-bit highmem systems Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 6.1 808/885] hwmon: (peci/cputemp) Fix off-by-one in coretemp_label allocation Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 6.1 809/885] hwmon: (nct6775) Fix incorrect parenthesization in nct6775_write_fan_div() Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 6.1 810/885] ARM: dts: qcom: sdx65: Add Qcom SMMU-500 as the fallback for IOMMU node Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 6.1 811/885] ARM: dts: qcom: sdx55: " Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 6.1 812/885] ARM: dts: exynos: correct TMU phandle in Exynos4210 Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 6.1 813/885] ARM: dts: exynos: correct TMU phandle in Exynos4 Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 6.1 814/885] ARM: dts: exynos: correct TMU phandle in Odroid XU3 family Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 6.1 815/885] ARM: dts: exynos: correct TMU phandle in Exynos5250 Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 6.1 816/885] ARM: dts: exynos: correct TMU phandle in Odroid XU Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 6.1 817/885] ARM: dts: exynos: correct TMU phandle in Odroid HC1 Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 6.1 818/885] arm64: mm: hugetlb: Disable HUGETLB_PAGE_OPTIMIZE_VMEMMAP Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 6.1 819/885] fuse: add inode/permission checks to fileattr_get/fileattr_set Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 6.1 820/885] rbd: avoid use-after-free in do_rbd_add() when rbd_dev_create() fails Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 6.1 821/885] ceph: update the time stamps and try to drop the suid/sgid Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 6.1 822/885] regulator: core: Use ktime_get_boottime() to determine how long a regulator was off Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 6.1 823/885] panic: fix the panic_print NMI backtrace setting Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 6.1 824/885] mm/hwpoison: convert TTU_IGNORE_HWPOISON to TTU_HWPOISON Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 6.1 825/885] alpha: fix FEN fault handling Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 6.1 826/885] dax/kmem: Fix leak of memory-hotplug resources Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 6.1 827/885] mips: fix syscall_get_nr Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 6.1 828/885] media: ipu3-cio2: Fix PM runtime usage_count in driver unbind Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 6.1 829/885] remoteproc/mtk_scp: Move clk ops outside send_lock Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 6.1 830/885] docs: gdbmacros: print newest record Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 6.1 831/885] mm: memcontrol: deprecate charge moving Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 6.1 832/885] mm/thp: check and bail out if page in deferred queue already Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 6.1 833/885] ktest.pl: Give back console on Ctrt^C on monitor Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 6.1 834/885] kprobes: Fix to handle forcibly unoptimized kprobes on freeing_list Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 6.1 835/885] ktest.pl: Fix missing "end_monitor" when machine check fails Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 6.1 836/885] ktest.pl: Add RUN_TIMEOUT option with default unlimited Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 6.1 837/885] memory tier: release the new_memtier in find_create_memory_tier() Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 6.1 838/885] ring-buffer: Handle race between rb_move_tail and rb_check_pages Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 6.1 839/885] tools/bootconfig: fix single & used for logical condition Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 6.1 840/885] tracing/eprobe: Fix to add filter on eprobe description in README file Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 6.1 841/885] iommu/amd: Add a length limitation for the ivrs_acpihid command-line parameter Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 6.1 842/885] iommu/amd: Improve page fault error reporting Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 6.1 843/885] scsi: aacraid: Allocate cmd_priv with scsicmd Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 6.1 844/885] scsi: core: Remove the /proc/scsi/${proc_name} directory earlier Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 6.1 845/885] scsi: qla2xxx: Fix link failure in NPIV environment Greg Kroah-Hartman
2023-03-07 17:03 ` [PATCH 6.1 846/885] scsi: qla2xxx: Check if port is online before sending ELS Greg Kroah-Hartman
2023-03-07 17:03 ` [PATCH 6.1 847/885] scsi: qla2xxx: Fix DMA-API call trace on NVMe LS requests Greg Kroah-Hartman
2023-03-07 17:03 ` [PATCH 6.1 848/885] scsi: qla2xxx: Remove unintended flag clearing Greg Kroah-Hartman
2023-03-07 17:03 ` [PATCH 6.1 849/885] scsi: qla2xxx: Fix erroneous link down Greg Kroah-Hartman
2023-03-07 17:03 ` [PATCH 6.1 850/885] scsi: qla2xxx: Remove increment of interface err cnt Greg Kroah-Hartman
2023-03-07 17:03 ` [PATCH 6.1 851/885] scsi: ses: Dont attach if enclosure has no components Greg Kroah-Hartman
2023-03-07 17:03 ` [PATCH 6.1 852/885] scsi: ses: Fix slab-out-of-bounds in ses_enclosure_data_process() Greg Kroah-Hartman
2023-03-07 17:03 ` [PATCH 6.1 853/885] scsi: ses: Fix possible addl_desc_ptr out-of-bounds accesses Greg Kroah-Hartman
2023-03-07 17:03 ` [PATCH 6.1 854/885] scsi: ses: Fix possible desc_ptr " Greg Kroah-Hartman
2023-03-07 17:03 ` [PATCH 6.1 855/885] scsi: ses: Fix slab-out-of-bounds in ses_intf_remove() Greg Kroah-Hartman
2023-03-07 17:03 ` [PATCH 6.1 856/885] RISC-V: add a spin_shadow_stack declaration Greg Kroah-Hartman
2023-03-07 17:03 ` [PATCH 6.1 857/885] riscv: Avoid enabling interrupts in die() Greg Kroah-Hartman
2023-03-07 17:03 ` [PATCH 6.1 858/885] riscv: mm: fix regression due to update_mmu_cache change Greg Kroah-Hartman
2023-03-07 17:03 ` [PATCH 6.1 859/885] riscv: jump_label: Fixup unaligned arch_static_branch function Greg Kroah-Hartman
2023-03-07 17:03 ` [PATCH 6.1 860/885] riscv, mm: Perform BPF exhandler fixup on page fault Greg Kroah-Hartman
2023-03-07 17:03 ` [PATCH 6.1 861/885] riscv: ftrace: Remove wasted nops for !RISCV_ISA_C Greg Kroah-Hartman
2023-03-07 17:03 ` [PATCH 6.1 862/885] riscv: ftrace: Reduce the detour code size to half Greg Kroah-Hartman
2023-03-07 17:03 ` [PATCH 6.1 863/885] MIPS: DTS: CI20: fix otg power gpio Greg Kroah-Hartman
2023-03-07 17:03 ` [PATCH 6.1 864/885] PCI/PM: Observe reset delay irrespective of bridge_d3 Greg Kroah-Hartman
2023-03-07 17:03 ` [PATCH 6.1 865/885] PCI: Unify delay handling for reset and resume Greg Kroah-Hartman
2023-03-07 17:03 ` [PATCH 6.1 866/885] PCI: hotplug: Allow marking devices as disconnected during bind/unbind Greg Kroah-Hartman
2023-03-07 17:03 ` [PATCH 6.1 867/885] PCI: Avoid FLR for AMD FCH AHCI adapters Greg Kroah-Hartman
2023-03-07 17:03 ` [PATCH 6.1 868/885] PCI/DPC: Await readiness of secondary bus after reset Greg Kroah-Hartman
2023-03-07 17:03 ` [PATCH 6.1 869/885] bus: mhi: ep: Only send -ENOTCONN status if client driver is available Greg Kroah-Hartman
2023-03-07 17:03 ` [PATCH 6.1 870/885] bus: mhi: ep: Move chan->lock to the start of processing queued ch ring Greg Kroah-Hartman
2023-03-07 17:03 ` [PATCH 6.1 871/885] bus: mhi: ep: Save channel state locally during suspend and resume Greg Kroah-Hartman
2023-03-07 17:03 ` [PATCH 6.1 872/885] iommu/vt-d: Avoid superfluous IOTLB tracking in lazy mode Greg Kroah-Hartman
2023-03-07 17:03 ` [PATCH 6.1 873/885] iommu/vt-d: Fix PASID directory pointer coherency Greg Kroah-Hartman
2023-03-07 17:03 ` [PATCH 6.1 874/885] vfio/type1: exclude mdevs from VFIO_UPDATE_VADDR Greg Kroah-Hartman
2023-03-07 17:03 ` [PATCH 6.1 875/885] vfio/type1: prevent underflow of locked_vm via exec() Greg Kroah-Hartman
2023-03-07 17:03 ` [PATCH 6.1 876/885] vfio/type1: track locked_vm per dma Greg Kroah-Hartman
2023-03-07 17:03 ` [PATCH 6.1 877/885] vfio/type1: restore locked_vm Greg Kroah-Hartman
2023-03-07 17:03 ` [PATCH 6.1 878/885] drm/amd: Fix initialization for nbio 7.5.1 Greg Kroah-Hartman
2023-03-07 17:03 ` [PATCH 6.1 879/885] drm/i915/quirks: Add inverted backlight quirk for HP 14-r206nv Greg Kroah-Hartman
2023-03-07 17:03 ` [PATCH 6.1 880/885] drm/radeon: Fix eDP for single-display iMac11,2 Greg Kroah-Hartman
2023-03-07 17:03 ` [PATCH 6.1 881/885] drm/i915: Dont use stolen memory for ring buffers with LLC Greg Kroah-Hartman
2023-03-07 17:03 ` [PATCH 6.1 882/885] drm/i915: Dont use BAR mappings " Greg Kroah-Hartman
2023-03-07 17:03 ` [PATCH 6.1 883/885] drm/gud: Fix UBSAN warning Greg Kroah-Hartman
2023-03-07 17:03 ` [PATCH 6.1 884/885] drm/edid: fix AVI infoframe aspect ratio handling Greg Kroah-Hartman
2023-03-07 17:03 ` [PATCH 6.1 885/885] drm/edid: fix parsing of 3D modes from HDMI VSDB Greg Kroah-Hartman
2023-03-07 20:54 ` [PATCH 6.1 000/885] 6.1.16-rc1 review Conor Dooley
2023-03-08  4:20 ` Bagas Sanjaya
2023-03-08  4:29 ` Daniel Díaz

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=20230307170029.533668315@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=janusz.krzysztofik@linux.intel.com \
    --cc=linux@roeck-us.net \
    --cc=patches@lists.linux.dev \
    --cc=robin.murphy@arm.com \
    --cc=sashal@kernel.org \
    --cc=stable@vger.kernel.org \
    /path/to/YOUR_REPLY

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

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