patches.lists.linux.dev 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, Jan Kara <jack@suse.cz>,
	Yu Kuai <yukuai3@huawei.com>, Song Liu <song@kernel.org>,
	Sasha Levin <sashal@kernel.org>
Subject: [PATCH 6.5 360/739] md/raid0: Factor out helper for mapping and submitting a bio
Date: Mon, 11 Sep 2023 15:42:39 +0200	[thread overview]
Message-ID: <20230911134701.199792291@linuxfoundation.org> (raw)
In-Reply-To: <20230911134650.921299741@linuxfoundation.org>

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

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

From: Jan Kara <jack@suse.cz>

[ Upstream commit af50e20afb401cc203bd2a9ff62ece0ae4976103 ]

Factor out helper function for mapping and submitting a bio out of
raid0_make_request(). We will use it later for submitting both parts of
a split bio.

Signed-off-by: Jan Kara <jack@suse.cz>
Reviewed-by: Yu Kuai <yukuai3@huawei.com>
Link: https://lore.kernel.org/r/20230814092720.3931-1-jack@suse.cz
Signed-off-by: Song Liu <song@kernel.org>
Stable-dep-of: 319ff40a5427 ("md/raid0: Fix performance regression for large sequential writes")
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 drivers/md/raid0.c | 79 +++++++++++++++++++++++-----------------------
 1 file changed, 40 insertions(+), 39 deletions(-)

diff --git a/drivers/md/raid0.c b/drivers/md/raid0.c
index d1ac73fcd8529..d3c55f2e9b185 100644
--- a/drivers/md/raid0.c
+++ b/drivers/md/raid0.c
@@ -557,54 +557,21 @@ static void raid0_handle_discard(struct mddev *mddev, struct bio *bio)
 	bio_endio(bio);
 }
 
-static bool raid0_make_request(struct mddev *mddev, struct bio *bio)
+static void raid0_map_submit_bio(struct mddev *mddev, struct bio *bio)
 {
 	struct r0conf *conf = mddev->private;
 	struct strip_zone *zone;
 	struct md_rdev *tmp_dev;
-	sector_t bio_sector;
-	sector_t sector;
-	sector_t orig_sector;
-	unsigned chunk_sects;
-	unsigned sectors;
-
-	if (unlikely(bio->bi_opf & REQ_PREFLUSH)
-	    && md_flush_request(mddev, bio))
-		return true;
-
-	if (unlikely((bio_op(bio) == REQ_OP_DISCARD))) {
-		raid0_handle_discard(mddev, bio);
-		return true;
-	}
-
-	bio_sector = bio->bi_iter.bi_sector;
-	sector = bio_sector;
-	chunk_sects = mddev->chunk_sectors;
-
-	sectors = chunk_sects -
-		(likely(is_power_of_2(chunk_sects))
-		 ? (sector & (chunk_sects-1))
-		 : sector_div(sector, chunk_sects));
-
-	/* Restore due to sector_div */
-	sector = bio_sector;
-
-	if (sectors < bio_sectors(bio)) {
-		struct bio *split = bio_split(bio, sectors, GFP_NOIO,
-					      &mddev->bio_set);
-		bio_chain(split, bio);
-		submit_bio_noacct(bio);
-		bio = split;
-	}
+	sector_t bio_sector = bio->bi_iter.bi_sector;
+	sector_t sector = bio_sector;
 
 	if (bio->bi_pool != &mddev->bio_set)
 		md_account_bio(mddev, &bio);
 
-	orig_sector = sector;
 	zone = find_zone(mddev->private, &sector);
 	switch (conf->layout) {
 	case RAID0_ORIG_LAYOUT:
-		tmp_dev = map_sector(mddev, zone, orig_sector, &sector);
+		tmp_dev = map_sector(mddev, zone, bio_sector, &sector);
 		break;
 	case RAID0_ALT_MULTIZONE_LAYOUT:
 		tmp_dev = map_sector(mddev, zone, sector, &sector);
@@ -612,13 +579,13 @@ static bool raid0_make_request(struct mddev *mddev, struct bio *bio)
 	default:
 		WARN(1, "md/raid0:%s: Invalid layout\n", mdname(mddev));
 		bio_io_error(bio);
-		return true;
+		return;
 	}
 
 	if (unlikely(is_rdev_broken(tmp_dev))) {
 		bio_io_error(bio);
 		md_error(mddev, tmp_dev);
-		return true;
+		return;
 	}
 
 	bio_set_dev(bio, tmp_dev->bdev);
@@ -630,6 +597,40 @@ static bool raid0_make_request(struct mddev *mddev, struct bio *bio)
 				      bio_sector);
 	mddev_check_write_zeroes(mddev, bio);
 	submit_bio_noacct(bio);
+}
+
+static bool raid0_make_request(struct mddev *mddev, struct bio *bio)
+{
+	sector_t sector;
+	unsigned chunk_sects;
+	unsigned sectors;
+
+	if (unlikely(bio->bi_opf & REQ_PREFLUSH)
+	    && md_flush_request(mddev, bio))
+		return true;
+
+	if (unlikely((bio_op(bio) == REQ_OP_DISCARD))) {
+		raid0_handle_discard(mddev, bio);
+		return true;
+	}
+
+	sector = bio->bi_iter.bi_sector;
+	chunk_sects = mddev->chunk_sectors;
+
+	sectors = chunk_sects -
+		(likely(is_power_of_2(chunk_sects))
+		 ? (sector & (chunk_sects-1))
+		 : sector_div(sector, chunk_sects));
+
+	if (sectors < bio_sectors(bio)) {
+		struct bio *split = bio_split(bio, sectors, GFP_NOIO,
+					      &mddev->bio_set);
+		bio_chain(split, bio);
+		submit_bio_noacct(bio);
+		bio = split;
+	}
+
+	raid0_map_submit_bio(mddev, bio);
 	return true;
 }
 
-- 
2.40.1




  parent reply	other threads:[~2023-09-11 14:08 UTC|newest]

