public inbox for stable@vger.kernel.org
 help / color / mirror / Atom feed
From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: stable@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	patches@lists.linux.dev,
	Andy Shevchenko <andriy.shevchenko@linux.intel.com>,
	Mark Brown <broonie@kernel.org>, Sasha Levin <sashal@kernel.org>
Subject: [PATCH 5.15 283/484] spi: spidev: Replace ACPI specific code by device_get_match_data()
Date: Thu, 15 Aug 2024 15:22:21 +0200	[thread overview]
Message-ID: <20240815131952.339731275@linuxfoundation.org> (raw)
In-Reply-To: <20240815131941.255804951@linuxfoundation.org>

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

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

From: Andy Shevchenko <andriy.shevchenko@linux.intel.com>

[ Upstream commit 2a7f669dd8f6561d227e724ca2614c25732f4799 ]

Instead of calling the ACPI specific APIs, use device_get_match_data().

Signed-off-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
Link: https://lore.kernel.org/r/20220323140215.2568-3-andriy.shevchenko@linux.intel.com
Signed-off-by: Mark Brown <broonie@kernel.org>
Stable-dep-of: fc28d1c1fe3b ("spi: spidev: add correct compatible for Rohm BH2228FV")
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 drivers/spi/spidev.c | 47 ++++++++++++++++++--------------------------
 1 file changed, 19 insertions(+), 28 deletions(-)

diff --git a/drivers/spi/spidev.c b/drivers/spi/spidev.c
index 75eb1c95c4a04..8c69ab348a7f7 100644
--- a/drivers/spi/spidev.c
+++ b/drivers/spi/spidev.c
@@ -8,19 +8,20 @@
  */
 
 #include <linux/init.h>
-#include <linux/module.h>
 #include <linux/ioctl.h>
 #include <linux/fs.h>
 #include <linux/device.h>
 #include <linux/err.h>
 #include <linux/list.h>
 #include <linux/errno.h>
+#include <linux/mod_devicetable.h>
+#include <linux/module.h>
 #include <linux/mutex.h>
+#include <linux/property.h>
 #include <linux/slab.h>
 #include <linux/compat.h>
 #include <linux/of.h>
 #include <linux/of_device.h>
-#include <linux/acpi.h>
 
 #include <linux/spi/spi.h>
 #include <linux/spi/spidev.h>
