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, Takashi Iwai <tiwai@suse.de>,
	Sasha Levin <sashal@kernel.org>
Subject: [PATCH 5.15 436/691] ALSA: usb-audio: Add input value sanity checks for standard types
Date: Tue, 15 Oct 2024 13:26:24 +0200	[thread overview]
Message-ID: <20241015112457.646341359@linuxfoundation.org> (raw)
In-Reply-To: <20241015112440.309539031@linuxfoundation.org>

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

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

From: Takashi Iwai <tiwai@suse.de>

[ Upstream commit 901e85677ec0bb9a69fb9eab1feafe0c4eb7d07e ]

For an invalid input value that is out of the given range, currently
USB-audio driver corrects the value silently and accepts without
errors.  This is no wrong behavior, per se, but the recent kselftest
rather wants to have an error in such a case, hence a different
behavior is expected now.

This patch adds a sanity check at each control put for the standard
mixer types and returns an error if an invalid value is given.

Note that this covers only the standard mixer types.  The mixer quirks
that have own control callbacks would need different coverage.

Link: https://patch.msgid.link/20240806124651.28203-1-tiwai@suse.de
Signed-off-by: Takashi Iwai <tiwai@suse.de>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 sound/usb/mixer.c | 35 +++++++++++++++++++++++++++--------
 sound/usb/mixer.h |  1 +
 2 files changed, 28 insertions(+), 8 deletions(-)