Thread overview: 762+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-09-11 13:36 [PATCH 6.5 000/739] 6.5.3-rc1 review Greg Kroah-Hartman
2023-09-11 13:36 ` [PATCH 6.5 001/739] drm/amd/display: ensure async flips are only accepted for fast updates Greg Kroah-Hartman
2023-09-11 13:36 ` [PATCH 6.5 002/739] cpufreq: intel_pstate: set stale CPU frequency to minimum Greg Kroah-Hartman
2023-09-11 13:36 ` [PATCH 6.5 003/739] tpm: Enable hwrng only for Pluton on AMD CPUs Greg Kroah-Hartman
2023-09-11 13:36 ` [PATCH 6.5 004/739] net: Avoid address overwrite in kernel_connect Greg Kroah-Hartman
2023-09-11 13:36 ` [PATCH 6.5 005/739] Bluetooth: btrtl: Load FW v2 otherwise FW v1 for RTL8852C Greg Kroah-Hartman
2023-09-11 13:36 ` [PATCH 6.5 006/739] Input: i8042 - add quirk for TUXEDO Gemini 17 Gen1/Clevo PD70PN Greg Kroah-Hartman
2023-09-11 13:36 ` [PATCH 6.5 007/739] Revert "fuse: in fuse_flush only wait if someone wants the return code" Greg Kroah-Hartman
2023-09-11 13:36 ` [PATCH 6.5 008/739] Revert "f2fs: clean up w/ sbi->log_sectors_per_block" Greg Kroah-Hartman
2023-09-11 13:36 ` [PATCH 6.5 009/739] Revert "PCI: tegra194: Enable support for 256 Byte payload" Greg Kroah-Hartman
2023-09-11 13:36 ` [PATCH 6.5 010/739] Revert "net: macsec: preserve ingress frame ordering" Greg Kroah-Hartman
2023-09-11 13:36 ` [PATCH 6.5 011/739] reiserfs: Check the return value from __getblk() Greg Kroah-Hartman
2023-09-11 13:36 ` [PATCH 6.5 012/739] splice: always fsnotify_access(in), fsnotify_modify(out) on success Greg Kroah-Hartman
2023-09-11 13:36 ` [PATCH 6.5 013/739] splice: fsnotify_access(fd)/fsnotify_modify(fd) in vmsplice Greg Kroah-Hartman
2023-09-11 13:36 ` [PATCH 6.5 014/739] splice: fsnotify_access(in), fsnotify_modify(out) on success in tee Greg Kroah-Hartman
2023-09-11 13:36 ` [PATCH 6.5 015/739] eventfd: prevent underflow for eventfd semaphores Greg Kroah-Hartman
2023-09-11 13:36 ` [PATCH 6.5 016/739] fs: Fix error checking for d_hash_and_lookup() Greg Kroah-Hartman
2023-09-11 13:36 ` [PATCH 6.5 017/739] iomap: Remove large folio handling in iomap_invalidate_folio() Greg Kroah-Hartman
2023-09-11 13:36 ` [PATCH 6.5 018/739] tmpfs: verify {g,u}id mount options correctly Greg Kroah-Hartman
2023-09-11 13:36 ` [PATCH 6.5 019/739] selftests/harness: Actually report SKIP for signal tests Greg Kroah-Hartman
2023-09-11 13:36 ` [PATCH 6.5 020/739] vfs, security: Fix automount superblock LSM init problem, preventing NFS sb sharing Greg Kroah-Hartman
2023-09-11 13:37 ` [PATCH 6.5 021/739] ARM: ptrace: Restore syscall restart tracing Greg Kroah-Hartman
2023-09-11 13:37 ` [PATCH 6.5 022/739] ARM: ptrace: Restore syscall skipping for tracers Greg Kroah-Hartman
2023-09-11 13:37 ` [PATCH 6.5 023/739] btrfs: zoned: skip splitting and logical rewriting on pre-alloc write Greg Kroah-Hartman
2023-09-11 13:37 ` [PATCH 6.5 024/739] erofs: release ztailpacking pclusters properly Greg Kroah-Hartman
2023-09-11 13:37 ` [PATCH 6.5 025/739] locking/arch: Avoid variable shadowing in local_try_cmpxchg() Greg Kroah-Hartman
2023-09-11 13:37 ` [PATCH 6.5 026/739] refscale: Fix uninitalized use of wait_queue_head_t Greg Kroah-Hartman
2023-09-11 13:37 ` [PATCH 6.5 027/739] clocksource: Handle negative skews in "skew is too large" messages Greg Kroah-Hartman
2023-09-11 13:37 ` [PATCH 6.5 028/739] powercap: arm_scmi: Remove recursion while parsing zones Greg Kroah-Hartman
2023-09-11 13:37 ` [PATCH 6.5 029/739] OPP: Fix potential null ptr dereference in dev_pm_opp_get_required_pstate() Greg Kroah-Hartman
2023-09-11 13:37 ` [PATCH 6.5 030/739] OPP: Fix passing 0 to PTR_ERR in _opp_attach_genpd() Greg Kroah-Hartman
2023-09-11 13:37 ` [PATCH 6.5 031/739] selftests/resctrl: Add resctrl.h into build deps Greg Kroah-Hartman
2023-09-11 13:37 ` [PATCH 6.5 032/739] selftests/resctrl: Dont leak buffer in fill_cache() Greg Kroah-Hartman
2023-09-11 13:37 ` [PATCH 6.5 033/739] selftests/resctrl: Unmount resctrl FS if child fails to run benchmark Greg Kroah-Hartman
2023-09-11 13:37 ` [PATCH 6.5 034/739] selftests/resctrl: Close perf value read fd on errors Greg Kroah-Hartman
2023-09-11 13:37 ` [PATCH 6.5 035/739] sched/fair: remove util_est boosting Greg Kroah-Hartman
2023-09-11 13:37 ` [PATCH 6.5 036/739] arm64/ptrace: Clean up error handling path in sve_set_common() Greg Kroah-Hartman
2023-09-11 13:37 ` [PATCH 6.5 037/739] sched/psi: Select KERNFS as needed Greg Kroah-Hartman
2023-09-11 13:37 ` [PATCH 6.5 038/739] cpuidle: teo: Update idle duration estimate when choosing shallower state Greg Kroah-Hartman
2023-09-11 13:37 ` [PATCH 6.5 039/739] x86/decompressor: Dont rely on upper 32 bits of GPRs being preserved Greg Kroah-Hartman
2023-09-11 13:37 ` [PATCH 6.5 040/739] arm64/fpsimd: Only provide the length to cpufeature for xCR registers Greg Kroah-Hartman
2023-09-11 13:37 ` [PATCH 6.5 041/739] sched/rt: Fix sysctl_sched_rr_timeslice intial value Greg Kroah-Hartman
2023-09-11 13:37 ` [PATCH 6.5 042/739] perf/imx_ddr: dont enable counter0 if none of 4 counters are used Greg Kroah-Hartman
2023-09-11 13:37 ` [PATCH 6.5 043/739] selftests/futex: Order calls to futex_lock_pi Greg Kroah-Hartman
2023-09-11 13:37 ` [PATCH 6.5 044/739] s390/pkey: fix/harmonize internal keyblob headers Greg Kroah-Hartman
2023-09-11 13:37 ` [PATCH 6.5 045/739] s390/pkey: fix PKEY_TYPE_EP11_AES handling in PKEY_GENSECK2 IOCTL Greg Kroah-Hartman
2023-09-11 13:37 ` [PATCH 6.5 046/739] s390/pkey: fix PKEY_TYPE_EP11_AES handling in PKEY_CLR2SECK2 IOCTL Greg Kroah-Hartman
2023-09-11 13:37 ` [PATCH 6.5 047/739] s390/pkey: fix PKEY_TYPE_EP11_AES handling in PKEY_KBLOB2PROTK[23] Greg Kroah-Hartman
2023-09-11 13:37 ` [PATCH 6.5 048/739] s390/pkey: fix PKEY_TYPE_EP11_AES handling in PKEY_VERIFYKEY2 IOCTL Greg Kroah-Hartman
2023-09-11 13:37 ` [PATCH 6.5 049/739] s390/pkey: fix PKEY_TYPE_EP11_AES handling for sysfs attributes Greg Kroah-Hartman
2023-09-11 13:37 ` [PATCH 6.5 050/739] s390/paes: fix PKEY_TYPE_EP11_AES handling for secure keyblobs Greg Kroah-Hartman
2023-09-11 13:37 ` [PATCH 6.5 051/739] irqchip/loongson-eiointc: Fix return value checking of eiointc_index Greg Kroah-Hartman
2023-09-11 13:37 ` [PATCH 6.5 052/739] ACPI: x86: s2idle: Post-increment variables when getting constraints Greg Kroah-Hartman
2023-09-11 13:37 ` [PATCH 6.5 053/739] ACPI: x86: s2idle: Fix a logic error parsing AMD constraints table Greg Kroah-Hartman
2023-09-11 13:37 ` [PATCH 6.5 054/739] thermal/of: Fix potential uninitialized value access Greg Kroah-Hartman
2023-09-11 13:37 ` [PATCH 6.5 055/739] cpufreq: amd-pstate-ut: Remove module parameter access Greg Kroah-Hartman
2023-09-11 13:37 ` [PATCH 6.5 056/739] cpufreq: amd-pstate-ut: Fix kernel panic when loading the driver Greg Kroah-Hartman
2023-09-11 13:37 ` [PATCH 6.5 057/739] tools/nolibc: arch-*.h: add missing space after , Greg Kroah-Hartman
2023-09-11 13:37 ` [PATCH 6.5 058/739] tools/nolibc: fix up startup failures for -O0 under gcc < 11.1.0 Greg Kroah-Hartman
2023-09-11 13:37 ` [PATCH 6.5 059/739] x86/efistub: Fix PCI ROM preservation in mixed mode Greg Kroah-Hartman
2023-09-11 13:37 ` [PATCH 6.5 060/739] cpufreq: powernow-k8: Use related_cpus instead of cpus in driver.exit() Greg Kroah-Hartman
2023-09-11 13:37 ` [PATCH 6.5 061/739] cpufreq: tegra194: add online/offline hooks Greg Kroah-Hartman
2023-09-11 13:37 ` [PATCH 6.5 062/739] cpufreq: tegra194: remove opp table in exit hook Greg Kroah-Hartman
2023-09-11 13:37 ` [PATCH 6.5 063/739] selftests/bpf: Fix bpf_nf failure upon test rerun Greg Kroah-Hartman
2023-09-11 13:37 ` [PATCH 6.5 064/739] libbpf: only reset sec_def handler when necessary Greg Kroah-Hartman
2023-09-11 13:37 ` [PATCH 6.5 065/739] bpftool: use a local copy of perf_event to fix accessing :: Bpf_cookie Greg Kroah-Hartman
2023-09-11 13:37 ` [PATCH 6.5 066/739] bpftool: Define a local bpf_perf_link to fix accessing its fields Greg Kroah-Hartman
2023-09-11 13:37 ` [PATCH 6.5 067/739] bpftool: Use a local copy of BPF_LINK_TYPE_PERF_EVENT in pid_iter.bpf.c Greg Kroah-Hartman
2023-09-11 13:37 ` [PATCH 6.5 068/739] bpftool: Use a local bpf_perf_event_value to fix accessing its fields Greg Kroah-Hartman
2023-09-11 13:37 ` [PATCH 6.5 069/739] libbpf: Fix realloc API handling in zero-sized edge cases Greg Kroah-Hartman
2023-09-11 13:37 ` [PATCH 6.5 070/739] bpf: Clear the probe_addr for uprobe Greg Kroah-Hartman
2023-09-11 13:37 ` [PATCH 6.5 071/739] bpf: Fix an error around PTR_UNTRUSTED Greg Kroah-Hartman
2023-09-11 13:37 ` [PATCH 6.5 072/739] bpf: Fix an error in verifying a field in a union Greg Kroah-Hartman
2023-09-11 13:37 ` [PATCH 6.5 073/739] crypto: qat - change value of default idle filter Greg Kroah-Hartman
2023-09-11 13:37 ` [PATCH 6.5 074/739] tcp: tcp_enter_quickack_mode() should be static Greg Kroah-Hartman
2023-09-11 13:37 ` [PATCH 6.5 075/739] hwrng: nomadik - keep clock enabled while hwrng is registered Greg Kroah-Hartman
2023-09-11 13:37 ` [PATCH 6.5 076/739] hwrng: pic32 - use devm_clk_get_enabled Greg Kroah-Hartman
2023-09-11 13:37 ` [PATCH 6.5 077/739] regmap: maple: Use alloc_flags for memory allocations Greg Kroah-Hartman
2023-09-11 13:37 ` [PATCH 6.5 078/739] regmap: rbtree: " Greg Kroah-Hartman
2023-09-11 13:37 ` [PATCH 6.5 079/739] wifi: rtw89: debug: Fix error handling in rtw89_debug_priv_btc_manual_set() Greg Kroah-Hartman
2023-09-11 13:37 ` [PATCH 6.5 080/739] wifi: mt76: mt7996: fix header translation logic Greg Kroah-Hartman
2023-09-11 13:38 ` [PATCH 6.5 081/739] wifi: mt76: mt7915: fix background radar event being blocked Greg Kroah-Hartman
2023-09-11 13:38 ` [PATCH 6.5 082/739] wifi: mt76: mt7915: rework tx packets counting when WED is active Greg Kroah-Hartman
2023-09-11 13:38 ` [PATCH 6.5 083/739] wifi: mt76: mt7915: rework tx bytes " Greg Kroah-Hartman
2023-09-11 13:38 ` [PATCH 6.5 084/739] wifi: mt76: mt7921: fix non-PSC channel scan fail Greg Kroah-Hartman
2023-09-11 13:38 ` [PATCH 6.5 085/739] wifi: mt76: mt7996: fix bss wlan_idx when sending bss_info command Greg Kroah-Hartman
2023-09-11 13:38 ` [PATCH 6.5 086/739] wifi: mt76: mt7996: use correct phy for background radar event Greg Kroah-Hartman
2023-09-11 13:38 ` [PATCH 6.5 087/739] wifi: mt76: mt7996: fix WA event ring size Greg Kroah-Hartman
2023-09-11 13:38 ` [PATCH 6.5 088/739] udp: re-score reuseport groups when connected sockets are present Greg Kroah-Hartman
2023-09-11 13:38 ` [PATCH 6.5 089/739] bpf: reject unhashed sockets in bpf_sk_assign Greg Kroah-Hartman
2023-09-11 13:38 ` [PATCH 6.5 090/739] net: export inet_lookup_reuseport and inet6_lookup_reuseport Greg Kroah-Hartman
2023-09-11 14:13   ` Lorenz Bauer
2023-09-12 12:04     ` Greg Kroah-Hartman
2023-09-11 13:38 ` [PATCH 6.5 091/739] net: remove duplicate reuseport_lookup functions Greg Kroah-Hartman
2023-09-11 13:38 ` [PATCH 6.5 092/739] bpf, net: Support SO_REUSEPORT sockets with bpf_sk_assign Greg Kroah-Hartman
2023-09-11 13:38 ` [PATCH 6.5 093/739] wifi: mt76: mt7915: fix command timeout in AP stop period Greg Kroah-Hartman
2023-09-11 13:38 ` [PATCH 6.5 094/739] wifi: mt76: mt7915: fix capabilities in non-AP mode Greg Kroah-Hartman
2023-09-11 13:38 ` [PATCH 6.5 095/739] wifi: mt76: mt7915: remove VHT160 capability on MT7915 Greg Kroah-Hartman
2023-09-11 13:38 ` [PATCH 6.5 096/739] wifi: mt76: testmode: add nla_policy for MT76_TM_ATTR_TX_LENGTH Greg Kroah-Hartman
2023-09-11 13:38 ` [PATCH 6.5 097/739] spi: tegra20-sflash: fix to check return value of platform_get_irq() in tegra_sflash_probe() Greg Kroah-Hartman
2023-09-11 13:38 ` [PATCH 6.5 098/739] can: gs_usb: gs_usb_receive_bulk_callback(): count RX overflow errors also in case of OOM Greg Kroah-Hartman
2023-09-11 13:38 ` [PATCH 6.5 099/739] can: tcan4x5x: Remove reserved register 0x814 from writable table Greg Kroah-Hartman
2023-09-11 13:38 ` [PATCH 6.5 100/739] wifi: mt76: mt7915: fix tlv length of mt7915_mcu_get_chan_mib_info Greg Kroah-Hartman
2023-09-11 13:38 ` [PATCH 6.5 101/739] wifi: mt76: mt7915: fix power-limits while chan_switch Greg Kroah-Hartman
2023-09-11 13:38 ` [PATCH 6.5 102/739] wifi: rtw89: Fix loading of compressed firmware Greg Kroah-Hartman
2023-09-11 13:38 ` [PATCH 6.5 103/739] wifi: mwifiex: Fix OOB and integer underflow when rx packets Greg Kroah-Hartman
2023-09-11 13:38 ` [PATCH 6.5 104/739] wifi: mwifiex: fix error recovery in PCIE buffer descriptor management Greg Kroah-Hartman
2023-09-11 13:38 ` [PATCH 6.5 105/739] wifi: ath11k: fix band selection for ppdu received in channel 177 of 5 GHz Greg Kroah-Hartman
2023-09-11 13:38 ` [PATCH 6.5 106/739] wifi: ath12k: fix memcpy array overflow in ath12k_peer_assoc_h_he() Greg Kroah-Hartman
2023-09-11 13:38 ` [PATCH 6.5 107/739] selftests/bpf: fix static assert compilation issue for test_cls_*.c Greg Kroah-Hartman
2023-09-11 13:38 ` [PATCH 6.5 108/739] power: supply: qcom_pmi8998_charger: fix uninitialized variable Greg Kroah-Hartman
2023-09-11 13:38 ` [PATCH 6.5 109/739] spi: mpc5xxx-psc: Fix unsigned expression compared with zero Greg Kroah-Hartman
2023-09-11 13:38 ` [PATCH 6.5 110/739] crypto: af_alg - Fix missing initialisation affecting gcm-aes-s390 Greg Kroah-Hartman
2023-09-11 13:38 ` [PATCH 6.5 111/739] bpf: fix bpf_dynptr_slice() to stop return an ERR_PTR Greg Kroah-Hartman
2023-09-11 13:38 ` [PATCH 6.5 112/739] kbuild: rust_is_available: remove -v option Greg Kroah-Hartman
2023-09-11 13:38 ` [PATCH 6.5 113/739] kbuild: rust_is_available: fix version check when CC has multiple arguments Greg Kroah-Hartman
2023-09-11 13:38 ` [PATCH 6.5 114/739] kbuild: rust_is_available: add check for `bindgen` invocation Greg Kroah-Hartman
2023-09-11 13:38 ` [PATCH 6.5 115/739] kbuild: rust_is_available: fix confusion when a version appears in the path Greg Kroah-Hartman
2023-09-11 13:38 ` [PATCH 6.5 116/739] crypto: stm32 - Properly handle pm_runtime_get failing Greg Kroah-Hartman
2023-09-11 13:38 ` [PATCH 6.5 117/739] crypto: api - Use work queue in crypto_destroy_instance Greg Kroah-Hartman
2023-09-11 13:38 ` [PATCH 6.5 118/739] Bluetooth: ISO: Add support for connecting multiple BISes Greg Kroah-Hartman
2023-09-11 13:38 ` [PATCH 6.5 119/739] Bluetooth: ISO: do not emit new LE Create CIS if previous is pending Greg Kroah-Hartman
2023-09-11 13:38 ` [PATCH 6.5 120/739] Bluetooth: nokia: fix value check in nokia_bluetooth_serdev_probe() Greg Kroah-Hartman
2023-09-11 13:38 ` [PATCH 6.5 121/739] Bluetooth: ISO: Fix not checking for valid CIG/CIS IDs Greg Kroah-Hartman
2023-09-11 13:38 ` [PATCH 6.5 122/739] Bluetooth: hci_conn: Fix not allowing valid CIS ID Greg Kroah-Hartman
2023-09-11 13:38 ` [PATCH 6.5 123/739] Bluetooth: hci_conn: Fix hci_le_set_cig_params Greg Kroah-Hartman
2023-09-11 13:38 ` [PATCH 6.5 124/739] Bluetooth: Fix potential use-after-free when clear keys Greg Kroah-Hartman
2023-09-11 13:38 ` [PATCH 6.5 125/739] Bluetooth: hci_sync: Dont double print name in add/remove adv_monitor Greg Kroah-Hartman
2023-09-11 13:38 ` [PATCH 6.5 126/739] Bluetooth: hci_sync: Avoid use-after-free in dbg for hci_add_adv_monitor() Greg Kroah-Hartman
2023-09-11 13:38 ` [PATCH 6.5 127/739] Bluetooth: hci_conn: Always allocate unique handles Greg Kroah-Hartman
2023-09-11 13:38 ` [PATCH 6.5 128/739] Bluetooth: hci_event: drop only unbound CIS if Set CIG Parameters fails Greg Kroah-Hartman
2023-09-11 13:38 ` [PATCH 6.5 129/739] net: tcp: fix unexcepted socket die when snd_wnd is 0 Greg Kroah-Hartman
2023-09-11 13:38 ` [PATCH 6.5 130/739] net: pcs: lynx: fix lynx_pcs_link_up_sgmii() not doing anything in fixed-link mode Greg Kroah-Hartman
2023-09-11 13:38 ` [PATCH 6.5 131/739] libbpf: Set close-on-exec flag on gzopen Greg Kroah-Hartman
2023-09-11 13:38 ` [PATCH 6.5 132/739] selftests/bpf: Fix repeat option when kfunc_call verification fails Greg Kroah-Hartman
2023-09-11 13:38 ` [PATCH 6.5 133/739] selftests/bpf: Clean up fmod_ret in bench_rename test script Greg Kroah-Hartman
2023-09-11 13:38 ` [PATCH 6.5 134/739] spi: tegra114: Remove unnecessary NULL-pointer checks Greg Kroah-Hartman
2023-09-11 14:33   ` Mark Brown
2023-09-12 10:38     ` Greg Kroah-Hartman
2023-09-11 13:38 ` [PATCH 6.5 135/739] net: Fix slab-out-of-bounds in inet[6]_steal_sock Greg Kroah-Hartman
2023-09-11 13:38 ` [PATCH 6.5 136/739] net: hns3: move dump regs function to a separate file Greg Kroah-Hartman
2023-09-11 13:38 ` [PATCH 6.5 137/739] net: hns3: Support tlv in regs data for HNS3 PF driver Greg Kroah-Hartman
2023-09-11 13:38 ` [PATCH 6.5 138/739] net: hns3: fix wrong rpu tln reg issue Greg Kroah-Hartman
2023-09-11 13:38 ` [PATCH 6.5 139/739] net-memcg: Fix scope of sockmem pressure indicators Greg Kroah-Hartman
2023-09-11 13:38 ` [PATCH 6.5 140/739] ice: ice_aq_check_events: fix off-by-one check when filling buffer Greg Kroah-Hartman
2023-09-11 13:39 ` [PATCH 6.5 141/739] crypto: caam - fix unchecked return value error Greg Kroah-Hartman
2023-09-11 13:39 ` [PATCH 6.5 142/739] hwrng: iproc-rng200 - Implement suspend and resume calls Greg Kroah-Hartman
2023-09-11 13:39 ` [PATCH 6.5 143/739] lwt: Fix return values of BPF xmit ops Greg Kroah-Hartman
2023-09-11 13:39 ` [PATCH 6.5 144/739] lwt: Check LWTUNNEL_XMIT_CONTINUE strictly Greg Kroah-Hartman
2023-09-11 13:39 ` [PATCH 6.5 145/739] usb: typec: tcpm: set initial svdm version based on pd revision Greg Kroah-Hartman
2023-09-11 13:39 ` [PATCH 6.5 146/739] usb: typec: bus: verify partner exists in typec_altmode_attention Greg Kroah-Hartman
2023-09-11 13:39 ` [PATCH 6.5 147/739] USB: core: Unite old scheme and new scheme descriptor reads Greg Kroah-Hartman
2023-09-11 13:39 ` [PATCH 6.5 148/739] USB: core: Change usb_get_device_descriptor() API Greg Kroah-Hartman
2023-09-11 13:39 ` [PATCH 6.5 149/739] USB: core: Fix race by not overwriting udev->descriptor in hub_port_init() Greg Kroah-Hartman
2023-09-11 13:39 ` [PATCH 6.5 150/739] scripts/gdb: fix lx-lsmod show the wrong size Greg Kroah-Hartman
2023-09-11 13:39 ` [PATCH 6.5 151/739] nmi_backtrace: allow excluding an arbitrary CPU Greg Kroah-Hartman
2023-09-11 13:39 ` [PATCH 6.5 152/739] watchdog/hardlockup: avoid large stack frames in watchdog_hardlockup_check() Greg Kroah-Hartman
2023-09-11 13:39 ` [PATCH 6.5 153/739] fs: ocfs2: namei: check return value of ocfs2_add_entry() Greg Kroah-Hartman
2023-09-11 13:39 ` [PATCH 6.5 154/739] net: lan966x: Fix return value check for vcap_get_rule() Greg Kroah-Hartman
2023-09-11 13:39 ` [PATCH 6.5 155/739] net: annotate data-races around sk->sk_lingertime Greg Kroah-Hartman
2023-09-11 13:39 ` [PATCH 6.5 156/739] hwmon: (asus-ec-sensosrs) fix mutex path for X670E Hero Greg Kroah-Hartman
2023-09-11 13:39 ` [PATCH 6.5 157/739] wifi: mwifiex: fix memory leak in mwifiex_histogram_read() Greg Kroah-Hartman
2023-09-11 13:39 ` [PATCH 6.5 158/739] wifi: mwifiex: Fix missed return in oob checks failed path Greg Kroah-Hartman
2023-09-11 13:39 ` [PATCH 6.5 159/739] wifi: rtw89: 8852b: rfk: fine tune IQK parameters to improve performance on 2GHz band Greg Kroah-Hartman
2023-09-11 13:39 ` [PATCH 6.5 160/739] selftests: memfd: error out test process when child test fails Greg Kroah-Hartman
2023-09-11 13:39 ` [PATCH 6.5 161/739] samples/bpf: fix bio latency check with tracepoint Greg Kroah-Hartman
2023-09-11 13:39 ` [PATCH 6.5 162/739] samples/bpf: fix broken map lookup probe Greg Kroah-Hartman
2023-09-11 13:39 ` [PATCH 6.5 163/739] wifi: ath9k: fix races between ath9k_wmi_cmd and ath9k_wmi_ctrl_rx Greg Kroah-Hartman
2023-09-11 13:39 ` [PATCH 6.5 164/739] wifi: ath9k: protect WMI command response buffer replacement with a lock Greg Kroah-Hartman
2023-09-11 13:39 ` [PATCH 6.5 165/739] bpf: Fix a bpf_kptr_xchg() issue with local kptr Greg Kroah-Hartman
2023-09-11 13:39 ` [PATCH 6.5 166/739] wifi: mac80211: fix puncturing bitmap handling in CSA Greg Kroah-Hartman
2023-09-11 13:39 ` [PATCH 6.5 167/739] wifi: nl80211/cfg80211: add forgotten nla_policy for BSS color attribute Greg Kroah-Hartman
2023-09-11 13:39 ` [PATCH 6.5 168/739] mac80211: make ieee80211_tx_info padding explicit Greg Kroah-Hartman
2023-09-11 13:39 ` [PATCH 6.5 169/739] bpf: Fix check_func_arg_reg_off bug for graph root/node Greg Kroah-Hartman
2023-09-11 13:39 ` [PATCH 6.5 170/739] wifi: mwifiex: avoid possible NULL skb pointer dereference Greg Kroah-Hartman
2023-09-11 13:39 ` [PATCH 6.5 171/739] Bluetooth: hci_conn: Consolidate code for aborting connections Greg Kroah-Hartman
2023-09-11 13:39 ` [PATCH 6.5 172/739] Bluetooth: ISO: Notify user space about failed bis connections Greg Kroah-Hartman
2023-09-11 13:39 ` [PATCH 6.5 173/739] Bluetooth: hci_sync: Fix UAF on hci_abort_conn_sync Greg Kroah-Hartman
2023-09-11 13:39 ` [PATCH 6.5 174/739] Bluetooth: hci_sync: Fix UAF in hci_disconnect_all_sync Greg Kroah-Hartman
2023-09-11 13:39 ` [PATCH 6.5 175/739] Bluetooth: hci_conn: fail SCO/ISO via hci_conn_failed if ACL gone early Greg Kroah-Hartman
2023-09-11 13:39 ` [PATCH 6.5 176/739] Bluetooth: btusb: Do not call kfree_skb() under spin_lock_irqsave() Greg Kroah-Hartman
2023-09-11 13:39 ` [PATCH 6.5 177/739] arm64: mm: use ptep_clear() instead of pte_clear() in clear_flush() Greg Kroah-Hartman
2023-09-11 13:39 ` [PATCH 6.5 178/739] net/mlx5: Dynamic cyclecounter shift calculation for PTP free running clock Greg Kroah-Hartman
2023-09-11 13:39 ` [PATCH 6.5 179/739] wifi: ath9k: use IS_ERR() with debugfs_create_dir() Greg Kroah-Hartman
2023-09-11 13:39 ` [PATCH 6.5 180/739] ice: avoid executing commands on other ports when driving sync Greg Kroah-Hartman
2023-09-11 13:39 ` [PATCH 6.5 181/739] octeontx2-pf: fix page_pool creation fail for rings > 32k Greg Kroah-Hartman
2023-09-11 13:39 ` [PATCH 6.5 182/739] net: arcnet: Do not call kfree_skb() under local_irq_disable() Greg Kroah-Hartman
2023-09-11 13:39 ` [PATCH 6.5 183/739] kunit: Fix checksum tests on big endian CPUs Greg Kroah-Hartman
2023-09-11 13:39 ` [PATCH 6.5 184/739] mlxsw: i2c: Fix chunk size setting in output mailbox buffer Greg Kroah-Hartman
2023-09-11 13:39 ` [PATCH 6.5 185/739] mlxsw: i2c: Limit single transaction buffer size Greg Kroah-Hartman
2023-09-11 13:39 ` [PATCH 6.5 186/739] mlxsw: core_hwmon: Adjust module label names based on MTCAP sensor counter Greg Kroah-Hartman
2023-09-11 13:39 ` [PATCH 6.5 187/739] crypto: qat - fix crypto capability detection for 4xxx Greg Kroah-Hartman
2023-09-11 13:39 ` [PATCH 6.5 188/739] hwmon: (tmp513) Fix the channel number in tmp51x_is_visible() Greg Kroah-Hartman
2023-09-11 13:39 ` [PATCH 6.5 189/739] octeontx2-pf: Fix PFC TX scheduler free Greg Kroah-Hartman
2023-09-11 13:39 ` [PATCH 6.5 190/739] octeontx2-af: CN10KB: fix PFC configuration Greg Kroah-Hartman
2023-09-11 13:39 ` [PATCH 6.5 191/739] cteonxt2-pf: Fix backpressure config for multiple PFC priorities to work simultaneously Greg Kroah-Hartman
2023-09-11 13:39 ` [PATCH 6.5 192/739] sfc: Check firmware supports Ethernet PTP filter Greg Kroah-Hartman
2023-09-11 13:39 ` [PATCH 6.5 193/739] net/sched: sch_hfsc: Ensure inner classes have fsc curve Greg Kroah-Hartman
2023-09-11 13:39 ` [PATCH 6.5 194/739] pds_core: protect devlink callbacks from fw_down state Greg Kroah-Hartman
2023-09-11 13:39 ` [PATCH 6.5 195/739] pds_core: no health reporter in VF Greg Kroah-Hartman
2023-09-11 13:39 ` [PATCH 6.5 196/739] pds_core: no reset command for VF Greg Kroah-Hartman
2023-09-11 13:39 ` [PATCH 6.5 197/739] pds_core: check for work queue before use Greg Kroah-Hartman
2023-09-11 13:39 ` [PATCH 6.5 198/739] pds_core: pass opcode to devcmd_wait Greg Kroah-Hartman
2023-09-11 13:39 ` [PATCH 6.5 199/739] netrom: Deny concurrent connect() Greg Kroah-Hartman
2023-09-11 13:39 ` [PATCH 6.5 200/739] drm/bridge: tc358764: Fix debug print parameter order Greg Kroah-Hartman
2023-09-11 13:40 ` [PATCH 6.5 201/739] ASoC: soc-compress: Fix deadlock in soc_compr_open_fe Greg Kroah-Hartman
2023-09-11 13:40 ` [PATCH 6.5 202/739] ASoC: cs43130: Fix numerator/denominator mixup Greg Kroah-Hartman
2023-09-11 13:40 ` [PATCH 6.5 203/739] drm: bridge: dw-mipi-dsi: Fix enable/disable of DSI controller Greg Kroah-Hartman
2023-09-11 13:40 ` [PATCH 6.5 204/739] quota: factor out dquot_write_dquot() Greg Kroah-Hartman
2023-09-11 13:40 ` [PATCH 6.5 205/739] quota: rename dquot_active() to inode_quota_active() Greg Kroah-Hartman
2023-09-11 13:40 ` [PATCH 6.5 206/739] quota: add new helper dquot_active() Greg Kroah-Hartman
2023-09-11 13:40 ` [PATCH 6.5 207/739] quota: fix dqput() to follow the guarantees dquot_srcu should provide Greg Kroah-Hartman
2023-09-11 13:40 ` [PATCH 6.5 208/739] drm/amd/display: Do not set drr on pipe commit Greg Kroah-Hartman
2023-09-11 13:40 ` [PATCH 6.5 209/739] drm/hyperv: Fix a compilation issue because of not including screen_info.h Greg Kroah-Hartman
2023-09-11 13:40 ` [PATCH 6.5 210/739] ASoC: stac9766: fix build errors with REGMAP_AC97 Greg Kroah-Hartman
2023-09-11 13:40 ` [PATCH 6.5 211/739] soc: qcom: ocmem: Fix NUM_PORTS & NUM_MACROS macros Greg Kroah-Hartman
2023-09-11 13:40 ` [PATCH 6.5 212/739] arm64: defconfig: enable Qualcomm MSM8996 Global Clock Controller as built-in Greg Kroah-Hartman
2023-09-11 13:40 ` [PATCH 6.5 213/739] arm64: dts: qcom: sm8150: use proper DSI PHY compatible Greg Kroah-Hartman
2023-09-11 13:40 ` [PATCH 6.5 214/739] arm64: dts: qcom: sm6350: Fix ZAP region Greg Kroah-Hartman
2023-09-11 13:40 ` [PATCH 6.5 215/739] Revert "arm64: dts: qcom: msm8996: rename labels for HDMI nodes" Greg Kroah-Hartman
2023-09-11 13:40 ` [PATCH 6.5 216/739] arm64: dts: qcom: sm8250: correct dynamic power coefficients Greg Kroah-Hartman
2023-09-11 13:40 ` [PATCH 6.5 217/739] arm64: dts: qcom: sm8450: correct crypto unit address Greg Kroah-Hartman
2023-09-11 13:40 ` [PATCH 6.5 218/739] arm64: dts: qcom: msm8916-l8150: correct light sensor VDDIO supply Greg Kroah-Hartman
2023-09-11 13:40 ` [PATCH 6.5 219/739] arm64: dts: qcom: sm8250-edo: Add gpio line names for TLMM Greg Kroah-Hartman
2023-09-11 13:40 ` [PATCH 6.5 220/739] arm64: dts: qcom: sm8250-edo: Add GPIO line names for PMIC GPIOs Greg Kroah-Hartman
2023-09-11 13:40 ` [PATCH 6.5 221/739] arm64: dts: qcom: sm8250-edo: Rectify gpio-keys Greg Kroah-Hartman
2023-09-11 13:40 ` [PATCH 6.5 222/739] arm64: dts: qcom: sc8280xp-crd: Correct vreg_misc_3p3 GPIO Greg Kroah-Hartman
2023-09-11 13:40 ` [PATCH 6.5 223/739] arm64: dts: qcom: sc8280xp: Add missing SCM interconnect Greg Kroah-Hartman
2023-09-11 13:40 ` [PATCH 6.5 224/739] arm64: dts: qcom: msm8939: Drop "qcom,idle-state-spc" compatible Greg Kroah-Hartman
2023-09-11 13:40 ` [PATCH 6.5 225/739] arm64: dts: qcom: msm8939: Add missing cache-unified to L2 Greg Kroah-Hartman
2023-09-11 13:40 ` [PATCH 6.5 226/739] arm64: dts: qcom: msm8996: Add missing interrupt to the USB2 controller Greg Kroah-Hartman
2023-09-11 13:40 ` [PATCH 6.5 227/739] arm64: dts: qcom: sdm845-tama: Set serial indices and stdout-path Greg Kroah-Hartman
2023-09-11 13:40 ` [PATCH 6.5 228/739] arm64: dts: qcom: sm8350: Fix CPU idle state residency times Greg Kroah-Hartman
2023-09-11 13:40 ` [PATCH 6.5 229/739] arm64: dts: qcom: sm8350: Add missing LMH interrupts to cpufreq Greg Kroah-Hartman
2023-09-11 13:40 ` [PATCH 6.5 230/739] arm64: dts: qcom: sc8180x: Fix cluster PSCI suspend param Greg Kroah-Hartman
2023-09-11 13:40 ` [PATCH 6.5 231/739] arm64: dts: qcom: sm8350: Use proper CPU compatibles Greg Kroah-Hartman
2023-09-11 13:40 ` [PATCH 6.5 232/739] arm64: dts: qcom: pm8350: fix thermal zone name Greg Kroah-Hartman
2023-09-11 13:40 ` [PATCH 6.5 233/739] arm64: dts: qcom: pm8350b: " Greg Kroah-Hartman
2023-09-11 13:40 ` [PATCH 6.5 234/739] arm64: dts: qcom: pmr735b: " Greg Kroah-Hartman
2023-09-11 13:40 ` [PATCH 6.5 235/739] arm64: dts: qcom: pmk8350: fix ADC-TM compatible string Greg Kroah-Hartman
2023-09-11 13:40 ` [PATCH 6.5 236/739] arm64: dts: qcom: sm8450-hdk: remove pmr735b PMIC inclusion Greg Kroah-Hartman
2023-09-11 13:40 ` [PATCH 6.5 237/739] arm64: dts: qcom: sm8250: Mark PCIe hosts as DMA coherent Greg Kroah-Hartman
2023-09-11 13:40 ` [PATCH 6.5 238/739] arm64: dts: qcom: minor whitespace cleanup around = Greg Kroah-Hartman
2023-09-11 13:40 ` [PATCH 6.5 239/739] arm64: dts: qcom: sm8250: Mark SMMUs as DMA coherent Greg Kroah-Hartman
2023-09-11 13:40 ` [PATCH 6.5 240/739] ARM: dts: stm32: Add missing detach mailbox for emtrion emSBC-Argon Greg Kroah-Hartman
2023-09-11 13:40 ` [PATCH 6.5 241/739] ARM: dts: stm32: Add missing detach mailbox for Odyssey SoM Greg Kroah-Hartman
2023-09-11 13:40 ` [PATCH 6.5 242/739] ARM: dts: stm32: Add missing detach mailbox for DHCOM SoM Greg Kroah-Hartman
2023-09-11 13:40 ` [PATCH 6.5 243/739] ARM: dts: stm32: Add missing detach mailbox for DHCOR SoM Greg Kroah-Hartman
2023-09-11 13:40 ` [PATCH 6.5 244/739] firmware: ti_sci: Use system_state to determine polling Greg Kroah-Hartman
2023-09-11 13:40 ` [PATCH 6.5 245/739] drm/amdgpu: avoid integer overflow warning in amdgpu_device_resize_fb_bar() Greg Kroah-Hartman
2023-09-11 13:40 ` [PATCH 6.5 246/739] ARM: dts: BCM53573: Drop nonexistent "default-off" LED trigger Greg Kroah-Hartman
2023-09-11 13:40 ` [PATCH 6.5 247/739] ARM: dts: BCM53573: Drop nonexistent #usb-cells Greg Kroah-Hartman
2023-09-11 13:40 ` [PATCH 6.5 248/739] ARM: dts: BCM53573: Add cells sizes to PCIe node Greg Kroah-Hartman
2023-09-11 13:40 ` [PATCH 6.5 249/739] ARM: dts: BCM53573: Use updated "spi-gpio" binding properties Greg Kroah-Hartman
2023-09-11 13:40 ` [PATCH 6.5 250/739] arm64: tegra: Add missing alias for NVIDIA IGX Orin Greg Kroah-Hartman
2023-09-11 13:40 ` [PATCH 6.5 251/739] arm64: tegra: Fix HSUART for Jetson AGX Orin Greg Kroah-Hartman
2023-09-11 13:40 ` [PATCH 6.5 252/739] arm64: dts: qcom: sm8250-sony-xperia: correct GPIO keys wakeup again Greg Kroah-Hartman
2023-09-11 13:40 ` [PATCH 6.5 253/739] arm64: dts: qcom: pm6150l: Add missing short interrupt Greg Kroah-Hartman
2023-09-11 13:40 ` [PATCH 6.5 254/739] arm64: dts: qcom: pm660l: " Greg Kroah-Hartman
2023-09-11 13:40 ` [PATCH 6.5 255/739] arm64: dts: qcom: pmi8950: Add missing OVP interrupt Greg Kroah-Hartman
2023-09-11 13:40 ` [PATCH 6.5 256/739] arm64: dts: qcom: pmi8994: " Greg Kroah-Hartman
2023-09-11 13:40 ` [PATCH 6.5 257/739] arm64: dts: qcom: sc8180x: Add missing cache-unified to L3 Greg Kroah-Hartman
2023-09-11 13:40 ` [PATCH 6.5 258/739] arm64: tegra: Fix HSUART for Smaug Greg Kroah-Hartman
2023-09-11 13:40 ` [PATCH 6.5 259/739] drm/etnaviv: fix dumping of active MMU context Greg Kroah-Hartman
2023-09-11 13:40 ` [PATCH 6.5 260/739] block: cleanup queue_wc_store Greg Kroah-Hartman
2023-09-11 13:41 ` [PATCH 6.5 261/739] block: dont allow enabling a cache on devices that dont support it Greg Kroah-Hartman
2023-09-11 13:41 ` [PATCH 6.5 262/739] blk-flush: fix rq->flush.seq for post-flush requests Greg Kroah-Hartman
2023-09-11 13:41 ` [PATCH 6.5 263/739] x86/mm: Fix PAT bit missing from page protection modify mask Greg Kroah-Hartman
2023-09-11 13:41 ` [PATCH 6.5 264/739] drm/bridge: anx7625: Use common macros for DP power sequencing commands Greg Kroah-Hartman
2023-09-11 13:41 ` [PATCH 6.5 265/739] drm/bridge: anx7625: Use common macros for HDCP capabilities Greg Kroah-Hartman
2023-09-11 13:41 ` [PATCH 6.5 266/739] ARM: dts: samsung: s3c6410-mini6410: correct ethernet reg addresses (split) Greg Kroah-Hartman
2023-09-11 13:41 ` [PATCH 6.5 267/739] ARM: dts: samsung: s5pv210-smdkv210: " Greg Kroah-Hartman
2023-09-11 13:41 ` [PATCH 6.5 268/739] drm: adv7511: Fix low refresh rate register for ADV7533/5 Greg Kroah-Hartman
2023-09-11 13:41 ` [PATCH 6.5 269/739] ARM: dts: BCM53573: Fix Ethernet info for Luxul devices Greg Kroah-Hartman
2023-09-11 13:41 ` [PATCH 6.5 270/739] arm64: dts: qcom: sdm845: Add missing RPMh power domain to GCC Greg Kroah-Hartman
2023-09-11 13:41 ` [PATCH 6.5 271/739] arm64: dts: qcom: sdm845: Fix the min frequency of "ice_core_clk" Greg Kroah-Hartman
2023-09-11 13:41 ` [PATCH 6.5 272/739] arm64: dts: qcom: sc8180x: Fix LLCC reg property Greg Kroah-Hartman
2023-09-11 13:41 ` [PATCH 6.5 273/739] arm64: dts: qcom: msm8996-gemini: fix touchscreen VIO supply Greg Kroah-Hartman
2023-09-11 13:41 ` [PATCH 6.5 274/739] arm64: dts: qcom: sc8180x-pmics: add missing qcom,spmi-gpio fallbacks Greg Kroah-Hartman
2023-09-11 13:41 ` [PATCH 6.5 275/739] arm64: dts: qcom: sc8180x-pmics: add missing gpio-ranges Greg Kroah-Hartman
2023-09-11 13:41 ` [PATCH 6.5 276/739] arm64: dts: qcom: sc8180x-pmics: align SPMI PMIC Power-on node name with dtschema Greg Kroah-Hartman
2023-09-11 13:41 ` [PATCH 6.5 277/739] arm64: dts: qcom: sc8180x-pmics: align LPG " Greg Kroah-Hartman
2023-09-11 13:41 ` [PATCH 6.5 278/739] dt-bindings: arm: msm: kpss-acc: Make the optional reg truly optional Greg Kroah-Hartman
2023-09-11 13:41 ` [PATCH 6.5 279/739] drm/amdgpu: Update min() to min_t() in amdgpu_info_ioctl Greg Kroah-Hartman
2023-09-11 13:41 ` [PATCH 6.5 280/739] drm/amdgpu: Use seq_puts() instead of seq_printf() Greg Kroah-Hartman
2023-09-11 13:41 ` [PATCH 6.5 281/739] arm64: dts: rockchip: Fix PCIe regulators on Radxa E25 Greg Kroah-Hartman
2023-09-11 13:41 ` [PATCH 6.5 282/739] arm64: dts: rockchip: Enable SATA " Greg Kroah-Hartman
2023-09-11 13:41 ` [PATCH 6.5 283/739] ASoC: loongson: drop of_match_ptr for OF device id Greg Kroah-Hartman
2023-09-11 13:41 ` [PATCH 6.5 284/739] ASoC: fsl: fsl_qmc_audio: Fix snd_pcm_format_t values handling Greg Kroah-Hartman
2023-09-11 13:41 ` [PATCH 6.5 285/739] md: restore noio_flag for the last mddev_resume() Greg Kroah-Hartman
2023-09-11 13:41 ` [PATCH 6.5 286/739] md/raid10: factor out dereference_rdev_and_rrdev() Greg Kroah-Hartman
2023-09-11 13:41 ` [PATCH 6.5 287/739] md/raid10: use dereference_rdev_and_rrdev() to get devices Greg Kroah-Hartman
2023-09-11 13:41 ` [PATCH 6.5 288/739] md/md-bitmap: remove unnecessary local variable in backlog_store() Greg Kroah-Hartman
2023-09-11 13:41 ` [PATCH 6.5 289/739] md/md-bitmap: hold reconfig_mutex " Greg Kroah-Hartman
2023-09-11 13:41 ` [PATCH 6.5 290/739] drm/msm: Update dev core dump to not print backwards Greg Kroah-Hartman
2023-09-11 13:41 ` [PATCH 6.5 291/739] drm/tegra: dpaux: Fix incorrect return value of platform_get_irq Greg Kroah-Hartman
2023-09-11 13:41 ` [PATCH 6.5 292/739] of: unittest: fix null pointer dereferencing in of_unittest_find_node_by_name() Greg Kroah-Hartman
2023-09-11 13:41 ` [PATCH 6.5 293/739] arm64: dts: qcom: sm8150: Fix the I2C7 interrupt Greg Kroah-Hartman
2023-09-11 13:41 ` [PATCH 6.5 294/739] drm/ast: report connection status on Display Port Greg Kroah-Hartman
2023-09-11 13:41 ` [PATCH 6.5 295/739] ARM: dts: BCM53573: Fix Tenda AC9 switch CPU port Greg Kroah-Hartman
2023-09-11 13:41 ` [PATCH 6.5 296/739] drm/armada: Fix off-by-one error in armada_overlay_get_property() Greg Kroah-Hartman
2023-09-11 13:41 ` [PATCH 6.5 297/739] drm/repaper: Reduce temporary buffer size in repaper_fb_dirty() Greg Kroah-Hartman
2023-09-11 13:41 ` [PATCH 6.5 298/739] drm/panel: simple: Add missing connector type and pixel format for AUO T215HVN01 Greg Kroah-Hartman
2023-09-11 13:41 ` [PATCH 6.5 299/739] ima: Remove deprecated IMA_TRUSTED_KEYRING Kconfig Greg Kroah-Hartman
2023-09-11 13:41 ` [PATCH 6.5 300/739] drm: xlnx: zynqmp_dpsub: Add missing check for dma_set_mask Greg Kroah-Hartman
2023-09-11 13:41 ` [PATCH 6.5 301/739] drm/msm/dpu: increase memtype count to 16 for sm8550 Greg Kroah-Hartman
2023-09-11 13:41 ` [PATCH 6.5 302/739] drm/msm/dpu: inline DSC_BLK and DSC_BLK_1_2 macros Greg Kroah-Hartman
2023-09-11 13:41 ` [PATCH 6.5 303/739] drm/msm/dpu: fix DSC 1.2 block lengths Greg Kroah-Hartman
2023-09-11 13:41 ` [PATCH 6.5 304/739] drm/msm/dpu1: Rename sm8150_dspp_blk to sdm845_dspp_blk Greg Kroah-Hartman
2023-09-11 13:41 ` [PATCH 6.5 305/739] drm/msm/dpu: Define names for unnamed sblks Greg Kroah-Hartman
2023-09-11 13:41 ` [PATCH 6.5 306/739] drm/msm/dpu: fix DSC 1.2 enc subblock length Greg Kroah-Hartman
2023-09-11 13:41 ` [PATCH 6.5 307/739] arm64: dts: qcom: sm8550-mtp: Add missing supply for L1B regulator Greg Kroah-Hartman
2023-09-11 13:41 ` [PATCH 6.5 308/739] soc: qcom: smem: Fix incompatible types in comparison Greg Kroah-Hartman
2023-09-11 13:41 ` [PATCH 6.5 309/739] drm/msm/mdp5: Dont leak some plane state Greg Kroah-Hartman
2023-09-11 13:41 ` [PATCH 6.5 310/739] firmware: meson_sm: fix to avoid potential NULL pointer dereference Greg Kroah-Hartman
2023-09-11 13:41 ` [PATCH 6.5 311/739] drm/msm/dpu: fix the irq index in dpu_encoder_phys_wb_wait_for_commit_done Greg Kroah-Hartman
2023-09-11 13:41 ` [PATCH 6.5 312/739] arm64: dts: ti: k3-j784s4-evm: Correct Pin mux offset for ospi Greg Kroah-Hartman
2023-09-11 13:41 ` [PATCH 6.5 313/739] arm64: dts: ti: k3-j721s2: correct pinmux " Greg Kroah-Hartman
2023-09-11 13:41 ` [PATCH 6.5 314/739] smackfs: Prevent underflow in smk_set_cipso() Greg Kroah-Hartman
2023-09-11 13:41 ` [PATCH 6.5 315/739] drm/amdgpu: Sort the includes in amdgpu/amdgpu_drv.c Greg Kroah-Hartman
2023-09-11 13:41 ` [PATCH 6.5 316/739] drm/amdgpu: Move vram, gtt & flash defines to amdgpu_ ttm & _psp.h Greg Kroah-Hartman
2023-09-11 13:41 ` [PATCH 6.5 317/739] drm/amd/pm: fix variable dereferenced issue in amdgpu_device_attr_create() Greg Kroah-Hartman
2023-09-11 13:41 ` [PATCH 6.5 318/739] drm/msm/a2xx: Call adreno_gpu_init() earlier Greg Kroah-Hartman
2023-09-11 13:41 ` [PATCH 6.5 319/739] drm/msm/a6xx: Fix GMU lockdep splat Greg Kroah-Hartman
2023-09-11 13:41 ` [PATCH 6.5 320/739] ASoC: SOF: Intel: hda-mlink: fix off-by-one error Greg Kroah-Hartman
2023-09-11 13:42 ` [PATCH 6.5 321/739] ASoC: SOF: Intel: fix u16/32 confusion in LSDIID Greg Kroah-Hartman
2023-09-11 13:42 ` [PATCH 6.5 322/739] drm/mediatek: Fix uninitialized symbol Greg Kroah-Hartman
2023-09-11 13:42 ` [PATCH 6.5 323/739] audit: fix possible soft lockup in __audit_inode_child() Greg Kroah-Hartman
2023-09-11 13:42 ` [PATCH 6.5 324/739] block/mq-deadline: use correct way to throttling write requests Greg Kroah-Hartman
2023-09-11 13:42 ` [PATCH 6.5 325/739] io_uring: fix drain stalls by invalid SQE Greg Kroah-Hartman
2023-09-11 13:42 ` [PATCH 6.5 326/739] block: move the BIO_CLONED checks out of __bio_try_merge_page Greg Kroah-Hartman
2023-09-11 13:42 ` [PATCH 6.5 327/739] block: move the bi_vcnt check " Greg Kroah-Hartman
2023-09-11 13:42 ` [PATCH 6.5 328/739] block: move the bi_size overflow check in __bio_try_merge_page Greg Kroah-Hartman
2023-09-11 13:42 ` [PATCH 6.5 329/739] block: move the bi_size update out of __bio_try_merge_page Greg Kroah-Hartman
2023-09-11 13:42 ` [PATCH 6.5 330/739] block: dont pass a bio to bio_try_merge_hw_seg Greg Kroah-Hartman
2023-09-11 13:42 ` [PATCH 6.5 331/739] block: make bvec_try_merge_hw_page() non-static Greg Kroah-Hartman
2023-09-11 13:42 ` [PATCH 6.5 332/739] bio-integrity: create multi-page bvecs in bio_integrity_add_page() Greg Kroah-Hartman
2023-09-11 13:42 ` [PATCH 6.5 333/739] drm/mediatek: dp: Add missing error checks in mtk_dp_parse_capabilities Greg Kroah-Hartman
2023-09-11 13:42 ` [PATCH 6.5 334/739] arm64: dts: ti: k3-j784s4-evm: Correct Pin mux offset for ADC Greg Kroah-Hartman
2023-09-11 13:42 ` [PATCH 6.5 335/739] arm64: dts: ti: k3-j784s4: Fix interrupt ranges for wkup & main gpio Greg Kroah-Hartman
2023-09-11 13:42 ` [PATCH 6.5 336/739] bus: ti-sysc: Fix build warning for 64-bit build Greg Kroah-Hartman
2023-09-11 13:42 ` [PATCH 6.5 337/739] drm/mediatek: Remove freeing not dynamic allocated memory Greg Kroah-Hartman
2023-09-11 13:42 ` [PATCH 6.5 338/739] drm/mediatek: Add cnt checking for coverity issue Greg Kroah-Hartman
2023-09-11 13:42 ` [PATCH 6.5 339/739] arm64: dts: imx8mp-debix: remove unused fec pinctrl node Greg Kroah-Hartman
2023-09-11 13:42 ` [PATCH 6.5 340/739] ARM: dts: qcom: ipq4019: correct SDHCI XO clock Greg Kroah-Hartman
2023-09-11 13:42 ` [PATCH 6.5 341/739] arm64: dts: ti: k3-am62x-sk-common: Update main-i2c1 frequency Greg Kroah-Hartman
2023-09-11 13:42 ` [PATCH 6.5 342/739] drm/mediatek: Fix potential memory leak if vmap() fail Greg Kroah-Hartman
2023-09-11 13:42 ` [PATCH 6.5 343/739] drm/mediatek: Fix void-pointer-to-enum-cast warning Greg Kroah-Hartman
2023-09-11 13:42 ` [PATCH 6.5 344/739] arm64: dts: qcom: apq8016-sbc: Fix ov5640 regulator supply names Greg Kroah-Hartman
2023-09-11 13:42 ` [PATCH 6.5 345/739] arm64: dts: qcom: apq8016-sbc: Rename ov5640 enable-gpios to powerdown-gpios Greg Kroah-Hartman
2023-09-11 13:42 ` [PATCH 6.5 346/739] arm64: dts: qcom: msm8998: Drop bus clock reference from MMSS SMMU Greg Kroah-Hartman
2023-09-11 13:42 ` [PATCH 6.5 347/739] arm64: dts: qcom: msm8998: Add missing power domain to " Greg Kroah-Hartman
2023-09-11 13:42 ` [PATCH 6.5 348/739] ARM: dts: qcom: sdx65-mtp: Update the pmic used in sdx65 Greg Kroah-Hartman
2023-09-11 13:42 ` [PATCH 6.5 349/739] arm64: dts: qcom: msm8996: Fix dsi1 interrupts Greg Kroah-Hartman
2023-09-11 13:42 ` [PATCH 6.5 350/739] arm64: dts: qcom: sc8280xp-x13s: Unreserve NC pins Greg Kroah-Hartman
2023-09-11 13:42 ` [PATCH 6.5 351/739] drm/msm/a690: Switch to a660_gmu.bin Greg Kroah-Hartman
2023-09-11 13:42 ` [PATCH 6.5 352/739] bus: ti-sysc: Fix cast to enum warning Greg Kroah-Hartman
2023-09-11 13:42 ` [PATCH 6.5 353/739] block: uapi: Fix compilation errors using ioprio.h with C++ Greg Kroah-Hartman
2023-09-11 13:42 ` [PATCH 6.5 354/739] md/raid5-cache: fix a deadlock in r5l_exit_log() Greg Kroah-Hartman
2023-09-11 13:42 ` [PATCH 6.5 355/739] md/raid5-cache: fix null-ptr-deref for r5l_flush_stripe_to_raid() Greg Kroah-Hartman
2023-09-11 13:42 ` [PATCH 6.5 356/739] firmware: cs_dsp: Fix new control name check Greg Kroah-Hartman
2023-09-11 13:42 ` [PATCH 6.5 357/739] blk-cgroup: Fix NULL deref caused by blkg_policy_data being installed before init Greg Kroah-Hartman
2023-09-11 13:42 ` [PATCH 6.5 358/739] md/raid1: free the r1bio before waiting for blocked rdev Greg Kroah-Hartman
2023-09-11 13:42 ` [PATCH 6.5 359/739] md/raid1: hold the barrier until handle_read_error() finishes Greg Kroah-Hartman
2023-09-11 13:42 ` Greg Kroah-Hartman [this message]
2023-09-11 13:42 ` [PATCH 6.5 361/739] md/raid0: Fix performance regression for large sequential writes Greg Kroah-Hartman
2023-09-11 13:42 ` [PATCH 6.5 362/739] md: raid0: account for split bio in iostat accounting Greg Kroah-Hartman
2023-09-11 13:42 ` [PATCH 6.5 363/739] ASoC: pxa: merge DAI call back functions into ops Greg Kroah-Hartman
2023-09-11 14:46   ` Mark Brown
2023-09-12 10:55     ` Greg Kroah-Hartman
2023-09-11 13:42 ` [PATCH 6.5 364/739] ASoC: soc-dai.h: " Greg Kroah-Hartman
2023-09-11 14:46   ` Mark Brown
2023-09-11 23:16     ` Kuninori Morimoto
2023-09-12 11:58       ` Mark Brown
2023-09-11 13:42 ` [PATCH 6.5 365/739] ASoC: fsl: " Greg Kroah-Hartman
2023-09-11 14:46   ` Mark Brown
2023-09-11 13:42 ` [PATCH 6.5 366/739] ASoC: SOF: amd: clear dsp to host interrupt status Greg Kroah-Hartman
2023-09-11 13:42 ` [PATCH 6.5 367/739] of: overlay: Call of_changeset_init() early Greg Kroah-Hartman
2023-09-11 13:42 ` [PATCH 6.5 368/739] of: unittest: Fix overlay type in apply/revert check Greg Kroah-Hartman
2023-09-11 13:42 ` [PATCH 6.5 369/739] ALSA: ac97: Fix possible error value of *rac97 Greg Kroah-Hartman
2023-09-11 13:42 ` [PATCH 6.5 370/739] ALSA: usb-audio: Attach legacy rawmidi after probing all UMP EPs Greg Kroah-Hartman
2023-09-11 13:42 ` [PATCH 6.5 371/739] ALSA: ump: Fill group names for legacy rawmidi substreams Greg Kroah-Hartman
2023-09-11 13:42 ` [PATCH 6.5 372/739] ALSA: ump: Dont create unused substreams for static blocks Greg Kroah-Hartman
2023-09-11 13:42 ` [PATCH 6.5 373/739] ALSA: ump: Fix -Wformat-truncation warnings Greg Kroah-Hartman
2023-09-11 13:42 ` [PATCH 6.5 374/739] ipmi:ssif: Add check for kstrdup Greg Kroah-Hartman
2023-09-11 13:42 ` [PATCH 6.5 375/739] ipmi:ssif: Fix a memory leak when scanning for an adapter Greg Kroah-Hartman
2023-09-11 13:42 ` [PATCH 6.5 376/739] clk: qcom: gpucc-sm6350: Introduce index-based clk lookup Greg Kroah-Hartman
2023-09-11 13:42 ` [PATCH 6.5 377/739] clk: qcom: gpucc-sm6350: Fix clock source names Greg Kroah-Hartman
2023-09-11 13:42 ` [PATCH 6.5 378/739] clk: qcom: gcc-sc8280xp: Add missing GDSC flags Greg Kroah-Hartman
2023-09-11 13:42 ` [PATCH 6.5 379/739] dt-bindings: clock: qcom,gcc-sc8280xp: Add missing GDSCs Greg Kroah-Hartman
2023-09-11 13:42 ` [PATCH 6.5 380/739] clk: qcom: gcc-sc8280xp: " Greg Kroah-Hartman
2023-09-11 13:43 ` [PATCH 6.5 381/739] clk: qcom: gcc-sm7150: Add CLK_OPS_PARENT_ENABLE to sdcc2 rcg Greg Kroah-Hartman
2023-09-11 13:43 ` [PATCH 6.5 382/739] clk: rockchip: rk3568: Fix PLL rate setting for 78.75MHz Greg Kroah-Hartman
2023-09-11 13:43 ` [PATCH 6.5 383/739] PCI: apple: Initialize pcie->nvecs before use Greg Kroah-Hartman
2023-09-11 13:43 ` [PATCH 6.5 384/739] PCI: qcom-ep: Switch MHI bus master clock off during L1SS Greg Kroah-Hartman
2023-09-11 13:43 ` [PATCH 6.5 385/739] clk: qcom: gcc-sc8280xp: fix runtime PM imbalance on probe errors Greg Kroah-Hartman
2023-09-11 13:43 ` [PATCH 6.5 386/739] drivers: clk: keystone: Fix parameter judgment in _of_pll_clk_init() Greg Kroah-Hartman
2023-09-11 13:43 ` [PATCH 6.5 387/739] EDAC/i10nm: Skip the absent memory controllers Greg Kroah-Hartman
2023-09-11 13:43 ` [PATCH 6.5 388/739] iommufd: Fix locking around hwpt allocation Greg Kroah-Hartman
2023-09-11 13:43 ` [PATCH 6.5 389/739] PCI/DOE: Fix destroy_work_on_stack() race Greg Kroah-Hartman
2023-09-11 13:43 ` [PATCH 6.5 390/739] clk: qcom: dispcc-sc8280xp: Use ret registers on GDSCs Greg Kroah-Hartman
2023-09-11 13:43 ` [PATCH 6.5 391/739] clk: sunxi-ng: Modify mismatched function name Greg Kroah-Hartman
2023-09-11 13:43 ` [PATCH 6.5 392/739] clk: qcom: gcc-sc7180: Fix up gcc_sdcc2_apps_clk_src Greg Kroah-Hartman
2023-09-11 13:43 ` [PATCH 6.5 393/739] EDAC/igen6: Fix the issue of no error events Greg Kroah-Hartman
2023-09-11 13:43 ` [PATCH 6.5 394/739] ext4: correct grp validation in ext4_mb_good_group Greg Kroah-Hartman
2023-09-11 13:43 ` [PATCH 6.5 395/739] ext4: avoid potential data overflow in next_linear_group Greg Kroah-Hartman
2023-09-11 13:43 ` [PATCH 6.5 396/739] clk: qcom: gcc-sm8250: Fix gcc_sdcc2_apps_clk_src Greg Kroah-Hartman
2023-09-11 13:43 ` [PATCH 6.5 397/739] clk: qcom: fix some Kconfig corner cases Greg Kroah-Hartman
2023-09-11 13:43 ` [PATCH 6.5 398/739] kvm/vfio: Prepare for accepting vfio device fd Greg Kroah-Hartman
2023-09-11 13:43 ` [PATCH 6.5 399/739] kvm/vfio: ensure kvg instance stays around in kvm_vfio_group_add() Greg Kroah-Hartman
2023-09-11 13:43 ` [PATCH 6.5 400/739] clk: qcom: reset: Use the correct type of sleep/delay based on length Greg Kroah-Hartman
2023-09-11 13:43 ` [PATCH 6.5 401/739] clk: qcom: gcc-sm6350: Fix gcc_sdcc2_apps_clk_src Greg Kroah-Hartman
2023-09-11 13:43 ` [PATCH 6.5 402/739] PCI: microchip: Correct the DED and SEC interrupt bit offsets Greg Kroah-Hartman
2023-09-11 13:43 ` [PATCH 6.5 403/739] PCI: Mark NVIDIA T4 GPUs to avoid bus reset Greg Kroah-Hartman
2023-09-11 13:43 ` [PATCH 6.5 404/739] pinctrl: mcp23s08: check return value of devm_kasprintf() Greg Kroah-Hartman
2023-09-11 13:43 ` [PATCH 6.5 405/739] PCI: Add locking to RMW PCI Express Capability Register accessors Greg Kroah-Hartman
2023-09-11 13:43 ` [PATCH 6.5 406/739] PCI: Make link retraining use RMW accessors for changing LNKCTL Greg Kroah-Hartman
2023-09-11 13:43 ` [PATCH 6.5 407/739] PCI: pciehp: Use " Greg Kroah-Hartman
2023-09-11 13:43 ` [PATCH 6.5 408/739] PCI/ASPM: " Greg Kroah-Hartman
2023-09-11 13:43 ` [PATCH 6.5 409/739] clk: qcom: gcc-sm8450: Use floor ops for SDCC RCGs Greg Kroah-Hartman
2023-09-11 13:43 ` [PATCH 6.5 410/739] clk: qcom: gcc-qdu1000: Fix gcc_pcie_0_pipe_clk_src clock handling Greg Kroah-Hartman
2023-09-11 13:43 ` [PATCH 6.5 411/739] clk: qcom: gcc-qdu1000: Fix clkref clocks handling Greg Kroah-Hartman
2023-09-11 13:43 ` [PATCH 6.5 412/739] clk: imx: pllv4: Fix SPLL2 MULT range Greg Kroah-Hartman
2023-09-11 13:43 ` [PATCH 6.5 413/739] clk: imx: imx8ulp: update SPLL2 type Greg Kroah-Hartman
2023-09-11 13:43 ` [PATCH 6.5 414/739] clk: imx8mp: fix sai4 clock Greg Kroah-Hartman
2023-09-11 13:43 ` [PATCH 6.5 415/739] clk: imx: composite-8m: fix clock pauses when set_rate would be a no-op Greg Kroah-Hartman
2023-09-11 13:43 ` [PATCH 6.5 416/739] powerpc/radix: Move some functions into #ifdef CONFIG_KVM_BOOK3S_HV_POSSIBLE Greg Kroah-Hartman
2023-09-11 13:43 ` [PATCH 6.5 417/739] vfio/type1: fix cap_migration information leak Greg Kroah-Hartman
2023-09-11 13:43 ` [PATCH 6.5 418/739] nvdimm: Fix memleak of pmu attr_groups in unregister_nvdimm_pmu() Greg Kroah-Hartman
2023-09-11 13:43 ` [PATCH 6.5 419/739] nvdimm: Fix dereference after free in register_nvdimm_pmu() Greg Kroah-Hartman
2023-09-11 13:43 ` [PATCH 6.5 420/739] powerpc/fadump: reset dump area size if fadump memory reserve fails Greg Kroah-Hartman
2023-09-11 13:43 ` [PATCH 6.5 421/739] powerpc/perf: Convert fsl_emb notifier to state machine callbacks Greg Kroah-Hartman
2023-09-11 13:43 ` [PATCH 6.5 422/739] pinctrl: mediatek: fix pull_type data for MT7981 Greg Kroah-Hartman
2023-09-11 13:43 ` [PATCH 6.5 423/739] pinctrl: mediatek: assign functions to configure pin bias on MT7986 Greg Kroah-Hartman
2023-09-11 13:43 ` [PATCH 6.5 424/739] drm/amdgpu: Use RMW accessors for changing LNKCTL Greg Kroah-Hartman
2023-09-11 13:43 ` [PATCH 6.5 425/739] drm/radeon: " Greg Kroah-Hartman
2023-09-11 13:43 ` [PATCH 6.5 426/739] net/mlx5: " Greg Kroah-Hartman
2023-09-11 13:43 ` [PATCH 6.5 427/739] wifi: ath11k: " Greg Kroah-Hartman
2023-09-11 13:43 ` [PATCH 6.5 428/739] wifi: ath12k: " Greg Kroah-Hartman
2023-09-11 13:43 ` [PATCH 6.5 429/739] wifi: ath10k: " Greg Kroah-Hartman
2023-09-11 13:43 ` [PATCH 6.5 430/739] NFSv4.2: Fix READ_PLUS smatch warnings Greg Kroah-Hartman
2023-09-11 13:43 ` [PATCH 6.5 431/739] NFSv4.2: Fix READ_PLUS size calculations Greg Kroah-Hartman
2023-09-11 13:43 ` [PATCH 6.5 432/739] NFSv4.2: Rework scratch handling for READ_PLUS (again) Greg Kroah-Hartman
2023-09-11 13:43 ` [PATCH 6.5 433/739] PCI: layerscape: Add workaround for lost link capabilities during reset Greg Kroah-Hartman
2023-09-11 13:43 ` [PATCH 6.5 434/739] powerpc: Dont include lppaca.h in paca.h Greg Kroah-Hartman
2023-09-11 13:43 ` [PATCH 6.5 435/739] powerpc/pseries: Rework lppaca_shared_proc() to avoid DEBUG_PREEMPT Greg Kroah-Hartman
2023-09-11 13:43 ` [PATCH 6.5 436/739] nfs/blocklayout: Use the passed in gfp flags Greg Kroah-Hartman
2023-09-11 13:43 ` [PATCH 6.5 437/739] powerpc/pseries: Fix hcall tracepoints with JUMP_LABEL=n Greg Kroah-Hartman
2023-09-11 13:43 ` [PATCH 6.5 438/739] powerpc/mpc5xxx: Add missing fwnode_handle_put() Greg Kroah-Hartman
2023-09-11 13:43 ` [PATCH 6.5 439/739] powerpc/iommu: Fix notifiers being shared by PCI and VIO buses Greg Kroah-Hartman
2023-09-11 13:43 ` [PATCH 6.5 440/739] ext4: fix unttached inode after power cut with orphan file feature enabled Greg Kroah-Hartman
2023-09-11 13:44 ` [PATCH 6.5 441/739] jfs: validate max amount of blocks before allocation Greg Kroah-Hartman
2023-09-11 13:44 ` [PATCH 6.5 442/739] SUNRPC: Fix the recent bv_offset fix Greg Kroah-Hartman
2023-09-11 13:44 ` [PATCH 6.5 443/739] fs: lockd: avoid possible wrong NULL parameter Greg Kroah-Hartman
2023-09-11 13:44 ` [PATCH 6.5 444/739] NFSD: da_addr_body field missing in some GETDEVICEINFO replies Greg Kroah-Hartman
2023-09-11 13:44 ` [PATCH 6.5 445/739] clk: qcom: Fix SM_GPUCC_8450 dependencies Greg Kroah-Hartman
2023-09-11 13:44 ` [PATCH 6.5 446/739] NFS: Guard against READDIR loop when entry names exceed MAXNAMELEN Greg Kroah-Hartman
2023-09-11 13:44 ` [PATCH 6.5 447/739] NFSv4.2: fix handling of COPY ERR_OFFLOAD_NO_REQ Greg Kroah-Hartman
2023-09-11 13:44 ` [PATCH 6.5 448/739] pNFS: Fix assignment of xprtdata.cred Greg Kroah-Hartman
2023-09-11 13:44 ` [PATCH 6.5 449/739] cgroup/cpuset: Inherit parents load balance state in v2 Greg Kroah-Hartman
2023-09-11 13:44 ` [PATCH 6.5 450/739] RDMA/qedr: Remove a duplicate assignment in irdma_query_ah() Greg Kroah-Hartman
2023-09-11 13:44 ` [PATCH 6.5 451/739] media: ov5640: fix low resolution image abnormal issue Greg Kroah-Hartman
2023-09-11 13:44 ` [PATCH 6.5 452/739] media: i2c: imx290: drop format param from imx290_ctrl_update Greg Kroah-Hartman
2023-09-11 13:44 ` [PATCH 6.5 453/739] media: ad5820: Drop unsupported ad5823 from i2c_ and of_device_id tables Greg Kroah-Hartman
2023-09-11 13:44 ` [PATCH 6.5 454/739] media: i2c: tvp5150: check return value of devm_kasprintf() Greg Kroah-Hartman
2023-09-11 13:44 ` [PATCH 6.5 455/739] media: v4l2-core: Fix a potential resource leak in v4l2_fwnode_parse_link() Greg Kroah-Hartman
2023-09-11 13:44 ` [PATCH 6.5 456/739] iommu/amd/iommu_v2: Fix pasid_state refcount dec hit 0 warning on pasid unbind Greg Kroah-Hartman
2023-09-11 13:44 ` [PATCH 6.5 457/739] iommu: rockchip: Fix directory table address encoding Greg Kroah-Hartman
2023-09-11 13:44 ` [PATCH 6.5 458/739] drivers: usb: smsusb: fix error handling code in smsusb_init_device Greg Kroah-Hartman
2023-09-11 13:44 ` [PATCH 6.5 459/739] media: dib7000p: Fix potential division by zero Greg Kroah-Hartman
2023-09-11 13:44 ` [PATCH 6.5 460/739] media: dvb-usb: m920x: Fix a potential memory leak in m920x_i2c_xfer() Greg Kroah-Hartman
2023-09-11 13:44 ` [PATCH 6.5 461/739] media: cx24120: Add retval check for cx24120_message_send() Greg Kroah-Hartman
2023-09-11 13:44 ` [PATCH 6.5 462/739] RDMA/siw: Fabricate a GID on tun and loopback devices Greg Kroah-Hartman
2023-09-11 13:44 ` [PATCH 6.5 463/739] scsi: hisi_sas: Fix normally completed I/O analysed as failed Greg Kroah-Hartman
2023-09-11 13:44 ` [PATCH 6.5 464/739] dt-bindings: extcon: maxim,max77843: restrict connector properties Greg Kroah-Hartman
2023-09-11 13:44 ` [PATCH 6.5 465/739] media: amphion: reinit vpu if reqbufs output 0 Greg Kroah-Hartman
2023-09-11 13:44 ` [PATCH 6.5 466/739] media: amphion: add helper function to get id name Greg Kroah-Hartman
2023-09-11 13:44 ` [PATCH 6.5 467/739] media: verisilicon: Fix TRY_FMT on encoder OUTPUT Greg Kroah-Hartman
2023-09-11 13:44 ` [PATCH 6.5 468/739] media: mtk-jpeg: Fix use after free bug due to uncanceled work Greg Kroah-Hartman
2023-09-11 13:44 ` [PATCH 6.5 469/739] media: amphion: decoder support display delay for all formats Greg Kroah-Hartman
2023-09-11 13:44 ` [PATCH 6.5 470/739] media: rkvdec: increase max supported height for H.264 Greg Kroah-Hartman
2023-09-11 13:44 ` [PATCH 6.5 471/739] media: amphion: fix CHECKED_RETURN issues reported by coverity Greg Kroah-Hartman
2023-09-11 13:44 ` [PATCH 6.5 472/739] media: amphion: fix REVERSE_INULL " Greg Kroah-Hartman
2023-09-11 13:44 ` [PATCH 6.5 473/739] media: amphion: fix UNINIT " Greg Kroah-Hartman
2023-09-11 13:44 ` [PATCH 6.5 474/739] media: amphion: fix UNUSED_VALUE issue " Greg Kroah-Hartman
2023-09-11 13:44 ` [PATCH 6.5 475/739] media: amphion: ensure the bitops dont cross boundaries Greg Kroah-Hartman
2023-09-11 13:44 ` [PATCH 6.5 476/739] media: mediatek: vcodec: fix AV1 decode fail for 36bit iova Greg Kroah-Hartman
2023-09-11 13:44 ` [PATCH 6.5 477/739] media: mediatek: vcodec: Return NULL if no vdec_fb is found Greg Kroah-Hartman
2023-09-11 13:44 ` [PATCH 6.5 478/739] media: mediatek: vcodec: fix potential double free Greg Kroah-Hartman
2023-09-11 13:44 ` [PATCH 6.5 479/739] media: mediatek: vcodec: fix resource leaks in vdec_msg_queue_init() Greg Kroah-Hartman
2023-09-11 13:44 ` [PATCH 6.5 480/739] usb: phy: mxs: fix getting wrong state with mxs_phy_is_otg_host() Greg Kroah-Hartman
2023-09-11 13:44 ` [PATCH 6.5 481/739] scsi: RDMA/srp: Fix residual handling Greg Kroah-Hartman
2023-09-11 13:44 ` [PATCH 6.5 482/739] scsi: ufs: " Greg Kroah-Hartman
2023-09-11 13:44 ` [PATCH 6.5 483/739] scsi: iscsi: Add length check for nlattr payload Greg Kroah-Hartman
2023-09-11 13:44 ` [PATCH 6.5 484/739] scsi: iscsi: Add strlen() check in iscsi_if_set{_host}_param() Greg Kroah-Hartman
2023-09-11 13:44 ` [PATCH 6.5 485/739] scsi: be2iscsi: Add length check when parsing nlattrs Greg Kroah-Hartman
2023-09-11 13:44 ` [PATCH 6.5 486/739] scsi: qla4xxx: " Greg Kroah-Hartman
2023-09-11 13:44 ` [PATCH 6.5 487/739] iio: accel: adxl313: Fix adxl313_i2c_id[] table Greg Kroah-Hartman
2023-09-11 13:44 ` [PATCH 6.5 488/739] serial: sprd: Assign sprd_port after initialized to avoid wrong access Greg Kroah-Hartman
2023-09-11 13:44 ` [PATCH 6.5 489/739] serial: sprd: Fix DMA buffer leak issue Greg Kroah-Hartman
2023-09-11 13:44 ` [PATCH 6.5 490/739] x86/APM: drop the duplicate APM_MINOR_DEV macro Greg Kroah-Hartman
2023-09-11 13:44 ` [PATCH 6.5 491/739] RDMA/rxe: Move work queue code to subroutines Greg Kroah-Hartman
2023-09-11 13:44 ` [PATCH 6.5 492/739] RDMA/rxe: Fix unsafe drain work queue code Greg Kroah-Hartman
2023-09-11 13:44 ` [PATCH 6.5 493/739] RDMA/rxe: Fix rxe_modify_srq Greg Kroah-Hartman
2023-09-11 13:44 ` [PATCH 6.5 494/739] RDMA/rxe: Fix incomplete state save in rxe_requester Greg Kroah-Hartman
2023-09-11 13:44 ` [PATCH 6.5 495/739] scsi: qedf: Do not touch __user pointer in qedf_dbg_stop_io_on_error_cmd_read() directly Greg Kroah-Hartman
2023-09-11 13:44 ` [PATCH 6.5 496/739] scsi: qedf: Do not touch __user pointer in qedf_dbg_debug_cmd_read() directly Greg Kroah-Hartman
2023-09-11 13:44 ` [PATCH 6.5 497/739] scsi: qedf: Do not touch __user pointer in qedf_dbg_fp_int_cmd_read() directly Greg Kroah-Hartman
2023-09-11 13:44 ` [PATCH 6.5 498/739] RDMA/irdma: Replace one-element array with flexible-array member Greg Kroah-Hartman
2023-09-11 13:44 ` [PATCH 6.5 499/739] coresight: tmc: Explicit type conversions to prevent integer overflow Greg Kroah-Hartman
2023-09-11 13:44 ` [PATCH 6.5 500/739] interconnect: qcom: qcm2290: Enable sync state Greg Kroah-Hartman
2023-09-11 13:45 ` [PATCH 6.5 501/739] dma-buf/sync_file: Fix docs syntax Greg Kroah-Hartman
2023-09-11 13:45 ` [PATCH 6.5 502/739] driver core: test_async: fix an error code Greg Kroah-Hartman
2023-09-11 13:45 ` [PATCH 6.5 503/739] driver core: Call dma_cleanup() on the test_remove path Greg Kroah-Hartman
2023-09-11 13:45 ` [PATCH 6.5 504/739] kernfs: add stub helper for kernfs_generic_poll() Greg Kroah-Hartman
2023-09-11 13:45 ` [PATCH 6.5 505/739] extcon: cht_wc: add POWER_SUPPLY dependency Greg Kroah-Hartman
2023-09-11 13:45 ` [PATCH 6.5 506/739] iommu/mediatek: Fix two IOMMU share pagetable issue Greg Kroah-Hartman
2023-09-11 13:45 ` [PATCH 6.5 507/739] iommu/sprd: Add missing force_aperture Greg Kroah-Hartman
2023-09-11 13:45 ` [PATCH 6.5 508/739] iommu: Remove kernel-doc warnings Greg Kroah-Hartman
2023-09-11 13:45 ` [PATCH 6.5 509/739] bnxt_en: Update HW interface headers Greg Kroah-Hartman
2023-09-11 13:45 ` [PATCH 6.5 510/739] bnxt_en: Share the bar0 address with the RoCE driver Greg Kroah-Hartman
2023-09-11 13:45 ` [PATCH 6.5 511/739] RDMA/bnxt_re: Initialize Doorbell pacing feature Greg Kroah-Hartman
2023-09-11 13:45 ` [PATCH 6.5 512/739] RDMA/bnxt_re: Fix max_qp count for virtual functions Greg Kroah-Hartman
2023-09-11 13:45 ` [PATCH 6.5 513/739] RDMA/bnxt_re: Remove a redundant flag Greg Kroah-Hartman
2023-09-11 13:45 ` [PATCH 6.5 514/739] RDMA/hns: Fix port active speed Greg Kroah-Hartman
2023-09-11 13:45 ` [PATCH 6.5 515/739] RDMA/hns: Fix incorrect post-send with direct wqe of wr-list Greg Kroah-Hartman
2023-09-11 13:45 ` [PATCH 6.5 516/739] RDMA/hns: Fix inaccurate error label name in init instance Greg Kroah-Hartman
2023-09-11 13:45 ` [PATCH 6.5 517/739] RDMA/hns: Fix CQ and QP cache affinity Greg Kroah-Hartman
2023-09-11 13:45 ` [PATCH 6.5 518/739] IB/uverbs: Fix an potential error pointer dereference Greg Kroah-Hartman
2023-09-11 13:45 ` [PATCH 6.5 519/739] fsi: aspeed: Reset master errors after CFAM reset Greg Kroah-Hartman
2023-09-11 13:45 ` [PATCH 6.5 520/739] iommu/qcom: Disable and reset context bank before programming Greg Kroah-Hartman
2023-09-11 13:45 ` [PATCH 6.5 521/739] tty: serial: qcom-geni-serial: Poll primary sequencer irq status after cancel_tx Greg Kroah-Hartman
2023-09-11 13:45 ` [PATCH 6.5 522/739] iommu/vt-d: Fix to flush cache of PASID directory table Greg Kroah-Hartman
2023-09-11 13:45 ` [PATCH 6.5 523/739] platform/x86: dell-sysman: Fix reference leak Greg Kroah-Hartman
2023-09-11 13:45 ` [PATCH 6.5 524/739] media: cec: core: add adap_nb_transmit_canceled() callback Greg Kroah-Hartman
2023-09-11 13:45 ` [PATCH 6.5 525/739] media: cec: core: add adap_unconfigured() callback Greg Kroah-Hartman
2023-09-11 13:45 ` [PATCH 6.5 526/739] media: go7007: Remove redundant if statement Greg Kroah-Hartman
2023-09-11 13:45 ` [PATCH 6.5 527/739] media: venus: hfi_venus: Only consider sys_idle_indicator on V1 Greg Kroah-Hartman
2023-09-11 13:45 ` [PATCH 6.5 528/739] arm64: defconfig: Drop CONFIG_VIDEO_IMX_MEDIA Greg Kroah-Hartman
2023-09-11 13:45 ` [PATCH 6.5 529/739] media: ipu-bridge: Fix null pointer deref on SSDB/PLD parsing warnings Greg Kroah-Hartman
2023-09-11 13:45 ` [PATCH 6.5 530/739] media: ipu3-cio2: rename cio2 bridge to ipu bridge and move out of ipu3 Greg Kroah-Hartman
2023-09-11 13:45 ` [PATCH 6.5 531/739] media: ipu-bridge: Do not use on stack memory for software_node.name field Greg Kroah-Hartman
2023-09-11 13:45 ` [PATCH 6.5 532/739] docs: ABI: fix spelling/grammar in SBEFIFO timeout interface Greg Kroah-Hartman
2023-09-11 13:45 ` [PATCH 6.5 533/739] USB: gadget: core: Add missing kerneldoc for vbus_work Greg Kroah-Hartman
2023-09-11 13:45 ` [PATCH 6.5 534/739] USB: gadget: f_mass_storage: Fix unused variable warning Greg Kroah-Hartman
2023-09-11 13:45 ` [PATCH 6.5 535/739] drivers: base: Free devm resources when unregistering a device Greg Kroah-Hartman
2023-09-11 13:45 ` [PATCH 6.5 536/739] HID: input: Support devices sending Eraser without Invert Greg Kroah-Hartman
2023-09-11 13:45 ` [PATCH 6.5 537/739] HID: nvidia-shield: Remove led_classdev_unregister in thunderstrike_create Greg Kroah-Hartman
2023-09-11 13:45 ` [PATCH 6.5 538/739] media: ov5640: Enable MIPI interface in ov5640_set_power_mipi() Greg Kroah-Hartman
2023-09-11 13:45 ` [PATCH 6.5 539/739] media: ov5640: Fix initial RESETB state and annotate timings Greg Kroah-Hartman
2023-09-11 13:45 ` [PATCH 6.5 540/739] media: Documentation: Fix [GS]_ROUTING documentation Greg Kroah-Hartman
2023-09-11 13:45 ` [PATCH 6.5 541/739] media: ov2680: Remove auto-gain and auto-exposure controls Greg Kroah-Hartman
2023-09-11 13:45 ` [PATCH 6.5 542/739] media: ov2680: Fix ov2680_bayer_order() Greg Kroah-Hartman
2023-09-11 13:45 ` [PATCH 6.5 543/739] media: ov2680: Fix vflip / hflip set functions Greg Kroah-Hartman
2023-09-11 13:45 ` [PATCH 6.5 544/739] media: ov2680: Remove VIDEO_V4L2_SUBDEV_API ifdef-s Greg Kroah-Hartman
2023-09-11 13:45 ` [PATCH 6.5 545/739] media: ov2680: Dont take the lock for try_fmt calls Greg Kroah-Hartman
2023-09-11 13:45 ` [PATCH 6.5 546/739] media: ov2680: Add ov2680_fill_format() helper function Greg Kroah-Hartman
2023-09-11 13:45 ` [PATCH 6.5 547/739] media: ov2680: Fix ov2680_set_fmt() which == V4L2_SUBDEV_FORMAT_TRY not working Greg Kroah-Hartman
2023-09-11 13:45 ` [PATCH 6.5 548/739] media: ov2680: Fix regulators being left enabled on ov2680_power_on() errors Greg Kroah-Hartman
2023-09-11 13:45 ` [PATCH 6.5 549/739] media: i2c: rdacm21: Fix uninitialized value Greg Kroah-Hartman
2023-09-11 13:45 ` [PATCH 6.5 550/739] f2fs: fix spelling in ABI documentation Greg Kroah-Hartman
2023-09-11 13:45 ` [PATCH 6.5 551/739] f2fs: fix to avoid mmap vs set_compress_option case Greg Kroah-Hartman
2023-09-11 13:45 ` [PATCH 6.5 552/739] f2fs: dont reopen the main block device in f2fs_scan_devices Greg Kroah-Hartman
2023-09-11 13:45 ` [PATCH 6.5 553/739] f2fs: check zone type before sending async reset zone command Greg Kroah-Hartman
2023-09-11 13:45 ` [PATCH 6.5 554/739] f2fs: Only lfs mode is allowed with zoned block device feature Greg Kroah-Hartman
2023-09-11 13:45 ` [PATCH 6.5 555/739] Revert "f2fs: fix to do sanity check on extent cache correctly" Greg Kroah-Hartman
2023-09-11 13:45 ` [PATCH 6.5 556/739] f2fs: fix to account gc stats correctly Greg Kroah-Hartman
2023-09-11 13:45 ` [PATCH 6.5 557/739] f2fs: fix to account cp " Greg Kroah-Hartman
2023-09-11 13:45 ` [PATCH 6.5 558/739] cgroup:namespace: Remove unused cgroup_namespaces_init() Greg Kroah-Hartman
2023-09-11 13:45 ` [PATCH 6.5 559/739] coresight: trbe: Allocate platform data per device Greg Kroah-Hartman
2023-09-11 13:45 ` [PATCH 6.5 560/739] coresight: platform: acpi: Ignore the absence of graph Greg Kroah-Hartman
2023-09-11 13:46 ` [PATCH 6.5 561/739] coresight: Fix memory leak in acpi_buffer->pointer Greg Kroah-Hartman
2023-09-11 13:46 ` [PATCH 6.5 562/739] coresight: trbe: Fix TRBE potential sleep in atomic context Greg Kroah-Hartman
2023-09-11 13:46 ` [PATCH 6.5 563/739] Revert "f2fs: do not issue small discard commands during checkpoint" Greg Kroah-Hartman
2023-09-11 13:46 ` [PATCH 6.5 564/739] RDMA/irdma: Prevent zero-length STAG registration Greg Kroah-Hartman
2023-09-11 13:46 ` [PATCH 6.5 565/739] scsi: core: Use 32-bit hostnum in scsi_host_lookup() Greg Kroah-Hartman
2023-09-11 13:46 ` [PATCH 6.5 566/739] scsi: fcoe: Fix potential deadlock on &fip->ctlr_lock Greg Kroah-Hartman
2023-09-11 13:46 ` [PATCH 6.5 567/739] interconnect: qcom: sm8450: Enable sync_state Greg Kroah-Hartman
2023-09-11 13:46 ` [PATCH 6.5 568/739] interconnect: qcom: bcm-voter: Improve enable_mask handling Greg Kroah-Hartman
2023-09-11 13:46 ` [PATCH 6.5 569/739] interconnect: qcom: bcm-voter: Use enable_maks for keepalive voting Greg Kroah-Hartman
2023-09-11 13:46 ` [PATCH 6.5 570/739] dt-bindings: usb: samsung,exynos-dwc3: fix order of clocks on Exynos5433 Greg Kroah-Hartman
2023-09-11 13:46 ` [PATCH 6.5 571/739] dt-bindings: usb: samsung,exynos-dwc3: Fix Exynos5433 compatible Greg Kroah-Hartman
2023-09-11 13:46 ` [PATCH 6.5 572/739] serial: tegra: handle clk prepare error in tegra_uart_hw_init() Greg Kroah-Hartman
2023-09-11 13:46 ` [PATCH 6.5 573/739] Documentation: devices.txt: Remove ttyIOC* Greg Kroah-Hartman
2023-09-11 13:46 ` [PATCH 6.5 574/739] Documentation: devices.txt: Remove ttySIOC* Greg Kroah-Hartman
2023-09-11 13:46 ` [PATCH 6.5 575/739] Documentation: devices.txt: Fix minors for ttyCPM* Greg Kroah-Hartman
2023-09-11 13:46 ` [PATCH 6.5 576/739] amba: bus: fix refcount leak Greg Kroah-Hartman
2023-09-11 13:46 ` [PATCH 6.5 577/739] Revert "IB/isert: Fix incorrect release of isert connection" Greg Kroah-Hartman
2023-09-11 13:46 ` [PATCH 6.5 578/739] RDMA/siw: Balance the reference of cep->kref in the error path Greg Kroah-Hartman
2023-09-11 13:46 ` [PATCH 6.5 579/739] RDMA/siw: Correct wrong debug message Greg Kroah-Hartman
2023-09-11 13:46 ` [PATCH 6.5 580/739] RDMA/efa: Fix wrong resources deallocation order Greg Kroah-Hartman
2023-09-11 13:46 ` [PATCH 6.5 581/739] HID: logitech-dj: Fix error handling in logi_dj_recv_switch_to_dj_mode() Greg Kroah-Hartman
2023-09-11 13:46 ` [PATCH 6.5 582/739] nvmem: core: Return NULL when no nvmem layout is found Greg Kroah-Hartman
2023-09-11 13:46 ` [PATCH 6.5 583/739] riscv: Require FRAME_POINTER for some configurations Greg Kroah-Hartman
2023-09-11 13:46 ` [PATCH 6.5 584/739] f2fs: compress: fix to assign compress_level for lz4 correctly Greg Kroah-Hartman
2023-09-11 13:46 ` [PATCH 6.5 585/739] HID: uclogic: Correct devm device reference for hidinput input_dev name Greg Kroah-Hartman
2023-09-11 13:46 ` [PATCH 6.5 586/739] HID: multitouch: " Greg Kroah-Hartman
2023-09-11 13:46 ` [PATCH 6.5 587/739] HID: nvidia-shield: Reference hid_device devm allocation of " Greg Kroah-Hartman
2023-09-11 13:46 ` [PATCH 6.5 588/739] platform/x86/amd/pmf: Fix a missing cleanup path Greg Kroah-Hartman
2023-09-11 13:46 ` [PATCH 6.5 589/739] workqueue: fix data race with the pwq->stats[] increment Greg Kroah-Hartman
2023-09-11 13:46 ` [PATCH 6.5 590/739] tick/rcu: Fix false positive "softirq work is pending" messages Greg Kroah-Hartman
2023-09-11 13:46 ` [PATCH 6.5 591/739] x86/speculation: Mark all Skylake CPUs as vulnerable to GDS Greg Kroah-Hartman
2023-09-11 13:46 ` [PATCH 6.5 592/739] tracing: Remove extra space at the end of hwlat_detector/mode Greg Kroah-Hartman
2023-09-11 13:46 ` [PATCH 6.5 593/739] tracing: Fix race issue between cpu buffer write and swap Greg Kroah-Hartman
2023-09-11 13:46 ` [PATCH 6.5 594/739] mm/pagewalk: fix bootstopping regression from extra pte_unmap() Greg Kroah-Hartman
2023-09-11 13:46 ` [PATCH 6.5 595/739] mtd: rawnand: brcmnand: Fix mtd oobsize Greg Kroah-Hartman
2023-09-11 13:46 ` [PATCH 6.5 596/739] dmaengine: idxd: Modify the dependence of attribute pasid_enabled Greg Kroah-Hartman
2023-09-11 13:46 ` [PATCH 6.5 597/739] phy/rockchip: inno-hdmi: use correct vco_div_5 macro on rk3328 Greg Kroah-Hartman
2023-09-11 13:46 ` [PATCH 6.5 598/739] phy/rockchip: inno-hdmi: round fractal pixclock in rk3328 recalc_rate Greg Kroah-Hartman
2023-09-11 13:46 ` [PATCH 6.5 599/739] phy/rockchip: inno-hdmi: do not power on rk3328 post pll on reg write Greg Kroah-Hartman
2023-09-11 13:46 ` [PATCH 6.5 600/739] rpmsg: glink: Add check for kstrdup Greg Kroah-Hartman
2023-09-11 13:46 ` [PATCH 6.5 601/739] leds: aw200xx: Fix error code in probe() Greg Kroah-Hartman
2023-09-11 13:46 ` [PATCH 6.5 602/739] leds: simatic-ipc-leds-gpio: Restore LEDS_CLASS dependency Greg Kroah-Hartman
2023-09-11 13:46 ` [PATCH 6.5 603/739] leds: pwm: Fix error code in led_pwm_create_fwnode() Greg Kroah-Hartman
2023-09-11 13:46 ` [PATCH 6.5 604/739] thermal/drivers/mediatek/lvts_thermal: Handle IRQ on all controllers Greg Kroah-Hartman
2023-09-11 13:46 ` [PATCH 6.5 605/739] thermal/drivers/mediatek/lvts_thermal: Honor sensors in immediate mode Greg Kroah-Hartman
2023-09-11 13:46 ` [PATCH 6.5 606/739] thermal/drivers/mediatek/lvts_thermal: Use offset threshold for IRQ Greg Kroah-Hartman
2023-09-11 13:46 ` [PATCH 6.5 607/739] thermal/drivers/mediatek/lvts_thermal: Disable undesired interrupts Greg Kroah-Hartman
2023-09-11 13:46 ` [PATCH 6.5 608/739] thermal/drivers/mediatek/lvts_thermal: Dont leave threshold zeroed Greg Kroah-Hartman
2023-09-11 13:46 ` [PATCH 6.5 609/739] thermal/drivers/mediatek/lvts_thermal: Manage threshold between sensors Greg Kroah-Hartman
2023-09-11 13:46 ` [PATCH 6.5 610/739] thermal/drivers/imx8mm: Suppress log message on probe deferral Greg Kroah-Hartman
2023-09-11 13:46 ` [PATCH 6.5 611/739] leds: multicolor: Use rounded division when calculating color components Greg Kroah-Hartman
2023-09-11 13:46 ` [PATCH 6.5 612/739] leds: Fix BUG_ON check for LED_COLOR_ID_MULTI that is always false Greg Kroah-Hartman
2023-09-11 13:46 ` [PATCH 6.5 613/739] leds: trigger: tty: Do not use LED_ON/OFF constants, use led_blink_set_oneshot instead Greg Kroah-Hartman
2023-09-11 13:46 ` [PATCH 6.5 614/739] mtd: spi-nor: Check bus width while setting QE bit Greg Kroah-Hartman
2023-09-11 13:46 ` [PATCH 6.5 615/739] mtd: rawnand: fsmc: handle clk prepare error in fsmc_nand_resume() Greg Kroah-Hartman
2023-09-11 13:46 ` [PATCH 6.5 616/739] mfd: rk808: Make MFD_RK8XX tristate Greg Kroah-Hartman
2023-09-11 13:46 ` [PATCH 6.5 617/739] mfd: rz-mtu3: Link time dependencies Greg Kroah-Hartman
2023-09-11 13:46 ` [PATCH 6.5 618/739] um: Fix hostaudio build errors Greg Kroah-Hartman
2023-09-11 13:46 ` [PATCH 6.5 619/739] dmaengine: ste_dma40: Add missing IRQ check in d40_probe Greg Kroah-Hartman
2023-09-11 13:46 ` [PATCH 6.5 620/739] dmaengine: idxd: Simplify WQ attribute visibility checks Greg Kroah-Hartman
2023-09-11 13:47 ` [PATCH 6.5 621/739] dmaengine: idxd: Expose ATS disable knob only when WQ ATS is supported Greg Kroah-Hartman
2023-09-11 13:47 ` [PATCH 6.5 622/739] dmaengine: idxd: Allow ATS disable update only for configurable devices Greg Kroah-Hartman
2023-09-11 13:47 ` [PATCH 6.5 623/739] dmaengine: idxd: Fix issues with PRS disable sysfs knob Greg Kroah-Hartman
2023-09-11 13:47 ` [PATCH 6.5 624/739] remoteproc: stm32: fix incorrect optional pointers Greg Kroah-Hartman
2023-09-11 13:47 ` [PATCH 6.5 625/739] Drivers: hv: vmbus: Dont dereference ACPI root object handle Greg Kroah-Hartman
2023-09-11 13:47 ` [PATCH 6.5 626/739] um: virt-pci: fix missing declaration warning Greg Kroah-Hartman
2023-09-11 13:47 ` [PATCH 6.5 627/739] cpufreq: Fix the race condition while updating the transition_task of policy Greg Kroah-Hartman
2023-09-11 13:47 ` [PATCH 6.5 628/739] virtio_vdpa: build affinity masks conditionally Greg Kroah-Hartman
2023-09-11 13:47 ` [PATCH 6.5 629/739] virtio_ring: fix avail_wrap_counter in virtqueue_add_packed Greg Kroah-Hartman
2023-09-11 13:47 ` [PATCH 6.5 630/739] net: deal with integer overflows in kmalloc_reserve() Greg Kroah-Hartman
2023-09-11 13:47 ` [PATCH 6.5 631/739] igmp: limit igmpv3_newpack() packet size to IP_MAX_MTU Greg Kroah-Hartman
2023-09-11 13:47 ` [PATCH 6.5 632/739] netfilter: ipset: add the missing IP_SET_HASH_WITH_NET0 macro for ip_set_hash_netportnet.c Greg Kroah-Hartman
2023-09-11 13:47 ` [PATCH 6.5 633/739] netfilter: nft_exthdr: Fix non-linear header modification Greg Kroah-Hartman
2023-09-11 13:47 ` [PATCH 6.5 634/739] netfilter: xt_u32: validate user space input Greg Kroah-Hartman
2023-09-11 13:47 ` [PATCH 6.5 635/739] netfilter: xt_sctp: validate the flag_info count Greg Kroah-Hartman
2023-09-11 13:47 ` [PATCH 6.5 636/739] skbuff: skb_segment, Call zero copy functions before using skbuff frags Greg Kroah-Hartman
2023-09-11 13:47 ` [PATCH 6.5 637/739] drbd: swap bvec_set_page len and offset Greg Kroah-Hartman
2023-09-11 13:47 ` [PATCH 6.5 638/739] gpio: zynq: restore zynq_gpio_irq_reqres/zynq_gpio_irq_relres callbacks Greg Kroah-Hartman
2023-09-11 13:47 ` [PATCH 6.5 639/739] igb: set max size RX buffer when store bad packet is enabled Greg Kroah-Hartman
2023-09-11 13:47 ` [PATCH 6.5 640/739] parisc: ccio-dma: Create private runway procfs root entry Greg Kroah-Hartman
2023-09-11 13:47 ` [PATCH 6.5 641/739] PM / devfreq: Fix leak in devfreq_dev_release() Greg Kroah-Hartman
2023-09-11 13:47 ` [PATCH 6.5 642/739] Multi-gen LRU: fix per-zone reclaim Greg Kroah-Hartman
2023-09-11 13:47 ` [PATCH 6.5 643/739] ALSA: pcm: Fix missing fixup call in compat hw_refine ioctl Greg Kroah-Hartman
2023-09-11 13:47 ` [PATCH 6.5 644/739] virtio_pmem: add the missing REQ_OP_WRITE for flush bio Greg Kroah-Hartman
2023-09-11 13:47 ` [PATCH 6.5 645/739] rcu: dump vmalloc memory info safely Greg Kroah-Hartman
2023-09-11 13:47 ` [PATCH 6.5 646/739] printk: ringbuffer: Fix truncating buffer size min_t cast Greg Kroah-Hartman
2023-09-11 13:47 ` [PATCH 6.5 647/739] scsi: core: Fix the scsi_set_resid() documentation Greg Kroah-Hartman
2023-09-11 13:47 ` [PATCH 6.5 648/739] mm/vmalloc: add a safer version of find_vm_area() for debug Greg Kroah-Hartman
2023-09-11 13:47 ` [PATCH 6.5 649/739] cpu/hotplug: Prevent self deadlock on CPU hot-unplug Greg Kroah-Hartman
2023-09-11 13:47 ` [PATCH 6.5 650/739] media: i2c: ccs: Check rules is non-NULL Greg Kroah-Hartman
2023-09-11 13:47 ` [PATCH 6.5 651/739] media: i2c: Add a camera sensor top level menu Greg Kroah-Hartman
2023-09-11 13:47 ` [PATCH 6.5 652/739] PCI: rockchip: Use 64-bit mask on MSI 64-bit PCI address Greg Kroah-Hartman
2023-09-11 13:47 ` [PATCH 6.5 653/739] ipmi_si: fix a memleak in try_smi_init() Greg Kroah-Hartman
2023-09-11 13:47 ` [PATCH 6.5 654/739] ARM: OMAP2+: Fix -Warray-bounds warning in _pwrdm_state_switch() Greg Kroah-Hartman
2023-09-11 13:47 ` [PATCH 6.5 655/739] riscv: Move create_tmp_mapping() to init sections Greg Kroah-Hartman
2023-09-11 13:47 ` [PATCH 6.5 656/739] riscv: Mark KASAN tmp* page tables variables as static Greg Kroah-Hartman
2023-09-11 13:47 ` [PATCH 6.5 657/739] XArray: Do not return sibling entries from xa_load() Greg Kroah-Hartman
2023-09-11 13:47 ` [PATCH 6.5 658/739] io_uring: fix false positive KASAN warnings Greg Kroah-Hartman
2023-09-11 13:47 ` [PATCH 6.5 659/739] io_uring: break iopolling on signal Greg Kroah-Hartman
2023-09-11 13:47 ` [PATCH 6.5 660/739] io_uring/sqpoll: fix io-wq affinity when IORING_SETUP_SQPOLL is used Greg Kroah-Hartman
2023-09-11 13:47 ` [PATCH 6.5 661/739] io_uring/net: dont overflow multishot recv Greg Kroah-Hartman
2023-09-11 13:47 ` [PATCH 6.5 662/739] io_uring/net: dont overflow multishot accept Greg Kroah-Hartman
2023-09-11 13:47 ` [PATCH 6.5 663/739] io_uring: break out of iowq iopoll on teardown Greg Kroah-Hartman
2023-09-11 13:47 ` [PATCH 6.5 664/739] backlight/gpio_backlight: Compare against struct fb_info.device Greg Kroah-Hartman
2023-09-11 13:47 ` [PATCH 6.5 665/739] backlight/bd6107: " Greg Kroah-Hartman
2023-09-11 13:47 ` [PATCH 6.5 666/739] backlight/lv5207lp: " Greg Kroah-Hartman
2023-09-11 13:47 ` [PATCH 6.5 667/739] drm/amd/display: register edp_backlight_control() for DCN301 Greg Kroah-Hartman
2023-09-11 13:47 ` [PATCH 6.5 668/739] xtensa: PMU: fix base address for the newer hardware Greg Kroah-Hartman
2023-09-11 13:47 ` [PATCH 6.5 669/739] LoongArch: mm: Add p?d_leaf() definitions Greg Kroah-Hartman
2023-09-11 13:47 ` [PATCH 6.5 670/739] powercap: intel_rapl: Fix invalid setting of Power Limit 4 Greg Kroah-Hartman
2023-09-11 13:47 ` [PATCH 6.5 671/739] powerpc/ftrace: Fix dropping weak symbols with older toolchains Greg Kroah-Hartman
2023-09-11 13:47 ` [PATCH 6.5 672/739] i3c: master: svc: fix probe failure when no i3c device exist Greg Kroah-Hartman
2023-09-11 13:47 ` [PATCH 6.5 673/739] io_uring: Dont set affinity on a dying sqpoll thread Greg Kroah-Hartman
2023-09-11 13:47 ` [PATCH 6.5 674/739] arm64: csum: Fix OoB access in IP checksum code for negative lengths Greg Kroah-Hartman
2023-09-11 13:47 ` [PATCH 6.5 675/739] ALSA: usb-audio: Fix potential memory leaks at error path for UMP open Greg Kroah-Hartman
2023-09-11 13:47 ` [PATCH 6.5 676/739] ALSA: seq: Fix snd_seq_expand_var_event() call to user-space Greg Kroah-Hartman
2023-09-11 13:47 ` [PATCH 6.5 677/739] ALSA: hda/cirrus: Fix broken audio on hardware with two CS42L42 codecs Greg Kroah-Hartman
2023-09-11 13:47 ` [PATCH 6.5 678/739] selftests/landlock: Fix a resource leak Greg Kroah-Hartman
2023-09-11 13:47 ` [PATCH 6.5 679/739] media: dvb: symbol fixup for dvb_attach() Greg Kroah-Hartman
2023-09-11 13:47 ` [PATCH 6.5 680/739] media: venus: hfi_venus: Write to VIDC_CTRL_INIT after unmasking interrupts Greg Kroah-Hartman
2023-09-11 13:48 ` [PATCH 6.5 681/739] media: nxp: Fix wrong return pointer check in mxc_isi_crossbar_init() Greg Kroah-Hartman
2023-09-11 13:48 ` [PATCH 6.5 682/739] Revert "scsi: qla2xxx: Fix buffer overrun" Greg Kroah-Hartman
2023-09-11 13:48 ` [PATCH 6.5 683/739] scsi: mpt3sas: Perform additional retries if doorbell read returns 0 Greg Kroah-Hartman
2023-09-11 13:48 ` [PATCH 6.5 684/739] PCI: Free released resource after coalescing Greg Kroah-Hartman
2023-09-11 13:48 ` [PATCH 6.5 685/739] PCI: hv: Fix a crash in hv_pci_restore_msi_msg() during hibernation Greg Kroah-Hartman
2023-09-11 13:48 ` [PATCH 6.5 686/739] PCI/PM: Only read PCI_PM_CTRL register when available Greg Kroah-Hartman
2023-09-11 13:48 ` [PATCH 6.5 687/739] dt-bindings: PCI: qcom: Fix SDX65 compatible Greg Kroah-Hartman
2023-09-11 13:48 ` [PATCH 6.5 688/739] ntb: Drop packets when qp link is down Greg Kroah-Hartman
2023-09-11 13:48 ` [PATCH 6.5 689/739] ntb: Clean up tx tail index on link down Greg Kroah-Hartman
2023-09-11 13:48 ` [PATCH 6.5 690/739] ntb: Fix calculation ntb_transport_tx_free_entry() Greg Kroah-Hartman
2023-09-11 13:48 ` [PATCH 6.5 691/739] Revert "PCI: Mark NVIDIA T4 GPUs to avoid bus reset" Greg Kroah-Hartman
2023-09-11 13:48 ` [PATCH 6.5 692/739] block: fix pin count management when merging same-page segments Greg Kroah-Hartman
2023-09-11 13:48 ` [PATCH 6.5 693/739] block: dont add or resize partition on the disk with GENHD_FL_NO_PART Greg Kroah-Hartman
2023-09-11 13:48 ` [PATCH 6.5 694/739] procfs: block chmod on /proc/thread-self/comm Greg Kroah-Hartman
2023-09-11 13:48 ` [PATCH 6.5 695/739] parisc: Fix /proc/cpuinfo output for lscpu Greg Kroah-Hartman
2023-09-11 13:48 ` [PATCH 6.5 696/739] misc: fastrpc: Pass proper scm arguments for static process init Greg Kroah-Hartman
2023-09-11 13:48 ` [PATCH 6.5 697/739] drm/amd/display: Add smu write msg id fail retry process Greg Kroah-Hartman
2023-09-11 13:48 ` [PATCH 6.5 698/739] bpf: Fix issue in verifying allow_ptr_leaks Greg Kroah-Hartman
2023-09-11 13:48 ` [PATCH 6.5 699/739] dlm: fix plock lookup when using multiple lockspaces Greg Kroah-Hartman
2023-09-11 13:48 ` [PATCH 6.5 700/739] dccp: Fix out of bounds access in DCCP error handler Greg Kroah-Hartman
2023-09-11 13:48 ` [PATCH 6.5 701/739] x86/sev: Make enc_dec_hypercall() accept a size instead of npages Greg Kroah-Hartman
2023-09-11 13:48 ` [PATCH 6.5 702/739] r8169: fix ASPM-related issues on a number of systems with NIC version from RTL8168h Greg Kroah-Hartman
2023-09-11 13:48 ` [PATCH 6.5 703/739] X.509: if signature is unsupported skip validation Greg Kroah-Hartman
2023-09-11 13:48 ` [PATCH 6.5 704/739] net: handle ARPHRD_PPP in dev_is_mac_header_xmit() Greg Kroah-Hartman
2023-09-11 13:48 ` [PATCH 6.5 705/739] fsverity: skip PKCS#7 parser when keyring is empty Greg Kroah-Hartman
2023-09-11 13:48 ` [PATCH 6.5 706/739] x86/MCE: Always save CS register on AMD Zen IF Poison errors Greg Kroah-Hartman
2023-09-11 13:48 ` [PATCH 6.5 707/739] crypto: af_alg - Decrement struct key.usage in alg_set_by_key_serial() Greg Kroah-Hartman
2023-09-11 13:48 ` [PATCH 6.5 708/739] platform/chrome: chromeos_acpi: print hex string for ACPI_TYPE_BUFFER Greg Kroah-Hartman
2023-09-11 13:48 ` [PATCH 6.5 709/739] mmc: renesas_sdhi: register irqs before registering controller Greg Kroah-Hartman
2023-09-11 13:48 ` [PATCH 6.5 710/739] pstore/ram: Check start of empty przs during init Greg Kroah-Hartman
2023-09-11 13:48 ` [PATCH 6.5 711/739] arm64: sdei: abort running SDEI handlers during crash Greg Kroah-Hartman
2023-09-11 13:48 ` [PATCH 6.5 712/739] regulator: dt-bindings: qcom,rpm: fix pattern for children Greg Kroah-Hartman
2023-09-11 13:48 ` [PATCH 6.5 713/739] iov_iter: Fix iov_iter_extract_pages() with zero-sized entries Greg Kroah-Hartman
2023-09-11 13:48 ` [PATCH 6.5 714/739] RISC-V: Add ptrace support for vectors Greg Kroah-Hartman
2023-09-11 13:48 ` [PATCH 6.5 715/739] s390/dcssblk: fix kernel crash with list_add corruption Greg Kroah-Hartman
2023-09-11 13:48 ` [PATCH 6.5 716/739] s390/ipl: add missing secure/has_secure file to ipl type unknown Greg Kroah-Hartman
2023-09-11 13:48 ` [PATCH 6.5 717/739] s390/dasd: fix string length handling Greg Kroah-Hartman
2023-09-11 13:48 ` [PATCH 6.5 718/739] HID: logitech-hidpp: rework one more time the retries attempts Greg Kroah-Hartman
2023-09-11 13:48 ` [PATCH 6.5 719/739] crypto: stm32 - fix loop iterating through scatterlist for DMA Greg Kroah-Hartman
2023-09-11 13:48 ` [PATCH 6.5 720/739] crypto: stm32 - fix MDMAT condition Greg Kroah-Hartman
2023-09-11 13:48 ` [PATCH 6.5 721/739] cpufreq: brcmstb-avs-cpufreq: Fix -Warray-bounds bug Greg Kroah-Hartman
2023-09-11 13:48 ` [PATCH 6.5 722/739] of: property: fw_devlink: Add a devlink for panel followers Greg Kroah-Hartman
2023-09-11 13:48 ` [PATCH 6.5 723/739] USB: core: Fix oversight in SuperSpeed initialization Greg Kroah-Hartman
2023-09-11 13:48 ` [PATCH 6.5 724/739] x86/smp: Dont send INIT to non-present and non-booted CPUs Greg Kroah-Hartman
2023-09-11 13:48 ` [PATCH 6.5 725/739] x86/sgx: Break up long non-preemptible delays in sgx_vepc_release() Greg Kroah-Hartman
2023-09-11 13:48 ` [PATCH 6.5 726/739] x86/build: Fix linker fill bytes quirk/incompatibility for ld.lld Greg Kroah-Hartman
2023-09-11 13:48 ` [PATCH 6.5 727/739] perf/x86/uncore: Correct the number of CHAs on EMR Greg Kroah-Hartman
2023-09-11 13:48 ` [PATCH 6.5 728/739] media: ipu3-cio2: allow ipu_bridge to be a module again Greg Kroah-Hartman
2023-09-11 13:48 ` [PATCH 6.5 729/739] Bluetooth: msft: Extended monitor tracking by address filter Greg Kroah-Hartman
2023-09-11 13:48 ` [PATCH 6.5 730/739] Bluetooth: HCI: Introduce HCI_QUIRK_BROKEN_LE_CODED Greg Kroah-Hartman
2023-09-11 13:48 ` [PATCH 6.5 731/739] serial: sc16is7xx: remove obsolete out_thread label Greg Kroah-Hartman
2023-09-11 13:48 ` [PATCH 6.5 732/739] serial: sc16is7xx: fix regression with GPIO configuration Greg Kroah-Hartman
2023-09-11 13:48 ` [PATCH 6.5 733/739] mm/memfd: sysctl: fix MEMFD_NOEXEC_SCOPE_NOEXEC_ENFORCED Greg Kroah-Hartman
2023-09-11 13:48 ` [PATCH 6.5 734/739] selftests/memfd: " Greg Kroah-Hartman
2023-09-11 13:48 ` [PATCH 6.5 735/739] memfd: do not -EACCES old memfd_create() users with vm.memfd_noexec=2 Greg Kroah-Hartman
2023-09-11 13:48 ` [PATCH 6.5 736/739] memfd: replace ratcheting feature from vm.memfd_noexec with hierarchy Greg Kroah-Hartman
2023-09-11 13:48 ` [PATCH 6.5 737/739] memfd: improve userspace warnings for missing exec-related flags Greg Kroah-Hartman
2023-09-11 13:48 ` [PATCH 6.5 738/739] revert "memfd: improve userspace warnings for missing exec-related flags" Greg Kroah-Hartman
2023-09-11 13:48 ` [PATCH 6.5 739/739] net: remove duplicate INDIRECT_CALLABLE_DECLARE of udp[6]_ehashfn Greg Kroah-Hartman
2023-09-11 20:06 ` [PATCH 6.5 000/739] 6.5.3-rc1 review Shuah Khan
2023-09-12  7:18 ` Bagas Sanjaya
2023-09-12  8:02 ` Naresh Kamboju
2023-09-12 16:38   ` Allen Pais
2023-09-12  8:55 ` Sudip Mukherjee (Codethink)
2023-09-12 12:27 ` Justin Forbes
2023-09-12 13:03 ` Ron Economos
2023-09-12 15:11 ` Jon Hunter
2023-09-12 18:35 ` Guenter Roeck
2023-09-12 18:45 ` Florian Fainelli
2023-09-13  6:44 ` Conor Dooley
2023-09-13 21:31 ` Joel Fernandes

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=20230911134701.199792291@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=jack@suse.cz \
    --cc=patches@lists.linux.dev \
    --cc=sashal@kernel.org \
    --cc=song@kernel.org \
    --cc=stable@vger.kernel.org \
    --cc=yukuai3@huawei.com \
    /path/to/YOUR_REPLY

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

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