@@ -710,10 +711,12 @@ static const struct of_device_id spidev_dt_ids[] = {
 MODULE_DEVICE_TABLE(of, spidev_dt_ids);
 #endif
 
-#ifdef CONFIG_ACPI
-
 /* Dummy SPI devices not to be used in production systems */
-#define SPIDEV_ACPI_DUMMY	1
+static int spidev_acpi_check(struct device *dev)
+{
+	dev_warn(dev, "do not use this driver in production systems!\n");
+	return 0;
+}
 
 static const struct acpi_device_id spidev_acpi_ids[] = {
 	/*
@@ -722,35 +725,18 @@ static const struct acpi_device_id spidev_acpi_ids[] = {
 	 * description of the connected peripheral and they should also use
 	 * a proper driver instead of poking directly to the SPI bus.
 	 */
-	{ "SPT0001", SPIDEV_ACPI_DUMMY },
-	{ "SPT0002", SPIDEV_ACPI_DUMMY },
-	{ "SPT0003", SPIDEV_ACPI_DUMMY },
+	{ "SPT0001", (kernel_ulong_t)&spidev_acpi_check },
+	{ "SPT0002", (kernel_ulong_t)&spidev_acpi_check },
+	{ "SPT0003", (kernel_ulong_t)&spidev_acpi_check },
 	{},
 };
 MODULE_DEVICE_TABLE(acpi, spidev_acpi_ids);
 
-static void spidev_probe_acpi(struct spi_device *spi)
-{
-	const struct acpi_device_id *id;
-
-	if (!has_acpi_companion(&spi->dev))
-		return;
-
-	id = acpi_match_device(spidev_acpi_ids, &spi->dev);
-	if (WARN_ON(!id))
-		return;
-
-	if (id->driver_data == SPIDEV_ACPI_DUMMY)
-		dev_warn(&spi->dev, "do not use this driver in production systems!\n");
-}
-#else
-static inline void spidev_probe_acpi(struct spi_device *spi) {}
-#endif
-
 /*-------------------------------------------------------------------------*/
 
 static int spidev_probe(struct spi_device *spi)
 {
+	int (*match)(struct device *dev);
 	struct spidev_data	*spidev;
 	int			status;
 	unsigned long		minor;
@@ -765,7 +751,12 @@ static int spidev_probe(struct spi_device *spi)
 		return -EINVAL;
 	}
 
-	spidev_probe_acpi(spi);
+	match = device_get_match_data(&spi->dev);
+	if (match) {
+		status = match(&spi->dev);
+		if (status)
+			return status;
+	}
 
 	/* Allocate driver data */
 	spidev = kzalloc(sizeof(*spidev), GFP_KERNEL);
@@ -837,7 +828,7 @@ static struct spi_driver spidev_spi_driver = {
 	.driver = {
 		.name =		"spidev",
 		.of_match_table = of_match_ptr(spidev_dt_ids),
-		.acpi_match_table = ACPI_PTR(spidev_acpi_ids),
+		.acpi_match_table = spidev_acpi_ids,
 	},
 	.probe =	spidev_probe,
 	.remove =	spidev_remove,
-- 
2.43.0




  parent reply	other threads:[~2024-08-15 13:53 UTC|newest]

Thread overview: 495+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-08-15 13:17 [PATCH 5.15 000/484] 5.15.165-rc1 review Greg Kroah-Hartman
2024-08-15 13:17 ` [PATCH 5.15 001/484] f2fs: fix return value of f2fs_convert_inline_inode() Greg Kroah-Hartman
2024-08-15 13:17 ` [PATCH 5.15 002/484] f2fs: fix to dont dirty inode for readonly filesystem Greg Kroah-Hartman
2024-08-15 13:17 ` [PATCH 5.15 003/484] EDAC, i10nm: make skx_common.o a separate module Greg Kroah-Hartman
2024-08-15 13:17 ` [PATCH 5.15 004/484] platform/chrome: cros_ec_debugfs: fix wrong EC message version Greg Kroah-Hartman
2024-08-15 13:17 ` [PATCH 5.15 005/484] block: refactor to use helper Greg Kroah-Hartman
2024-08-15 13:17 ` [PATCH 5.15 006/484] block: cleanup bio_integrity_prep Greg Kroah-Hartman
2024-08-15 13:17 ` [PATCH 5.15 007/484] block: initialize integrity buffer to zero before writing it to media Greg Kroah-Hartman
2024-08-15 13:17 ` [PATCH 5.15 008/484] hfsplus: fix to avoid false alarm of circular locking Greg Kroah-Hartman
2024-08-15 13:17 ` [PATCH 5.15 009/484] x86/of: Return consistent error type from x86_of_pci_irq_enable() Greg Kroah-Hartman
2024-08-15 13:17 ` [PATCH 5.15 010/484] x86/pci/intel_mid_pci: Fix PCIBIOS_* return code handling Greg Kroah-Hartman
2024-08-15 13:17 ` [PATCH 5.15 011/484] x86/pci/xen: " Greg Kroah-Hartman
2024-08-15 13:17 ` [PATCH 5.15 012/484] x86/platform/iosf_mbi: Convert PCIBIOS_* return codes to errnos Greg Kroah-Hartman
2024-08-15 13:17 ` [PATCH 5.15 013/484] hwmon: (adt7475) Fix default duty on fan is disabled Greg Kroah-Hartman
2024-08-15 13:17 ` [PATCH 5.15 014/484] pwm: stm32: Always do lazy disabling Greg Kroah-Hartman
2024-08-15 13:17 ` [PATCH 5.15 015/484] drm/meson: fix canvas release in bind function Greg Kroah-Hartman
2024-08-15 13:17 ` [PATCH 5.15 016/484] hwmon: (max6697) Fix underflow when writing limit attributes Greg Kroah-Hartman
2024-08-15 13:17 ` [PATCH 5.15 017/484] hwmon: (max6697) Fix swapped temp{1,8} critical alarms Greg Kroah-Hartman
2024-08-15 13:17 ` [PATCH 5.15 018/484] arm64: dts: qcom: sdm845: add power-domain to UFS PHY Greg Kroah-Hartman
2024-08-15 13:17 ` [PATCH 5.15 019/484] arm64: dts: qcom: sm8250: switch UFS QMP PHY to new style of bindings Greg Kroah-Hartman
2024-08-15 13:17 ` [PATCH 5.15 020/484] arm64: dts: qcom: sm8250: add power-domain to UFS PHY Greg Kroah-Hartman
2024-08-15 13:17 ` [PATCH 5.15 021/484] soc: qcom: rpmh-rsc: Ensure irqs arent disabled by rpmh_rsc_send_data() callers Greg Kroah-Hartman
2024-08-15 13:18 ` [PATCH 5.15 022/484] arm64: dts: qcom: msm8996: specify UFS core_clk frequencies Greg Kroah-Hartman
2024-08-15 13:18 ` [PATCH 5.15 023/484] memory: fsl_ifc: Make FSL_IFC config visible and selectable Greg Kroah-Hartman
2024-08-15 13:18 ` [PATCH 5.15 024/484] soc: qcom: pdr: protect locator_addr with the main mutex Greg Kroah-Hartman
2024-08-15 13:18 ` [PATCH 5.15 025/484] soc: qcom: pdr: fix parsing of domains lists Greg Kroah-Hartman
2024-08-15 13:18 ` [PATCH 5.15 026/484] arm64: dts: rockchip: Increase VOP clk rate on RK3328 Greg Kroah-Hartman
2024-08-15 13:18 ` [PATCH 5.15 027/484] ARM: dts: imx6qdl-kontron-samx6i: move phy reset into phy-node Greg Kroah-Hartman
2024-08-15 13:18 ` [PATCH 5.15 028/484] ARM: dts: imx6qdl-kontron-samx6i: fix PHY reset Greg Kroah-Hartman
2024-08-15 13:18 ` [PATCH 5.15 029/484] ARM: dts: imx6qdl-kontron-samx6i: fix board reset Greg Kroah-Hartman
2024-08-15 13:18 ` [PATCH 5.15 030/484] ARM: dts: imx6qdl-kontron-samx6i: fix SPI0 chip selects Greg Kroah-Hartman
2024-08-15 13:18 ` [PATCH 5.15 031/484] ARM: dts: imx6qdl-kontron-samx6i: fix PCIe reset polarity Greg Kroah-Hartman
2024-08-15 13:18 ` [PATCH 5.15 032/484] arm64: dts: mediatek: mt8183-kukui: Drop bogus output-enable property Greg Kroah-Hartman
2024-08-15 13:18 ` [PATCH 5.15 033/484] arm64: dts: mediatek: mt7622: fix "emmc" pinctrl mux Greg Kroah-Hartman
2024-08-15 13:18 ` [PATCH 5.15 034/484] arm64: dts: mediatek: mt8183-kukui-jacuzzi: Add ports node for anx7625 Greg Kroah-Hartman
2024-08-15 13:18 ` [PATCH 5.15 035/484] arm64: dts: amlogic: gx: correct hdmi clocks Greg Kroah-Hartman
2024-08-15 13:18 ` [PATCH 5.15 036/484] m68k: atari: Fix TT bootup freeze / unexpected (SCU) interrupt messages Greg Kroah-Hartman
2024-08-15 13:18 ` [PATCH 5.15 037/484] x86/xen: Convert comma to semicolon Greg Kroah-Hartman
2024-08-15 13:18 ` [PATCH 5.15 038/484] m68k: cmpxchg: Fix return value for default case in __arch_xchg() Greg Kroah-Hartman
2024-08-15 13:18 ` [PATCH 5.15 039/484] ARM: pxa: spitz: use gpio descriptors for audio Greg Kroah-Hartman
2024-08-15 13:18 ` [PATCH 5.15 040/484] ARM: spitz: fix GPIO assignment for backlight Greg Kroah-Hartman
2024-08-15 13:18 ` [PATCH 5.15 041/484] vmlinux.lds.h: catch .bss..L* sections into BSS") Greg Kroah-Hartman
2024-08-15 13:18 ` [PATCH 5.15 042/484] firmware: turris-mox-rwtm: Do not complete if there are no waiters Greg Kroah-Hartman
2024-08-15 13:18 ` [PATCH 5.15 043/484] firmware: turris-mox-rwtm: Fix checking return value of wait_for_completion_timeout() Greg Kroah-Hartman
2024-08-15 13:18 ` [PATCH 5.15 044/484] firmware: turris-mox-rwtm: Initialize completion before mailbox Greg Kroah-Hartman
2024-08-15 13:18 ` [PATCH 5.15 045/484] wifi: brcmsmac: LCN PHY code is used for BCM4313 2G-only device Greg Kroah-Hartman
2024-08-15 13:18 ` [PATCH 5.15 046/484] selftests/bpf: Fix prog numbers in test_sockmap Greg Kroah-Hartman
2024-08-15 13:18 ` [PATCH 5.15 047/484] net: esp: cleanup esp_output_tail_tcp() in case of unsupported ESPINTCP Greg Kroah-Hartman
2024-08-15 13:18 ` [PATCH 5.15 048/484] tcp: annotate lockless accesses to sk->sk_err_soft Greg Kroah-Hartman
2024-08-15 13:18 ` [PATCH 5.15 049/484] tcp: annotate lockless access to sk->sk_err Greg Kroah-Hartman
2024-08-15 13:18 ` [PATCH 5.15 050/484] tcp: add tcp_done_with_error() helper Greg Kroah-Hartman
2024-08-15 13:18 ` [PATCH 5.15 051/484] tcp: fix race in tcp_write_err() Greg Kroah-Hartman
2024-08-15 13:18 ` [PATCH 5.15 052/484] tcp: fix races in tcp_v[46]_err() Greg Kroah-Hartman
2024-08-15 13:18 ` [PATCH 5.15 053/484] net/smc: set rmbs SG_MAX_SINGLE_ALLOC limitation only when CONFIG_ARCH_NO_SG_CHAIN is defined Greg Kroah-Hartman
2024-08-15 13:18 ` [PATCH 5.15 054/484] selftests/bpf: Check length of recv in test_sockmap Greg Kroah-Hartman
2024-08-15 13:18 ` [PATCH 5.15 055/484] lib: objagg: Fix general protection fault Greg Kroah-Hartman
2024-08-15 13:18 ` [PATCH 5.15 056/484] mlxsw: spectrum_acl_erp: Fix object nesting warning Greg Kroah-Hartman
2024-08-15 13:18 ` [PATCH 5.15 057/484] mlxsw: spectrum_acl_bloom_filter: Make mlxsw_sp_acl_bf_key_encode() more flexible Greg Kroah-Hartman
2024-08-15 13:18 ` [PATCH 5.15 058/484] mlxsw: spectrum_acl: Fix ACL scale regression and firmware errors Greg Kroah-Hartman
2024-08-15 13:18 ` [PATCH 5.15 059/484] wifi: ath11k: fix wrong handling of CCMP256 and GCMP ciphers Greg Kroah-Hartman
2024-08-15 13:18 ` [PATCH 5.15 060/484] wifi: cfg80211: fix typo in cfg80211_calculate_bitrate_he() Greg Kroah-Hartman
2024-08-15 13:18 ` [PATCH 5.15 061/484] wifi: cfg80211: handle 2x996 RU allocation " Greg Kroah-Hartman
2024-08-15 13:18 ` [PATCH 5.15 062/484] net: fec: Refactor: #define magic constants Greg Kroah-Hartman
2024-08-15 13:18 ` [PATCH 5.15 063/484] net: fec: Fix FEC_ECR_EN1588 being cleared on link-down Greg Kroah-Hartman
2024-08-15 13:18 ` [PATCH 5.15 064/484] libbpf: Checking the btf_type kind when fixing variable offsets Greg Kroah-Hartman
2024-08-15 13:18 ` [PATCH 5.15 065/484] ipvs: Avoid unnecessary calls to skb_is_gso_sctp Greg Kroah-Hartman
2024-08-15 13:18 ` [PATCH 5.15 066/484] netfilter: nf_tables: rise cap on SELinux secmark context Greg Kroah-Hartman
2024-08-15 13:18 ` [PATCH 5.15 067/484] perf/x86/intel/pt: Fix pt_topa_entry_for_page() address calculation Greg Kroah-Hartman
2024-08-15 13:18 ` [PATCH 5.15 068/484] perf: Fix perf_aux_size() for greater-than 32-bit size Greg Kroah-Hartman
2024-08-15 13:18 ` [PATCH 5.15 069/484] perf: Prevent passing zero nr_pages to rb_alloc_aux() Greg Kroah-Hartman
2024-08-15 13:18 ` [PATCH 5.15 070/484] perf: Fix default aux_watermark calculation Greg Kroah-Hartman
2024-08-15 13:18 ` [PATCH 5.15 071/484] wifi: virt_wifi: avoid reporting connection success with wrong SSID Greg Kroah-Hartman
2024-08-15 13:18 ` [PATCH 5.15 072/484] gss_krb5: Fix the error handling path for crypto_sync_skcipher_setkey Greg Kroah-Hartman
2024-08-15 13:18 ` [PATCH 5.15 073/484] wifi: virt_wifi: dont use strlen() in const context Greg Kroah-Hartman
2024-08-15 13:18 ` [PATCH 5.15 074/484] locking/rwsem: Add __always_inline annotation to __down_write_common() and inlined callers Greg Kroah-Hartman
2024-08-15 13:18 ` [PATCH 5.15 075/484] selftests/bpf: Close fd in error path in drop_on_reuseport Greg Kroah-Hartman
2024-08-15 13:18 ` [PATCH 5.15 076/484] bpf: annotate BTF show functions with __printf Greg Kroah-Hartman
2024-08-15 13:18 ` [PATCH 5.15 077/484] bna: adjust name buf size of bna_tcb and bna_ccb structures Greg Kroah-Hartman
2024-08-15 13:18 ` [PATCH 5.15 078/484] bpf: Eliminate remaining "make W=1" warnings in kernel/bpf/btf.o Greg Kroah-Hartman
2024-08-15 13:18 ` [PATCH 5.15 079/484] selftests: forwarding: devlink_lib: Wait for udev events after reloading Greg Kroah-Hartman
2024-08-15 13:18 ` [PATCH 5.15 080/484] xdp: fix invalid wait context of page_pool_destroy() Greg Kroah-Hartman
2024-08-15 13:18 ` [PATCH 5.15 081/484] drm/amd/pm: Fix aldebaran pcie speed reporting Greg Kroah-Hartman
2024-08-15 13:19 ` [PATCH 5.15 082/484] drm/amdgpu: Check if NBIO funcs are NULL in amdgpu_device_baco_exit Greg Kroah-Hartman
2024-08-15 13:19 ` [PATCH 5.15 083/484] drm/panel: boe-tv101wum-nl6: If prepare fails, disable GPIO before regulators Greg Kroah-Hartman
2024-08-15 13:19 ` [PATCH 5.15 084/484] drm/panel: boe-tv101wum-nl6: Check for errors on the NOP in prepare() Greg Kroah-Hartman
2024-08-15 13:19 ` [PATCH 5.15 085/484] media: dvb-usb: Fix unexpected infinite loop in dvb_usb_read_remote_control() Greg Kroah-Hartman
2024-08-15 14:10   ` Sean Young
2024-08-15 14:20     ` Greg Kroah-Hartman
2024-08-15 14:51       ` Hans Verkuil
2024-08-15 15:04         ` Mauro Carvalho Chehab
2024-08-16  6:59       ` Greg Kroah-Hartman
2024-08-15 13:19 ` [PATCH 5.15 086/484] media: imon: Fix race getting ictx->lock Greg Kroah-Hartman
2024-08-15 13:19 ` [PATCH 5.15 087/484] media: i2c: Fix imx412 exposure control Greg Kroah-Hartman
2024-08-15 13:19 ` [PATCH 5.15 088/484] KVM: s390: pv: avoid stalls when making pages secure Greg Kroah-Hartman
2024-08-15 13:19 ` [PATCH 5.15 089/484] KVM: s390: pv: properly handle page flags for protected guests Greg Kroah-Hartman
2024-08-15 13:19 ` [PATCH 5.15 090/484] KVM: s390: pv: add export before import Greg Kroah-Hartman
2024-08-15 13:19 ` [PATCH 5.15 091/484] KVM: s390: fix race in gmap_make_secure() Greg Kroah-Hartman
2024-08-15 13:19 ` [PATCH 5.15 092/484] s390/mm: Convert make_page_secure to use a folio Greg Kroah-Hartman
2024-08-15 13:19 ` [PATCH 5.15 093/484] s390/mm: Convert gmap_make_secure " Greg Kroah-Hartman
2024-08-15 13:19 ` [PATCH 5.15 094/484] s390/uv: Dont call folio_wait_writeback() without a folio reference Greg Kroah-Hartman
2024-08-15 13:19 ` [PATCH 5.15 095/484] saa7134: Unchecked i2c_transfer function result fixed Greg Kroah-Hartman
2024-08-15 13:19 ` [PATCH 5.15 096/484] media: uvcvideo: Override default flags Greg Kroah-Hartman
2024-08-15 13:19 ` [PATCH 5.15 097/484] media: renesas: vsp1: Fix _irqsave and _irq mix Greg Kroah-Hartman
2024-08-15 13:19 ` [PATCH 5.15 098/484] media: renesas: vsp1: Store RPF partition configuration per RPF instance Greg Kroah-Hartman
2024-08-15 13:19 ` [PATCH 5.15 099/484] drm/mediatek: Add missing plane settings when async update Greg Kroah-Hartman
2024-08-15 13:19 ` [PATCH 5.15 100/484] drm/mediatek: Add DRM_MODE_ROTATE_0 to rotation property Greg Kroah-Hartman
2024-08-15 13:19 ` [PATCH 5.15 101/484] leds: trigger: Unregister sysfs attributes before calling deactivate() Greg Kroah-Hartman
2024-08-15 13:19 ` [PATCH 5.15 102/484] perf report: Fix condition in sort__sym_cmp() Greg Kroah-Hartman
2024-08-15 13:19 ` [PATCH 5.15 103/484] drm/etnaviv: fix DMA direction handling for cached RW buffers Greg Kroah-Hartman
2024-08-15 13:19 ` [PATCH 5.15 104/484] drm/qxl: Add check for drm_cvt_mode Greg Kroah-Hartman
2024-08-15 13:19 ` [PATCH 5.15 105/484] Revert "leds: led-core: Fix refcount leak in of_led_get()" Greg Kroah-Hartman
2024-08-15 13:19 ` [PATCH 5.15 106/484] ext4: fix infinite loop when replaying fast_commit Greg Kroah-Hartman
2024-08-15 13:19 ` [PATCH 5.15 107/484] media: venus: flush all buffers in output plane streamoff Greg Kroah-Hartman
2024-08-15 13:19 ` [PATCH 5.15 108/484] perf intel-pt: Fix aux_watermark calculation for 64-bit size Greg Kroah-Hartman
2024-08-15 13:19 ` [PATCH 5.15 109/484] perf intel-pt: Fix exclude_guest setting Greg Kroah-Hartman
2024-08-15 13:19 ` [PATCH 5.15 110/484] mfd: rsmu: Split core code into separate module Greg Kroah-Hartman
2024-08-15 13:19 ` [PATCH 5.15 111/484] mfd: omap-usb-tll: Use struct_size to allocate tll Greg Kroah-Hartman
2024-08-15 13:19 ` [PATCH 5.15 112/484] xprtrdma: Fix rpcrdma_reqs_reset() Greg Kroah-Hartman
2024-08-15 13:19 ` [PATCH 5.15 113/484] SUNRPC: avoid soft lockup when transmitting UDP to reachable server Greg Kroah-Hartman
2024-08-15 13:19 ` [PATCH 5.15 114/484] NFSv4.1 another fix for EXCHGID4_FLAG_USE_PNFS_DS for DS server Greg Kroah-Hartman
2024-08-15 13:19 ` [PATCH 5.15 115/484] ext4: return early for non-eligible fast_commit track events Greg Kroah-Hartman
2024-08-15 13:19 ` [PATCH 5.15 116/484] ext4: dont track ranges in fast_commit if inode has inlined data Greg Kroah-Hartman
2024-08-15 13:19 ` [PATCH 5.15 117/484] ext4: avoid writing unitialized memory to disk in EA inodes Greg Kroah-Hartman
2024-08-15 13:19 ` [PATCH 5.15 118/484] sparc64: Fix incorrect function signature and add prototype for prom_cif_init Greg Kroah-Hartman
2024-08-15 13:19 ` [PATCH 5.15 119/484] SUNRPC: Fixup gss_status tracepoint error output Greg Kroah-Hartman
2024-08-15 13:19 ` [PATCH 5.15 120/484] PCI: Fix resource double counting on remove & rescan Greg Kroah-Hartman
2024-08-15 13:19 ` [PATCH 5.15 121/484] clk: qcom: branch: Add helper functions for setting retain bits Greg Kroah-Hartman
2024-08-15 13:19 ` [PATCH 5.15 122/484] clk: qcom: gcc-sc7280: Update force mem core bit for UFS ICE clock Greg Kroah-Hartman
2024-08-15 13:19 ` [PATCH 5.15 123/484] coresight: Fix ref leak when of_coresight_parse_endpoint() fails Greg Kroah-Hartman
2024-08-15 13:19 ` [PATCH 5.15 124/484] RDMA/mlx5: Set mkeys for dmabuf at PAGE_SIZE Greg Kroah-Hartman
2024-08-15 13:19 ` [PATCH 5.15 125/484] RDMA/cache: Release GID table even if leak is detected Greg Kroah-Hartman
2024-08-15 13:19 ` [PATCH 5.15 126/484] Input: qt1050 - handle CHIP_ID reading error Greg Kroah-Hartman
2024-08-15 13:19 ` [PATCH 5.15 127/484] RDMA/mlx4: Fix truncated output warning in mad.c Greg Kroah-Hartman
2024-08-15 13:19 ` [PATCH 5.15 128/484] RDMA/mlx4: Fix truncated output warning in alias_GUID.c Greg Kroah-Hartman
2024-08-15 13:19 ` [PATCH 5.15 129/484] RDMA/rxe: Dont set BTH_ACK_MASK for UC or UD QPs Greg Kroah-Hartman
2024-08-15 13:19 ` [PATCH 5.15 130/484] ASoC: max98088: Check for clk_prepare_enable() error Greg Kroah-Hartman
2024-08-15 13:19 ` [PATCH 5.15 131/484] mtd: make mtd_test.c a separate module Greg Kroah-Hartman
2024-08-15 13:19 ` [PATCH 5.15 132/484] RDMA/device: Return error earlier if port in not valid Greg Kroah-Hartman
2024-08-15 13:19 ` [PATCH 5.15 133/484] Input: elan_i2c - do not leave interrupt disabled on suspend failure Greg Kroah-Hartman
2024-08-15 13:19 ` [PATCH 5.15 134/484] PCI: endpoint: Clean up error handling in vpci_scan_bus() Greg Kroah-Hartman
2024-08-15 13:19 ` [PATCH 5.15 135/484] vhost/vsock: always initialize seqpacket_allow Greg Kroah-Hartman
2024-08-15 13:19 ` [PATCH 5.15 136/484] net: missing check virtio Greg Kroah-Hartman
2024-08-15 13:19 ` [PATCH 5.15 137/484] MIPS: Octeron: remove source file executable bit Greg Kroah-Hartman
2024-08-15 13:19 ` [PATCH 5.15 138/484] powerpc/xmon: Fix disassembly CPU feature checks Greg Kroah-Hartman
2024-08-15 13:19 ` [PATCH 5.15 139/484] macintosh/therm_windtunnel: fix module unload Greg Kroah-Hartman
2024-08-15 13:19 ` [PATCH 5.15 140/484] RDMA/hns: Fix missing pagesize and alignment check in FRMR Greg Kroah-Hartman
2024-08-15 13:19 ` [PATCH 5.15 141/484] RDMA/hns: Fix undifined behavior caused by invalid max_sge Greg Kroah-Hartman
2024-08-15 13:20 ` [PATCH 5.15 142/484] RDMA/hns: Fix insufficient extend DB for VFs Greg Kroah-Hartman
2024-08-15 13:20 ` [PATCH 5.15 143/484] bnxt_re: Fix imm_data endianness Greg Kroah-Hartman
2024-08-15 13:20 ` [PATCH 5.15 144/484] netfilter: ctnetlink: use helper function to calculate expect ID Greg Kroah-Hartman
2024-08-15 13:20 ` [PATCH 5.15 145/484] netfilter: nft_set_pipapo: constify lookup fn args where possible Greg Kroah-Hartman
2024-08-15 13:20 ` [PATCH 5.15 146/484] netfilter: nf_set_pipapo: fix initial map fill Greg Kroah-Hartman
2024-08-15 13:20 ` [PATCH 5.15 147/484] net: dsa: mv88e6xxx: Limit chip-wide frame size config to CPU ports Greg Kroah-Hartman
2024-08-15 13:20 ` [PATCH 5.15 148/484] net: dsa: b53: Limit chip-wide jumbo frame " Greg Kroah-Hartman
2024-08-15 13:20 ` [PATCH 5.15 149/484] fs/ntfs3: Use ALIGN kernel macro Greg Kroah-Hartman
2024-08-15 13:20 ` [PATCH 5.15 150/484] fs/ntfs3: Merge synonym COMPRESSION_UNIT and NTFS_LZNT_CUNIT Greg Kroah-Hartman
2024-08-15 13:20 ` [PATCH 5.15 151/484] fs/ntfs3: Fix transform resident to nonresident for compressed files Greg Kroah-Hartman
2024-08-15 13:20 ` [PATCH 5.15 152/484] fs/ntfs3: Missed NI_FLAG_UPDATE_PARENT setting Greg Kroah-Hartman
2024-08-15 13:20 ` [PATCH 5.15 153/484] fs/ntfs3: Fix getting file type Greg Kroah-Hartman
2024-08-15 13:20 ` [PATCH 5.15 154/484] pinctrl: rockchip: update rk3308 iomux routes Greg Kroah-Hartman
2024-08-15 13:20 ` [PATCH 5.15 155/484] pinctrl: core: fix possible memory leak when pinctrl_enable() fails Greg Kroah-Hartman
2024-08-15 13:20 ` [PATCH 5.15 156/484] pinctrl: single: " Greg Kroah-Hartman
2024-08-15 13:20 ` [PATCH 5.15 157/484] pinctrl: ti: ti-iodelay: Drop if block with always false condition Greg Kroah-Hartman
2024-08-15 13:20 ` [PATCH 5.15 158/484] pinctrl: ti: ti-iodelay: fix possible memory leak when pinctrl_enable() fails Greg Kroah-Hartman
2024-08-15 13:20 ` [PATCH 5.15 159/484] pinctrl: freescale: mxs: Fix refcount of child Greg Kroah-Hartman
2024-08-15 13:20 ` [PATCH 5.15 160/484] fs/ntfs3: Replace inode_trylock with inode_lock Greg Kroah-Hartman
2024-08-15 13:20 ` [PATCH 5.15 161/484] fs/ntfs3: Fix field-spanning write in INDEX_HDR Greg Kroah-Hartman
2024-08-15 13:20 ` [PATCH 5.15 162/484] fs/proc/task_mmu: indicate PM_FILE for PMD-mapped file THP Greg Kroah-Hartman
2024-08-15 13:20 ` [PATCH 5.15 163/484] nilfs2: avoid undefined behavior in nilfs_cnt32_ge macro Greg Kroah-Hartman
2024-08-15 13:20 ` [PATCH 5.15 164/484] rtc: interface: Add RTC offset to alarm after fix-up Greg Kroah-Hartman
2024-08-15 13:20 ` [PATCH 5.15 165/484] fs/ntfs3: Missed error return Greg Kroah-Hartman
2024-08-15 13:20 ` [PATCH 5.15 166/484] s390/dasd: fix error checks in dasd_copy_pair_store() Greg Kroah-Hartman
2024-08-15 13:20 ` [PATCH 5.15 167/484] landlock: Dont lose track of restrictions on cred_transfer Greg Kroah-Hartman
2024-08-15 13:20 ` [PATCH 5.15 168/484] mm/hugetlb: fix possible recursive locking detected warning Greg Kroah-Hartman
2024-08-15 13:20 ` [PATCH 5.15 169/484] mm: mmap_lock: replace get_memcg_path_buf() with on-stack buffer Greg Kroah-Hartman
2024-08-15 13:20 ` [PATCH 5.15 170/484] dt-bindings: thermal: correct thermal zone node name limit Greg Kroah-Hartman
2024-08-15 13:20 ` [PATCH 5.15 171/484] tick/broadcast: Make takeover of broadcast hrtimer reliable Greg Kroah-Hartman
2024-08-15 13:20 ` [PATCH 5.15 172/484] net: netconsole: Disable target before netpoll cleanup Greg Kroah-Hartman
2024-08-15 13:20 ` [PATCH 5.15 173/484] af_packet: Handle outgoing VLAN packets without hardware offloading Greg Kroah-Hartman
2024-08-15 13:20 ` [PATCH 5.15 174/484] ipv6: take care of scope when choosing the src addr Greg Kroah-Hartman
2024-08-15 13:20 ` [PATCH 5.15 175/484] sched/fair: set_load_weight() must also call reweight_task() for SCHED_IDLE tasks Greg Kroah-Hartman
2024-08-15 13:20 ` [PATCH 5.15 176/484] fuse: verify {g,u}id mount options correctly Greg Kroah-Hartman
2024-08-15 13:20 ` [PATCH 5.15 177/484] char: tpm: Fix possible memory leak in tpm_bios_measurements_open() Greg Kroah-Hartman
2024-08-15 13:20 ` [PATCH 5.15 178/484] media: venus: fix use after free in vdec_close Greg Kroah-Hartman
2024-08-15 13:20 ` [PATCH 5.15 179/484] ata: libata-scsi: Honor the D_SENSE bit for CK_COND=1 and no error Greg Kroah-Hartman
2024-08-15 13:59   ` Niklas Cassel
2024-08-16  6:59     ` Greg Kroah-Hartman
2024-08-15 13:20 ` [PATCH 5.15 180/484] hfs: fix to initialize fields of hfs_inode_info after hfs_alloc_inode() Greg Kroah-Hartman
2024-08-15 13:20 ` [PATCH 5.15 181/484] ext2: Verify bitmap and itable block numbers before using them Greg Kroah-Hartman
2024-08-15 13:20 ` [PATCH 5.15 182/484] drm/gma500: fix null pointer dereference in cdv_intel_lvds_get_modes Greg Kroah-Hartman
2024-08-15 13:20 ` [PATCH 5.15 183/484] drm/gma500: fix null pointer dereference in psb_intel_lvds_get_modes Greg Kroah-Hartman
2024-08-15 13:20 ` [PATCH 5.15 184/484] scsi: qla2xxx: Fix optrom version displayed in FDMI Greg Kroah-Hartman
2024-08-15 13:20 ` [PATCH 5.15 185/484] drm/amd/display: Check for NULL pointer Greg Kroah-Hartman
2024-08-15 13:20 ` [PATCH 5.15 186/484] sched/fair: Use all little CPUs for CPU-bound workloads Greg Kroah-Hartman
2024-08-15 13:20 ` [PATCH 5.15 187/484] apparmor: use kvfree_sensitive to free data->data Greg Kroah-Hartman
2024-08-15 13:20 ` [PATCH 5.15 188/484] task_work: s/task_work_cancel()/task_work_cancel_func()/ Greg Kroah-Hartman
2024-08-15 13:20 ` [PATCH 5.15 189/484] task_work: Introduce task_work_cancel() again Greg Kroah-Hartman
2024-08-15 13:20 ` [PATCH 5.15 190/484] udf: Avoid using corrupted block bitmap buffer Greg Kroah-Hartman
2024-08-15 13:20 ` [PATCH 5.15 191/484] m68k: amiga: Turn off Warp1260 interrupts during boot Greg Kroah-Hartman
2024-08-15 13:20 ` [PATCH 5.15 192/484] ext4: check dot and dotdot of dx_root before making dir indexed Greg Kroah-Hartman
2024-08-15 13:20 ` [PATCH 5.15 193/484] ext4: make sure the first directory block is not a hole Greg Kroah-Hartman
2024-08-15 13:20 ` [PATCH 5.15 194/484] io_uring: tighten task exit cancellations Greg Kroah-Hartman
2024-08-15 13:20 ` [PATCH 5.15 195/484] selftests/landlock: Add cred_transfer test Greg Kroah-Hartman
2024-08-15 13:20 ` [PATCH 5.15 196/484] wifi: mwifiex: Fix interface type change Greg Kroah-Hartman
2024-08-15 13:20 ` [PATCH 5.15 197/484] leds: ss4200: Convert PCIBIOS_* return codes to errnos Greg Kroah-Hartman
2024-08-15 13:20 ` [PATCH 5.15 198/484] jbd2: make jbd2_journal_get_max_txn_bufs() internal Greg Kroah-Hartman
2024-08-15 13:20 ` [PATCH 5.15 199/484] media: uvcvideo: Fix integer overflow calculating timestamp Greg Kroah-Hartman
2024-08-15 13:20 ` [PATCH 5.15 200/484] KVM: VMX: Split out the non-virtualization part of vmx_interrupt_blocked() Greg Kroah-Hartman
2024-08-15 13:20 ` [PATCH 5.15 201/484] ALSA: usb-audio: Fix microphone sound on HD webcam Greg Kroah-Hartman
2024-08-15 13:21 ` [PATCH 5.15 202/484] ALSA: usb-audio: Move HD Webcam quirk to the right place Greg Kroah-Hartman
2024-08-15 13:21 ` [PATCH 5.15 203/484] ALSA: usb-audio: Add a quirk for Sonix HD USB Camera Greg Kroah-Hartman
2024-08-15 13:21 ` [PATCH 5.15 204/484] tools/memory-model: Fix bug in lock.cat Greg Kroah-Hartman
2024-08-15 13:21 ` [PATCH 5.15 205/484] hwrng: amd - Convert PCIBIOS_* return codes to errnos Greg Kroah-Hartman
2024-08-15 13:21 ` [PATCH 5.15 206/484] PCI: hv: Return zero, not garbage, when reading PCI_INTERRUPT_PIN Greg Kroah-Hartman
2024-08-15 13:21 ` [PATCH 5.15 207/484] PCI: dw-rockchip: Fix initial PERST# GPIO value Greg Kroah-Hartman
2024-08-15 13:21 ` [PATCH 5.15 208/484] PCI: rockchip: Use GPIOD_OUT_LOW flag while requesting ep_gpio Greg Kroah-Hartman
2024-08-15 13:21 ` [PATCH 5.15 209/484] binder: fix hang of unregistered readers Greg Kroah-Hartman
2024-08-15 13:21 ` [PATCH 5.15 210/484] dev/parport: fix the array out-of-bounds risk Greg Kroah-Hartman
2024-08-15 13:21 ` [PATCH 5.15 211/484] fs/ntfs3: Update log->page_{mask,bits} if log->page_size changed Greg Kroah-Hartman
2024-08-15 13:21 ` [PATCH 5.15 212/484] scsi: qla2xxx: Return ENOBUFS if sg_cnt is more than one for ELS cmds Greg Kroah-Hartman
2024-08-15 13:21 ` [PATCH 5.15 213/484] clk: davinci: da8xx-cfgchip: Initialize clk_init_data before use Greg Kroah-Hartman
2024-08-15 13:21 ` [PATCH 5.15 214/484] ubi: eba: properly rollback inside self_check_eba Greg Kroah-Hartman
2024-08-15 13:21 ` [PATCH 5.15 215/484] decompress_bunzip2: fix rare decompression failure Greg Kroah-Hartman
2024-08-15 13:21 ` [PATCH 5.15 216/484] kbuild: Fix -S -c in x86 stack protector scripts Greg Kroah-Hartman
2024-08-15 13:21 ` [PATCH 5.15 217/484] kobject_uevent: Fix OOB access within zap_modalias_env() Greg Kroah-Hartman
2024-08-15 13:21 ` [PATCH 5.15 218/484] gve: Fix an edge case for TSO skb validity check Greg Kroah-Hartman
2024-08-15 13:21 ` [PATCH 5.15 219/484] devres: Fix devm_krealloc() wasting memory Greg Kroah-Hartman
2024-08-15 13:21 ` [PATCH 5.15 220/484] devres: Fix memory leakage caused by driver API devm_free_percpu() Greg Kroah-Hartman
2024-08-15 13:21 ` [PATCH 5.15 221/484] mm/numa_balancing: teach mpol_to_str about the balancing mode Greg Kroah-Hartman
2024-08-15 13:21 ` [PATCH 5.15 222/484] rtc: cmos: Fix return value of nvmem callbacks Greg Kroah-Hartman
2024-08-15 13:21 ` [PATCH 5.15 223/484] scsi: qla2xxx: During vport delete send async logout explicitly Greg Kroah-Hartman
2024-08-15 13:21 ` [PATCH 5.15 224/484] scsi: qla2xxx: Unable to act on RSCN for port online Greg Kroah-Hartman
2024-08-15 13:21 ` [PATCH 5.15 225/484] scsi: qla2xxx: Fix for possible memory corruption Greg Kroah-Hartman
2024-08-15 13:21 ` [PATCH 5.15 226/484] scsi: qla2xxx: Use QP lock to search for bsg Greg Kroah-Hartman
2024-08-15 13:21 ` [PATCH 5.15 227/484] scsi: qla2xxx: Fix flash read failure Greg Kroah-Hartman
2024-08-15 13:21 ` [PATCH 5.15 228/484] scsi: qla2xxx: Complete command early within lock Greg Kroah-Hartman
2024-08-15 13:21 ` [PATCH 5.15 229/484] scsi: qla2xxx: validate nvme_local_port correctly Greg Kroah-Hartman
2024-08-15 13:21 ` [PATCH 5.15 230/484] perf: Fix event leak upon exit Greg Kroah-Hartman
2024-08-15 13:21 ` [PATCH 5.15 231/484] perf: Fix event leak upon exec and file release Greg Kroah-Hartman
2024-08-15 13:21 ` [PATCH 5.15 232/484] perf/x86/intel/uncore: Fix the bits of the CHA extended umask for SPR Greg Kroah-Hartman
2024-08-15 13:21 ` [PATCH 5.15 233/484] perf/x86/intel/pt: Fix topa_entry base length Greg Kroah-Hartman
2024-08-15 13:21 ` [PATCH 5.15 234/484] perf/x86/intel/pt: Fix a topa_entry base address calculation Greg Kroah-Hartman
2024-08-15 13:21 ` [PATCH 5.15 235/484] drm/i915/gt: Do not consider preemption during execlists_dequeue for gen8 Greg Kroah-Hartman
2024-08-15 13:21 ` [PATCH 5.15 236/484] drm/amdgpu/sdma5.2: Update wptr registers as well as doorbell Greg Kroah-Hartman
2024-08-15 13:21 ` [PATCH 5.15 237/484] drm/i915/dp: Reset intel_dp->link_trained before retraining the link Greg Kroah-Hartman
2024-08-15 13:21 ` [PATCH 5.15 238/484] rtc: isl1208: Fix return value of nvmem callbacks Greg Kroah-Hartman
2024-08-15 13:21 ` [PATCH 5.15 239/484] watchdog/perf: properly initialize the turbo mode timestamp and rearm counter Greg Kroah-Hartman
2024-08-15 13:21 ` [PATCH 5.15 240/484] platform: mips: cpu_hwmon: Disable driver on unsupported hardware Greg Kroah-Hartman
2024-08-15 13:21 ` [PATCH 5.15 241/484] RDMA/iwcm: Fix a use-after-free related to destroying CM IDs Greg Kroah-Hartman
2024-08-15 13:21 ` [PATCH 5.15 242/484] selftests/sigaltstack: Fix ppc64 GCC build Greg Kroah-Hartman
2024-08-15 13:21 ` [PATCH 5.15 243/484] rbd: dont assume rbd_is_lock_owner() for exclusive mappings Greg Kroah-Hartman
2024-08-15 13:21 ` [PATCH 5.15 244/484] remoteproc: stm32_rproc: Fix mailbox interrupts queuing Greg Kroah-Hartman
2024-08-15 13:21 ` [PATCH 5.15 245/484] remoteproc: imx_rproc: Skip over memory region when node value is NULL Greg Kroah-Hartman
2024-08-15 13:21 ` [PATCH 5.15 246/484] MIPS: ip30: ip30-console: Add missing include Greg Kroah-Hartman
2024-08-15 13:21 ` [PATCH 5.15 247/484] MIPS: dts: loongson: Fix GMAC phy node Greg Kroah-Hartman
2024-08-15 13:21 ` [PATCH 5.15 248/484] MIPS: Loongson64: env: Hook up Loongsson-2K Greg Kroah-Hartman
2024-08-15 13:21 ` [PATCH 5.15 249/484] MIPS: Loongson64: Remove memory node for builtin-dtb Greg Kroah-Hartman
2024-08-15 13:21 ` [PATCH 5.15 250/484] MIPS: Loongson64: reset: Prioritise firmware service Greg Kroah-Hartman
2024-08-15 13:21 ` [PATCH 5.15 251/484] MIPS: Loongson64: Test register availability before use Greg Kroah-Hartman
2024-08-15 13:21 ` [PATCH 5.15 252/484] drm/panfrost: Mark simple_ondemand governor as softdep Greg Kroah-Hartman
2024-08-15 13:21 ` [PATCH 5.15 253/484] rbd: rename RBD_LOCK_STATE_RELEASING and releasing_wait Greg Kroah-Hartman
2024-08-15 13:21 ` [PATCH 5.15 254/484] rbd: dont assume RBD_LOCK_STATE_LOCKED for exclusive mappings Greg Kroah-Hartman
2024-08-15 13:21 ` [PATCH 5.15 255/484] Bluetooth: btusb: Add RTL8852BE device 0489:e125 to device tables Greg Kroah-Hartman
2024-08-15 13:21 ` [PATCH 5.15 256/484] Bluetooth: btusb: Add Realtek RTL8852BE support ID 0x13d3:0x3591 Greg Kroah-Hartman
2024-08-15 13:21 ` [PATCH 5.15 257/484] nilfs2: handle inconsistent state in nilfs_btnode_create_block() Greg Kroah-Hartman
2024-08-15 13:21 ` [PATCH 5.15 258/484] io_uring/io-wq: limit retrying worker initialisation Greg Kroah-Hartman
2024-08-15 13:21 ` [PATCH 5.15 259/484] kernel: rerun task_work while freezing in get_signal() Greg Kroah-Hartman
2024-08-15 13:21 ` [PATCH 5.15 260/484] kdb: address -Wformat-security warnings Greg Kroah-Hartman
2024-08-15 13:21 ` [PATCH 5.15 261/484] kdb: Use the passed prompt in kdb_position_cursor() Greg Kroah-Hartman
2024-08-15 13:22 ` [PATCH 5.15 262/484] jfs: Fix array-index-out-of-bounds in diFree Greg Kroah-Hartman
2024-08-15 13:22 ` [PATCH 5.15 263/484] dmaengine: ti: k3-udma: Fix BCHAN count with UHC and HC channels Greg Kroah-Hartman
2024-08-15 13:22 ` [PATCH 5.15 264/484] phy: cadence-torrent: Check return value on register read Greg Kroah-Hartman
2024-08-15 13:22 ` [PATCH 5.15 265/484] um: time-travel: fix time-travel-start option Greg Kroah-Hartman
2024-08-15 13:22 ` [PATCH 5.15 266/484] um: time-travel: fix signal blocking race/hang Greg Kroah-Hartman
2024-08-15 13:22 ` [PATCH 5.15 267/484] libbpf: Fix no-args func prototype BTF dumping syntax Greg Kroah-Hartman
2024-08-15 13:22 ` [PATCH 5.15 268/484] dma: fix call order in dmam_free_coherent Greg Kroah-Hartman
2024-08-15 13:22 ` [PATCH 5.15 269/484] bpf, events: Use prog to emit ksymbol event for main program Greg Kroah-Hartman
2024-08-15 13:22 ` [PATCH 5.15 270/484] MIPS: SMP-CPS: Fix address for GCR_ACCESS register for CM3 and later Greg Kroah-Hartman
2024-08-15 13:22 ` [PATCH 5.15 271/484] ipv4: Fix incorrect source address in Record Route option Greg Kroah-Hartman
2024-08-15 13:22 ` [PATCH 5.15 272/484] net: bonding: correctly annotate RCU in bond_should_notify_peers() Greg Kroah-Hartman
2024-08-15 13:22 ` [PATCH 5.15 273/484] netfilter: nft_set_pipapo_avx2: disable softinterrupts Greg Kroah-Hartman
2024-08-15 13:22 ` [PATCH 5.15 274/484] tipc: Return non-zero value from tipc_udp_addr2str() on error Greg Kroah-Hartman
2024-08-15 13:22 ` [PATCH 5.15 275/484] net: stmmac: Correct byte order of perfect_match Greg Kroah-Hartman
2024-08-15 13:22 ` [PATCH 5.15 276/484] net: nexthop: Initialize all fields in dumped nexthops Greg Kroah-Hartman
2024-08-15 13:22 ` [PATCH 5.15 277/484] bpf: Fix a segment issue when downgrading gso_size Greg Kroah-Hartman
2024-08-15 13:22 ` [PATCH 5.15 278/484] mISDN: Fix a use after free in hfcmulti_tx() Greg Kroah-Hartman
2024-08-15 13:22 ` [PATCH 5.15 279/484] apparmor: Fix null pointer deref when receiving skb during sock creation Greg Kroah-Hartman
2024-08-15 13:22 ` [PATCH 5.15 280/484] powerpc: fix a file leak in kvm_vcpu_ioctl_enable_cap() Greg Kroah-Hartman
2024-08-15 13:22 ` [PATCH 5.15 281/484] lirc: rc_dev_get_from_fd(): fix file leak Greg Kroah-Hartman
2024-08-15 13:22 ` [PATCH 5.15 282/484] spi: spidev: Make probe to fail early if a spidev compatible is used Greg Kroah-Hartman
2024-08-15 13:22 ` Greg Kroah-Hartman [this message]
2024-08-15 13:22 ` [PATCH 5.15 284/484] spi: spidev: Replace OF specific code by device property API Greg Kroah-Hartman
2024-08-15 13:22 ` [PATCH 5.15 285/484] spidev: Add Silicon Labs EM3581 device compatible Greg Kroah-Hartman
2024-08-15 13:22 ` [PATCH 5.15 286/484] spi: spidev: order compatibles alphabetically Greg Kroah-Hartman
2024-08-15 13:22 ` [PATCH 5.15 287/484] spi: spidev: add correct compatible for Rohm BH2228FV Greg Kroah-Hartman
2024-08-15 13:22 ` [PATCH 5.15 288/484] ASoC: Intel: use soc_intel_is_byt_cr() only when IOSF_MBI is reachable Greg Kroah-Hartman
2024-08-15 13:22 ` [PATCH 5.15 289/484] ceph: fix incorrect kmalloc size of pagevec mempool Greg Kroah-Hartman
2024-08-15 13:22 ` [PATCH 5.15 290/484] s390/pci: Rework MSI descriptor walk Greg Kroah-Hartman
2024-08-15 13:22 ` [PATCH 5.15 291/484] s390/pci: Refactor arch_setup_msi_irqs() Greg Kroah-Hartman
2024-08-15 13:22 ` [PATCH 5.15 292/484] s390/pci: Allow allocation of more than 1 MSI interrupt Greg Kroah-Hartman
2024-08-15 13:22 ` [PATCH 5.15 293/484] iommu: sprd: Avoid NULL deref in sprd_iommu_hw_en Greg Kroah-Hartman
2024-08-15 13:22 ` [PATCH 5.15 294/484] nvme: split command copy into a helper Greg Kroah-Hartman
2024-08-15 13:22 ` [PATCH 5.15 295/484] nvme: separate command prep and issue Greg Kroah-Hartman
2024-08-15 13:22 ` [PATCH 5.15 296/484] nvme-pci: add missing condition check for existence of mapped data Greg Kroah-Hartman
2024-08-15 13:22 ` [PATCH 5.15 297/484] fs: dont allow non-init s_user_ns for filesystems without FS_USERNS_MOUNT Greg Kroah-Hartman
2024-08-15 13:22 ` [PATCH 5.15 298/484] powerpc/configs: Update defconfig with now user-visible CONFIG_FSL_IFC Greg Kroah-Hartman
2024-08-15 13:22 ` [PATCH 5.15 299/484] arm64: dts: qcom: msm8996: Move #clock-cells to QMP PHY child node Greg Kroah-Hartman
2024-08-15 13:22 ` [PATCH 5.15 300/484] arm64: dts: qcom: msm8998: drop USB PHY clock index Greg Kroah-Hartman
2024-08-15 13:22 ` [PATCH 5.15 301/484] arm64: dts: qcom: msm8998: switch USB QMP PHY to new style of bindings Greg Kroah-Hartman
2024-08-15 13:22 ` [PATCH 5.15 302/484] arm64: dts: qcom: msm8998: Disable SS instance in Parkmode for USB Greg Kroah-Hartman
2024-08-15 13:22 ` [PATCH 5.15 303/484] arm64: dts: qcom: ipq8074: " Greg Kroah-Hartman
2024-08-15 13:22 ` [PATCH 5.15 304/484] sysctl: always initialize i_uid/i_gid Greg Kroah-Hartman
2024-08-15 13:22 ` [PATCH 5.15 305/484] ext4: make ext4_es_insert_extent() return void Greg Kroah-Hartman
2024-08-15 13:22 ` [PATCH 5.15 306/484] ext4: refactor ext4_da_map_blocks() Greg Kroah-Hartman
2024-08-15 13:22 ` [PATCH 5.15 307/484] ext4: convert to exclusive lock while inserting delalloc extents Greg Kroah-Hartman
2024-08-15 13:22 ` [PATCH 5.15 308/484] ext4: factor out a common helper to query extent map Greg Kroah-Hartman
2024-08-15 13:22 ` [PATCH 5.15 309/484] ext4: check the extent status again before inserting delalloc block Greg Kroah-Hartman
2024-08-15 13:22 ` [PATCH 5.15 310/484] soc: xilinx: move PM_INIT_FINALIZE to zynqmp_pm_domains driver Greg Kroah-Hartman
2024-08-15 13:22 ` [PATCH 5.15 311/484] drivers: soc: xilinx: check return status of get_api_version() Greg Kroah-Hartman
2024-08-15 13:22 ` [PATCH 5.15 312/484] leds: trigger: use RCU to protect the led_cdevs list Greg Kroah-Hartman
2024-08-15 13:22 ` [PATCH 5.15 313/484] leds: trigger: Remove unused function led_trigger_rename_static() Greg Kroah-Hartman
2024-08-15 13:22 ` [PATCH 5.15 314/484] leds: trigger: Store brightness set by led_trigger_event() Greg Kroah-Hartman
2024-08-15 13:22 ` [PATCH 5.15 315/484] leds: trigger: Call synchronize_rcu() before calling trig->activate() Greg Kroah-Hartman
2024-08-15 13:22 ` [PATCH 5.15 316/484] leds: triggers: Flush pending brightness before activating trigger Greg Kroah-Hartman
2024-08-15 13:22 ` [PATCH 5.15 317/484] irqdomain: Fixed unbalanced fwnode get and put Greg Kroah-Hartman
2024-08-15 13:22 ` [PATCH 5.15 318/484] genirq: Allow the PM device to originate from irq domain Greg Kroah-Hartman
2024-08-15 13:22 ` [PATCH 5.15 319/484] irqchip/imx-irqsteer: Constify irq_chip struct Greg Kroah-Hartman
2024-08-15 13:22 ` [PATCH 5.15 320/484] irqchip/imx-irqsteer: Add runtime PM support Greg Kroah-Hartman
2024-08-15 13:22 ` [PATCH 5.15 321/484] irqchip/imx-irqsteer: Handle runtime power management correctly Greg Kroah-Hartman
2024-08-15 13:23 ` [PATCH 5.15 322/484] drm/dp_mst: Fix all mstb marked as not probed after suspend/resume Greg Kroah-Hartman
2024-08-15 13:23 ` [PATCH 5.15 323/484] remoteproc: imx_rproc: Fix refcount mistake in imx_rproc_addr_init Greg Kroah-Hartman
2024-08-15 13:23 ` [PATCH 5.15 324/484] MIPS: Loongson64: DTS: Add RTC support to Loongson-2K1000 Greg Kroah-Hartman
2024-08-15 13:23 ` [PATCH 5.15 325/484] MIPS: Loongson64: DTS: Fix PCIe port nodes for ls7a Greg Kroah-Hartman
2024-08-15 13:23 ` [PATCH 5.15 326/484] MIPS: dts: loongson: Fix liointc IRQ polarity Greg Kroah-Hartman
2024-08-15 13:23 ` [PATCH 5.15 327/484] MIPS: dts: loongson: Fix ls2k1000-rtc interrupt Greg Kroah-Hartman
2024-08-15 13:23 ` [PATCH 5.15 328/484] drm/nouveau: prime: fix refcount underflow Greg Kroah-Hartman
2024-08-15 13:23 ` [PATCH 5.15 329/484] drm/vmwgfx: Fix overlay when using Screen Targets Greg Kroah-Hartman
2024-08-15 13:23 ` [PATCH 5.15 330/484] sched: act_ct: take care of padding in struct zones_ht_key Greg Kroah-Hartman
2024-08-15 13:23 ` [PATCH 5.15 331/484] ALSA: hda: conexant: Fix headset auto detect fail in the polling mode Greg Kroah-Hartman
2024-08-15 13:23 ` [PATCH 5.15 332/484] rtnetlink: enable alt_ifname for setlink/newlink Greg Kroah-Hartman
2024-08-15 13:23 ` [PATCH 5.15 333/484] rtnetlink: Dont ignore IFLA_TARGET_NETNSID when ifname is specified in rtnl_dellink() Greg Kroah-Hartman
2024-08-15 13:23 ` [PATCH 5.15 334/484] net/iucv: fix use after free in iucv_sock_close() Greg Kroah-Hartman
2024-08-15 13:23 ` [PATCH 5.15 335/484] net: mvpp2: Dont re-use loop iterator Greg Kroah-Hartman
2024-08-15 13:23 ` [PATCH 5.15 336/484] netfilter: iptables: Fix null-ptr-deref in iptable_nat_table_init() Greg Kroah-Hartman
2024-08-15 13:23 ` [PATCH 5.15 337/484] netfilter: iptables: Fix potential null-ptr-deref in ip6table_nat_table_init() Greg Kroah-Hartman
2024-08-15 13:23 ` [PATCH 5.15 338/484] net/mlx5e: Add a check for the return value from mlx5_port_set_eth_ptys Greg Kroah-Hartman
2024-08-15 13:23 ` [PATCH 5.15 339/484] ipv6: fix ndisc_is_useropt() handling for PIO Greg Kroah-Hartman
2024-08-15 13:23 ` [PATCH 5.15 340/484] riscv/mm: Add handling for VM_FAULT_SIGSEGV in mm_fault_error() Greg Kroah-Hartman
2024-08-15 13:23 ` [PATCH 5.15 341/484] power: supply: bq24190_charger: replace deprecated strncpy with strscpy Greg Kroah-Hartman
2024-08-15 13:23 ` [PATCH 5.15 342/484] platform/chrome: cros_ec_proto: Lock device when updating MKBP version Greg Kroah-Hartman
2024-08-15 13:23 ` [PATCH 5.15 343/484] HID: wacom: Modify pen IDs Greg Kroah-Hartman
2024-08-15 13:23 ` [PATCH 5.15 344/484] protect the fetch of ->fd[fd] in do_dup2() from mispredictions Greg Kroah-Hartman
2024-08-15 13:23 ` [PATCH 5.15 345/484] ALSA: usb-audio: Correct surround channels in UAC1 channel map Greg Kroah-Hartman
2024-08-15 13:23 ` [PATCH 5.15 346/484] ALSA: hda/realtek: Add quirk for Acer Aspire E5-574G Greg Kroah-Hartman
2024-08-15 13:23 ` [PATCH 5.15 347/484] Revert "ALSA: firewire-lib: obsolete workqueue for period update" Greg Kroah-Hartman
2024-08-15 13:23 ` [PATCH 5.15 348/484] Revert "ALSA: firewire-lib: operate for period elapse event in process context" Greg Kroah-Hartman
2024-08-15 13:23 ` [PATCH 5.15 349/484] drm/vmwgfx: Fix a deadlock in dma buf fence polling Greg Kroah-Hartman
2024-08-15 13:23 ` [PATCH 5.15 350/484] net: usb: sr9700: fix uninitialized variable use in sr_mdio_read Greg Kroah-Hartman
2024-08-15 13:23 ` [PATCH 5.15 351/484] r8169: dont increment tx_dropped in case of NETDEV_TX_BUSY Greg Kroah-Hartman
2024-08-15 13:23 ` [PATCH 5.15 352/484] mptcp: fix duplicate data handling Greg Kroah-Hartman
2024-08-15 13:23 ` [PATCH 5.15 353/484] netfilter: ipset: Add list flush to cancel_gc Greg Kroah-Hartman
2024-08-15 13:23 ` [PATCH 5.15 354/484] genirq: Allow irq_chip registration functions to take a const irq_chip Greg Kroah-Hartman
2024-08-15 13:23 ` [PATCH 5.15 355/484] irqchip/mbigen: Fix mbigen node address layout Greg Kroah-Hartman
2024-08-15 13:23 ` [PATCH 5.15 356/484] x86/mm: Fix pti_clone_pgtable() alignment assumption Greg Kroah-Hartman
2024-08-15 13:23 ` [PATCH 5.15 357/484] x86/mm: Fix pti_clone_entry_text() for i386 Greg Kroah-Hartman
2024-08-15 13:23 ` [PATCH 5.15 358/484] sctp: move hlist_node and hashent out of sctp_ep_common Greg Kroah-Hartman
2024-08-15 13:23 ` [PATCH 5.15 359/484] sctp: Fix null-ptr-deref in reuseport_add_sock() Greg Kroah-Hartman
2024-08-15 13:23 ` [PATCH 5.15 360/484] net: usb: qmi_wwan: fix memory leak for not ip packets Greg Kroah-Hartman
2024-08-15 13:23 ` [PATCH 5.15 361/484] net: bridge: mcast: wait for previous gc cycles when removing port Greg Kroah-Hartman
2024-08-15 13:23 ` [PATCH 5.15 362/484] net: linkwatch: use system_unbound_wq Greg Kroah-Hartman
2024-08-15 13:23 ` [PATCH 5.15 363/484] Bluetooth: l2cap: always unlock channel in l2cap_conless_channel() Greg Kroah-Hartman
2024-08-15 13:23 ` [PATCH 5.15 364/484] net: dsa: bcm_sf2: Fix a possible memory leak in bcm_sf2_mdio_register() Greg Kroah-Hartman
2024-08-15 13:23 ` [PATCH 5.15 365/484] l2tp: fix lockdep splat Greg Kroah-Hartman
2024-08-15 13:23 ` [PATCH 5.15 366/484] net: fec: Stop PPS on driver remove Greg Kroah-Hartman
2024-08-15 13:23 ` [PATCH 5.15 367/484] rcutorture: Fix rcu_torture_fwd_cb_cr() data race Greg Kroah-Hartman
2024-08-15 13:23 ` [PATCH 5.15 368/484] md: do not delete safemode_timer in mddev_suspend Greg Kroah-Hartman
2024-08-15 13:23 ` [PATCH 5.15 369/484] md/raid5: avoid BUG_ON() while continue reshape after reassembling Greg Kroah-Hartman
2024-08-15 13:23 ` [PATCH 5.15 370/484] clocksource/drivers/sh_cmt: Address race condition for clock events Greg Kroah-Hartman
2024-08-15 13:23 ` [PATCH 5.15 371/484] ACPI: battery: create alarm sysfs attribute atomically Greg Kroah-Hartman
2024-08-15 13:23 ` [PATCH 5.15 372/484] ACPI: SBS: manage alarm sysfs attribute through psy core Greg Kroah-Hartman
2024-08-15 13:23 ` [PATCH 5.15 373/484] selftests/bpf: Fix send_signal test with nested CONFIG_PARAVIRT Greg Kroah-Hartman
2024-08-15 13:23 ` [PATCH 5.15 374/484] PCI: Add Edimax Vendor ID to pci_ids.h Greg Kroah-Hartman
2024-08-15 13:23 ` [PATCH 5.15 375/484] udf: prevent integer overflow in udf_bitmap_free_blocks() Greg Kroah-Hartman
2024-08-15 13:23 ` [PATCH 5.15 376/484] wifi: nl80211: dont give key data to userspace Greg Kroah-Hartman
2024-08-15 13:23 ` [PATCH 5.15 377/484] btrfs: fix bitmap leak when loading free space cache on duplicate entry Greg Kroah-Hartman
2024-08-15 13:23 ` [PATCH 5.15 378/484] drm/amdgpu/pm: Fix the null pointer dereference for smu7 Greg Kroah-Hartman
2024-08-15 13:23 ` [PATCH 5.15 379/484] drm/amdgpu: Fix the null pointer dereference to ras_manager Greg Kroah-Hartman
2024-08-15 13:23 ` [PATCH 5.15 380/484] drm/amdgpu/pm: Fix the null pointer dereference in apply_state_adjust_rules Greg Kroah-Hartman
2024-08-15 13:23 ` [PATCH 5.15 381/484] drm/amd/display: Add null checker before passing variables Greg Kroah-Hartman
2024-08-15 13:24 ` [PATCH 5.15 382/484] media: uvcvideo: Ignore empty TS packets Greg Kroah-Hartman
2024-08-15 13:24 ` [PATCH 5.15 383/484] media: uvcvideo: Fix the bandwdith quirk on USB 3.x Greg Kroah-Hartman
2024-08-15 13:24 ` [PATCH 5.15 384/484] ext4: fix uninitialized variable in ext4_inlinedir_to_tree Greg Kroah-Hartman
2024-08-15 13:24 ` [PATCH 5.15 385/484] jbd2: avoid memleak in jbd2_journal_write_metadata_buffer Greg Kroah-Hartman
2024-08-15 13:24 ` [PATCH 5.15 386/484] s390/sclp: Prevent release of buffer in I/O Greg Kroah-Hartman
2024-08-15 13:24 ` [PATCH 5.15 387/484] SUNRPC: Fix a race to wake a sync task Greg Kroah-Hartman
2024-08-15 13:24 ` [PATCH 5.15 388/484] profiling: remove profile=sleep support Greg Kroah-Hartman
2024-08-15 13:24 ` [PATCH 5.15 389/484] scsi: mpt3sas: Avoid IOMMU page faults on REPORT ZONES Greg Kroah-Hartman
2024-08-15 13:24 ` [PATCH 5.15 390/484] sched/cputime: Fix mul_u64_u64_div_u64() precision for cputime Greg Kroah-Hartman
2024-08-15 13:24 ` [PATCH 5.15 391/484] ext4: fix wrong unit use in ext4_mb_find_by_goal Greg Kroah-Hartman
2024-08-15 13:24 ` [PATCH 5.15 392/484] arm64: cpufeature: Force HWCAP to be based on the sysreg visible to user-space Greg Kroah-Hartman
2024-08-15 13:24 ` [PATCH 5.15 393/484] arm64: Add Neoverse-V2 part Greg Kroah-Hartman
2024-08-15 13:24 ` [PATCH 5.15 394/484] arm64: barrier: Restore spec_bar() macro Greg Kroah-Hartman
2024-08-15 13:24 ` [PATCH 5.15 395/484] arm64: cputype: Add Cortex-X4 definitions Greg Kroah-Hartman
2024-08-15 13:24 ` [PATCH 5.15 396/484] arm64: cputype: Add Neoverse-V3 definitions Greg Kroah-Hartman
2024-08-15 13:24 ` [PATCH 5.15 397/484] arm64: errata: Add workaround for Arm errata 3194386 and 3312417 Greg Kroah-Hartman
2024-08-15 13:24 ` [PATCH 5.15 398/484] arm64: cputype: Add Cortex-X3 definitions Greg Kroah-Hartman
2024-08-15 13:24 ` [PATCH 5.15 399/484] arm64: cputype: Add Cortex-A720 definitions Greg Kroah-Hartman
2024-08-15 13:24 ` [PATCH 5.15 400/484] arm64: cputype: Add Cortex-X925 definitions Greg Kroah-Hartman
2024-08-15 13:24 ` [PATCH 5.15 401/484] arm64: errata: Unify speculative SSBS errata logic Greg Kroah-Hartman
2024-08-15 13:24 ` [PATCH 5.15 402/484] arm64: errata: Expand speculative SSBS workaround Greg Kroah-Hartman
2024-08-15 13:24 ` [PATCH 5.15 403/484] arm64: cputype: Add Cortex-X1C definitions Greg Kroah-Hartman
2024-08-15 13:24 ` [PATCH 5.15 404/484] arm64: cputype: Add Cortex-A725 definitions Greg Kroah-Hartman
2024-08-15 13:24 ` [PATCH 5.15 405/484] arm64: errata: Expand speculative SSBS workaround (again) Greg Kroah-Hartman
2024-08-15 13:24 ` [PATCH 5.15 406/484] i2c: smbus: Improve handling of stuck alerts Greg Kroah-Hartman
2024-08-15 13:24 ` [PATCH 5.15 407/484] ASoC: codecs: wcd938x-sdw: Correct Soundwire ports mask Greg Kroah-Hartman
2024-08-15 13:24 ` [PATCH 5.15 408/484] ASoC: codecs: wsa881x: " Greg Kroah-Hartman
2024-08-15 13:24 ` [PATCH 5.15 409/484] spi: spidev: Add missing spi_device_id for bh2228fv Greg Kroah-Hartman
2024-08-15 13:24 ` [PATCH 5.15 410/484] i2c: smbus: Send alert notifications to all devices if source not found Greg Kroah-Hartman
2024-08-15 13:24 ` [PATCH 5.15 411/484] bpf: kprobe: remove unused declaring of bpf_kprobe_override Greg Kroah-Hartman
2024-08-15 13:24 ` [PATCH 5.15 412/484] kprobes: Fix to check symbol prefixes correctly Greg Kroah-Hartman
2024-08-15 13:24 ` [PATCH 5.15 413/484] spi: spi-fsl-lpspi: Fix scldiv calculation Greg Kroah-Hartman
2024-08-15 13:24 ` [PATCH 5.15 414/484] ALSA: usb-audio: Re-add ScratchAmp quirk entries Greg Kroah-Hartman
2024-08-15 13:24 ` [PATCH 5.15 415/484] ASoC: meson: axg-fifo: fix irq scheduling issue with PREEMPT_RT Greg Kroah-Hartman
2024-08-15 13:24 ` [PATCH 5.15 416/484] drm/client: fix null pointer dereference in drm_client_modeset_probe Greg Kroah-Hartman
2024-08-15 13:24 ` [PATCH 5.15 417/484] ALSA: line6: Fix racy access to midibuf Greg Kroah-Hartman
2024-08-15 13:24 ` [PATCH 5.15 418/484] ALSA: hda: Add HP MP9 G4 Retail System AMS to force connect list Greg Kroah-Hartman
2024-08-15 13:24 ` [PATCH 5.15 419/484] ALSA: hda/hdmi: Yet more pin fix for HP EliteDesk 800 G4 Greg Kroah-Hartman
2024-08-15 13:24 ` [PATCH 5.15 420/484] usb: vhci-hcd: Do not drop references before new references are gained Greg Kroah-Hartman
2024-08-15 13:24 ` [PATCH 5.15 421/484] USB: serial: debug: do not echo input by default Greg Kroah-Hartman
2024-08-15 13:24 ` [PATCH 5.15 422/484] usb: gadget: core: Check for unset descriptor Greg Kroah-Hartman
2024-08-15 13:24 ` [PATCH 5.15 423/484] usb: gadget: u_serial: Set start_delayed during suspend Greg Kroah-Hartman
2024-08-15 13:24 ` [PATCH 5.15 424/484] scsi: mpi3mr: Avoid IOMMU page faults on REPORT ZONES Greg Kroah-Hartman
2024-08-15 13:24 ` [PATCH 5.15 425/484] scsi: ufs: core: Fix hba->last_dme_cmd_tstamp timestamp updating logic Greg Kroah-Hartman
2024-08-15 13:24 ` [PATCH 5.15 426/484] tick/broadcast: Move per CPU pointer access into the atomic section Greg Kroah-Hartman
2024-08-15 13:24 ` [PATCH 5.15 427/484] vhost-vdpa: switch to use vmf_insert_pfn() in the fault handler Greg Kroah-Hartman
2024-08-15 13:24 ` [PATCH 5.15 428/484] ntp: Clamp maxerror and esterror to operating range Greg Kroah-Hartman
2024-08-15 13:24 ` [PATCH 5.15 429/484] clocksource: Reduce the default clocksource_watchdog() retries to 2 Greg Kroah-Hartman
2024-08-15 13:24 ` [PATCH 5.15 430/484] torture: Enable clocksource watchdog with "tsc=watchdog" Greg Kroah-Hartman
2024-08-15 13:24 ` [PATCH 5.15 431/484] clocksource: Scale the watchdog read retries automatically Greg Kroah-Hartman
2024-08-15 13:24 ` [PATCH 5.15 432/484] clocksource: Fix brown-bag boolean thinko in cs_watchdog_read() Greg Kroah-Hartman
2024-08-15 13:24 ` [PATCH 5.15 433/484] irqchip/meson-gpio: support more than 8 channels gpio irq Greg Kroah-Hartman
2024-08-15 13:24 ` [PATCH 5.15 434/484] irqchip/meson-gpio: Convert meson_gpio_irq_controller::lock to raw_spinlock_t Greg Kroah-Hartman
2024-08-15 13:24 ` [PATCH 5.15 435/484] driver core: Fix uevent_show() vs driver detach race Greg Kroah-Hartman
2024-08-15 13:24 ` [PATCH 5.15 436/484] ntp: Safeguard against time_constant overflow Greg Kroah-Hartman
2024-08-15 13:24 ` [PATCH 5.15 437/484] timekeeping: Fix bogus clock_was_set() invocation in do_adjtimex() Greg Kroah-Hartman
2024-08-15 13:24 ` [PATCH 5.15 438/484] serial: core: check uartclk for zero to avoid divide by zero Greg Kroah-Hartman
2024-08-15 13:24 ` [PATCH 5.15 439/484] kcov: properly check for softirq context Greg Kroah-Hartman
2024-08-15 13:24 ` [PATCH 5.15 440/484] irqchip/xilinx: Fix shift out of bounds Greg Kroah-Hartman
2024-08-15 13:24 ` [PATCH 5.15 441/484] genirq/irqdesc: Honor caller provided affinity in alloc_desc() Greg Kroah-Hartman
2024-08-15 13:25 ` [PATCH 5.15 442/484] power: supply: axp288_charger: Fix constant_charge_voltage writes Greg Kroah-Hartman
2024-08-15 13:25 ` [PATCH 5.15 443/484] power: supply: axp288_charger: Round constant_charge_voltage writes down Greg Kroah-Hartman
2024-08-15 13:25 ` [PATCH 5.15 444/484] tracing: Fix overflow in get_free_elt() Greg Kroah-Hartman
2024-08-15 13:25 ` [PATCH 5.15 445/484] padata: Fix possible divide-by-0 panic in padata_mt_helper() Greg Kroah-Hartman
2024-08-15 13:25 ` [PATCH 5.15 446/484] x86/mtrr: Check if fixed MTRRs exist before saving them Greg Kroah-Hartman
2024-08-15 13:25 ` [PATCH 5.15 447/484] sched/smt: Introduce sched_smt_present_inc/dec() helper Greg Kroah-Hartman
2024-08-15 13:25 ` [PATCH 5.15 448/484] sched/smt: Fix unbalance sched_smt_present dec/inc Greg Kroah-Hartman
2024-08-15 13:25 ` [PATCH 5.15 449/484] drm/bridge: analogix_dp: properly handle zero sized AUX transactions Greg Kroah-Hartman
2024-08-15 13:25 ` [PATCH 5.15 450/484] drm/mgag200: Set DDC timeout in milliseconds Greg Kroah-Hartman
2024-08-15 13:25 ` [PATCH 5.15 451/484] mptcp: sched: check both directions for backup Greg Kroah-Hartman
2024-08-15 13:25 ` [PATCH 5.15 452/484] mptcp: distinguish rcv vs sent backup flag in requests Greg Kroah-Hartman
2024-08-15 13:25 ` [PATCH 5.15 453/484] mptcp: fix NL PM announced address accounting Greg Kroah-Hartman
2024-08-15 13:25 ` [PATCH 5.15 454/484] mptcp: mib: count MPJ with backup flag Greg Kroah-Hartman
2024-08-15 13:25 ` [PATCH 5.15 455/484] mptcp: fix bad RCVPRUNED mib accounting Greg Kroah-Hartman
2024-08-15 13:25 ` [PATCH 5.15 456/484] mptcp: pm: only set request_bkup flag when sending MP_PRIO Greg Kroah-Hartman
2024-08-15 13:25 ` [PATCH 5.15 457/484] mptcp: export local_address Greg Kroah-Hartman
2024-08-15 13:25 ` [PATCH 5.15 458/484] mptcp: pm: fix backup support in signal endpoints Greg Kroah-Hartman
2024-08-15 13:25 ` [PATCH 5.15 459/484] selftests: mptcp: join: validate backup in MPJ Greg Kroah-Hartman
2024-08-15 13:25 ` [PATCH 5.15 460/484] selftests: mptcp: join: check backup support in signal endp Greg Kroah-Hartman
2024-08-15 13:25 ` [PATCH 5.15 461/484] btrfs: fix corruption after buffer fault in during direct IO append write Greg Kroah-Hartman
2024-08-15 13:25 ` [PATCH 5.15 462/484] xfs: fix log recovery buffer allocation for the legacy h_size fixup Greg Kroah-Hartman
2024-08-15 13:25 ` [PATCH 5.15 463/484] btrfs: fix double inode unlock for direct IO sync writes Greg Kroah-Hartman
2024-08-15 13:25 ` [PATCH 5.15 464/484] PCI/DPC: Fix use-after-free on concurrent DPC and hot-removal Greg Kroah-Hartman
2024-08-15 13:25 ` [PATCH 5.15 465/484] tls: fix race between tx work scheduling and socket close Greg Kroah-Hartman
2024-08-15 13:25 ` [PATCH 5.15 466/484] netfilter: nf_tables: set element extended ACK reporting support Greg Kroah-Hartman
2024-08-15 13:25 ` [PATCH 5.15 467/484] netfilter: nf_tables: use timestamp to check for set element timeout Greg Kroah-Hartman
2024-08-15 13:25 ` [PATCH 5.15 468/484] netfilter: nf_tables: bail out if stateful expression provides no .clone Greg Kroah-Hartman
2024-08-15 13:25 ` [PATCH 5.15 469/484] netfilter: nf_tables: allow clone callbacks to sleep Greg Kroah-Hartman
2024-08-15 13:25 ` [PATCH 5.15 470/484] netfilter: nf_tables: prefer nft_chain_validate Greg Kroah-Hartman
2024-08-15 13:25 ` [PATCH 5.15 471/484] net: stmmac: Enable mac_managed_pm phylink config Greg Kroah-Hartman
2024-08-15 13:25 ` [PATCH 5.15 472/484] PCI: dwc: Restore MSI Receiver mask during resume Greg Kroah-Hartman
2024-08-15 13:25 ` [PATCH 5.15 473/484] wifi: mac80211: check basic rates validity Greg Kroah-Hartman
2024-08-15 13:25 ` [PATCH 5.15 474/484] mptcp: fully established after ADD_ADDR echo on MPJ Greg Kroah-Hartman
2024-08-15 13:25 ` [PATCH 5.15 475/484] drm/i915/gem: Fix Virtual Memory mapping boundaries calculation Greg Kroah-Hartman
2024-08-15 13:25 ` [PATCH 5.15 476/484] powerpc: Avoid nmi_enter/nmi_exit in real mode interrupt Greg Kroah-Hartman
2024-08-15 13:25 ` [PATCH 5.15 477/484] arm64: dts: qcom: msm8996: correct #clock-cells for QMP PHY nodes Greg Kroah-Hartman
2024-08-15 13:25 ` [PATCH 5.15 478/484] arm64: cpufeature: Fix the visibility of compat hwcaps Greg Kroah-Hartman
2024-08-15 13:25 ` [PATCH 5.15 479/484] exec: Fix ToCToU between perm check and set-uid/gid usage Greg Kroah-Hartman
2024-08-15 13:25 ` [PATCH 5.15 480/484] nvme/pci: Add APST quirk for Lenovo N60z laptop Greg Kroah-Hartman
2024-08-15 13:25 ` [PATCH 5.15 481/484] usb: gadget: u_audio: Check return codes from usb_ep_enable and config_ep_by_speed Greg Kroah-Hartman
2024-08-15 13:25 ` [PATCH 5.15 482/484] binfmt_flat: Fix corruption when not offsetting data start Greg Kroah-Hartman
2024-08-15 13:25 ` [PATCH 5.15 483/484] wifi: cfg80211: restrict NL80211_ATTR_TXQ_QUANTUM values Greg Kroah-Hartman
2024-08-15 13:25 ` [PATCH 5.15 484/484] ARM: dts: imx6qdl-kontron-samx6i: fix phy-mode Greg Kroah-Hartman
2024-08-15 20:55 ` [PATCH 5.15 000/484] 5.15.165-rc1 review Florian Fainelli
2024-08-16  8:52 ` Anders Roxell
2024-08-16  9:48   ` Greg Kroah-Hartman

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20240815131952.339731275@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=andriy.shevchenko@linux.intel.com \
    --cc=broonie@kernel.org \
    --cc=patches@lists.linux.dev \
    --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