All of lore.kernel.org
 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, Zheng Wang <zyytlz.wz@163.com>,
	Hans Verkuil <hverkuil-cisco@xs4all.nl>,
	Sasha Levin <sashal@kernel.org>
Subject: [PATCH 5.10 108/381] media: saa7134: fix use after free bug in saa7134_finidev due to race condition
Date: Mon, 15 May 2023 18:25:59 +0200	[thread overview]
Message-ID: <20230515161741.681574771@linuxfoundation.org> (raw)
In-Reply-To: <20230515161736.775969473@linuxfoundation.org>

From: Zheng Wang <zyytlz.wz@163.com>

[ Upstream commit 30cf57da176cca80f11df0d9b7f71581fe601389 ]

In saa7134_initdev, it will call saa7134_hwinit1. There are three
function invoking here: saa7134_video_init1, saa7134_ts_init1
and saa7134_vbi_init1.

All of them will init a timer with same function. Take
saa7134_video_init1 as an example. It'll bound &dev->video_q.timeout
with saa7134_buffer_timeout.

In buffer_activate, the timer funtcion is started.

If we remove the module or device which will call saa7134_finidev
to make cleanup, there may be a unfinished work. The
possible sequence is as follows, which will cause a
typical UAF bug.

Fix it by canceling the timer works accordingly before cleanup in
saa7134_finidev.

CPU0                  CPU1

                    |saa7134_buffer_timeout
saa7134_finidev     |
  kfree(dev);       |
                    |
                    | saa7134_buffer_next
                    | //use dev

Fixes: 1e7126b4a86a ("media: saa7134: Convert timers to use timer_setup()")
Signed-off-by: Zheng Wang <zyytlz.wz@163.com>
Signed-off-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 drivers/media/pci/saa7134/saa7134-ts.c    | 1 +
 drivers/media/pci/saa7134/saa7134-vbi.c   | 1 +
 drivers/media/pci/saa7134/saa7134-video.c | 1 +
 3 files changed, 3 insertions(+)

diff --git a/drivers/media/pci/saa7134/saa7134-ts.c b/drivers/media/pci/saa7134/saa7134-ts.c
index 6a5053126237f..437dbe5e75e29 100644
--- a/drivers/media/pci/saa7134/saa7134-ts.c
+++ b/drivers/media/pci/saa7134/saa7134-ts.c
@@ -300,6 +300,7 @@ int saa7134_ts_start(struct saa7134_dev *dev)
 
 int saa7134_ts_fini(struct saa7134_dev *dev)
 {
+	del_timer_sync(&dev->ts_q.timeout);
 	saa7134_pgtable_free(dev->pci, &dev->ts_q.pt);
 	return 0;
 }
diff --git a/drivers/media/pci/saa7134/saa7134-vbi.c b/drivers/media/pci/saa7134/saa7134-vbi.c
index 3f0b0933eed69..3e773690468bd 100644
--- a/drivers/media/pci/saa7134/saa7134-vbi.c
+++ b/drivers/media/pci/saa7134/saa7134-vbi.c
@@ -185,6 +185,7 @@ int saa7134_vbi_init1(struct saa7134_dev *dev)
 int saa7134_vbi_fini(struct saa7134_dev *dev)
 {
 	/* nothing */
+	del_timer_sync(&dev->vbi_q.timeout);
 	return 0;
 }
 
