stable.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: stable@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	patches@lists.linux.dev, Bjorn Helgaas <bhelgaas@google.com>,
	Logan Gunthorpe <logang@deltatee.com>,
	Sasha Levin <sashal@kernel.org>
Subject: [PATCH 5.15 297/567] PCI: switchtec: Return -EFAULT for copy_to_user() errors
Date: Tue,  7 Mar 2023 18:00:33 +0100	[thread overview]
Message-ID: <20230307165918.737814200@linuxfoundation.org> (raw)
In-Reply-To: <20230307165905.838066027@linuxfoundation.org>

From: Bjorn Helgaas <bhelgaas@google.com>

[ Upstream commit ddc10938e08cd7aac63d8385f7305f7889df5179 ]

switchtec_dev_read() didn't handle copy_to_user() errors correctly: it
assigned "rc = -EFAULT", but actually returned either "size", -ENXIO, or
-EBADMSG instead.

Update the failure cases to unlock mrpc_mutex and return -EFAULT directly.

Link: https://lore.kernel.org/r/20221216162126.207863-3-helgaas@kernel.org
Fixes: 080b47def5e5 ("MicroSemi Switchtec management interface driver")
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Reviewed-by: Logan Gunthorpe <logang@deltatee.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 drivers/pci/switch/switchtec.c | 9 ++++-----
 1 file changed, 4 insertions(+), 5 deletions(-)

