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