From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: stable@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
patches@lists.linux.dev, Polaris Pi <pinkperfect2021@gmail.com>,
Dmitry Antipov <dmantipov@yandex.ru>,
Brian Norris <briannorris@chromium.org>,
Kalle Valo <kvalo@kernel.org>, Sasha Levin <sashal@kernel.org>
Subject: [PATCH 6.1 187/600] wifi: mwifiex: Fix missed return in oob checks failed path
Date: Mon, 11 Sep 2023 15:43:40 +0200 [thread overview]
Message-ID: <20230911134639.144924814@linuxfoundation.org> (raw)
In-Reply-To: <20230911134633.619970489@linuxfoundation.org>
6.1-stable review patch. If anyone has any objections, please let me know.
------------------
From: Polaris Pi <pinkperfect2021@gmail.com>
[ Upstream commit 2785851c627f2db05f9271f7f63661b5dbd95c4c ]
Add missed return in mwifiex_uap_queue_bridged_pkt() and
mwifiex_process_rx_packet().
Fixes: 119585281617 ("wifi: mwifiex: Fix OOB and integer underflow when rx packets")
Signed-off-by: Polaris Pi <pinkperfect2021@gmail.com>
Reported-by: Dmitry Antipov <dmantipov@yandex.ru>
Acked-by: Brian Norris <briannorris@chromium.org>
Signed-off-by: Kalle Valo <kvalo@kernel.org>
Link: https://lore.kernel.org/r/20230810083911.3725248-1-pinkperfect2021@gmail.com
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
drivers/net/wireless/marvell/mwifiex/sta_rx.c | 1 +
drivers/net/wireless/marvell/mwifiex/uap_txrx.c | 1 +
2 files changed, 2 insertions(+)
diff --git a/drivers/net/wireless/marvell/mwifiex/sta_rx.c b/drivers/net/wireless/marvell/mwifiex/sta_rx.c
index f2899d53a43f9..65420ad674167 100644
--- a/drivers/net/wireless/marvell/mwifiex/sta_rx.c
+++ b/drivers/net/wireless/marvell/mwifiex/sta_rx.c
@@ -92,6 +92,7 @@ int mwifiex_process_rx_packet(struct mwifiex_private *priv,
skb->len, rx_pkt_off);
priv->stats.rx_dropped++;
dev_kfree_skb_any(skb);
+ return -1;
}
if ((!memcmp(&rx_pkt_hdr->rfc1042_hdr, bridge_tunnel_header,
diff --git a/drivers/net/wireless/marvell/mwifiex/uap_txrx.c b/drivers/net/wireless/marvell/mwifiex/uap_txrx.c
index 04ff051f5d186..c1b8d41dd7536 100644
--- a/drivers/net/wireless/marvell/mwifiex/uap_txrx.c
+++ b/drivers/net/wireless/marvell/mwifiex/uap_txrx.c
@@ -110,6 +110,7 @@ static void mwifiex_uap_queue_bridged_pkt(struct mwifiex_private *priv,
skb->len, le16_to_cpu(uap_rx_pd->rx_pkt_offset));
priv->stats.rx_dropped++;
dev_kfree_skb_any(skb);
+ return;
}
if ((!memcmp(&rx_pkt_hdr->rfc1042_hdr, bridge_tunnel_header,
--
2.40.1
next prev parent reply other threads:[~2023-09-11 15:09 UTC|newest]
Thread overview: 631+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-09-11 13:40 [PATCH 6.1 000/600] 6.1.53-rc1 review Greg Kroah-Hartman
2023-09-11 13:40 ` [PATCH 6.1 001/600] Revert "bridge: Add extack warning when enabling STP in netns." Greg Kroah-Hartman
2023-09-11 13:40 ` [PATCH 6.1 002/600] Partially revert "drm/amd/display: Fix possible underflow for displays with large vblank" Greg Kroah-Hartman
2023-09-11 13:40 ` [PATCH 6.1 003/600] scsi: ufs: Try harder to change the power mode Greg Kroah-Hartman
2023-09-11 13:40 ` [PATCH 6.1 004/600] Revert "Revert drm/amd/display: Enable Freesync Video Mode by default" Greg Kroah-Hartman
2023-09-11 13:40 ` [PATCH 6.1 005/600] ARM: dts: imx: Set default tuning step for imx7d usdhc Greg Kroah-Hartman
2023-09-11 13:40 ` [PATCH 6.1 006/600] ALSA: hda/realtek: Enable 4 amplifiers instead of 2 on a HP platform Greg Kroah-Hartman
2023-09-11 13:40 ` [PATCH 6.1 007/600] powerpc/boot: Disable power10 features after BOOTAFLAGS assignment Greg Kroah-Hartman
2023-09-11 13:40 ` [PATCH 6.1 008/600] media: uapi: HEVC: Add num_delta_pocs_of_ref_rps_idx field Greg Kroah-Hartman
2023-09-11 13:40 ` [PATCH 6.1 009/600] Revert "MIPS: unhide PATA_PLATFORM" Greg Kroah-Hartman
2023-09-11 13:40 ` [PATCH 6.1 010/600] phy: qcom-snps-femto-v2: use qcom_snps_hsphy_suspend/resume error code Greg Kroah-Hartman
2023-09-11 13:40 ` [PATCH 6.1 011/600] media: amphion: use dev_err_probe Greg Kroah-Hartman
2023-09-11 13:40 ` [PATCH 6.1 012/600] media: pulse8-cec: handle possible ping error Greg Kroah-Hartman
2023-09-11 13:40 ` [PATCH 6.1 013/600] media: pci: cx23885: fix error handling for cx23885 ATSC boards Greg Kroah-Hartman
2023-09-11 13:40 ` [PATCH 6.1 014/600] 9p: virtio: fix unlikely null pointer deref in handle_rerror Greg Kroah-Hartman
2023-09-11 13:40 ` [PATCH 6.1 015/600] 9p: virtio: make sure offs is initialized in zc_request Greg Kroah-Hartman
2023-09-11 13:40 ` [PATCH 6.1 016/600] ksmbd: fix out of bounds in smb3_decrypt_req() Greg Kroah-Hartman
2023-09-11 13:40 ` [PATCH 6.1 017/600] ksmbd: validate session id and tree id in compound request Greg Kroah-Hartman
2023-09-11 13:40 ` [PATCH 6.1 018/600] ksmbd: no response from compound read Greg Kroah-Hartman
2023-09-11 13:40 ` [PATCH 6.1 019/600] ksmbd: fix out of bounds in init_smb2_rsp_hdr() Greg Kroah-Hartman
2023-09-11 13:40 ` [PATCH 6.1 020/600] ASoC: da7219: Flush pending AAD IRQ when suspending Greg Kroah-Hartman
2023-09-11 13:40 ` [PATCH 6.1 021/600] ASoC: da7219: Check for failure reading AAD IRQ events Greg Kroah-Hartman
2023-09-11 13:40 ` [PATCH 6.1 022/600] ASoC: nau8821: Add DMI quirk mechanism for active-high jack-detect Greg Kroah-Hartman
2023-09-11 13:40 ` [PATCH 6.1 023/600] ethernet: atheros: fix return value check in atl1c_tso_csum() Greg Kroah-Hartman
2023-09-11 13:40 ` [PATCH 6.1 024/600] m68k: Fix invalid .section syntax Greg Kroah-Hartman
2023-09-11 13:40 ` [PATCH 6.1 025/600] s390/dasd: use correct number of retries for ERP requests Greg Kroah-Hartman
2023-09-11 13:40 ` [PATCH 6.1 026/600] s390/dasd: fix hanging device after request requeue Greg Kroah-Hartman
2023-09-11 13:41 ` [PATCH 6.1 027/600] fs/nls: make load_nls() take a const parameter Greg Kroah-Hartman
2023-09-11 13:41 ` [PATCH 6.1 028/600] ASoC: rt5682-sdw: fix for JD event handling in ClockStop Mode0 Greg Kroah-Hartman
2023-09-11 13:41 ` [PATCH 6.1 029/600] ASoc: codecs: ES8316: Fix DMIC config Greg Kroah-Hartman
2023-09-11 13:41 ` [PATCH 6.1 030/600] ASoC: rt711: fix for JD event handling in ClockStop Mode0 Greg Kroah-Hartman
2023-09-11 13:41 ` [PATCH 6.1 031/600] ASoC: rt711-sdca: " Greg Kroah-Hartman
2023-09-11 13:41 ` [PATCH 6.1 032/600] ASoC: atmel: Fix the 8K sample parameter in I2SC master Greg Kroah-Hartman
2023-09-11 13:41 ` [PATCH 6.1 033/600] ALSA: usb-audio: Add quirk for Microsoft Modern Wireless Headset Greg Kroah-Hartman
2023-09-11 13:41 ` [PATCH 6.1 034/600] platform/x86: intel: hid: Always call BTNL ACPI method Greg Kroah-Hartman
2023-09-11 13:41 ` [PATCH 6.1 035/600] platform/x86/intel/hid: Add HP Dragonfly G2 to VGBS DMI quirks Greg Kroah-Hartman
2023-09-11 13:41 ` [PATCH 6.1 036/600] platform/x86: think-lmi: Use kfree_sensitive instead of kfree Greg Kroah-Hartman
2023-09-11 13:41 ` [PATCH 6.1 037/600] platform/x86: asus-wmi: Fix setting RGB mode on some TUF laptops Greg Kroah-Hartman
2023-09-11 13:41 ` [PATCH 6.1 038/600] platform/x86: huawei-wmi: Silence ambient light sensor Greg Kroah-Hartman
2023-09-11 13:41 ` [PATCH 6.1 039/600] drm/amd/smu: use AverageGfxclkFrequency* to replace previous GFX Curr Clock Greg Kroah-Hartman
2023-09-11 13:41 ` [PATCH 6.1 040/600] drm/amd/display: Guard DCN31 PHYD32CLK logic against chip family Greg Kroah-Hartman
2023-09-11 13:41 ` [PATCH 6.1 041/600] drm/amd/display: Exit idle optimizations before attempt to access PHY Greg Kroah-Hartman
2023-09-11 13:41 ` [PATCH 6.1 042/600] ovl: Always reevaluate the file signature for IMA Greg Kroah-Hartman
2023-09-11 13:41 ` [PATCH 6.1 043/600] ata: pata_arasan_cf: Use dev_err_probe() instead dev_err() in data_xfer() Greg Kroah-Hartman
2023-09-11 13:41 ` [PATCH 6.1 044/600] ALSA: usb-audio: Update for native DSD support quirks Greg Kroah-Hartman
2023-09-11 13:41 ` [PATCH 6.1 045/600] staging: fbtft: ili9341: use macro FBTFT_REGISTER_SPI_DRIVER Greg Kroah-Hartman
2023-09-11 13:41 ` [PATCH 6.1 046/600] security: keys: perform capable check only on privileged operations Greg Kroah-Hartman
2023-09-11 13:41 ` [PATCH 6.1 047/600] kprobes: Prohibit probing on CFI preamble symbol Greg Kroah-Hartman
2023-09-11 13:41 ` [PATCH 6.1 048/600] clk: fixed-mmio: make COMMON_CLK_FIXED_MMIO depend on HAS_IOMEM Greg Kroah-Hartman
2023-09-11 13:41 ` [PATCH 6.1 049/600] vmbus_testing: fix wrong python syntax for integer value comparison Greg Kroah-Hartman
2023-09-11 13:41 ` [PATCH 6.1 050/600] Revert "wifi: ath6k: silence false positive -Wno-dangling-pointer warning on GCC 12" Greg Kroah-Hartman
2023-09-11 13:41 ` [PATCH 6.1 051/600] net: dsa: microchip: KSZ9477 register regmap alignment to 32 bit boundaries Greg Kroah-Hartman
2023-09-11 13:41 ` [PATCH 6.1 052/600] net: annotate data-races around sk->sk_{rcv|snd}timeo Greg Kroah-Hartman
2023-09-11 13:41 ` [PATCH 6.1 053/600] net: usb: qmi_wwan: add Quectel EM05GV2 Greg Kroah-Hartman
2023-09-11 13:41 ` [PATCH 6.1 054/600] wifi: brcmfmac: Fix field-spanning write in brcmf_scan_params_v2_to_v1() Greg Kroah-Hartman
2023-09-11 13:41 ` [PATCH 6.1 055/600] powerpc/powermac: Use early_* IO variants in via_calibrate_decr() Greg Kroah-Hartman
2023-09-11 13:41 ` [PATCH 6.1 056/600] idmaengine: make FSL_EDMA and INTEL_IDMA64 depends on HAS_IOMEM Greg Kroah-Hartman
2023-09-11 13:41 ` [PATCH 6.1 057/600] platform/x86/amd/pmf: Fix unsigned comparison with less than zero Greg Kroah-Hartman
2023-09-11 13:41 ` [PATCH 6.1 058/600] scsi: lpfc: Remove reftag check in DIF paths Greg Kroah-Hartman
2023-09-11 13:41 ` [PATCH 6.1 059/600] scsi: qedi: Fix potential deadlock on &qedi_percpu->p_work_lock Greg Kroah-Hartman
2023-09-11 13:41 ` [PATCH 6.1 060/600] net: hns3: restore user pause configure when disable autoneg Greg Kroah-Hartman
2023-09-11 13:41 ` [PATCH 6.1 061/600] drm/amdgpu: Match against exact bootloader status Greg Kroah-Hartman
2023-09-11 13:41 ` [PATCH 6.1 062/600] wifi: cfg80211: remove links only on AP Greg Kroah-Hartman
2023-09-11 13:41 ` [PATCH 6.1 063/600] wifi: mac80211: Use active_links instead of valid_links in Tx Greg Kroah-Hartman
2023-09-11 13:41 ` [PATCH 6.1 064/600] netlabel: fix shift wrapping bug in netlbl_catmap_setlong() Greg Kroah-Hartman
2023-09-11 13:41 ` [PATCH 6.1 065/600] bnx2x: fix page fault following EEH recovery Greg Kroah-Hartman
2023-09-11 13:41 ` [PATCH 6.1 066/600] cifs: fix sockaddr comparison in iface_cmp Greg Kroah-Hartman
2023-09-11 13:41 ` [PATCH 6.1 067/600] cifs: fix max_credits implementation Greg Kroah-Hartman
2023-09-11 13:41 ` [PATCH 6.1 068/600] sctp: handle invalid error codes without calling BUG() Greg Kroah-Hartman
2023-09-11 13:41 ` [PATCH 6.1 069/600] scsi: aacraid: Reply queue mapping to CPUs based on IRQ affinity Greg Kroah-Hartman
2023-09-11 13:41 ` [PATCH 6.1 070/600] scsi: storvsc: Always set no_report_opcodes Greg Kroah-Hartman
2023-09-11 13:41 ` [PATCH 6.1 071/600] scsi: lpfc: Fix incorrect big endian type assignment in bsg loopback path Greg Kroah-Hartman
2023-09-11 13:41 ` [PATCH 6.1 072/600] LoongArch: Let pmd_present() return true when splitting pmd Greg Kroah-Hartman
2023-09-11 13:41 ` [PATCH 6.1 073/600] LoongArch: Fix the write_fcsr() macro Greg Kroah-Hartman
2023-09-11 13:41 ` [PATCH 6.1 074/600] ALSA: seq: oss: Fix racy open/close of MIDI devices Greg Kroah-Hartman
2023-09-11 13:41 ` [PATCH 6.1 075/600] net: sfp: handle 100G/25G active optical cables in sfp_parse_support Greg Kroah-Hartman
2023-09-11 13:41 ` [PATCH 6.1 076/600] tracing: Introduce pipe_cpumask to avoid race on trace_pipes Greg Kroah-Hartman
2023-09-11 13:41 ` [PATCH 6.1 077/600] platform/mellanox: Fix mlxbf-tmfifo not handling all virtio CONSOLE notifications Greg Kroah-Hartman
2023-09-11 13:41 ` [PATCH 6.1 078/600] of: property: Simplify of_link_to_phandle() Greg Kroah-Hartman
2023-09-11 13:41 ` [PATCH 6.1 079/600] cpufreq: intel_pstate: set stale CPU frequency to minimum Greg Kroah-Hartman
2023-09-11 13:41 ` [PATCH 6.1 080/600] crypto: rsa-pkcs1pad - Use helper to set reqsize Greg Kroah-Hartman
2023-09-11 13:41 ` [PATCH 6.1 081/600] tpm: Enable hwrng only for Pluton on AMD CPUs Greg Kroah-Hartman
2023-09-11 13:41 ` [PATCH 6.1 082/600] KVM: x86/mmu: Use kstrtobool() instead of strtobool() Greg Kroah-Hartman
2023-09-11 13:41 ` [PATCH 6.1 083/600] KVM: x86/mmu: Add "never" option to allow sticky disabling of nx_huge_pages Greg Kroah-Hartman
2023-09-11 13:41 ` [PATCH 6.1 084/600] net: Avoid address overwrite in kernel_connect Greg Kroah-Hartman
2023-09-11 13:41 ` [PATCH 6.1 085/600] drm/amd/display: ensure async flips are only accepted for fast updates Greg Kroah-Hartman
2023-09-11 13:41 ` [PATCH 6.1 086/600] udf: Check consistency of Space Bitmap Descriptor Greg Kroah-Hartman
2023-09-11 13:42 ` [PATCH 6.1 087/600] udf: Handle error when adding extent to a file Greg Kroah-Hartman
2023-09-11 13:42 ` [PATCH 6.1 088/600] Input: i8042 - add quirk for TUXEDO Gemini 17 Gen1/Clevo PD70PN Greg Kroah-Hartman
2023-09-11 13:42 ` [PATCH 6.1 089/600] Revert "PCI: tegra194: Enable support for 256 Byte payload" Greg Kroah-Hartman
2023-09-11 13:42 ` [PATCH 6.1 090/600] Revert "net: macsec: preserve ingress frame ordering" Greg Kroah-Hartman
2023-09-11 13:42 ` [PATCH 6.1 091/600] tools lib subcmd: Add install target Greg Kroah-Hartman
2023-09-11 13:42 ` [PATCH 6.1 092/600] tools lib subcmd: Make install_headers clearer Greg Kroah-Hartman
2023-09-11 13:42 ` [PATCH 6.1 093/600] tools lib subcmd: Add dependency test to install_headers Greg Kroah-Hartman
2023-09-11 13:42 ` [PATCH 6.1 094/600] tools/resolve_btfids: Use pkg-config to locate libelf Greg Kroah-Hartman
2023-09-11 13:42 ` [PATCH 6.1 095/600] tools/resolve_btfids: Install subcmd headers Greg Kroah-Hartman
2023-09-11 13:42 ` [PATCH 6.1 096/600] tools/resolve_btfids: Alter how HOSTCC is forced Greg Kroah-Hartman
2023-09-11 13:42 ` [PATCH 6.1 097/600] tools/resolve_btfids: Compile resolve_btfids as host program Greg Kroah-Hartman
2023-09-11 13:42 ` [PATCH 6.1 098/600] tools/resolve_btfids: Tidy HOST_OVERRIDES Greg Kroah-Hartman
2023-09-11 13:42 ` [PATCH 6.1 099/600] tools/resolve_btfids: Pass HOSTCFLAGS as EXTRA_CFLAGS to prepare targets Greg Kroah-Hartman
2023-09-11 13:42 ` [PATCH 6.1 100/600] tools/resolve_btfids: Fix setting HOSTCFLAGS Greg Kroah-Hartman
2023-09-11 13:42 ` [PATCH 6.1 101/600] reiserfs: Check the return value from __getblk() Greg Kroah-Hartman
2023-09-11 13:42 ` [PATCH 6.1 102/600] eventfd: prevent underflow for eventfd semaphores Greg Kroah-Hartman
2023-09-11 13:42 ` [PATCH 6.1 103/600] fs: Fix error checking for d_hash_and_lookup() Greg Kroah-Hartman
2023-09-11 13:42 ` [PATCH 6.1 104/600] iomap: Remove large folio handling in iomap_invalidate_folio() Greg Kroah-Hartman
2023-09-11 13:42 ` [PATCH 6.1 105/600] tmpfs: verify {g,u}id mount options correctly Greg Kroah-Hartman
2023-09-11 13:42 ` [PATCH 6.1 106/600] selftests/harness: Actually report SKIP for signal tests Greg Kroah-Hartman
2023-09-11 13:42 ` [PATCH 6.1 107/600] vfs, security: Fix automount superblock LSM init problem, preventing NFS sb sharing Greg Kroah-Hartman
2023-09-11 13:42 ` [PATCH 6.1 108/600] ARM: ptrace: Restore syscall restart tracing Greg Kroah-Hartman
2023-09-11 13:42 ` [PATCH 6.1 109/600] ARM: ptrace: Restore syscall skipping for tracers Greg Kroah-Hartman
2023-09-11 13:42 ` [PATCH 6.1 110/600] refscale: Fix uninitalized use of wait_queue_head_t Greg Kroah-Hartman
2023-09-11 13:42 ` [PATCH 6.1 111/600] OPP: Fix passing 0 to PTR_ERR in _opp_attach_genpd() Greg Kroah-Hartman
2023-09-11 13:42 ` [PATCH 6.1 112/600] selftests/resctrl: Add resctrl.h into build deps Greg Kroah-Hartman
2023-09-11 13:42 ` [PATCH 6.1 113/600] selftests/resctrl: Dont leak buffer in fill_cache() Greg Kroah-Hartman
2023-09-11 13:42 ` [PATCH 6.1 114/600] selftests/resctrl: Unmount resctrl FS if child fails to run benchmark Greg Kroah-Hartman
2023-09-11 13:42 ` [PATCH 6.1 115/600] selftests/resctrl: Close perf value read fd on errors Greg Kroah-Hartman
2023-09-11 13:42 ` [PATCH 6.1 116/600] arm64/ptrace: Clean up error handling path in sve_set_common() Greg Kroah-Hartman
2023-09-11 13:42 ` [PATCH 6.1 117/600] sched/psi: Select KERNFS as needed Greg Kroah-Hartman
2023-09-11 13:42 ` [PATCH 6.1 118/600] x86/decompressor: Dont rely on upper 32 bits of GPRs being preserved Greg Kroah-Hartman
2023-09-11 13:42 ` [PATCH 6.1 119/600] arm64/sme: Dont use streaming mode to probe the maximum SME VL Greg Kroah-Hartman
2023-09-11 13:42 ` [PATCH 6.1 120/600] arm64/fpsimd: Only provide the length to cpufeature for xCR registers Greg Kroah-Hartman
2023-09-11 13:42 ` [PATCH 6.1 121/600] sched/rt: Fix sysctl_sched_rr_timeslice intial value Greg Kroah-Hartman
2023-09-11 13:42 ` [PATCH 6.1 122/600] perf/imx_ddr: dont enable counter0 if none of 4 counters are used Greg Kroah-Hartman
2023-09-11 13:42 ` [PATCH 6.1 123/600] selftests/futex: Order calls to futex_lock_pi Greg Kroah-Hartman
2023-09-11 13:42 ` [PATCH 6.1 124/600] s390/pkey: fix/harmonize internal keyblob headers Greg Kroah-Hartman
2023-09-11 13:42 ` [PATCH 6.1 125/600] s390/pkey: fix PKEY_TYPE_EP11_AES handling in PKEY_GENSECK2 IOCTL Greg Kroah-Hartman
2023-09-11 13:42 ` [PATCH 6.1 126/600] s390/pkey: fix PKEY_TYPE_EP11_AES handling for sysfs attributes Greg Kroah-Hartman
2023-09-11 13:42 ` [PATCH 6.1 127/600] s390/paes: fix PKEY_TYPE_EP11_AES handling for secure keyblobs Greg Kroah-Hartman
2023-09-11 13:42 ` [PATCH 6.1 128/600] irqchip/loongson-eiointc: Fix return value checking of eiointc_index Greg Kroah-Hartman
2023-09-11 13:42 ` [PATCH 6.1 129/600] ACPI: x86: s2idle: Post-increment variables when getting constraints Greg Kroah-Hartman
2023-09-11 13:42 ` [PATCH 6.1 130/600] ACPI: x86: s2idle: Fix a logic error parsing AMD constraints table Greg Kroah-Hartman
2023-09-11 13:42 ` [PATCH 6.1 131/600] thermal/of: Fix potential uninitialized value access Greg Kroah-Hartman
2023-09-11 13:42 ` [PATCH 6.1 132/600] cpufreq: amd-pstate-ut: Remove module parameter access Greg Kroah-Hartman
2023-09-11 13:42 ` [PATCH 6.1 133/600] cpufreq: amd-pstate-ut: Fix kernel panic when loading the driver Greg Kroah-Hartman
2023-09-11 13:42 ` [PATCH 6.1 134/600] x86/efistub: Fix PCI ROM preservation in mixed mode Greg Kroah-Hartman
2023-09-11 13:42 ` [PATCH 6.1 135/600] cpufreq: powernow-k8: Use related_cpus instead of cpus in driver.exit() Greg Kroah-Hartman
2023-09-11 13:42 ` [PATCH 6.1 136/600] selftests/bpf: Fix bpf_nf failure upon test rerun Greg Kroah-Hartman
2023-09-11 13:42 ` [PATCH 6.1 137/600] bpftool: use a local copy of perf_event to fix accessing :: Bpf_cookie Greg Kroah-Hartman
2023-09-11 13:42 ` [PATCH 6.1 138/600] bpftool: Define a local bpf_perf_link to fix accessing its fields Greg Kroah-Hartman
2023-09-11 13:42 ` [PATCH 6.1 139/600] bpftool: Use a local copy of BPF_LINK_TYPE_PERF_EVENT in pid_iter.bpf.c Greg Kroah-Hartman
2023-09-11 13:42 ` [PATCH 6.1 140/600] bpftool: Use a local bpf_perf_event_value to fix accessing its fields Greg Kroah-Hartman
2023-09-11 13:42 ` [PATCH 6.1 141/600] libbpf: Fix realloc API handling in zero-sized edge cases Greg Kroah-Hartman
2023-09-11 13:42 ` [PATCH 6.1 142/600] bpf: Clear the probe_addr for uprobe Greg Kroah-Hartman
2023-09-11 13:42 ` [PATCH 6.1 143/600] bpf: Fix an error in verifying a field in a union Greg Kroah-Hartman
2023-09-11 13:42 ` [PATCH 6.1 144/600] crypto: qat - change value of default idle filter Greg Kroah-Hartman
2023-09-11 13:42 ` [PATCH 6.1 145/600] tcp: tcp_enter_quickack_mode() should be static Greg Kroah-Hartman
2023-09-11 13:42 ` [PATCH 6.1 146/600] hwrng: nomadik - keep clock enabled while hwrng is registered Greg Kroah-Hartman
2023-09-11 13:43 ` [PATCH 6.1 147/600] hwrng: pic32 - use devm_clk_get_enabled Greg Kroah-Hartman
2023-09-11 13:43 ` [PATCH 6.1 148/600] regmap: rbtree: Use alloc_flags for memory allocations Greg Kroah-Hartman
2023-09-11 13:43 ` [PATCH 6.1 149/600] wifi: rtw89: debug: Fix error handling in rtw89_debug_priv_btc_manual_set() Greg Kroah-Hartman
2023-09-11 13:43 ` [PATCH 6.1 150/600] wifi: mt76: mt7921: fix non-PSC channel scan fail Greg Kroah-Hartman
2023-09-11 13:43 ` [PATCH 6.1 151/600] udp: re-score reuseport groups when connected sockets are present Greg Kroah-Hartman
2023-09-11 13:43 ` [PATCH 6.1 152/600] bpf: reject unhashed sockets in bpf_sk_assign Greg Kroah-Hartman
2023-09-11 13:43 ` [PATCH 6.1 153/600] net: export inet_lookup_reuseport and inet6_lookup_reuseport Greg Kroah-Hartman
2023-09-11 13:43 ` [PATCH 6.1 154/600] net: remove duplicate reuseport_lookup functions Greg Kroah-Hartman
2023-09-11 13:43 ` [PATCH 6.1 155/600] bpf, net: Support SO_REUSEPORT sockets with bpf_sk_assign Greg Kroah-Hartman
2023-09-11 13:43 ` [PATCH 6.1 156/600] wifi: mt76: testmode: add nla_policy for MT76_TM_ATTR_TX_LENGTH Greg Kroah-Hartman
2023-09-11 13:43 ` [PATCH 6.1 157/600] spi: tegra20-sflash: fix to check return value of platform_get_irq() in tegra_sflash_probe() Greg Kroah-Hartman
2023-09-11 13:43 ` [PATCH 6.1 158/600] can: gs_usb: gs_usb_receive_bulk_callback(): count RX overflow errors also in case of OOM Greg Kroah-Hartman
2023-09-11 13:43 ` [PATCH 6.1 159/600] wifi: mt76: mt7915: fix power-limits while chan_switch Greg Kroah-Hartman
2023-09-11 13:43 ` [PATCH 6.1 160/600] wifi: mwifiex: Fix OOB and integer underflow when rx packets Greg Kroah-Hartman
2023-09-11 13:43 ` [PATCH 6.1 161/600] wifi: mwifiex: fix error recovery in PCIE buffer descriptor management Greg Kroah-Hartman
2023-09-11 13:43 ` [PATCH 6.1 162/600] selftests/bpf: fix static assert compilation issue for test_cls_*.c Greg Kroah-Hartman
2023-09-11 13:43 ` [PATCH 6.1 163/600] kbuild: rust_is_available: remove -v option Greg Kroah-Hartman
2023-09-11 13:43 ` [PATCH 6.1 164/600] kbuild: rust_is_available: fix version check when CC has multiple arguments Greg Kroah-Hartman
2023-09-11 13:43 ` [PATCH 6.1 165/600] kbuild: rust_is_available: add check for `bindgen` invocation Greg Kroah-Hartman
2023-09-11 13:43 ` [PATCH 6.1 166/600] kbuild: rust_is_available: fix confusion when a version appears in the path Greg Kroah-Hartman
2023-09-11 13:43 ` [PATCH 6.1 167/600] crypto: stm32 - Properly handle pm_runtime_get failing Greg Kroah-Hartman
2023-09-11 13:43 ` [PATCH 6.1 168/600] crypto: api - Use work queue in crypto_destroy_instance Greg Kroah-Hartman
2023-09-11 13:43 ` [PATCH 6.1 169/600] Bluetooth: nokia: fix value check in nokia_bluetooth_serdev_probe() Greg Kroah-Hartman
2023-09-11 13:43 ` [PATCH 6.1 170/600] Bluetooth: Fix potential use-after-free when clear keys Greg Kroah-Hartman
2023-09-11 13:43 ` [PATCH 6.1 171/600] Bluetooth: hci_sync: Dont double print name in add/remove adv_monitor Greg Kroah-Hartman
2023-09-11 13:43 ` [PATCH 6.1 172/600] Bluetooth: hci_sync: Avoid use-after-free in dbg for hci_add_adv_monitor() Greg Kroah-Hartman
2023-09-11 13:43 ` [PATCH 6.1 173/600] net: tcp: fix unexcepted socket die when snd_wnd is 0 Greg Kroah-Hartman
2023-09-11 13:43 ` [PATCH 6.1 174/600] selftests/bpf: Fix repeat option when kfunc_call verification fails Greg Kroah-Hartman
2023-09-11 13:43 ` [PATCH 6.1 175/600] selftests/bpf: Clean up fmod_ret in bench_rename test script Greg Kroah-Hartman
2023-09-11 13:43 ` [PATCH 6.1 176/600] spi: tegra114: Remove unnecessary NULL-pointer checks Greg Kroah-Hartman
2023-09-11 13:43 ` [PATCH 6.1 177/600] net: Fix slab-out-of-bounds in inet[6]_steal_sock Greg Kroah-Hartman
2023-09-11 13:43 ` [PATCH 6.1 178/600] net-memcg: Fix scope of sockmem pressure indicators Greg Kroah-Hartman
2023-09-11 13:43 ` [PATCH 6.1 179/600] ice: ice_aq_check_events: fix off-by-one check when filling buffer Greg Kroah-Hartman
2023-09-11 13:43 ` [PATCH 6.1 180/600] crypto: caam - fix unchecked return value error Greg Kroah-Hartman
2023-09-11 13:43 ` [PATCH 6.1 181/600] hwrng: iproc-rng200 - Implement suspend and resume calls Greg Kroah-Hartman
2023-09-11 13:43 ` [PATCH 6.1 182/600] lwt: Fix return values of BPF xmit ops Greg Kroah-Hartman
2023-09-11 13:43 ` [PATCH 6.1 183/600] lwt: Check LWTUNNEL_XMIT_CONTINUE strictly Greg Kroah-Hartman
2023-09-11 13:43 ` [PATCH 6.1 184/600] fs: ocfs2: namei: check return value of ocfs2_add_entry() Greg Kroah-Hartman
2023-09-11 13:43 ` [PATCH 6.1 185/600] net: annotate data-races around sk->sk_lingertime Greg Kroah-Hartman
2023-09-11 13:43 ` [PATCH 6.1 186/600] wifi: mwifiex: fix memory leak in mwifiex_histogram_read() Greg Kroah-Hartman
2023-09-11 13:43 ` Greg Kroah-Hartman [this message]
2023-09-11 13:43 ` [PATCH 6.1 188/600] ARM: dts: Add .dts files missing from the build Greg Kroah-Hartman
2023-09-11 13:43 ` [PATCH 6.1 189/600] samples/bpf: fix bio latency check with tracepoint Greg Kroah-Hartman
2023-09-11 13:43 ` [PATCH 6.1 190/600] samples/bpf: fix broken map lookup probe Greg Kroah-Hartman
2023-09-11 13:43 ` [PATCH 6.1 191/600] wifi: ath9k: fix races between ath9k_wmi_cmd and ath9k_wmi_ctrl_rx Greg Kroah-Hartman
2023-09-11 13:43 ` [PATCH 6.1 192/600] wifi: ath9k: protect WMI command response buffer replacement with a lock Greg Kroah-Hartman
2023-09-11 13:43 ` [PATCH 6.1 193/600] wifi: nl80211/cfg80211: add forgotten nla_policy for BSS color attribute Greg Kroah-Hartman
2023-09-11 13:43 ` [PATCH 6.1 194/600] mac80211: make ieee80211_tx_info padding explicit Greg Kroah-Hartman
2023-09-11 13:43 ` [PATCH 6.1 195/600] wifi: mwifiex: avoid possible NULL skb pointer dereference Greg Kroah-Hartman
2023-09-11 13:43 ` [PATCH 6.1 196/600] Bluetooth: btusb: Do not call kfree_skb() under spin_lock_irqsave() Greg Kroah-Hartman
2023-09-11 13:43 ` [PATCH 6.1 197/600] arm64: mm: use ptep_clear() instead of pte_clear() in clear_flush() Greg Kroah-Hartman
2023-09-11 13:43 ` [PATCH 6.1 198/600] wifi: ath9k: use IS_ERR() with debugfs_create_dir() Greg Kroah-Hartman
2023-09-11 13:43 ` [PATCH 6.1 199/600] ice: avoid executing commands on other ports when driving sync Greg Kroah-Hartman
2023-09-11 13:43 ` [PATCH 6.1 200/600] net: arcnet: Do not call kfree_skb() under local_irq_disable() Greg Kroah-Hartman
2023-09-11 13:43 ` [PATCH 6.1 201/600] mlxsw: i2c: Fix chunk size setting in output mailbox buffer Greg Kroah-Hartman
2023-09-11 13:43 ` [PATCH 6.1 202/600] mlxsw: i2c: Limit single transaction buffer size Greg Kroah-Hartman
2023-09-11 13:43 ` [PATCH 6.1 203/600] mlxsw: core_hwmon: Adjust module label names based on MTCAP sensor counter Greg Kroah-Hartman
2023-09-11 13:43 ` [PATCH 6.1 204/600] hwmon: (tmp513) Fix the channel number in tmp51x_is_visible() Greg Kroah-Hartman
2023-09-11 13:43 ` [PATCH 6.1 205/600] octeontx2-pf: Refactor schedular queue alloc/free calls Greg Kroah-Hartman
2023-09-11 13:43 ` [PATCH 6.1 206/600] octeontx2-pf: Fix PFC TX scheduler free Greg Kroah-Hartman
2023-09-11 13:44 ` [PATCH 6.1 207/600] cteonxt2-pf: Fix backpressure config for multiple PFC priorities to work simultaneously Greg Kroah-Hartman
2023-09-11 13:44 ` [PATCH 6.1 208/600] sfc: Check firmware supports Ethernet PTP filter Greg Kroah-Hartman
2023-09-11 13:44 ` [PATCH 6.1 209/600] net/sched: sch_hfsc: Ensure inner classes have fsc curve Greg Kroah-Hartman
2023-09-11 13:44 ` [PATCH 6.1 210/600] netrom: Deny concurrent connect() Greg Kroah-Hartman
2023-09-11 13:44 ` [PATCH 6.1 211/600] drm/bridge: tc358764: Fix debug print parameter order Greg Kroah-Hartman
2023-09-11 13:44 ` [PATCH 6.1 212/600] ASoC: cs43130: Fix numerator/denominator mixup Greg Kroah-Hartman
2023-09-11 13:44 ` [PATCH 6.1 213/600] drm: bridge: dw-mipi-dsi: Fix enable/disable of DSI controller Greg Kroah-Hartman
2023-09-11 15:49 ` Ondřej Jirman
2023-09-12 10:34 ` Greg Kroah-Hartman
2023-09-11 13:44 ` [PATCH 6.1 214/600] quota: factor out dquot_write_dquot() Greg Kroah-Hartman
2023-09-11 13:44 ` [PATCH 6.1 215/600] quota: rename dquot_active() to inode_quota_active() Greg Kroah-Hartman
2023-09-11 13:44 ` [PATCH 6.1 216/600] quota: add new helper dquot_active() Greg Kroah-Hartman
2023-09-11 13:44 ` [PATCH 6.1 217/600] quota: fix dqput() to follow the guarantees dquot_srcu should provide Greg Kroah-Hartman
2023-09-11 13:44 ` [PATCH 6.1 218/600] drm/amd/display: Do not set drr on pipe commit Greg Kroah-Hartman
2023-09-11 13:44 ` [PATCH 6.1 219/600] drm/hyperv: Fix a compilation issue because of not including screen_info.h Greg Kroah-Hartman
2023-09-11 13:44 ` [PATCH 6.1 220/600] ASoC: stac9766: fix build errors with REGMAP_AC97 Greg Kroah-Hartman
2023-09-11 13:44 ` [PATCH 6.1 221/600] soc: qcom: ocmem: Add OCMEM hardware version print Greg Kroah-Hartman
2023-09-11 13:44 ` [PATCH 6.1 222/600] soc: qcom: ocmem: Fix NUM_PORTS & NUM_MACROS macros Greg Kroah-Hartman
2023-09-11 13:44 ` [PATCH 6.1 223/600] arm64: dts: qcom: sm6350: Fix ZAP region Greg Kroah-Hartman
2023-09-11 13:44 ` [PATCH 6.1 224/600] arm64: dts: qcom: sm8250: correct dynamic power coefficients Greg Kroah-Hartman
2023-09-11 13:44 ` [PATCH 6.1 225/600] arm64: dts: qcom: msm8916-l8150: correct light sensor VDDIO supply Greg Kroah-Hartman
2023-09-11 13:44 ` [PATCH 6.1 226/600] arm64: dts: qcom: sm8250-edo: Add gpio line names for TLMM Greg Kroah-Hartman
2023-09-11 13:44 ` [PATCH 6.1 227/600] arm64: dts: qcom: sm8250-edo: Add GPIO line names for PMIC GPIOs Greg Kroah-Hartman
2023-09-11 13:44 ` [PATCH 6.1 228/600] arm64: dts: qcom: sm8250-edo: Rectify gpio-keys Greg Kroah-Hartman
2023-09-11 13:44 ` [PATCH 6.1 229/600] arm64: dts: qcom: sc8280xp-crd: Correct vreg_misc_3p3 GPIO Greg Kroah-Hartman
2023-09-11 13:44 ` [PATCH 6.1 230/600] arm64: dts: qcom: sc8280xp: Add missing SCM interconnect Greg Kroah-Hartman
2023-09-11 13:44 ` [PATCH 6.1 231/600] arm64: dts: qcom: msm8996: Add missing interrupt to the USB2 controller Greg Kroah-Hartman
2023-09-11 13:44 ` [PATCH 6.1 232/600] arm64: dts: qcom: sdm845-tama: Set serial indices and stdout-path Greg Kroah-Hartman
2023-09-11 13:44 ` [PATCH 6.1 233/600] arm64: dts: qcom: sm8350: Fix CPU idle state residency times Greg Kroah-Hartman
2023-09-11 13:44 ` [PATCH 6.1 234/600] arm64: dts: qcom: sm8350: Add missing LMH interrupts to cpufreq Greg Kroah-Hartman
2023-09-11 13:44 ` [PATCH 6.1 235/600] arm64: dts: qcom: sm8350: Use proper CPU compatibles Greg Kroah-Hartman
2023-09-11 13:44 ` [PATCH 6.1 236/600] arm64: dts: qcom: pm8350: fix thermal zone name Greg Kroah-Hartman
2023-09-11 13:44 ` [PATCH 6.1 237/600] arm64: dts: qcom: pm8350b: " Greg Kroah-Hartman
2023-09-11 13:44 ` [PATCH 6.1 238/600] arm64: dts: qcom: pmr735b: " Greg Kroah-Hartman
2023-09-11 13:44 ` [PATCH 6.1 239/600] arm64: dts: qcom: pmk8350: fix ADC-TM compatible string Greg Kroah-Hartman
2023-09-11 13:44 ` [PATCH 6.1 240/600] arm64: dts: qcom: sm8250: Mark PCIe hosts as DMA coherent Greg Kroah-Hartman
2023-09-11 13:44 ` [PATCH 6.1 241/600] ARM: dts: stm32: Rename mdio0 to mdio Greg Kroah-Hartman
2023-09-11 13:44 ` [PATCH 6.1 242/600] ARM: dts: stm32: YAML validation fails for Argon Boards Greg Kroah-Hartman
2023-09-11 13:44 ` [PATCH 6.1 243/600] ARM: dts: stm32: adopt generic iio bindings for adc channels on emstamp-argon Greg Kroah-Hartman
2023-09-11 13:44 ` [PATCH 6.1 244/600] ARM: dts: stm32: Add missing detach mailbox for emtrion emSBC-Argon Greg Kroah-Hartman
2023-09-11 13:44 ` [PATCH 6.1 245/600] ARM: dts: stm32: YAML validation fails for Odyssey Boards Greg Kroah-Hartman
2023-09-11 13:44 ` [PATCH 6.1 246/600] ARM: dts: stm32: Add missing detach mailbox for Odyssey SoM Greg Kroah-Hartman
2023-09-11 13:44 ` [PATCH 6.1 247/600] ARM: dts: stm32: Update to generic ADC channel binding on DHSOM systems Greg Kroah-Hartman
2023-09-11 13:44 ` [PATCH 6.1 248/600] ARM: dts: stm32: Add missing detach mailbox for DHCOM SoM Greg Kroah-Hartman
2023-09-11 13:44 ` [PATCH 6.1 249/600] firmware: ti_sci: Use system_state to determine polling Greg Kroah-Hartman
2023-09-11 13:44 ` [PATCH 6.1 250/600] drm/amdgpu: avoid integer overflow warning in amdgpu_device_resize_fb_bar() Greg Kroah-Hartman
2023-09-11 13:44 ` [PATCH 6.1 251/600] ARM: dts: BCM53573: Drop nonexistent #usb-cells Greg Kroah-Hartman
2023-09-11 13:44 ` [PATCH 6.1 252/600] ARM: dts: BCM53573: Add cells sizes to PCIe node Greg Kroah-Hartman
2023-09-11 13:44 ` [PATCH 6.1 253/600] ARM: dts: BCM53573: Use updated "spi-gpio" binding properties Greg Kroah-Hartman
2023-09-11 13:44 ` [PATCH 6.1 254/600] arm64: tegra: Fix HSUART for Jetson AGX Orin Greg Kroah-Hartman
2023-09-11 13:44 ` [PATCH 6.1 255/600] arm64: dts: qcom: sm8250-sony-xperia: correct GPIO keys wakeup again Greg Kroah-Hartman
2023-09-11 13:44 ` [PATCH 6.1 256/600] arm64: dts: qcom: pm6150l: Add missing short interrupt Greg Kroah-Hartman
2023-09-11 13:44 ` [PATCH 6.1 257/600] arm64: dts: qcom: pm660l: " Greg Kroah-Hartman
2023-09-11 13:44 ` [PATCH 6.1 258/600] arm64: dts: qcom: pmi8994: Add missing OVP interrupt Greg Kroah-Hartman
2023-09-11 13:44 ` [PATCH 6.1 259/600] arm64: tegra: Fix HSUART for Smaug Greg Kroah-Hartman
2023-09-11 13:44 ` [PATCH 6.1 260/600] drm/etnaviv: fix dumping of active MMU context Greg Kroah-Hartman
2023-09-11 13:44 ` [PATCH 6.1 261/600] block: cleanup queue_wc_store Greg Kroah-Hartman
2023-09-11 13:44 ` [PATCH 6.1 262/600] block: dont allow enabling a cache on devices that dont support it Greg Kroah-Hartman
2023-09-11 13:44 ` [PATCH 6.1 263/600] x86/mm: Fix PAT bit missing from page protection modify mask Greg Kroah-Hartman
2023-09-11 13:44 ` [PATCH 6.1 264/600] drm/bridge: anx7625: Use common macros for DP power sequencing commands Greg Kroah-Hartman
2023-09-11 13:44 ` [PATCH 6.1 265/600] drm/bridge: anx7625: Use common macros for HDCP capabilities Greg Kroah-Hartman
2023-09-11 13:44 ` [PATCH 6.1 266/600] ARM: dts: samsung: s3c6410-mini6410: correct ethernet reg addresses (split) Greg Kroah-Hartman
2023-09-11 13:45 ` [PATCH 6.1 267/600] ARM: dts: s5pv210: add dummy 5V regulator for backlight on SMDKv210 Greg Kroah-Hartman
2023-09-11 13:45 ` [PATCH 6.1 268/600] ARM: dts: samsung: s5pv210-smdkv210: correct ethernet reg addresses (split) Greg Kroah-Hartman
2023-09-11 13:45 ` [PATCH 6.1 269/600] drm: adv7511: Fix low refresh rate register for ADV7533/5 Greg Kroah-Hartman
2023-09-11 13:45 ` [PATCH 6.1 270/600] ARM: dts: BCM53573: Fix Ethernet info for Luxul devices Greg Kroah-Hartman
2023-09-11 13:45 ` [PATCH 6.1 271/600] arm64: dts: qcom: sdm845: Add missing RPMh power domain to GCC Greg Kroah-Hartman
2023-09-11 13:45 ` [PATCH 6.1 272/600] arm64: dts: qcom: sdm845: Fix the min frequency of "ice_core_clk" Greg Kroah-Hartman
2023-09-11 13:45 ` [PATCH 6.1 273/600] arm64: dts: qcom: msm8996-gemini: fix touchscreen VIO supply Greg Kroah-Hartman
2023-09-11 13:45 ` [PATCH 6.1 274/600] drm/amdgpu: Update min() to min_t() in amdgpu_info_ioctl Greg Kroah-Hartman
2023-09-11 13:45 ` [PATCH 6.1 275/600] md: Factor out is_md_suspended helper Greg Kroah-Hartman
2023-09-11 13:45 ` [PATCH 6.1 276/600] md: Change active_io to percpu Greg Kroah-Hartman
2023-09-11 13:45 ` [PATCH 6.1 277/600] md: restore noio_flag for the last mddev_resume() Greg Kroah-Hartman
2023-09-11 13:45 ` [PATCH 6.1 278/600] md/raid10: factor out dereference_rdev_and_rrdev() Greg Kroah-Hartman
2023-09-11 13:45 ` [PATCH 6.1 279/600] md/raid10: use dereference_rdev_and_rrdev() to get devices Greg Kroah-Hartman
2023-09-11 13:45 ` [PATCH 6.1 280/600] md/md-bitmap: remove unnecessary local variable in backlog_store() Greg Kroah-Hartman
2023-09-11 13:45 ` [PATCH 6.1 281/600] md/md-bitmap: hold reconfig_mutex " Greg Kroah-Hartman
2023-09-11 13:45 ` [PATCH 6.1 282/600] drm/msm: Update dev core dump to not print backwards Greg Kroah-Hartman
2023-09-11 13:45 ` [PATCH 6.1 283/600] drm/tegra: dpaux: Fix incorrect return value of platform_get_irq Greg Kroah-Hartman
2023-09-11 13:45 ` [PATCH 6.1 284/600] of: unittest: fix null pointer dereferencing in of_unittest_find_node_by_name() Greg Kroah-Hartman
2023-09-11 13:45 ` [PATCH 6.1 285/600] arm64: dts: qcom: sm8150: Fix the I2C7 interrupt Greg Kroah-Hartman
2023-09-11 13:45 ` [PATCH 6.1 286/600] ARM: dts: BCM53573: Fix Tenda AC9 switch CPU port Greg Kroah-Hartman
2023-09-11 13:45 ` [PATCH 6.1 287/600] drm/armada: Fix off-by-one error in armada_overlay_get_property() Greg Kroah-Hartman
2023-09-11 13:45 ` [PATCH 6.1 288/600] drm/repaper: Reduce temporary buffer size in repaper_fb_dirty() Greg Kroah-Hartman
2023-09-11 13:45 ` [PATCH 6.1 289/600] drm/panel: simple: Add missing connector type and pixel format for AUO T215HVN01 Greg Kroah-Hartman
2023-09-11 13:45 ` [PATCH 6.1 290/600] ima: Remove deprecated IMA_TRUSTED_KEYRING Kconfig Greg Kroah-Hartman
2023-09-11 13:45 ` [PATCH 6.1 291/600] drm: xlnx: zynqmp_dpsub: Add missing check for dma_set_mask Greg Kroah-Hartman
2023-09-11 13:45 ` [PATCH 6.1 292/600] soc: qcom: smem: Fix incompatible types in comparison Greg Kroah-Hartman
2023-09-11 13:45 ` [PATCH 6.1 293/600] drm/msm/mdp5: Dont leak some plane state Greg Kroah-Hartman
2023-09-11 13:45 ` [PATCH 6.1 294/600] firmware: meson_sm: fix to avoid potential NULL pointer dereference Greg Kroah-Hartman
2023-09-11 13:45 ` [PATCH 6.1 295/600] drm/msm/dpu: fix the irq index in dpu_encoder_phys_wb_wait_for_commit_done Greg Kroah-Hartman
2023-09-11 13:45 ` [PATCH 6.1 296/600] smackfs: Prevent underflow in smk_set_cipso() Greg Kroah-Hartman
2023-09-11 13:45 ` [PATCH 6.1 297/600] drm/amd/pm: fix variable dereferenced issue in amdgpu_device_attr_create() Greg Kroah-Hartman
2023-09-11 13:45 ` [PATCH 6.1 298/600] drm/msm/a2xx: Call adreno_gpu_init() earlier Greg Kroah-Hartman
2023-09-11 13:45 ` [PATCH 6.1 299/600] audit: fix possible soft lockup in __audit_inode_child() Greg Kroah-Hartman
2023-09-11 13:45 ` [PATCH 6.1 300/600] block/mq-deadline: use correct way to throttling write requests Greg Kroah-Hartman
2023-09-11 13:45 ` [PATCH 6.1 301/600] io_uring: fix drain stalls by invalid SQE Greg Kroah-Hartman
2023-09-11 13:45 ` [PATCH 6.1 302/600] drm/mediatek: dp: Add missing error checks in mtk_dp_parse_capabilities Greg Kroah-Hartman
2023-09-11 13:45 ` [PATCH 6.1 303/600] bus: ti-sysc: Fix build warning for 64-bit build Greg Kroah-Hartman
2023-09-11 13:45 ` [PATCH 6.1 304/600] drm/mediatek: Remove freeing not dynamic allocated memory Greg Kroah-Hartman
2023-09-11 13:45 ` [PATCH 6.1 305/600] ARM: dts: qcom: ipq4019: correct SDHCI XO clock Greg Kroah-Hartman
2023-09-11 13:45 ` [PATCH 6.1 306/600] drm/mediatek: Fix potential memory leak if vmap() fail Greg Kroah-Hartman
2023-09-11 13:45 ` [PATCH 6.1 307/600] arm64: dts: qcom: apq8016-sbc: Fix ov5640 regulator supply names Greg Kroah-Hartman
2023-09-11 13:45 ` [PATCH 6.1 308/600] arm64: dts: qcom: msm8998: Drop bus clock reference from MMSS SMMU Greg Kroah-Hartman
2023-09-11 13:45 ` [PATCH 6.1 309/600] arm64: dts: qcom: msm8998: Add missing power domain to " Greg Kroah-Hartman
2023-09-11 13:45 ` [PATCH 6.1 310/600] arm64: dts: qcom: msm8996: Fix dsi1 interrupts Greg Kroah-Hartman
2023-09-11 13:45 ` [PATCH 6.1 311/600] arm64: dts: qcom: sc8280xp-x13s: Unreserve NC pins Greg Kroah-Hartman
2023-09-11 13:45 ` [PATCH 6.1 312/600] bus: ti-sysc: Fix cast to enum warning Greg Kroah-Hartman
2023-09-11 13:45 ` [PATCH 6.1 313/600] md/raid5-cache: fix a deadlock in r5l_exit_log() Greg Kroah-Hartman
2023-09-11 13:45 ` [PATCH 6.1 314/600] md/raid5-cache: fix null-ptr-deref for r5l_flush_stripe_to_raid() Greg Kroah-Hartman
2023-09-11 13:45 ` [PATCH 6.1 315/600] firmware: cs_dsp: Fix new control name check Greg Kroah-Hartman
2023-09-11 13:45 ` [PATCH 6.1 316/600] md/raid1: free the r1bio before waiting for blocked rdev Greg Kroah-Hartman
2023-09-11 13:45 ` [PATCH 6.1 317/600] md/raid1: hold the barrier until handle_read_error() finishes Greg Kroah-Hartman
2023-09-11 13:45 ` [PATCH 6.1 318/600] md: add error_handlers for raid0 and linear Greg Kroah-Hartman
2023-09-11 13:45 ` [PATCH 6.1 319/600] md/raid0: Factor out helper for mapping and submitting a bio Greg Kroah-Hartman
2023-09-11 13:45 ` [PATCH 6.1 320/600] md/raid0: Fix performance regression for large sequential writes Greg Kroah-Hartman
2023-09-11 13:45 ` [PATCH 6.1 321/600] md: raid0: account for split bio in iostat accounting Greg Kroah-Hartman
2023-09-11 13:45 ` [PATCH 6.1 322/600] ASoC: SOF: amd: clear dsp to host interrupt status Greg Kroah-Hartman
2023-09-11 13:45 ` [PATCH 6.1 323/600] of: overlay: Call of_changeset_init() early Greg Kroah-Hartman
2023-09-11 13:45 ` [PATCH 6.1 324/600] of: unittest: Fix overlay type in apply/revert check Greg Kroah-Hartman
2023-09-11 13:45 ` [PATCH 6.1 325/600] ALSA: ac97: Fix possible error value of *rac97 Greg Kroah-Hartman
2023-09-11 13:45 ` [PATCH 6.1 326/600] ipmi:ssif: Add check for kstrdup Greg Kroah-Hartman
2023-09-11 13:46 ` [PATCH 6.1 327/600] ipmi:ssif: Fix a memory leak when scanning for an adapter Greg Kroah-Hartman
2023-09-11 13:46 ` [PATCH 6.1 328/600] clk: qcom: gpucc-sm6350: Introduce index-based clk lookup Greg Kroah-Hartman
2023-09-11 13:46 ` [PATCH 6.1 329/600] clk: qcom: gpucc-sm6350: Fix clock source names Greg Kroah-Hartman
2023-09-11 13:46 ` [PATCH 6.1 330/600] clk: qcom: gcc-sc8280xp: Add EMAC GDSCs Greg Kroah-Hartman
2023-09-11 13:46 ` [PATCH 6.1 331/600] clk: qcom: gcc-sc8280xp: Add missing GDSC flags Greg Kroah-Hartman
2023-09-11 13:46 ` [PATCH 6.1 332/600] dt-bindings: clock: qcom,gcc-sc8280xp: Add missing GDSCs Greg Kroah-Hartman
2023-09-11 13:46 ` [PATCH 6.1 333/600] clk: qcom: gcc-sc8280xp: " Greg Kroah-Hartman
2023-09-11 13:46 ` [PATCH 6.1 334/600] clk: rockchip: rk3568: Fix PLL rate setting for 78.75MHz Greg Kroah-Hartman
2023-09-11 13:46 ` [PATCH 6.1 335/600] PCI: apple: Initialize pcie->nvecs before use Greg Kroah-Hartman
2023-09-11 13:46 ` [PATCH 6.1 336/600] PCI: qcom-ep: Switch MHI bus master clock off during L1SS Greg Kroah-Hartman
2023-09-11 13:46 ` [PATCH 6.1 337/600] drivers: clk: keystone: Fix parameter judgment in _of_pll_clk_init() Greg Kroah-Hartman
2023-09-11 13:46 ` [PATCH 6.1 338/600] PCI/DOE: Fix destroy_work_on_stack() race Greg Kroah-Hartman
2023-09-11 13:46 ` [PATCH 6.1 339/600] clk: sunxi-ng: Modify mismatched function name Greg Kroah-Hartman
2023-09-11 13:46 ` [PATCH 6.1 340/600] clk: qcom: gcc-sc7180: Fix up gcc_sdcc2_apps_clk_src Greg Kroah-Hartman
2023-09-11 13:46 ` [PATCH 6.1 341/600] EDAC/igen6: Fix the issue of no error events Greg Kroah-Hartman
2023-09-11 13:46 ` [PATCH 6.1 342/600] ext4: correct grp validation in ext4_mb_good_group Greg Kroah-Hartman
2023-09-11 13:46 ` [PATCH 6.1 343/600] ext4: avoid potential data overflow in next_linear_group Greg Kroah-Hartman
2023-09-11 13:46 ` [PATCH 6.1 344/600] clk: qcom: gcc-sm8250: Fix gcc_sdcc2_apps_clk_src Greg Kroah-Hartman
2023-09-11 13:46 ` [PATCH 6.1 345/600] kvm/vfio: Prepare for accepting vfio device fd Greg Kroah-Hartman
2023-09-11 13:46 ` [PATCH 6.1 346/600] kvm/vfio: ensure kvg instance stays around in kvm_vfio_group_add() Greg Kroah-Hartman
2023-09-11 13:46 ` [PATCH 6.1 347/600] clk: qcom: reset: Use the correct type of sleep/delay based on length Greg Kroah-Hartman
2023-09-11 13:46 ` [PATCH 6.1 348/600] clk: qcom: gcc-sm6350: Fix gcc_sdcc2_apps_clk_src Greg Kroah-Hartman
2023-09-11 13:46 ` [PATCH 6.1 349/600] PCI: microchip: Correct the DED and SEC interrupt bit offsets Greg Kroah-Hartman
2023-09-11 13:46 ` [PATCH 6.1 350/600] PCI: Mark NVIDIA T4 GPUs to avoid bus reset Greg Kroah-Hartman
2023-09-11 13:46 ` [PATCH 6.1 351/600] pinctrl: mcp23s08: check return value of devm_kasprintf() Greg Kroah-Hartman
2023-09-11 13:46 ` [PATCH 6.1 352/600] PCI: Allow drivers to request exclusive config regions Greg Kroah-Hartman
2023-09-11 13:46 ` [PATCH 6.1 353/600] PCI: Add locking to RMW PCI Express Capability Register accessors Greg Kroah-Hartman
2023-09-11 13:46 ` [PATCH 6.1 354/600] PCI: pciehp: Use RMW accessors for changing LNKCTL Greg Kroah-Hartman
2023-09-11 13:46 ` [PATCH 6.1 355/600] PCI/ASPM: " Greg Kroah-Hartman
2023-09-11 13:46 ` [PATCH 6.1 356/600] clk: qcom: gcc-sm8450: Use floor ops for SDCC RCGs Greg Kroah-Hartman
2023-09-11 13:46 ` [PATCH 6.1 357/600] clk: imx: pllv4: Fix SPLL2 MULT range Greg Kroah-Hartman
2023-09-11 13:46 ` [PATCH 6.1 358/600] clk: imx: imx8ulp: update SPLL2 type Greg Kroah-Hartman
2023-09-11 13:46 ` [PATCH 6.1 359/600] clk: imx8mp: fix sai4 clock Greg Kroah-Hartman
2023-09-11 13:46 ` [PATCH 6.1 360/600] clk: imx: composite-8m: fix clock pauses when set_rate would be a no-op Greg Kroah-Hartman
2023-09-11 13:46 ` [PATCH 6.1 361/600] powerpc/radix: Move some functions into #ifdef CONFIG_KVM_BOOK3S_HV_POSSIBLE Greg Kroah-Hartman
2023-09-11 13:46 ` [PATCH 6.1 362/600] vfio/type1: fix cap_migration information leak Greg Kroah-Hartman
2023-09-11 13:46 ` [PATCH 6.1 363/600] nvdimm: Fix memleak of pmu attr_groups in unregister_nvdimm_pmu() Greg Kroah-Hartman
2023-09-11 13:46 ` [PATCH 6.1 364/600] nvdimm: Fix dereference after free in register_nvdimm_pmu() Greg Kroah-Hartman
2023-09-11 13:46 ` [PATCH 6.1 365/600] powerpc/fadump: reset dump area size if fadump memory reserve fails Greg Kroah-Hartman
2023-09-11 13:46 ` [PATCH 6.1 366/600] powerpc/perf: Convert fsl_emb notifier to state machine callbacks Greg Kroah-Hartman
2023-09-11 13:46 ` [PATCH 6.1 367/600] drm/amdgpu: Use RMW accessors for changing LNKCTL Greg Kroah-Hartman
2023-09-11 13:46 ` [PATCH 6.1 368/600] drm/radeon: " Greg Kroah-Hartman
2023-09-11 13:46 ` [PATCH 6.1 369/600] net/mlx5: " Greg Kroah-Hartman
2023-09-11 13:46 ` [PATCH 6.1 370/600] wifi: ath11k: " Greg Kroah-Hartman
2023-09-11 13:46 ` [PATCH 6.1 371/600] wifi: ath10k: " Greg Kroah-Hartman
2023-09-11 13:46 ` [PATCH 6.1 372/600] NFSv4.2: Rework scratch handling for READ_PLUS Greg Kroah-Hartman
2023-09-11 13:46 ` [PATCH 6.1 373/600] NFSv4.2: Fix READ_PLUS smatch warnings Greg Kroah-Hartman
2023-09-11 13:46 ` [PATCH 6.1 374/600] NFSv4.2: Fix up READ_PLUS alignment Greg Kroah-Hartman
2023-09-11 13:46 ` [PATCH 6.1 375/600] NFSv4.2: Fix READ_PLUS size calculations Greg Kroah-Hartman
2023-09-11 13:46 ` [PATCH 6.1 376/600] powerpc: Dont include lppaca.h in paca.h Greg Kroah-Hartman
2023-09-11 13:46 ` [PATCH 6.1 377/600] powerpc/pseries: Rework lppaca_shared_proc() to avoid DEBUG_PREEMPT Greg Kroah-Hartman
2023-09-11 13:46 ` [PATCH 6.1 378/600] nfs/blocklayout: Use the passed in gfp flags Greg Kroah-Hartman
2023-09-11 13:46 ` [PATCH 6.1 379/600] powerpc/pseries: Fix hcall tracepoints with JUMP_LABEL=n Greg Kroah-Hartman
2023-09-11 13:46 ` [PATCH 6.1 380/600] powerpc/mpc5xxx: Add missing fwnode_handle_put() Greg Kroah-Hartman
2023-09-11 13:46 ` [PATCH 6.1 381/600] powerpc/iommu: Fix notifiers being shared by PCI and VIO buses Greg Kroah-Hartman
2023-09-11 13:46 ` [PATCH 6.1 382/600] ext4: fix unttached inode after power cut with orphan file feature enabled Greg Kroah-Hartman
2023-09-11 13:46 ` [PATCH 6.1 383/600] jfs: validate max amount of blocks before allocation Greg Kroah-Hartman
2023-09-11 13:46 ` [PATCH 6.1 384/600] fs: lockd: avoid possible wrong NULL parameter Greg Kroah-Hartman
2023-09-11 13:46 ` [PATCH 6.1 385/600] NFSD: da_addr_body field missing in some GETDEVICEINFO replies Greg Kroah-Hartman
2023-09-11 13:46 ` [PATCH 6.1 386/600] NFS: Guard against READDIR loop when entry names exceed MAXNAMELEN Greg Kroah-Hartman
2023-09-11 13:47 ` [PATCH 6.1 387/600] NFSv4.2: fix handling of COPY ERR_OFFLOAD_NO_REQ Greg Kroah-Hartman
2023-09-11 13:47 ` [PATCH 6.1 388/600] pNFS: Fix assignment of xprtdata.cred Greg Kroah-Hartman
2023-09-11 13:47 ` [PATCH 6.1 389/600] cgroup/cpuset: Inherit parents load balance state in v2 Greg Kroah-Hartman
2023-09-11 13:47 ` [PATCH 6.1 390/600] RDMA/qedr: Remove a duplicate assignment in irdma_query_ah() Greg Kroah-Hartman
2023-09-11 13:47 ` [PATCH 6.1 391/600] media: ov5640: fix low resolution image abnormal issue Greg Kroah-Hartman
2023-09-11 13:47 ` [PATCH 6.1 392/600] media: ad5820: Drop unsupported ad5823 from i2c_ and of_device_id tables Greg Kroah-Hartman
2023-09-11 13:47 ` [PATCH 6.1 393/600] media: i2c: tvp5150: check return value of devm_kasprintf() Greg Kroah-Hartman
2023-09-11 13:47 ` [PATCH 6.1 394/600] media: v4l2-core: Fix a potential resource leak in v4l2_fwnode_parse_link() Greg Kroah-Hartman
2023-09-11 13:47 ` [PATCH 6.1 395/600] iommu/amd/iommu_v2: Fix pasid_state refcount dec hit 0 warning on pasid unbind Greg Kroah-Hartman
2023-09-11 13:47 ` [PATCH 6.1 396/600] iommu: rockchip: Fix directory table address encoding Greg Kroah-Hartman
2023-09-11 13:47 ` [PATCH 6.1 397/600] drivers: usb: smsusb: fix error handling code in smsusb_init_device Greg Kroah-Hartman
2023-09-11 13:47 ` [PATCH 6.1 398/600] media: dib7000p: Fix potential division by zero Greg Kroah-Hartman
2023-09-11 13:47 ` [PATCH 6.1 399/600] media: dvb-usb: m920x: Fix a potential memory leak in m920x_i2c_xfer() Greg Kroah-Hartman
2023-09-11 13:47 ` [PATCH 6.1 400/600] media: cx24120: Add retval check for cx24120_message_send() Greg Kroah-Hartman
2023-09-11 13:47 ` [PATCH 6.1 401/600] RDMA/siw: Fabricate a GID on tun and loopback devices Greg Kroah-Hartman
2023-09-11 13:47 ` [PATCH 6.1 402/600] scsi: hisi_sas: Fix warnings detected by sparse Greg Kroah-Hartman
2023-09-11 13:47 ` [PATCH 6.1 403/600] scsi: hisi_sas: Fix normally completed I/O analysed as failed Greg Kroah-Hartman
2023-09-11 13:47 ` [PATCH 6.1 404/600] dt-bindings: extcon: maxim,max77843: restrict connector properties Greg Kroah-Hartman
2023-09-11 13:47 ` [PATCH 6.1 405/600] media: amphion: reinit vpu if reqbufs output 0 Greg Kroah-Hartman
2023-09-11 13:47 ` [PATCH 6.1 406/600] media: amphion: add helper function to get id name Greg Kroah-Hartman
2023-09-11 13:47 ` [PATCH 6.1 407/600] media: mtk-jpeg: Fix use after free bug due to uncanceled work Greg Kroah-Hartman
2023-10-10 14:16 ` 王征
2023-10-10 14:54 ` [PATCH " Greg Kroah-Hartman
2023-10-10 15:00 ` 王征
2023-09-11 13:47 ` [PATCH 6.1 408/600] media: rkvdec: increase max supported height for H.264 Greg Kroah-Hartman
2023-09-11 13:47 ` [PATCH 6.1 409/600] media: amphion: fix CHECKED_RETURN issues reported by coverity Greg Kroah-Hartman
2023-09-11 13:47 ` [PATCH 6.1 410/600] media: amphion: fix REVERSE_INULL " Greg Kroah-Hartman
2023-09-11 13:47 ` [PATCH 6.1 411/600] media: amphion: fix UNINIT " Greg Kroah-Hartman
2023-09-11 13:47 ` [PATCH 6.1 412/600] media: amphion: fix UNUSED_VALUE issue " Greg Kroah-Hartman
2023-09-11 13:47 ` [PATCH 6.1 413/600] media: amphion: ensure the bitops dont cross boundaries Greg Kroah-Hartman
2023-09-11 13:47 ` [PATCH 6.1 414/600] media: mediatek: vcodec: Return NULL if no vdec_fb is found Greg Kroah-Hartman
2023-09-11 13:47 ` [PATCH 6.1 415/600] media: mediatek: vcodec: fix potential double free Greg Kroah-Hartman
2023-09-11 13:47 ` [PATCH 6.1 416/600] media: mediatek: vcodec: fix resource leaks in vdec_msg_queue_init() Greg Kroah-Hartman
2023-09-11 13:47 ` [PATCH 6.1 417/600] usb: phy: mxs: fix getting wrong state with mxs_phy_is_otg_host() Greg Kroah-Hartman
2023-09-11 13:47 ` [PATCH 6.1 418/600] scsi: RDMA/srp: Fix residual handling Greg Kroah-Hartman
2023-09-11 13:47 ` [PATCH 6.1 419/600] scsi: iscsi: Rename iscsi_set_param() to iscsi_if_set_param() Greg Kroah-Hartman
2023-09-11 13:47 ` [PATCH 6.1 420/600] scsi: iscsi: Add length check for nlattr payload Greg Kroah-Hartman
2023-09-11 13:47 ` [PATCH 6.1 421/600] scsi: iscsi: Add strlen() check in iscsi_if_set{_host}_param() Greg Kroah-Hartman
2023-09-11 13:47 ` [PATCH 6.1 422/600] scsi: be2iscsi: Add length check when parsing nlattrs Greg Kroah-Hartman
2023-09-11 13:47 ` [PATCH 6.1 423/600] scsi: qla4xxx: " Greg Kroah-Hartman
2023-09-11 13:47 ` [PATCH 6.1 424/600] iio: accel: adxl313: Fix adxl313_i2c_id[] table Greg Kroah-Hartman
2023-09-11 13:47 ` [PATCH 6.1 425/600] serial: sprd: Assign sprd_port after initialized to avoid wrong access Greg Kroah-Hartman
2023-09-11 13:47 ` [PATCH 6.1 426/600] serial: sprd: Fix DMA buffer leak issue Greg Kroah-Hartman
2023-09-11 13:47 ` [PATCH 6.1 427/600] x86/APM: drop the duplicate APM_MINOR_DEV macro Greg Kroah-Hartman
2023-09-11 13:47 ` [PATCH 6.1 428/600] RDMA/rxe: Split rxe_run_task() into two subroutines Greg Kroah-Hartman
2023-09-11 13:47 ` [PATCH 6.1 429/600] RDMA/rxe: Fix incomplete state save in rxe_requester Greg Kroah-Hartman
2023-09-11 13:47 ` [PATCH 6.1 430/600] scsi: qedf: Do not touch __user pointer in qedf_dbg_stop_io_on_error_cmd_read() directly Greg Kroah-Hartman
2023-09-11 13:47 ` [PATCH 6.1 431/600] scsi: qedf: Do not touch __user pointer in qedf_dbg_debug_cmd_read() directly Greg Kroah-Hartman
2023-09-11 13:47 ` [PATCH 6.1 432/600] scsi: qedf: Do not touch __user pointer in qedf_dbg_fp_int_cmd_read() directly Greg Kroah-Hartman
2023-09-11 13:47 ` [PATCH 6.1 433/600] RDMA/irdma: Replace one-element array with flexible-array member Greg Kroah-Hartman
2023-09-11 13:47 ` [PATCH 6.1 434/600] coresight: tmc: Explicit type conversions to prevent integer overflow Greg Kroah-Hartman
2023-09-11 13:47 ` [PATCH 6.1 435/600] interconnect: qcom: qcm2290: Enable sync state Greg Kroah-Hartman
2023-09-11 13:47 ` [PATCH 6.1 436/600] dma-buf/sync_file: Fix docs syntax Greg Kroah-Hartman
2023-09-11 13:47 ` [PATCH 6.1 437/600] driver core: test_async: fix an error code Greg Kroah-Hartman
2023-09-11 13:47 ` [PATCH 6.1 438/600] driver core: Call dma_cleanup() on the test_remove path Greg Kroah-Hartman
2023-09-11 13:47 ` [PATCH 6.1 439/600] kernfs: add stub helper for kernfs_generic_poll() Greg Kroah-Hartman
2023-09-11 13:47 ` [PATCH 6.1 440/600] extcon: cht_wc: add POWER_SUPPLY dependency Greg Kroah-Hartman
2023-09-11 13:47 ` [PATCH 6.1 441/600] iommu/mediatek: Remove unused "mapping" member from mtk_iommu_data Greg Kroah-Hartman
2023-09-11 13:47 ` [PATCH 6.1 442/600] iommu/mediatek: Fix two IOMMU share pagetable issue Greg Kroah-Hartman
2023-09-11 13:47 ` [PATCH 6.1 443/600] iommu/sprd: Add missing force_aperture Greg Kroah-Hartman
2023-09-11 13:47 ` [PATCH 6.1 444/600] RDMA/hns: Fix port active speed Greg Kroah-Hartman
2023-09-11 13:47 ` [PATCH 6.1 445/600] RDMA/hns: Fix incorrect post-send with direct wqe of wr-list Greg Kroah-Hartman
2023-09-11 13:47 ` [PATCH 6.1 446/600] RDMA/hns: Fix inaccurate error label name in init instance Greg Kroah-Hartman
2023-09-11 13:48 ` [PATCH 6.1 447/600] RDMA/hns: Fix CQ and QP cache affinity Greg Kroah-Hartman
2023-09-11 13:48 ` [PATCH 6.1 448/600] IB/uverbs: Fix an potential error pointer dereference Greg Kroah-Hartman
2023-09-11 13:48 ` [PATCH 6.1 449/600] fsi: aspeed: Reset master errors after CFAM reset Greg Kroah-Hartman
2023-09-11 13:48 ` [PATCH 6.1 450/600] iommu/qcom: Disable and reset context bank before programming Greg Kroah-Hartman
2023-09-11 13:48 ` [PATCH 6.1 451/600] iommu/vt-d: Fix to flush cache of PASID directory table Greg Kroah-Hartman
2023-09-11 13:48 ` [PATCH 6.1 452/600] platform/x86: dell-sysman: Fix reference leak Greg Kroah-Hartman
2023-09-11 13:48 ` [PATCH 6.1 453/600] media: cec: core: add adap_nb_transmit_canceled() callback Greg Kroah-Hartman
2023-09-11 13:48 ` [PATCH 6.1 454/600] media: cec: core: add adap_unconfigured() callback Greg Kroah-Hartman
2023-09-11 13:48 ` [PATCH 6.1 455/600] media: go7007: Remove redundant if statement Greg Kroah-Hartman
2023-09-11 13:48 ` [PATCH 6.1 456/600] media: venus: hfi_venus: Only consider sys_idle_indicator on V1 Greg Kroah-Hartman
2023-09-11 13:48 ` [PATCH 6.1 457/600] docs: ABI: fix spelling/grammar in SBEFIFO timeout interface Greg Kroah-Hartman
2023-09-11 13:48 ` [PATCH 6.1 458/600] USB: gadget: core: Add missing kerneldoc for vbus_work Greg Kroah-Hartman
2023-09-11 13:48 ` [PATCH 6.1 459/600] USB: gadget: f_mass_storage: Fix unused variable warning Greg Kroah-Hartman
2023-09-11 13:48 ` [PATCH 6.1 460/600] drivers: base: Free devm resources when unregistering a device Greg Kroah-Hartman
2023-09-11 13:48 ` [PATCH 6.1 461/600] HID: input: Support devices sending Eraser without Invert Greg Kroah-Hartman
2023-09-11 13:48 ` [PATCH 6.1 462/600] media: ov5640: Enable MIPI interface in ov5640_set_power_mipi() Greg Kroah-Hartman
2023-09-11 13:48 ` [PATCH 6.1 463/600] media: ov5640: Fix initial RESETB state and annotate timings Greg Kroah-Hartman
2023-09-11 13:48 ` [PATCH 6.1 464/600] media: i2c: ov2680: Set V4L2_CTRL_FLAG_MODIFY_LAYOUT on flips Greg Kroah-Hartman
2023-09-11 13:48 ` [PATCH 6.1 465/600] media: ov2680: Remove auto-gain and auto-exposure controls Greg Kroah-Hartman
2023-09-11 13:48 ` [PATCH 6.1 466/600] media: ov2680: Fix ov2680_bayer_order() Greg Kroah-Hartman
2023-09-11 13:48 ` [PATCH 6.1 467/600] media: ov2680: Fix vflip / hflip set functions Greg Kroah-Hartman
2023-09-11 13:48 ` [PATCH 6.1 468/600] media: ov2680: Remove VIDEO_V4L2_SUBDEV_API ifdef-s Greg Kroah-Hartman
2023-09-11 13:48 ` [PATCH 6.1 469/600] media: ov2680: Dont take the lock for try_fmt calls Greg Kroah-Hartman
2023-09-11 13:48 ` [PATCH 6.1 470/600] media: ov2680: Add ov2680_fill_format() helper function Greg Kroah-Hartman
2023-09-11 13:48 ` [PATCH 6.1 471/600] media: ov2680: Fix ov2680_set_fmt() which == V4L2_SUBDEV_FORMAT_TRY not working Greg Kroah-Hartman
2023-09-11 13:48 ` [PATCH 6.1 472/600] media: ov2680: Fix regulators being left enabled on ov2680_power_on() errors Greg Kroah-Hartman
2023-09-11 13:48 ` [PATCH 6.1 473/600] media: i2c: rdacm21: Fix uninitialized value Greg Kroah-Hartman
2023-09-11 13:48 ` [PATCH 6.1 474/600] f2fs: fix to avoid mmap vs set_compress_option case Greg Kroah-Hartman
2023-09-11 13:48 ` [PATCH 6.1 475/600] f2fs: judge whether discard_unit is section only when have CONFIG_BLK_DEV_ZONED Greg Kroah-Hartman
2023-09-11 13:48 ` [PATCH 6.1 476/600] f2fs: Only lfs mode is allowed with zoned block device feature Greg Kroah-Hartman
2023-09-11 13:48 ` [PATCH 6.1 477/600] Revert "f2fs: fix to do sanity check on extent cache correctly" Greg Kroah-Hartman
2023-09-11 13:48 ` [PATCH 6.1 478/600] cgroup:namespace: Remove unused cgroup_namespaces_init() Greg Kroah-Hartman
2023-09-11 13:48 ` [PATCH 6.1 479/600] coresight: trbe: Fix TRBE potential sleep in atomic context Greg Kroah-Hartman
2023-09-11 13:48 ` [PATCH 6.1 480/600] RDMA/irdma: Prevent zero-length STAG registration Greg Kroah-Hartman
2023-09-11 13:48 ` [PATCH 6.1 481/600] scsi: core: Use 32-bit hostnum in scsi_host_lookup() Greg Kroah-Hartman
2023-09-11 13:48 ` [PATCH 6.1 482/600] scsi: fcoe: Fix potential deadlock on &fip->ctlr_lock Greg Kroah-Hartman
2023-09-11 13:48 ` [PATCH 6.1 483/600] interconnect: qcom: sm8450: Enable sync_state Greg Kroah-Hartman
2023-09-11 13:48 ` [PATCH 6.1 484/600] interconnect: qcom: bcm-voter: Improve enable_mask handling Greg Kroah-Hartman
2023-09-11 13:48 ` [PATCH 6.1 485/600] interconnect: qcom: bcm-voter: Use enable_maks for keepalive voting Greg Kroah-Hartman
2023-09-11 13:48 ` [PATCH 6.1 486/600] serial: tegra: handle clk prepare error in tegra_uart_hw_init() Greg Kroah-Hartman
2023-09-11 13:48 ` [PATCH 6.1 487/600] amba: bus: fix refcount leak Greg Kroah-Hartman
2023-09-11 13:48 ` [PATCH 6.1 488/600] Revert "IB/isert: Fix incorrect release of isert connection" Greg Kroah-Hartman
2023-09-11 13:48 ` [PATCH 6.1 489/600] RDMA/siw: Balance the reference of cep->kref in the error path Greg Kroah-Hartman
2023-09-11 13:48 ` [PATCH 6.1 490/600] RDMA/siw: Correct wrong debug message Greg Kroah-Hartman
2023-09-11 13:48 ` [PATCH 6.1 491/600] RDMA/efa: Fix wrong resources deallocation order Greg Kroah-Hartman
2023-09-11 13:48 ` [PATCH 6.1 492/600] HID: logitech-dj: Fix error handling in logi_dj_recv_switch_to_dj_mode() Greg Kroah-Hartman
2023-09-11 13:48 ` [PATCH 6.1 493/600] HID: uclogic: Correct devm device reference for hidinput input_dev name Greg Kroah-Hartman
2023-09-11 13:48 ` [PATCH 6.1 494/600] HID: multitouch: " Greg Kroah-Hartman
2023-09-11 13:48 ` [PATCH 6.1 495/600] platform/x86/amd/pmf: Fix a missing cleanup path Greg Kroah-Hartman
2023-09-11 13:48 ` [PATCH 6.1 496/600] tick/rcu: Fix false positive "softirq work is pending" messages Greg Kroah-Hartman
2023-09-11 13:48 ` [PATCH 6.1 497/600] x86/speculation: Mark all Skylake CPUs as vulnerable to GDS Greg Kroah-Hartman
2023-09-11 13:48 ` [PATCH 6.1 498/600] tracing: Remove extra space at the end of hwlat_detector/mode Greg Kroah-Hartman
2023-09-11 13:48 ` [PATCH 6.1 499/600] tracing: Fix race issue between cpu buffer write and swap Greg Kroah-Hartman
2023-09-11 13:48 ` [PATCH 6.1 500/600] mtd: rawnand: brcmnand: Fix mtd oobsize Greg Kroah-Hartman
2023-09-11 13:48 ` [PATCH 6.1 501/600] dmaengine: idxd: Modify the dependence of attribute pasid_enabled Greg Kroah-Hartman
2023-09-11 13:48 ` [PATCH 6.1 502/600] phy/rockchip: inno-hdmi: use correct vco_div_5 macro on rk3328 Greg Kroah-Hartman
2023-09-11 13:48 ` [PATCH 6.1 503/600] phy/rockchip: inno-hdmi: round fractal pixclock in rk3328 recalc_rate Greg Kroah-Hartman
2023-09-11 13:48 ` [PATCH 6.1 504/600] phy/rockchip: inno-hdmi: do not power on rk3328 post pll on reg write Greg Kroah-Hartman
2023-09-11 13:48 ` [PATCH 6.1 505/600] rpmsg: glink: Add check for kstrdup Greg Kroah-Hartman
2023-09-11 13:48 ` [PATCH 6.1 506/600] leds: pwm: Fix error code in led_pwm_create_fwnode() Greg Kroah-Hartman
2023-09-11 13:49 ` [PATCH 6.1 507/600] leds: multicolor: Use rounded division when calculating color components Greg Kroah-Hartman
2023-09-11 13:49 ` [PATCH 6.1 508/600] leds: Fix BUG_ON check for LED_COLOR_ID_MULTI that is always false Greg Kroah-Hartman
2023-09-11 13:49 ` [PATCH 6.1 509/600] leds: trigger: tty: Do not use LED_ON/OFF constants, use led_blink_set_oneshot instead Greg Kroah-Hartman
2023-09-11 13:49 ` [PATCH 6.1 510/600] mtd: spi-nor: Check bus width while setting QE bit Greg Kroah-Hartman
2023-09-11 13:49 ` [PATCH 6.1 511/600] mtd: rawnand: fsmc: handle clk prepare error in fsmc_nand_resume() Greg Kroah-Hartman
2023-09-11 13:49 ` [PATCH 6.1 512/600] um: Fix hostaudio build errors Greg Kroah-Hartman
2023-09-11 13:49 ` [PATCH 6.1 513/600] dmaengine: ste_dma40: Add missing IRQ check in d40_probe Greg Kroah-Hartman
2023-09-11 13:49 ` [PATCH 6.1 514/600] Drivers: hv: vmbus: Dont dereference ACPI root object handle Greg Kroah-Hartman
2023-09-11 13:49 ` [PATCH 6.1 515/600] cpufreq: Fix the race condition while updating the transition_task of policy Greg Kroah-Hartman
2023-09-11 13:49 ` [PATCH 6.1 516/600] virtio_ring: fix avail_wrap_counter in virtqueue_add_packed Greg Kroah-Hartman
2023-09-11 13:49 ` [PATCH 6.1 517/600] igmp: limit igmpv3_newpack() packet size to IP_MAX_MTU Greg Kroah-Hartman
2023-09-11 13:49 ` [PATCH 6.1 518/600] netfilter: ipset: add the missing IP_SET_HASH_WITH_NET0 macro for ip_set_hash_netportnet.c Greg Kroah-Hartman
2023-09-11 13:49 ` [PATCH 6.1 519/600] netfilter: nft_exthdr: Fix non-linear header modification Greg Kroah-Hartman
2023-09-11 13:49 ` [PATCH 6.1 520/600] netfilter: xt_u32: validate user space input Greg Kroah-Hartman
2023-09-11 13:49 ` [PATCH 6.1 521/600] netfilter: xt_sctp: validate the flag_info count Greg Kroah-Hartman
2023-09-11 13:49 ` [PATCH 6.1 522/600] skbuff: skb_segment, Call zero copy functions before using skbuff frags Greg Kroah-Hartman
2023-09-11 13:49 ` [PATCH 6.1 523/600] igb: set max size RX buffer when store bad packet is enabled Greg Kroah-Hartman
2023-09-11 13:49 ` [PATCH 6.1 524/600] PM / devfreq: Fix leak in devfreq_dev_release() Greg Kroah-Hartman
2023-09-11 13:49 ` [PATCH 6.1 525/600] ALSA: pcm: Fix missing fixup call in compat hw_refine ioctl Greg Kroah-Hartman
2023-09-11 13:49 ` [PATCH 6.1 526/600] rcu: dump vmalloc memory info safely Greg Kroah-Hartman
2023-09-11 13:49 ` [PATCH 6.1 527/600] printk: ringbuffer: Fix truncating buffer size min_t cast Greg Kroah-Hartman
2023-09-11 13:49 ` [PATCH 6.1 528/600] scsi: core: Fix the scsi_set_resid() documentation Greg Kroah-Hartman
2023-09-11 13:49 ` [PATCH 6.1 529/600] mm/vmalloc: add a safer version of find_vm_area() for debug Greg Kroah-Hartman
2023-09-11 13:49 ` [PATCH 6.1 530/600] cpu/hotplug: Prevent self deadlock on CPU hot-unplug Greg Kroah-Hartman
2023-09-11 13:49 ` [PATCH 6.1 531/600] media: i2c: ccs: Check rules is non-NULL Greg Kroah-Hartman
2023-09-11 13:49 ` [PATCH 6.1 532/600] media: i2c: Add a camera sensor top level menu Greg Kroah-Hartman
2023-09-11 13:49 ` [PATCH 6.1 533/600] PCI: rockchip: Use 64-bit mask on MSI 64-bit PCI address Greg Kroah-Hartman
2023-09-11 13:49 ` [PATCH 6.1 534/600] ipmi_si: fix a memleak in try_smi_init() Greg Kroah-Hartman
2023-09-11 13:49 ` [PATCH 6.1 535/600] ARM: OMAP2+: Fix -Warray-bounds warning in _pwrdm_state_switch() Greg Kroah-Hartman
2023-09-11 13:49 ` [PATCH 6.1 536/600] XArray: Do not return sibling entries from xa_load() Greg Kroah-Hartman
2023-09-11 13:49 ` [PATCH 6.1 537/600] io_uring: break iopolling on signal Greg Kroah-Hartman
2023-09-11 13:49 ` [PATCH 6.1 538/600] backlight/gpio_backlight: Compare against struct fb_info.device Greg Kroah-Hartman
2023-09-11 13:49 ` [PATCH 6.1 539/600] backlight/bd6107: " Greg Kroah-Hartman
2023-09-11 13:49 ` [PATCH 6.1 540/600] backlight/lv5207lp: " Greg Kroah-Hartman
2023-09-11 13:49 ` [PATCH 6.1 541/600] drm/amd/display: register edp_backlight_control() for DCN301 Greg Kroah-Hartman
2023-09-11 13:49 ` [PATCH 6.1 542/600] xtensa: PMU: fix base address for the newer hardware Greg Kroah-Hartman
2023-09-11 13:49 ` [PATCH 6.1 543/600] LoongArch: mm: Add p?d_leaf() definitions Greg Kroah-Hartman
2023-09-11 13:49 ` [PATCH 6.1 544/600] i3c: master: svc: fix probe failure when no i3c device exist Greg Kroah-Hartman
2023-09-11 13:49 ` [PATCH 6.1 545/600] arm64: csum: Fix OoB access in IP checksum code for negative lengths Greg Kroah-Hartman
2023-09-11 13:49 ` [PATCH 6.1 546/600] ALSA: hda/cirrus: Fix broken audio on hardware with two CS42L42 codecs Greg Kroah-Hartman
2023-09-11 13:49 ` [PATCH 6.1 547/600] media: dvb: symbol fixup for dvb_attach() Greg Kroah-Hartman
2023-09-11 13:49 ` [PATCH 6.1 548/600] media: venus: hfi_venus: Write to VIDC_CTRL_INIT after unmasking interrupts Greg Kroah-Hartman
2023-09-11 13:49 ` [PATCH 6.1 549/600] Revert "scsi: qla2xxx: Fix buffer overrun" Greg Kroah-Hartman
2023-09-11 13:49 ` [PATCH 6.1 550/600] scsi: mpt3sas: Perform additional retries if doorbell read returns 0 Greg Kroah-Hartman
2023-09-11 13:49 ` [PATCH 6.1 551/600] PCI: Free released resource after coalescing Greg Kroah-Hartman
2023-09-11 13:49 ` [PATCH 6.1 552/600] PCI: hv: Fix a crash in hv_pci_restore_msi_msg() during hibernation Greg Kroah-Hartman
2023-09-11 13:49 ` [PATCH 6.1 553/600] PCI/PM: Only read PCI_PM_CTRL register when available Greg Kroah-Hartman
2023-09-11 13:49 ` [PATCH 6.1 554/600] ntb: Drop packets when qp link is down Greg Kroah-Hartman
2023-09-11 13:49 ` [PATCH 6.1 555/600] ntb: Clean up tx tail index on link down Greg Kroah-Hartman
2023-09-11 13:49 ` [PATCH 6.1 556/600] ntb: Fix calculation ntb_transport_tx_free_entry() Greg Kroah-Hartman
2023-09-11 13:49 ` [PATCH 6.1 557/600] Revert "PCI: Mark NVIDIA T4 GPUs to avoid bus reset" Greg Kroah-Hartman
2023-09-11 13:49 ` [PATCH 6.1 558/600] block: dont add or resize partition on the disk with GENHD_FL_NO_PART Greg Kroah-Hartman
2023-09-11 13:49 ` [PATCH 6.1 559/600] procfs: block chmod on /proc/thread-self/comm Greg Kroah-Hartman
2023-09-11 13:49 ` [PATCH 6.1 560/600] parisc: Fix /proc/cpuinfo output for lscpu Greg Kroah-Hartman
2023-09-11 13:49 ` [PATCH 6.1 561/600] drm/amd/display: Add smu write msg id fail retry process Greg Kroah-Hartman
2023-09-11 13:49 ` [PATCH 6.1 562/600] bpf: Fix issue in verifying allow_ptr_leaks Greg Kroah-Hartman
2023-09-14 8:51 ` Luis Gerhorst
2023-09-16 11:35 ` Greg KH
2023-09-19 6:26 ` Daniel Borkmann
2023-09-19 8:32 ` Greg KH
2023-09-19 8:39 ` Alexei Starovoitov
2023-09-19 9:26 ` Greg KH
2023-09-19 10:15 ` Daniel Borkmann
2023-09-11 13:49 ` [PATCH 6.1 563/600] dlm: fix plock lookup when using multiple lockspaces Greg Kroah-Hartman
2023-09-11 13:49 ` [PATCH 6.1 564/600] dccp: Fix out of bounds access in DCCP error handler Greg Kroah-Hartman
2023-09-11 13:49 ` [PATCH 6.1 565/600] x86/sev: Make enc_dec_hypercall() accept a size instead of npages Greg Kroah-Hartman
2023-09-11 13:49 ` [PATCH 6.1 566/600] r8169: fix ASPM-related issues on a number of systems with NIC version from RTL8168h Greg Kroah-Hartman
2023-09-11 13:50 ` [PATCH 6.1 567/600] X.509: if signature is unsupported skip validation Greg Kroah-Hartman
2023-09-11 13:50 ` [PATCH 6.1 568/600] net: handle ARPHRD_PPP in dev_is_mac_header_xmit() Greg Kroah-Hartman
2023-09-11 13:50 ` [PATCH 6.1 569/600] fsverity: skip PKCS#7 parser when keyring is empty Greg Kroah-Hartman
2023-09-11 13:50 ` [PATCH 6.1 570/600] x86/MCE: Always save CS register on AMD Zen IF Poison errors Greg Kroah-Hartman
2023-09-11 13:50 ` [PATCH 6.1 571/600] platform/chrome: chromeos_acpi: print hex string for ACPI_TYPE_BUFFER Greg Kroah-Hartman
2023-09-11 13:50 ` [PATCH 6.1 572/600] mmc: renesas_sdhi: register irqs before registering controller Greg Kroah-Hartman
2023-09-11 13:50 ` [PATCH 6.1 573/600] pstore/ram: Check start of empty przs during init Greg Kroah-Hartman
2023-09-11 13:50 ` [PATCH 6.1 574/600] arm64: sdei: abort running SDEI handlers during crash Greg Kroah-Hartman
2023-09-11 13:50 ` [PATCH 6.1 575/600] s390/dcssblk: fix kernel crash with list_add corruption Greg Kroah-Hartman
2023-09-11 13:50 ` [PATCH 6.1 576/600] s390/ipl: add missing secure/has_secure file to ipl type unknown Greg Kroah-Hartman
2023-09-11 13:50 ` [PATCH 6.1 577/600] s390/dasd: fix string length handling Greg Kroah-Hartman
2023-09-11 13:50 ` [PATCH 6.1 578/600] crypto: stm32 - fix loop iterating through scatterlist for DMA Greg Kroah-Hartman
2023-09-11 13:50 ` [PATCH 6.1 579/600] cpufreq: brcmstb-avs-cpufreq: Fix -Warray-bounds bug Greg Kroah-Hartman
2023-09-11 13:50 ` [PATCH 6.1 580/600] of: property: fw_devlink: Add a devlink for panel followers Greg Kroah-Hartman
2023-09-11 13:50 ` [PATCH 6.1 581/600] usb: typec: tcpm: set initial svdm version based on pd revision Greg Kroah-Hartman
2023-09-11 13:50 ` [PATCH 6.1 582/600] usb: typec: bus: verify partner exists in typec_altmode_attention Greg Kroah-Hartman
2023-09-11 13:50 ` [PATCH 6.1 583/600] USB: core: Unite old scheme and new scheme descriptor reads Greg Kroah-Hartman
2023-09-11 13:50 ` [PATCH 6.1 584/600] USB: core: Change usb_get_device_descriptor() API Greg Kroah-Hartman
2023-09-11 13:50 ` [PATCH 6.1 585/600] USB: core: Fix race by not overwriting udev->descriptor in hub_port_init() Greg Kroah-Hartman
2023-09-11 13:50 ` [PATCH 6.1 586/600] USB: core: Fix oversight in SuperSpeed initialization Greg Kroah-Hartman
2023-09-11 13:50 ` [PATCH 6.1 587/600] x86/sgx: Break up long non-preemptible delays in sgx_vepc_release() Greg Kroah-Hartman
2023-09-11 13:50 ` [PATCH 6.1 588/600] perf/x86/uncore: Correct the number of CHAs on EMR Greg Kroah-Hartman
2023-09-11 13:50 ` [PATCH 6.1 589/600] serial: sc16is7xx: remove obsolete out_thread label Greg Kroah-Hartman
2023-09-11 13:50 ` [PATCH 6.1 590/600] serial: sc16is7xx: fix regression with GPIO configuration Greg Kroah-Hartman
2023-09-11 13:50 ` [PATCH 6.1 591/600] net: remove duplicate INDIRECT_CALLABLE_DECLARE of udp[6]_ehashfn Greg Kroah-Hartman
2023-09-11 13:50 ` [PATCH 6.1 592/600] tracing: Zero the pipe cpumask on alloc to avoid spurious -EBUSY Greg Kroah-Hartman
2023-09-11 13:50 ` [PATCH 6.1 593/600] Revert "drm/amd/display: Do not set drr on pipe commit" Greg Kroah-Hartman
2023-09-11 13:50 ` [PATCH 6.1 594/600] md: Free resources in __md_stop Greg Kroah-Hartman
2023-09-11 13:50 ` [PATCH 6.1 595/600] NFSv4.2: Fix a potential double free with READ_PLUS Greg Kroah-Hartman
2023-09-11 13:50 ` [PATCH 6.1 596/600] NFSv4.2: Rework scratch handling for READ_PLUS (again) Greg Kroah-Hartman
2023-09-11 13:50 ` [PATCH 6.1 597/600] md: fix regression for null-ptr-deference in __md_stop() Greg Kroah-Hartman
2023-09-11 13:50 ` [PATCH 6.1 598/600] clk: Mark a fwnode as initialized when using CLK_OF_DECLARE() macro Greg Kroah-Hartman
2023-09-11 13:50 ` [PATCH 6.1 599/600] treewide: Fix probing of devices in DT overlays Greg Kroah-Hartman
2023-09-11 13:50 ` [PATCH 6.1 600/600] clk: Avoid invalid function names in CLK_OF_DECLARE() Greg Kroah-Hartman
2023-09-11 20:13 ` [PATCH 6.1 000/600] 6.1.53-rc1 review Shuah Khan
2023-09-11 20:58 ` Daniel Díaz
2023-09-12 2:25 ` Daniel Díaz
2023-09-12 8:49 ` Naresh Kamboju
2023-09-12 9:03 ` Greg Kroah-Hartman
2023-09-12 10:32 ` Greg Kroah-Hartman
2023-09-12 11:56 ` Naresh Kamboju
2023-09-12 12:01 ` Greg Kroah-Hartman
2023-09-13 13:55 ` Naresh Kamboju
2023-09-12 5:50 ` Bagas Sanjaya
2023-09-12 9:00 ` Sudip Mukherjee (Codethink)
2023-09-12 9:03 ` Naresh Kamboju
2023-09-12 10:27 ` Takeshi Ogasawara
2023-09-12 12:37 ` Conor Dooley
2023-09-12 15:10 ` Jon Hunter
2023-09-12 17:35 ` Florian Fainelli
2023-09-12 18:35 ` Guenter Roeck
2023-09-13 2:40 ` 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=20230911134639.144924814@linuxfoundation.org \
--to=gregkh@linuxfoundation.org \
--cc=briannorris@chromium.org \
--cc=dmantipov@yandex.ru \
--cc=kvalo@kernel.org \
--cc=patches@lists.linux.dev \
--cc=pinkperfect2021@gmail.com \
--cc=sashal@kernel.org \
--cc=stable@vger.kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).