diff --git a/drivers/pci/switch/switchtec.c b/drivers/pci/switch/switchtec.c
index 0b301f8be9ed5..d021ef3fb165b 100644
--- a/drivers/pci/switch/switchtec.c
+++ b/drivers/pci/switch/switchtec.c
@@ -552,21 +552,20 @@ static ssize_t switchtec_dev_read(struct file *filp, char __user *data,
 	rc = copy_to_user(data, &stuser->return_code,
 			  sizeof(stuser->return_code));
 	if (rc) {
-		rc = -EFAULT;
-		goto out;
+		mutex_unlock(&stdev->mrpc_mutex);
+		return -EFAULT;
 	}
 
 	data += sizeof(stuser->return_code);
 	rc = copy_to_user(data, &stuser->data,
 			  size - sizeof(stuser->return_code));
 	if (rc) {
-		rc = -EFAULT;
-		goto out;
+		mutex_unlock(&stdev->mrpc_mutex);
+		return -EFAULT;
 	}
 
 	stuser_set_state(stuser, MRPC_IDLE);
 
-out:
 	mutex_unlock(&stdev->mrpc_mutex);
 
 	if (stuser->status == SWITCHTEC_MRPC_STATUS_DONE)
-- 
2.39.2




  parent reply	other threads:[~2023-03-07 19:17 UTC|newest]

Thread overview: 578+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-03-07 16:55 [PATCH 5.15 000/567] 5.15.99-rc1 review Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 5.15 001/567] HID: asus: use spinlock to protect concurrent accesses Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 5.15 002/567] HID: asus: use spinlock to safely schedule workers Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 5.15 003/567] powerpc/mm: Rearrange if-else block to avoid clang warning Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 5.15 004/567] ARM: OMAP2+: Fix memory leak in realtime_counter_init() Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 5.15 005/567] arm64: dts: qcom: qcs404: use symbol names for PCIe resets Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 5.15 006/567] arm64: dts: qcom: msm8996-tone: Fix USB taking 6 minutes to wake up Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 5.15 007/567] arm64: dts: qcom: sm8150-kumano: Panel framebuffer is 2.5k instead of 4k Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 5.15 008/567] arm64: dts: qcom: sm6125: Reorder HSUSB PHY clocks to match bindings Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 5.15 009/567] arm64: dts: imx8m: Align SoC unique ID node unit address Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 5.15 010/567] ARM: zynq: Fix refcount leak in zynq_early_slcr_init Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 5.15 011/567] arm64: dts: mediatek: mt8183: Fix systimer 13 MHz clock description Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 5.15 012/567] arm64: dts: qcom: sdm845-db845c: fix audio codec interrupt pin name Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 5.15 013/567] arm64: dts: qcom: sc7180: correct SPMI bus address cells Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 5.15 014/567] arm64: dts: qcom: sc7280: " Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 5.15 015/567] arm64: dts: meson-gx: Fix Ethernet MAC address unit name Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 5.15 016/567] arm64: dts: meson-g12a: Fix internal Ethernet PHY " Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 5.15 017/567] arm64: dts: meson-gx: Fix the SCPI DVFS node name and unit address Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 5.15 018/567] arm64: dts: msm8992-bullhead: add memory hole region Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 5.15 019/567] arm64: dts: qcom: msm8992-bullhead: Fix cont_splash_mem size Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 5.15 020/567] arm64: dts: qcom: msm8992-bullhead: Disable dfps_data_mem Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 5.15 021/567] arm64: dts: qcom: ipq8074: correct USB3 QMP PHY-s clock output names Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 5.15 022/567] arm64: dts: qcom: Fix IPQ8074 PCIe PHY nodes Greg Kroah-Hartman
2023-03-07 16:55 ` [PATCH 5.15 023/567] arm64: dts: qcom: ipq8074: fix PCIe PHY serdes size Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 5.15 024/567] arm64: dts: qcom: ipq8074: fix Gen3 PCIe QMP PHY Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 5.15 025/567] arm64: dts: qcom: ipq8074: correct Gen2 PCIe ranges Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 5.15 026/567] arm64: dts: qcom: ipq8074: fix Gen3 PCIe node Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 5.15 027/567] arm64: dts: qcom: ipq8074: correct PCIe QMP PHY output clock names Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 5.15 028/567] arm64: dts: meson: remove CPU opps below 1GHz for G12A boards Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 5.15 029/567] ARM: OMAP1: call platform_device_put() in error case in omap1_dm_timer_init() Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 5.15 030/567] ARM: bcm2835_defconfig: Enable the framebuffer Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 5.15 031/567] ARM: s3c: fix s3c64xx_set_timer_source prototype Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 5.15 032/567] arm64: dts: ti: k3-j7200: Fix wakeup pinmux range Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 5.15 033/567] ARM: dts: exynos: correct wr-active property in Exynos3250 Rinato Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 5.15 034/567] ARM: imx: Call ida_simple_remove() for ida_simple_get Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 5.15 035/567] arm64: dts: amlogic: meson-gx: fix SCPI clock dvfs node name Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 5.15 036/567] arm64: dts: amlogic: meson-axg: " Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 5.15 037/567] arm64: dts: amlogic: meson-gx: add missing SCPI sensors compatible Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 5.15 038/567] arm64: dts: amlogic: meson-gxl-s905d-sml5442tw: drop invalid clock-names property Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 5.15 039/567] arm64: dts: amlogic: meson-gx: add missing unit address to rng node name Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 5.15 040/567] arm64: dts: amlogic: meson-gxl: add missing unit address to eth-phy-mux " Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 5.15 041/567] arm64: dts: amlogic: meson-gx-libretech-pc: fix update button name Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 5.15 042/567] arm64: dts: amlogic: meson-sm1-bananapi-m5: fix adc keys node names Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 5.15 043/567] arm64: dts: amlogic: meson-gxl-s905d-phicomm-n1: fix led node name Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 5.15 044/567] arm64: dts: amlogic: meson-gxbb-kii-pro: " Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 5.15 045/567] arm64: dts: amlogic: meson-sm1-odroid-hc4: fix active fan thermal trip Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 5.15 046/567] locking/rwsem: Optimize down_read_trylock() under highly contended case Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 5.15 047/567] locking/rwsem: Disable preemption in all down_read*() and up_read() code paths Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 5.15 048/567] arm64: dts: renesas: beacon-renesom: Fix gpio expander reference Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 5.15 049/567] arm64: dts: meson: bananapi-m5: switch VDDIO_C pin to OPEN_DRAIN Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 5.15 050/567] ARM: dts: sun8i: nanopi-duo2: Fix regulator GPIO reference Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 5.15 051/567] ARM: dts: imx7s: correct iomuxc gpr mux controller cells Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 5.15 052/567] arm64: dts: mt8192: Fix CPU map for single-cluster SoC Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 5.15 053/567] arm64: dts: mediatek: mt7622: Add missing pwm-cells to pwm node Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 5.15 054/567] blk-mq: avoid sleep in blk_mq_alloc_request_hctx Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 5.15 055/567] blk-mq: remove stale comment for blk_mq_sched_mark_restart_hctx Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 5.15 056/567] blk-mq: correct stale comment of .get_budget Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 5.15 057/567] arm64: dts: qcom: msm8992-lg-bullhead: Correct memory overlaps with the SMEM and MPSS memory regions Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 5.15 058/567] s390/dasd: Fix potential memleak in dasd_eckd_init() Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 5.15 059/567] sched/deadline,rt: Remove unused parameter from pick_next_[rt|dl]_entity() Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 5.15 060/567] sched/rt: pick_next_rt_entity(): check list_entry Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 5.15 061/567] x86/perf/zhaoxin: Add stepping check for ZXC Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 5.15 062/567] KEYS: asymmetric: Fix ECDSA use via keyctl uapi Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 5.15 063/567] arm64: dts: qcom: pmk8350: Specify PBS register for PON Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 5.15 064/567] arm64: dts: qcom: pmk8350: Use the correct PON compatible Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 5.15 065/567] block: bio-integrity: Copy flags when bio_integrity_payload is cloned Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 5.15 066/567] wifi: rsi: Fix memory leak in rsi_coex_attach() Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 5.15 067/567] wifi: rtlwifi: rtl8821ae: dont call kfree_skb() under spin_lock_irqsave() Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 5.15 068/567] wifi: rtlwifi: rtl8188ee: " Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 5.15 069/567] wifi: rtlwifi: rtl8723be: " Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 5.15 070/567] wifi: iwlegacy: common: dont call dev_kfree_skb() " Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 5.15 071/567] wifi: libertas: fix memory leak in lbs_init_adapter() Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 5.15 072/567] wifi: rtl8xxxu: dont call dev_kfree_skb() under spin_lock_irqsave() Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 5.15 073/567] wifi: rtlwifi: Fix global-out-of-bounds bug in _rtl8812ae_phy_set_txpower_limit() Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 5.15 074/567] libbpf: Fix btf__align_of() by taking into account field offsets Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 5.15 075/567] wifi: ipw2x00: dont call dev_kfree_skb() under spin_lock_irqsave() Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 5.15 076/567] wifi: ipw2200: fix memory leak in ipw_wdev_init() Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 5.15 077/567] wifi: wilc1000: fix potential memory leak in wilc_mac_xmit() Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 5.15 078/567] wifi: brcmfmac: fix potential memory leak in brcmf_netdev_start_xmit() Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 5.15 079/567] wifi: brcmfmac: unmap dma buffer in brcmf_msgbuf_alloc_pktid() Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 5.15 080/567] wifi: libertas_tf: dont call kfree_skb() under spin_lock_irqsave() Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 5.15 081/567] wifi: libertas: if_usb: " Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 5.15 082/567] wifi: libertas: main: " Greg Kroah-Hartman
2023-03-07 16:56 ` [PATCH 5.15 083/567] wifi: libertas: cmdresp: " Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 5.15 084/567] wifi: wl3501_cs: " Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 5.15 085/567] crypto: x86/ghash - fix unaligned access in ghash_setkey() Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 5.15 086/567] ACPICA: Drop port I/O validation for some regions Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 5.15 087/567] genirq: Fix the return type of kstat_cpu_irqs_sum() Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 5.15 088/567] rcu-tasks: Improve comments explaining tasks_rcu_exit_srcu purpose Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 5.15 089/567] rcu-tasks: Remove preemption disablement around srcu_read_[un]lock() calls Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 5.15 090/567] rcu-tasks: Fix synchronize_rcu_tasks() VS zap_pid_ns_processes() Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 5.15 091/567] lib/mpi: Fix buffer overrun when SG is too long Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 5.15 092/567] crypto: ccp - Avoid page allocation failure warning for SEV_GET_ID2 Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 5.15 093/567] ACPICA: nsrepair: handle cases without a return value correctly Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 5.15 094/567] thermal/drivers/tsens: Drop msm8976-specific defines Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 5.15 095/567] thermal/drivers/tsens: Add compat string for the qcom,msm8960 Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 5.15 096/567] thermal/drivers/tsens: Sort out msm8976 vs msm8956 data Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 5.15 097/567] thermal/drivers/tsens: fix slope values for msm8939 Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 5.15 098/567] thermal/drivers/tsens: limit num_sensors to 9 " Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 5.15 099/567] wifi: rtl8xxxu: Fix memory leaks with RTL8723BU, RTL8192EU Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 5.15 100/567] wifi: orinoco: check return value of hermes_write_wordrec() Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 5.15 101/567] wifi: ath9k: htc_hst: free skb in ath9k_htc_rx_msg() if there is no callback function Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 5.15 102/567] ath9k: hif_usb: simplify if-if to if-else Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 5.15 103/567] ath9k: htc: clean up statistics macros Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 5.15 104/567] wifi: ath9k: hif_usb: clean up skbs if ath9k_hif_usb_rx_stream() fails Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 5.15 105/567] wifi: ath9k: Fix potential stack-out-of-bounds write in ath9k_wmi_rsp_callback() Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 5.15 106/567] wifi: ath11k: Fix memory leak in ath11k_peer_rx_frag_setup Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 5.15 107/567] wifi: cfg80211: Fix extended KCK key length check in nl80211_set_rekey_data() Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 5.15 108/567] ACPI: battery: Fix missing NUL-termination with large strings Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 5.15 109/567] crypto: ccp - Failure on re-initialization due to duplicate sysfs filename Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 5.15 110/567] crypto: essiv - Handle EBUSY correctly Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 5.15 111/567] crypto: seqiv " Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 5.15 112/567] powercap: fix possible name leak in powercap_register_zone() Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 5.15 113/567] x86: Mark stop_this_cpu() __noreturn Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 5.15 114/567] x86/microcode: Rip out the OLD_INTERFACE Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 5.15 115/567] x86/microcode: Default-disable late loading Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 5.15 116/567] x86/microcode: Print previous version of microcode after reload Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 5.15 117/567] x86/microcode: Add a parameter to microcode_check() to store CPU capabilities Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 5.15 118/567] x86/microcode: Check CPU capabilities after late microcode update correctly Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 5.15 119/567] x86/microcode: Adjust late loading result reporting message Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 5.15 120/567] crypto: xts - Handle EBUSY correctly Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 5.15 121/567] leds: led-class: Add missing put_device() to led_put() Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 5.15 122/567] crypto: ccp - Refactor out sev_fw_alloc() Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 5.15 123/567] crypto: ccp - Flush the SEV-ES TMR memory before giving it to firmware Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 5.15 124/567] bpftool: profile online CPUs instead of possible Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 5.15 125/567] mt76: mt7915: fix polling firmware-own status Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 5.15 126/567] net/mlx5: Enhance debug print in page allocation failure Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 5.15 127/567] irqchip: Fix refcount leak in platform_irqchip_probe Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 5.15 128/567] irqchip/alpine-msi: Fix refcount leak in alpine_msix_init_domains Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 5.15 129/567] irqchip/irq-mvebu-gicp: Fix refcount leak in mvebu_gicp_probe Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 5.15 130/567] irqchip/ti-sci: Fix refcount leak in ti_sci_intr_irq_domain_probe Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 5.15 131/567] s390/mem_detect: fix detect_memory() error handling Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 5.15 132/567] s390/vmem: fix empty page tables cleanup under KASAN Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 5.15 133/567] net: add sock_init_data_uid() Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 5.15 134/567] tun: tun_chr_open(): correctly initialize socket uid Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 5.15 135/567] tap: tap_open(): " Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 5.15 136/567] OPP: fix error checking in opp_migrate_dentry() Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 5.15 137/567] Bluetooth: L2CAP: Fix potential user-after-free Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 5.15 138/567] Bluetooth: hci_qca: get wakeup status from serdev device handle Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 5.15 139/567] s390/ap: fix status returned by ap_aqic() Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 5.15 140/567] s390/ap: fix status returned by ap_qact() Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 5.15 141/567] libbpf: Fix alen calculation in libbpf_nla_dump_errormsg() Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 5.15 142/567] rds: rds_rm_zerocopy_callback() correct order for list_add_tail() Greg Kroah-Hartman
2023-03-07 16:57 ` [PATCH 5.15 143/567] crypto: rsa-pkcs1pad - Use akcipher_request_complete Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 5.15 144/567] m68k: /proc/hardware should depend on PROC_FS Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 5.15 145/567] RISC-V: time: initialize hrtimer based broadcast clock event device Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 5.15 146/567] wifi: iwl3945: Add missing check for create_singlethread_workqueue Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 5.15 147/567] wifi: iwl4965: Add missing check for create_singlethread_workqueue() Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 5.15 148/567] wifi: mwifiex: fix loop iterator in mwifiex_update_ampdu_txwinsize() Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 5.15 149/567] selftests/bpf: Fix out-of-srctree build Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 5.15 150/567] ACPI: resource: Add IRQ overrides for MAINGEAR Vector Pro 2 models Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 5.15 151/567] ACPI: resource: Do IRQ override on all TongFang GMxRGxx Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 5.15 152/567] crypto: crypto4xx - Call dma_unmap_page when done Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 5.15 153/567] wifi: mac80211: make rate u32 in sta_set_rate_info_rx() Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 5.15 154/567] thermal/drivers/hisi: Drop second sensor hi3660 Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 5.15 155/567] can: esd_usb: Move mislocated storage of SJA1000_ECC_SEG bits in case of a bus error Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 5.15 156/567] bpf: Fix global subprog context argument resolution logic Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 5.15 157/567] irqchip/irq-brcmstb-l2: Set IRQ_LEVEL for level triggered interrupts Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 5.15 158/567] irqchip/irq-bcm7120-l2: " Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 5.15 159/567] selftests/net: Interpret UDP_GRO cmsg data as an int value Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 5.15 160/567] l2tp: Avoid possible recursive deadlock in l2tp_tunnel_register() Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 5.15 161/567] net: bcmgenet: fix MoCA LED control Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 5.15 162/567] selftest: fib_tests: Always cleanup before exit Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 5.15 163/567] sefltests: netdevsim: wait for devlink instance after netns removal Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 5.15 164/567] drm: Fix potential null-ptr-deref due to drmm_mode_config_init() Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 5.15 165/567] drm/fourcc: Add missing big-endian XRGB1555 and RGB565 formats Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 5.15 166/567] drm/bridge: ti-sn65dsi83: Fix delay after reset deassert to match spec Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 5.15 167/567] drm: mxsfb: DRM_MXSFB should depend on ARCH_MXS || ARCH_MXC Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 5.15 168/567] drm/bridge: megachips: Fix error handling in i2c_register_driver() Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 5.15 169/567] drm/vkms: Fix memory leak in vkms_init() Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 5.15 170/567] drm/vkms: Fix null-ptr-deref in vkms_release() Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 5.15 171/567] drm/vc4: dpi: Add option for inverting pixel clock and output enable Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 5.15 172/567] drm/vc4: dpi: Fix format mapping for RGB565 Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 5.15 173/567] drm: tidss: Fix pixel format definition Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 5.15 174/567] gpu: ipu-v3: common: Add of_node_put() for reference returned by of_graph_get_port_by_id() Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 5.15 175/567] hwmon: (ftsteutates) Fix scaling of measurements Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 5.15 176/567] drm/msm/hdmi: Add missing check for alloc_ordered_workqueue Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 5.15 177/567] pinctrl: qcom: pinctrl-msm8976: Correct function names for wcss pins Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 5.15 178/567] pinctrl: stm32: Fix refcount leak in stm32_pctrl_get_irq_domain Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 5.15 179/567] pinctrl: rockchip: Fix refcount leak in rockchip_pinctrl_parse_groups Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 5.15 180/567] drm/vc4: hvs: Set AXI panic modes Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 5.15 181/567] drm/vc4: hvs: Fix colour order for xRGB1555 on HVS5 Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 5.15 182/567] drm/vc4: hdmi: Correct interlaced timings again Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 5.15 183/567] drm/msm: clean event_thread->worker in case of an error Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 5.15 184/567] scsi: qla2xxx: edif: Fix I/O timeout due to over-subscription Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 5.15 185/567] scsi: qla2xxx: Fix exchange oversubscription Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 5.15 186/567] scsi: qla2xxx: Fix exchange oversubscription for management commands Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 5.15 187/567] ASoC: fsl_sai: Update to modern clocking terminology Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 5.15 188/567] ASoC: fsl_sai: initialize is_dsp_mode flag Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 5.15 189/567] drm/msm/adreno: Fix null ptr access in adreno_gpu_cleanup() Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 5.15 190/567] ALSA: hda/ca0132: minor fix for allocation size Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 5.15 191/567] drm/msm/gem: Add check for kmalloc Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 5.15 192/567] drm/msm/dpu: Disallow unallocated resources to be returned Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 5.15 193/567] drm/bridge: lt9611: fix sleep mode setup Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 5.15 194/567] drm/bridge: lt9611: fix HPD reenablement Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 5.15 195/567] drm/bridge: lt9611: fix polarity programming Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 5.15 196/567] drm/bridge: lt9611: fix programming of video modes Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 5.15 197/567] drm/bridge: lt9611: fix clock calculation Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 5.15 198/567] drm/bridge: lt9611: pass a pointer to the of node Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 5.15 199/567] drm/mipi-dsi: Fix byte order of 16-bit DCS set/get brightness Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 5.15 200/567] drm: exynos: dsi: Fix MIPI_DSI*_NO_* mode flags Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 5.15 201/567] drm/msm/dsi: Allow 2 CTRLs on v2.5.0 Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 5.15 202/567] drm/msm: use strscpy instead of strncpy Greg Kroah-Hartman
2023-03-07 16:58 ` [PATCH 5.15 203/567] drm/msm/dpu: Add check for cstate Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 5.15 204/567] drm/msm/dpu: Add check for pstates Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 5.15 205/567] drm/msm/mdp5: Add check for kzalloc Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 5.15 206/567] pinctrl: bcm2835: Remove of_node_put() in bcm2835_of_gpio_ranges_fallback() Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 5.15 207/567] pinctrl: mediatek: fix coding style Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 5.15 208/567] pinctrl: mediatek: Initialize variable pullen and pullup to zero Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 5.15 209/567] pinctrl: mediatek: Initialize variable *buf " Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 5.15 210/567] gpu: host1x: Dont skip assigning syncpoints to channels Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 5.15 211/567] drm/tegra: firewall: Check for is_addr_reg existence in IMM check Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 5.15 212/567] drm/msm/dpu: set pdpu->is_rt_pipe early in dpu_plane_sspp_atomic_update() Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 5.15 213/567] drm/mediatek: dsi: Reduce the time of dsi from LP11 to sending cmd Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 5.15 214/567] drm/mediatek: Use NULL instead of 0 for NULL pointer Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 5.15 215/567] drm/mediatek: Drop unbalanced obj unref Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 5.15 216/567] drm/mediatek: mtk_drm_crtc: Add checks for devm_kcalloc Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 5.15 217/567] drm/mediatek: Clean dangling pointer on bind error path Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 5.15 218/567] ASoC: soc-compress.c: fixup private_data on snd_soc_new_compress() Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 5.15 219/567] gpio: vf610: connect GPIO label to dev name Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 5.15 220/567] spi: dw_bt1: fix MUX_MMIO dependencies Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 5.15 221/567] ASoC: mchp-spdifrx: fix controls which rely on rsr register Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 5.15 222/567] ASoC: mchp-spdifrx: fix return value in case completion times out Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 5.15 223/567] ASoC: mchp-spdifrx: fix controls that works with completion mechanism Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 5.15 224/567] ASoC: mchp-spdifrx: disable all interrupts in mchp_spdifrx_dai_remove() Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 5.15 225/567] ASoC: rsnd: fixup #endif position Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 5.15 226/567] ASoC: mchp-spdifrx: Fix uninitialized use of mr in mchp_spdifrx_hw_params() Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 5.15 227/567] ASoC: dt-bindings: meson: fix gx-card codec node regex Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 5.15 228/567] hwmon: (ltc2945) Handle error case in ltc2945_value_store Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 5.15 229/567] drm/amdgpu: fix enum odm_combine_mode mismatch Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 5.15 230/567] scsi: mpt3sas: Fix a memory leak Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 5.15 231/567] scsi: aic94xx: Add missing check for dma_map_single() Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 5.15 232/567] HID: multitouch: Add quirks for flipped axes Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 5.15 233/567] HID: retain initial quirks set up when creating HID devices Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 5.15 234/567] ASoC: codecs: Change bulk clock voting to optional voting in digital codecs Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 5.15 235/567] ASoC: codecs: rx-macro: move clk provider to managed variants Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 5.15 236/567] ASoC: codecs: tx-macro: " Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 5.15 237/567] ASoC: codecs: rx-macro: move to individual clks from bulk Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 5.15 238/567] ASoC: codecs: tx-macro: " Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 5.15 239/567] ASoC: codecs: lpass: fix incorrect mclk rate Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 5.15 240/567] spi: bcm63xx-hsspi: Endianness fix for ARM based SoC Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 5.15 241/567] spi: bcm63xx-hsspi: Fix multi-bit mode setting Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 5.15 242/567] hwmon: (mlxreg-fan) Return zero speed for broken fan Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 5.15 243/567] ASoC: tlv320adcx140: fix ti,gpio-config DT property init Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 5.15 244/567] dm: remove flush_scheduled_work() during local_exit() Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 5.15 245/567] NFSv4: keep state manager thread active if swap is enabled Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 5.15 246/567] nfs4trace: fix state manager flag printing Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 5.15 247/567] NFS: fix disabling of swap Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 5.15 248/567] spi: synquacer: Fix timeout handling in synquacer_spi_transfer_one() Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 5.15 249/567] ASoC: soc-dapm.h: fixup warning struct snd_pcm_substream not declared Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 5.15 250/567] HID: bigben: use spinlock to protect concurrent accesses Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 5.15 251/567] HID: bigben_worker() remove unneeded check on report_field Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 5.15 252/567] HID: bigben: use spinlock to safely schedule workers Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 5.15 253/567] hid: bigben_probe(): validate report count Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 5.15 254/567] drm/shmem-helper: Fix locking for drm_gem_shmem_get_pages_sgt() Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 5.15 255/567] nfsd: fix race to check ls_layouts Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 5.15 256/567] cifs: Fix lost destroy smbd connection when MR allocate failed Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 5.15 257/567] cifs: Fix warning and UAF when destroy the MR list Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 5.15 258/567] gfs2: jdata writepage fix Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 5.15 259/567] perf llvm: Fix inadvertent file creation Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 5.15 260/567] leds: led-core: Fix refcount leak in of_led_get() Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 5.15 261/567] perf inject: Use perf_data__read() for auxtrace Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 5.15 262/567] perf intel-pt: Add documentation for Event Trace and TNT disable Greg Kroah-Hartman
2023-03-07 16:59 ` [PATCH 5.15 263/567] perf intel-pt: Add link to the perf wikis Intel PT page Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 5.15 264/567] perf intel-pt: Add support for emulated ptwrite Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 5.15 265/567] perf intel-pt: Do not try to queue auxtrace data on pipe Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 5.15 266/567] perf tools: Fix auto-complete on aarch64 Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 5.15 267/567] sparc: allow PM configs for sparc32 COMPILE_TEST Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 5.15 268/567] selftests/ftrace: Fix bash specific "==" operator Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 5.15 269/567] printf: fix errname.c list Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 5.15 270/567] objtool: add UACCESS exceptions for __tsan_volatile_read/write Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 5.15 271/567] mfd: cs5535: Dont build on UML Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 5.15 272/567] mfd: pcf50633-adc: Fix potential memleak in pcf50633_adc_async_read() Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 5.15 273/567] dmaengine: idxd: Set traffic class values in GRPCFG on DSA 2.0 Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 5.15 274/567] dmaengine: HISI_DMA should depend on ARCH_HISI Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 5.15 275/567] iio: light: tsl2563: Do not hardcode interrupt trigger type Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 5.15 276/567] usb: gadget: fusb300_udc: free irq on the error path in fusb300_probe() Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 5.15 277/567] i2c: designware: fix i2c_dw_clk_rate() return size to be u32 Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 5.15 278/567] soundwire: cadence: Dont overflow the command FIFOs Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 5.15 279/567] driver core: fix potential null-ptr-deref in device_add() Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 5.15 280/567] kobject: modify kobject_get_path() to take a const * Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 5.15 281/567] kobject: Fix slab-out-of-bounds in fill_kobj_path() Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 5.15 282/567] alpha/boot/tools/objstrip: fix the check for ELF header Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 5.15 283/567] media: uvcvideo: Do not check for V4L2_CTRL_WHICH_DEF_VAL Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 5.15 284/567] media: uvcvideo: Remove s_ctrl and g_ctrl Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 5.15 285/567] media: uvcvideo: refactor __uvc_ctrl_add_mapping Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 5.15 286/567] media: uvcvideo: Add support for V4L2_CTRL_TYPE_CTRL_CLASS Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 5.15 287/567] media: uvcvideo: Use control names from framework Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 5.15 288/567] media: uvcvideo: Check controls flags before accessing them Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 5.15 289/567] media: uvcvideo: Check for INACTIVE in uvc_ctrl_is_accessible() Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 5.15 290/567] coresight: etm4x: Fix accesses to TRCSEQRSTEVR and TRCSEQSTR Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 5.15 291/567] coresight: cti: Prevent negative values of enable count Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 5.15 292/567] coresight: cti: Add PM runtime call in enable_store Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 5.15 293/567] ACPI: resource: Add helper function acpi_dev_get_memory_resources() Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 5.15 294/567] usb: typec: intel_pmc_mux: Use the helper acpi_dev_get_memory_resources() Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 5.15 295/567] usb: typec: intel_pmc_mux: Dont leak the ACPI device reference count Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 5.15 296/567] PCI/IOV: Enlarge virtfn sysfs name buffer Greg Kroah-Hartman
2023-03-07 17:00 ` Greg Kroah-Hartman [this message]
2023-03-07 17:00 ` [PATCH 5.15 298/567] tty: serial: fsl_lpuart: disable Rx/Tx DMA in lpuart32_shutdown() Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 5.15 299/567] tty: serial: fsl_lpuart: clear LPUART Status Register " Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 5.15 300/567] tty: serial: qcom-geni-serial: stop operations in progress at shutdown Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 5.15 301/567] serial: tegra: Add missing clk_disable_unprepare() in tegra_uart_hw_init() Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 5.15 302/567] Revert "char: pcmcia: cm4000_cs: Replace mdelay with usleep_range in set_protocol" Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 5.15 303/567] eeprom: idt_89hpesx: Fix error handling in idt_init() Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 5.15 304/567] applicom: Fix PCI device refcount leak in applicom_init() Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 5.15 305/567] firmware: stratix10-svc: add missing gen_pool_destroy() in stratix10_svc_drv_probe() Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 5.15 306/567] VMCI: check context->notify_page after call to get_user_pages_fast() to avoid GPF Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 5.15 307/567] misc/mei/hdcp: Use correct macros to initialize uuid_le Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 5.15 308/567] driver core: fix resource leak in device_add() Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 5.15 309/567] drivers: base: transport_class: fix possible memory leak Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 5.15 310/567] drivers: base: transport_class: fix resource leak when transport_add_device() fails Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 5.15 311/567] firmware: dmi-sysfs: Fix null-ptr-deref in dmi_sysfs_register_handle Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 5.15 312/567] fotg210-udc: Add missing completion handler Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 5.15 313/567] dmaengine: dw-edma: Fix missing src/dst address of interleaved xfers Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 5.15 314/567] usb: early: xhci-dbc: Fix a potential out-of-bound memory access Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 5.15 315/567] tty: serial: fsl_lpuart: Fix the wrong RXWATER setting for rx dma case Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 5.15 316/567] RDMA/cxgb4: add null-ptr-check after ip_dev_find() Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 5.15 317/567] usb: musb: mediatek: dont unregister something that wasnt registered Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 5.15 318/567] usb: gadget: configfs: use to_config_usb_cfg() in os_desc_link() Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 5.15 319/567] usb: gadget: configfs: use to_usb_function_instance() in cfg (un)link func Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 5.15 320/567] usb: gadget: configfs: remove using list iterator after loop body as a ptr Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 5.15 321/567] usb: gadget: configfs: Restrict symlink creation is UDC already binded Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 5.15 322/567] iommu/vt-d: Set No Execute Enable bit in PASID table entry Greg Kroah-Hartman
2023-03-07 17:00 ` [PATCH 5.15 323/567] power: supply: remove faulty cooling logic Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 5.15 324/567] RDMA/cxgb4: Fix potential null-ptr-deref in pass_establish() Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 5.15 325/567] usb: max-3421: Fix setting of I/O pins Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 5.15 326/567] RDMA/irdma: Cap MSIX used to online CPUs + 1 Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 5.15 327/567] serial: fsl_lpuart: fix RS485 RTS polariy inverse issue Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 5.15 328/567] tty: serial: imx: Handle RS485 DE signal active high Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 5.15 329/567] tty: serial: imx: disable Ageing Timer interrupt request irq Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 5.15 330/567] driver core: fw_devlink: Add DL_FLAG_CYCLE support to device links Greg Kroah-Hartman
2023-03-07 19:09   ` Saravana Kannan
2023-03-08  7:13     ` Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 5.15 331/567] dmaengine: dw-edma: Fix readq_ch() return value truncation Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 5.15 332/567] phy: rockchip-typec: fix tcphy_get_mode error case Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 5.15 333/567] iw_cxgb4: Fix potential NULL dereference in c4iw_fill_res_cm_id_entry() Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 5.15 334/567] iommu: Fix error unwind in iommu_group_alloc() Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 5.15 335/567] dmaengine: sf-pdma: pdma_desc memory leak fix Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 5.15 336/567] dmaengine: dw-axi-dmac: Do not dereference NULL structure Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 5.15 337/567] iommu/vt-d: Fix error handling in sva enable/disable paths Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 5.15 338/567] iommu/vt-d: Remove duplicate identity domain flag Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 5.15 339/567] iommu/vt-d: Check FL and SL capability sanity in scalable mode Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 5.15 340/567] iommu/vt-d: Use second level for GPA->HPA translation Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 5.15 341/567] iommu/vt-d: Allow to use flush-queue when first level is default Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 5.15 342/567] IB/hfi1: Fix math bugs in hfi1_can_pin_pages() Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 5.15 343/567] IB/hfi1: Fix sdma.h tx->num_descs off-by-one errors Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 5.15 344/567] remoteproc: qcom_q6v5_mss: Use a carveout to authenticate modem headers Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 5.15 345/567] media: ti: cal: fix possible memory leak in cal_ctx_create() Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 5.15 346/567] media: platform: ti: Add missing check for devm_regulator_get Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 5.15 347/567] powerpc: Remove linker flag from KBUILD_AFLAGS Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 5.15 348/567] s390/vdso: remove -nostdlib compiler flag Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 5.15 349/567] s390/vdso: Drop -shared from KBUILD_CFLAGS_64 Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 5.15 350/567] builddeb: clean generated package content Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 5.15 351/567] media: max9286: Fix memleak in max9286_v4l2_register() Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 5.15 352/567] media: ov2740: Fix memleak in ov2740_init_controls() Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 5.15 353/567] media: ov5675: Fix memleak in ov5675_init_controls() Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 5.15 354/567] media: i2c: ov772x: Fix memleak in ov772x_probe() Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 5.15 355/567] media: i2c: imx219: Split common registers from mode tables Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 5.15 356/567] media: i2c: imx219: Fix binning for RAW8 capture Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 5.15 357/567] media: v4l2-jpeg: correct the skip count in jpeg_parse_app14_data Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 5.15 358/567] media: v4l2-jpeg: ignore the unknown APP14 marker Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 5.15 359/567] media: imx-jpeg: Apply clk_bulk api instead of operating specific clk Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 5.15 360/567] media: rc: Fix use-after-free bugs caused by ene_tx_irqsim() Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 5.15 361/567] media: i2c: ov7670: 0 instead of -EINVAL was returned Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 5.15 362/567] media: usb: siano: Fix use after free bugs caused by do_submit_urb Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 5.15 363/567] media: saa7134: Use video_unregister_device for radio_dev Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 5.15 364/567] rpmsg: glink: Avoid infinite loop on intent for missing channel Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 5.15 365/567] udf: Define EFSCORRUPTED error code Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 5.15 366/567] ARM: dts: exynos: Use Exynos5420 compatible for the MIPI video phy Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 5.15 367/567] blk-iocost: fix divide by 0 error in calc_lcoefs() Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 5.15 368/567] trace/blktrace: fix memory leak with using debugfs_lookup() Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 5.15 369/567] wifi: ath9k: Fix use-after-free in ath9k_hif_usb_disconnect() Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 5.15 370/567] wifi: brcmfmac: Fix potential stack-out-of-bounds in brcmf_c_preinit_dcmds() Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 5.15 371/567] rcu: Make RCU_LOCKDEP_WARN() avoid early lockdep checks Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 5.15 372/567] rcu: Suppress smp_processor_id() complaint in synchronize_rcu_expedited_wait() Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 5.15 373/567] rcu-tasks: Make rude RCU-Tasks work well with CPU hotplug Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 5.15 374/567] wifi: ath11k: debugfs: fix to work with multiple PCI devices Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 5.15 375/567] thermal: intel: Fix unsigned comparison with less than zero Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 5.15 376/567] timers: Prevent union confusion from unexpected restart_syscall() Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 5.15 377/567] x86/bugs: Reset speculation control settings on init Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 5.15 378/567] wifi: brcmfmac: ensure CLM version is null-terminated to prevent stack-out-of-bounds Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 5.15 379/567] wifi: mt7601u: fix an integer underflow Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 5.15 380/567] inet: fix fast path in __inet_hash_connect() Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 5.15 381/567] ice: restrict PTP HW clock freq adjustments to 100, 000, 000 PPB Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 5.15 382/567] ice: add missing checks for PF vsi type Greg Kroah-Hartman
2023-03-07 17:01 ` [PATCH 5.15 383/567] ACPI: Dont build ACPICA with -Os Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 5.15 384/567] thermal: intel: intel_pch: Add support for Wellsburg PCH Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 5.15 385/567] clocksource: Suspend the watchdog temporarily when high read latency detected Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 5.15 386/567] crypto: hisilicon: Wipe entire pool on error Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 5.15 387/567] net: bcmgenet: Add a check for oversized packets Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 5.15 388/567] m68k: Check syscall_trace_enter() return code Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 5.15 389/567] netfilter: nf_tables: NULL pointer dereference in nf_tables_updobj() Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 5.15 390/567] tools/power/x86/intel-speed-select: Add Emerald Rapid quirk Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 5.15 391/567] wifi: mt76: dma: free rx_head in mt76_dma_rx_cleanup Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 5.15 392/567] ACPI: video: Fix Lenovo Ideapad Z570 DMI match Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 5.15 393/567] net/mlx5: fw_tracer: Fix debug print Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 5.15 394/567] coda: Avoid partial allocation of sig_inputArgs Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 5.15 395/567] uaccess: Add minimum bounds check on kernel buffer size Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 5.15 396/567] s390/idle: mark arch_cpu_idle() noinstr Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 5.15 397/567] time/debug: Fix memory leak with using debugfs_lookup() Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 5.15 398/567] PM: domains: fix " Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 5.15 399/567] PM: EM: " Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 5.15 400/567] Bluetooth: btusb: Add VID:PID 13d3:3529 for Realtek RTL8821CE Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 5.15 401/567] hv_netvsc: Check status in SEND_RNDIS_PKT completion message Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 5.15 402/567] scm: add user copy checks to put_cmsg() Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 5.15 403/567] drm/amd/display: Revert Reduce delay when sink device not able to ACK 00340h write Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 5.15 404/567] drm/amd/display: Fix potential null-deref in dm_resume Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 5.15 405/567] drm/omap: dsi: Fix excessive stack usage Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 5.15 406/567] HID: Add Mapping for System Microphone Mute Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 5.15 407/567] drm/tiny: ili9486: Do not assume 8-bit only SPI controllers Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 5.15 408/567] drm/radeon: free iio for atombios when driver shutdown Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 5.15 409/567] scsi: lpfc: Fix use-after-free KFENCE violation during sysfs firmware write Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 5.15 410/567] Revert "fbcon: dont lose the console font across generic->chip driver switch" Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 5.15 411/567] drm: amd: display: Fix memory leakage Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 5.15 412/567] drm/msm/dsi: Add missing check for alloc_ordered_workqueue Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 5.15 413/567] docs/scripts/gdb: add necessary make scripts_gdb step Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 5.15 414/567] ASoC: soc-compress: Reposition and add pcm_mutex Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 5.15 415/567] ASoC: kirkwood: Iterate over array indexes instead of using pointer math Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 5.15 416/567] regulator: max77802: Bounds check regulator id against opmode Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 5.15 417/567] regulator: s5m8767: Bounds check id indexing into arrays Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 5.15 418/567] gfs2: Improve gfs2_make_fs_rw error handling Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 5.15 419/567] hwmon: (coretemp) Simplify platform device handling Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 5.15 420/567] pinctrl: at91: use devm_kasprintf() to avoid potential leaks Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 5.15 421/567] scsi: snic: Fix memory leak with using debugfs_lookup() Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 5.15 422/567] HID: logitech-hidpp: Dont restart communication if not necessary Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 5.15 423/567] drm: panel-orientation-quirks: Add quirk for Lenovo IdeaPad Duet 3 10IGL5 Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 5.15 424/567] dm thin: add cond_resched() to various workqueue loops Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 5.15 425/567] dm cache: " Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 5.15 426/567] nfsd: zero out pointers after putting nfsd_files on COPY setup error Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 5.15 427/567] drm/shmem-helper: Revert accidental non-GPL export Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 5.15 428/567] wifi: rtl8xxxu: fixing transmisison failure for rtl8192eu Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 5.15 429/567] firmware: coreboot: framebuffer: Ignore reserved pixel color bits Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 5.15 430/567] block: dont allow multiple bios for IOCB_NOWAIT issue Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 5.15 431/567] rtc: pm8xxx: fix set-alarm race Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 5.15 432/567] ipmi:ssif: resend_msg() cannot fail Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 5.15 433/567] ipmi_ssif: Rename idle state and check Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 5.15 434/567] s390/extmem: return correct segment type in __segment_load() Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 5.15 435/567] s390: discard .interp section Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 5.15 436/567] s390/kprobes: fix irq mask clobbering on kprobe reenter from post_handler Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 5.15 437/567] s390/kprobes: fix current_kprobe never cleared after kprobes reenter Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 5.15 438/567] cifs: Fix uninitialized memory read in smb3_qfs_tcon() Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 5.15 439/567] btrfs: hold block group refcount during async discard Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 5.15 440/567] locking/rwsem: Prevent non-first waiter from spinning in down_write() slowpath Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 5.15 441/567] ksmbd: fix wrong data area length for smb2 lock request Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 5.15 442/567] ksmbd: do not allow the actual frame length to be smaller than the rfc1002 length Greg Kroah-Hartman
2023-03-07 17:02 ` [PATCH 5.15 443/567] ARM: dts: exynos: correct HDMI phy compatible in Exynos4 Greg Kroah-Hartman
2023-03-07 17:03 ` [PATCH 5.15 444/567] hfs: fix missing hfs_bnode_get() in __hfs_bnode_create Greg Kroah-Hartman
2023-03-07 17:03 ` [PATCH 5.15 445/567] fs: hfsplus: fix UAF issue in hfsplus_put_super Greg Kroah-Hartman
2023-03-07 17:03 ` [PATCH 5.15 446/567] exfat: fix reporting fs error when reading dir beyond EOF Greg Kroah-Hartman
2023-03-07 17:03 ` [PATCH 5.15 447/567] exfat: fix unexpected EOF while reading dir Greg Kroah-Hartman
2023-03-07 17:03 ` [PATCH 5.15 448/567] exfat: redefine DIR_DELETED as the bad cluster number Greg Kroah-Hartman
2023-03-07 17:03 ` [PATCH 5.15 449/567] exfat: fix inode->i_blocks for non-512 byte sector size device Greg Kroah-Hartman
2023-03-07 17:03 ` [PATCH 5.15 450/567] fs: dlm: dont set stop rx flag after node reset Greg Kroah-Hartman
2023-03-07 17:03 ` [PATCH 5.15 451/567] fs: dlm: move sending fin message into state change handling Greg Kroah-Hartman
2023-03-07 17:03 ` [PATCH 5.15 452/567] fs: dlm: send FIN ack back in right cases Greg Kroah-Hartman
2023-03-07 17:03 ` [PATCH 5.15 453/567] f2fs: fix information leak in f2fs_move_inline_dirents() Greg Kroah-Hartman
2023-03-07 17:03 ` [PATCH 5.15 454/567] f2fs: fix cgroup writeback accounting with fs-layer encryption Greg Kroah-Hartman
2023-03-07 17:03 ` [PATCH 5.15 455/567] ocfs2: fix defrag path triggering jbd2 ASSERT Greg Kroah-Hartman
2023-03-07 17:03 ` [PATCH 5.15 456/567] ocfs2: fix non-auto defrag path not working issue Greg Kroah-Hartman
2023-03-07 17:03 ` [PATCH 5.15 457/567] selftests/landlock: Skip overlayfs tests when not supported Greg Kroah-Hartman
2023-03-07 17:03 ` [PATCH 5.15 458/567] selftests/landlock: Test ptrace as much as possible with Yama Greg Kroah-Hartman
2023-03-07 17:03 ` [PATCH 5.15 459/567] udf: Truncate added extents on failed expansion Greg Kroah-Hartman
2023-03-07 17:03 ` [PATCH 5.15 460/567] udf: Do not bother merging very long extents Greg Kroah-Hartman
2023-03-07 17:03 ` [PATCH 5.15 461/567] udf: Do not update file length for failed writes to inline files Greg Kroah-Hartman
2023-03-07 17:03 ` [PATCH 5.15 462/567] udf: Preserve link count of system files Greg Kroah-Hartman
2023-03-07 17:03 ` [PATCH 5.15 463/567] udf: Detect system inodes linked into directory hierarchy Greg Kroah-Hartman
2023-03-07 17:03 ` [PATCH 5.15 464/567] udf: Fix file corruption when appending just after end of preallocated extent Greg Kroah-Hartman
2023-03-07 17:03 ` [PATCH 5.15 465/567] RDMA/siw: Fix user page pinning accounting Greg Kroah-Hartman
2023-03-07 17:03 ` [PATCH 5.15 466/567] KVM: Destroy target device if coalesced MMIO unregistration fails Greg Kroah-Hartman
2023-03-07 17:03 ` [PATCH 5.15 467/567] KVM: x86: Inject #GP if WRMSR sets reserved bits in APIC Self-IPI Greg Kroah-Hartman
2023-03-07 17:03 ` [PATCH 5.15 468/567] KVM: SVM: Fix potential overflow in SEVs send|receive_update_data() Greg Kroah-Hartman
2023-03-07 17:03 ` [PATCH 5.15 469/567] KVM: SVM: hyper-v: placate modpost section mismatch error Greg Kroah-Hartman
2023-03-07 17:03 ` [PATCH 5.15 470/567] KVM: s390: disable migration mode when dirty tracking is disabled Greg Kroah-Hartman
2023-03-07 17:03 ` [PATCH 5.15 471/567] x86/virt: Force GIF=1 prior to disabling SVM (for reboot flows) Greg Kroah-Hartman
2023-03-07 17:03 ` [PATCH 5.15 472/567] x86/crash: Disable virt in core NMI crash handler to avoid double shootdown Greg Kroah-Hartman
2023-03-07 17:03 ` [PATCH 5.15 473/567] x86/reboot: Disable virtualization in an emergency if SVM is supported Greg Kroah-Hartman
2023-03-07 17:03 ` [PATCH 5.15 474/567] x86/reboot: Disable SVM, not just VMX, when stopping CPUs Greg Kroah-Hartman
2023-03-07 17:03 ` [PATCH 5.15 475/567] x86/kprobes: Fix __recover_optprobed_insn check optimizing logic Greg Kroah-Hartman
2023-03-07 17:03 ` [PATCH 5.15 476/567] x86/kprobes: Fix arch_check_optimized_kprobe check within optimized_kprobe range Greg Kroah-Hartman
2023-03-07 17:03 ` [PATCH 5.15 477/567] x86/microcode/amd: Remove load_microcode_amd()s bsp parameter Greg Kroah-Hartman
2023-03-07 17:03 ` [PATCH 5.15 478/567] x86/microcode/AMD: Add a @cpu parameter to the reloading functions Greg Kroah-Hartman
2023-03-07 17:03 ` [PATCH 5.15 479/567] x86/microcode/AMD: Fix mixed steppings support Greg Kroah-Hartman
2023-03-07 17:03 ` [PATCH 5.15 480/567] x86/speculation: Allow enabling STIBP with legacy IBRS Greg Kroah-Hartman
2023-03-07 17:03 ` [PATCH 5.15 481/567] Documentation/hw-vuln: Document the interaction between IBRS and STIBP Greg Kroah-Hartman
2023-03-07 17:03 ` [PATCH 5.15 482/567] brd: return 0/-error from brd_insert_page() Greg Kroah-Hartman
2023-03-07 17:03 ` [PATCH 5.15 483/567] ima: Align ima_file_mmap() parameters with mmap_file LSM hook Greg Kroah-Hartman
2023-03-07 17:03 ` [PATCH 5.15 484/567] irqdomain: Fix association race Greg Kroah-Hartman
2023-03-07 17:03 ` [PATCH 5.15 485/567] irqdomain: Fix disassociation race Greg Kroah-Hartman
2023-03-07 17:03 ` [PATCH 5.15 486/567] irqdomain: Look for existing mapping only once Greg Kroah-Hartman
2023-03-07 17:03 ` [PATCH 5.15 487/567] irqdomain: Drop bogus fwspec-mapping error handling Greg Kroah-Hartman
2023-03-07 17:03 ` [PATCH 5.15 488/567] irqdomain: Fix domain registration race Greg Kroah-Hartman
2023-03-07 17:03 ` [PATCH 5.15 489/567] crypto: qat - fix out-of-bounds read Greg Kroah-Hartman
2023-03-07 17:03 ` [PATCH 5.15 490/567] io_uring: handle TIF_NOTIFY_RESUME when checking for task_work Greg Kroah-Hartman
2023-03-07 17:03 ` [PATCH 5.15 491/567] io_uring: mark task TASK_RUNNING before handling resume/task work Greg Kroah-Hartman
2023-03-07 17:03 ` [PATCH 5.15 492/567] io_uring: add a conditional reschedule to the IOPOLL cancelation loop Greg Kroah-Hartman
2023-03-07 17:03 ` [PATCH 5.15 493/567] io_uring/rsrc: disallow multi-source reg buffers Greg Kroah-Hartman
2023-03-07 17:03 ` [PATCH 5.15 494/567] io_uring: remove MSG_NOSIGNAL from recvmsg Greg Kroah-Hartman
2023-03-07 17:03 ` [PATCH 5.15 495/567] io_uring/poll: allow some retries for poll triggering spuriously Greg Kroah-Hartman
2023-03-07 17:03 ` [PATCH 5.15 496/567] ALSA: ice1712: Do not left ice->gpio_mutex locked in aureon_add_controls() Greg Kroah-Hartman
2023-03-07 17:03 ` [PATCH 5.15 497/567] ALSA: hda/realtek: Add quirk for HP EliteDesk 800 G6 Tower PC Greg Kroah-Hartman
2023-03-07 17:03 ` [PATCH 5.15 498/567] jbd2: fix data missing when reusing bh which is ready to be checkpointed Greg Kroah-Hartman
2023-03-07 17:03 ` [PATCH 5.15 499/567] ext4: optimize ea_inode block expansion Greg Kroah-Hartman
2023-03-07 17:03 ` [PATCH 5.15 500/567] ext4: refuse to create ea block when umounted Greg Kroah-Hartman
2023-03-07 17:03 ` [PATCH 5.15 501/567] ext4: Fix possible corruption when moving a directory Greg Kroah-Hartman
2023-03-07 17:03 ` [PATCH 5.15 502/567] mtd: spi-nor: sfdp: Fix index value for SCCR dwords Greg Kroah-Hartman
2023-03-07 17:03 ` [PATCH 5.15 503/567] mtd: spi-nor: spansion: Consider reserved bits in CFR5 register Greg Kroah-Hartman
2023-03-07 17:04 ` [PATCH 5.15 504/567] mtd: spi-nor: Fix shift-out-of-bounds in spi_nor_set_erase_type Greg Kroah-Hartman
2023-03-07 17:04 ` [PATCH 5.15 505/567] dm: send just one event on resize, not two Greg Kroah-Hartman
2023-03-07 17:04 ` [PATCH 5.15 506/567] dm: add cond_resched() to dm_wq_work() Greg Kroah-Hartman
2023-03-07 17:04 ` [PATCH 5.15 507/567] wifi: rtl8xxxu: Use a longer retry limit of 48 Greg Kroah-Hartman
2023-03-07 17:04 ` [PATCH 5.15 508/567] wifi: ath11k: allow system suspend to survive ath11k Greg Kroah-Hartman
2023-03-07 17:04 ` [PATCH 5.15 509/567] wifi: cfg80211: Fix use after free for wext Greg Kroah-Hartman
2023-03-07 17:04 ` [PATCH 5.15 510/567] qede: fix interrupt coalescing configuration Greg Kroah-Hartman
2023-03-07 17:04 ` [PATCH 5.15 511/567] thermal: intel: powerclamp: Fix cur_state for multi package system Greg Kroah-Hartman
2023-03-07 17:04 ` [PATCH 5.15 512/567] dm flakey: fix logic when corrupting a bio Greg Kroah-Hartman
2023-03-07 17:04 ` [PATCH 5.15 513/567] dm flakey: dont corrupt the zero page Greg Kroah-Hartman
2023-03-07 17:04 ` [PATCH 5.15 514/567] dm flakey: fix a bug with 32-bit highmem systems Greg Kroah-Hartman
2023-03-07 17:04 ` [PATCH 5.15 515/567] ARM: dts: qcom: sdx55: Add Qcom SMMU-500 as the fallback for IOMMU node Greg Kroah-Hartman
2023-03-07 17:04 ` [PATCH 5.15 516/567] ARM: dts: exynos: correct TMU phandle in Exynos4210 Greg Kroah-Hartman
2023-03-07 17:04 ` [PATCH 5.15 517/567] ARM: dts: exynos: correct TMU phandle in Exynos4 Greg Kroah-Hartman
2023-03-07 17:04 ` [PATCH 5.15 518/567] ARM: dts: exynos: correct TMU phandle in Odroid XU3 family Greg Kroah-Hartman
2023-03-07 17:04 ` [PATCH 5.15 519/567] ARM: dts: exynos: correct TMU phandle in Exynos5250 Greg Kroah-Hartman
2023-03-07 17:04 ` [PATCH 5.15 520/567] ARM: dts: exynos: correct TMU phandle in Odroid XU Greg Kroah-Hartman
2023-03-07 17:04 ` [PATCH 5.15 521/567] ARM: dts: exynos: correct TMU phandle in Odroid HC1 Greg Kroah-Hartman
2023-03-07 17:04 ` [PATCH 5.15 522/567] fuse: add inode/permission checks to fileattr_get/fileattr_set Greg Kroah-Hartman
2023-03-07 17:04 ` [PATCH 5.15 523/567] rbd: avoid use-after-free in do_rbd_add() when rbd_dev_create() fails Greg Kroah-Hartman
2023-03-07 17:04 ` [PATCH 5.15 524/567] ceph: update the time stamps and try to drop the suid/sgid Greg Kroah-Hartman
2023-03-07 17:04 ` [PATCH 5.15 525/567] alpha: fix FEN fault handling Greg Kroah-Hartman
2023-03-07 17:04 ` [PATCH 5.15 526/567] dax/kmem: Fix leak of memory-hotplug resources Greg Kroah-Hartman
2023-03-07 17:04 ` [PATCH 5.15 527/567] mips: fix syscall_get_nr Greg Kroah-Hartman
2023-03-07 17:04 ` [PATCH 5.15 528/567] media: ipu3-cio2: Fix PM runtime usage_count in driver unbind Greg Kroah-Hartman
2023-03-07 17:04 ` [PATCH 5.15 529/567] remoteproc/mtk_scp: Move clk ops outside send_lock Greg Kroah-Hartman
2023-03-07 17:04 ` [PATCH 5.15 530/567] docs: gdbmacros: print newest record Greg Kroah-Hartman
2023-03-07 17:04 ` [PATCH 5.15 531/567] mm: memcontrol: deprecate charge moving Greg Kroah-Hartman
2023-03-07 17:04 ` [PATCH 5.15 532/567] mm/thp: check and bail out if page in deferred queue already Greg Kroah-Hartman
2023-03-07 17:04 ` [PATCH 5.15 533/567] ktest.pl: Give back console on Ctrt^C on monitor Greg Kroah-Hartman
2023-03-07 17:04 ` [PATCH 5.15 534/567] ktest.pl: Fix missing "end_monitor" when machine check fails Greg Kroah-Hartman
2023-03-07 17:04 ` [PATCH 5.15 535/567] ktest.pl: Add RUN_TIMEOUT option with default unlimited Greg Kroah-Hartman
2023-03-07 17:04 ` [PATCH 5.15 536/567] ring-buffer: Handle race between rb_move_tail and rb_check_pages Greg Kroah-Hartman
2023-03-07 17:04 ` [PATCH 5.15 537/567] tools/bootconfig: fix single & used for logical condition Greg Kroah-Hartman
2023-03-07 17:04 ` [PATCH 5.15 538/567] scsi: core: Remove the /proc/scsi/${proc_name} directory earlier Greg Kroah-Hartman
2023-03-07 17:04 ` [PATCH 5.15 539/567] scsi: qla2xxx: Fix link failure in NPIV environment Greg Kroah-Hartman
2023-03-07 17:04 ` [PATCH 5.15 540/567] scsi: qla2xxx: Check if port is online before sending ELS Greg Kroah-Hartman
2023-03-07 17:04 ` [PATCH 5.15 541/567] scsi: qla2xxx: Fix DMA-API call trace on NVMe LS requests Greg Kroah-Hartman
2023-03-07 17:04 ` [PATCH 5.15 542/567] scsi: qla2xxx: Remove unintended flag clearing Greg Kroah-Hartman
2023-03-07 17:04 ` [PATCH 5.15 543/567] scsi: qla2xxx: Fix erroneous link down Greg Kroah-Hartman
2023-03-07 17:04 ` [PATCH 5.15 544/567] scsi: qla2xxx: Remove increment of interface err cnt Greg Kroah-Hartman
2023-03-07 17:04 ` [PATCH 5.15 545/567] scsi: ses: Dont attach if enclosure has no components Greg Kroah-Hartman
2023-03-07 17:04 ` [PATCH 5.15 546/567] scsi: ses: Fix slab-out-of-bounds in ses_enclosure_data_process() Greg Kroah-Hartman
2023-03-07 17:04 ` [PATCH 5.15 547/567] scsi: ses: Fix possible addl_desc_ptr out-of-bounds accesses Greg Kroah-Hartman
2023-03-07 17:04 ` [PATCH 5.15 548/567] scsi: ses: Fix possible desc_ptr " Greg Kroah-Hartman
2023-03-07 17:04 ` [PATCH 5.15 549/567] scsi: ses: Fix slab-out-of-bounds in ses_intf_remove() Greg Kroah-Hartman
2023-03-07 17:04 ` [PATCH 5.15 550/567] RISC-V: add a spin_shadow_stack declaration Greg Kroah-Hartman
2023-03-07 17:04 ` [PATCH 5.15 551/567] riscv: mm: fix regression due to update_mmu_cache change Greg Kroah-Hartman
2023-03-07 17:04 ` [PATCH 5.15 552/567] riscv: jump_label: Fixup unaligned arch_static_branch function Greg Kroah-Hartman
2023-03-07 17:04 ` [PATCH 5.15 553/567] riscv, mm: Perform BPF exhandler fixup on page fault Greg Kroah-Hartman
2023-03-07 17:04 ` [PATCH 5.15 554/567] riscv: ftrace: Remove wasted nops for !RISCV_ISA_C Greg Kroah-Hartman
2023-03-07 17:04 ` [PATCH 5.15 555/567] riscv: ftrace: Reduce the detour code size to half Greg Kroah-Hartman
2023-03-07 17:04 ` [PATCH 5.15 556/567] MIPS: DTS: CI20: fix otg power gpio Greg Kroah-Hartman
2023-03-07 17:04 ` [PATCH 5.15 557/567] PCI/PM: Observe reset delay irrespective of bridge_d3 Greg Kroah-Hartman
2023-03-07 17:04 ` [PATCH 5.15 558/567] PCI: hotplug: Allow marking devices as disconnected during bind/unbind Greg Kroah-Hartman
2023-03-07 17:04 ` [PATCH 5.15 559/567] PCI: Avoid FLR for AMD FCH AHCI adapters Greg Kroah-Hartman
2023-03-07 17:04 ` [PATCH 5.15 560/567] iommu/vt-d: Avoid superfluous IOTLB tracking in lazy mode Greg Kroah-Hartman
2023-03-07 17:04 ` [PATCH 5.15 561/567] vfio/type1: prevent underflow of locked_vm via exec() Greg Kroah-Hartman
2023-03-07 17:04 ` [PATCH 5.15 562/567] vfio/type1: track locked_vm per dma Greg Kroah-Hartman
2023-03-07 17:04 ` [PATCH 5.15 563/567] vfio/type1: restore locked_vm Greg Kroah-Hartman
2023-03-07 17:05 ` [PATCH 5.15 564/567] drm/i915/quirks: Add inverted backlight quirk for HP 14-r206nv Greg Kroah-Hartman
2023-03-07 17:05 ` [PATCH 5.15 565/567] drm/radeon: Fix eDP for single-display iMac11,2 Greg Kroah-Hartman
2023-03-07 17:05 ` [PATCH 5.15 566/567] drm/i915: Dont use BAR mappings for ring buffers with LLC Greg Kroah-Hartman
2023-03-07 17:05 ` [PATCH 5.15 567/567] drm/edid: fix AVI infoframe aspect ratio handling Greg Kroah-Hartman
2023-03-07 20:02 ` [PATCH 5.15 000/567] 5.15.99-rc1 review Harshit Mogalapalli
2023-03-07 20:12   ` Vegard Nossum
2023-03-08  7:19     ` Greg Kroah-Hartman
2023-03-07 23:06 ` Daniel Díaz
2023-03-08  7:19   ` Greg Kroah-Hartman
2023-03-08  4:19 ` Bagas Sanjaya
2023-03-08  6:24 ` Daniel Díaz
2023-03-12 13:57   ` Linux regression tracking (Thorsten Leemhuis)

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=20230307165918.737814200@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=bhelgaas@google.com \
    --cc=logang@deltatee.com \
    --cc=patches@lists.linux.dev \
    --cc=sashal@kernel.org \
    --cc=stable@vger.kernel.org \
    /path/to/YOUR_REPLY

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

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