diff --git a/drivers/media/pci/saa7134/saa7134-video.c b/drivers/media/pci/saa7134/saa7134-video.c
index 85d082baaadc5..df9e3293015a2 100644
--- a/drivers/media/pci/saa7134/saa7134-video.c
+++ b/drivers/media/pci/saa7134/saa7134-video.c
@@ -2153,6 +2153,7 @@ int saa7134_video_init1(struct saa7134_dev *dev)
 
 void saa7134_video_fini(struct saa7134_dev *dev)
 {
+	del_timer_sync(&dev->video_q.timeout);
 	/* free stuff */
 	saa7134_pgtable_free(dev->pci, &dev->video_q.pt);
 	saa7134_pgtable_free(dev->pci, &dev->vbi_q.pt);
-- 
2.39.2




  parent reply	other threads:[~2023-05-15 17:38 UTC|newest]

Thread overview: 404+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-05-15 16:24 [PATCH 5.10 000/381] 5.10.180-rc1 review Greg Kroah-Hartman
2023-05-15 16:24 ` [PATCH 5.10 001/381] seccomp: Move copy_seccomp() to no failure path Greg Kroah-Hartman
2023-05-15 16:24 ` [PATCH 5.10 002/381] counter: 104-quad-8: Fix race condition between FLAG and CNTR reads Greg Kroah-Hartman
2023-05-15 16:24 ` [PATCH 5.10 003/381] KVM: arm64: Fix buffer overflow in kvm_arm_set_fw_reg() Greg Kroah-Hartman
2023-05-15 16:24 ` [PATCH 5.10 004/381] wifi: brcmfmac: slab-out-of-bounds read in brcmf_get_assoc_ies() Greg Kroah-Hartman
2023-05-15 16:24 ` [PATCH 5.10 005/381] drm/fb-helper: set x/yres_virtual in drm_fb_helper_check_var Greg Kroah-Hartman
2023-05-15 16:24 ` [PATCH 5.10 006/381] bluetooth: Perform careful capability checks in hci_sock_ioctl() Greg Kroah-Hartman
2023-05-15 16:24 ` [PATCH 5.10 007/381] x86/fpu: Prevent FPU state corruption Greg Kroah-Hartman
2023-05-15 16:24 ` [PATCH 5.10 008/381] USB: serial: option: add UNISOC vendor and TOZED LT70C product Greg Kroah-Hartman
2023-05-15 16:24 ` [PATCH 5.10 009/381] driver core: Dont require dynamic_debug for initcall_debug probe timing Greg Kroah-Hartman
2023-05-15 16:24 ` [PATCH 5.10 010/381] ASOC: Intel: sof_sdw: add quirk for Intel Rooks County NUC M15 Greg Kroah-Hartman
2023-05-15 16:24 ` [PATCH 5.10 011/381] iio: adc: palmas_gpadc: fix NULL dereference on rmmod Greg Kroah-Hartman
2023-05-15 16:24 ` [PATCH 5.10 012/381] ASoC: Intel: bytcr_rt5640: Add quirk for the Acer Iconia One 7 B1-750 Greg Kroah-Hartman
2023-05-15 16:24 ` [PATCH 5.10 013/381] asm-generic/io.h: suppress endianness warnings for readq() and writeq() Greg Kroah-Hartman
2023-05-15 16:24 ` [PATCH 5.10 014/381] wireguard: timers: cast enum limits members to int in prints Greg Kroah-Hartman
2023-05-15 16:24 ` [PATCH 5.10 015/381] PCI: pciehp: Fix AB-BA deadlock between reset_lock and device_lock Greg Kroah-Hartman
2023-05-15 16:24 ` [PATCH 5.10 016/381] PCI: qcom: Fix the incorrect register usage in v2.7.0 config Greg Kroah-Hartman
2023-05-15 16:24 ` [PATCH 5.10 017/381] IMA: allow/fix UML builds Greg Kroah-Hartman
2023-05-15 16:24   ` Greg Kroah-Hartman
2023-05-15 16:24 ` [PATCH 5.10 018/381] USB: dwc3: fix runtime pm imbalance on probe errors Greg Kroah-Hartman
2023-05-15 16:24 ` [PATCH 5.10 019/381] USB: dwc3: fix runtime pm imbalance on unbind Greg Kroah-Hartman
2023-05-15 16:24 ` [PATCH 5.10 020/381] hwmon: (k10temp) Check range scale when CUR_TEMP register is read-write Greg Kroah-Hartman
2023-05-15 16:24 ` [PATCH 5.10 021/381] hwmon: (adt7475) Use device_property APIs when configuring polarity Greg Kroah-Hartman
2023-05-15 16:24 ` [PATCH 5.10 022/381] posix-cpu-timers: Implement the missing timer_wait_running callback Greg Kroah-Hartman
2023-05-15 16:24 ` [PATCH 5.10 023/381] perf sched: Cast PTHREAD_STACK_MIN to int as it may turn into sysconf(__SC_THREAD_STACK_MIN_VALUE) Greg Kroah-Hartman
2023-05-15 16:24 ` [PATCH 5.10 024/381] blk-mq: release crypto keyslot before reporting I/O complete Greg Kroah-Hartman
2023-05-15 16:24 ` [PATCH 5.10 025/381] blk-crypto: make blk_crypto_evict_key() return void Greg Kroah-Hartman
2023-05-15 16:24 ` [PATCH 5.10 026/381] blk-crypto: make blk_crypto_evict_key() more robust Greg Kroah-Hartman
2023-05-15 16:24 ` [PATCH 5.10 027/381] ext4: use ext4_journal_start/stop for fast commit transactions Greg Kroah-Hartman
2023-05-15 16:24 ` [PATCH 5.10 028/381] staging: iio: resolver: ads1210: fix config mode Greg Kroah-Hartman
2023-05-15 16:24 ` [PATCH 5.10 029/381] xhci: fix debugfs register accesses while suspended Greg Kroah-Hartman
2023-05-15 16:24 ` [PATCH 5.10 030/381] tick/nohz: Fix cpu_is_hotpluggable() by checking with nohz subsystem Greg Kroah-Hartman
2023-05-15 16:24 ` [PATCH 5.10 031/381] MIPS: fw: Allow firmware to pass a empty env Greg Kroah-Hartman
2023-05-15 16:24 ` [PATCH 5.10 032/381] ipmi:ssif: Add send_retries increment Greg Kroah-Hartman
2023-05-15 16:24 ` [PATCH 5.10 033/381] ipmi: fix SSIF not responding under certain cond Greg Kroah-Hartman
2023-05-15 16:24 ` [PATCH 5.10 034/381] kheaders: Use array declaration instead of char Greg Kroah-Hartman
2023-05-15 16:24 ` [PATCH 5.10 035/381] pwm: meson: Fix axg ao mux parents Greg Kroah-Hartman
2023-05-15 16:24 ` [PATCH 5.10 036/381] pwm: meson: Fix g12a ao clk81 name Greg Kroah-Hartman
2023-05-15 16:24 ` [PATCH 5.10 037/381] ring-buffer: Sync IRQ works before buffer destruction Greg Kroah-Hartman
2023-05-15 16:24 ` [PATCH 5.10 038/381] crypto: api - Demote BUG_ON() in crypto_unregister_alg() to a WARN_ON() Greg Kroah-Hartman
2023-05-15 16:24 ` [PATCH 5.10 039/381] crypto: safexcel - Cleanup ring IRQ workqueues on load failure Greg Kroah-Hartman
2023-05-15 16:24 ` [PATCH 5.10 040/381] rcu: Avoid stack overflow due to __rcu_irq_enter_check_tick() being kprobe-ed Greg Kroah-Hartman
2023-05-15 16:24 ` [PATCH 5.10 041/381] reiserfs: Add security prefix to xattr name in reiserfs_security_write() Greg Kroah-Hartman
2023-05-15 16:24 ` [PATCH 5.10 042/381] KVM: nVMX: Emulate NOPs in L2, and PAUSE if its not intercepted Greg Kroah-Hartman
2023-05-15 16:24 ` [PATCH 5.10 043/381] relayfs: fix out-of-bounds access in relay_file_read Greg Kroah-Hartman
2023-05-15 16:24 ` [PATCH 5.10 044/381] writeback, cgroup: fix null-ptr-deref write in bdi_split_work_to_wbs Greg Kroah-Hartman
2023-05-15 16:24 ` [PATCH 5.10 045/381] i2c: omap: Fix standard mode false ACK readings Greg Kroah-Hartman
2023-05-15 16:24 ` [PATCH 5.10 046/381] iommu/amd: Fix "Guest Virtual APIC Table Root Pointer" configuration in IRTE Greg Kroah-Hartman
2023-05-15 16:24 ` [PATCH 5.10 047/381] Revert "ubifs: dirty_cow_znode: Fix memleak in error handling path" Greg Kroah-Hartman
2023-05-15 16:24 ` [PATCH 5.10 048/381] ubifs: Fix memleak when insert_old_idx() failed Greg Kroah-Hartman
2023-05-15 16:25 ` [PATCH 5.10 049/381] ubi: Fix return value overwrite issue in try_write_vid_and_data() Greg Kroah-Hartman
2023-05-15 16:25 ` [PATCH 5.10 050/381] ubifs: Free memory for tmpfile name Greg Kroah-Hartman
2023-05-15 16:25 ` [PATCH 5.10 051/381] sound/oss/dmasound: fix build when drivers are mixed =y/=m Greg Kroah-Hartman
2023-05-15 16:25 ` [PATCH 5.10 052/381] parisc: Fix argument pointer in real64_call_asm() Greg Kroah-Hartman
2023-05-15 16:25 ` [PATCH 5.10 053/381] nilfs2: do not write dirty data after degenerating to read-only Greg Kroah-Hartman
2023-05-15 16:25 ` [PATCH 5.10 054/381] nilfs2: fix infinite loop in nilfs_mdt_get_block() Greg Kroah-Hartman
2023-05-15 16:25 ` [PATCH 5.10 055/381] md/raid10: fix null-ptr-deref in raid10_sync_request Greg Kroah-Hartman
2023-05-15 16:25 ` [PATCH 5.10 056/381] mailbox: zynqmp: Fix IPI isr handling Greg Kroah-Hartman
2023-05-15 16:25 ` [PATCH 5.10 057/381] mailbox: zynqmp: Fix typo in IPI documentation Greg Kroah-Hartman
2023-05-15 16:25 ` [PATCH 5.10 058/381] wifi: rtl8xxxu: RTL8192EU always needs full init Greg Kroah-Hartman
2023-05-15 16:25 ` [PATCH 5.10 059/381] clk: rockchip: rk3399: allow clk_cifout to force clk_cifout_src to reparent Greg Kroah-Hartman
2023-05-15 16:25 ` [PATCH 5.10 060/381] rcu: Fix missing TICK_DEP_MASK_RCU_EXP dependency check Greg Kroah-Hartman
2023-05-15 16:25 ` [PATCH 5.10 061/381] selftests/resctrl: Return NULL if malloc_and_init_memory() did not alloc mem Greg Kroah-Hartman
2023-05-15 16:25 ` [PATCH 5.10 062/381] selftests/resctrl: Check for return value after write_schemata() Greg Kroah-Hartman
2023-05-15 16:25 ` [PATCH 5.10 063/381] selinux: fix Makefile dependencies of flask.h Greg Kroah-Hartman
2023-05-15 16:25 ` [PATCH 5.10 064/381] selinux: ensure av_permissions.h is built when needed Greg Kroah-Hartman
2023-05-15 16:25 ` [PATCH 5.10 065/381] tpm, tpm_tis: Do not skip reset of original interrupt vector Greg Kroah-Hartman
2023-05-15 16:25 ` [PATCH 5.10 066/381] tpm, tpm_tis: Claim locality before writing TPM_INT_ENABLE register Greg Kroah-Hartman
2023-05-15 16:25 ` [PATCH 5.10 067/381] tpm, tpm_tis: Disable interrupts if tpm_tis_probe_irq() failed Greg Kroah-Hartman
2023-05-15 16:25 ` [PATCH 5.10 068/381] tpm, tpm_tis: Claim locality before writing interrupt registers Greg Kroah-Hartman
2023-05-15 16:25 ` [PATCH 5.10 069/381] tpm, tpm: Implement usage counter for locality Greg Kroah-Hartman
2023-05-15 16:25 ` [PATCH 5.10 070/381] tpm, tpm_tis: Claim locality when interrupts are reenabled on resume Greg Kroah-Hartman
2023-05-15 16:25 ` [PATCH 5.10 071/381] erofs: stop parsing non-compact HEAD index if clusterofs is invalid Greg Kroah-Hartman
2023-05-15 16:25 ` [PATCH 5.10 072/381] erofs: fix potential overflow calculating xattr_isize Greg Kroah-Hartman
2023-05-15 16:25 ` [PATCH 5.10 073/381] drm/rockchip: Drop unbalanced obj unref Greg Kroah-Hartman
2023-05-15 16:25 ` [PATCH 5.10 074/381] drm/vgem: add missing mutex_destroy Greg Kroah-Hartman
2023-05-15 16:25 ` [PATCH 5.10 075/381] drm/probe-helper: Cancel previous job before starting new one Greg Kroah-Hartman
2023-05-15 16:25 ` [PATCH 5.10 076/381] soc: ti: pm33xx: Enable basic PM runtime support for genpd Greg Kroah-Hartman
2023-05-15 16:25 ` [PATCH 5.10 077/381] soc: ti: pm33xx: Fix refcount leak in am33xx_pm_probe Greg Kroah-Hartman
2023-05-15 16:25 ` [PATCH 5.10 078/381] arm64: dts: renesas: r8a77990: Remove bogus voltages from OPP table Greg Kroah-Hartman
2023-05-15 16:25 ` [PATCH 5.10 079/381] arm64: dts: renesas: r8a774c0: " Greg Kroah-Hartman
2023-05-15 16:25 ` [PATCH 5.10 080/381] drm/msm/disp/dpu: check for crtc enable rather than crtc active to release shared resources Greg Kroah-Hartman
2023-05-15 16:25 ` [PATCH 5.10 081/381] EDAC/skx: Fix overflows on the DRAM row address mapping arrays Greg Kroah-Hartman
2023-05-15 16:25 ` [PATCH 5.10 082/381] arm64: dts: qcom: msm8998: Fix stm-stimulus-base reg name Greg Kroah-Hartman
2023-05-15 16:25 ` [PATCH 5.10 083/381] arm64: dts: qcom: sdm845: correct dynamic power coefficients Greg Kroah-Hartman
2023-05-15 16:25 ` [PATCH 5.10 084/381] arm64: dts: qcom: sdm845: Fix the PCI I/O port range Greg Kroah-Hartman
2023-05-15 16:25 ` [PATCH 5.10 085/381] arm64: dts: qcom: msm8998: " Greg Kroah-Hartman
2023-05-15 16:25 ` [PATCH 5.10 086/381] arm64: dts: qcom: ipq8074: " Greg Kroah-Hartman
2023-05-15 16:25 ` [PATCH 5.10 087/381] arm64: dts: qcom: msm8996: " Greg Kroah-Hartman
2023-05-15 16:25 ` [PATCH 5.10 088/381] ARM: dts: qcom: ipq4019: " Greg Kroah-Hartman
2023-05-15 16:25 ` [PATCH 5.10 089/381] ARM: dts: qcom: ipq8064: reduce pci IO size to 64K Greg Kroah-Hartman
2023-05-15 16:25 ` [PATCH 5.10 090/381] ARM: dts: qcom: ipq8064: Fix the PCI I/O port range Greg Kroah-Hartman
2023-05-15 16:25 ` [PATCH 5.10 091/381] x86/MCE/AMD: Use an u64 for bank_map Greg Kroah-Hartman
2023-05-15 16:25 ` [PATCH 5.10 092/381] media: bdisp: Add missing check for create_workqueue Greg Kroah-Hartman
2023-05-15 16:25 ` [PATCH 5.10 093/381] firmware: qcom_scm: Clear download bit during reboot Greg Kroah-Hartman
2023-05-15 16:25 ` [PATCH 5.10 094/381] drm/bridge: adv7533: Fix adv7533_mode_valid for adv7533 and adv7535 Greg Kroah-Hartman
2023-05-15 16:25 ` [PATCH 5.10 095/381] media: max9286: Free control handler Greg Kroah-Hartman
2023-05-15 16:25 ` [PATCH 5.10 096/381] drm/msm/adreno: Defer enabling runpm until hw_init() Greg Kroah-Hartman
2023-05-15 16:25 ` [PATCH 5.10 097/381] drm/msm/adreno: drop bogus pm_runtime_set_active() Greg Kroah-Hartman
2023-05-15 16:25 ` [PATCH 5.10 098/381] drm: msm: adreno: Disable preemption on Adreno 510 Greg Kroah-Hartman
2023-05-15 16:25 ` [PATCH 5.10 099/381] ACPI: processor: Fix evaluating _PDC method when running as Xen dom0 Greg Kroah-Hartman
2023-05-15 16:25 ` [PATCH 5.10 100/381] mmc: sdhci-of-esdhc: fix quirk to ignore command inhibit for data Greg Kroah-Hartman
2023-05-15 16:25 ` [PATCH 5.10 101/381] ARM: dts: gta04: fix excess dma channel usage Greg Kroah-Hartman
2023-05-15 16:25 ` [PATCH 5.10 102/381] drm/lima/lima_drv: Add missing unwind goto in lima_pdev_probe() Greg Kroah-Hartman
2023-05-15 16:25 ` [PATCH 5.10 103/381] regulator: core: Consistently set mutex_owner when using ww_mutex_lock_slow() Greg Kroah-Hartman
2023-05-15 16:25 ` [PATCH 5.10 104/381] regulator: core: Avoid lockdep reports when resolving supplies Greg Kroah-Hartman
2023-05-15 16:25 ` [PATCH 5.10 105/381] x86/apic: Fix atomic update of offset in reserve_eilvt_offset() Greg Kroah-Hartman
2023-05-15 16:25 ` [PATCH 5.10 106/381] media: rkvdec: fix use after free bug in rkvdec_remove Greg Kroah-Hartman
2023-05-15 16:25 ` [PATCH 5.10 107/381] media: dm1105: Fix use after free bug in dm1105_remove due to race condition Greg Kroah-Hartman
2023-05-15 16:25 ` Greg Kroah-Hartman [this message]
2023-05-15 16:26 ` [PATCH 5.10 109/381] media: rcar_fdp1: simplify error check logic at fdp_open() Greg Kroah-Hartman
2023-05-15 16:26 ` [PATCH 5.10 110/381] media: rcar_fdp1: fix pm_runtime_get_sync() usage count Greg Kroah-Hartman
2023-05-15 16:26 ` [PATCH 5.10 111/381] media: rcar_fdp1: Make use of the helper function devm_platform_ioremap_resource() Greg Kroah-Hartman
2023-05-15 16:26 ` [PATCH 5.10 112/381] media: rcar_fdp1: Fix the correct variable assignments Greg Kroah-Hartman
2023-05-15 16:26 ` [PATCH 5.10 113/381] media: rcar_fdp1: Fix refcount leak in probe and remove function Greg Kroah-Hartman
2023-05-15 16:26 ` [PATCH 5.10 114/381] media: rc: gpio-ir-recv: Fix support for wake-up Greg Kroah-Hartman
2023-05-15 16:26 ` [PATCH 5.10 115/381] media: venus: vdec: Fix non reliable setting of LAST flag Greg Kroah-Hartman
2023-05-15 16:26 ` [PATCH 5.10 116/381] media: venus: vdec: Make decoder return LAST flag for sufficient event Greg Kroah-Hartman
2023-05-15 16:26 ` [PATCH 5.10 117/381] media: venus: preserve DRC state across seeks Greg Kroah-Hartman
2023-05-15 16:26 ` [PATCH 5.10 118/381] media: venus: vdec: Handle DRC after drain Greg Kroah-Hartman
2023-05-15 16:26 ` [PATCH 5.10 119/381] media: venus: dec: Fix handling of the start cmd Greg Kroah-Hartman
2023-05-15 16:26 ` [PATCH 5.10 120/381] regulator: stm32-pwr: fix of_iomap leak Greg Kroah-Hartman
2023-05-15 16:26 ` [PATCH 5.10 121/381] x86/ioapic: Dont return 0 from arch_dynirq_lower_bound() Greg Kroah-Hartman
2023-05-15 16:26 ` [PATCH 5.10 122/381] arm64: kgdb: Set PSTATE.SS to 1 to re-enable single-step Greg Kroah-Hartman
2023-05-15 16:26 ` [PATCH 5.10 123/381] debugobject: Prevent init race with static objects Greg Kroah-Hartman
2023-05-15 16:26 ` [PATCH 5.10 124/381] drm/i915: Make intel_get_crtc_new_encoder() less oopsy Greg Kroah-Hartman
2023-05-15 16:26 ` [PATCH 5.10 125/381] tick/sched: Use tick_next_period for lockless quick check Greg Kroah-Hartman
2023-05-15 16:26 ` [PATCH 5.10 126/381] tick/sched: Reduce seqcount held scope in tick_do_update_jiffies64() Greg Kroah-Hartman
2023-05-15 16:26 ` [PATCH 5.10 127/381] tick/sched: Optimize tick_do_update_jiffies64() further Greg Kroah-Hartman
2023-05-15 16:26 ` [PATCH 5.10 128/381] tick: Get rid of tick_period Greg Kroah-Hartman
2023-05-15 16:26 ` [PATCH 5.10 129/381] tick/common: Align tick period with the HZ tick Greg Kroah-Hartman
2023-05-15 16:26 ` [PATCH 5.10 130/381] wifi: ath6kl: minor fix for allocation size Greg Kroah-Hartman
2023-05-15 16:26 ` [PATCH 5.10 131/381] wifi: ath9k: hif_usb: fix memory leak of remain_skbs Greg Kroah-Hartman
2023-05-15 16:26 ` [PATCH 5.10 132/381] wifi: ath5k: fix an off by one check in ath5k_eeprom_read_freq_list() Greg Kroah-Hartman
2023-05-15 16:26 ` [PATCH 5.10 133/381] wifi: ath6kl: reduce WARN to dev_dbg() in callback Greg Kroah-Hartman
2023-05-15 16:26 ` [PATCH 5.10 134/381] tools: bpftool: Remove invalid \ json escape Greg Kroah-Hartman
2023-05-15 16:26 ` [PATCH 5.10 135/381] wifi: rtw88: mac: Return the original error from rtw_pwr_seq_parser() Greg Kroah-Hartman
2023-05-15 16:26 ` [PATCH 5.10 136/381] wifi: rtw88: mac: Return the original error from rtw_mac_power_switch() Greg Kroah-Hartman
2023-05-15 16:26 ` [PATCH 5.10 137/381] bpf: take into account liveness when propagating precision Greg Kroah-Hartman
2023-05-15 16:26 ` [PATCH 5.10 138/381] bpf: fix precision propagation verbose logging Greg Kroah-Hartman
2023-05-15 16:26 ` [PATCH 5.10 139/381] scm: fix MSG_CTRUNC setting condition for SO_PASSSEC Greg Kroah-Hartman
2023-05-15 16:26 ` [PATCH 5.10 140/381] bpf: Remove misleading spec_v1 check on var-offset stack read Greg Kroah-Hartman
2023-05-15 16:26 ` [PATCH 5.10 141/381] vlan: partially enable SIOCSHWTSTAMP in container Greg Kroah-Hartman
2023-05-15 16:26 ` [PATCH 5.10 142/381] net/packet: annotate accesses to po->xmit Greg Kroah-Hartman
2023-05-15 16:26 ` [PATCH 5.10 143/381] net/packet: convert po->origdev to an atomic flag Greg Kroah-Hartman
2023-05-15 16:26 ` [PATCH 5.10 144/381] net/packet: convert po->auxdata " Greg Kroah-Hartman
2023-05-15 16:26 ` [PATCH 5.10 145/381] scsi: target: Rename struct sense_info to sense_detail Greg Kroah-Hartman
2023-05-15 16:26 ` [PATCH 5.10 146/381] scsi: target: Rename cmd.bad_sector to cmd.sense_info Greg Kroah-Hartman
2023-05-15 16:26 ` [PATCH 5.10 147/381] scsi: target: Make state_list per CPU Greg Kroah-Hartman
2023-05-15 16:26 ` [PATCH 5.10 148/381] scsi: target: Fix multiple LUN_RESET handling Greg Kroah-Hartman
2023-05-15 16:26 ` [PATCH 5.10 149/381] scsi: target: iscsit: Fix TAS handling during conn cleanup Greg Kroah-Hartman
2023-05-15 16:26 ` [PATCH 5.10 150/381] scsi: megaraid: Fix mega_cmd_done() CMDID_INT_CMDS Greg Kroah-Hartman
2023-05-15 16:26 ` [PATCH 5.10 151/381] f2fs: handle dqget error in f2fs_transfer_project_quota() Greg Kroah-Hartman
2023-05-15 16:26 ` [PATCH 5.10 152/381] f2fs: enforce single zone capacity Greg Kroah-Hartman
2023-05-15 16:26 ` [PATCH 5.10 153/381] f2fs: apply zone capacity to all zone type Greg Kroah-Hartman
2023-05-15 16:26 ` [PATCH 5.10 154/381] f2fs: compress: fix to call f2fs_wait_on_page_writeback() in f2fs_write_raw_pages() Greg Kroah-Hartman
2023-05-15 16:26 ` [PATCH 5.10 155/381] crypto: caam - Clear some memory in instantiate_rng Greg Kroah-Hartman
2023-05-15 16:26 ` [PATCH 5.10 156/381] crypto: sa2ul - Select CRYPTO_DES Greg Kroah-Hartman
2023-05-15 16:26 ` [PATCH 5.10 157/381] wifi: rtlwifi: fix incorrect error codes in rtl_debugfs_set_write_rfreg() Greg Kroah-Hartman
2023-05-15 16:26 ` [PATCH 5.10 158/381] wifi: rtlwifi: fix incorrect error codes in rtl_debugfs_set_write_reg() Greg Kroah-Hartman
2023-05-15 16:26 ` [PATCH 5.10 159/381] net: qrtr: correct types of trace event parameters Greg Kroah-Hartman
2023-05-15 16:26 ` [PATCH 5.10 160/381] selftests/bpf: Wait for receive in cg_storage_multi test Greg Kroah-Hartman
2023-05-15 16:26 ` [PATCH 5.10 161/381] bpftool: Fix bug for long instructions in program CFG dumps Greg Kroah-Hartman
2023-05-15 16:26 ` [PATCH 5.10 162/381] crypto: drbg - make drbg_prepare_hrng() handle jent instantiation errors Greg Kroah-Hartman
2023-05-15 16:26 ` [PATCH 5.10 163/381] crypto: drbg - Only fail when jent is unavailable in FIPS mode Greg Kroah-Hartman
2023-05-15 16:26 ` [PATCH 5.10 164/381] xsk: Fix unaligned descriptor validation Greg Kroah-Hartman
2023-05-15 16:26 ` [PATCH 5.10 165/381] f2fs: fix to avoid use-after-free for cached IPU bio Greg Kroah-Hartman
2023-05-15 16:26 ` [PATCH 5.10 166/381] scsi: lpfc: Fix ioremap issues in lpfc_sli4_pci_mem_setup() Greg Kroah-Hartman
2023-05-15 16:26 ` [PATCH 5.10 167/381] net: ethernet: stmmac: dwmac-rk: fix optional phy regulator handling Greg Kroah-Hartman
2023-05-15 16:26 ` [PATCH 5.10 168/381] bpf, sockmap: fix deadlocks in the sockhash and sockmap Greg Kroah-Hartman
2023-05-15 16:27 ` [PATCH 5.10 169/381] nvme: handle the persistent internal error AER Greg Kroah-Hartman
2023-05-15 16:27 ` [PATCH 5.10 170/381] nvme: fix async event trace event Greg Kroah-Hartman
2023-05-15 16:27 ` [PATCH 5.10 171/381] nvme-fcloop: fix "inconsistent {IN-HARDIRQ-W} -> {HARDIRQ-ON-W} usage" Greg Kroah-Hartman
2023-05-15 16:27 ` [PATCH 5.10 172/381] bpf, sockmap: Revert buggy deadlock fix in the sockhash and sockmap Greg Kroah-Hartman
2023-05-15 16:27 ` [PATCH 5.10 173/381] md/raid10: fix leak of r10bio->remaining for recovery Greg Kroah-Hartman
2023-05-15 16:27 ` [PATCH 5.10 174/381] md/raid10: fix memleak for conf->bio_split Greg Kroah-Hartman
2023-05-15 16:27 ` [PATCH 5.10 175/381] md/raid10: fix memleak of md thread Greg Kroah-Hartman
2023-05-15 16:27 ` [PATCH 5.10 176/381] wifi: iwlwifi: yoyo: Fix possible division by zero Greg Kroah-Hartman
2023-05-15 16:27 ` [PATCH 5.10 177/381] wifi: iwlwifi: fw: move memset before early return Greg Kroah-Hartman
2023-05-15 16:27 ` [PATCH 5.10 178/381] jdb2: Dont refuse invalidation of already invalidated buffers Greg Kroah-Hartman
2023-05-15 16:27 ` [PATCH 5.10 179/381] wifi: iwlwifi: make the loop for card preparation effective Greg Kroah-Hartman
2023-05-15 16:27 ` [PATCH 5.10 180/381] wifi: iwlwifi: mvm: check firmware response size Greg Kroah-Hartman
2023-05-15 16:27 ` [PATCH 5.10 181/381] wifi: iwlwifi: fw: fix memory leak in debugfs Greg Kroah-Hartman
2023-05-15 16:27 ` [PATCH 5.10 182/381] ixgbe: Allow flow hash to be set via ethtool Greg Kroah-Hartman
2023-05-15 16:27 ` [PATCH 5.10 183/381] ixgbe: Enable setting RSS table to default values Greg Kroah-Hartman
2023-05-15 16:27 ` [PATCH 5.10 184/381] bpf: Dont EFAULT for getsockopt with optval=NULL Greg Kroah-Hartman
2023-05-15 16:27 ` [PATCH 5.10 185/381] netfilter: nf_tables: dont write table validation state without mutex Greg Kroah-Hartman
2023-05-15 16:27 ` [PATCH 5.10 186/381] net/sched: sch_fq: fix integer overflow of "credit" Greg Kroah-Hartman
2023-05-15 16:27 ` [PATCH 5.10 187/381] ipv4: Fix potential uninit variable access bug in __ip_make_skb() Greg Kroah-Hartman
2023-05-15 16:27 ` [PATCH 5.10 188/381] Revert "Bluetooth: btsdio: fix use after free bug in btsdio_remove due to unfinished work" Greg Kroah-Hartman
2023-05-15 16:27 ` [PATCH 5.10 189/381] netlink: Use copy_to_user() for optval in netlink_getsockopt() Greg Kroah-Hartman
2023-05-15 16:27 ` [PATCH 5.10 190/381] net: amd: Fix link leak when verifying config failed Greg Kroah-Hartman
2023-05-15 16:27 ` [PATCH 5.10 191/381] tcp/udp: Fix memleaks of sk and zerocopy skbs with TX timestamp Greg Kroah-Hartman
2023-05-15 16:27 ` [PATCH 5.10 192/381] ipmi: ASPEED_BT_IPMI_BMC: select REGMAP_MMIO instead of depending on it Greg Kroah-Hartman
2023-05-15 16:27 ` [PATCH 5.10 193/381] pstore: Revert pmsg_lock back to a normal mutex Greg Kroah-Hartman
2023-05-15 16:27 ` [PATCH 5.10 194/381] usb: host: xhci-rcar: remove leftover quirk handling Greg Kroah-Hartman
2023-05-15 16:27 ` [PATCH 5.10 195/381] usb: dwc3: gadget: Change condition for processing suspend event Greg Kroah-Hartman
2023-05-15 16:27 ` [PATCH 5.10 196/381] fpga: bridge: fix kernel-doc parameter description Greg Kroah-Hartman
2023-05-15 16:27 ` [PATCH 5.10 197/381] iio: light: max44009: add missing OF device matching Greg Kroah-Hartman
2023-05-15 16:27 ` [PATCH 5.10 198/381] spi: spi-imx: using pm_runtime_resume_and_get instead of pm_runtime_get_sync Greg Kroah-Hartman
2023-05-15 16:27 ` [PATCH 5.10 199/381] spi: imx: Dont skip cleanup in removes error path Greg Kroah-Hartman
2023-05-15 16:27 ` [PATCH 5.10 200/381] usb: gadget: udc: renesas_usb3: Fix use after free bug in renesas_usb3_remove due to race condition Greg Kroah-Hartman
2023-05-15 16:27 ` [PATCH 5.10 201/381] PCI: imx6: Install the fault handler only on compatible match Greg Kroah-Hartman
2023-05-15 16:27 ` [PATCH 5.10 202/381] ASoC: es8316: Use IRQF_NO_AUTOEN when requesting the IRQ Greg Kroah-Hartman
2023-05-15 16:27 ` [PATCH 5.10 203/381] ASoC: es8316: Handle optional IRQ assignment Greg Kroah-Hartman
2023-05-15 16:27 ` [PATCH 5.10 204/381] linux/vt_buffer.h: allow either builtin or modular for macros Greg Kroah-Hartman
2023-05-15 16:27   ` Greg Kroah-Hartman
2023-05-15 16:27 ` [PATCH 5.10 205/381] spi: qup: Dont skip cleanup in removes error path Greg Kroah-Hartman
2023-05-15 16:27 ` [PATCH 5.10 206/381] spi: fsl-spi: Fix CPM/QE mode Litte Endian Greg Kroah-Hartman
2023-05-15 16:27 ` [PATCH 5.10 207/381] vmci_host: fix a race condition in vmci_host_poll() causing GPF Greg Kroah-Hartman
2023-05-15 16:27 ` [PATCH 5.10 208/381] of: Fix modalias string generation Greg Kroah-Hartman
2023-05-15 16:27 ` [PATCH 5.10 209/381] PCI/EDR: Clear Device Status after EDR error recovery Greg Kroah-Hartman
2023-05-15 16:27 ` [PATCH 5.10 210/381] ia64: mm/contig: fix section mismatch warning/error Greg Kroah-Hartman
2023-05-15 16:27 ` [PATCH 5.10 211/381] ia64: salinfo: placate defined-but-not-used warning Greg Kroah-Hartman
2023-05-15 16:27 ` [PATCH 5.10 212/381] scripts/gdb: bail early if there are no clocks Greg Kroah-Hartman
2023-05-15 16:27 ` [PATCH 5.10 213/381] scripts/gdb: bail early if there are no generic PD Greg Kroah-Hartman
2023-05-15 16:27 ` [PATCH 5.10 214/381] coresight: etm_pmu: Set the module field Greg Kroah-Hartman
2023-05-15 16:27 ` [PATCH 5.10 215/381] ASoC: fsl_mqs: move of_node_put() to the correct location Greg Kroah-Hartman
2023-05-15 16:27 ` [PATCH 5.10 216/381] spi: cadence-quadspi: fix suspend-resume implementations Greg Kroah-Hartman
2023-05-15 16:27 ` [PATCH 5.10 217/381] i2c: cadence: cdns_i2c_master_xfer(): Fix runtime PM leak on error path Greg Kroah-Hartman
2023-05-15 16:27 ` [PATCH 5.10 218/381] uapi/linux/const.h: prefer ISO-friendly __typeof__ Greg Kroah-Hartman
2023-05-15 16:27 ` [PATCH 5.10 219/381] sh: sq: Fix incorrect element size for allocating bitmap buffer Greg Kroah-Hartman
2023-05-15 16:27 ` [PATCH 5.10 220/381] usb: gadget: tegra-xudc: Fix crash in vbus_draw Greg Kroah-Hartman
2023-05-15 16:27 ` [PATCH 5.10 221/381] usb: chipidea: fix missing goto in `ci_hdrc_probe` Greg Kroah-Hartman
2023-05-15 16:27 ` [PATCH 5.10 222/381] usb: mtu3: fix kernel panic at qmu transfer done irq handler Greg Kroah-Hartman
2023-05-15 16:27 ` [PATCH 5.10 223/381] firmware: stratix10-svc: Fix an NULL vs IS_ERR() bug in probe Greg Kroah-Hartman
2023-05-15 16:27 ` [PATCH 5.10 224/381] tty: serial: fsl_lpuart: adjust buffer length to the intended size Greg Kroah-Hartman
2023-05-15 16:27 ` [PATCH 5.10 225/381] serial: 8250: Add missing wakeup event reporting Greg Kroah-Hartman
2023-05-15 16:27 ` [PATCH 5.10 226/381] staging: rtl8192e: Fix W_DISABLE# does not work after stop/start Greg Kroah-Hartman
2023-05-15 16:27 ` [PATCH 5.10 227/381] spmi: Add a check for remove callback when removing a SPMI driver Greg Kroah-Hartman
2023-05-15 16:27 ` [PATCH 5.10 228/381] macintosh/windfarm_smu_sat: Add missing of_node_put() Greg Kroah-Hartman
2023-05-15 16:28 ` [PATCH 5.10 229/381] powerpc/mpc512x: fix resource printk format warning Greg Kroah-Hartman
2023-05-15 16:28 ` [PATCH 5.10 230/381] powerpc/wii: fix resource printk format warnings Greg Kroah-Hartman
2023-05-15 16:28 ` [PATCH 5.10 231/381] powerpc/sysdev/tsi108: " Greg Kroah-Hartman
2023-05-15 16:28 ` [PATCH 5.10 232/381] macintosh: via-pmu-led: requires ATA to be set Greg Kroah-Hartman
2023-05-15 16:28 ` [PATCH 5.10 233/381] powerpc/rtas: use memmove for potentially overlapping buffer copy Greg Kroah-Hartman
2023-05-15 16:28 ` [PATCH 5.10 234/381] perf/core: Fix hardlockup failure caused by perf throttle Greg Kroah-Hartman
2023-05-15 16:28 ` [PATCH 5.10 235/381] clk: at91: clk-sam9x60-pll: fix return value check Greg Kroah-Hartman
2023-05-15 16:28 ` [PATCH 5.10 236/381] RDMA/siw: Fix potential page_array out of range access Greg Kroah-Hartman
2023-05-15 16:28 ` [PATCH 5.10 237/381] RDMA/rdmavt: Delete unnecessary NULL check Greg Kroah-Hartman
2023-05-15 16:28 ` [PATCH 5.10 238/381] workqueue: Rename "delayed" (delayed by active management) to "inactive" Greg Kroah-Hartman
2023-05-15 16:28 ` [PATCH 5.10 239/381] workqueue: Fix hung time report of worker pools Greg Kroah-Hartman
2023-05-15 16:28 ` [PATCH 5.10 240/381] rtc: omap: include header for omap_rtc_power_off_program prototype Greg Kroah-Hartman
2023-05-15 16:28 ` [PATCH 5.10 241/381] RDMA/mlx4: Prevent shift wrapping in set_user_sq_size() Greg Kroah-Hartman
2023-05-15 16:28 ` [PATCH 5.10 242/381] rtc: meson-vrtc: Use ktime_get_real_ts64() to get the current time Greg Kroah-Hartman
2023-05-15 16:28 ` [PATCH 5.10 243/381] power: supply: generic-adc-battery: fix unit scaling Greg Kroah-Hartman
2023-05-15 16:28 ` [PATCH 5.10 244/381] clk: add missing of_node_put() in "assigned-clocks" property parsing Greg Kroah-Hartman
2023-05-15 16:28 ` [PATCH 5.10 245/381] RDMA/siw: Remove namespace check from siw_netdev_event() Greg Kroah-Hartman
2023-05-15 16:28 ` [PATCH 5.10 246/381] RDMA/cm: Trace icm_send_rej event before the cm state is reset Greg Kroah-Hartman
2023-05-15 16:28 ` [PATCH 5.10 247/381] RDMA/srpt: Add a check for valid mad_agent pointer Greg Kroah-Hartman
2023-05-15 16:28 ` [PATCH 5.10 248/381] IB/hfi1: Fix SDMA mmu_rb_node not being evicted in LRU order Greg Kroah-Hartman
2023-05-15 16:28 ` [PATCH 5.10 249/381] IB/hfi1: Add AIP tx traces Greg Kroah-Hartman
2023-05-15 16:28 ` [PATCH 5.10 250/381] IB/hfi1: Add additional usdma traces Greg Kroah-Hartman
2023-05-15 16:28 ` [PATCH 5.10 251/381] IB/hfi1: Fix bugs with non-PAGE_SIZE-end multi-iovec user SDMA requests Greg Kroah-Hartman
2023-05-15 16:28 ` [PATCH 5.10 252/381] NFSv4.1: Always send a RECLAIM_COMPLETE after establishing lease Greg Kroah-Hartman
2023-05-15 16:28 ` [PATCH 5.10 253/381] firmware: raspberrypi: Introduce devm_rpi_firmware_get() Greg Kroah-Hartman
2023-05-15 16:28 ` [PATCH 5.10 254/381] input: raspberrypi-ts: Release firmware handle when not needed Greg Kroah-Hartman
2023-05-15 16:28 ` [PATCH 5.10 255/381] Input: raspberrypi-ts - fix refcount leak in rpi_ts_probe Greg Kroah-Hartman
2023-05-15 16:28 ` [PATCH 5.10 256/381] RDMA/mlx5: Fix flow counter query via DEVX Greg Kroah-Hartman
2023-05-15 16:28 ` [PATCH 5.10 257/381] SUNRPC: remove the maximum number of retries in call_bind_status Greg Kroah-Hartman
2023-05-15 16:28 ` [PATCH 5.10 258/381] RDMA/mlx5: Use correct device num_ports when modify DC Greg Kroah-Hartman
2023-05-15 16:28 ` [PATCH 5.10 259/381] clocksource/drivers/davinci: Fix memory leak in davinci_timer_register when init fails Greg Kroah-Hartman
2023-05-15 16:28 ` [PATCH 5.10 260/381] openrisc: Properly store r31 to pt_regs on unhandled exceptions Greg Kroah-Hartman
2023-05-15 16:28 ` [PATCH 5.10 261/381] ext4: fix use-after-free read in ext4_find_extent for bigalloc + inline Greg Kroah-Hartman
2023-05-15 16:28 ` [PATCH 5.10 262/381] leds: TI_LMU_COMMON: select REGMAP instead of depending on it Greg Kroah-Hartman
2023-05-15 16:28 ` [PATCH 5.10 263/381] dmaengine: mv_xor_v2: Fix an error code Greg Kroah-Hartman
2023-05-15 16:28 ` [PATCH 5.10 264/381] leds: tca6507: Fix error handling of using fwnode_property_read_string Greg Kroah-Hartman
2023-05-15 16:28 ` [PATCH 5.10 265/381] pwm: mtk-disp: Dont check the return code of pwmchip_remove() Greg Kroah-Hartman
2023-05-15 16:28 ` [PATCH 5.10 266/381] pwm: mtk-disp: Adjust the clocks to avoid them mismatch Greg Kroah-Hartman
2023-05-15 16:28 ` [PATCH 5.10 267/381] pwm: mtk-disp: Disable shadow registers before setting backlight values Greg Kroah-Hartman
2023-05-15 16:28 ` [PATCH 5.10 268/381] phy: tegra: xusb: Add missing tegra_xusb_port_unregister for usb2_port and ulpi_port Greg Kroah-Hartman
2023-05-15 16:28 ` [PATCH 5.10 269/381] dmaengine: dw-edma: Fix to change for continuous transfer Greg Kroah-Hartman
2023-05-15 16:28 ` [PATCH 5.10 270/381] dmaengine: dw-edma: Fix to enable to issue dma request on DMA processing Greg Kroah-Hartman
2023-05-15 16:28 ` [PATCH 5.10 271/381] dmaengine: at_xdmac: do not enable all cyclic channels Greg Kroah-Hartman
2023-05-15 16:28 ` [PATCH 5.10 272/381] thermal/drivers/mediatek: Use devm_of_iomap to avoid resource leak in mtk_thermal_probe Greg Kroah-Hartman
2023-05-15 16:28 ` [PATCH 5.10 273/381] mfd: tqmx86: Do not access I2C_DETECT register through io_base Greg Kroah-Hartman
2023-05-15 16:28 ` [PATCH 5.10 274/381] mfd: tqmx86: Remove incorrect TQMx90UC board ID Greg Kroah-Hartman
2023-05-15 16:28 ` [PATCH 5.10 275/381] mfd: tqmx86: Add support for TQMx110EB and TQMxE40x Greg Kroah-Hartman
2023-05-15 16:28 ` [PATCH 5.10 276/381] mfd: tqmx86: Specify IO port register range more precisely Greg Kroah-Hartman
2023-05-15 16:28 ` [PATCH 5.10 277/381] mfd: tqmx86: Correct board names for TQMxE39x Greg Kroah-Hartman
2023-05-15 16:28 ` [PATCH 5.10 278/381] afs: Fix updating of i_size with dv jump from server Greg Kroah-Hartman
2023-05-15 16:28 ` [PATCH 5.10 279/381] scripts/gdb: fix lx-timerlist for Python3 Greg Kroah-Hartman
2023-05-15 16:28 ` [PATCH 5.10 280/381] btrfs: scrub: reject unsupported scrub flags Greg Kroah-Hartman
2023-05-15 16:28 ` [PATCH 5.10 281/381] s390/dasd: fix hanging blockdevice after request requeue Greg Kroah-Hartman
2023-05-15 16:28 ` [PATCH 5.10 282/381] ia64: fix an addr to taddr in huge_pte_offset() Greg Kroah-Hartman
2023-05-15 16:28 ` [PATCH 5.10 283/381] dm clone: call kmem_cache_destroy() in dm_clone_init() error path Greg Kroah-Hartman
2023-05-15 16:28 ` [PATCH 5.10 284/381] dm integrity: call kmem_cache_destroy() in dm_integrity_init() " Greg Kroah-Hartman
2023-05-15 16:28 ` [PATCH 5.10 285/381] dm flakey: fix a crash with invalid table line Greg Kroah-Hartman
2023-05-15 16:28 ` [PATCH 5.10 286/381] dm ioctl: fix nested locking in table_clear() to remove deadlock concern Greg Kroah-Hartman
2023-05-15 16:28 ` [PATCH 5.10 287/381] perf auxtrace: Fix address filter entire kernel size Greg Kroah-Hartman
2023-05-15 16:28 ` [PATCH 5.10 288/381] perf intel-pt: Fix CYC timestamps after standalone CBR Greg Kroah-Hartman
2023-05-15 16:29 ` [PATCH 5.10 289/381] arm64: Always load shadow stack pointer directly from the task struct Greg Kroah-Hartman
2023-05-15 16:29 ` [PATCH 5.10 290/381] arm64: Stash shadow stack pointer in the task struct on interrupt Greg Kroah-Hartman
2023-05-15 16:29 ` [PATCH 5.10 291/381] debugobject: Ensure pool refill (again) Greg Kroah-Hartman
2023-05-15 16:29 ` [PATCH 5.10 292/381] sound/oss/dmasound: fix dmasound_setup defined but not used Greg Kroah-Hartman
2023-05-15 16:29 ` [PATCH 5.10 293/381] arm64: dts: qcom: sdm845: correct dynamic power coefficients - again Greg Kroah-Hartman
2023-05-15 16:29 ` [PATCH 5.10 294/381] scsi: target: core: Avoid smp_processor_id() in preemptible code Greg Kroah-Hartman
2023-05-15 16:29 ` [PATCH 5.10 295/381] netfilter: nf_tables: deactivate anonymous set from preparation phase Greg Kroah-Hartman
2023-05-15 16:29 ` [PATCH 5.10 296/381] tty: create internal tty.h file Greg Kroah-Hartman
2023-05-15 16:29 ` [PATCH 5.10 297/381] tty: audit: move some local functions out of tty.h Greg Kroah-Hartman
2023-05-15 16:29 ` [PATCH 5.10 298/381] tty: move some internal tty lock enums and " Greg Kroah-Hartman
2023-05-15 16:29 ` [PATCH 5.10 299/381] tty: move some tty-only functions to drivers/tty/tty.h Greg Kroah-Hartman
2023-05-15 16:29 ` [PATCH 5.10 300/381] tty: clean include/linux/tty.h up Greg Kroah-Hartman
2023-05-15 16:29 ` [PATCH 5.10 301/381] tty: Prevent writing chars during tcsetattr TCSADRAIN/FLUSH Greg Kroah-Hartman
2023-05-15 16:29 ` [PATCH 5.10 302/381] ring-buffer: Ensure proper resetting of atomic variables in ring_buffer_reset_online_cpus Greg Kroah-Hartman
2023-05-15 16:29 ` [PATCH 5.10 303/381] crypto: ccp - Clear PSP interrupt status register before calling handler Greg Kroah-Hartman
2023-05-15 16:29 ` [PATCH 5.10 304/381] mailbox: zynq: Switch to flexible array to simplify code Greg Kroah-Hartman
2023-05-15 16:29 ` [PATCH 5.10 305/381] mailbox: zynqmp: Fix counts of child nodes Greg Kroah-Hartman
2023-05-15 16:29 ` [PATCH 5.10 306/381] dm verity: skip redundant verity_handle_err() on I/O errors Greg Kroah-Hartman
2023-05-15 16:29 ` [PATCH 5.10 307/381] dm verity: fix error handling for check_at_most_once on FEC Greg Kroah-Hartman
2023-05-16  1:09   ` Yeongjin Gil
2023-05-16  1:38   ` Yeongjin Gil
2023-05-16  5:24     ` 'Greg Kroah-Hartman'
2023-05-15 16:29 ` [PATCH 5.10 308/381] scsi: qedi: Fix use after free bug in qedi_remove() Greg Kroah-Hartman
2023-05-15 16:29 ` [PATCH 5.10 309/381] net/ncsi: clear Tx enable mode when handling a Config required AEN Greg Kroah-Hartman
2023-05-15 16:29 ` [PATCH 5.10 310/381] net/sched: cls_api: remove block_cb from driver_list before freeing Greg Kroah-Hartman
2023-05-15 16:29 ` [PATCH 5.10 311/381] sit: update dev->needed_headroom in ipip6_tunnel_bind_dev() Greg Kroah-Hartman
2023-05-15 16:29 ` [PATCH 5.10 312/381] net: dsa: mv88e6xxx: add mv88e6321 rsvd2cpu Greg Kroah-Hartman
2023-05-15 16:29 ` [PATCH 5.10 313/381] writeback: fix call of incorrect macro Greg Kroah-Hartman
2023-05-15 16:29 ` [PATCH 5.10 314/381] watchdog: dw_wdt: Fix the error handling path of dw_wdt_drv_probe() Greg Kroah-Hartman
2023-05-15 16:29 ` [PATCH 5.10 315/381] net/sched: act_mirred: Add carrier check Greg Kroah-Hartman
2023-05-15 16:29 ` [PATCH 5.10 316/381] sfc: Fix module EEPROM reporting for QSFP modules Greg Kroah-Hartman
2023-05-15 16:29 ` [PATCH 5.10 317/381] rxrpc: Fix hard call timeout units Greg Kroah-Hartman
2023-05-15 16:29 ` [PATCH 5.10 318/381] octeontx2-pf: Disable packet I/O for graceful exit Greg Kroah-Hartman
2023-05-15 16:29 ` [PATCH 5.10 319/381] octeontx2-vf: Detach LF resources on probe cleanup Greg Kroah-Hartman
2023-05-15 16:29 ` [PATCH 5.10 320/381] ionic: remove noise from ethtool rxnfc error msg Greg Kroah-Hartman
2023-05-15 16:29 ` [PATCH 5.10 321/381] af_packet: Dont send zero-byte data in packet_sendmsg_spkt() Greg Kroah-Hartman
2023-05-15 16:29 ` [PATCH 5.10 322/381] drm/amdgpu: add a missing lock for AMDGPU_SCHED Greg Kroah-Hartman
2023-05-15 16:29 ` [PATCH 5.10 323/381] ALSA: caiaq: input: Add error handling for unsupported input methods in `snd_usb_caiaq_input_init` Greg Kroah-Hartman
2023-05-15 16:29 ` [PATCH 5.10 324/381] net: dsa: mt7530: fix corrupt frames using trgmii on 40 MHz XTAL MT7621 Greg Kroah-Hartman
2023-05-15 16:29 ` [PATCH 5.10 325/381] virtio_net: split free_unused_bufs() Greg Kroah-Hartman
2023-05-15 16:29 ` [PATCH 5.10 326/381] virtio_net: suppress cpu stall when free_unused_bufs Greg Kroah-Hartman
2023-05-15 16:29 ` [PATCH 5.10 327/381] net: enetc: check the index of the SFI rather than the handle Greg Kroah-Hartman
2023-05-15 16:29 ` [PATCH 5.10 328/381] net: bcmgenet: Remove phy_stop() from bcmgenet_netif_stop() Greg Kroah-Hartman
2023-05-16  3:41   ` Florian Fainelli
2023-05-15 16:29 ` [PATCH 5.10 329/381] perf vendor events power9: Remove UTF-8 characters from JSON files Greg Kroah-Hartman
2023-05-15 16:29   ` Greg Kroah-Hartman
2023-05-15 16:29 ` [PATCH 5.10 330/381] perf pmu: zfree() expects a pointer to a pointer to zero it after freeing its contents Greg Kroah-Hartman
2023-05-15 16:29 ` [PATCH 5.10 331/381] perf map: Delete two variable initialisations before null pointer checks in sort__sym_from_cmp() Greg Kroah-Hartman
2023-05-15 16:29 ` [PATCH 5.10 332/381] crypto: sun8i-ss - Fix a test in sun8i_ss_setup_ivs() Greg Kroah-Hartman
2023-05-15 16:29 ` [PATCH 5.10 333/381] perf symbols: Fix return incorrect build_id size in elf_read_build_id() Greg Kroah-Hartman
2023-05-15 16:29 ` [PATCH 5.10 334/381] btrfs: fix btrfs_prev_leaf() to not return the same key twice Greg Kroah-Hartman
2023-05-15 16:29 ` [PATCH 5.10 335/381] btrfs: dont free qgroup space unless specified Greg Kroah-Hartman
2023-05-15 16:29 ` [PATCH 5.10 336/381] btrfs: print-tree: parent bytenr must be aligned to sector size Greg Kroah-Hartman
2023-05-15 16:29 ` [PATCH 5.10 337/381] cifs: fix pcchunk length type in smb2_copychunk_range Greg Kroah-Hartman
2023-05-15 16:29 ` [PATCH 5.10 338/381] platform/x86: touchscreen_dmi: Add upside-down quirk for GDIX1002 ts on the Juno Tablet Greg Kroah-Hartman
2023-05-15 16:29 ` [PATCH 5.10 339/381] platform/x86: touchscreen_dmi: Add info for the Dexp Ursus KX210i Greg Kroah-Hartman
2023-05-15 16:29 ` [PATCH 5.10 340/381] inotify: Avoid reporting event with invalid wd Greg Kroah-Hartman
2023-05-15 16:29 ` [PATCH 5.10 341/381] sh: math-emu: fix macro redefined warning Greg Kroah-Hartman
2023-05-15 16:29 ` [PATCH 5.10 342/381] sh: mcount.S: fix build error when PRINTK is not enabled Greg Kroah-Hartman
2023-05-15 16:29 ` [PATCH 5.10 343/381] sh: init: use OF_EARLY_FLATTREE for early init Greg Kroah-Hartman
2023-05-15 16:29 ` [PATCH 5.10 344/381] sh: nmi_debug: fix return value of __setup handler Greg Kroah-Hartman
2023-05-15 16:29 ` [PATCH 5.10 345/381] remoteproc: stm32: Call of_node_put() on iteration error Greg Kroah-Hartman
2023-05-15 16:29 ` [PATCH 5.10 346/381] remoteproc: st: " Greg Kroah-Hartman
2023-05-15 16:29 ` [PATCH 5.10 347/381] ARM: dts: exynos: fix WM8960 clock name in Itop Elite Greg Kroah-Hartman
2023-05-15 16:29 ` [PATCH 5.10 348/381] ARM: dts: s5pv210: correct MIPI CSIS clock name Greg Kroah-Hartman
2023-05-15 16:30 ` [PATCH 5.10 349/381] f2fs: fix potential corruption when moving a directory Greg Kroah-Hartman
2023-05-15 16:30 ` [PATCH 5.10 350/381] drm/panel: otm8009a: Set backlight parent to panel device Greg Kroah-Hartman
2023-05-15 16:30 ` [PATCH 5.10 351/381] drm/amdgpu: fix an amdgpu_irq_put() issue in gmc_v9_0_hw_fini() Greg Kroah-Hartman
2023-05-15 16:30 ` [PATCH 5.10 352/381] drm/amdgpu/gfx: disable gfx9 cp_ecc_error_irq only when enabling legacy gfx ras Greg Kroah-Hartman
2023-05-15 16:30 ` [PATCH 5.10 353/381] drm/amdgpu: disable sdma ecc irq only when sdma RAS is enabled in suspend Greg Kroah-Hartman
2023-05-15 16:30 ` [PATCH 5.10 354/381] HID: wacom: Set a default resolution for older tablets Greg Kroah-Hartman
2023-05-15 16:30 ` [PATCH 5.10 355/381] HID: wacom: insert timestamp to packed Bluetooth (BT) events Greg Kroah-Hartman
2023-05-15 16:30 ` [PATCH 5.10 356/381] KVM: x86: hyper-v: Avoid calling kvm_make_vcpus_request_mask() with vcpu_mask==NULL Greg Kroah-Hartman
2023-05-15 16:30 ` [PATCH 5.10 357/381] KVM: x86: do not report a vCPU as preempted outside instruction boundaries Greg Kroah-Hartman
2023-05-15 16:30 ` [PATCH 5.10 358/381] ext4: fix WARNING in mb_find_extent Greg Kroah-Hartman
2023-05-15 16:30 ` [PATCH 5.10 359/381] ext4: avoid a potential slab-out-of-bounds in ext4_group_desc_csum Greg Kroah-Hartman
2023-05-15 16:30 ` [PATCH 5.10 360/381] ext4: fix data races when using cached status extents Greg Kroah-Hartman
2023-05-15 16:30 ` [PATCH 5.10 361/381] ext4: check iomap type only if ext4_iomap_begin() does not fail Greg Kroah-Hartman
2023-05-15 16:30 ` [PATCH 5.10 362/381] ext4: improve error recovery code paths in __ext4_remount() Greg Kroah-Hartman
2023-05-15 16:30 ` [PATCH 5.10 363/381] ext4: fix deadlock when converting an inline directory in nojournal mode Greg Kroah-Hartman
2023-05-15 16:30 ` [PATCH 5.10 364/381] ext4: add bounds checking in get_max_inline_xattr_value_size() Greg Kroah-Hartman
2023-05-15 16:30 ` [PATCH 5.10 365/381] ext4: bail out of ext4_xattr_ibody_get() fails for any reason Greg Kroah-Hartman
2023-05-15 16:30 ` [PATCH 5.10 366/381] ext4: remove a BUG_ON in ext4_mb_release_group_pa() Greg Kroah-Hartman
2023-05-15 16:30 ` [PATCH 5.10 367/381] ext4: fix invalid free tracking in ext4_xattr_move_to_block() Greg Kroah-Hartman
2023-05-15 16:30 ` [PATCH 5.10 368/381] serial: 8250: Fix serial8250_tx_empty() race with DMA Tx Greg Kroah-Hartman
2023-05-15 16:30 ` [PATCH 5.10 369/381] drbd: correctly submit flush bio on barrier Greg Kroah-Hartman
2023-05-15 16:30 ` [PATCH 5.10 370/381] KVM: x86: Ensure PV TLB flush tracepoint reflects KVM behavior Greg Kroah-Hartman
2023-05-15 16:30 ` [PATCH 5.10 371/381] KVM: x86: Fix recording of guest steal time / preempted status Greg Kroah-Hartman
2023-05-15 16:30 ` [PATCH 5.10 372/381] KVM: Fix steal time asm constraints Greg Kroah-Hartman
2023-05-15 16:30 ` [PATCH 5.10 373/381] KVM: x86: Remove obsolete disabling of page faults in kvm_arch_vcpu_put() Greg Kroah-Hartman
2023-05-15 16:30 ` [PATCH 5.10 374/381] KVM: x86: do not set st->preempted when going back to user space Greg Kroah-Hartman
2023-05-15 16:30 ` [PATCH 5.10 375/381] KVM: x86: revalidate steal time cache if MSR value changes Greg Kroah-Hartman
2023-05-15 16:30 ` [PATCH 5.10 376/381] KVM: x86: do not report preemption if the steal time cache is stale Greg Kroah-Hartman
2023-05-15 16:30 ` [PATCH 5.10 377/381] KVM: x86: move guest_pv_has out of user_access section Greg Kroah-Hartman
2023-05-15 16:30 ` [PATCH 5.10 378/381] printk: declare printk_deferred_{enter,safe}() in include/linux/printk.h Greg Kroah-Hartman
2023-05-15 16:30 ` [PATCH 5.10 379/381] drm/exynos: move to use request_irq by IRQF_NO_AUTOEN flag Greg Kroah-Hartman
2023-05-15 16:30 ` [PATCH 5.10 380/381] mm/page_alloc: fix potential deadlock on zonelist_update_seq seqlock Greg Kroah-Hartman
2023-05-15 16:30 ` [PATCH 5.10 381/381] drm/amd/display: Fix hang when skipping modeset Greg Kroah-Hartman
2023-05-15 20:10 ` [PATCH 5.10 000/381] 5.10.180-rc1 review Chris Paterson
2023-05-16  1:30 ` Shuah Khan
2023-05-16  8:35 ` Salvatore Bonaccorso
2023-05-17  8:28   ` Greg Kroah-Hartman
2023-05-16  9:14 ` Sudip Mukherjee (Codethink)
2023-05-17  8:51   ` Greg Kroah-Hartman
2023-05-17  9:41     ` Naresh Kamboju
2023-05-17  9:51       ` Greg Kroah-Hartman
2023-05-17 19:52         ` Sudip Mukherjee (Codethink)
2023-05-22 18:58           ` Greg Kroah-Hartman
2023-05-16 18:03 ` Naresh Kamboju
2023-05-17  2:49 ` Guenter Roeck
2023-05-17  7:55 ` Jon Hunter
2023-05-20 21:39 ` Greg Thelen
2023-05-26 18:18   ` Greg Kroah-Hartman

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20230515161741.681574771@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=hverkuil-cisco@xs4all.nl \
    --cc=patches@lists.linux.dev \
    --cc=sashal@kernel.org \
    --cc=stable@vger.kernel.org \
    --cc=zyytlz.wz@163.com \
    /path/to/YOUR_REPLY

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

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.