diff --git a/sound/usb/mixer.c b/sound/usb/mixer.c
index 9906785a02e92..ae27e5c57c70e 100644
--- a/sound/usb/mixer.c
+++ b/sound/usb/mixer.c
@@ -1346,6 +1346,19 @@ static int get_min_max_with_quirks(struct usb_mixer_elem_info *cval,
 
 #define get_min_max(cval, def)	get_min_max_with_quirks(cval, def, NULL)
 
+/* get the max value advertised via control API */
+static int get_max_exposed(struct usb_mixer_elem_info *cval)
+{
+	if (!cval->max_exposed) {
+		if (cval->res)
+			cval->max_exposed =
+				DIV_ROUND_UP(cval->max - cval->min, cval->res);
+		else
+			cval->max_exposed = cval->max - cval->min;
+	}
+	return cval->max_exposed;
+}
+
 /* get a feature/mixer unit info */
 static int mixer_ctl_feature_info(struct snd_kcontrol *kcontrol,
 				  struct snd_ctl_elem_info *uinfo)
@@ -1358,11 +1371,8 @@ static int mixer_ctl_feature_info(struct snd_kcontrol *kcontrol,
 	else
 		uinfo->type = SNDRV_CTL_ELEM_TYPE_INTEGER;
 	uinfo->count = cval->channels;
-	if (cval->val_type == USB_MIXER_BOOLEAN ||
-	    cval->val_type == USB_MIXER_INV_BOOLEAN) {
-		uinfo->value.integer.min = 0;
-		uinfo->value.integer.max = 1;
-	} else {
+	if (cval->val_type != USB_MIXER_BOOLEAN &&
+	    cval->val_type != USB_MIXER_INV_BOOLEAN) {
 		if (!cval->initialized) {
 			get_min_max_with_quirks(cval, 0, kcontrol);
 			if (cval->initialized && cval->dBmin >= cval->dBmax) {
@@ -1374,10 +1384,10 @@ static int mixer_ctl_feature_info(struct snd_kcontrol *kcontrol,
 					       &kcontrol->id);
 			}
 		}
-		uinfo->value.integer.min = 0;
-		uinfo->value.integer.max =
-			DIV_ROUND_UP(cval->max - cval->min, cval->res);
 	}
+
+	uinfo->value.integer.min = 0;
+	uinfo->value.integer.max = get_max_exposed(cval);
 	return 0;
 }
 
@@ -1418,6 +1428,7 @@ static int mixer_ctl_feature_put(struct snd_kcontrol *kcontrol,
 				 struct snd_ctl_elem_value *ucontrol)
 {
 	struct usb_mixer_elem_info *cval = kcontrol->private_data;
+	int max_val = get_max_exposed(cval);
 	int c, cnt, val, oval, err;
 	int changed = 0;
 
@@ -1430,6 +1441,8 @@ static int mixer_ctl_feature_put(struct snd_kcontrol *kcontrol,
 			if (err < 0)
 				return filter_error(cval, err);
 			val = ucontrol->value.integer.value[cnt];
+			if (val < 0 || val > max_val)
+				return -EINVAL;
 			val = get_abs_value(cval, val);
 			if (oval != val) {
 				snd_usb_set_cur_mix_value(cval, c + 1, cnt, val);
@@ -1443,6 +1456,8 @@ static int mixer_ctl_feature_put(struct snd_kcontrol *kcontrol,
 		if (err < 0)
 			return filter_error(cval, err);
 		val = ucontrol->value.integer.value[0];
+		if (val < 0 || val > max_val)
+			return -EINVAL;
 		val = get_abs_value(cval, val);
 		if (val != oval) {
 			snd_usb_set_cur_mix_value(cval, 0, 0, val);
@@ -2301,6 +2316,8 @@ static int mixer_ctl_procunit_put(struct snd_kcontrol *kcontrol,
 	if (err < 0)
 		return filter_error(cval, err);
 	val = ucontrol->value.integer.value[0];
+	if (val < 0 || val > get_max_exposed(cval))
+		return -EINVAL;
 	val = get_abs_value(cval, val);
 	if (val != oval) {
 		set_cur_ctl_value(cval, cval->control << 8, val);
@@ -2663,6 +2680,8 @@ static int mixer_ctl_selector_put(struct snd_kcontrol *kcontrol,
 	if (err < 0)
 		return filter_error(cval, err);
 	val = ucontrol->value.enumerated.item[0];
+	if (val < 0 || val >= cval->max) /* here cval->max = # elements */
+		return -EINVAL;
 	val = get_abs_value(cval, val);
 	if (val != oval) {
 		set_cur_ctl_value(cval, cval->control << 8, val);
diff --git a/sound/usb/mixer.h b/sound/usb/mixer.h
index 98ea24d91d803..e3f3740204f54 100644
--- a/sound/usb/mixer.h
+++ b/sound/usb/mixer.h
@@ -88,6 +88,7 @@ struct usb_mixer_elem_info {
 	int channels;
 	int val_type;
 	int min, max, res;
+	int max_exposed; /* control API exposes the value in 0..max_exposed */
 	int dBmin, dBmax;
 	int cached;
 	int cache_val[MAX_CHANNELS];
-- 
2.43.0




  parent reply	other threads:[~2024-10-15 11:58 UTC|newest]

Thread overview: 706+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-10-15 11:19 [PATCH 5.15 000/691] 5.15.168-rc1 review Greg Kroah-Hartman
2024-10-15 11:19 ` [PATCH 5.15 001/691] parisc: Fix 64-bit userspace syscall path Greg Kroah-Hartman
2024-10-15 11:19 ` [PATCH 5.15 002/691] parisc: Fix stack start for ADDR_NO_RANDOMIZE personality Greg Kroah-Hartman
2024-10-15 11:19 ` [PATCH 5.15 003/691] of/irq: Support #msi-cells=<0> in of_msi_get_domain Greg Kroah-Hartman
2024-10-15 11:19 ` [PATCH 5.15 004/691] drm: omapdrm: Add missing check for alloc_ordered_workqueue Greg Kroah-Hartman
2024-10-15 11:19 ` [PATCH 5.15 005/691] jbd2: stop waiting for space when jbd2_cleanup_journal_tail() returns error Greg Kroah-Hartman
2024-10-15 11:19 ` [PATCH 5.15 006/691] jbd2: correctly compare tids with tid_geq function in jbd2_fc_begin_commit Greg Kroah-Hartman
2024-10-15 11:19 ` [PATCH 5.15 007/691] mm: krealloc: consider spare memory for __GFP_ZERO Greg Kroah-Hartman
2024-10-15 11:19 ` [PATCH 5.15 008/691] ocfs2: fix the la space leak when unmounting an ocfs2 volume Greg Kroah-Hartman
2024-10-15 11:19 ` [PATCH 5.15 009/691] ocfs2: fix uninit-value in ocfs2_get_block() Greg Kroah-Hartman
2024-10-15 11:19 ` [PATCH 5.15 010/691] ocfs2: reserve space for inline xattr before attaching reflink tree Greg Kroah-Hartman
2024-10-15 11:19 ` [PATCH 5.15 011/691] ocfs2: cancel dqi_sync_work before freeing oinfo Greg Kroah-Hartman
2024-10-15 11:19 ` [PATCH 5.15 012/691] ocfs2: remove unreasonable unlock in ocfs2_read_blocks Greg Kroah-Hartman
2024-10-15 11:19 ` [PATCH 5.15 013/691] ocfs2: fix null-ptr-deref when journal load failed Greg Kroah-Hartman
2024-10-15 11:19 ` [PATCH 5.15 014/691] ocfs2: fix possible null-ptr-deref in ocfs2_set_buffer_uptodate Greg Kroah-Hartman
2024-10-15 11:19 ` [PATCH 5.15 015/691] usbnet: ipheth: fix carrier detection in modes 1 and 4 Greg Kroah-Hartman
2024-10-15 11:19 ` [PATCH 5.15 016/691] net: ethernet: use ip_hdrlen() instead of bit shift Greg Kroah-Hartman
2024-10-15 11:19 ` [PATCH 5.15 017/691] net: phy: vitesse: repair vsc73xx autonegotiation Greg Kroah-Hartman
2024-10-15 11:19 ` [PATCH 5.15 018/691] powerpc/mm: Fix boot warning with hugepages and CONFIG_DEBUG_VIRTUAL Greg Kroah-Hartman
2024-10-15 11:19 ` [PATCH 5.15 019/691] btrfs: update target inodes ctime on unlink Greg Kroah-Hartman
2024-10-15 11:19 ` [PATCH 5.15 020/691] Input: ads7846 - ratelimit the spi_sync error message Greg Kroah-Hartman
2024-10-15 11:19 ` [PATCH 5.15 021/691] Input: synaptics - enable SMBus for HP Elitebook 840 G2 Greg Kroah-Hartman
2024-10-15 11:19 ` [PATCH 5.15 022/691] HID: multitouch: Add support for GT7868Q Greg Kroah-Hartman
2024-10-15 11:19 ` [PATCH 5.15 023/691] scripts: kconfig: merge_config: config files: add a trailing newline Greg Kroah-Hartman
2024-10-15 11:19 ` [PATCH 5.15 024/691] platform/surface: aggregator_registry: Add support for Surface Laptop Go 3 Greg Kroah-Hartman
2024-10-15 11:19 ` [PATCH 5.15 025/691] drm/msm/adreno: Fix error return if missing firmware-name Greg Kroah-Hartman
2024-10-15 11:19 ` [PATCH 5.15 026/691] Input: i8042 - add Fujitsu Lifebook E756 to i8042 quirk table Greg Kroah-Hartman
2024-10-15 11:19 ` [PATCH 5.15 027/691] NFSv4: Fix clearing of layout segments in layoutreturn Greg Kroah-Hartman
2024-10-15 11:19 ` [PATCH 5.15 028/691] NFS: Avoid unnecessary rescanning of the per-server delegation list Greg Kroah-Hartman
2024-10-15 11:19 ` [PATCH 5.15 029/691] platform/x86: panasonic-laptop: Fix SINF array out of bounds accesses Greg Kroah-Hartman
2024-10-15 11:19 ` [PATCH 5.15 030/691] platform/x86: panasonic-laptop: Allocate 1 entry extra in the sinf array Greg Kroah-Hartman
2024-10-15 11:19 ` [PATCH 5.15 031/691] mptcp: pm: Fix uaf in __timer_delete_sync Greg Kroah-Hartman
2024-10-15 11:19 ` [PATCH 5.15 032/691] arm64: dts: rockchip: override BIOS_DISABLE signal via GPIO hog on RK3399 Puma Greg Kroah-Hartman
2024-10-15 11:19 ` [PATCH 5.15 033/691] minmax: reduce min/max macro expansion in atomisp driver Greg Kroah-Hartman
2024-10-15 11:19 ` [PATCH 5.15 034/691] net: tighten bad gso csum offset check in virtio_net_hdr Greg Kroah-Hartman
2024-10-15 11:19 ` [PATCH 5.15 035/691] mm: avoid leaving partial pfn mappings around in error case Greg Kroah-Hartman
2024-10-15 11:19 ` [PATCH 5.15 036/691] fs/ntfs3: Use kvfree to free memory allocated by kvmalloc Greg Kroah-Hartman
2024-10-15 11:19 ` [PATCH 5.15 037/691] arm64: dts: rockchip: fix PMIC interrupt pin in pinctrl for ROCK Pi E Greg Kroah-Hartman
2024-10-15 11:19 ` [PATCH 5.15 038/691] eeprom: digsy_mtc: Fix 93xx46 driver probe failure Greg Kroah-Hartman
2024-10-15 11:19 ` [PATCH 5.15 039/691] selftests/bpf: Support SOCK_STREAM in unix_inet_redir_to_connected() Greg Kroah-Hartman
2024-10-15 11:19 ` [PATCH 5.15 040/691] hwmon: (pmbus) Introduce and use write_byte_data callback Greg Kroah-Hartman
2024-10-15 11:19 ` [PATCH 5.15 041/691] hwmon: (pmbus) Conditionally clear individual status bits for pmbus rev >= 1.2 Greg Kroah-Hartman
2024-10-15 11:19 ` [PATCH 5.15 042/691] ice: fix accounting for filters shared by multiple VSIs Greg Kroah-Hartman
2024-10-15 11:19 ` [PATCH 5.15 043/691] igb: Always call igb_xdp_ring_update_tail() under Tx lock Greg Kroah-Hartman
2024-10-15 11:19 ` [PATCH 5.15 044/691] net/mlx5e: Add missing link modes to ptys2ethtool_map Greg Kroah-Hartman
2024-10-15 11:19 ` [PATCH 5.15 045/691] net/mlx5: Explicitly set scheduling element and TSAR type Greg Kroah-Hartman
2024-10-15 11:19 ` [PATCH 5.15 046/691] net/mlx5: Add support to create match definer Greg Kroah-Hartman
2024-10-15 11:19 ` [PATCH 5.15 047/691] net/mlx5: Add IFC bits and enums for flow meter Greg Kroah-Hartman
2024-10-15 11:19 ` [PATCH 5.15 048/691] net/mlx5: Add missing masks and QoS bit masks for scheduling elements Greg Kroah-Hartman
2024-10-15 11:19 ` [PATCH 5.15 049/691] fou: fix initialization of grc Greg Kroah-Hartman
2024-10-15 11:19 ` [PATCH 5.15 050/691] octeontx2-af: Set XOFF on other child transmit schedulers during SMQ flush Greg Kroah-Hartman
2024-10-15 11:19 ` [PATCH 5.15 051/691] octeontx2-af: Modify SMQ flush sequence to drop packets Greg Kroah-Hartman
2024-10-15 11:20 ` [PATCH 5.15 052/691] net: ftgmac100: Enable TX interrupt to avoid TX timeout Greg Kroah-Hartman
2024-10-15 11:20 ` [PATCH 5.15 053/691] netfilter: nft_socket: fix sk refcount leaks Greg Kroah-Hartman
2024-10-15 11:20 ` [PATCH 5.15 054/691] net: dpaa: Pad packets to ETH_ZLEN Greg Kroah-Hartman
2024-10-15 11:20 ` [PATCH 5.15 055/691] spi: nxp-fspi: fix the KASAN report out-of-bounds bug Greg Kroah-Hartman
2024-10-15 11:20 ` [PATCH 5.15 056/691] soundwire: stream: Revert "soundwire: stream: fix programming slave ports for non-continous port maps" Greg Kroah-Hartman
2024-10-15 11:20 ` [PATCH 5.15 057/691] dma-buf: heaps: Fix off-by-one in CMA heap fault handler Greg Kroah-Hartman
2024-10-15 11:20 ` [PATCH 5.15 058/691] ASoC: meson: axg-card: fix use-after-free Greg Kroah-Hartman
2024-10-15 11:20 ` [PATCH 5.15 059/691] ASoC: allow module autoloading for table db1200_pids Greg Kroah-Hartman
2024-10-15 11:20 ` [PATCH 5.15 060/691] ALSA: hda/realtek - Fixed ALC256 headphone no sound Greg Kroah-Hartman
2024-10-15 11:20 ` [PATCH 5.15 061/691] ALSA: hda/realtek - FIxed ALC285 " Greg Kroah-Hartman
2024-10-15 11:20 ` [PATCH 5.15 062/691] scsi: lpfc: Fix overflow build issue Greg Kroah-Hartman
2024-10-15 11:20 ` [PATCH 5.15 063/691] pinctrl: at91: make it work with current gpiolib Greg Kroah-Hartman
2024-10-15 11:20 ` [PATCH 5.15 064/691] microblaze: dont treat zero reserved memory regions as error Greg Kroah-Hartman
2024-10-15 11:20 ` [PATCH 5.15 065/691] net: ftgmac100: Ensure tx descriptor updates are visible Greg Kroah-Hartman
2024-10-15 11:20 ` [PATCH 5.15 066/691] wifi: iwlwifi: lower message level for FW buffer destination Greg Kroah-Hartman
2024-10-15 11:20 ` [PATCH 5.15 067/691] wifi: iwlwifi: mvm: fix iwl_mvm_scan_fits() calculation Greg Kroah-Hartman
2024-10-15 11:20 ` [PATCH 5.15 068/691] wifi: iwlwifi: mvm: pause TCM when the firmware is stopped Greg Kroah-Hartman
2024-10-15 11:20 ` [PATCH 5.15 069/691] wifi: iwlwifi: mvm: dont wait for tx queues if firmware is dead Greg Kroah-Hartman
2024-10-15 11:20 ` [PATCH 5.15 070/691] wifi: iwlwifi: clear trans->state earlier upon error Greg Kroah-Hartman
2024-10-15 11:20 ` [PATCH 5.15 071/691] ASoC: intel: fix module autoloading Greg Kroah-Hartman
2024-10-15 11:20 ` [PATCH 5.15 072/691] ASoC: tda7419: " Greg Kroah-Hartman
2024-10-15 11:20 ` [PATCH 5.15 073/691] spi: spidev: Add an entry for elgin,jg10309-01 Greg Kroah-Hartman
2024-10-15 11:20 ` [PATCH 5.15 074/691] drm: komeda: Fix an issue related to normalized zpos Greg Kroah-Hartman
2024-10-15 11:20 ` [PATCH 5.15 075/691] spi: bcm63xx: Enable module autoloading Greg Kroah-Hartman
2024-10-15 11:20 ` [PATCH 5.15 076/691] x86/hyperv: Set X86_FEATURE_TSC_KNOWN_FREQ when Hyper-V provides frequency Greg Kroah-Hartman
2024-10-15 11:20 ` [PATCH 5.15 077/691] spi: spidev: Add missing spi_device_id for jg10309-01 Greg Kroah-Hartman
2024-10-15 11:20 ` [PATCH 5.15 078/691] ocfs2: add bounds checking to ocfs2_xattr_find_entry() Greg Kroah-Hartman
2024-10-15 11:20 ` [PATCH 5.15 079/691] ocfs2: strict bound check before memcmp in ocfs2_xattr_find_entry() Greg Kroah-Hartman
2024-10-15 11:20 ` [PATCH 5.15 080/691] cgroup: Make operations on the cgroup root_list RCU safe Greg Kroah-Hartman
2024-10-15 11:20 ` [PATCH 5.15 081/691] netfilter: nft_set_pipapo: walk over current view on netlink dump Greg Kroah-Hartman
2024-10-15 11:20 ` [PATCH 5.15 082/691] netfilter: nf_tables: missing iterator type in lookup walk Greg Kroah-Hartman
2024-10-15 11:20 ` [PATCH 5.15 083/691] Revert "wifi: cfg80211: check wiphy mutex is held for wdev mutex" Greg Kroah-Hartman
2024-10-15 11:20 ` [PATCH 5.15 084/691] gpio: prevent potential speculation leaks in gpio_device_get_desc() Greg Kroah-Hartman
2024-10-15 11:20 ` [PATCH 5.15 085/691] inet: inet_defrag: prevent sk release while still in use Greg Kroah-Hartman
2024-10-15 11:20 ` [PATCH 5.15 086/691] gpiolib: cdev: Ignore reconfiguration without direction Greg Kroah-Hartman
2024-10-15 11:20 ` [PATCH 5.15 087/691] cgroup: Move rcu_head up near the top of cgroup_root Greg Kroah-Hartman
2024-10-15 11:20 ` [PATCH 5.15 088/691] USB: serial: pl2303: add device id for Macrosilicon MS3020 Greg Kroah-Hartman
2024-10-15 11:20 ` [PATCH 5.15 089/691] USB: usbtmc: prevent kernel-usb-infoleak Greg Kroah-Hartman
2024-10-15 11:20 ` [PATCH 5.15 090/691] EDAC/synopsys: Add support for version 3 of the Synopsys EDAC DDR Greg Kroah-Hartman
2024-10-15 11:20 ` [PATCH 5.15 091/691] EDAC/synopsys: Use the correct register to disable the error interrupt on v3 hw Greg Kroah-Hartman
2024-10-15 11:20 ` [PATCH 5.15 092/691] EDAC/synopsys: Re-enable the error interrupts " Greg Kroah-Hartman
2024-10-15 11:20 ` [PATCH 5.15 093/691] EDAC/synopsys: Fix ECC status and IRQ control race condition Greg Kroah-Hartman
2024-10-15 11:20 ` [PATCH 5.15 094/691] EDAC/synopsys: Fix error injection on Zynq UltraScale+ Greg Kroah-Hartman
2024-10-15 11:20 ` [PATCH 5.15 095/691] wifi: rtw88: always wait for both firmware loading attempts Greg Kroah-Hartman
2024-10-15 11:20 ` [PATCH 5.15 096/691] crypto: xor - fix template benchmarking Greg Kroah-Hartman
2024-10-15 11:20 ` [PATCH 5.15 097/691] ACPI: PMIC: Remove unneeded check in tps68470_pmic_opregion_probe() Greg Kroah-Hartman
2024-10-15 11:20 ` [PATCH 5.15 098/691] wifi: ath9k: fix parameter check in ath9k_init_debug() Greg Kroah-Hartman
2024-10-15 11:20 ` [PATCH 5.15 099/691] wifi: ath9k: Remove error checks when creating debugfs entries Greg Kroah-Hartman
2024-10-15 11:20 ` [PATCH 5.15 100/691] net: stmmac: dwmac-loongson: Init ref and PTP clocks rate Greg Kroah-Hartman
2024-10-15 11:20 ` [PATCH 5.15 101/691] wifi: rtw88: remove CPT execution branch never used Greg Kroah-Hartman
2024-10-15 11:20 ` [PATCH 5.15 102/691] fs: explicitly unregister per-superblock BDIs Greg Kroah-Hartman
2024-10-15 11:20 ` [PATCH 5.15 103/691] mount: warn only once about timestamp range expiration Greg Kroah-Hartman
2024-10-15 11:20 ` [PATCH 5.15 104/691] fs/namespace: fnic: Switch to use %ptTd Greg Kroah-Hartman
2024-10-15 11:20 ` [PATCH 5.15 105/691] mount: handle OOM on mnt_warn_timestamp_expiry Greg Kroah-Hartman
2024-10-15 11:20 ` [PATCH 5.15 106/691] wifi: iwlwifi: mvm: increase the time between ranging measurements Greg Kroah-Hartman
2024-10-15 11:20 ` [PATCH 5.15 107/691] padata: Honor the callers alignment in case of chunk_size 0 Greg Kroah-Hartman
2024-10-15 11:20 ` [PATCH 5.15 108/691] can: j1939: use correct function name in comment Greg Kroah-Hartman
2024-10-15 11:20 ` [PATCH 5.15 109/691] ACPI: bus: Avoid using CPPC if not supported by firmware Greg Kroah-Hartman
2024-10-15 11:20 ` [PATCH 5.15 110/691] ACPI: CPPC: Fix MASK_VAL() usage Greg Kroah-Hartman
2024-10-15 11:20 ` [PATCH 5.15 111/691] netfilter: nf_tables: elements with timeout below CONFIG_HZ never expire Greg Kroah-Hartman
2024-10-15 11:21 ` [PATCH 5.15 112/691] netfilter: nf_tables: reject element expiration with no timeout Greg Kroah-Hartman
2024-10-15 11:21 ` [PATCH 5.15 113/691] netfilter: nf_tables: reject expiration higher than timeout Greg Kroah-Hartman
2024-10-15 11:21 ` [PATCH 5.15 114/691] netfilter: nf_tables: remove annotation to access set timeout while holding lock Greg Kroah-Hartman
2024-10-15 11:21 ` [PATCH 5.15 115/691] cpufreq: ti-cpufreq: Introduce quirks to handle syscon fails appropriately Greg Kroah-Hartman
2024-10-15 11:21 ` [PATCH 5.15 116/691] x86/sgx: Fix deadlock in SGX NUMA node search Greg Kroah-Hartman
2024-10-15 11:21 ` [PATCH 5.15 117/691] wifi: cfg80211: fix UBSAN noise in cfg80211_wext_siwscan() Greg Kroah-Hartman
2024-10-15 11:21 ` [PATCH 5.15 118/691] wifi: mt76: mt7915: fix rx filter setting for bfee functionality Greg Kroah-Hartman
2024-10-15 11:21 ` [PATCH 5.15 119/691] wifi: cfg80211: fix two more possible UBSAN-detected off-by-one errors Greg Kroah-Hartman
2024-10-15 11:21 ` [PATCH 5.15 120/691] wifi: mac80211: use two-phase skb reclamation in ieee80211_do_stop() Greg Kroah-Hartman
2024-10-15 11:21 ` [PATCH 5.15 121/691] wifi: wilc1000: fix potential RCU dereference issue in wilc_parse_join_bss_param Greg Kroah-Hartman
2024-10-15 11:21 ` [PATCH 5.15 122/691] sock_map: Add a cond_resched() in sock_hash_free() Greg Kroah-Hartman
2024-10-15 11:21 ` [PATCH 5.15 123/691] can: bcm: Clear bo->bcm_proc_read after remove_proc_entry() Greg Kroah-Hartman
2024-10-15 11:21 ` [PATCH 5.15 124/691] can: m_can: m_can_close(): stop clocks after device has been shut down Greg Kroah-Hartman
2024-10-15 11:21 ` [PATCH 5.15 125/691] Bluetooth: btusb: Fix not handling ZPL/short-transfer Greg Kroah-Hartman
2024-10-15 11:21 ` [PATCH 5.15 126/691] bareudp: Pull inner IP header in bareudp_udp_encap_recv() Greg Kroah-Hartman
2024-10-15 11:21 ` [PATCH 5.15 127/691] net: geneve: support IPv4/IPv6 as inner protocol Greg Kroah-Hartman
2024-10-15 11:21 ` [PATCH 5.15 128/691] geneve: Fix incorrect inner network header offset when innerprotoinherit is set Greg Kroah-Hartman
2024-10-15 11:21 ` [PATCH 5.15 129/691] bareudp: Pull inner IP header on xmit Greg Kroah-Hartman
2024-10-15 11:21 ` [PATCH 5.15 130/691] net: enetc: Use IRQF_NO_AUTOEN flag in request_irq() Greg Kroah-Hartman
2024-10-15 11:21 ` [PATCH 5.15 131/691] r8169: disable ALDPS per default for RTL8125 Greg Kroah-Hartman
2024-10-15 11:21 ` [PATCH 5.15 132/691] net: ipv6: rpl_iptunnel: Fix memory leak in rpl_input Greg Kroah-Hartman
2024-10-15 11:21 ` [PATCH 5.15 133/691] net: tipc: avoid possible garbage value Greg Kroah-Hartman
2024-10-15 11:21 ` [PATCH 5.15 134/691] block, bfq: fix possible UAF for bfqq->bic with merge chain Greg Kroah-Hartman
2024-10-15 11:21 ` [PATCH 5.15 135/691] block, bfq: choose the last bfqq from merge chain in bfq_setup_cooperator() Greg Kroah-Hartman
2024-10-15 11:21 ` [PATCH 5.15 136/691] block, bfq: dont break merge chain in bfq_split_bfqq() Greg Kroah-Hartman
2024-10-15 11:21 ` [PATCH 5.15 137/691] block: print symbolic error name instead of error code Greg Kroah-Hartman
2024-10-15 11:21 ` [PATCH 5.15 138/691] block: fix potential invalid pointer dereference in blk_add_partition Greg Kroah-Hartman
2024-10-15 11:21 ` [PATCH 5.15 139/691] spi: ppc4xx: handle irq_of_parse_and_map() errors Greg Kroah-Hartman
2024-10-15 11:21 ` [PATCH 5.15 140/691] spi: ppc4xx: Avoid returning 0 when failed to parse and map IRQ Greg Kroah-Hartman
2024-10-15 11:21 ` [PATCH 5.15 141/691] arm64: dts: renesas: r9a07g044: Correct GICD and GICR sizes Greg Kroah-Hartman
2024-10-15 11:21 ` [PATCH 5.15 142/691] ARM: dts: microchip: sam9x60: Fix rtc/rtt clocks Greg Kroah-Hartman
2024-10-15 11:21 ` [PATCH 5.15 143/691] ARM: dts: imx7d-zii-rmu2: fix Ethernet PHY pinctrl property Greg Kroah-Hartman
2024-10-15 11:21 ` [PATCH 5.15 144/691] ARM: versatile: fix OF node leak in CPUs prepare Greg Kroah-Hartman
2024-10-15 11:21 ` [PATCH 5.15 145/691] reset: berlin: fix OF node leak in probe() error path Greg Kroah-Hartman
2024-10-15 11:21 ` [PATCH 5.15 146/691] reset: k210: " Greg Kroah-Hartman
2024-10-15 11:21 ` [PATCH 5.15 147/691] clocksource/drivers/qcom: Add missing iounmap() on errors in msm_dt_timer_init() Greg Kroah-Hartman
2024-10-15 11:21 ` [PATCH 5.15 148/691] m68k: Fix kernel_clone_args.flags in m68k_clone() Greg Kroah-Hartman
2024-10-15 11:21 ` [PATCH 5.15 149/691] hwmon: (max16065) Fix overflows seen when writing limits Greg Kroah-Hartman
2024-10-15 11:21 ` [PATCH 5.15 150/691] i2c: Add i2c_get_match_data() Greg Kroah-Hartman
2024-10-15 11:21 ` [PATCH 5.15 151/691] hwmon: (max16065) Remove use of i2c_match_id() Greg Kroah-Hartman
2024-10-15 11:21 ` [PATCH 5.15 152/691] hwmon: (max16065) Fix alarm attributes Greg Kroah-Hartman
2024-10-15 11:21 ` [PATCH 5.15 153/691] mtd: slram: insert break after errors in parsing the map Greg Kroah-Hartman
2024-10-15 11:21 ` [PATCH 5.15 154/691] hwmon: (ntc_thermistor) fix module autoloading Greg Kroah-Hartman
2024-10-15 11:21 ` [PATCH 5.15 155/691] power: supply: axp20x_battery: Remove design from min and max voltage Greg Kroah-Hartman
2024-10-15 11:21 ` [PATCH 5.15 156/691] power: supply: max17042_battery: Fix SOC threshold calc w/ no current sense Greg Kroah-Hartman
2024-10-15 11:21 ` [PATCH 5.15 157/691] fbdev: hpfb: Fix an error handling path in hpfb_dio_probe() Greg Kroah-Hartman
2024-10-15 11:21 ` [PATCH 5.15 158/691] mtd: powernv: Add check devm_kasprintf() returned value Greg Kroah-Hartman
2024-10-15 11:21 ` [PATCH 5.15 159/691] pmdomain: core: Harden inter-column space in debug summary Greg Kroah-Hartman
2024-10-15 11:21 ` [PATCH 5.15 160/691] drm/stm: Fix an error handling path in stm_drm_platform_probe() Greg Kroah-Hartman
2024-10-15 11:21 ` [PATCH 5.15 161/691] drm/amd/display: Add null check for set_output_gamma in dcn30_set_output_transfer_func Greg Kroah-Hartman
2024-10-15 11:21 ` [PATCH 5.15 162/691] drm/amdgpu: Replace one-element array with flexible-array member Greg Kroah-Hartman
2024-10-15 11:21 ` [PATCH 5.15 163/691] drm/amdgpu: properly handle vbios fake edid sizing Greg Kroah-Hartman
2024-10-15 11:21 ` [PATCH 5.15 164/691] drm/radeon: Replace one-element array with flexible-array member Greg Kroah-Hartman
2024-10-15 11:21 ` [PATCH 5.15 165/691] drm/radeon: properly handle vbios fake edid sizing Greg Kroah-Hartman
2024-10-15 11:21 ` [PATCH 5.15 166/691] scsi: NCR5380: Add SCp members to struct NCR5380_cmd Greg Kroah-Hartman
2024-10-15 11:21 ` [PATCH 5.15 167/691] scsi: NCR5380: Check for phase match during PDMA fixup Greg Kroah-Hartman
2024-10-15 11:21 ` [PATCH 5.15 168/691] drm/rockchip: vop: Allow 4096px width scaling Greg Kroah-Hartman
2024-10-15 11:21 ` [PATCH 5.15 169/691] drm/rockchip: dw_hdmi: Fix reading EDID when using a forced mode Greg Kroah-Hartman
2024-10-15 11:21 ` [PATCH 5.15 170/691] drm/radeon/evergreen_cs: fix int overflow errors in cs track offsets Greg Kroah-Hartman
2024-10-15 11:21 ` [PATCH 5.15 171/691] drm/bridge: lontium-lt8912b: Validate mode in drm_bridge_funcs::mode_valid() Greg Kroah-Hartman
2024-10-15 11:22 ` [PATCH 5.15 172/691] scsi: elx: libefc: Fix potential use after free in efc_nport_vport_del() Greg Kroah-Hartman
2024-10-15 11:22 ` [PATCH 5.15 173/691] jfs: fix out-of-bounds in dbNextAG() and diAlloc() Greg Kroah-Hartman
2024-10-15 11:22 ` [PATCH 5.15 174/691] drm/mediatek: Use spin_lock_irqsave() for CRTC event lock Greg Kroah-Hartman
2024-10-15 11:22 ` [PATCH 5.15 175/691] powerpc/32: Remove the nobats kernel parameter Greg Kroah-Hartman
2024-10-15 11:22 ` [PATCH 5.15 176/691] powerpc/32: Remove noltlbs " Greg Kroah-Hartman
2024-10-15 11:22 ` [PATCH 5.15 177/691] powerpc/8xx: Fix initial memory mapping Greg Kroah-Hartman
2024-10-15 11:22 ` [PATCH 5.15 178/691] powerpc/8xx: Fix kernel vs user address comparison Greg Kroah-Hartman
2024-10-15 11:22 ` [PATCH 5.15 179/691] drm/msm: Fix incorrect file name output in adreno_request_fw() Greg Kroah-Hartman
2024-10-15 11:22 ` [PATCH 5.15 180/691] drm/msm/a5xx: disable preemption in submits by default Greg Kroah-Hartman
2024-10-15 11:22 ` [PATCH 5.15 181/691] drm/msm/a5xx: properly clear preemption records on resume Greg Kroah-Hartman
2024-10-15 11:22 ` [PATCH 5.15 182/691] drm/msm/a5xx: fix races in preemption evaluation stage Greg Kroah-Hartman
2024-10-15 11:22 ` [PATCH 5.15 183/691] drm/msm: Drop priv->lastctx Greg Kroah-Hartman
2024-10-15 11:22 ` [PATCH 5.15 184/691] drm/msm/a5xx: workaround early ring-buffer emptiness check Greg Kroah-Hartman
2024-10-15 11:22 ` [PATCH 5.15 185/691] ipmi: docs: dont advertise deprecated sysfs entries Greg Kroah-Hartman
2024-10-15 11:22 ` [PATCH 5.15 186/691] drm/msm: fix %s null argument error Greg Kroah-Hartman
2024-10-15 11:22 ` [PATCH 5.15 187/691] drivers:drm:exynos_drm_gsc:Fix wrong assignment in gsc_bind() Greg Kroah-Hartman
2024-10-15 11:22 ` [PATCH 5.15 188/691] xen: use correct end address of kernel for conflict checking Greg Kroah-Hartman
2024-10-15 11:22 ` [PATCH 5.15 189/691] xen/swiotlb: add alignment check for dma buffers Greg Kroah-Hartman
2024-10-15 11:22 ` [PATCH 5.15 190/691] tpm: Clean up TPM space after command failure Greg Kroah-Hartman
2024-10-15 11:22 ` [PATCH 5.15 191/691] selftests/bpf: Fix compile error from rlim_t in sk_storage_map.c Greg Kroah-Hartman
2024-10-15 11:22 ` [PATCH 5.15 192/691] selftests/bpf: Fix error compiling bpf_iter_setsockopt.c with musl libc Greg Kroah-Hartman
2024-10-15 11:22 ` [PATCH 5.15 193/691] selftests/bpf: Fix missing ARRAY_SIZE() definition in bench.c Greg Kroah-Hartman
2024-10-15 11:22 ` [PATCH 5.15 194/691] selftests/bpf: Fix compiling kfree_skb.c with musl-libc Greg Kroah-Hartman
2024-10-15 11:22 ` [PATCH 5.15 195/691] selftests/bpf: Fix compiling flow_dissector.c " Greg Kroah-Hartman
2024-10-15 11:22 ` [PATCH 5.15 196/691] selftests/bpf: Fix compiling tcp_rtt.c " Greg Kroah-Hartman
2024-10-15 11:22 ` [PATCH 5.15 197/691] selftests/bpf: Fix compiling core_reloc.c " Greg Kroah-Hartman
2024-10-15 11:22 ` [PATCH 5.15 198/691] selftests/bpf: Fix errors compiling cg_storage_multi.h with musl libc Greg Kroah-Hartman
2024-10-15 11:22 ` [PATCH 5.15 199/691] selftests/bpf: Fix error compiling test_lru_map.c Greg Kroah-Hartman
2024-10-15 11:22 ` [PATCH 5.15 200/691] selftests/bpf: Fix C++ compile error from missing _Bool type Greg Kroah-Hartman
2024-10-15 11:22 ` [PATCH 5.15 201/691] xz: cleanup CRC32 edits from 2018 Greg Kroah-Hartman
2024-10-15 11:22 ` [PATCH 5.15 202/691] kthread: fix task state in kthread worker if being frozen Greg Kroah-Hartman
2024-10-15 11:22 ` [PATCH 5.15 203/691] ext4: clear EXT4_GROUP_INFO_WAS_TRIMMED_BIT even mount with discard Greg Kroah-Hartman
2024-10-15 11:22 ` [PATCH 5.15 204/691] smackfs: Use rcu_assign_pointer() to ensure safe assignment in smk_set_cipso Greg Kroah-Hartman
2024-10-15 11:22 ` [PATCH 5.15 205/691] ext4: avoid buffer_head leak in ext4_mark_inode_used() Greg Kroah-Hartman
2024-10-15 11:22 ` [PATCH 5.15 206/691] ext4: avoid potential buffer_head leak in __ext4_new_inode() Greg Kroah-Hartman
2024-10-15 11:22 ` [PATCH 5.15 207/691] ext4: avoid negative min_clusters in find_group_orlov() Greg Kroah-Hartman
2024-10-15 11:22 ` [PATCH 5.15 208/691] ext4: return error on ext4_find_inline_entry Greg Kroah-Hartman
2024-10-15 11:22 ` [PATCH 5.15 209/691] ext4: avoid OOB when system.data xattr changes underneath the filesystem Greg Kroah-Hartman
2024-10-15 11:22 ` [PATCH 5.15 210/691] nilfs2: fix potential null-ptr-deref in nilfs_btree_insert() Greg Kroah-Hartman
2024-10-15 11:22 ` [PATCH 5.15 211/691] nilfs2: determine empty node blocks as corrupted Greg Kroah-Hartman
2024-10-15 11:22 ` [PATCH 5.15 212/691] nilfs2: fix potential oob read in nilfs_btree_check_delete() Greg Kroah-Hartman
2024-10-15 11:22 ` [PATCH 5.15 213/691] bpf: Fix bpf_strtol and bpf_strtoul helpers for 32bit Greg Kroah-Hartman
2024-10-15 11:22 ` [PATCH 5.15 214/691] perf mem: Free the allocated sort string, fixing a leak Greg Kroah-Hartman
2024-10-15 11:22 ` [PATCH 5.15 215/691] perf test sample-parsing: Add endian test for struct branch_flags Greg Kroah-Hartman
2024-10-15 11:22 ` [PATCH 5.15 216/691] perf evsel: Reduce scope of evsel__ignore_missing_thread Greg Kroah-Hartman
2024-10-15 11:22 ` [PATCH 5.15 217/691] perf evsel: Rename variable cpu to index Greg Kroah-Hartman
2024-10-15 11:22 ` [PATCH 5.15 218/691] perf tools: Support reading PERF_FORMAT_LOST Greg Kroah-Hartman
2024-10-15 11:22 ` [PATCH 5.15 219/691] perf inject: Fix leader sampling inserting additional samples Greg Kroah-Hartman
2024-10-15 11:22 ` [PATCH 5.15 220/691] perf sched timehist: Fix missing free of session in perf_sched__timehist() Greg Kroah-Hartman
2024-10-15 11:22 ` [PATCH 5.15 221/691] perf sched timehist: Fixed timestamp error when unable to confirm event sched_in time Greg Kroah-Hartman
2024-10-15 11:22 ` [PATCH 5.15 222/691] perf time-utils: Fix 32-bit nsec parsing Greg Kroah-Hartman
2024-10-15 11:22 ` [PATCH 5.15 223/691] clk: imx: imx8mp: fix clock tree update of TF-A managed clocks Greg Kroah-Hartman
2024-10-15 11:22 ` [PATCH 5.15 224/691] clk: imx: imx8qxp: Register dc0_bypass0_clk before disp clk Greg Kroah-Hartman
2024-10-15 11:22 ` [PATCH 5.15 225/691] clk: imx: imx8qxp: Parent should be initialized earlier than the clock Greg Kroah-Hartman
2024-10-15 11:22 ` [PATCH 5.15 226/691] remoteproc: imx_rproc: Correct ddr alias for i.MX8M Greg Kroah-Hartman
2024-10-15 11:22 ` [PATCH 5.15 227/691] remoteproc: imx_rproc: Initialize workqueue earlier Greg Kroah-Hartman
2024-10-15 11:22 ` [PATCH 5.15 228/691] clk: rockchip: Set parent rate for DCLK_VOP clock on RK3228 Greg Kroah-Hartman
2024-10-15 11:22 ` [PATCH 5.15 229/691] Input: ilitek_ts_i2c - avoid wrong input subsystem sync Greg Kroah-Hartman
2024-10-15 11:22 ` [PATCH 5.15 230/691] Input: ilitek_ts_i2c - add report id message validation Greg Kroah-Hartman
2024-10-15 11:22 ` [PATCH 5.15 231/691] drivers: media: dvb-frontends/rtl2832: fix an out-of-bounds write error Greg Kroah-Hartman
2024-10-15 11:23 ` [PATCH 5.15 232/691] drivers: media: dvb-frontends/rtl2830: " Greg Kroah-Hartman
2024-10-15 11:23 ` [PATCH 5.15 233/691] PCI: keystone: Fix if-statement expression in ks_pcie_quirk() Greg Kroah-Hartman
2024-10-15 11:23 ` [PATCH 5.15 234/691] PCI: xilinx-nwl: Fix register misspelling Greg Kroah-Hartman
2024-10-15 11:23 ` [PATCH 5.15 235/691] PCI: xilinx-nwl: Clean up clock on probe failure/removal Greg Kroah-Hartman
2024-10-15 11:23 ` [PATCH 5.15 236/691] RDMA/iwcm: Fix WARNING:at_kernel/workqueue.c:#check_flush_dependency Greg Kroah-Hartman
2024-10-15 11:23 ` [PATCH 5.15 237/691] pinctrl: single: fix missing error code in pcs_probe() Greg Kroah-Hartman
2024-10-15 11:23 ` [PATCH 5.15 238/691] RDMA/rtrs: Reset hb_missed_cnt after receiving other traffic from peer Greg Kroah-Hartman
2024-10-15 11:23 ` [PATCH 5.15 239/691] RDMA/rtrs-clt: Reset cid to con_num - 1 to stay in bounds Greg Kroah-Hartman
2024-10-15 11:23 ` [PATCH 5.15 240/691] clk: ti: dra7-atl: Fix leak of of_nodes Greg Kroah-Hartman
2024-10-15 11:23 ` [PATCH 5.15 241/691] nfsd: remove unneeded EEXIST error check in nfsd_do_file_acquire Greg Kroah-Hartman
2024-10-15 11:23 ` [PATCH 5.15 242/691] nfsd: fix refcount leak when file is unhashed after being found Greg Kroah-Hartman
2024-10-15 11:23 ` [PATCH 5.15 243/691] pinctrl: mvebu: Use devm_platform_get_and_ioremap_resource() Greg Kroah-Hartman
2024-10-15 11:23 ` [PATCH 5.15 244/691] pinctrl: mvebu: Fix devinit_dove_pinctrl_probe function Greg Kroah-Hartman
2024-10-15 11:23 ` [PATCH 5.15 245/691] IB/core: Fix ib_cache_setup_one error flow cleanup Greg Kroah-Hartman
2024-10-15 11:23 ` [PATCH 5.15 246/691] watchdog: imx_sc_wdt: Dont disable WDT in suspend Greg Kroah-Hartman
2024-10-15 11:23 ` [PATCH 5.15 247/691] RDMA/hns: Dont modify rq next block addr in HIP09 QPC Greg Kroah-Hartman
2024-10-15 11:23 ` [PATCH 5.15 248/691] RDMA/hns: Fix the overflow risk of hem_list_calc_ba_range() Greg Kroah-Hartman
2024-10-15 11:23 ` [PATCH 5.15 249/691] RDMA/hns: Fix spin_unlock_irqrestore() called with IRQs enabled Greg Kroah-Hartman
2024-10-15 11:23 ` [PATCH 5.15 250/691] RDMA/hns: Remove unused abnormal interrupt of type RAS Greg Kroah-Hartman
2024-10-15 11:23 ` [PATCH 5.15 251/691] RDMA/hns: Fix the wrong type of return value of the interrupt handler Greg Kroah-Hartman
2024-10-15 11:23 ` [PATCH 5.15 252/691] RDMA/hns: Refactor the abnormal interrupt handler function Greg Kroah-Hartman
2024-10-15 11:23 ` [PATCH 5.15 253/691] RDMA/hns: Fix VF triggering PF reset in abnormal interrupt handler Greg Kroah-Hartman
2024-10-15 11:23 ` [PATCH 5.15 254/691] RDMA/hns: Optimize hem allocation performance Greg Kroah-Hartman
2024-10-15 11:23 ` [PATCH 5.15 255/691] riscv: Fix fp alignment bug in perf_callchain_user() Greg Kroah-Hartman
2024-10-15 11:23 ` [PATCH 5.15 256/691] RDMA/cxgb4: Added NULL check for lookup_atid Greg Kroah-Hartman
2024-10-15 11:23 ` [PATCH 5.15 257/691] RDMA/irdma: fix error message in irdma_modify_qp_roce() Greg Kroah-Hartman
2024-10-15 11:23 ` [PATCH 5.15 258/691] ntb: intel: Fix the NULL vs IS_ERR() bug for debugfs_create_dir() Greg Kroah-Hartman
2024-10-15 11:23 ` [PATCH 5.15 259/691] ntb_perf: Fix printk format Greg Kroah-Hartman
2024-10-15 11:23 ` [PATCH 5.15 260/691] nfsd: call cache_put if xdr_reserve_space returns NULL Greg Kroah-Hartman
2024-10-15 11:23 ` [PATCH 5.15 261/691] nfsd: return -EINVAL when namelen is 0 Greg Kroah-Hartman
2024-10-15 11:23 ` [PATCH 5.15 262/691] f2fs: fix typo Greg Kroah-Hartman
2024-10-15 11:23 ` [PATCH 5.15 263/691] f2fs: fix to update i_ctime in __f2fs_setxattr() Greg Kroah-Hartman
2024-10-15 11:23 ` [PATCH 5.15 264/691] f2fs: remove unneeded check condition " Greg Kroah-Hartman
2024-10-15 11:23 ` [PATCH 5.15 265/691] f2fs: reduce expensive checkpoint trigger frequency Greg Kroah-Hartman
2024-10-15 11:23 ` [PATCH 5.15 266/691] f2fs: optimize error handling in redirty_blocks Greg Kroah-Hartman
2024-10-15 11:23 ` [PATCH 5.15 267/691] f2fs: fix to wait page writeback before setting gcing flag Greg Kroah-Hartman
2024-10-15 11:23 ` [PATCH 5.15 268/691] f2fs: introduce F2FS_IPU_HONOR_OPU_WRITE ipu policy Greg Kroah-Hartman
2024-10-15 11:23 ` [PATCH 5.15 269/691] f2fs: clean up w/ dotdot_name Greg Kroah-Hartman
2024-10-15 11:23 ` [PATCH 5.15 270/691] f2fs: get rid of online repaire on corrupted directory Greg Kroah-Hartman
2024-10-15 11:23 ` [PATCH 5.15 271/691] spi: lpspi: Silence error message upon deferred probe Greg Kroah-Hartman
2024-10-15 11:23 ` [PATCH 5.15 272/691] spi: lpspi: release requested DMA channels Greg Kroah-Hartman
2024-10-15 11:23 ` [PATCH 5.15 273/691] spi: spi-fsl-lpspi: Undo runtime PM changes at driver exit time Greg Kroah-Hartman
2024-10-15 11:23 ` [PATCH 5.15 274/691] iio: adc: ad7606: fix oversampling gpio array Greg Kroah-Hartman
2024-10-15 11:23 ` [PATCH 5.15 275/691] iio: adc: ad7606: fix standby gpio state to match the documentation Greg Kroah-Hartman
2024-10-15 11:23 ` [PATCH 5.15 276/691] coresight: tmc: sg: Do not leak sg_table Greg Kroah-Hartman
2024-10-15 11:23 ` [PATCH 5.15 277/691] interconnect: qcom: sm8250: Enable sync_state Greg Kroah-Hartman
2024-10-15 11:23 ` [PATCH 5.15 278/691] vdpa: Add eventfd for the vdpa callback Greg Kroah-Hartman
2024-10-15 11:23 ` [PATCH 5.15 279/691] vhost_vdpa: assign irq bypass producer token correctly Greg Kroah-Hartman
2024-10-15 11:23 ` [PATCH 5.15 280/691] Revert "dm: requeue IO if mapping table not yet available" Greg Kroah-Hartman
2024-10-15 11:23 ` [PATCH 5.15 281/691] net: axienet: Clean up device used for DMA calls Greg Kroah-Hartman
2024-10-15 11:23 ` [PATCH 5.15 282/691] net: axienet: Clean up DMA start/stop and error handling Greg Kroah-Hartman
2024-10-15 11:23 ` [PATCH 5.15 283/691] net: axienet: dont set IRQ timer when IRQ delay not used Greg Kroah-Hartman
2024-10-15 11:23 ` [PATCH 5.15 284/691] net: axienet: implement NAPI and GRO receive Greg Kroah-Hartman
2024-10-15 11:23 ` [PATCH 5.15 285/691] net: axienet: reduce default RX interrupt threshold to 1 Greg Kroah-Hartman
2024-10-15 11:23 ` [PATCH 5.15 286/691] net: axienet: add coalesce timer ethtool configuration Greg Kroah-Hartman
2024-10-15 11:23 ` [PATCH 5.15 287/691] net: axienet: Be more careful about updating tx_bd_tail Greg Kroah-Hartman
2024-10-15 11:23 ` [PATCH 5.15 288/691] net: axienet: Use NAPI for TX completion path Greg Kroah-Hartman
2024-10-15 11:23 ` [PATCH 5.15 289/691] net: axienet: Switch to 64-bit RX/TX statistics Greg Kroah-Hartman
2024-10-15 11:23 ` [PATCH 5.15 290/691] net: xilinx: axienet: Fix packet counting Greg Kroah-Hartman
2024-10-15 11:23 ` [PATCH 5.15 291/691] netfilter: nf_reject_ipv6: fix nf_reject_ip6_tcphdr_put() Greg Kroah-Hartman
2024-10-15 11:24 ` [PATCH 5.15 292/691] net: seeq: Fix use after free vulnerability in ether3 Driver Due to Race Condition Greg Kroah-Hartman
2024-10-15 11:24 ` [PATCH 5.15 293/691] net: ipv6: select DST_CACHE from IPV6_RPL_LWTUNNEL Greg Kroah-Hartman
2024-10-15 11:24 ` [PATCH 5.15 294/691] tcp: check skb is non-NULL in tcp_rto_delta_us() Greg Kroah-Hartman
2024-10-15 11:24 ` [PATCH 5.15 295/691] net: qrtr: Update packets cloning when broadcasting Greg Kroah-Hartman
2024-10-15 11:24 ` [PATCH 5.15 296/691] bonding: Fix unnecessary warnings and logs from bond_xdp_get_xmit_slave() Greg Kroah-Hartman
2024-10-15 11:24 ` [PATCH 5.15 297/691] netfilter: nf_tables: Keep deleted flowtable hooks until after RCU Greg Kroah-Hartman
2024-10-15 11:24 ` [PATCH 5.15 298/691] netfilter: ctnetlink: compile ctnetlink_label_size with CONFIG_NF_CONNTRACK_EVENTS Greg Kroah-Hartman
2024-10-15 11:24 ` [PATCH 5.15 299/691] drm/amd/display: Fix Synaptics Cascaded Panamera DSC Determination Greg Kroah-Hartman
2024-10-15 11:24 ` [PATCH 5.15 300/691] Input: goodix - use the new soc_intel_is_byt() helper Greg Kroah-Hartman
2024-10-15 11:24 ` [PATCH 5.15 301/691] powercap: RAPL: fix invalid initialization for pl4_supported field Greg Kroah-Hartman
2024-10-15 11:24 ` [PATCH 5.15 302/691] x86/mm: Switch to new Intel CPU model defines Greg Kroah-Hartman
2024-10-15 11:24 ` [PATCH 5.15 303/691] vfio/pci: fix potential memory leak in vfio_intx_enable() Greg Kroah-Hartman
2024-10-15 11:24 ` [PATCH 5.15 304/691] selinux,smack: dont bypass permissions check in inode_setsecctx hook Greg Kroah-Hartman
2024-10-15 11:24 ` [PATCH 5.15 305/691] Remove *.orig pattern from .gitignore Greg Kroah-Hartman
2024-10-15 11:24 ` [PATCH 5.15 306/691] PCI: xilinx-nwl: Fix off-by-one in INTx IRQ handler Greg Kroah-Hartman
2024-10-15 11:24 ` [PATCH 5.15 307/691] ASoC: rt5682: Return devm_of_clk_add_hw_provider to transfer the error Greg Kroah-Hartman
2024-10-15 11:24 ` [PATCH 5.15 308/691] soc: versatile: integrator: fix OF node leak in probe() error path Greg Kroah-Hartman
2024-10-15 11:24 ` [PATCH 5.15 309/691] Revert "media: tuners: fix error return code of hybrid_tuner_request_state()" Greg Kroah-Hartman
2024-10-15 11:24 ` [PATCH 5.15 310/691] Input: i8042 - add TUXEDO Stellaris 16 Gen5 AMD to i8042 quirk table Greg Kroah-Hartman
2024-10-15 11:24 ` [PATCH 5.15 311/691] Input: i8042 - add TUXEDO Stellaris 15 Slim Gen6 " Greg Kroah-Hartman
2024-10-15 11:24 ` [PATCH 5.15 312/691] Input: i8042 - add another board name for TUXEDO Stellaris Gen5 AMD line Greg Kroah-Hartman
2024-10-15 11:24 ` [PATCH 5.15 313/691] drm/amd/display: Round calculated vtotal Greg Kroah-Hartman
2024-10-15 11:24 ` [PATCH 5.15 314/691] drm/amd/display: Validate backlight caps are sane Greg Kroah-Hartman
2024-10-15 11:24 ` [PATCH 5.15 315/691] scsi: mac_scsi: Revise printk(KERN_DEBUG ...) messages Greg Kroah-Hartman
2024-10-15 11:24 ` [PATCH 5.15 316/691] scsi: mac_scsi: Refactor polling loop Greg Kroah-Hartman
2024-10-15 11:24 ` [PATCH 5.15 317/691] scsi: mac_scsi: Disallow bus errors during PDMA send Greg Kroah-Hartman
2024-10-15 11:24 ` [PATCH 5.15 318/691] usbnet: fix cyclical race on disconnect with work queue Greg Kroah-Hartman
2024-10-15 11:24 ` [PATCH 5.15 319/691] USB: appledisplay: close race between probe and completion handler Greg Kroah-Hartman
2024-10-15 11:24 ` [PATCH 5.15 320/691] USB: misc: cypress_cy7c63: check for short transfer Greg Kroah-Hartman
2024-10-15 11:24 ` [PATCH 5.15 321/691] USB: class: CDC-ACM: fix race between get_serial and set_serial Greg Kroah-Hartman
2024-10-15 11:24 ` [PATCH 5.15 322/691] usb: cdnsp: Fix incorrect usb_request status Greg Kroah-Hartman
2024-10-15 11:24 ` [PATCH 5.15 323/691] usb: dwc2: drd: fix clock gating on USB role switch Greg Kroah-Hartman
2024-10-15 11:24 ` [PATCH 5.15 324/691] bus: integrator-lm: fix OF node leak in probe() Greg Kroah-Hartman
2024-10-15 11:24 ` [PATCH 5.15 325/691] firmware_loader: Block path traversal Greg Kroah-Hartman
2024-10-15 11:24 ` [PATCH 5.15 326/691] tty: rp2: Fix reset with non forgiving PCIe host bridges Greg Kroah-Hartman
2024-10-15 11:24 ` [PATCH 5.15 327/691] xhci: Set quirky xHC PCI hosts to D3 _after_ stopping and freeing them Greg Kroah-Hartman
2024-10-15 11:24 ` [PATCH 5.15 328/691] crypto: ccp - Properly unregister /dev/sev on sev PLATFORM_STATUS failure Greg Kroah-Hartman
2024-10-15 11:24 ` [PATCH 5.15 329/691] drbd: Fix atomicity violation in drbd_uuid_set_bm() Greg Kroah-Hartman
2024-10-15 11:24 ` [PATCH 5.15 330/691] drbd: Add NULL check for net_conf to prevent dereference in state validation Greg Kroah-Hartman
2024-10-15 11:24 ` [PATCH 5.15 331/691] ACPI: sysfs: validate return type of _STR method Greg Kroah-Hartman
2024-10-15 11:24 ` [PATCH 5.15 332/691] ACPI: resource: Add another DMI match for the TongFang GMxXGxx Greg Kroah-Hartman
2024-10-15 11:24 ` [PATCH 5.15 333/691] efistub/tpm: Use ACPI reclaim memory for event log to avoid corruption Greg Kroah-Hartman
2024-10-15 11:24 ` [PATCH 5.15 334/691] perf/x86/intel/pt: Fix sampling synchronization Greg Kroah-Hartman
2024-10-15 11:24 ` [PATCH 5.15 335/691] wifi: rtw88: 8822c: Fix reported RX band width Greg Kroah-Hartman
2024-10-15 11:24 ` [PATCH 5.15 336/691] wifi: mt76: mt7615: check devm_kasprintf() returned value Greg Kroah-Hartman
2024-10-15 11:24 ` [PATCH 5.15 337/691] debugobjects: Fix conditions in fill_pool() Greg Kroah-Hartman
2024-10-15 11:24 ` [PATCH 5.15 338/691] f2fs: prevent possible int overflow in dir_block_index() Greg Kroah-Hartman
2024-10-15 11:24 ` [PATCH 5.15 339/691] f2fs: avoid potential int overflow in sanity_check_area_boundary() Greg Kroah-Hartman
2024-10-15 11:24 ` [PATCH 5.15 340/691] hwrng: mtk - Use devm_pm_runtime_enable Greg Kroah-Hartman
2024-10-15 11:24 ` [PATCH 5.15 341/691] hwrng: bcm2835 - Add missing clk_disable_unprepare in bcm2835_rng_init Greg Kroah-Hartman
2024-10-15 11:24 ` [PATCH 5.15 342/691] hwrng: cctrng - Add missing clk_disable_unprepare in cctrng_resume Greg Kroah-Hartman
2024-10-15 11:24 ` [PATCH 5.15 343/691] arm64: dts: rockchip: Raise Pinebook Pros panel backlight PWM frequency Greg Kroah-Hartman
2024-10-15 11:24 ` [PATCH 5.15 344/691] arm64: dts: rockchip: Correct the Pinebook Pro battery design capacity Greg Kroah-Hartman
2024-10-15 11:24 ` [PATCH 5.15 345/691] vfs: fix race between evice_inodes() and find_inode()&iput() Greg Kroah-Hartman
2024-10-15 11:24 ` [PATCH 5.15 346/691] fs: Fix file_set_fowner LSM hook inconsistencies Greg Kroah-Hartman
2024-10-15 11:24 ` [PATCH 5.15 347/691] nfs: fix memory leak in error path of nfs4_do_reclaim Greg Kroah-Hartman
2024-10-15 11:24 ` [PATCH 5.15 348/691] EDAC/igen6: Fix conversion of system address to physical memory address Greg Kroah-Hartman
2024-10-15 11:24 ` [PATCH 5.15 349/691] padata: use integer wrap around to prevent deadlock on seq_nr overflow Greg Kroah-Hartman
2024-10-15 11:24 ` [PATCH 5.15 350/691] soc: versatile: realview: fix memory leak during device remove Greg Kroah-Hartman
2024-10-15 11:24 ` [PATCH 5.15 351/691] soc: versatile: realview: fix soc_dev " Greg Kroah-Hartman
2024-10-15 11:25 ` [PATCH 5.15 352/691] usb: yurex: Replace snprintf() with the safer scnprintf() variant Greg Kroah-Hartman
2024-10-15 11:25 ` [PATCH 5.15 353/691] USB: misc: yurex: fix race between read and write Greg Kroah-Hartman
2024-10-15 11:25 ` [PATCH 5.15 354/691] xhci: fix event ring segment table related masks and variables in header Greg Kroah-Hartman
2024-10-15 11:25 ` [PATCH 5.15 355/691] xhci: remove xhci_test_trb_in_td_math early development check Greg Kroah-Hartman
2024-10-15 11:25 ` [PATCH 5.15 356/691] xhci: Refactor interrupter code for initial multi interrupter support Greg Kroah-Hartman
2024-10-15 11:25 ` [PATCH 5.15 357/691] xhci: Preserve RsvdP bits in ERSTBA register correctly Greg Kroah-Hartman
2024-10-15 11:25 ` [PATCH 5.15 358/691] xhci: Add a quirk for writing ERST in high-low order Greg Kroah-Hartman
2024-10-15 11:25 ` [PATCH 5.15 359/691] usb: xhci: fix loss of data on Cadence xHC Greg Kroah-Hartman
2024-10-15 11:25 ` [PATCH 5.15 360/691] pps: remove usage of the deprecated ida_simple_xx() API Greg Kroah-Hartman
2024-10-15 11:25 ` [PATCH 5.15 361/691] pps: add an error check in parport_attach Greg Kroah-Hartman
2024-10-15 11:25 ` [PATCH 5.15 362/691] x86/idtentry: Incorporate definitions/declarations of the FRED entries Greg Kroah-Hartman
2024-10-15 11:25 ` [PATCH 5.15 363/691] x86/entry: Remove unwanted instrumentation in common_interrupt() Greg Kroah-Hartman
2024-10-15 11:25 ` [PATCH 5.15 364/691] io_uring/sqpoll: do not allow pinning outside of cpuset Greg Kroah-Hartman
2024-10-15 13:20   ` MOESSBAUER, Felix
2024-10-15 11:25 ` [PATCH 5.15 365/691] bpf: lsm: Set bpf_lsm_blob_sizes.lbs_task to 0 Greg Kroah-Hartman
2024-10-15 11:25 ` [PATCH 5.15 366/691] lockdep: fix deadlock issue between lockdep and rcu Greg Kroah-Hartman
2024-10-15 11:25 ` [PATCH 5.15 367/691] mm: only enforce minimum stack gap size if its sensible Greg Kroah-Hartman
2024-10-15 11:25 ` [PATCH 5.15 368/691] i2c: aspeed: Update the stop sw state when the bus recovery occurs Greg Kroah-Hartman
2024-10-15 11:25 ` [PATCH 5.15 369/691] i2c: isch: Add missed else Greg Kroah-Hartman
2024-10-15 11:25 ` [PATCH 5.15 370/691] usb: yurex: Fix inconsistent locking bug in yurex_read() Greg Kroah-Hartman
2024-10-15 11:25 ` [PATCH 5.15 371/691] spi: lpspi: Simplify some error message Greg Kroah-Hartman
2024-10-15 11:25 ` [PATCH 5.15 372/691] static_call: Handle module init failure correctly in static_call_del_module() Greg Kroah-Hartman
2024-10-15 11:25 ` [PATCH 5.15 373/691] static_call: Replace pointless WARN_ON() in static_call_module_notify() Greg Kroah-Hartman
2024-10-15 11:25 ` [PATCH 5.15 374/691] mailbox: rockchip: fix a typo in module autoloading Greg Kroah-Hartman
2024-10-15 11:25 ` [PATCH 5.15 375/691] mailbox: bcm2835: Fix timeout during suspend mode Greg Kroah-Hartman
2024-10-15 11:25 ` [PATCH 5.15 376/691] ceph: remove the incorrect Fw reference check when dirtying pages Greg Kroah-Hartman
2024-10-15 11:25 ` [PATCH 5.15 377/691] ieee802154: Fix build error Greg Kroah-Hartman
2024-10-15 11:25 ` [PATCH 5.15 378/691] net/mlx5: Fix error path in multi-packet WQE transmit Greg Kroah-Hartman
2024-10-15 11:25 ` [PATCH 5.15 379/691] net/mlx5: Added cond_resched() to crdump collection Greg Kroah-Hartman
2024-10-15 11:25 ` [PATCH 5.15 380/691] net/mlx5e: Fix NULL deref in mlx5e_tir_builder_alloc() Greg Kroah-Hartman
2024-10-15 11:25 ` [PATCH 5.15 381/691] netfilter: uapi: NFTA_FLOWTABLE_HOOK is NLA_NESTED Greg Kroah-Hartman
2024-10-15 11:25 ` [PATCH 5.15 382/691] net: ieee802154: mcr20a: Use IRQF_NO_AUTOEN flag in request_irq() Greg Kroah-Hartman
2024-10-15 11:25 ` [PATCH 5.15 383/691] netfilter: nf_tables: prevent nf_skb_duplicated corruption Greg Kroah-Hartman
2024-10-15 11:25 ` [PATCH 5.15 384/691] Bluetooth: btmrvl: Use IRQF_NO_AUTOEN flag in request_irq() Greg Kroah-Hartman
2024-10-15 11:25 ` [PATCH 5.15 385/691] net: ethernet: lantiq_etop: fix memory disclosure Greg Kroah-Hartman
2024-10-15 11:25 ` [PATCH 5.15 386/691] net: avoid potential underflow in qdisc_pkt_len_init() with UFO Greg Kroah-Hartman
2024-10-15 11:25 ` [PATCH 5.15 387/691] net: add more sanity checks to qdisc_pkt_len_init() Greg Kroah-Hartman
2024-10-15 11:25 ` [PATCH 5.15 388/691] stmmac_pci: Fix underflow size in stmmac_rx Greg Kroah-Hartman
2024-10-15 11:25 ` [PATCH 5.15 389/691] net: stmmac: Disable automatic FCS/Pad stripping Greg Kroah-Hartman
2024-10-15 11:25 ` [PATCH 5.15 390/691] net: stmmac: dwmac4: extend timeout for VLAN Tag register busy bit check Greg Kroah-Hartman
2024-10-15 11:25 ` [PATCH 5.15 391/691] ipv4: ip_gre: Fix drops of small packets in ipgre_xmit Greg Kroah-Hartman
2024-10-15 11:25 ` [PATCH 5.15 392/691] ppp: do not assume bh is held in ppp_channel_bridge_input() Greg Kroah-Hartman
2024-10-15 11:25 ` [PATCH 5.15 393/691] sctp: set sk_state back to CLOSED if autobind fails in sctp_listen_start Greg Kroah-Hartman
2024-10-15 11:25 ` [PATCH 5.15 394/691] i2c: xiic: Fix broken locking on tx_msg Greg Kroah-Hartman
2024-10-15 11:25 ` [PATCH 5.15 395/691] i2c: xiic: Switch from waitqueue to completion Greg Kroah-Hartman
2024-10-15 11:25 ` [PATCH 5.15 396/691] i2c: xiic: Fix RX IRQ busy check Greg Kroah-Hartman
2024-10-15 11:25 ` [PATCH 5.15 397/691] i2c: xiic: xiic_xfer(): Fix runtime PM leak on error path Greg Kroah-Hartman
2024-10-15 11:25 ` [PATCH 5.15 398/691] i2c: xiic: improve error message when transfer fails to start Greg Kroah-Hartman
2024-10-15 11:25 ` [PATCH 5.15 399/691] i2c: xiic: Try re-initialization on bus busy timeout Greg Kroah-Hartman
2024-10-15 11:25 ` [PATCH 5.15 400/691] media: usbtv: Remove useless locks in usbtv_video_free() Greg Kroah-Hartman
2024-10-15 11:25 ` [PATCH 5.15 401/691] ALSA: mixer_oss: Remove some incorrect kfree_const() usages Greg Kroah-Hartman
2024-10-15 11:25 ` [PATCH 5.15 402/691] ALSA: hda/realtek: Fix the push button function for the ALC257 Greg Kroah-Hartman
2024-10-15 11:25 ` [PATCH 5.15 403/691] ALSA: hda/generic: Unconditionally prefer preferred_dacs pairs Greg Kroah-Hartman
2024-10-15 11:25 ` [PATCH 5.15 404/691] ASoC: imx-card: Set card.owner to avoid a warning calltrace if SND=m Greg Kroah-Hartman
2024-10-15 11:25 ` [PATCH 5.15 405/691] ALSA: hda/conexant: Fix conflicting quirk for System76 Pangolin Greg Kroah-Hartman
2024-10-15 11:25 ` [PATCH 5.15 406/691] f2fs: Require FMODE_WRITE for atomic write ioctls Greg Kroah-Hartman
2024-10-15 11:25 ` [PATCH 5.15 407/691] wifi: ath9k: fix possible integer overflow in ath9k_get_et_stats() Greg Kroah-Hartman
2024-10-15 11:25 ` [PATCH 5.15 408/691] wifi: ath9k_htc: Use __skb_set_length() for resetting urb before resubmit Greg Kroah-Hartman
2024-10-15 11:25 ` [PATCH 5.15 409/691] ice: Adjust over allocation of memory in ice_sched_add_root_node() and ice_sched_add_node() Greg Kroah-Hartman
2024-10-15 11:25 ` [PATCH 5.15 410/691] net/xen-netback: prevent UAF in xenvif_flush_hash() Greg Kroah-Hartman
2024-10-15 11:25 ` [PATCH 5.15 411/691] net: hisilicon: hip04: fix OF node leak in probe() Greg Kroah-Hartman
2024-10-15 11:26 ` [PATCH 5.15 412/691] net: hisilicon: hns_dsaf_mac: fix OF node leak in hns_mac_get_info() Greg Kroah-Hartman
2024-10-15 11:26 ` [PATCH 5.15 413/691] net: hisilicon: hns_mdio: fix OF node leak in probe() Greg Kroah-Hartman
2024-10-15 11:26 ` [PATCH 5.15 414/691] ACPI: PAD: fix crash in exit_round_robin() Greg Kroah-Hartman
2024-10-15 11:26 ` [PATCH 5.15 415/691] ACPICA: Fix memory leak if acpi_ps_get_next_namepath() fails Greg Kroah-Hartman
2024-10-15 11:26 ` [PATCH 5.15 416/691] ACPICA: Fix memory leak if acpi_ps_get_next_field() fails Greg Kroah-Hartman
2024-10-15 11:26 ` [PATCH 5.15 417/691] net: sched: consistently use rcu_replace_pointer() in taprio_change() Greg Kroah-Hartman
2024-10-15 11:26 ` [PATCH 5.15 418/691] blk_iocost: fix more out of bound shifts Greg Kroah-Hartman
2024-10-15 11:26 ` [PATCH 5.15 419/691] nvme-pci: qdepth 1 quirk Greg Kroah-Hartman
2024-10-15 11:26 ` [PATCH 5.15 420/691] wifi: ath11k: fix array out-of-bound access in SoC stats Greg Kroah-Hartman
2024-10-15 11:26 ` [PATCH 5.15 421/691] wifi: rtw88: select WANT_DEV_COREDUMP Greg Kroah-Hartman
2024-10-15 11:26 ` [PATCH 5.15 422/691] ACPI: EC: Do not release locks during operation region accesses Greg Kroah-Hartman
2024-10-15 11:26 ` [PATCH 5.15 423/691] ACPICA: check null return of ACPI_ALLOCATE_ZEROED() in acpi_db_convert_to_package() Greg Kroah-Hartman
2024-10-15 11:26 ` [PATCH 5.15 424/691] tipc: guard against string buffer overrun Greg Kroah-Hartman
2024-10-15 11:26 ` [PATCH 5.15 425/691] net: mvpp2: Increase size of queue_name buffer Greg Kroah-Hartman
2024-10-15 11:26 ` [PATCH 5.15 426/691] ipv4: Check !in_dev earlier for ioctl(SIOCSIFADDR) Greg Kroah-Hartman
2024-10-15 11:26 ` [PATCH 5.15 427/691] ipv4: Mask upper DSCP bits and ECN bits in NETLINK_FIB_LOOKUP family Greg Kroah-Hartman
2024-10-15 11:26 ` [PATCH 5.15 428/691] net: atlantic: Avoid warning about potential string truncation Greg Kroah-Hartman
2024-10-15 11:26 ` [PATCH 5.15 429/691] tcp: avoid reusing FIN_WAIT2 when trying to find port in connect() process Greg Kroah-Hartman
2024-10-15 11:26 ` [PATCH 5.15 430/691] ACPICA: iasl: handle empty connection_node Greg Kroah-Hartman
2024-10-15 11:26 ` [PATCH 5.15 431/691] proc: add config & param to block forcing mem writes Greg Kroah-Hartman
2024-10-15 11:26 ` [PATCH 5.15 432/691] wifi: mt76: mt7915: hold dev->mt76.mutex while disabling tx worker Greg Kroah-Hartman
2024-10-15 11:26 ` [PATCH 5.15 433/691] wifi: mwifiex: Fix memcpy() field-spanning write warning in mwifiex_cmd_802_11_scan_ext() Greg Kroah-Hartman
2024-10-15 11:26 ` [PATCH 5.15 434/691] nfp: Use IRQF_NO_AUTOEN flag in request_irq() Greg Kroah-Hartman
2024-10-15 11:26 ` [PATCH 5.15 435/691] signal: Replace BUG_ON()s Greg Kroah-Hartman
2024-10-15 11:26 ` Greg Kroah-Hartman [this message]
2024-10-15 11:26 ` [PATCH 5.15 437/691] x86/ioapic: Handle allocation failures gracefully Greg Kroah-Hartman
2024-10-15 11:26 ` [PATCH 5.15 438/691] ALSA: usb-audio: Define macros for quirk table entries Greg Kroah-Hartman
2024-10-15 11:26 ` [PATCH 5.15 439/691] ALSA: usb-audio: Add logitech Audio profile quirk Greg Kroah-Hartman
2024-10-15 11:26 ` [PATCH 5.15 440/691] tools/x86/kcpuid: Protect against faulty "max subleaf" values Greg Kroah-Hartman
2024-10-15 11:26 ` [PATCH 5.15 441/691] ALSA: asihpi: Fix potential OOB array access Greg Kroah-Hartman
2024-10-15 11:26 ` [PATCH 5.15 442/691] ALSA: hdsp: Break infinite MIDI input flush loop Greg Kroah-Hartman
2024-10-15 11:26 ` [PATCH 5.15 443/691] x86/syscall: Avoid memcpy() for ia32 syscall_get_arguments() Greg Kroah-Hartman
2024-10-15 11:26 ` [PATCH 5.15 444/691] fbdev: pxafb: Fix possible use after free in pxafb_task() Greg Kroah-Hartman
2024-10-15 11:26 ` [PATCH 5.15 445/691] rcuscale: Provide clear error when async specified without primitives Greg Kroah-Hartman
2024-10-15 11:26 ` [PATCH 5.15 446/691] iommu/arm-smmu-qcom: hide last LPASS SMMU context bank from linux Greg Kroah-Hartman
2024-10-15 11:26 ` [PATCH 5.15 447/691] power: reset: brcmstb: Do not go into infinite loop if reset fails Greg Kroah-Hartman
2024-10-15 11:26 ` [PATCH 5.15 448/691] iommu/vt-d: Always reserve a domain ID for identity setup Greg Kroah-Hartman
2024-10-15 11:26 ` [PATCH 5.15 449/691] iommu/vt-d: Fix potential lockup if qi_submit_sync called with 0 count Greg Kroah-Hartman
2024-10-15 11:26 ` [PATCH 5.15 450/691] drm/amd/display: Add null check for top_pipe_to_program in commit_planes_for_stream Greg Kroah-Hartman
2024-10-15 11:26 ` [PATCH 5.15 451/691] ata: sata_sil: Rename sil_blacklist to sil_quirks Greg Kroah-Hartman
2024-10-15 11:26 ` [PATCH 5.15 452/691] drm/amd/display: Check null pointers before using dc->clk_mgr Greg Kroah-Hartman
2024-10-15 11:26 ` [PATCH 5.15 453/691] jfs: UBSAN: shift-out-of-bounds in dbFindBits Greg Kroah-Hartman
2024-10-15 11:26 ` [PATCH 5.15 454/691] jfs: Fix uaf in dbFreeBits Greg Kroah-Hartman
2024-10-15 11:26 ` [PATCH 5.15 455/691] jfs: check if leafidx greater than num leaves per dmap tree Greg Kroah-Hartman
2024-10-15 11:26 ` [PATCH 5.15 456/691] scsi: smartpqi: correct stream detection Greg Kroah-Hartman
2024-10-15 11:26 ` [PATCH 5.15 457/691] jfs: Fix uninit-value access of new_ea in ea_buffer Greg Kroah-Hartman
2024-10-15 11:26 ` [PATCH 5.15 458/691] drm/amdgpu: add raven1 gfxoff quirk Greg Kroah-Hartman
2024-10-15 11:26 ` [PATCH 5.15 459/691] drm/amdgpu: enable gfxoff quirk on HP 705G4 Greg Kroah-Hartman
2024-10-15 11:26 ` [PATCH 5.15 460/691] HID: multitouch: Add support for Thinkpad X12 Gen 2 Kbd Portfolio Greg Kroah-Hartman
2024-10-15 11:26 ` [PATCH 5.15 461/691] platform/x86: touchscreen_dmi: add nanote-next quirk Greg Kroah-Hartman
2024-10-15 11:26 ` [PATCH 5.15 462/691] drm/amd/display: Check stream before comparing them Greg Kroah-Hartman
2024-10-15 11:26 ` [PATCH 5.15 463/691] drm/amd/display: Fix index out of bounds in DCN30 degamma hardware format translation Greg Kroah-Hartman
2024-10-15 11:26 ` [PATCH 5.15 464/691] drm/amd/display: Fix index out of bounds in " Greg Kroah-Hartman
2024-10-15 11:26 ` [PATCH 5.15 465/691] drm/amd/display: Fix index out of bounds in DCN30 color transformation Greg Kroah-Hartman
2024-10-15 11:26 ` [PATCH 5.15 466/691] drm/amd/display: Initialize get_bytes_per_elements default to 1 Greg Kroah-Hartman
2024-10-15 11:26 ` [PATCH 5.15 467/691] drm/printer: Allow NULL data in devcoredump printer Greg Kroah-Hartman
2024-10-15 11:26 ` [PATCH 5.15 468/691] scsi: aacraid: Rearrange order of struct aac_srb_unit Greg Kroah-Hartman
2024-10-15 11:26 ` [PATCH 5.15 469/691] drm/radeon/r100: Handle unknown family in r100_cp_init_microcode() Greg Kroah-Hartman
2024-10-15 11:26 ` [PATCH 5.15 470/691] drm/amd/pm: ensure the fw_info is not null before using it Greg Kroah-Hartman
2024-10-15 11:26 ` [PATCH 5.15 471/691] of/irq: Refer to actual buffer size in of_irq_parse_one() Greg Kroah-Hartman
2024-10-15 11:27 ` [PATCH 5.15 472/691] ext4: ext4_search_dir should return a proper error Greg Kroah-Hartman
2024-10-15 11:27 ` [PATCH 5.15 473/691] ext4: avoid use-after-free in ext4_ext_show_leaf() Greg Kroah-Hartman
2024-10-15 11:27 ` [PATCH 5.15 474/691] ext4: fix i_data_sem unlock order in ext4_ind_migrate() Greg Kroah-Hartman
2024-10-15 11:27 ` [PATCH 5.15 475/691] blk-integrity: use sysfs_emit Greg Kroah-Hartman
2024-10-15 11:27 ` [PATCH 5.15 476/691] blk-integrity: convert to struct device_attribute Greg Kroah-Hartman
2024-10-15 11:27 ` [PATCH 5.15 477/691] blk-integrity: register sysfs attributes on struct device Greg Kroah-Hartman
2024-10-15 11:27 ` [PATCH 5.15 478/691] usb: typec: tcpm: Check for port partner validity before consuming it Greg Kroah-Hartman
2024-10-15 11:27 ` [PATCH 5.15 479/691] spi: spi-imx: Fix pm_runtime_set_suspended() with runtime pm enabled Greg Kroah-Hartman
2024-10-15 11:27 ` [PATCH 5.15 480/691] spi: s3c64xx: fix timeout counters in flush_fifo Greg Kroah-Hartman
2024-10-15 11:27 ` [PATCH 5.15 481/691] selftests: breakpoints: use remaining time to check if suspend succeed Greg Kroah-Hartman
2024-10-15 11:27 ` [PATCH 5.15 482/691] selftests: vDSO: fix vDSO name for powerpc Greg Kroah-Hartman
2024-10-15 11:27 ` [PATCH 5.15 483/691] selftests: vDSO: fix vdso_config " Greg Kroah-Hartman
2024-10-15 11:27 ` [PATCH 5.15 484/691] selftests: vDSO: fix vDSO symbols lookup for powerpc64 Greg Kroah-Hartman
2024-10-15 11:27 ` [PATCH 5.15 485/691] selftests/mm: fix charge_reserved_hugetlb.sh test Greg Kroah-Hartman
2024-10-15 11:27 ` [PATCH 5.15 486/691] selftests: vDSO: fix ELF hash table entry size for s390x Greg Kroah-Hartman
2024-10-15 11:27 ` [PATCH 5.15 487/691] selftests: vDSO: fix vdso_config for s390 Greg Kroah-Hartman
2024-10-15 11:27 ` [PATCH 5.15 488/691] platform/x86: ISST: Fix the KASAN report slab-out-of-bounds bug Greg Kroah-Hartman
2024-10-15 11:27 ` [PATCH 5.15 489/691] i2c: stm32f7: Do not prepare/unprepare clock during runtime suspend/resume Greg Kroah-Hartman
2024-10-15 11:27 ` [PATCH 5.15 490/691] i2c: qcom-geni: Use IRQF_NO_AUTOEN flag in request_irq() Greg Kroah-Hartman
2024-10-15 11:27 ` [PATCH 5.15 491/691] i2c: xiic: Wait for TX empty to avoid missed TX NAKs Greg Kroah-Hartman
2024-10-15 11:27 ` [PATCH 5.15 492/691] firmware: tegra: bpmp: Drop unused mbox_client_to_bpmp() Greg Kroah-Hartman
2024-10-15 11:27 ` [PATCH 5.15 493/691] spi: bcm63xx: Fix module autoloading Greg Kroah-Hartman
2024-10-15 11:27 ` [PATCH 5.15 494/691] power: supply: hwmon: Fix missing temp1_max_alarm attribute Greg Kroah-Hartman
2024-10-15 11:27 ` [PATCH 5.15 495/691] perf/core: Fix small negative period being ignored Greg Kroah-Hartman
2024-10-15 11:27 ` [PATCH 5.15 496/691] parisc: Fix itlb miss handler for 64-bit programs Greg Kroah-Hartman
2024-10-15 11:27 ` [PATCH 5.15 497/691] drm: Consistently use struct drm_mode_rect for FB_DAMAGE_CLIPS Greg Kroah-Hartman
2024-10-15 11:27 ` [PATCH 5.15 498/691] ALSA: core: add isascii() check to card ID generator Greg Kroah-Hartman
2024-10-15 11:27 ` [PATCH 5.15 499/691] ALSA: usb-audio: Add delay quirk for VIVO USB-C HEADSET Greg Kroah-Hartman
2024-10-15 11:27 ` [PATCH 5.15 500/691] ALSA: usb-audio: Add native DSD support for Luxman D-08u Greg Kroah-Hartman
2024-10-15 11:27 ` [PATCH 5.15 501/691] ALSA: line6: add hw monitor volume control to POD HD500X Greg Kroah-Hartman
2024-10-15 11:27 ` [PATCH 5.15 502/691] ALSA: hda/realtek: Add quirk for Huawei MateBook 13 KLV-WX9 Greg Kroah-Hartman
2024-10-15 11:27 ` [PATCH 5.15 503/691] ext4: no need to continue when the number of entries is 1 Greg Kroah-Hartman
2024-10-15 11:27 ` [PATCH 5.15 504/691] ext4: correct encrypted dentry name hash when not casefolded Greg Kroah-Hartman
2024-10-15 11:27 ` [PATCH 5.15 505/691] ext4: fix slab-use-after-free in ext4_split_extent_at() Greg Kroah-Hartman
2024-10-15 11:27 ` [PATCH 5.15 506/691] ext4: propagate errors from ext4_find_extent() in ext4_insert_range() Greg Kroah-Hartman
2024-10-15 11:27 ` [PATCH 5.15 507/691] ext4: fix incorrect tid assumption in __jbd2_log_wait_for_space() Greg Kroah-Hartman
2024-10-15 11:27 ` [PATCH 5.15 508/691] ext4: drop ppath from ext4_ext_replay_update_ex() to avoid double-free Greg Kroah-Hartman
2024-10-15 11:27 ` [PATCH 5.15 509/691] ext4: aovid use-after-free in ext4_ext_insert_extent() Greg Kroah-Hartman
2024-10-15 11:27 ` [PATCH 5.15 510/691] ext4: fix double brelse() the buffer of the extents path Greg Kroah-Hartman
2024-10-15 11:27 ` [PATCH 5.15 511/691] ext4: update orig_path in ext4_find_extent() Greg Kroah-Hartman
2024-10-15 11:27 ` [PATCH 5.15 512/691] ext4: fix incorrect tid assumption in ext4_wait_for_tail_page_commit() Greg Kroah-Hartman
2024-10-15 11:27 ` [PATCH 5.15 513/691] ext4: fix incorrect tid assumption in jbd2_journal_shrink_checkpoint_list() Greg Kroah-Hartman
2024-10-15 11:27 ` [PATCH 5.15 514/691] ext4: fix fast commit inode enqueueing during a full journal commit Greg Kroah-Hartman
2024-10-15 11:27 ` [PATCH 5.15 515/691] ext4: use handle to mark fc as ineligible in __track_dentry_update() Greg Kroah-Hartman
2024-10-15 11:27 ` [PATCH 5.15 516/691] ext4: mark fc as ineligible using an handle in ext4_xattr_set() Greg Kroah-Hartman
2024-10-15 11:27 ` [PATCH 5.15 517/691] riscv: define ILLEGAL_POINTER_VALUE for 64bit Greg Kroah-Hartman
2024-10-15 11:27 ` [PATCH 5.15 518/691] exfat: fix memory leak in exfat_load_bitmap() Greg Kroah-Hartman
2024-10-15 11:27 ` [PATCH 5.15 519/691] perf hist: Update hist symbol when updating maps Greg Kroah-Hartman
2024-10-15 11:27 ` [PATCH 5.15 520/691] nfsd: fix delegation_blocked() to block correctly for at least 30 seconds Greg Kroah-Hartman
2024-10-15 11:27 ` [PATCH 5.15 521/691] nfsd: map the EBADMSG to nfserr_io to avoid warning Greg Kroah-Hartman
2024-10-15 11:27 ` [PATCH 5.15 522/691] NFSD: Fix NFSv4s PUTPUBFH operation Greg Kroah-Hartman
2024-10-15 11:27 ` [PATCH 5.15 523/691] aoe: fix the potential use-after-free problem in more places Greg Kroah-Hartman
2024-10-15 11:27 ` [PATCH 5.15 524/691] clk: rockchip: fix error for unknown clocks Greg Kroah-Hartman
2024-10-15 11:27 ` [PATCH 5.15 525/691] clk: qcom: dispcc-sm8250: use CLK_SET_RATE_PARENT for branch clocks Greg Kroah-Hartman
2024-10-15 11:27 ` [PATCH 5.15 526/691] media: sun4i_csi: Implement link validate for sun4i_csi subdev Greg Kroah-Hartman
2024-10-15 11:27 ` [PATCH 5.15 527/691] media: uapi/linux/cec.h: cec_msg_set_reply_to: zero flags Greg Kroah-Hartman
2024-10-15 11:27 ` [PATCH 5.15 528/691] clk: qcom: clk-rpmh: Fix overflow in BCM vote Greg Kroah-Hartman
2024-10-15 11:27 ` [PATCH 5.15 529/691] clk: qcom: gcc-sm8150: De-register gcc_cpuss_ahb_clk_src Greg Kroah-Hartman
2024-10-15 11:27 ` [PATCH 5.15 530/691] media: venus: fix use after free bug in venus_remove due to race condition Greg Kroah-Hartman
2024-10-15 11:27 ` [PATCH 5.15 531/691] clk: qcom: gcc-sm8250: Do not turn off PCIe GDSCs during gdsc_disable() Greg Kroah-Hartman
2024-10-15 11:28 ` [PATCH 5.15 532/691] clk: qcom: gcc-sc8180x: Fix the sdcc2 and sdcc4 clocks freq table Greg Kroah-Hartman
2024-10-15 11:28 ` [PATCH 5.15 533/691] iio: magnetometer: ak8975: Fix reading for ak099xx sensors Greg Kroah-Hartman
2024-10-15 11:28 ` [PATCH 5.15 534/691] tomoyo: fallback to realpath if symlinks pathname does not exist Greg Kroah-Hartman
2024-10-15 11:28 ` [PATCH 5.15 535/691] net: stmmac: Fix zero-division error when disabling tc cbs Greg Kroah-Hartman
2024-10-15 11:28 ` [PATCH 5.15 536/691] rtc: at91sam9: fix OF node leak in probe() error path Greg Kroah-Hartman
2024-10-15 11:28 ` [PATCH 5.15 537/691] Input: adp5589-keys - fix NULL pointer dereference Greg Kroah-Hartman
2024-10-15 11:28 ` [PATCH 5.15 538/691] Input: adp5589-keys - fix adp5589_gpio_get_value() Greg Kroah-Hartman
2024-10-15 11:28 ` [PATCH 5.15 539/691] ACPI: resource: Add Asus Vivobook X1704VAP to irq1_level_low_skip_override[] Greg Kroah-Hartman
2024-10-15 11:28 ` [PATCH 5.15 540/691] ACPI: resource: Add Asus ExpertBook B2502CVA " Greg Kroah-Hartman
2024-10-15 11:28 ` [PATCH 5.15 541/691] btrfs: fix a NULL pointer dereference when failed to start a new trasacntion Greg Kroah-Hartman
2024-10-15 11:28 ` [PATCH 5.15 542/691] btrfs: wait for fixup workers before stopping cleaner kthread during umount Greg Kroah-Hartman
2024-10-15 11:28 ` [PATCH 5.15 543/691] gpio: davinci: fix lazy disable Greg Kroah-Hartman
2024-10-15 11:28 ` [PATCH 5.15 544/691] tracing/hwlat: Fix a race during cpuhp processing Greg Kroah-Hartman
2024-10-15 11:28 ` [PATCH 5.15 545/691] tracing/timerlat: " Greg Kroah-Hartman
2024-10-15 11:28 ` [PATCH 5.15 546/691] close_range(): fix the logics in descriptor table trimming Greg Kroah-Hartman
2024-10-15 11:28 ` [PATCH 5.15 547/691] drm/sched: Add locking to drm_sched_entity_modify_sched Greg Kroah-Hartman
2024-10-15 11:28 ` [PATCH 5.15 548/691] drm/amd/display: Fix system hang while resume with TBT monitor Greg Kroah-Hartman
2024-10-15 11:28 ` [PATCH 5.15 549/691] kconfig: qconf: fix buffer overflow in debug links Greg Kroah-Hartman
2024-10-15 11:28 ` [PATCH 5.15 550/691] device property: Add fwnode_iomap() Greg Kroah-Hartman
2024-10-15 11:28 ` [PATCH 5.15 551/691] device property: Add fwnode_irq_get_byname Greg Kroah-Hartman
2024-10-15 11:28 ` [PATCH 5.15 552/691] i2c: smbus: Use device_*() functions instead of of_*() Greg Kroah-Hartman
2024-10-15 11:28 ` [PATCH 5.15 553/691] i2c: create debugfs entry per adapter Greg Kroah-Hartman
2024-10-15 11:28 ` [PATCH 5.15 554/691] i2c: core: Lock address during client device instantiation Greg Kroah-Hartman
2024-10-15 11:28 ` [PATCH 5.15 555/691] i2c: xiic: Use devm_clk_get_enabled() Greg Kroah-Hartman
2024-10-15 11:28 ` [PATCH 5.15 556/691] i2c: xiic: Fix pm_runtime_set_suspended() with runtime pm enabled Greg Kroah-Hartman
2024-10-15 11:28 ` [PATCH 5.15 557/691] spi: bcm63xx: Fix missing pm_runtime_disable() Greg Kroah-Hartman
2024-10-15 11:28 ` [PATCH 5.15 558/691] ext4: properly sync file size update after O_SYNC direct IO Greg Kroah-Hartman
2024-10-15 11:28 ` [PATCH 5.15 559/691] ext4: dax: fix overflowing extents beyond inode size when partially writing Greg Kroah-Hartman
2024-10-15 11:28 ` [PATCH 5.15 560/691] arm64: Add Cortex-715 CPU part definition Greg Kroah-Hartman
2024-10-15 11:28 ` [PATCH 5.15 561/691] arm64: cputype: Add Neoverse-N3 definitions Greg Kroah-Hartman
2024-10-15 11:28 ` [PATCH 5.15 562/691] arm64: errata: Expand speculative SSBS workaround once more Greg Kroah-Hartman
2024-10-15 11:28 ` [PATCH 5.15 563/691] uprobes: fix kernel info leak via "[uprobes]" vma Greg Kroah-Hartman
2024-10-15 11:28 ` [PATCH 5.15 564/691] drm/amd/display: Allow backlight to go below `AMDGPU_DM_DEFAULT_MIN_BACKLIGHT` Greg Kroah-Hartman
2024-10-15 11:28 ` [PATCH 5.15 565/691] build-id: require program headers to be right after ELF header Greg Kroah-Hartman
2024-10-15 11:28 ` [PATCH 5.15 566/691] lib/buildid: harden build ID parsing logic Greg Kroah-Hartman
2024-10-15 11:28 ` [PATCH 5.15 567/691] drm/rockchip: define gamma registers for RK3399 Greg Kroah-Hartman
2024-10-15 11:28 ` [PATCH 5.15 568/691] drm/rockchip: support gamma control on RK3399 Greg Kroah-Hartman
2024-10-15 11:28 ` [PATCH 5.15 569/691] drm/rockchip: vop: clear DMA stop bit on RK3066 Greg Kroah-Hartman
2024-10-15 11:28 ` [PATCH 5.15 570/691] media: i2c: imx335: Enable regulator supplies Greg Kroah-Hartman
2024-10-15 11:28 ` [PATCH 5.15 571/691] media: imx335: Fix reset-gpio handling Greg Kroah-Hartman
2024-10-15 11:28 ` [PATCH 5.15 572/691] dt-bindings: clock: qcom: Add missing UFS QREF clocks Greg Kroah-Hartman
2024-10-15 11:28 ` [PATCH 5.15 573/691] dt-bindings: clock: qcom: Add GPLL9 support on gcc-sc8180x Greg Kroah-Hartman
2024-10-15 11:28 ` [PATCH 5.15 574/691] r8169: Fix spelling mistake: "tx_underun" -> "tx_underrun" Greg Kroah-Hartman
2024-10-15 11:28 ` [PATCH 5.15 575/691] r8169: add tally counter fields added with RTL8125 Greg Kroah-Hartman
2024-10-15 11:28 ` [PATCH 5.15 576/691] clk: qcom: gcc-sc8180x: Add GPLL9 support Greg Kroah-Hartman
2024-10-15 11:28 ` [PATCH 5.15 577/691] ACPI: battery: Simplify battery hook locking Greg Kroah-Hartman
2024-10-15 11:28 ` [PATCH 5.15 578/691] ACPI: battery: Fix possible crash when unregistering a battery hook Greg Kroah-Hartman
2024-10-15 11:28 ` [PATCH 5.15 579/691] Revert "arm64: dts: qcom: sm8250: switch UFS QMP PHY to new style of bindings" Greg Kroah-Hartman
2024-10-15 11:28 ` [PATCH 5.15 580/691] ext4: fix inode tree inconsistency caused by ENOMEM Greg Kroah-Hartman
2024-10-15 11:28 ` [PATCH 5.15 581/691] 9p: add missing locking around taking dentry fid list Greg Kroah-Hartman
2024-10-15 11:28 ` [PATCH 5.15 582/691] vhost/scsi: null-ptr-dereference in vhost_scsi_get_req() Greg Kroah-Hartman
2024-10-15 11:28 ` [PATCH 5.15 583/691] perf report: Fix segfault when sym sort key is not used Greg Kroah-Hartman
2024-10-15 11:28 ` [PATCH 5.15 584/691] ALSA: usb-audio: Fix possible NULL pointer dereference in snd_usb_pcm_has_fixed_rate() Greg Kroah-Hartman
2024-10-15 11:28 ` [PATCH 5.15 585/691] unicode: Dont special case ignorable code points Greg Kroah-Hartman
2024-10-15 11:28 ` [PATCH 5.15 586/691] net: ethernet: cortina: Drop TSO support Greg Kroah-Hartman
2024-10-15 11:28 ` [PATCH 5.15 587/691] tracing: Remove precision vsnprintf() check from print event Greg Kroah-Hartman
2024-10-15 11:28 ` [PATCH 5.15 588/691] drm/crtc: fix uninitialized variable use even harder Greg Kroah-Hartman
2024-10-15 11:28 ` [PATCH 5.15 589/691] tracing: Have saved_cmdlines arrays all in one allocation Greg Kroah-Hartman
2024-10-15 11:28 ` [PATCH 5.15 590/691] selftests/net: give more time to udpgro bg processes to complete startup Greg Kroah-Hartman
2024-10-15 11:28 ` [PATCH 5.15 591/691] selftests/net: synchronize udpgro tests tx and rx connection Greg Kroah-Hartman
2024-10-15 11:29 ` [PATCH 5.15 592/691] selftests: net: Remove executable bits from library scripts Greg Kroah-Hartman
2024-10-15 11:29 ` [PATCH 5.15 593/691] fs/ntfs3: Refactor enum_rstbl to suppress static checker Greg Kroah-Hartman
2024-10-15 11:29 ` [PATCH 5.15 594/691] virtio_console: fix misc probe bugs Greg Kroah-Hartman
2024-10-15 11:29 ` [PATCH 5.15 595/691] Input: synaptics-rmi4 - fix UAF of IRQ domain on driver removal Greg Kroah-Hartman
2024-10-15 11:29 ` [PATCH 5.15 596/691] bpf: Check percpu map value size first Greg Kroah-Hartman
2024-10-15 11:29 ` [PATCH 5.15 597/691] s390/facility: Disable compile time optimization for decompressor code Greg Kroah-Hartman
2024-10-15 11:29 ` [PATCH 5.15 598/691] s390/mm: Add cond_resched() to cmm_alloc/free_pages() Greg Kroah-Hartman
2024-10-15 11:29 ` [PATCH 5.15 599/691] bpf, x64: Fix a jit convergence issue Greg Kroah-Hartman
2024-10-15 11:29 ` [PATCH 5.15 600/691] ext4: dont set SB_RDONLY after filesystem errors Greg Kroah-Hartman
2024-10-15 11:29 ` [PATCH 5.15 601/691] ext4: nested locking for xattr inode Greg Kroah-Hartman
2024-10-15 11:29 ` [PATCH 5.15 602/691] s390/cpum_sf: Remove WARN_ON_ONCE statements Greg Kroah-Hartman
2024-10-15 11:29 ` [PATCH 5.15 603/691] ktest.pl: Avoid false positives with grub2 skip regex Greg Kroah-Hartman
2024-10-15 11:29 ` [PATCH 5.15 604/691] RDMA/mad: Improve handling of timed out WRs of mad agent Greg Kroah-Hartman
2024-10-15 11:29 ` [PATCH 5.15 605/691] PCI: Add function 0 DMA alias quirk for Glenfly Arise chip Greg Kroah-Hartman
2024-10-15 11:29 ` [PATCH 5.15 606/691] RDMA/rtrs-srv: Avoid null pointer deref during path establishment Greg Kroah-Hartman
2024-10-15 11:29 ` [PATCH 5.15 607/691] clk: bcm: bcm53573: fix OF node leak in init Greg Kroah-Hartman
2024-10-15 11:29 ` [PATCH 5.15 608/691] PCI: Add ACS quirk for Qualcomm SA8775P Greg Kroah-Hartman
2024-10-15 11:29 ` [PATCH 5.15 609/691] i2c: i801: Use a different adapter-name for IDF adapters Greg Kroah-Hartman
2024-10-15 11:29 ` [PATCH 5.15 610/691] PCI: Mark Creative Labs EMU20k2 INTx masking as broken Greg Kroah-Hartman
2024-10-15 11:29 ` [PATCH 5.15 611/691] ntb: ntb_hw_switchtec: Fix use after free vulnerability in switchtec_ntb_remove due to race condition Greg Kroah-Hartman
2024-10-15 11:29 ` [PATCH 5.15 612/691] media: videobuf2-core: clear memory related fields in __vb2_plane_dmabuf_put() Greg Kroah-Hartman
2024-10-15 11:29 ` [PATCH 5.15 613/691] remoteproc: imx_rproc: Use imx specific hook for find_loaded_rsc_table Greg Kroah-Hartman
2024-10-15 11:29 ` [PATCH 5.15 614/691] clk: imx: Remove CLK_SET_PARENT_GATE for DRAM mux for i.MX7D Greg Kroah-Hartman
2024-10-15 11:29 ` [PATCH 5.15 615/691] usb: chipidea: udc: enable suspend interrupt after usb reset Greg Kroah-Hartman
2024-10-15 11:29 ` [PATCH 5.15 616/691] usb: dwc2: Adjust the timing of USB Driver Interrupt Registration in the Crashkernel Scenario Greg Kroah-Hartman
2024-10-15 11:29 ` [PATCH 5.15 617/691] comedi: ni_routing: tools: Check when the file could not be opened Greg Kroah-Hartman
2024-10-15 11:29 ` [PATCH 5.15 618/691] virtio_pmem: Check device status before requesting flush Greg Kroah-Hartman
2024-10-15 11:29 ` [PATCH 5.15 619/691] tools/iio: Add memory allocation failure check for trigger_name Greg Kroah-Hartman
2024-10-15 11:29 ` [PATCH 5.15 620/691] driver core: bus: Return -EIO instead of 0 when show/store invalid bus attribute Greg Kroah-Hartman
2024-10-15 11:29 ` [PATCH 5.15 621/691] drm/amd/display: Check null pointer before dereferencing se Greg Kroah-Hartman
2024-10-15 11:29 ` [PATCH 5.15 622/691] fbdev: sisfb: Fix strbuf array overflow Greg Kroah-Hartman
2024-10-15 11:29 ` [PATCH 5.15 623/691] RDMA/rxe: Fix seg fault in rxe_comp_queue_pkt Greg Kroah-Hartman
2024-10-15 11:29 ` [PATCH 5.15 624/691] NFSD: Mark filecache "down" if init fails Greg Kroah-Hartman
2024-10-15 11:29 ` [PATCH 5.15 625/691] ice: fix VLAN replay after reset Greg Kroah-Hartman
2024-10-15 11:29 ` [PATCH 5.15 626/691] SUNRPC: Fix integer overflow in decode_rc_list() Greg Kroah-Hartman
2024-10-15 11:29 ` [PATCH 5.15 627/691] NFSv4: Prevent NULL-pointer dereference in nfs42_complete_copies() Greg Kroah-Hartman
2024-10-15 11:29 ` [PATCH 5.15 628/691] net: phy: dp83869: fix memory corruption when enabling fiber Greg Kroah-Hartman
2024-10-15 11:29 ` [PATCH 5.15 629/691] tcp: fix to allow timestamp undo if no retransmits were sent Greg Kroah-Hartman
2024-10-15 11:29 ` [PATCH 5.15 630/691] tcp: fix tcp_enter_recovery() to zero retrans_stamp when its safe Greg Kroah-Hartman
2024-10-15 11:29 ` [PATCH 5.15 631/691] netfilter: br_netfilter: fix panic with metadata_dst skb Greg Kroah-Hartman
2024-10-15 11:29 ` [PATCH 5.15 632/691] Bluetooth: RFCOMM: FIX possible deadlock in rfcomm_sk_state_change Greg Kroah-Hartman
2024-10-15 11:29 ` [PATCH 5.15 633/691] net: phy: bcm84881: Fix some error handling paths Greg Kroah-Hartman
2024-10-15 11:29 ` [PATCH 5.15 634/691] thermal: int340x: processor_thermal: Set feature mask before proc_thermal_add Greg Kroah-Hartman
2024-10-15 11:29 ` [PATCH 5.15 635/691] thermal: intel: int340x: processor: Fix warning during module unload Greg Kroah-Hartman
2024-10-15 11:29 ` [PATCH 5.15 636/691] net: dsa: b53: fix jumbo frame mtu check Greg Kroah-Hartman
2024-10-15 11:29 ` [PATCH 5.15 637/691] net: dsa: b53: fix max MTU for 1g switches Greg Kroah-Hartman
2024-10-15 11:29 ` [PATCH 5.15 638/691] net: dsa: b53: fix max MTU for BCM5325/BCM5365 Greg Kroah-Hartman
2024-10-15 11:29 ` [PATCH 5.15 639/691] net: dsa: b53: allow lower MTUs on BCM5325/5365 Greg Kroah-Hartman
2024-10-15 11:29 ` [PATCH 5.15 640/691] net: dsa: b53: fix jumbo frames on 10/100 ports Greg Kroah-Hartman
2024-10-15 11:29 ` [PATCH 5.15 641/691] gpio: aspeed: Add the flush write to ensure the write complete Greg Kroah-Hartman
2024-10-15 11:29 ` [PATCH 5.15 642/691] gpio: aspeed: Use devm_clk api to manage clock source Greg Kroah-Hartman
2024-10-15 11:29 ` [PATCH 5.15 643/691] ice: Fix netif_is_ice() in Safe Mode Greg Kroah-Hartman
2024-10-15 11:29 ` [PATCH 5.15 644/691] i40e: Fix macvlan leak by synchronizing access to mac_filter_hash Greg Kroah-Hartman
2024-10-15 11:29 ` [PATCH 5.15 645/691] igb: Do not bring the device up after non-fatal error Greg Kroah-Hartman
2024-10-15 11:29 ` [PATCH 5.15 646/691] net/sched: accept TCA_STAB only for root qdisc Greg Kroah-Hartman
2024-10-15 11:29 ` [PATCH 5.15 647/691] net: ibm: emac: mal: fix wrong goto Greg Kroah-Hartman
2024-10-15 11:29 ` [PATCH 5.15 648/691] sctp: ensure sk_state is set to CLOSED if hashing fails in sctp_listen_start Greg Kroah-Hartman
2024-10-15 11:29 ` [PATCH 5.15 649/691] netfilter: xtables: avoid NFPROTO_UNSPEC where needed Greg Kroah-Hartman
2024-10-15 11:29 ` [PATCH 5.15 650/691] net: Add l3mdev index to flow struct and avoid oif reset for port devices Greg Kroah-Hartman
2024-10-15 11:29 ` [PATCH 5.15 651/691] netfilter: rpfilter/fib: Populate flowic_l3mdev field Greg Kroah-Hartman
2024-10-15 11:30 ` [PATCH 5.15 652/691] netfilter: rpfilter/fib: Set ->flowic_uid correctly for user namespaces Greg Kroah-Hartman
2024-10-15 11:30 ` [PATCH 5.15 653/691] netfilter: fib: check correct rtable in vrf setups Greg Kroah-Hartman
2024-10-15 11:30 ` [PATCH 5.15 654/691] net: rtnetlink: add msg kind names Greg Kroah-Hartman
2024-10-15 11:30 ` [PATCH 5.15 655/691] rtnetlink: Add bulk registration helpers for rtnetlink message handlers Greg Kroah-Hartman
2024-10-15 11:30 ` [PATCH 5.15 656/691] mctp: Handle error of rtnl_register_module() Greg Kroah-Hartman
2024-10-15 11:30 ` [PATCH 5.15 657/691] ppp: fix ppp_async_encode() illegal access Greg Kroah-Hartman
2024-10-15 11:30 ` [PATCH 5.15 658/691] slip: make slhc_remember() more robust against malicious packets Greg Kroah-Hartman
2024-10-15 11:30 ` [PATCH 5.15 659/691] RDMA/hns: Fix UAF for cq async event Greg Kroah-Hartman
2024-10-15 11:30 ` [PATCH 5.15 660/691] x86/fpu: Avoid writing LBR bit to IA32_XSS unless supported Greg Kroah-Hartman
2024-10-15 11:30 ` [PATCH 5.15 661/691] hwmon: (tmp513) Add missing dependency on REGMAP_I2C Greg Kroah-Hartman
2024-10-15 11:30 ` [PATCH 5.15 662/691] hwmon: (adm9240) " Greg Kroah-Hartman
2024-10-15 11:30 ` [PATCH 5.15 663/691] hwmon: (adt7470) " Greg Kroah-Hartman
2024-10-15 11:30 ` [PATCH 5.15 664/691] HID: amd_sfh: Switch to device-managed dmam_alloc_coherent() Greg Kroah-Hartman
2024-10-15 11:30 ` [PATCH 5.15 665/691] resource: fix region_intersects() vs add_memory_driver_managed() Greg Kroah-Hartman
2024-10-15 11:30 ` [PATCH 5.15 666/691] HID: plantronics: Workaround for an unexcepted opposite volume key Greg Kroah-Hartman
2024-10-15 11:30 ` [PATCH 5.15 667/691] Revert "usb: yurex: Replace snprintf() with the safer scnprintf() variant" Greg Kroah-Hartman
2024-10-15 11:30 ` [PATCH 5.15 668/691] usb: dwc3: core: Stop processing of pending events if controller is halted Greg Kroah-Hartman
2024-10-15 11:30 ` [PATCH 5.15 669/691] usb: xhci: Fix problem with xhci resume from suspend Greg Kroah-Hartman
2024-10-15 11:30 ` [PATCH 5.15 670/691] usb: storage: ignore bogus device raised by JieLi BR21 USB sound chip Greg Kroah-Hartman
2024-10-15 11:30 ` [PATCH 5.15 671/691] hid: intel-ish-hid: Fix uninitialized variable rv in ish_fw_xfer_direct_dma Greg Kroah-Hartman
2024-10-15 11:30 ` [PATCH 5.15 672/691] drm/v3d: Stop the active perfmon before being destroyed Greg Kroah-Hartman
2024-10-15 11:30 ` [PATCH 5.15 673/691] net: explicitly clear the sk pointer, when pf->create fails Greg Kroah-Hartman
2024-10-15 11:30 ` [PATCH 5.15 674/691] net: Fix an unsafe loop on the list Greg Kroah-Hartman
2024-10-15 11:30 ` [PATCH 5.15 675/691] net: dsa: lan9303: ensure chip reset and wait for READY status Greg Kroah-Hartman
2024-10-15 11:30 ` [PATCH 5.15 676/691] mptcp: pm: do not remove closing subflows Greg Kroah-Hartman
2024-10-15 11:30 ` [PATCH 5.15 677/691] nouveau/dmem: Fix vulnerability in migrate_to_ram upon copy error Greg Kroah-Hartman
2024-10-15 11:30 ` [PATCH 5.15 678/691] kthread: unpark only parked kthread Greg Kroah-Hartman
2024-10-15 11:30 ` [PATCH 5.15 679/691] block, bfq: fix uaf for accessing waker_bfqq after splitting Greg Kroah-Hartman
2024-10-15 11:30 ` [PATCH 5.15 680/691] perf test sample-parsing: Fix branch_stack entry endianness check Greg Kroah-Hartman
2024-10-15 11:30 ` [PATCH 5.15 681/691] i2c: smbus: Check for parent device before dereference Greg Kroah-Hartman
2024-10-15 11:30 ` [PATCH 5.15 682/691] net: geneve: add missing netlink policy and size for IFLA_GENEVE_INNER_PROTO_INHERIT Greg Kroah-Hartman
2024-10-15 11:30 ` [PATCH 5.15 683/691] xfrm: Pass flowi_oif or l3mdev as oif to xfrm_dst_lookup Greg Kroah-Hartman
2024-10-15 11:30 ` [PATCH 5.15 684/691] net: Handle l3mdev in ip_tunnel_init_flow Greg Kroah-Hartman
2024-10-15 11:30 ` [PATCH 5.15 685/691] net: seg6: fix seg6_lookup_any_nexthop() to handle VRFs using flowi_l3mdev Greg Kroah-Hartman
2024-10-15 11:30 ` [PATCH 5.15 686/691] net: vrf: determine the dst using the original ifindex for multicast Greg Kroah-Hartman
2024-10-15 11:30 ` [PATCH 5.15 687/691] netfilter: ip6t_rpfilter: Fix regression with VRF interfaces Greg Kroah-Hartman
2024-10-15 11:30 ` [PATCH 5.15 688/691] ext4: fix warning in ext4_dio_write_end_io() Greg Kroah-Hartman
2024-10-15 11:30 ` [PATCH 5.15 689/691] net: axienet: start napi before enabling Rx/Tx Greg Kroah-Hartman
2024-10-15 11:30 ` [PATCH 5.15 690/691] selftests: net: more strict check in net_helper Greg Kroah-Hartman
2024-10-15 11:30 ` [PATCH 5.15 691/691] net: xilinx: axienet: Schedule NAPI in two steps Greg Kroah-Hartman
2024-10-15 17:09 ` [PATCH 5.15 000/691] 5.15.168-rc1 review Florian Fainelli
2024-10-15 17:17   ` Greg Kroah-Hartman
2024-10-15 17:25     ` Florian Fainelli
2024-10-16  7:35       ` Greg Kroah-Hartman
2024-10-15 22:21 ` Shuah Khan
2024-10-16  8:54 ` Naresh Kamboju
2024-10-16  9:22 ` Harshit Mogalapalli
2024-10-16 10:01 ` Jon Hunter
2024-10-16 11:40 ` Ron Economos
2024-10-17 12:46 ` Muhammad Usama Anjum
2024-10-19 18:53 ` Guenter Roeck
2024-10-21  6:35   ` Michael Ellerman
2024-10-21  9:45     ` 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=20241015112457.646341359@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=patches@lists.linux.dev \
    --cc=sashal@kernel.org \
    --cc=stable@vger.kernel.org \
    --cc=tiwai@suse.de \
    /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).