linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: linux-kernel@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	stable@vger.kernel.org, Shuai Xue <xueshuai@linux.alibaba.com>,
	Tony Luck <tony.luck@intel.com>,
	"Rafael J. Wysocki" <rafael.j.wysocki@intel.com>,
	Sasha Levin <sashal@kernel.org>
Subject: [PATCH 6.0 654/862] ACPI: APEI: do not add task_work to kernel thread to avoid memory leak
Date: Wed, 19 Oct 2022 10:32:21 +0200	[thread overview]
Message-ID: <20221019083318.839392843@linuxfoundation.org> (raw)
In-Reply-To: <20221019083249.951566199@linuxfoundation.org>

From: Shuai Xue <xueshuai@linux.alibaba.com>

[ Upstream commit 415fed694fe11395df56e05022d6e7cee1d39dd3 ]

If an error is detected as a result of user-space process accessing a
corrupt memory location, the CPU may take an abort. Then the platform
firmware reports kernel via NMI like notifications, e.g. NOTIFY_SEA,
NOTIFY_SOFTWARE_DELEGATED, etc.

For NMI like notifications, commit 7f17b4a121d0 ("ACPI: APEI: Kick the
memory_failure() queue for synchronous errors") keep track of whether
memory_failure() work was queued, and make task_work pending to flush out
the queue so that the work is processed before return to user-space.

The code use init_mm to check whether the error occurs in user space:

    if (current->mm != &init_mm)

The condition is always true, becase _nobody_ ever has "init_mm" as a real
VM any more.

In addition to abort, errors can also be signaled as asynchronous
exceptions, such as interrupt and SError. In such case, the interrupted
current process could be any kind of thread. When a kernel thread is
interrupted, the work ghes_kick_task_work deferred to task_work will never
be processed because entry_handler returns to call ret_to_kernel() instead
of ret_to_user(). Consequently, the estatus_node alloced from
ghes_estatus_pool in ghes_in_nmi_queue_one_entry() will not be freed.
After around 200 allocations in our platform, the ghes_estatus_pool will
run of memory and ghes_in_nmi_queue_one_entry() returns ENOMEM. As a
result, the event failed to be processed.

    sdei: event 805 on CPU 113 failed with error: -2

Finally, a lot of unhandled events may cause platform firmware to exceed
some threshold and reboot.

The condition should generally just do

    if (current->mm)

as described in active_mm.rst documentation.

Then if an asynchronous error is detected when a kernel thread is running,
(e.g. when detected by a background scrubber), do not add task_work to it
as the original patch intends to do.

Fixes: 7f17b4a121d0 ("ACPI: APEI: Kick the memory_failure() queue for synchronous errors")
Signed-off-by: Shuai Xue <xueshuai@linux.alibaba.com>
Reviewed-by: Tony Luck <tony.luck@intel.com>
Signed-off-by: Rafael J. Wysocki <rafael.j.wysocki@intel.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 drivers/acpi/apei/ghes.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/acpi/apei/ghes.c b/drivers/acpi/apei/ghes.c
index d91ad378c00d..80ad530583c9 100644
--- a/drivers/acpi/apei/ghes.c
+++ b/drivers/acpi/apei/ghes.c
@@ -985,7 +985,7 @@ static void ghes_proc_in_irq(struct irq_work *irq_work)
 				ghes_estatus_cache_add(generic, estatus);
 		}
 
-		if (task_work_pending && current->mm != &init_mm) {
+		if (task_work_pending && current->mm) {
 			estatus_node->task_work.func = ghes_kick_task_work;
 			estatus_node->task_work_cpu = smp_processor_id();
 			ret = task_work_add(current, &estatus_node->task_work,
-- 
2.35.1




  parent reply	other threads:[~2022-10-19 10:56 UTC|newest]

Thread overview: 899+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-10-19  8:21 [PATCH 6.0 000/862] 6.0.3-rc1 review Greg Kroah-Hartman
2022-10-19  8:21 ` [PATCH 6.0 001/862] ALSA: oss: Fix potential deadlock at unregistration Greg Kroah-Hartman
2022-10-19  8:21 ` [PATCH 6.0 002/862] ALSA: rawmidi: Drop register_mutex in snd_rawmidi_free() Greg Kroah-Hartman
2022-10-19  8:21 ` [PATCH 6.0 003/862] ALSA: usb-audio: Fix potential memory leaks Greg Kroah-Hartman
2022-10-19  8:21 ` [PATCH 6.0 004/862] ALSA: usb-audio: Fix NULL dererence at error path Greg Kroah-Hartman
2022-10-19  8:21 ` [PATCH 6.0 005/862] ALSA: hda/realtek: remove ALC289_FIXUP_DUAL_SPK for Dell 5530 Greg Kroah-Hartman
2022-10-19  8:21 ` [PATCH 6.0 006/862] ALSA: hda/realtek: Correct pin configs for ASUS G533Z Greg Kroah-Hartman
2022-10-19  8:21 ` [PATCH 6.0 007/862] ALSA: hda/realtek: Add quirk for ASUS GV601R laptop Greg Kroah-Hartman
2022-10-19  8:21 ` [PATCH 6.0 008/862] ALSA: hda/realtek: Add Intel Reference SSID to support headset keys Greg Kroah-Hartman
2022-10-19  8:21 ` [PATCH 6.0 009/862] mtd: rawnand: atmel: Unmap streaming DMA mappings Greg Kroah-Hartman
2022-10-19  8:21 ` [PATCH 6.0 010/862] io_uring: add custom opcode hooks on fail Greg Kroah-Hartman
2022-10-19  8:21 ` [PATCH 6.0 011/862] io_uring/rw: dont lose partial IO result " Greg Kroah-Hartman
2022-10-19  8:21 ` [PATCH 6.0 012/862] io_uring/net: dont lose partial send/recv " Greg Kroah-Hartman
2022-10-19  8:21 ` [PATCH 6.0 013/862] io_uring/rw: fix unexpected link breakage Greg Kroah-Hartman
2022-10-19  8:21 ` [PATCH 6.0 014/862] io_uring/rw: dont lose short results on io_setup_async_rw() Greg Kroah-Hartman
2022-10-19  8:21 ` [PATCH 6.0 015/862] io_uring/net: fix fast_iov assignment in io_setup_async_msg() Greg Kroah-Hartman
2022-10-19  8:21 ` [PATCH 6.0 016/862] io_uring/net: dont update msg_name if not provided Greg Kroah-Hartman
2022-10-19  8:21 ` [PATCH 6.0 017/862] io_uring: limit registration w/ SINGLE_ISSUER Greg Kroah-Hartman
2022-10-19  8:21 ` [PATCH 6.0 018/862] io_uring/net: handle -EINPROGRESS correct for IORING_OP_CONNECT Greg Kroah-Hartman
2022-10-19  8:21 ` [PATCH 6.0 019/862] io_uring/af_unix: defer registered files gc to io_uring release Greg Kroah-Hartman
2022-10-19  8:21 ` [PATCH 6.0 020/862] io_uring: correct pinned_vm accounting Greg Kroah-Hartman
2022-10-19  8:21 ` [PATCH 6.0 021/862] hv_netvsc: Fix race between VF offering and VF association message from host Greg Kroah-Hartman
2022-10-19  8:21 ` [PATCH 6.0 022/862] cifs: destage dirty pages before re-reading them for cache=none Greg Kroah-Hartman
2022-10-19  8:21 ` [PATCH 6.0 023/862] cifs: Fix the error length of VALIDATE_NEGOTIATE_INFO message Greg Kroah-Hartman
2022-10-19  8:21 ` [PATCH 6.0 024/862] iio: dac: ad5593r: Fix i2c read protocol requirements Greg Kroah-Hartman
2022-10-19  8:21 ` [PATCH 6.0 025/862] iio: ltc2497: Fix reading conversion results Greg Kroah-Hartman
2022-10-19  8:21 ` [PATCH 6.0 026/862] iio: adc: ad7923: fix channel readings for some variants Greg Kroah-Hartman
2022-10-19  8:21 ` [PATCH 6.0 027/862] iio: pressure: dps310: Refactor startup procedure Greg Kroah-Hartman
2022-10-19  8:21 ` [PATCH 6.0 028/862] iio: pressure: dps310: Reset chip after timeout Greg Kroah-Hartman
2022-10-19  8:21 ` [PATCH 6.0 029/862] xhci: dbc: Fix memory leak in xhci_alloc_dbc() Greg Kroah-Hartman
2022-10-19  8:21 ` [PATCH 6.0 030/862] usb: gadget: uvc: Fix argument to sizeof() in uvc_register_video() Greg Kroah-Hartman
2022-10-19  8:21 ` [PATCH 6.0 031/862] usb: add quirks for Lenovo OneLink+ Dock Greg Kroah-Hartman
2022-10-19  8:21 ` [PATCH 6.0 032/862] mmc: core: Add SD card quirk for broken discard Greg Kroah-Hartman
2022-10-19  8:22 ` [PATCH 6.0 033/862] can: kvaser_usb: Fix use of uninitialized completion Greg Kroah-Hartman
2022-10-19  8:22 ` [PATCH 6.0 034/862] can: kvaser_usb_leaf: Fix overread with an invalid command Greg Kroah-Hartman
2022-10-19  8:22 ` [PATCH 6.0 035/862] can: kvaser_usb_leaf: Fix TX queue out of sync after restart Greg Kroah-Hartman
2022-10-19  8:22 ` [PATCH 6.0 036/862] can: kvaser_usb_leaf: Fix CAN state " Greg Kroah-Hartman
2022-10-19  8:22 ` [PATCH 6.0 037/862] mmc: renesas_sdhi: Fix rounding errors Greg Kroah-Hartman
2022-10-19  8:22 ` [PATCH 6.0 038/862] mmc: sdhci-tegra: Use actual clock rate for SW tuning correction Greg Kroah-Hartman
2022-10-19  8:22 ` [PATCH 6.0 039/862] mmc: sdhci-sprd: Fix minimum clock limit Greg Kroah-Hartman
2022-10-19  8:22 ` [PATCH 6.0 040/862] i2c: designware: Fix handling of real but unexpected device interrupts Greg Kroah-Hartman
2022-10-19  8:22 ` [PATCH 6.0 041/862] fs: dlm: fix race between test_bit() and queue_work() Greg Kroah-Hartman
2022-10-19  8:22 ` [PATCH 6.0 042/862] fs: dlm: handle -EBUSY first in lock arg validation Greg Kroah-Hartman
2022-10-19  8:22 ` [PATCH 6.0 043/862] fs: dlm: fix invalid derefence of sb_lvbptr Greg Kroah-Hartman
2022-10-19  8:22 ` [PATCH 6.0 044/862] btf: Export bpf_dynptr definition Greg Kroah-Hartman
2022-10-19  8:22 ` [PATCH 6.0 045/862] mbcache: Avoid nesting of cache->c_list_lock under bit locks Greg Kroah-Hartman
2022-10-19  8:22 ` [PATCH 6.0 046/862] HID: multitouch: Add memory barriers Greg Kroah-Hartman
2022-10-19  8:22 ` [PATCH 6.0 047/862] quota: Check next/prev free block number after reading from quota file Greg Kroah-Hartman
2022-10-19  8:22 ` [PATCH 6.0 048/862] platform/chrome: cros_ec_proto: Update version on GET_NEXT_EVENT failure Greg Kroah-Hartman
2022-10-19  8:22 ` [PATCH 6.0 049/862] arm64: dts: qcom: sdm845-mtp: correct ADC settle time Greg Kroah-Hartman
2022-10-19  8:22 ` [PATCH 6.0 050/862] ASoC: wcd9335: fix order of Slimbus unprepare/disable Greg Kroah-Hartman
2022-10-19  8:22 ` [PATCH 6.0 051/862] ASoC: wcd934x: " Greg Kroah-Hartman
2022-10-19  8:22 ` [PATCH 6.0 052/862] hwmon: (gsc-hwmon) Call of_node_get() before of_find_xxx API Greg Kroah-Hartman
2022-10-19  8:22 ` [PATCH 6.0 053/862] net: thunderbolt: Enable DMA paths only after rings are enabled Greg Kroah-Hartman
2022-10-19  8:22 ` [PATCH 6.0 054/862] regulator: qcom_rpm: Fix circular deferral regression Greg Kroah-Hartman
2022-10-19  8:22 ` [PATCH 6.0 055/862] arm64: topology: move store_cpu_topology() to shared code Greg Kroah-Hartman
2022-10-19  8:22 ` [PATCH 6.0 056/862] riscv: topology: fix default topology reporting Greg Kroah-Hartman
2022-10-19  8:22 ` [PATCH 6.0 057/862] RISC-V: Re-enable counter access from userspace Greg Kroah-Hartman
2022-10-19  8:22 ` [PATCH 6.0 058/862] RISC-V: Make port I/O string accessors actually work Greg Kroah-Hartman
2022-10-19  8:22 ` [PATCH 6.0 059/862] parisc: fbdev/stifb: Align graphics memory size to 4MB Greg Kroah-Hartman
2022-10-19  8:22 ` [PATCH 6.0 060/862] parisc: Fix userspace graphics card breakage due to pgtable special bit Greg Kroah-Hartman
2022-10-19  8:22 ` [PATCH 6.0 061/862] riscv: vdso: fix NULL deference in vdso_join_timens() when vfork Greg Kroah-Hartman
2022-10-19  8:22 ` [PATCH 6.0 062/862] riscv: Allow PROT_WRITE-only mmap() Greg Kroah-Hartman
2022-10-19  8:22 ` [PATCH 6.0 063/862] riscv: Make VM_WRITE imply VM_READ Greg Kroah-Hartman
2022-10-19  8:22 ` [PATCH 6.0 064/862] riscv: always honor the CONFIG_CMDLINE_FORCE when parsing dtb Greg Kroah-Hartman
2022-10-19  8:22 ` [PATCH 6.0 065/862] riscv: Pass -mno-relax only on lld < 15.0.0 Greg Kroah-Hartman
2022-10-19  8:22 ` [PATCH 6.0 066/862] UM: cpuinfo: Fix a warning for CONFIG_CPUMASK_OFFSTACK Greg Kroah-Hartman
2022-10-19  8:22 ` [PATCH 6.0 067/862] nvmem: core: Fix memleak in nvmem_register() Greg Kroah-Hartman
2022-10-19  8:22 ` [PATCH 6.0 068/862] nvme-multipath: fix possible hang in live ns resize with ANA access Greg Kroah-Hartman
2022-10-19  8:22 ` [PATCH 6.0 069/862] Revert "drm/amdgpu: use dirty framebuffer helper" Greg Kroah-Hartman
2022-10-19  8:22 ` [PATCH 6.0 070/862] dm: verity-loadpin: Only trust verity targets with enforcement Greg Kroah-Hartman
2022-10-19  8:22 ` [PATCH 6.0 071/862] dmaengine: mxs: use platform_driver_register Greg Kroah-Hartman
2022-10-19  8:22 ` [PATCH 6.0 072/862] dmaengine: qcom-adm: fix wrong sizeof config in slave_config Greg Kroah-Hartman
2022-10-19  8:22 ` [PATCH 6.0 073/862] dmaengine: qcom-adm: fix wrong calling convention for prep_slave_sg Greg Kroah-Hartman
2022-10-19  8:22 ` [PATCH 6.0 074/862] drm/virtio: Check whether transferred 2D BO is shmem Greg Kroah-Hartman
2022-10-19  8:22 ` [PATCH 6.0 075/862] drm/virtio: Unlock reservations on virtio_gpu_object_shmem_init() error Greg Kroah-Hartman
2022-10-19  8:22 ` [PATCH 6.0 076/862] drm/virtio: Unlock reservations on dma_resv_reserve_fences() error Greg Kroah-Hartman
2022-10-19  8:22 ` [PATCH 6.0 077/862] drm/virtio: Use appropriate atomic state in virtio_gpu_plane_cleanup_fb() Greg Kroah-Hartman
2022-10-19  8:22 ` [PATCH 6.0 078/862] drm/udl: Restore display mode on resume Greg Kroah-Hartman
2022-10-19  8:22 ` [PATCH 6.0 079/862] arm64: mte: move register initialization to C Greg Kroah-Hartman
2022-10-19  8:22 ` [PATCH 6.0 080/862] arm64: mte: Avoid setting PG_mte_tagged if no tags cleared or restored Greg Kroah-Hartman
2022-10-19  8:22 ` [PATCH 6.0 081/862] arm64: errata: Add Cortex-A55 to the repeat tlbi list Greg Kroah-Hartman
2022-10-19  8:22 ` [PATCH 6.0 082/862] clocksource/drivers/arm_arch_timer: Fix CNTPCT_LO and CNTVCT_LO value Greg Kroah-Hartman
2022-10-19  8:22 ` [PATCH 6.0 083/862] mm/hugetlb: fix races when looking up a CONT-PTE/PMD size hugetlb page Greg Kroah-Hartman
2022-10-19  8:22 ` [PATCH 6.0 084/862] mm/damon: validate if the pmd entry is present before accessing Greg Kroah-Hartman
2022-10-19  8:22 ` [PATCH 6.0 085/862] mm/uffd: fix warning without PTE_MARKER_UFFD_WP compiled in Greg Kroah-Hartman
2022-10-19  8:22 ` [PATCH 6.0 086/862] mm/mmap: undo ->mmap() when arch_validate_flags() fails Greg Kroah-Hartman
2022-10-19  8:22 ` [PATCH 6.0 087/862] xen/gntdev: Prevent leaking grants Greg Kroah-Hartman
2022-10-19  8:22 ` [PATCH 6.0 088/862] xen/gntdev: Accommodate VMA splitting Greg Kroah-Hartman
2022-10-19  8:22 ` [PATCH 6.0 089/862] PCI: Sanitise firmware BAR assignments behind a PCI-PCI bridge Greg Kroah-Hartman
2022-10-19  8:22 ` [PATCH 6.0 090/862] serial: cpm_uart: Dont request IRQ too early for console port Greg Kroah-Hartman
2022-10-19  8:22 ` [PATCH 6.0 091/862] serial: stm32: Deassert Transmit Enable on ->rs485_config() Greg Kroah-Hartman
2022-10-19  8:22 ` [PATCH 6.0 092/862] serial: Deassert Transmit Enable on probe in driver-specific way Greg Kroah-Hartman
2022-10-19  8:23 ` [PATCH 6.0 093/862] serial: ar933x: Deassert Transmit Enable on ->rs485_config() Greg Kroah-Hartman
2022-10-19  8:23 ` [PATCH 6.0 094/862] serial: 8250: Let drivers request full 16550A feature probing Greg Kroah-Hartman
2022-10-19  8:23 ` [PATCH 6.0 095/862] serial: 8250: Request full 16550A feature probing for OxSemi PCIe devices Greg Kroah-Hartman
2022-10-19  8:23 ` [PATCH 6.0 096/862] NFSD: Protect against send buffer overflow in NFSv3 READDIR Greg Kroah-Hartman
2022-10-19  8:23 ` [PATCH 6.0 097/862] NFSD: Protect against send buffer overflow in NFSv2 READ Greg Kroah-Hartman
2022-10-19  8:23 ` [PATCH 6.0 098/862] NFSD: Protect against send buffer overflow in NFSv3 READ Greg Kroah-Hartman
2022-10-19  8:23 ` [PATCH 6.0 099/862] cpufreq: qcom-cpufreq-hw: Fix uninitialized throttled_freq warning Greg Kroah-Hartman
2022-10-19  8:23 ` [PATCH 6.0 100/862] LoadPin: Fix Kconfig doc about format of file with verity digests Greg Kroah-Hartman
2022-10-19  8:23 ` [PATCH 6.0 101/862] powercap: intel_rapl: Use standard Energy Unit for SPR Dram RAPL domain Greg Kroah-Hartman
2022-10-19  8:23 ` [PATCH 6.0 102/862] powerpc/Kconfig: Fix non existing CONFIG_PPC_FSL_BOOKE Greg Kroah-Hartman
2022-10-19  8:23 ` [PATCH 6.0 103/862] powerpc/boot: Explicitly disable usage of SPE instructions Greg Kroah-Hartman
2022-10-19  8:23 ` [PATCH 6.0 104/862] slimbus: qcom-ngd: use correct error in message of pdr_add_lookup() failure Greg Kroah-Hartman
2022-10-19  8:23 ` [PATCH 6.0 105/862] slimbus: qcom-ngd: cleanup in probe error path Greg Kroah-Hartman
2022-10-19  8:23 ` [PATCH 6.0 106/862] scsi: lpfc: Rework MIB Rx Monitor debug info logic Greg Kroah-Hartman
2022-10-19  8:23 ` [PATCH 6.0 107/862] scsi: qedf: Populate sysfs attributes for vport Greg Kroah-Hartman
2022-10-19  8:23 ` [PATCH 6.0 108/862] gpio: rockchip: request GPIO mux to pinctrl when setting direction Greg Kroah-Hartman
2022-10-19  8:23 ` [PATCH 6.0 109/862] pinctrl: rockchip: add pinmux_ops.gpio_set_direction callback Greg Kroah-Hartman
2022-10-19  8:23 ` [PATCH 6.0 110/862] fbdev: smscufx: Fix use-after-free in ufx_ops_open() Greg Kroah-Hartman
2022-10-19  8:23 ` [PATCH 6.0 111/862] hwrng: core - let sleep be interrupted when unregistering hwrng Greg Kroah-Hartman
2022-10-19  8:23 ` [PATCH 6.0 112/862] smb3: do not log confusing message when server returns no network interfaces Greg Kroah-Hartman
2022-10-19  8:23 ` [PATCH 6.0 113/862] ksmbd: fix incorrect handling of iterate_dir Greg Kroah-Hartman
2022-10-19  8:23 ` [PATCH 6.0 114/862] ksmbd: fix endless loop when encryption for response fails Greg Kroah-Hartman
2022-10-19  8:23 ` [PATCH 6.0 115/862] ksmbd: Fix wrong return value and message length check in smb2_ioctl() Greg Kroah-Hartman
2022-10-19  8:23 ` [PATCH 6.0 116/862] ksmbd: Fix user namespace mapping Greg Kroah-Hartman
2022-10-19  8:23 ` [PATCH 6.0 117/862] fs: record I_DIRTY_TIME even if inode already has I_DIRTY_INODE Greg Kroah-Hartman
2022-10-19  8:23 ` [PATCH 6.0 118/862] btrfs: fix alignment of VMA for memory mapped files on THP Greg Kroah-Hartman
2022-10-19  8:23 ` [PATCH 6.0 119/862] btrfs: enhance unsupported compat RO flags handling Greg Kroah-Hartman
2022-10-19  8:23 ` [PATCH 6.0 120/862] btrfs: fix race between quota enable and quota rescan ioctl Greg Kroah-Hartman
2022-10-19  8:23 ` [PATCH 6.0 121/862] btrfs: fix missed extent on fsync after dropping extent maps Greg Kroah-Hartman
2022-10-19  8:23 ` [PATCH 6.0 122/862] btrfs: set generation before calling btrfs_clean_tree_block in btrfs_init_new_buffer Greg Kroah-Hartman
2022-10-19  8:23 ` [PATCH 6.0 123/862] f2fs: fix wrong continue condition in GC Greg Kroah-Hartman
2022-10-19  8:23 ` [PATCH 6.0 124/862] f2fs: complete checkpoints during remount Greg Kroah-Hartman
2022-10-19  8:23 ` [PATCH 6.0 125/862] f2fs: flush pending checkpoints when freezing super Greg Kroah-Hartman
2022-10-19  8:23 ` [PATCH 6.0 126/862] f2fs: increase the limit for reserve_root Greg Kroah-Hartman
2022-10-19  8:23 ` [PATCH 6.0 127/862] f2fs: fix to do sanity check on destination blkaddr during recovery Greg Kroah-Hartman
2022-10-19  8:23 ` [PATCH 6.0 128/862] f2fs: fix to do sanity check on summary info Greg Kroah-Hartman
2022-10-19  8:23 ` [PATCH 6.0 129/862] f2fs: allow direct read for zoned device Greg Kroah-Hartman
2022-10-19  8:23 ` [PATCH 6.0 130/862] jbd2: wake up journal waiters in FIFO order, not LIFO Greg Kroah-Hartman
2022-10-19  8:23 ` [PATCH 6.0 131/862] jbd2: fix potential buffer head reference count leak Greg Kroah-Hartman
2022-10-19  8:23 ` [PATCH 6.0 132/862] jbd2: fix potential use-after-free in jbd2_fc_wait_bufs Greg Kroah-Hartman
2022-10-19  8:23 ` [PATCH 6.0 133/862] jbd2: add miss release buffer head in fc_do_one_pass() Greg Kroah-Hartman
2022-10-19  8:23 ` [PATCH 6.0 134/862] ext2: Add sanity checks for group and filesystem size Greg Kroah-Hartman
2022-10-19  8:23 ` [PATCH 6.0 135/862] ext4: avoid crash when inline data creation follows DIO write Greg Kroah-Hartman
2022-10-19  8:23 ` [PATCH 6.0 136/862] ext4: fix null-ptr-deref in ext4_write_info Greg Kroah-Hartman
2022-10-19  8:23 ` [PATCH 6.0 137/862] ext4: make ext4_lazyinit_thread freezable Greg Kroah-Hartman
2022-10-19  8:23 ` [PATCH 6.0 138/862] ext4: fix check for block being out of directory size Greg Kroah-Hartman
2022-10-19  8:23 ` [PATCH 6.0 139/862] ext4: dont increase iversion counter for ea_inodes Greg Kroah-Hartman
2022-10-19  8:23 ` [PATCH 6.0 140/862] ext4: unconditionally enable the i_version counter Greg Kroah-Hartman
2022-10-19  8:23 ` [PATCH 6.0 141/862] ext4: ext4_read_bh_lock() should submit IO if the buffer isnt uptodate Greg Kroah-Hartman
2022-10-19  8:23 ` [PATCH 6.0 142/862] ext4: place buffer head allocation before handle start Greg Kroah-Hartman
2022-10-19  8:23 ` [PATCH 6.0 143/862] ext4: fix i_version handling in ext4 Greg Kroah-Hartman
2022-10-19  8:23 ` [PATCH 6.0 144/862] ext4: fix dir corruption when ext4_dx_add_entry() fails Greg Kroah-Hartman
2022-10-19  8:23 ` [PATCH 6.0 145/862] ext4: fix miss release buffer head in ext4_fc_write_inode Greg Kroah-Hartman
2022-10-19  8:23 ` [PATCH 6.0 146/862] ext4: fix potential memory leak in ext4_fc_record_modified_inode() Greg Kroah-Hartman
2022-10-19  8:23 ` [PATCH 6.0 147/862] ext4: fix potential memory leak in ext4_fc_record_regions() Greg Kroah-Hartman
2022-10-19  8:23 ` [PATCH 6.0 148/862] ext4: update state->fc_regions_size after successful memory allocation Greg Kroah-Hartman
2022-10-19  8:23 ` [PATCH 6.0 149/862] livepatch: fix race between fork and KLP transition Greg Kroah-Hartman
2022-10-19  8:23 ` [PATCH 6.0 150/862] ftrace: Properly unset FTRACE_HASH_FL_MOD Greg Kroah-Hartman
2022-10-19  8:23 ` [PATCH 6.0 151/862] ftrace: Still disable enabled records marked as disabled Greg Kroah-Hartman
2022-10-19  8:23 ` [PATCH 6.0 152/862] ring-buffer: Allow splice to read previous partially read pages Greg Kroah-Hartman
2022-10-19  8:24 ` [PATCH 6.0 153/862] ring-buffer: Have the shortest_full queue be the shortest not longest Greg Kroah-Hartman
2022-10-19  8:24 ` [PATCH 6.0 154/862] ring-buffer: Check pending waiters when doing wake ups as well Greg Kroah-Hartman
2022-10-19  8:24 ` [PATCH 6.0 155/862] ring-buffer: Add ring_buffer_wake_waiters() Greg Kroah-Hartman
2022-10-19  8:24 ` [PATCH 6.0 156/862] ring-buffer: Fix race between reset page and reading page Greg Kroah-Hartman
2022-10-19  8:24 ` [PATCH 6.0 157/862] tracing/eprobe: Fix alloc event dir failed when event name no set Greg Kroah-Hartman
2022-10-19  8:24 ` [PATCH 6.0 158/862] tracing: Disable interrupt or preemption before acquiring arch_spinlock_t Greg Kroah-Hartman
2022-10-19  8:24 ` [PATCH 6.0 159/862] tracing: Wake up ring buffer waiters on closing of the file Greg Kroah-Hartman
2022-10-19  8:24 ` [PATCH 6.0 160/862] tracing: Wake up waiters when tracing is disabled Greg Kroah-Hartman
2022-10-19  8:24 ` [PATCH 6.0 161/862] tracing: Add ioctl() to force ring buffer waiters to wake up Greg Kroah-Hartman
2022-10-19  8:24 ` [PATCH 6.0 162/862] tracing: Do not free snapshot if tracer is on cmdline Greg Kroah-Hartman
2022-10-19  8:24 ` [PATCH 6.0 163/862] tracing: Move duplicate code of trace_kprobe/eprobe.c into header Greg Kroah-Hartman
2022-10-19  8:24 ` [PATCH 6.0 164/862] tracing: Add "(fault)" name injection to kernel probes Greg Kroah-Hartman
2022-10-19  8:24 ` [PATCH 6.0 165/862] tracing: Fix reading strings from synthetic events Greg Kroah-Hartman
2022-10-19  8:24 ` [PATCH 6.0 166/862] rpmsg: char: Avoid double destroy of default endpoint Greg Kroah-Hartman
2022-10-19  8:24 ` [PATCH 6.0 167/862] thunderbolt: Explicitly enable lane adapter hotplug events at startup Greg Kroah-Hartman
2022-10-19  8:24 ` [PATCH 6.0 168/862] efi: libstub: drop pointless get_memory_map() call Greg Kroah-Hartman
2022-10-19  8:24 ` [PATCH 6.0 169/862] media: cedrus: Fix watchdog race condition Greg Kroah-Hartman
2022-10-19  8:24 ` [PATCH 6.0 170/862] media: cedrus: Set the platform driver data earlier Greg Kroah-Hartman
2022-10-19  8:24 ` [PATCH 6.0 171/862] media: cedrus: Fix endless loop in cedrus_h265_skip_bits() Greg Kroah-Hartman
2022-10-19  8:24 ` [PATCH 6.0 172/862] blk-throttle: fix that io throttle can only work for single bio Greg Kroah-Hartman
2022-10-19  8:24 ` [PATCH 6.0 173/862] blk-wbt: call rq_qos_add() after wb_normal is initialized Greg Kroah-Hartman
2022-10-19  8:24 ` [PATCH 6.0 174/862] KVM: x86/emulator: Fix handing of POP SS to correctly set interruptibility Greg Kroah-Hartman
2022-10-19  8:24 ` [PATCH 6.0 175/862] KVM: nVMX: Unconditionally purge queued/injected events on nested "exit" Greg Kroah-Hartman
2022-10-19  8:24 ` [PATCH 6.0 176/862] KVM: nVMX: Dont propagate vmcs12s PERF_GLOBAL_CTRL settings to vmcs02 Greg Kroah-Hartman
2022-10-19  8:24 ` [PATCH 6.0 177/862] KVM: x86: Treat #DBs from the emulator as fault-like (code and DR7.GD=1) Greg Kroah-Hartman
2022-10-19  8:24 ` [PATCH 6.0 178/862] KVM: VMX: Drop bits 31:16 when shoving exception error code into VMCS Greg Kroah-Hartman
2022-10-19  8:24 ` [PATCH 6.0 179/862] staging: greybus: audio_helper: remove unused and wrong debugfs usage Greg Kroah-Hartman
2022-10-19  8:24 ` [PATCH 6.0 180/862] drm/nouveau/kms/nv140-: Disable interlacing Greg Kroah-Hartman
2022-10-19  8:24 ` [PATCH 6.0 181/862] drm/nouveau: fix a use-after-free in nouveau_gem_prime_import_sg_table() Greg Kroah-Hartman
2022-10-19  8:24 ` [PATCH 6.0 182/862] drm/i915/gt: Use i915_vm_put on ppgtt_create error paths Greg Kroah-Hartman
2022-10-19  8:24 ` [PATCH 6.0 183/862] drm/i915/guc: Fix revocation of non-persistent contexts Greg Kroah-Hartman
2022-10-19  8:24 ` [PATCH 6.0 184/862] drm/i915: Fix watermark calculations for gen12+ RC CCS modifier Greg Kroah-Hartman
2022-10-19  8:24 ` [PATCH 6.0 185/862] drm/i915: Fix watermark calculations for gen12+ MC " Greg Kroah-Hartman
2022-10-19  8:24 ` [PATCH 6.0 186/862] drm/i915: Fix watermark calculations for gen12+ CCS+CC modifier Greg Kroah-Hartman
2022-10-19  8:24 ` [PATCH 6.0 187/862] drm/i915: Fix watermark calculations for DG2 CCS modifiers Greg Kroah-Hartman
2022-10-19  8:24 ` [PATCH 6.0 188/862] drm/i915: Fix watermark calculations for DG2 CCS+CC modifier Greg Kroah-Hartman
2022-10-19  8:24 ` [PATCH 6.0 189/862] drm/i915: Fix display problems after resume Greg Kroah-Hartman
2022-10-19  8:24 ` [PATCH 6.0 190/862] drm/amd/display: Fix watermark calculation Greg Kroah-Hartman
2022-10-19  8:24 ` [PATCH 6.0 191/862] drm/amd/display: Update PMFW z-state interface for DCN314 Greg Kroah-Hartman
2022-10-19  8:24 ` [PATCH 6.0 192/862] drm/amd/display: zeromem mypipe heap struct before using it Greg Kroah-Hartman
2022-10-19  8:24 ` [PATCH 6.0 193/862] drm/amd/display: Validate DSC After Enable All New CRTCs Greg Kroah-Hartman
2022-10-19  8:24 ` [PATCH 6.0 194/862] drm/amd/display: Enable dpia support for dcn314 Greg Kroah-Hartman
2022-10-19  8:24 ` [PATCH 6.0 195/862] drm/amd/display: Enable 2 to 1 ODM policy if supported Greg Kroah-Hartman
2022-10-19  8:24 ` [PATCH 6.0 196/862] drm/amd/display: Fix vblank refcount in vrr transition Greg Kroah-Hartman
2022-10-19  8:24 ` [PATCH 6.0 197/862] drm/amd/display: Add HUBP surface flip interrupt handler Greg Kroah-Hartman
2022-10-19  8:24 ` [PATCH 6.0 198/862] drm/amd/display: explicitly disable psr_feature_enable appropriately Greg Kroah-Hartman
2022-10-19  8:24 ` [PATCH 6.0 199/862] drm/amdgpu: Enable VCN PG on GC11_0_1 Greg Kroah-Hartman
2022-10-19  8:24 ` [PATCH 6.0 200/862] drm/amdgpu: Enable F32_WPTR_POLL_ENABLE in mqd Greg Kroah-Hartman
2022-10-19  8:24 ` [PATCH 6.0 201/862] smb3: must initialize two ACL struct fields to zero Greg Kroah-Hartman
2022-10-19  8:24 ` [PATCH 6.0 202/862] selinux: use "grep -E" instead of "egrep" Greg Kroah-Hartman
2022-10-19  8:24 ` [PATCH 6.0 203/862] ima: fix blocking of security.ima xattrs of unsupported algorithms Greg Kroah-Hartman
2022-10-19  8:24 ` [PATCH 6.0 204/862] userfaultfd: open userfaultfds with O_RDONLY Greg Kroah-Hartman
2022-10-19  8:24 ` [PATCH 6.0 205/862] ntfs3: rework xattr handlers and switch to POSIX ACL VFS helpers Greg Kroah-Hartman
2022-10-19  8:24 ` [PATCH 6.0 206/862] acl: return EOPNOTSUPP in posix_acl_fix_xattr_common() Greg Kroah-Hartman
2022-10-19  8:24 ` [PATCH 6.0 207/862] thermal: cpufreq_cooling: Check the policy first in cpufreq_cooling_register() Greg Kroah-Hartman
2022-10-19  8:24 ` [PATCH 6.0 208/862] cpufreq: amd-pstate: Fix initial highest_perf value Greg Kroah-Hartman
2022-10-19  8:24 ` [PATCH 6.0 209/862] sh: machvec: Use char[] for section boundaries Greg Kroah-Hartman
2022-10-19  8:24 ` [PATCH 6.0 210/862] MIPS: SGI-IP30: Fix platform-device leak in bridge_platform_create() Greg Kroah-Hartman
2022-10-19  8:24 ` [PATCH 6.0 211/862] MIPS: SGI-IP27: " Greg Kroah-Hartman
2022-10-19  8:24 ` [PATCH 6.0 212/862] erofs: fix order >= MAX_ORDER warning due to crafted negative i_size Greg Kroah-Hartman
2022-10-19  8:25 ` [PATCH 6.0 213/862] erofs: use kill_anon_super() to kill super in fscache mode Greg Kroah-Hartman
2022-10-19  8:25 ` [PATCH 6.0 214/862] ARM: 9243/1: riscpc: Unbreak the build Greg Kroah-Hartman
2022-10-19  8:25 ` [PATCH 6.0 215/862] ARM: 9244/1: dump: Fix wrong pg_level in walk_pmd() Greg Kroah-Hartman
2022-10-19  8:25 ` [PATCH 6.0 216/862] ARM: 9247/1: mm: set readonly for MT_MEMORY_RO with ARM_LPAE Greg Kroah-Hartman
2022-10-19  8:25 ` [PATCH 6.0 217/862] ACPI: PCC: Release resources on address space setup failure path Greg Kroah-Hartman
2022-10-19  8:25 ` [PATCH 6.0 218/862] ACPI: PCC: replace wait_for_completion() Greg Kroah-Hartman
2022-10-19  8:25 ` [PATCH 6.0 219/862] ACPI: PCC: Fix Tx acknowledge in the PCC address space handler Greg Kroah-Hartman
2022-10-19  8:25 ` [PATCH 6.0 220/862] objtool: Preserve special st_shndx indexes in elf_update_symbol Greg Kroah-Hartman
2022-10-19  8:25 ` [PATCH 6.0 221/862] nfsd: Fix a memory leak in an error handling path Greg Kroah-Hartman
2022-10-19  8:25 ` [PATCH 6.0 222/862] SUNRPC: Fix svcxdr_init_decodes end-of-buffer calculation Greg Kroah-Hartman
2022-10-19  8:25 ` [PATCH 6.0 223/862] SUNRPC: Fix svcxdr_init_encodes buflen calculation Greg Kroah-Hartman
2022-10-19  8:25 ` [PATCH 6.0 224/862] NFSD: Protect against send buffer overflow in NFSv2 READDIR Greg Kroah-Hartman
2022-10-19  8:25 ` [PATCH 6.0 225/862] NFSD: Fix handling of oversized NFSv4 COMPOUND requests Greg Kroah-Hartman
2022-10-19  8:25 ` [PATCH 6.0 226/862] x86/paravirt: add extra clobbers with ZERO_CALL_USED_REGS enabled Greg Kroah-Hartman
2022-10-19  8:25 ` [PATCH 6.0 227/862] m68k: Process bootinfo records before saving them Greg Kroah-Hartman
2022-10-19  8:25 ` [PATCH 6.0 228/862] libbpf: Initialize err in probe_map_create Greg Kroah-Hartman
2022-10-19  8:25 ` [PATCH 6.0 229/862] wifi: rtlwifi: 8192de: correct checking of IQK reload Greg Kroah-Hartman
2022-10-19  8:25 ` [PATCH 6.0 230/862] wifi: ath10k: Set tx credit to one for WCN3990 snoc based devices Greg Kroah-Hartman
2022-10-19  8:25 ` [PATCH 6.0 231/862] wifi: ath10k: add peer map clean up for peer delete in ath10k_sta_state() Greg Kroah-Hartman
2022-10-19  8:25 ` [PATCH 6.0 232/862] bpf: Cleanup check_refcount_ok Greg Kroah-Hartman
2022-10-19  8:25 ` [PATCH 6.0 233/862] bpf: Fix ref_obj_id for dynptr data slices in verifier Greg Kroah-Hartman
2022-10-19  8:25 ` [PATCH 6.0 234/862] leds: lm3601x: Dont use mutex after it was destroyed Greg Kroah-Hartman
2022-10-19  8:25 ` [PATCH 6.0 235/862] tsnep: Fix TSNEP_INFO_TX_TIME register define Greg Kroah-Hartman
2022-10-19  8:25 ` [PATCH 6.0 236/862] net: prestera: cache port state for non-phylink ports too Greg Kroah-Hartman
2022-10-19  8:25 ` [PATCH 6.0 237/862] bpf: Fix reference state management for synchronous callbacks Greg Kroah-Hartman
2022-10-19  8:25 ` [PATCH 6.0 238/862] wifi: mac80211: properly set old_links when removing a link Greg Kroah-Hartman
2022-10-19  8:25 ` [PATCH 6.0 239/862] wifi: cfg80211: get correct AP link chandef Greg Kroah-Hartman
2022-10-19  8:25 ` [PATCH 6.0 240/862] wifi: mac80211: fix use-after-free Greg Kroah-Hartman
2022-10-19  8:25 ` [PATCH 6.0 241/862] wifi: mac80211: mlme: dont add empty EML capabilities Greg Kroah-Hartman
2022-10-19  8:25 ` [PATCH 6.0 242/862] wifi: mac80211_hwsim: fix link change handling Greg Kroah-Hartman
2022-10-19  8:25 ` [PATCH 6.0 243/862] wifi: mac80211: allow bw change during channel switch in mesh Greg Kroah-Hartman
2022-10-19  8:25 ` [PATCH 6.0 244/862] bpftool: Fix a wrong type cast in btf_dumper_int Greg Kroah-Hartman
2022-10-19  8:25 ` [PATCH 6.0 245/862] ice: set tx_tstamps when creating new Tx rings via ethtool Greg Kroah-Hartman
2022-10-19  8:25 ` [PATCH 6.0 246/862] audit: explicitly check audit_context->context enum value Greg Kroah-Hartman
2022-10-19  8:25 ` [PATCH 6.0 247/862] audit: free audit_proctitle only on task exit Greg Kroah-Hartman
2022-10-19  8:25 ` [PATCH 6.0 248/862] esp: choose the correct inner protocol for GSO on inter address family tunnels Greg Kroah-Hartman
2022-10-19  8:25 ` [PATCH 6.0 249/862] spi: mt7621: Fix an error message in mt7621_spi_probe() Greg Kroah-Hartman
2022-10-19  8:25 ` [PATCH 6.0 250/862] x86/resctrl: Fix to restore to original value when re-enabling hardware prefetch register Greg Kroah-Hartman
2022-10-19  8:25 ` [PATCH 6.0 251/862] xsk: Fix backpressure mechanism on Tx Greg Kroah-Hartman
2022-10-19  8:25 ` [PATCH 6.0 252/862] selftests/xsk: Add missing close() on netns fd Greg Kroah-Hartman
2022-10-19  8:25 ` [PATCH 6.0 253/862] bpf: Disable preemption when increasing per-cpu map_locked Greg Kroah-Hartman
2022-10-19  8:25 ` [PATCH 6.0 254/862] bpf: Propagate error from htab_lock_bucket() to userspace Greg Kroah-Hartman
2022-10-19  8:25 ` [PATCH 6.0 255/862] wifi: ath11k: Fix incorrect QMI message ID mappings Greg Kroah-Hartman
2022-10-19  8:25 ` [PATCH 6.0 256/862] bpf: Use this_cpu_{inc|dec|inc_return} for bpf_task_storage_busy Greg Kroah-Hartman
2022-10-19  8:25 ` [PATCH 6.0 257/862] bpf: Use this_cpu_{inc_return|dec} for prog->active Greg Kroah-Hartman
2022-10-19  8:25 ` [PATCH 6.0 258/862] Bluetooth: btusb: mediatek: fix WMT failure during runtime suspend Greg Kroah-Hartman
2022-10-19  8:25 ` [PATCH 6.0 259/862] bpf: Only add BTF IDs for socket security hooks when CONFIG_SECURITY_NETWORK is on Greg Kroah-Hartman
2022-10-19  8:25 ` [PATCH 6.0 260/862] wifi: rtw89: pci: fix interrupt stuck after leaving low power mode Greg Kroah-Hartman
2022-10-19  8:25 ` [PATCH 6.0 261/862] wifi: rtw89: pci: correct TX resource checking in " Greg Kroah-Hartman
2022-10-19  8:25 ` [PATCH 6.0 262/862] wifi: rtl8xxxu: tighten bounds checking in rtl8xxxu_read_efuse() Greg Kroah-Hartman
2022-10-19  8:25 ` [PATCH 6.0 263/862] wifi: wfx: prevent underflow in wfx_send_pds() Greg Kroah-Hartman
2022-10-19  8:25 ` [PATCH 6.0 264/862] wifi: rtw88: add missing destroy_workqueue() on error path in rtw_core_init() Greg Kroah-Hartman
2022-10-19  8:25 ` [PATCH 6.0 265/862] selftests/xsk: Avoid use-after-free on ctx Greg Kroah-Hartman
2022-10-19  8:25 ` [PATCH 6.0 266/862] wifi: mac80211: mlme: assign link address correctly Greg Kroah-Hartman
2022-10-19  8:25 ` [PATCH 6.0 267/862] spi: qup: add missing clk_disable_unprepare on error in spi_qup_resume() Greg Kroah-Hartman
2022-10-19  8:25 ` [PATCH 6.0 268/862] spi: qup: add missing clk_disable_unprepare on error in spi_qup_pm_resume_runtime() Greg Kroah-Hartman
2022-10-19  8:25 ` [PATCH 6.0 269/862] wifi: rtl8xxxu: Fix skb misuse in TX queue selection Greg Kroah-Hartman
2022-10-19  8:25 ` [PATCH 6.0 270/862] spi: meson-spicc: do not rely on busy flag in pow2 clk ops Greg Kroah-Hartman
2022-10-19  8:25 ` [PATCH 6.0 271/862] bpf: btf: fix truncated last_member_type_id in btf_struct_resolve Greg Kroah-Hartman
2022-10-19  8:25 ` [PATCH 6.0 272/862] wifi: rtl8xxxu: gen2: Fix mistake in path B IQ calibration Greg Kroah-Hartman
2022-10-19  8:26 ` [PATCH 6.0 273/862] wifi: rtl8xxxu: Remove copy-paste leftover in gen2_update_rate_mask Greg Kroah-Hartman
2022-10-19  8:26 ` [PATCH 6.0 274/862] Bluetooth: avoid hci_dev_test_and_set_flag() in mgmt_init_hdev() Greg Kroah-Hartman
2022-10-19  8:26 ` [PATCH 6.0 275/862] wifi: mt76: mt7921e: fix race issue between reset and suspend/resume Greg Kroah-Hartman
2022-10-19  8:26 ` [PATCH 6.0 276/862] wifi: mt76: mt7921s: " Greg Kroah-Hartman
2022-10-19  8:26 ` [PATCH 6.0 277/862] wifi: mt76: mt7921u: " Greg Kroah-Hartman
2022-10-19  8:26 ` [PATCH 6.0 278/862] wifi: mt76: sdio: fix the deadlock caused by sdio->stat_work Greg Kroah-Hartman
2022-10-19  8:26 ` [PATCH 6.0 279/862] wifi: mt76: sdio: poll sta stat when device transmits data Greg Kroah-Hartman
2022-10-19  8:26 ` [PATCH 6.0 280/862] wifi: mt76: mt7915: fix an uninitialized variable bug Greg Kroah-Hartman
2022-10-19  8:26 ` [PATCH 6.0 281/862] wifi: mt76: mt7921: fix use after free in mt7921_acpi_read() Greg Kroah-Hartman
2022-10-19  8:26 ` [PATCH 6.0 282/862] wifi: mt76: sdio: fix transmitting packet hangs Greg Kroah-Hartman
2022-10-19  8:26 ` [PATCH 6.0 283/862] wifi: mt76: mt7615: add mt7615_mutex_acquire/release in mt7615_sta_set_decap_offload Greg Kroah-Hartman
2022-10-19  8:26 ` [PATCH 6.0 284/862] wifi: mt76: mt7915: fix possible unaligned access in mt7915_mac_add_twt_setup Greg Kroah-Hartman
2022-10-19  8:26 ` [PATCH 6.0 285/862] wifi: mt76: connac: fix possible unaligned access in mt76_connac_mcu_add_nested_tlv Greg Kroah-Hartman
2022-10-19  8:26 ` [PATCH 6.0 286/862] wifi: mt76: mt7921: add mt7921_mutex_acquire at mt7921_[start, stop]_ap Greg Kroah-Hartman
2022-10-19  8:26 ` [PATCH 6.0 287/862] wifi: mt76: mt7921: add mt7921_mutex_acquire at mt7921_sta_set_decap_offload Greg Kroah-Hartman
2022-10-19  8:26 ` [PATCH 6.0 288/862] wifi: mt76: mt7921: fix the firmware version report Greg Kroah-Hartman
2022-10-19  8:26 ` [PATCH 6.0 289/862] wifi: mt76: mt7915: fix mcs value in ht mode Greg Kroah-Hartman
2022-10-19  8:26 ` [PATCH 6.0 290/862] wifi: mt76: fix uninitialized pointer in mt7921_mac_fill_rx Greg Kroah-Hartman
2022-10-19  8:26 ` [PATCH 6.0 291/862] wifi: mt76: mt7915: do not check state before configuring implicit beamform Greg Kroah-Hartman
2022-10-19  8:26 ` [PATCH 6.0 292/862] wifi: mt76: mt7921e: fix rmmod crash in driver reload test Greg Kroah-Hartman
2022-10-19  8:26 ` [PATCH 6.0 293/862] Bluetooth: RFCOMM: Fix possible deadlock on socket shutdown/release Greg Kroah-Hartman
2022-10-19  8:26 ` [PATCH 6.0 294/862] net: fs_enet: Fix wrong check in do_pd_setup Greg Kroah-Hartman
2022-10-19  8:26 ` [PATCH 6.0 295/862] bpf: Ensure correct locking around vulnerable function find_vpid() Greg Kroah-Hartman
2022-10-19  8:26 ` [PATCH 6.0 296/862] libbpf: Fix crash if SEC("freplace") programs dont have attach_prog_fd set Greg Kroah-Hartman
2022-10-19  8:26 ` [PATCH 6.0 297/862] wifi: ath11k: Include STA_KEEPALIVE_ARP_RESPONSE TLV header by default Greg Kroah-Hartman
2022-10-19  8:26 ` [PATCH 6.0 298/862] Bluetooth: hci_{ldisc,serdev}: check percpu_init_rwsem() failure Greg Kroah-Hartman
2022-10-19  8:26 ` [PATCH 6.0 299/862] libbpf: Fix NULL pointer exception in API btf_dump__dump_type_data Greg Kroah-Hartman
2022-10-19  8:26 ` [PATCH 6.0 300/862] netfilter: conntrack: fix the gc rescheduling delay Greg Kroah-Hartman
2022-10-19  8:26 ` [PATCH 6.0 301/862] netfilter: conntrack: revisit the gc initial rescheduling bias Greg Kroah-Hartman
2022-10-19  8:26 ` [PATCH 6.0 302/862] bpf, cgroup: Reject prog_attach_flags array when effective query Greg Kroah-Hartman
2022-10-19  8:26 ` [PATCH 6.0 303/862] bpftool: Fix wrong cgroup attach flags being assigned to effective progs Greg Kroah-Hartman
2022-10-19  8:26 ` [PATCH 6.0 304/862] selftests/bpf: Adapt cgroup effective query uapi change Greg Kroah-Hartman
2022-10-19  8:26 ` [PATCH 6.0 305/862] flow_dissector: Do not count vlan tags inside tunnel payload Greg Kroah-Hartman
2022-10-19  8:26 ` [PATCH 6.0 306/862] mwifiex: fix sleep in atomic context bugs caused by dev_coredumpv Greg Kroah-Hartman
2022-10-19  8:26 ` [PATCH 6.0 307/862] wifi: ath11k: fix failed to find the peer with peer_id 0 when disconnected Greg Kroah-Hartman
2022-10-19  8:26 ` [PATCH 6.0 308/862] wifi: ath11k: fix number of VHT beamformee spatial streams Greg Kroah-Hartman
2022-10-19  8:26 ` [PATCH 6.0 309/862] mips: dts: ralink: mt7621: fix external phy on GB-PC2 Greg Kroah-Hartman
2022-10-19  8:26 ` [PATCH 6.0 310/862] x86/microcode/AMD: Track patch allocation size explicitly Greg Kroah-Hartman
2022-10-19  8:26 ` [PATCH 6.0 311/862] libbpf: restore memory layout of bpf_object_open_opts Greg Kroah-Hartman
2022-10-19  8:26 ` [PATCH 6.0 312/862] wifi: ath11k: fix peer addition/deletion error on sta band migration Greg Kroah-Hartman
2022-10-19  8:26 ` [PATCH 6.0 313/862] x86/cpu: Include the header of init_ia32_feat_ctl()s prototype Greg Kroah-Hartman
2022-10-19  8:26 ` [PATCH 6.0 314/862] spi: cadence-quadspi: Fix PM disable depth imbalance in cqspi_probe Greg Kroah-Hartman
2022-10-19  8:26 ` [PATCH 6.0 315/862] spi: dw: Fix PM disable depth imbalance in dw_spi_bt1_probe Greg Kroah-Hartman
2022-10-19  8:26 ` [PATCH 6.0 316/862] spi/omap100k:Fix PM disable depth imbalance in omap1_spi100k_probe Greg Kroah-Hartman
2022-10-19  8:26 ` [PATCH 6.0 317/862] skmsg: Schedule psock work if the cached skb exists on the psock Greg Kroah-Hartman
2022-10-19  8:26 ` [PATCH 6.0 318/862] cw1200: fix incorrect check to determine if no element is found in list Greg Kroah-Hartman
2022-10-19  8:26 ` [PATCH 6.0 319/862] libbpf: Dont require full struct enum64 in UAPI headers Greg Kroah-Hartman
2022-10-19  8:26 ` [PATCH 6.0 320/862] i2c: mlxbf: support lock mechanism Greg Kroah-Hartman
2022-10-19  8:26 ` [PATCH 6.0 321/862] Bluetooth: hci_core: Fix not handling link timeouts propertly Greg Kroah-Hartman
2022-10-19  8:26 ` [PATCH 6.0 322/862] xfrm: Reinject transport-mode packets through workqueue Greg Kroah-Hartman
2022-10-19  8:26 ` [PATCH 6.0 323/862] netfilter: nft_fib: Fix for rpath check with VRF devices Greg Kroah-Hartman
2022-10-19  8:26 ` [PATCH 6.0 324/862] spi: s3c64xx: Fix large transfers with DMA Greg Kroah-Hartman
2022-10-19  8:26 ` [PATCH 6.0 325/862] Bluetooth: Prevent double register of suspend Greg Kroah-Hartman
2022-10-19  8:26 ` [PATCH 6.0 326/862] wifi: rtl8xxxu: gen2: Enable 40 MHz channel width Greg Kroah-Hartman
2022-10-19  8:26 ` [PATCH 6.0 327/862] wifi: rtl8xxxu: Fix AIFS written to REG_EDCA_*_PARAM Greg Kroah-Hartman
2022-10-19  8:26 ` [PATCH 6.0 328/862] vhost/vsock: Use kvmalloc/kvfree for larger packets Greg Kroah-Hartman
2022-10-19  8:26 ` [PATCH 6.0 329/862] eth: alx: take rtnl_lock on resume Greg Kroah-Hartman
2022-10-19  8:26 ` [PATCH 6.0 330/862] mISDN: fix use-after-free bugs in l1oip timer handlers Greg Kroah-Hartman
2022-10-19  8:26 ` [PATCH 6.0 331/862] sctp: handle the error returned from sctp_auth_asoc_init_active_key Greg Kroah-Hartman
2022-10-19  8:26 ` [PATCH 6.0 332/862] tcp: fix tcp_cwnd_validate() to not forget is_cwnd_limited Greg Kroah-Hartman
2022-10-19  8:27 ` [PATCH 6.0 333/862] spi: Ensure that sg_table wont be used after being freed Greg Kroah-Hartman
2022-10-19  8:27 ` [PATCH 6.0 334/862] Bluetooth: hci_sync: Fix not indicating power state Greg Kroah-Hartman
2022-10-19  8:27 ` [PATCH 6.0 335/862] hwmon: (pmbus/mp2888) Fix sensors readouts for MPS Multi-phase mp2888 controller Greg Kroah-Hartman
2022-10-19  8:27 ` [PATCH 6.0 336/862] net: rds: dont hold sock lock when cancelling work from rds_tcp_reset_callbacks() Greg Kroah-Hartman
2022-10-19  8:27 ` [PATCH 6.0 337/862] af_unix: Fix memory leaks of the whole sk due to OOB skb Greg Kroah-Hartman
2022-10-19  8:27 ` [PATCH 6.0 338/862] net: prestera: acl: Add check for kmemdup Greg Kroah-Hartman
2022-10-19  8:27 ` [PATCH 6.0 339/862] eth: lan743x: reject extts for non-pci11x1x devices Greg Kroah-Hartman
2022-10-19  8:27 ` [PATCH 6.0 340/862] bnx2x: fix potential memory leak in bnx2x_tpa_stop() Greg Kroah-Hartman
2022-10-19  8:27 ` [PATCH 6.0 341/862] eth: sp7021: fix use after free bug in spl2sw_nvmem_get_mac_address Greg Kroah-Hartman
2022-10-19  8:27 ` [PATCH 6.0 342/862] net: wwan: iosm: Call mutex_init before locking it Greg Kroah-Hartman
2022-10-19  8:27 ` [PATCH 6.0 343/862] net/ieee802154: reject zero-sized raw_sendmsg() Greg Kroah-Hartman
2022-10-19  8:27 ` [PATCH 6.0 344/862] once: add DO_ONCE_SLOW() for sleepable contexts Greg Kroah-Hartman
2022-10-19  8:27 ` [PATCH 6.0 345/862] net: mvpp2: fix mvpp2 debugfs leak Greg Kroah-Hartman
2022-10-19  8:27 ` [PATCH 6.0 346/862] drm: bridge: adv7511: fix CEC power down control register offset Greg Kroah-Hartman
2022-10-19  8:27 ` [PATCH 6.0 347/862] drm: bridge: adv7511: unregister cec i2c device after cec adapter Greg Kroah-Hartman
2022-10-19  8:27 ` [PATCH 6.0 348/862] drm/bridge: Avoid uninitialized variable warning Greg Kroah-Hartman
2022-10-19  8:27 ` [PATCH 6.0 349/862] drm/mipi-dsi: Detach devices when removing the host Greg Kroah-Hartman
2022-10-19  8:27 ` [PATCH 6.0 350/862] drm/vc4: drv: Call component_unbind_all() Greg Kroah-Hartman
2022-10-19  8:27 ` [PATCH 6.0 351/862] drm/bridge: it6505: Power on downstream device in .atomic_enable Greg Kroah-Hartman
2022-10-19  8:27 ` [PATCH 6.0 352/862] video/aperture: Disable and unregister sysfb devices via aperture helpers Greg Kroah-Hartman
2022-10-19  8:27 ` [PATCH 6.0 353/862] drm/virtio: Correct drm_gem_shmem_get_sg_table() error handling Greg Kroah-Hartman
2022-10-19  8:27 ` [PATCH 6.0 354/862] drm/bridge: anx7625: Fix refcount bug in anx7625_parse_dt() Greg Kroah-Hartman
2022-10-19  8:27 ` [PATCH 6.0 355/862] drm/bridge: tc358767: Add of_node_put() when breaking out of loop Greg Kroah-Hartman
2022-10-19  8:27 ` [PATCH 6.0 356/862] drm/bridge: parade-ps8640: Fix regulator supply order Greg Kroah-Hartman
2022-10-19  8:27 ` [PATCH 6.0 357/862] drm/format-helper: Fix test on big endian architectures Greg Kroah-Hartman
2022-10-19  8:27 ` [PATCH 6.0 358/862] drm/dp_mst: fix drm_dp_dpcd_read return value checks Greg Kroah-Hartman
2022-10-19  8:27 ` [PATCH 6.0 359/862] drm:pl111: Add of_node_put() when breaking out of for_each_available_child_of_node() Greg Kroah-Hartman
2022-10-19  8:27 ` [PATCH 6.0 360/862] ASoC: mt6359: fix tests for platform_get_irq() failure Greg Kroah-Hartman
2022-10-19  8:27 ` [PATCH 6.0 361/862] ASoC: amd: acp: add missing platform_device_unregister() in acp_pci_probe() Greg Kroah-Hartman
2022-10-19  8:27 ` [PATCH 6.0 362/862] drm/msm: Make .remove and .shutdown HW shutdown consistent Greg Kroah-Hartman
2022-10-19  8:27 ` [PATCH 6.0 363/862] platform/chrome: fix double-free in chromeos_laptop_prepare() Greg Kroah-Hartman
2022-10-19  8:27 ` [PATCH 6.0 364/862] platform/chrome: fix memory corruption in ioctl Greg Kroah-Hartman
2022-10-19  8:27 ` [PATCH 6.0 365/862] drm/i915/dg2: Bump up CDCLK for DG2 Greg Kroah-Hartman
2022-10-19  8:27 ` [PATCH 6.0 366/862] drm/virtio: Fix same-context optimization Greg Kroah-Hartman
2022-10-19  8:27 ` [PATCH 6.0 367/862] ASoC: soc-pcm.c: call __soc_pcm_close() in soc_pcm_close() Greg Kroah-Hartman
2022-10-19  8:27 ` [PATCH 6.0 368/862] ASoC: tas2764: Allow mono streams Greg Kroah-Hartman
2022-10-19  8:27 ` [PATCH 6.0 369/862] ASoC: tas2764: Drop conflicting set_bias_level power setting Greg Kroah-Hartman
2022-10-19  8:27 ` [PATCH 6.0 370/862] ASoC: tas2764: Fix mute/unmute Greg Kroah-Hartman
2022-10-19  8:27 ` [PATCH 6.0 371/862] platform/x86: msi-laptop: Fix old-ec check for backlight registering Greg Kroah-Hartman
2022-10-19  8:27 ` [PATCH 6.0 372/862] platform/x86: msi-laptop: Fix resource cleanup Greg Kroah-Hartman
2022-10-19  8:27 ` [PATCH 6.0 373/862] drm/panel: use select for Ili9341 panel driver helpers Greg Kroah-Hartman
2022-10-19  8:27 ` [PATCH 6.0 374/862] drm: fix drm_mipi_dbi build errors Greg Kroah-Hartman
2022-10-19  8:27 ` [PATCH 6.0 375/862] platform/chrome: cros_ec_typec: Add bit offset for DP VDO Greg Kroah-Hartman
2022-10-19  8:27 ` [PATCH 6.0 376/862] platform/chrome: cros_ec_typec: Correct alt mode index Greg Kroah-Hartman
2022-10-19  8:27 ` [PATCH 6.0 377/862] drm/amdgpu: add missing pci_disable_device() in amdgpu_pmops_runtime_resume() Greg Kroah-Hartman
2022-10-19  8:27 ` [PATCH 6.0 378/862] drm/bridge: megachips: Fix a null pointer dereference bug Greg Kroah-Hartman
2022-10-19  8:27 ` [PATCH 6.0 379/862] drm/bridge: it6505: Fix the order of DP_SET_POWER commands Greg Kroah-Hartman
2022-10-19  8:27 ` [PATCH 6.0 380/862] ASoC: rsnd: Add check for rsnd_mod_power_on Greg Kroah-Hartman
2022-10-19  8:27 ` [PATCH 6.0 381/862] ASoC: wm_adsp: Handle optional legacy support Greg Kroah-Hartman
2022-10-19  8:27 ` [PATCH 6.0 382/862] ALSA: hda: beep: Simplify keep-power-at-enable behavior Greg Kroah-Hartman
2022-10-19  8:27 ` [PATCH 6.0 383/862] drm/virtio: set fb_modifiers_not_supported Greg Kroah-Hartman
2022-10-19  8:27 ` [PATCH 6.0 384/862] drm/bochs: fix blanking Greg Kroah-Hartman
2022-10-19  8:27 ` [PATCH 6.0 385/862] ASoC: mediatek: mt8195-mt6359: Properly register sound card for SOF Greg Kroah-Hartman
2022-10-19  8:27 ` [PATCH 6.0 386/862] ASoC: SOF: mediatek: mt8195: Import namespace SND_SOC_SOF_MTK_COMMON Greg Kroah-Hartman
2022-10-19  8:27 ` [PATCH 6.0 387/862] drm/omap: dss: Fix refcount leak bugs Greg Kroah-Hartman
2022-10-19  8:27 ` [PATCH 6.0 388/862] drm/amdgpu: Fix memory leak in hpd_rx_irq_create_workqueue() Greg Kroah-Hartman
2022-10-19  8:27 ` [PATCH 6.0 389/862] ASoC: rockchip: i2s: use regmap_read_poll_timeout to poll I2S_CLR Greg Kroah-Hartman
2022-10-19  8:27 ` [PATCH 6.0 390/862] mmc: au1xmmc: Fix an error handling path in au1xmmc_probe() Greg Kroah-Hartman
2022-10-19  8:27 ` [PATCH 6.0 391/862] ASoC: eureka-tlv320: Hold reference returned from of_find_xxx API Greg Kroah-Hartman
2022-10-19  8:27 ` [PATCH 6.0 392/862] drm/msm: lookup the ICC paths in both mdp5/dpu and mdss devices Greg Kroah-Hartman
2022-10-19  8:28 ` [PATCH 6.0 393/862] drm/msm/dpu: index dpu_kms->hw_vbif using vbif_idx Greg Kroah-Hartman
2022-10-19  8:28 ` [PATCH 6.0 394/862] drm/msm/dp: correct 1.62G link rate at dp_catalog_ctrl_config_msa() Greg Kroah-Hartman
2022-10-19  8:28 ` [PATCH 6.0 395/862] ALSA: hda/hdmi: change type for the assigned variable Greg Kroah-Hartman
2022-10-19  8:28 ` [PATCH 6.0 396/862] ALSA: hda/hdmi: Fix the converter allocation for the silent stream Greg Kroah-Hartman
2022-10-19  8:28 ` [PATCH 6.0 397/862] ALSA: usb-audio: Properly refcounting clock rate Greg Kroah-Hartman
2022-10-19  8:28 ` [PATCH 6.0 398/862] ASoC: SOF: ipc4-topology: Free the ida when IPC fails in sof_ipc4_widget_setup() Greg Kroah-Hartman
2022-10-19  8:28 ` [PATCH 6.0 399/862] drm/vmwgfx: Fix memory leak in vmw_mksstat_add_ioctl() Greg Kroah-Hartman
2022-10-19  8:28 ` [PATCH 6.0 400/862] virtio-gpu: fix shift wrapping bug in virtio_gpu_fence_event_create() Greg Kroah-Hartman
2022-10-19  8:28 ` [PATCH 6.0 401/862] ASoC: codecs: tx-macro: fix kcontrol put Greg Kroah-Hartman
2022-10-19  8:28 ` [PATCH 6.0 402/862] ASoC: da7219: Fix an error handling path in da7219_register_dai_clks() Greg Kroah-Hartman
2022-10-19  8:28 ` [PATCH 6.0 403/862] ALSA: dmaengine: increment buffer pointer atomically Greg Kroah-Hartman
2022-10-19  8:28 ` [PATCH 6.0 404/862] mmc: wmt-sdmmc: Fix an error handling path in wmt_mci_probe() Greg Kroah-Hartman
2022-10-19  8:28 ` [PATCH 6.0 405/862] ASoC: stm32: dfsdm: Fix PM disable depth imbalance in stm32_adfsdm_probe Greg Kroah-Hartman
2022-10-19  8:28 ` [PATCH 6.0 406/862] ASoC: stm32: spdifrx: Fix PM disable depth imbalance in stm32_spdifrx_probe Greg Kroah-Hartman
2022-10-19  8:28 ` [PATCH 6.0 407/862] ASoC: stm: Fix PM disable depth imbalance in stm32_i2s_probe Greg Kroah-Hartman
2022-10-19  8:28 ` [PATCH 6.0 408/862] ASoC: wcd-mbhc-v2: Revert "ASoC: wcd-mbhc-v2: use pm_runtime_resume_and_get()" Greg Kroah-Hartman
2022-10-19  8:28 ` [PATCH 6.0 409/862] ASoC: wm8997: Fix PM disable depth imbalance in wm8997_probe Greg Kroah-Hartman
2022-10-19  8:28 ` [PATCH 6.0 410/862] ASoC: wm5110: Fix PM disable depth imbalance in wm5110_probe Greg Kroah-Hartman
2022-10-19  8:28 ` [PATCH 6.0 411/862] ASoC: wm5102: Fix PM disable depth imbalance in wm5102_probe Greg Kroah-Hartman
2022-10-19  8:28 ` [PATCH 6.0 412/862] ASoC: mt6660: Fix PM disable depth imbalance in mt6660_i2c_probe Greg Kroah-Hartman
2022-10-19  8:28 ` [PATCH 6.0 413/862] ASoC: rockchip: i2s: use regmap_read_poll_timeout_atomic to poll I2S_CLR Greg Kroah-Hartman
2022-10-19  8:28 ` [PATCH 6.0 414/862] ALSA: hda/hdmi: Dont skip notification handling during PM operation Greg Kroah-Hartman
2022-10-19  8:28 ` [PATCH 6.0 415/862] memory: pl353-smc: Fix refcount leak bug in pl353_smc_probe() Greg Kroah-Hartman
2022-10-19  8:28 ` [PATCH 6.0 416/862] memory: of: Fix refcount leak bug in of_get_ddr_timings() Greg Kroah-Hartman
2022-10-19  8:28 ` [PATCH 6.0 417/862] memory: of: Fix refcount leak bug in of_lpddr3_get_ddr_timings() Greg Kroah-Hartman
2022-10-19  8:28 ` [PATCH 6.0 418/862] locks: fix TOCTOU race when granting write lease Greg Kroah-Hartman
2022-10-19  8:28 ` [PATCH 6.0 419/862] soc: qcom: smsm: Fix refcount leak bugs in qcom_smsm_probe() Greg Kroah-Hartman
2022-10-19  8:28 ` [PATCH 6.0 420/862] soc: qcom: smem_state: Add refcounting for the state->of_node Greg Kroah-Hartman
2022-10-19  8:28 ` [PATCH 6.0 421/862] ARM: dts: imx6qdl-kontron-samx6i: hook up DDC i2c bus Greg Kroah-Hartman
2022-10-19  8:28 ` [PATCH 6.0 422/862] arm64: dts: renesas: r9a07g044: Fix SCI{Rx,Tx} interrupt types Greg Kroah-Hartman
2022-10-19  8:28 ` [PATCH 6.0 423/862] arm64: dts: renesas: r9a07g054: " Greg Kroah-Hartman
2022-10-19  8:28 ` [PATCH 6.0 424/862] arm64: dts: renesas: r9a07g043: " Greg Kroah-Hartman
2022-10-19  8:28 ` [PATCH 6.0 425/862] dt-bindings: clock: exynosautov9: correct clock numbering of peric0/c1 Greg Kroah-Hartman
2022-10-19  8:28 ` [PATCH 6.0 426/862] arm64: dts: qcom: sdm845-xiaomi-polaris: Fix sde_dsi_active pinctrl Greg Kroah-Hartman
2022-10-19  8:28 ` [PATCH 6.0 427/862] arm64: dts: qcom: sc7280: Cleanup the lpasscc node Greg Kroah-Hartman
2022-10-19  8:28 ` [PATCH 6.0 428/862] arm64: dts: qcom: sc7280: Update lpasscore node Greg Kroah-Hartman
2022-10-19  8:28 ` [PATCH 6.0 429/862] arm64: dts: qcom: sc8280xp-crd: disallow regulator mode switches Greg Kroah-Hartman
2022-10-19  8:28 ` [PATCH 6.0 430/862] arm64: dts: qcom: sc8280xp-lenovo-thinkpad-x13s: " Greg Kroah-Hartman
2022-10-19  8:28 ` [PATCH 6.0 431/862] arm64: dts: qcom: sa8295p-adp: " Greg Kroah-Hartman
2022-10-19  8:28 ` [PATCH 6.0 432/862] arm64: dts: qcom: pm8350c: Drop PWM reg declaration Greg Kroah-Hartman
2022-10-19  8:28 ` [PATCH 6.0 433/862] arm64: dts: qcom: sc7180-trogdor: Keep pm6150_adc enabled for TZ Greg Kroah-Hartman
2022-10-19  8:28 ` [PATCH 6.0 434/862] ARM: dts: turris-omnia: Fix mpp26 pin name and comment Greg Kroah-Hartman
2022-10-19  8:28 ` [PATCH 6.0 435/862] ARM: dts: kirkwood: lsxl: fix serial line Greg Kroah-Hartman
2022-10-19  8:28 ` [PATCH 6.0 436/862] ARM: dts: kirkwood: lsxl: remove first ethernet port Greg Kroah-Hartman
2022-10-19  8:28 ` [PATCH 6.0 437/862] arm64: dts: marvell: 98dx25xx: use correct property for i2c gpios Greg Kroah-Hartman
2022-10-19  8:28 ` [PATCH 6.0 438/862] arm64: dts: qcom: sc8280xp-pmics: Remove reg entry & use correct node name for pmc8280c_lpg node Greg Kroah-Hartman
2022-10-19 15:33   ` Johan Hovold
2022-10-19 15:40     ` Greg Kroah-Hartman
2022-10-19  8:28 ` [PATCH 6.0 439/862] ia64: export memory_add_physaddr_to_nid to fix cxl build error Greg Kroah-Hartman
2022-10-19  8:28 ` [PATCH 6.0 440/862] arm64: dts: qcom: sm8350-sagami: correct TS pin property Greg Kroah-Hartman
2022-10-19  8:28 ` [PATCH 6.0 441/862] soc/tegra: fuse: Add missing of_node_put() in tegra_init_fuse() Greg Kroah-Hartman
2022-10-19  8:28 ` [PATCH 6.0 442/862] soc/tegra: fuse: Drop Kconfig dependency on TEGRA20_APB_DMA Greg Kroah-Hartman
2022-10-19  8:28 ` [PATCH 6.0 443/862] arm64: dts: qcom: ipq8074: fix PCIe PHY serdes size Greg Kroah-Hartman
2022-10-19  8:28 ` [PATCH 6.0 444/862] arm64: dts: qcom: sm8450: fix UFS " Greg Kroah-Hartman
2022-10-19  8:28 ` [PATCH 6.0 445/862] arm64: dts: ti: k3-j7200: fix main pinmux range Greg Kroah-Hartman
2022-10-19  8:28 ` [PATCH 6.0 446/862] ARM: dts: exynos: correct s5k6a3 reset polarity on Midas family Greg Kroah-Hartman
2022-10-19  8:28 ` [PATCH 6.0 447/862] ARM: Drop CMDLINE_* dependency on ATAGS Greg Kroah-Hartman
2022-10-19  8:28 ` [PATCH 6.0 448/862] ext4: continue to expand file system when the target size doesnt reach Greg Kroah-Hartman
2022-10-19  8:28 ` [PATCH 6.0 449/862] ext4: dont run ext4lazyinit for read-only filesystems Greg Kroah-Hartman
2022-10-19  8:28 ` [PATCH 6.0 450/862] arm64: ftrace: fix module PLTs with mcount Greg Kroah-Hartman
2022-10-19  8:28 ` [PATCH 6.0 451/862] arm64: dts: exynos: fix polarity of "enable" line of NFC chip in TM2 Greg Kroah-Hartman
2022-10-19  8:28 ` [PATCH 6.0 452/862] ARM: dts: exynos: fix polarity of VBUS GPIO of Origen Greg Kroah-Hartman
2022-10-19  8:29 ` [PATCH 6.0 453/862] iomap: iomap: fix memory corruption when recording errors during writeback Greg Kroah-Hartman
2022-10-19  8:29 ` [PATCH 6.0 454/862] selftests/cpu-hotplug: Use return instead of exit Greg Kroah-Hartman
2022-10-19  8:29 ` [PATCH 6.0 455/862] selftests/cpu-hotplug: Delete fault injection related code Greg Kroah-Hartman
2022-10-19  8:29 ` [PATCH 6.0 456/862] selftests/cpu-hotplug: Reserve one cpu online at least Greg Kroah-Hartman
2022-10-19  8:29 ` [PATCH 6.0 457/862] iio: adc: at91-sama5d2_adc: fix AT91_SAMA5D2_MR_TRACKTIM_MAX Greg Kroah-Hartman
2022-10-19  8:29 ` [PATCH 6.0 458/862] iio: adc: at91-sama5d2_adc: check return status for pressure and touch Greg Kroah-Hartman
2022-10-19  8:29 ` [PATCH 6.0 459/862] iio: adc: at91-sama5d2_adc: lock around oversampling and sample freq Greg Kroah-Hartman
2022-10-19  8:29 ` [PATCH 6.0 460/862] iio: adc: at91-sama5d2_adc: disable/prepare buffer on suspend/resume Greg Kroah-Hartman
2022-10-19  8:29 ` [PATCH 6.0 461/862] iio: inkern: only release the device node when done with it Greg Kroah-Hartman
2022-10-19  8:29 ` [PATCH 6.0 462/862] iio: inkern: fix return value in devm_of_iio_channel_get_by_name() Greg Kroah-Hartman
2022-10-19  8:29 ` [PATCH 6.0 463/862] iio: ABI: Fix wrong format of differential capacitance channel ABI Greg Kroah-Hartman
2022-10-19  8:29 ` [PATCH 6.0 464/862] iio: magnetometer: yas530: Change data type of hard_offsets to signed Greg Kroah-Hartman
2022-10-19  8:29 ` [PATCH 6.0 465/862] RDMA/mlx5: Dont compare mkey tags in DEVX indirect mkey Greg Kroah-Hartman
2022-10-19  8:29 ` [PATCH 6.0 466/862] usb: common: usb-conn-gpio: Simplify some error message Greg Kroah-Hartman
2022-10-19  8:29 ` [PATCH 6.0 467/862] usb: common: debug: Check non-standard control requests Greg Kroah-Hartman
2022-10-19  8:29 ` [PATCH 6.0 468/862] clk: meson: Hold reference returned by of_get_parent() Greg Kroah-Hartman
2022-10-19  8:29 ` [PATCH 6.0 469/862] clk: st: " Greg Kroah-Hartman
2022-10-19  8:29 ` [PATCH 6.0 470/862] clk: oxnas: " Greg Kroah-Hartman
2022-10-19  8:29 ` [PATCH 6.0 471/862] clk: qoriq: " Greg Kroah-Hartman
2022-10-19  8:29 ` [PATCH 6.0 472/862] clk: berlin: Add of_node_put() for of_get_parent() Greg Kroah-Hartman
2022-10-19  8:29 ` [PATCH 6.0 473/862] clk: sprd: Hold reference returned by of_get_parent() Greg Kroah-Hartman
2022-10-19  8:29 ` [PATCH 6.0 474/862] coresight: docs: Fix a broken reference Greg Kroah-Hartman
2022-10-19  8:29 ` [PATCH 6.0 475/862] clk: tegra: Fix refcount leak in tegra210_clock_init Greg Kroah-Hartman
2022-10-19  8:29 ` [PATCH 6.0 476/862] clk: tegra: Fix refcount leak in tegra114_clock_init Greg Kroah-Hartman
2022-10-19  8:29 ` [PATCH 6.0 477/862] clk: tegra20: Fix refcount leak in tegra20_clock_init Greg Kroah-Hartman
2022-10-19  8:29 ` [PATCH 6.0 478/862] clk: samsung: exynosautov9: correct register offsets of peric0/c1 Greg Kroah-Hartman
2022-10-19  8:29 ` [PATCH 6.0 479/862] sbitmap: fix possible io hung due to lost wakeup Greg Kroah-Hartman
2022-10-19 15:06   ` Hugh Dickins
2022-10-19 17:25     ` Greg Kroah-Hartman
2022-10-19 17:37       ` Jens Axboe
2022-10-19  8:29 ` [PATCH 6.0 480/862] HID: uclogic: Add missing suffix for digitalizers Greg Kroah-Hartman
2022-10-19  8:29 ` [PATCH 6.0 481/862] HID: uclogic: Fix warning in uclogic_rdesc_template_apply Greg Kroah-Hartman
2022-10-19  8:29 ` [PATCH 6.0 482/862] HSI: omap_ssi: Fix refcount leak in ssi_probe Greg Kroah-Hartman
2022-10-19  8:29 ` [PATCH 6.0 483/862] HSI: omap_ssi_port: Fix dma_map_sg error check Greg Kroah-Hartman
2022-10-19  8:29 ` [PATCH 6.0 484/862] clk: qcom: gcc-sdm660: Use floor ops for SDCC1 clock Greg Kroah-Hartman
2022-10-19  8:29 ` [PATCH 6.0 485/862] media: exynos4-is: fimc-is: Add of_node_put() when breaking out of loop Greg Kroah-Hartman
2022-10-19  8:29 ` [PATCH 6.0 486/862] media: airspy: fix memory leak in airspy probe Greg Kroah-Hartman
2022-10-19  8:29 ` [PATCH 6.0 487/862] tty: xilinx_uartps: Check clk_enable return value Greg Kroah-Hartman
2022-10-19  8:29 ` [PATCH 6.0 488/862] tty: xilinx_uartps: Fix the ignore_status Greg Kroah-Hartman
2022-10-19  8:29 ` [PATCH 6.0 489/862] media: mediatek: vcodec: Skip non CBR bitrate mode Greg Kroah-Hartman
2022-10-19  8:29 ` [PATCH 6.0 490/862] media: amphion: insert picture startcode after seek for vc1g format Greg Kroah-Hartman
2022-10-19  8:29 ` [PATCH 6.0 491/862] media: amphion: adjust the encoders value range of gop size Greg Kroah-Hartman
2022-10-19  8:29 ` [PATCH 6.0 492/862] media: amphion: dont change the colorspace reported by decoder Greg Kroah-Hartman
2022-10-19  8:29 ` [PATCH 6.0 493/862] media: amphion: fix a bug that vpu core may not resume after suspend Greg Kroah-Hartman
2022-10-19  8:29 ` [PATCH 6.0 494/862] media: meson: vdec: add missing clk_disable_unprepare on error in vdec_hevc_start() Greg Kroah-Hartman
2022-10-19  8:29 ` [PATCH 6.0 495/862] media: uvcvideo: Fix memory leak in uvc_gpio_parse Greg Kroah-Hartman
2022-10-19  8:29 ` [PATCH 6.0 496/862] media: uvcvideo: Use entity get_cur in uvc_ctrl_set Greg Kroah-Hartman
2022-10-19  8:29 ` [PATCH 6.0 497/862] media: xilinx: vipp: Fix refcount leak in xvip_graph_dma_init Greg Kroah-Hartman
2022-10-19  8:29 ` [PATCH 6.0 498/862] RDMA/rxe: Fix "kernel NULL pointer dereference" error Greg Kroah-Hartman
2022-10-19  8:29 ` [PATCH 6.0 499/862] RDMA/rxe: Fix the error caused by qp->sk Greg Kroah-Hartman
2022-10-19  8:29 ` [PATCH 6.0 500/862] clk: mediatek: clk-mt8195-vdo0: Set rate on vdo0_dp_intf0_dp_intfs parent Greg Kroah-Hartman
2022-10-19  8:29 ` [PATCH 6.0 501/862] clk: mediatek: clk-mt8195-vdo1: Reparent and set rate on vdo1_dpintfs parent Greg Kroah-Hartman
2022-10-19  8:29 ` [PATCH 6.0 502/862] clk: mediatek: mt8195-infra_ao: Set pwrmcu clocks as critical Greg Kroah-Hartman
2022-10-19  8:29 ` [PATCH 6.0 503/862] misc: ocxl: fix possible refcount leak in afu_ioctl() Greg Kroah-Hartman
2022-10-19  8:29 ` [PATCH 6.0 504/862] fpga: dfl-pci: Add IDs for Intel N6000, N6001 and C6100 cards Greg Kroah-Hartman
2022-10-19  8:29 ` [PATCH 6.0 505/862] fpga: prevent integer overflow in dfl_feature_ioctl_set_irq() Greg Kroah-Hartman
2022-10-19  8:29 ` [PATCH 6.0 506/862] phy: rockchip-inno-usb2: Return zero after otg sync Greg Kroah-Hartman
2022-10-19  8:29 ` [PATCH 6.0 507/862] dmaengine: idxd: avoid deadlock in process_misc_interrupts() Greg Kroah-Hartman
2022-10-19  8:29 ` [PATCH 6.0 508/862] dmaengine: hisilicon: Disable channels when unregister hisi_dma Greg Kroah-Hartman
2022-10-19  8:29 ` [PATCH 6.0 509/862] dmaengine: hisilicon: Fix CQ head update Greg Kroah-Hartman
2022-10-19  8:29 ` [PATCH 6.0 510/862] dmaengine: hisilicon: Add multi-thread support for a DMA channel Greg Kroah-Hartman
2022-10-19  8:29 ` [PATCH 6.0 511/862] iio: Use per-device lockdep class for mlock Greg Kroah-Hartman
2022-10-19  8:29 ` [PATCH 6.0 512/862] usb: gadget: f_fs: stricter integer overflow checks Greg Kroah-Hartman
2022-10-19  8:30 ` [PATCH 6.0 513/862] dyndbg: fix static_branch manipulation Greg Kroah-Hartman
2022-10-19  8:30 ` [PATCH 6.0 514/862] dyndbg: fix module.dyndbg handling Greg Kroah-Hartman
2022-10-19  8:30 ` [PATCH 6.0 515/862] dyndbg: let query-modname override actual module name Greg Kroah-Hartman
2022-10-19  8:30 ` [PATCH 6.0 516/862] dyndbg: drop EXPORTed dynamic_debug_exec_queries Greg Kroah-Hartman
2022-10-19  8:30 ` [PATCH 6.0 517/862] sbitmap: Avoid leaving waitqueue in invalid state in __sbq_wake_up() Greg Kroah-Hartman
2022-10-19 15:08   ` Hugh Dickins
2022-10-19  8:30 ` [PATCH 6.0 518/862] clk: qcom: sm6115: Select QCOM_GDSC Greg Kroah-Hartman
2022-10-19  8:30 ` [PATCH 6.0 519/862] scsi: lpfc: Fix various issues reported by tools Greg Kroah-Hartman
2022-10-19  8:30 ` [PATCH 6.0 520/862] mtd: devices: docg3: check the return value of devm_ioremap() in the probe Greg Kroah-Hartman
2022-10-19  8:30 ` [PATCH 6.0 521/862] remoteproc: Harden rproc_handle_vdev() against integer overflow Greg Kroah-Hartman
2022-10-19  8:30 ` [PATCH 6.0 522/862] phy: qcom-qmp-usb: disable runtime PM on unbind Greg Kroah-Hartman
2022-10-19  8:30 ` [PATCH 6.0 523/862] phy: qcom-qmp-pcie: add pcs_misc sanity check Greg Kroah-Hartman
2022-10-19  9:15   ` Johan Hovold
2022-10-19 10:41     ` Greg Kroah-Hartman
2022-10-19 11:28       ` Johan Hovold
2022-10-19  8:30 ` [PATCH 6.0 524/862] phy: qcom-qmp-pcie: fix memleak on probe deferral Greg Kroah-Hartman
2022-10-19  9:17   ` Johan Hovold
2022-10-19  8:30 ` [PATCH 6.0 525/862] phy: qcom-qmp-pcie-msm8996: " Greg Kroah-Hartman
2022-10-19  9:18   ` Johan Hovold
2022-10-19  8:30 ` [PATCH 6.0 526/862] phy: qcom-qmp-combo: " Greg Kroah-Hartman
2022-10-19  9:18   ` Johan Hovold
2022-10-19  8:30 ` [PATCH 6.0 527/862] phy: qcom-qmp-ufs: " Greg Kroah-Hartman
2022-10-19  9:18   ` Johan Hovold
2022-10-19  8:30 ` [PATCH 6.0 528/862] phy: qcom-qmp-usb: " Greg Kroah-Hartman
2022-10-19  9:19   ` Johan Hovold
2022-10-19  8:30 ` [PATCH 6.0 529/862] phy: amlogic: phy-meson-axg-mipi-pcie-analog: Hold reference returned by of_get_parent() Greg Kroah-Hartman
2022-10-19  8:30 ` [PATCH 6.0 530/862] phy: phy-mtk-tphy: fix the phy type setting issue Greg Kroah-Hartman
2022-10-19  8:30 ` [PATCH 6.0 531/862] mtd: rawnand: intel: Read the chip-select line from the correct OF node Greg Kroah-Hartman
2022-10-19  8:30 ` [PATCH 6.0 532/862] mtd: rawnand: intel: Remove undocumented compatible string Greg Kroah-Hartman
2022-10-19  8:30 ` [PATCH 6.0 533/862] mtd: rawnand: fsl_elbc: Fix none ECC mode Greg Kroah-Hartman
2022-10-19  8:30 ` [PATCH 6.0 534/862] RDMA/irdma: Align AE id codes to correct flush code and event Greg Kroah-Hartman
2022-10-19  8:30 ` [PATCH 6.0 535/862] RDMA/irdma: Validate udata inlen and outlen Greg Kroah-Hartman
2022-10-19  8:30 ` [PATCH 6.0 536/862] RDMA/srp: Fix srp_abort() Greg Kroah-Hartman
2022-10-19  8:30 ` [PATCH 6.0 537/862] RDMA/siw: Always consume all skbuf data in sk_data_ready() upcall Greg Kroah-Hartman
2022-10-19  8:30 ` [PATCH 6.0 538/862] RDMA/siw: Fix QP destroy to wait for all references dropped Greg Kroah-Hartman
2022-10-19  8:30 ` [PATCH 6.0 539/862] ata: fix ata_id_sense_reporting_enabled() and ata_id_has_sense_reporting() Greg Kroah-Hartman
2022-10-19  8:30 ` [PATCH 6.0 540/862] ata: fix ata_id_has_devslp() Greg Kroah-Hartman
2022-10-19  8:30 ` [PATCH 6.0 541/862] ata: fix ata_id_has_ncq_autosense() Greg Kroah-Hartman
2022-10-19  8:30 ` [PATCH 6.0 542/862] ata: fix ata_id_has_dipm() Greg Kroah-Hartman
2022-10-19  8:30 ` [PATCH 6.0 543/862] mtd: rawnand: meson: fix bit map use in meson_nfc_ecc_correct() Greg Kroah-Hartman
2022-10-19  8:30 ` [PATCH 6.0 544/862] block: Fix the enum blk_eh_timer_return documentation Greg Kroah-Hartman
2022-10-19  8:30 ` [PATCH 6.0 545/862] eventfd: guard wake_up in eventfd fs calls as well Greg Kroah-Hartman
2022-10-19  8:30 ` [PATCH 6.0 546/862] io_uring/fdinfo: fix sqe dumping for IORING_SETUP_SQE128 Greg Kroah-Hartman
2022-10-19  8:30 ` [PATCH 6.0 547/862] md: Replace snprintf with scnprintf Greg Kroah-Hartman
2022-10-19  8:30 ` [PATCH 6.0 548/862] md/raid5: Ensure stripe_fill happens on non-read IO with journal Greg Kroah-Hartman
2022-10-19  8:30 ` [PATCH 6.0 549/862] md/raid5: Remove unnecessary bio_put() in raid5_read_one_chunk() Greg Kroah-Hartman
2022-10-19  8:30 ` [PATCH 6.0 550/862] md: Remove extra mddev_get() in md_seq_start() Greg Kroah-Hartman
2022-10-19  8:30 ` [PATCH 6.0 551/862] RDMA/cm: Use SLID in the work completion as the DLID in responder side Greg Kroah-Hartman
2022-10-19  8:30 ` [PATCH 6.0 552/862] IB: Set IOVA/LENGTH on IB_MR in core/uverbs layers Greg Kroah-Hartman
2022-10-19  8:30 ` [PATCH 6.0 553/862] xhci: Dont show warning for reinit on known broken suspend Greg Kroah-Hartman
2022-10-19  8:30 ` [PATCH 6.0 554/862] usb: gadget: function: fix dangling pnp_string in f_printer.c Greg Kroah-Hartman
2022-10-19  8:30 ` [PATCH 6.0 555/862] usb: typec: anx7411: Use of_get_child_by_name() instead of of_find_node_by_name() Greg Kroah-Hartman
2022-10-19  8:30 ` [PATCH 6.0 556/862] usb: dwc3: core: fix some leaks in probe Greg Kroah-Hartman
2022-10-19  8:30 ` [PATCH 6.0 557/862] drivers: serial: jsm: " Greg Kroah-Hartman
2022-10-19  8:30 ` [PATCH 6.0 558/862] serial: 8250: Toggle IER bits on only after irq has been set up Greg Kroah-Hartman
2022-10-19  8:30 ` [PATCH 6.0 559/862] tty: serial: fsl_lpuart: disable dma rx/tx use flags in lpuart_dma_shutdown Greg Kroah-Hartman
2022-10-19  8:30 ` [PATCH 6.0 560/862] phy: qualcomm: call clk_disable_unprepare in the error handling Greg Kroah-Hartman
2022-10-19  8:30 ` [PATCH 6.0 561/862] staging: vt6655: fix some erroneous memory clean-up loops Greg Kroah-Hartman
2022-10-19  8:30 ` [PATCH 6.0 562/862] slimbus: qcom-ngd: Add error handling in of_qcom_slim_ngd_register Greg Kroah-Hartman
2022-10-19  8:30 ` [PATCH 6.0 563/862] firmware: google: Test spinlock on panic path to avoid lockups Greg Kroah-Hartman
2022-10-19  8:30 ` [PATCH 6.0 564/862] serial: 8250: Fix restoring termios speed after suspend Greg Kroah-Hartman
2022-10-19  8:30 ` [PATCH 6.0 565/862] scsi: libsas: Fix use-after-free bug in smp_execute_task_sg() Greg Kroah-Hartman
2022-10-19  8:30 ` [PATCH 6.0 566/862] scsi: pm8001: Fix running_req for internal abort commands Greg Kroah-Hartman
2022-10-19  8:30 ` [PATCH 6.0 567/862] scsi: iscsi: iscsi_tcp: Fix null-ptr-deref while calling getpeername() Greg Kroah-Hartman
2022-10-19  8:30 ` [PATCH 6.0 568/862] clk: qcom: apss-ipq6018: mark apcs_alias0_core_clk as critical Greg Kroah-Hartman
2022-10-19  8:30 ` [PATCH 6.0 569/862] clk: qcom: gcc-sm6115: Override default Alpha PLL regs Greg Kroah-Hartman
2022-10-19  8:30 ` [PATCH 6.0 570/862] nvmet-auth: dont try to cancel a non-initialized work_struct Greg Kroah-Hartman
2022-10-19  8:30 ` [PATCH 6.0 571/862] RDMA/rxe: Set pd early in mr alloc routines Greg Kroah-Hartman
2022-10-19  8:30 ` [PATCH 6.0 572/862] RDMA/rxe: Fix resize_finish() in rxe_queue.c Greg Kroah-Hartman
2022-10-19  8:31 ` [PATCH 6.0 573/862] fsi: core: Check error number after calling ida_simple_get Greg Kroah-Hartman
2022-10-19  8:31 ` [PATCH 6.0 574/862] mfd: intel_soc_pmic: Fix an error handling path in intel_soc_pmic_i2c_probe() Greg Kroah-Hartman
2022-10-19  8:31 ` [PATCH 6.0 575/862] mfd: fsl-imx25: Fix an error handling path in mx25_tsadc_setup_irq() Greg Kroah-Hartman
2022-10-19  8:31 ` [PATCH 6.0 576/862] mfd: lp8788: Fix an error handling path in lp8788_probe() Greg Kroah-Hartman
2022-10-19  8:31 ` [PATCH 6.0 577/862] mfd: lp8788: Fix an error handling path in lp8788_irq_init() and lp8788_irq_init() Greg Kroah-Hartman
2022-10-19  8:31 ` [PATCH 6.0 578/862] mfd: fsl-imx25: Fix check for platform_get_irq() errors Greg Kroah-Hartman
2022-10-19  8:31 ` [PATCH 6.0 579/862] mfd: sm501: Add check for platform_driver_register() Greg Kroah-Hartman
2022-10-19  8:31 ` [PATCH 6.0 580/862] mfd: da9061: Fix Failed to set Two-Wire Bus Mode Greg Kroah-Hartman
2022-10-19  8:31 ` [PATCH 6.0 581/862] clk: mediatek: mt8183: mfgcfg: Propagate rate changes to parent Greg Kroah-Hartman
2022-10-19  8:31 ` [PATCH 6.0 582/862] clk: mediatek: clk-mt8195-mfg: Reparent mfg_bg3d and propagate rate changes Greg Kroah-Hartman
2022-10-19  8:31 ` [PATCH 6.0 583/862] clk: mediatek: fix unregister function in mtk_clk_register_dividers cleanup Greg Kroah-Hartman
2022-10-19  8:31 ` [PATCH 6.0 584/862] clk: mediatek: Migrate remaining clk_unregister_*() to clk_hw_unregister_*() Greg Kroah-Hartman
2022-10-19  8:31 ` [PATCH 6.0 585/862] phy: qcom-qmp-pcie: fix resource mapping for SDM845 QHP PHY Greg Kroah-Hartman
2022-10-19  9:20   ` Johan Hovold
2022-10-19  8:31 ` [PATCH 6.0 586/862] io_uring/rw: defer fsnotify calls to task context Greg Kroah-Hartman
2022-10-19  8:31 ` [PATCH 6.0 587/862] dmaengine: ioat: stop mod_timer from resurrecting deleted timer in __cleanup() Greg Kroah-Hartman
2022-10-19  8:31 ` [PATCH 6.0 588/862] HID: amd_sfh: Handle condition of "no sensors" for SFH1.1 Greg Kroah-Hartman
2022-10-19  8:31 ` [PATCH 6.0 589/862] usb: mtu3: fix failed runtime suspend in host only mode Greg Kroah-Hartman
2022-10-19  8:31 ` [PATCH 6.0 590/862] spmi: pmic-arb: correct duplicate APID to PPID mapping logic Greg Kroah-Hartman
2022-10-19  8:31 ` [PATCH 6.0 591/862] clk: vc5: Fix 5P49V6901 outputs disabling when enabling FOD Greg Kroah-Hartman
2022-10-19  8:31 ` [PATCH 6.0 592/862] clk: baikal-t1: Fix invalid xGMAC PTP clock divider Greg Kroah-Hartman
2022-10-19  8:31 ` [PATCH 6.0 593/862] clk: baikal-t1: Add shared xGMAC ref/ptp clocks internal parent Greg Kroah-Hartman
2022-10-19  8:31 ` [PATCH 6.0 594/862] clk: baikal-t1: Add SATA internal ref clock buffer Greg Kroah-Hartman
2022-10-19  8:31 ` [PATCH 6.0 595/862] clk: bcm2835: Make peripheral PLLC critical Greg Kroah-Hartman
2022-10-19  8:31 ` [PATCH 6.0 596/862] clk: bcm2835: fix bcm2835_clock_rate_from_divisor declaration Greg Kroah-Hartman
2022-10-19  8:31 ` [PATCH 6.0 597/862] clk: imx8mp: tune the order of enet_qos_root_clk Greg Kroah-Hartman
2022-10-19  8:31 ` [PATCH 6.0 598/862] clk: imx: scu: fix memleak on platform_device_add() fails Greg Kroah-Hartman
2022-10-19  8:31 ` [PATCH 6.0 599/862] clk: ti: Balance of_node_get() calls for of_find_node_by_name() Greg Kroah-Hartman
2022-10-19  8:31 ` [PATCH 6.0 600/862] clk: ti: dra7-atl: Fix reference leak in of_dra7_atl_clk_probe Greg Kroah-Hartman
2022-10-19  8:31 ` [PATCH 6.0 601/862] clk: ast2600: BCLK comes from EPLL Greg Kroah-Hartman
2022-10-19  8:31 ` [PATCH 6.0 602/862] mailbox: imx: fix RST channel support Greg Kroah-Hartman
2022-10-19  8:31 ` [PATCH 6.0 603/862] mailbox: mpfs: fix handling of the reg property Greg Kroah-Hartman
2022-10-19  8:31 ` [PATCH 6.0 604/862] mailbox: mpfs: account for mbox offsets while sending Greg Kroah-Hartman
2022-10-19  8:31 ` [PATCH 6.0 605/862] mailbox: bcm-ferxrm-mailbox: Fix error check for dma_map_sg Greg Kroah-Hartman
2022-10-19  8:31 ` [PATCH 6.0 606/862] ipc: mqueue: fix possible memory leak in init_mqueue_fs() Greg Kroah-Hartman
2022-10-19  8:31 ` [PATCH 6.0 607/862] powerpc/configs: Properly enable PAPR_SCM in pseries_defconfig Greg Kroah-Hartman
2022-10-19  8:31 ` [PATCH 6.0 608/862] powerpc/math_emu/efp: Include module.h Greg Kroah-Hartman
2022-10-19  8:31 ` [PATCH 6.0 609/862] powerpc/sysdev/fsl_msi: Add missing of_node_put() Greg Kroah-Hartman
2022-10-19  8:31 ` [PATCH 6.0 610/862] powerpc/pci_dn: " Greg Kroah-Hartman
2022-10-19  8:31 ` [PATCH 6.0 611/862] powerpc/powernv: add missing of_node_put() in opal_export_attrs() Greg Kroah-Hartman
2022-10-19  8:31 ` [PATCH 6.0 612/862] cpuidle: riscv-sbi: Fix CPU_PM_CPU_IDLE_ENTER_xyz() macro usage Greg Kroah-Hartman
2022-10-19  8:31 ` [PATCH 6.0 613/862] powerpc: dts: turris1x.dts: Fix NOR partitions labels Greg Kroah-Hartman
2022-10-19  8:31 ` [PATCH 6.0 614/862] powerpc: dts: turris1x.dts: Fix labels in DSA cpu port nodes Greg Kroah-Hartman
2022-10-19  8:31 ` [PATCH 6.0 615/862] powerpc: Fix fallocate and fadvise64_64 compat parameter combination Greg Kroah-Hartman
2022-10-19  8:31 ` [PATCH 6.0 616/862] x86/hyperv: Fix struct hv_enlightened_vmcs definition Greg Kroah-Hartman
2022-10-19  8:31 ` [PATCH 6.0 617/862] powerpc/64s: Fix GENERIC_CPU build flags for PPC970 / G5 Greg Kroah-Hartman
2022-10-19  8:31 ` [PATCH 6.0 618/862] powerpc/64/interrupt: Fix false warning in context tracking due to idle state Greg Kroah-Hartman
2022-10-19  8:31 ` [PATCH 6.0 619/862] powerpc/64: mark irqs hard disabled in boot paca Greg Kroah-Hartman
2022-10-19  8:31 ` [PATCH 6.0 620/862] powerpc/64/interrupt: Fix return to masked context after hard-mask irq becomes pending Greg Kroah-Hartman
2022-10-19  8:31 ` [PATCH 6.0 621/862] powerpc: Fix SPE Power ISA properties for e500v1 platforms Greg Kroah-Hartman
2022-10-19  8:31 ` [PATCH 6.0 622/862] powerpc/kprobes: Fix null pointer reference in arch_prepare_kprobe() Greg Kroah-Hartman
2022-10-19  8:31 ` [PATCH 6.0 623/862] powerpc/pseries/vas: Pass hw_cpu_id to node associativity HCALL Greg Kroah-Hartman
2022-10-19  8:31 ` [PATCH 6.0 624/862] crypto: sahara - dont sleep when in softirq Greg Kroah-Hartman
2022-10-19  8:31 ` [PATCH 6.0 625/862] crypto: hisilicon/zip - fix mismatch in get/set sgl_sge_nr Greg Kroah-Hartman
2022-10-19  8:31 ` [PATCH 6.0 626/862] hwrng: arm-smccc-trng - fix NO_ENTROPY handling Greg Kroah-Hartman
2022-10-19  8:31 ` [PATCH 6.0 627/862] crypto: ccp - Fail the PSP initialization when writing psp data file failed Greg Kroah-Hartman
2022-10-19  8:31 ` [PATCH 6.0 628/862] cgroup: Honor callers cgroup NS when resolving path Greg Kroah-Hartman
2022-10-19  8:31 ` [PATCH 6.0 629/862] hwrng: imx-rngc - use devm_clk_get_enabled Greg Kroah-Hartman
2022-10-19  8:31 ` [PATCH 6.0 630/862] hwrng: imx-rngc - Moving IRQ handler registering after imx_rngc_irq_mask_clear() Greg Kroah-Hartman
2022-10-19  8:31 ` [PATCH 6.0 631/862] crypto: qat - fix default value of WDT timer Greg Kroah-Hartman
2022-10-19  8:31 ` [PATCH 6.0 632/862] crypto: hisilicon/qm - fix missing put dfx access Greg Kroah-Hartman
2022-10-19  8:32 ` [PATCH 6.0 633/862] cgroup/cpuset: Enable update_tasks_cpumask() on top_cpuset Greg Kroah-Hartman
2022-10-19  8:32 ` [PATCH 6.0 634/862] iommu/omap: Fix buffer overflow in debugfs Greg Kroah-Hartman
2022-10-19  8:32 ` [PATCH 6.0 635/862] crypto: akcipher - default implementation for setting a private key Greg Kroah-Hartman
2022-10-19  8:32 ` [PATCH 6.0 636/862] crypto: ccp - Release dma channels before dmaengine unrgister Greg Kroah-Hartman
2022-10-19  8:32 ` [PATCH 6.0 637/862] crypto: inside-secure - Change swab to swab32 Greg Kroah-Hartman
2022-10-19  8:32 ` [PATCH 6.0 638/862] crypto: qat - fix DMA transfer direction Greg Kroah-Hartman
2022-10-19  8:32 ` [PATCH 6.0 639/862] clocksource/drivers/arm_arch_timer: Fix handling of ARM erratum 858921 Greg Kroah-Hartman
2022-10-19  8:32 ` [PATCH 6.0 640/862] clocksource/drivers/timer-gxp: Add missing error handling in gxp_timer_probe Greg Kroah-Hartman
2022-10-19  8:32 ` [PATCH 6.0 641/862] cifs: return correct error in ->calc_signature() Greg Kroah-Hartman
2022-10-19  8:32 ` [PATCH 6.0 642/862] iommu/iova: Fix module config properly Greg Kroah-Hartman
2022-10-19  8:32 ` [PATCH 6.0 643/862] tracing: kprobe: Fix kprobe event gen test module on exit Greg Kroah-Hartman
2022-10-19  8:32 ` [PATCH 6.0 644/862] tracing: kprobe: Make gen test module work in arm and riscv Greg Kroah-Hartman
2022-10-19  8:32 ` [PATCH 6.0 645/862] tracing/osnoise: Fix possible recursive locking in stop_per_cpu_kthreads Greg Kroah-Hartman
2022-10-19  8:32 ` [PATCH 6.0 646/862] ftrace: Fix recursive locking direct_mutex in ftrace_modify_direct_caller Greg Kroah-Hartman
2022-10-19  8:32 ` [PATCH 6.0 647/862] kbuild: remove the target in signal traps when interrupted Greg Kroah-Hartman
2022-10-19  8:32 ` [PATCH 6.0 648/862] linux/export: use inline assembler to populate symbol CRCs Greg Kroah-Hartman
2022-10-19  8:32 ` [PATCH 6.0 649/862] kbuild: rpm-pkg: fix breakage when V=1 is used Greg Kroah-Hartman
2022-10-19  8:32 ` [PATCH 6.0 650/862] crypto: marvell/octeontx - prevent integer overflows Greg Kroah-Hartman
2022-10-19  8:32 ` [PATCH 6.0 651/862] crypto: cavium - prevent integer overflow loading firmware Greg Kroah-Hartman
2022-10-19  8:32 ` [PATCH 6.0 652/862] random: schedule jitter credit for next jiffy, not in two jiffies Greg Kroah-Hartman
2022-10-19  8:32 ` [PATCH 6.0 653/862] thermal/drivers/qcom/tsens-v0_1: Fix MSM8939 fourth sensor hw_id Greg Kroah-Hartman
2022-10-19  8:32 ` Greg Kroah-Hartman [this message]
2022-10-19  8:32 ` [PATCH 6.0 655/862] f2fs: fix race condition on setting FI_NO_EXTENT flag Greg Kroah-Hartman
2022-10-19  8:32 ` [PATCH 6.0 656/862] f2fs: fix to account FS_CP_DATA_IO correctly Greg Kroah-Hartman
2022-10-19  8:32 ` [PATCH 6.0 657/862] tools/power turbostat: Use standard Energy Unit for SPR Dram RAPL domain Greg Kroah-Hartman
2022-10-19  8:32 ` [PATCH 6.0 658/862] selftest: tpm2: Add Client.__del__() to close /dev/tpm* handle Greg Kroah-Hartman
2022-10-19  8:32 ` [PATCH 6.0 659/862] =?UTF-8?q?ARM/dma-mapp=D1=96ng:=20dont=20override=20->dma=5Fcohe?= =?UTF-8?q?rent=20when=20set=20from=20a=20bus=20notifier?= Greg Kroah-Hartman
2022-10-19  9:14   ` Russell King (Oracle)
2022-10-19 10:36     ` Christoph Hellwig
2022-10-19 10:39     ` Greg Kroah-Hartman
2022-10-20  1:46   ` [PATCH 6.0 659/862] ARM/dma-mappіng: dont override ->dma_coherent when set from a bus notifier Bagas Sanjaya
2022-10-19  8:32 ` [PATCH 6.0 660/862] module: tracking: Keep a record of tainted unloaded modules only Greg Kroah-Hartman
2022-10-19  8:32 ` [PATCH 6.0 661/862] fs: dlm: fix race in lowcomms Greg Kroah-Hartman
2022-10-19  8:32 ` [PATCH 6.0 662/862] rcu: Avoid triggering strict-GP irq-work when RCU is idle Greg Kroah-Hartman
2022-10-19  8:32 ` [PATCH 6.0 663/862] rcu: Back off upon fill_page_cache_func() allocation failure Greg Kroah-Hartman
2022-10-19  8:32 ` [PATCH 6.0 664/862] rcu-tasks: Convert RCU_LOCKDEP_WARN() to WARN_ONCE() Greg Kroah-Hartman
2022-10-19  8:32 ` [PATCH 6.0 665/862] rcu-tasks: Ensure RCU Tasks Trace loops have quiescent states Greg Kroah-Hartman
2022-10-19  8:32 ` [PATCH 6.0 666/862] cpufreq: amd_pstate: fix wrong lowest perf fetch Greg Kroah-Hartman
2022-10-19  8:32 ` [PATCH 6.0 667/862] ACPI: video: Add Toshiba Satellite/Portege Z830 quirk Greg Kroah-Hartman
2022-10-19  8:32 ` [PATCH 6.0 668/862] fortify: Fix __compiletime_strlen() under UBSAN_BOUNDS_LOCAL Greg Kroah-Hartman
2022-10-19  8:32 ` [PATCH 6.0 669/862] ACPI: tables: FPDT: Dont call acpi_os_map_memory() on invalid phys address Greg Kroah-Hartman
2022-10-19  8:32 ` [PATCH 6.0 670/862] cpufreq: intel_pstate: Add Tigerlake support in no-HWP mode Greg Kroah-Hartman
2022-10-19  8:32 ` [PATCH 6.0 671/862] MIPS: BCM47XX: Cast memcmp() of function to (void *) Greg Kroah-Hartman
2022-10-19  8:32 ` [PATCH 6.0 672/862] powercap: intel_rapl: fix UBSAN shift-out-of-bounds issue Greg Kroah-Hartman
2022-10-19  8:32 ` [PATCH 6.0 673/862] thermal: intel_powerclamp: Use get_cpu() instead of smp_processor_id() to avoid crash Greg Kroah-Hartman
2022-10-19  8:32 ` [PATCH 6.0 674/862] ARM: decompressor: Include .data.rel.ro.local Greg Kroah-Hartman
2022-10-19  8:32 ` [PATCH 6.0 675/862] ACPI: x86: Add a quirk for Dell Inspiron 14 2-in-1 for StorageD3Enable Greg Kroah-Hartman
2022-10-19  8:32 ` [PATCH 6.0 676/862] x86/entry: Work around Clang __bdos() bug Greg Kroah-Hartman
2022-10-19  8:32 ` [PATCH 6.0 677/862] NFSD: Return nfserr_serverfault if splice_ok but buf->pages have data Greg Kroah-Hartman
2022-10-19  8:32 ` [PATCH 6.0 678/862] NFSD: fix use-after-free on source server when doing inter-server copy Greg Kroah-Hartman
2022-10-19  8:32 ` [PATCH 6.0 679/862] libbpf: Ensure functions with always_inline attribute are inline Greg Kroah-Hartman
2022-10-19  8:32 ` [PATCH 6.0 680/862] libbpf: Do not require executable permission for shared libraries Greg Kroah-Hartman
2022-10-19  8:32 ` [PATCH 6.0 681/862] wifi: rtw88: phy: fix warning of possible buffer overflow Greg Kroah-Hartman
2022-10-21  0:12   ` Ping-Ke Shih
2022-10-21  9:08     ` Greg Kroah-Hartman
2022-10-19  8:32 ` [PATCH 6.0 682/862] wifi: brcmfmac: fix invalid address access when enabling SCAN log level Greg Kroah-Hartman
2022-10-19  8:32 ` [PATCH 6.0 683/862] bpftool: Clear errno after libcaps checks Greg Kroah-Hartman
2022-10-19  8:32 ` [PATCH 6.0 684/862] net: ethernet: ti: davinci_mdio: Add workaround for errata i2329 Greg Kroah-Hartman
2022-10-19  8:32 ` [PATCH 6.0 685/862] openvswitch: Fix double reporting of drops in dropwatch Greg Kroah-Hartman
2022-10-19  8:32 ` [PATCH 6.0 686/862] openvswitch: Fix overreporting " Greg Kroah-Hartman
2022-10-19  8:32 ` [PATCH 6.0 687/862] tcp: annotate data-race around tcp_md5sig_pool_populated Greg Kroah-Hartman
2022-10-19  8:32 ` [PATCH 6.0 688/862] micrel: ksz8851: fixes struct pointer issue Greg Kroah-Hartman
2022-10-19  8:32 ` [PATCH 6.0 689/862] wifi: mac80211: accept STA changes without link changes Greg Kroah-Hartman
2022-10-19  8:32 ` [PATCH 6.0 690/862] x86/mce: Retrieve poison range from hardware Greg Kroah-Hartman
2022-10-19  8:32 ` [PATCH 6.0 691/862] wifi: ath9k: avoid uninit memory read in ath9k_htc_rx_msg() Greg Kroah-Hartman
2022-10-19  8:32 ` [PATCH 6.0 692/862] thunderbolt: Add back Intel Falcon Ridge end-to-end flow control workaround Greg Kroah-Hartman
2022-10-19  8:33 ` [PATCH 6.0 693/862] x86/apic: Dont disable x2APIC if locked Greg Kroah-Hartman
2022-10-19  8:33 ` [PATCH 6.0 694/862] net: axienet: Switch to 64-bit RX/TX statistics Greg Kroah-Hartman
2022-10-19  8:33 ` [PATCH 6.0 695/862] net-next: Fix IP_UNICAST_IF option behavior for connected sockets Greg Kroah-Hartman
2022-10-19  8:33 ` [PATCH 6.0 696/862] xfrm: Update ipcomp_scratches with NULL when freed Greg Kroah-Hartman
2022-10-19  8:33 ` [PATCH 6.0 697/862] wifi: ath11k: Register shutdown handler for WCN6750 Greg Kroah-Hartman
2022-10-19  8:33 ` [PATCH 6.0 698/862] rtw89: ser: leave lps with mutex Greg Kroah-Hartman
2022-10-19  8:33 ` [PATCH 6.0 699/862] net: ftmac100: fix endianness-related issues from sparse Greg Kroah-Hartman
2022-10-19  8:33 ` [PATCH 6.0 700/862] iavf: Fix race between iavf_close and iavf_reset_task Greg Kroah-Hartman
2022-10-19  8:33 ` [PATCH 6.0 701/862] wifi: brcmfmac: fix use-after-free bug in brcmf_netdev_start_xmit() Greg Kroah-Hartman
2022-10-19  8:33 ` [PATCH 6.0 702/862] Bluetooth: btintel: Mark Intel controller to support LE_STATES quirk Greg Kroah-Hartman
2022-10-19  8:33 ` [PATCH 6.0 703/862] regulator: core: Prevent integer underflow Greg Kroah-Hartman
2022-10-19  8:33 ` [PATCH 6.0 704/862] wifi: ath11k: mhi: fix potential memory leak in ath11k_mhi_register() Greg Kroah-Hartman
2022-10-19  8:33 ` [PATCH 6.0 705/862] wifi: mt76: mt7921: reset msta->airtime_ac while clearing up hw value Greg Kroah-Hartman
2022-10-19  8:33 ` [PATCH 6.0 706/862] wifi: rtw89: free unused skb to prevent memory leak Greg Kroah-Hartman
2022-10-19  8:33 ` [PATCH 6.0 707/862] wifi: rtw89: fix rx filter after scan Greg Kroah-Hartman
2022-10-19  8:33 ` [PATCH 6.0 708/862] Bluetooth: L2CAP: initialize delayed works at l2cap_chan_create() Greg Kroah-Hartman
2022-10-19  8:33 ` [PATCH 6.0 709/862] Bluetooth: hci_sysfs: Fix attempting to call device_add multiple times Greg Kroah-Hartman
2022-10-19  8:33 ` [PATCH 6.0 710/862] Bluetooth: hci_event: Make sure ISO events dont affect non-ISO connections Greg Kroah-Hartman
2022-10-19  8:33 ` [PATCH 6.0 711/862] bnxt_en: replace reset with config timestamps Greg Kroah-Hartman
2022-10-19  8:33 ` [PATCH 6.0 712/862] selftests/bpf: Free the allocated resources after test case succeeds Greg Kroah-Hartman
2022-10-19  8:33 ` [PATCH 6.0 713/862] can: bcm: check the result of can_send() in bcm_can_tx() Greg Kroah-Hartman
2022-10-19  8:33 ` [PATCH 6.0 714/862] wifi: rt2x00: dont run Rt5592 IQ calibration on MT7620 Greg Kroah-Hartman
2022-10-19  8:33 ` [PATCH 6.0 715/862] wifi: rt2x00: set correct TX_SW_CFG1 MAC register for MT7620 Greg Kroah-Hartman
2022-10-19  8:33 ` [PATCH 6.0 716/862] wifi: rt2x00: set VGC gain for both chains of MT7620 Greg Kroah-Hartman
2022-10-19  8:33 ` [PATCH 6.0 717/862] wifi: rt2x00: set SoC wmac clock register Greg Kroah-Hartman
2022-10-19  8:33 ` [PATCH 6.0 718/862] wifi: rt2x00: correctly set BBP register 86 for MT7620 Greg Kroah-Hartman
2022-10-19  8:33 ` [PATCH 6.0 719/862] hwmon: (sht4x) do not overflow clamping operation on 32-bit platforms Greg Kroah-Hartman
2022-10-19  8:33 ` [PATCH 6.0 720/862] net: If sock is dead dont access socks sk_wq in sk_stream_wait_memory Greg Kroah-Hartman
2022-10-19  8:33 ` [PATCH 6.0 721/862] bpf: Adjust kprobe_multi entry_ip for CONFIG_X86_KERNEL_IBT Greg Kroah-Hartman
2022-10-19  8:33 ` [PATCH 6.0 722/862] bpf: use bpf_prog_pack for bpf_dispatcher Greg Kroah-Hartman
2022-10-19  8:33 ` [PATCH 6.0 723/862] Bluetooth: L2CAP: Fix user-after-free Greg Kroah-Hartman
2022-10-19  8:33 ` [PATCH 6.0 724/862] net: sched: cls_u32: Avoid memcpy() false-positive warning Greg Kroah-Hartman
2022-10-19  8:33 ` [PATCH 6.0 725/862] libbpf: Fix overrun in netlink attribute iteration Greg Kroah-Hartman
2022-10-19  8:33 ` [PATCH 6.0 726/862] i2c: designware-pci: Group AMD NAVI quirk parts together Greg Kroah-Hartman
2022-10-19  8:33 ` [PATCH 6.0 727/862] r8152: Rate limit overflow messages Greg Kroah-Hartman
2022-10-19  8:33 ` [PATCH 6.0 728/862] drm/nouveau/nouveau_bo: fix potential memory leak in nouveau_bo_alloc() Greg Kroah-Hartman
2022-10-19  8:33 ` [PATCH 6.0 729/862] drm: Use size_t type for len variable in drm_copy_field() Greg Kroah-Hartman
2022-10-19  8:33 ` [PATCH 6.0 730/862] drm: Prevent drm_copy_field() to attempt copying a NULL pointer Greg Kroah-Hartman
2022-10-19  8:33 ` [PATCH 6.0 731/862] drm/komeda: Fix handling of atomic commits in the atomic_commit_tail hook Greg Kroah-Hartman
2022-10-19  8:33 ` [PATCH 6.0 732/862] gpu: lontium-lt9611: Fix NULL pointer dereference in lt9611_connector_init() Greg Kroah-Hartman
2022-10-19  8:33 ` [PATCH 6.0 733/862] drm/amd/display: fix overflow on MIN_I64 definition Greg Kroah-Hartman
2022-10-19  8:33 ` [PATCH 6.0 734/862] ALSA: hda: Fix page fault in snd_hda_codec_shutdown() Greg Kroah-Hartman
2022-10-19  8:33 ` [PATCH 6.0 735/862] ALSA: usb-audio: Add quirk to enable Avid Mbox 3 support Greg Kroah-Hartman
2022-10-19  8:33 ` [PATCH 6.0 736/862] udmabuf: Set ubuf->sg = NULL if the creation of sg table fails Greg Kroah-Hartman
2022-10-19  8:33 ` [PATCH 6.0 737/862] platform/x86: pmc_atom: Improve quirk message to be less cryptic Greg Kroah-Hartman
2022-10-19  8:33 ` [PATCH 6.0 738/862] drm/amd: fix potential memory leak Greg Kroah-Hartman
2022-10-19  8:33 ` [PATCH 6.0 739/862] drm: bridge: dw_hdmi: only trigger hotplug event on link change Greg Kroah-Hartman
2022-10-19  8:33 ` [PATCH 6.0 740/862] drm/amd/display: Fix variable dereferenced before check Greg Kroah-Hartman
2022-10-19  8:33 ` [PATCH 6.0 741/862] drm/amdgpu: Skip the program of MMMC_VM_AGP_* in SRIOV on MMHUB v3_0_0 Greg Kroah-Hartman
2022-10-19  8:33 ` [PATCH 6.0 742/862] drm/admgpu: Skip CG/PG on SOC21 under SRIOV VF Greg Kroah-Hartman
2022-10-19  8:33 ` [PATCH 6.0 743/862] ALSA: usb-audio: Register card at the last interface Greg Kroah-Hartman
2022-10-19  8:33 ` [PATCH 6.0 744/862] drm/vc4: vec: Fix timings for VEC modes Greg Kroah-Hartman
2022-10-19  8:33 ` [PATCH 6.0 745/862] drm: panel-orientation-quirks: Add quirk for Anbernic Win600 Greg Kroah-Hartman
2022-10-19  8:33 ` [PATCH 6.0 746/862] drm: panel-orientation-quirks: Add quirk for Aya Neo Air Greg Kroah-Hartman
2022-10-19  8:33 ` [PATCH 6.0 747/862] platform/chrome: cros_ec: Notify the PM of wake events during resume Greg Kroah-Hartman
2022-10-19  8:33 ` [PATCH 6.0 748/862] platform/x86: hp-wmi: Setting thermal profile fails with 0x06 Greg Kroah-Hartman
2022-10-19  8:33 ` [PATCH 6.0 749/862] platform/x86: msi-laptop: Change DMI match / alias strings to fix module autoloading Greg Kroah-Hartman
2022-10-19  8:33 ` [PATCH 6.0 750/862] ALSA: intel-dspconfig: add ES8336 support for AlderLake-PS Greg Kroah-Hartman
2022-10-19  8:33 ` [PATCH 6.0 751/862] ASoC: SOF: pci: Change DMI match info to support all Chrome platforms Greg Kroah-Hartman
2022-10-19  8:33 ` [PATCH 6.0 752/862] ASoC: sunxi: sun4i-codec: set debugfs_prefix for CPU DAI component Greg Kroah-Hartman
2022-10-19  8:34 ` [PATCH 6.0 753/862] ASoC: SOF: add quirk to override topology mclk_id Greg Kroah-Hartman
2022-10-19  8:34 ` [PATCH 6.0 754/862] drm/amdgpu: SDMA update use unlocked iterator Greg Kroah-Hartman
2022-10-19  8:34 ` [PATCH 6.0 755/862] drm/amd/display: Fix urgent latency override for DCN32/DCN321 Greg Kroah-Hartman
2022-10-19  8:34 ` [PATCH 6.0 756/862] drm/amd/display: correct hostvm flag Greg Kroah-Hartman
2022-10-19  8:34 ` [PATCH 6.0 757/862] drm/amdgpu: fix initial connector audio value Greg Kroah-Hartman
2022-10-19  8:34 ` [PATCH 6.0 758/862] ASoC: amd: yc: Add ASUS UM5302TA into DMI table Greg Kroah-Hartman
2022-10-19  8:34 ` [PATCH 6.0 759/862] ASoC: amd: yc: Add Lenovo Yoga Slim 7 Pro X to quirks table Greg Kroah-Hartman
2022-10-19  8:34 ` [PATCH 6.0 760/862] drm/meson: reorder driver deinit sequence to fix use-after-free bug Greg Kroah-Hartman
2022-10-19  8:34 ` [PATCH 6.0 761/862] drm/meson: explicitly remove aggregate driver at module unload time Greg Kroah-Hartman
2022-10-19  8:34 ` [PATCH 6.0 762/862] drm/meson: remove drm bridges at aggregate driver unbind time Greg Kroah-Hartman
2022-10-19  8:34 ` [PATCH 6.0 763/862] mmc: sdhci-msm: add compatible string check for sdm670 Greg Kroah-Hartman
2022-10-19  8:34 ` [PATCH 6.0 764/862] drm/dp: Dont rewrite link config when setting phy test pattern Greg Kroah-Hartman
2022-10-19  8:34 ` [PATCH 6.0 765/862] drm/amd/display: Remove interface for periodic interrupt 1 Greg Kroah-Hartman
2022-10-19  8:34 ` [PATCH 6.0 766/862] drm/amd/display: polling vid stream status in hpo dp blank Greg Kroah-Hartman
2022-10-19  8:34 ` [PATCH 6.0 767/862] drm/amdkfd: Fix UBSAN shift-out-of-bounds warning Greg Kroah-Hartman
2022-10-19  8:34 ` [PATCH 6.0 768/862] ARM: dts: imx6: delete interrupts property if interrupts-extended is set Greg Kroah-Hartman
2022-10-19  8:34 ` [PATCH 6.0 769/862] ARM: dts: imx7d-sdb: config the max pressure for tsc2046 Greg Kroah-Hartman
2022-10-19  8:34 ` [PATCH 6.0 770/862] arm64: dts: qcom: sc7280-idp: correct ADC channel node name and unit address Greg Kroah-Hartman
2022-10-19  8:34 ` [PATCH 6.0 771/862] ARM: dts: imx6q: add missing properties for sram Greg Kroah-Hartman
2022-10-19  8:34 ` [PATCH 6.0 772/862] ARM: dts: imx6dl: " Greg Kroah-Hartman
2022-10-19  8:34 ` [PATCH 6.0 773/862] ARM: dts: imx6qp: " Greg Kroah-Hartman
2022-10-19  8:34 ` [PATCH 6.0 774/862] ARM: dts: imx6sl: " Greg Kroah-Hartman
2022-10-19  8:34 ` [PATCH 6.0 775/862] ARM: dts: imx6sll: " Greg Kroah-Hartman
2022-10-19  8:34 ` [PATCH 6.0 776/862] ARM: dts: imx6sx: " Greg Kroah-Hartman
2022-10-19  8:34 ` [PATCH 6.0 777/862] ARM: dts: imx6sl: use tabs for code indent Greg Kroah-Hartman
2022-10-19  8:34 ` [PATCH 6.0 778/862] ARM: dts: imx6sx-udoo-neo: dont use multiple blank lines Greg Kroah-Hartman
2022-10-19  8:34 ` [PATCH 6.0 779/862] kselftest/arm64: Fix validatation termination record after EXTRA_CONTEXT Greg Kroah-Hartman
2022-10-19  8:34 ` [PATCH 6.0 780/862] arm64: dts: imx8mm-kontron: Use the VSELECT signal to switch SD card IO voltage Greg Kroah-Hartman
2022-10-19  8:34 ` [PATCH 6.0 781/862] arm64: dts: imx8mq-librem5: Add bq25895 as max17055s power supply Greg Kroah-Hartman
2022-10-19  8:34 ` [PATCH 6.0 782/862] ARM: orion: fix include path Greg Kroah-Hartman
2022-10-19  8:34 ` [PATCH 6.0 783/862] btrfs: dump extra info if one free space cache has more bitmaps than it should Greg Kroah-Hartman
2022-10-19  8:34 ` [PATCH 6.0 784/862] btrfs: scrub: properly report super block errors in system log Greg Kroah-Hartman
2022-10-19  8:34 ` [PATCH 6.0 785/862] btrfs: scrub: try to fix super block errors Greg Kroah-Hartman
2022-10-19  8:34 ` [PATCH 6.0 786/862] btrfs: dont print information about space cache or tree every remount Greg Kroah-Hartman
2022-10-19  8:34 ` [PATCH 6.0 787/862] btrfs: call __btrfs_remove_free_space_cache_locked on cache load failure Greg Kroah-Hartman
2022-10-19  8:34 ` [PATCH 6.0 788/862] arm64: dts: uniphier: Add USB-device support for PXs3 reference board Greg Kroah-Hartman
2022-10-19  8:34 ` [PATCH 6.0 789/862] ARM: 9233/1: stacktrace: Skip frame pointer boundary check for call_with_stack() Greg Kroah-Hartman
2022-10-19  8:34 ` [PATCH 6.0 790/862] ARM: 9234/1: stacktrace: Avoid duplicate saving of exception PC value Greg Kroah-Hartman
2022-10-19  8:34 ` [PATCH 6.0 791/862] ARM: 9242/1: kasan: Only map modules if CONFIG_KASAN_VMALLOC=n Greg Kroah-Hartman
2022-10-19  8:34 ` [PATCH 6.0 792/862] clk: zynqmp: Fix stack-out-of-bounds in strncpy` Greg Kroah-Hartman
2022-10-19  8:34 ` [PATCH 6.0 793/862] media: cx88: Fix a null-ptr-deref bug in buffer_prepare() Greg Kroah-Hartman
2022-10-19  8:34 ` [PATCH 6.0 794/862] media: platform: fix some double free in meson-ge2d and mtk-jpeg and s5p-mfc Greg Kroah-Hartman
2022-10-19  8:34 ` [PATCH 6.0 795/862] clk: zynqmp: pll: rectify rate rounding in zynqmp_pll_round_rate Greg Kroah-Hartman
2022-10-19  8:34 ` [PATCH 6.0 796/862] RDMA/rxe: Delete error messages triggered by incoming Read requests Greg Kroah-Hartman
2022-10-19  8:34 ` [PATCH 6.0 797/862] usb: host: xhci-plat: suspend and resume clocks Greg Kroah-Hartman
2022-10-19  8:34 ` [PATCH 6.0 798/862] usb: host: xhci-plat: suspend/resume clks for brcm Greg Kroah-Hartman
2022-10-19  8:34 ` [PATCH 6.0 799/862] scsi: lpfc: Fix null ndlp ptr dereference in abnormal exit path for GFT_ID Greg Kroah-Hartman
2022-10-19  8:34 ` [PATCH 6.0 800/862] dmaengine: ti: k3-udma: Reset UDMA_CHAN_RT byte counters to prevent overflow Greg Kroah-Hartman
2022-10-19  8:34 ` [PATCH 6.0 801/862] scsi: 3w-9xxx: Avoid disabling device if failing to enable it Greg Kroah-Hartman
2022-10-19  8:34 ` [PATCH 6.0 802/862] nbd: Fix hung when signal interrupts nbd_start_device_ioctl() Greg Kroah-Hartman
2022-10-19  8:34 ` [PATCH 6.0 803/862] iommu/arm-smmu-v3: Make default domain type of HiSilicon PTT device to identity Greg Kroah-Hartman
2022-10-19  8:34 ` [PATCH 6.0 804/862] usb: gadget: uvc: increase worker prio to WQ_HIGHPRI Greg Kroah-Hartman
2022-10-19  8:34 ` [PATCH 6.0 805/862] power: supply: adp5061: fix out-of-bounds read in adp5061_get_chg_type() Greg Kroah-Hartman
2022-10-19  8:34 ` [PATCH 6.0 806/862] staging: vt6655: fix potential memory leak Greg Kroah-Hartman
2022-10-19  8:34 ` [PATCH 6.0 807/862] blk-throttle: prevent overflow while calculating wait time Greg Kroah-Hartman
2022-10-19  8:34 ` [PATCH 6.0 808/862] ata: libahci_platform: Sanity check the DT child nodes number Greg Kroah-Hartman
2022-10-19  8:34 ` [PATCH 6.0 809/862] bcache: fix set_at_max_writeback_rate() for multiple attached devices Greg Kroah-Hartman
2022-10-19  8:34 ` [PATCH 6.0 810/862] soundwire: cadence: Dont overwrite msg->buf during write commands Greg Kroah-Hartman
2022-10-19  8:34 ` [PATCH 6.0 811/862] soundwire: intel: fix error handling on dai registration issues Greg Kroah-Hartman
2022-10-19  8:34 ` [PATCH 6.0 812/862] hid: topre: Add driver fixing report descriptor Greg Kroah-Hartman
2022-10-19  8:35 ` [PATCH 6.0 813/862] HID: roccat: Fix use-after-free in roccat_read() Greg Kroah-Hartman
2022-10-19  8:35 ` [PATCH 6.0 814/862] HSI: ssi_protocol: fix potential resource leak in ssip_pn_open() Greg Kroah-Hartman
2022-10-19  8:35 ` [PATCH 6.0 815/862] HID: nintendo: check analog user calibration for plausibility Greg Kroah-Hartman
2022-10-19  8:35 ` [PATCH 6.0 816/862] md/raid5: Wait for MD_SB_CHANGE_PENDING in raid5d Greg Kroah-Hartman
2022-10-19  8:35 ` [PATCH 6.0 817/862] usb: host: xhci: Fix potential memory leak in xhci_alloc_stream_info() Greg Kroah-Hartman
2022-10-19  8:35 ` [PATCH 6.0 818/862] usb: musb: Fix musb_gadget.c rxstate overflow bug Greg Kroah-Hartman
2022-10-19  8:35 ` [PATCH 6.0 819/862] usb: dwc3: core: add gfladj_refclk_lpm_sel quirk Greg Kroah-Hartman
2022-10-19  8:35 ` [PATCH 6.0 820/862] arm64: dts: imx8mp: Add snps,gfladj-refclk-lpm-sel quirk to USB nodes Greg Kroah-Hartman
2022-10-19  8:35 ` [PATCH 6.0 821/862] usb: dwc3: core: Enable GUCTL1 bit 10 for fixing termination error after resume bug Greg Kroah-Hartman
2022-10-19  8:35 ` [PATCH 6.0 822/862] Revert "usb: storage: Add quirk for Samsung Fit flash" Greg Kroah-Hartman
2022-10-19  8:35 ` [PATCH 6.0 823/862] io_uring: fix CQE reordering Greg Kroah-Hartman
2022-10-19  8:35 ` [PATCH 6.0 824/862] staging: rtl8723bs: fix potential memory leak in rtw_init_drv_sw() Greg Kroah-Hartman
2022-10-19  8:35 ` [PATCH 6.0 825/862] staging: rtl8723bs: fix a potential memory leak in rtw_init_cmd_priv() Greg Kroah-Hartman
2022-10-19  8:35 ` [PATCH 6.0 826/862] scsi: tracing: Fix compile error in trace_array calls when TRACING is disabled Greg Kroah-Hartman
2022-10-19  8:35 ` [PATCH 6.0 827/862] ext2: Use kvmalloc() for group descriptor array Greg Kroah-Hartman
2022-10-19  8:35 ` [PATCH 6.0 828/862] nvme: handle effects after freeing the request Greg Kroah-Hartman
2022-10-19  8:35 ` [PATCH 6.0 829/862] nvme: copy firmware_rev on each init Greg Kroah-Hartman
2022-10-19  8:35 ` [PATCH 6.0 830/862] nvmet-tcp: add bounds check on Transfer Tag Greg Kroah-Hartman
2022-10-19  8:35 ` [PATCH 6.0 831/862] usb: idmouse: fix an uninit-value in idmouse_open Greg Kroah-Hartman
2022-10-19  8:35 ` [PATCH 6.0 832/862] blk-mq: use quiesced elevator switch when reinitializing queues Greg Kroah-Hartman
2022-10-19  8:35 ` [PATCH 6.0 833/862] hwmon (occ): Retry for checksum failure Greg Kroah-Hartman
2022-10-19  8:35 ` [PATCH 6.0 834/862] fsi: occ: Prevent use after free Greg Kroah-Hartman
2022-10-19  8:35 ` [PATCH 6.0 835/862] fsi: master-ast-cf: Fix missing of_node_put in fsi_master_acf_probe Greg Kroah-Hartman
2022-10-19  8:35 ` [PATCH 6.0 836/862] dmaengine: dw-edma: Remove runtime PM support Greg Kroah-Hartman
2022-10-19  8:35 ` [PATCH 6.0 837/862] usb: typec: ucsi: Dont warn on probe deferral Greg Kroah-Hartman
2022-10-19  8:35 ` [PATCH 6.0 838/862] clk: bcm2835: Round UART input clock up Greg Kroah-Hartman
2022-10-19  8:35 ` [PATCH 6.0 839/862] perf: Skip and warn on unknown format configN attrs Greg Kroah-Hartman
2022-10-19  8:35 ` [PATCH 6.0 840/862] perf intel-pt: Fix segfault in intel_pt_print_info() with uClibc Greg Kroah-Hartman
2022-10-19  8:35 ` [PATCH 6.0 841/862] perf intel-pt: Fix system_wide dummy event for hybrid Greg Kroah-Hartman
2022-10-19  8:35 ` [PATCH 6.0 842/862] io_uring/net: refactor io_sr_msg types Greg Kroah-Hartman
2022-10-19  8:35 ` [PATCH 6.0 843/862] io_uring/net: use io_sr_msg for sendzc Greg Kroah-Hartman
2022-10-19  8:35 ` [PATCH 6.0 844/862] io_uring/net: dont lose partial send_zc on fail Greg Kroah-Hartman
2022-10-19  8:35 ` [PATCH 6.0 845/862] io_uring/net: rename io_sendzc() Greg Kroah-Hartman
2022-10-19  8:35 ` [PATCH 6.0 846/862] io_uring/net: dont skip notifs for failed requests Greg Kroah-Hartman
2022-10-19  8:35 ` [PATCH 6.0 847/862] io_uring/net: fix notif cqe reordering Greg Kroah-Hartman
2022-10-19  8:35 ` [PATCH 6.0 848/862] mm: hugetlb: fix UAF in hugetlb_handle_userfault Greg Kroah-Hartman
2022-10-19  8:35 ` [PATCH 6.0 849/862] net: ieee802154: return -EINVAL for unknown addr type Greg Kroah-Hartman
2022-10-19  8:35 ` [PATCH 6.0 850/862] ALSA: usb-audio: Fix last interface check for registration Greg Kroah-Hartman
2022-10-19  8:35 ` [PATCH 6.0 851/862] blk-wbt: fix that rwb->wc is always set to 1 in wbt_init() Greg Kroah-Hartman
2022-10-19  8:35 ` [PATCH 6.0 852/862] net: ethernet: ti: davinci_mdio: fix build for mdio bitbang uses Greg Kroah-Hartman
2022-10-19  8:35 ` [PATCH 6.0 853/862] Revert "drm/amd/display: correct hostvm flag" Greg Kroah-Hartman
2022-10-19  8:35 ` [PATCH 6.0 854/862] Revert "net/ieee802154: reject zero-sized raw_sendmsg()" Greg Kroah-Hartman
2022-10-19  8:35 ` [PATCH 6.0 855/862] net/ieee802154: dont warn zero-sized raw_sendmsg() Greg Kroah-Hartman
2022-10-19  8:35 ` [PATCH 6.0 856/862] powerpc/64s/interrupt: Fix lost interrupts when returning to soft-masked context Greg Kroah-Hartman
2022-10-19  8:35 ` [PATCH 6.0 857/862] drm/amd/display: Fix build breakage with CONFIG_DEBUG_FS=n Greg Kroah-Hartman
2022-10-19  8:35 ` [PATCH 6.0 858/862] io_uring: fix fdinfo sqe offsets calculation Greg Kroah-Hartman
2022-10-19  8:35 ` [PATCH 6.0 859/862] io_uring/rw: ensure kiocb_end_write() is always called Greg Kroah-Hartman
2022-10-19  8:35 ` [PATCH 6.0 860/862] Kconfig.debug: simplify the dependency of DEBUG_INFO_DWARF4/5 Greg Kroah-Hartman
2022-10-19  8:35 ` [PATCH 6.0 861/862] Kconfig.debug: add toolchain checks for DEBUG_INFO_DWARF_TOOLCHAIN_DEFAULT Greg Kroah-Hartman
2022-10-19  8:35 ` [PATCH 6.0 862/862] lib/Kconfig.debug: Add check for non-constant .{s,u}leb128 support to DWARF5 Greg Kroah-Hartman
2022-10-19 12:01 ` [PATCH 6.0 000/862] 6.0.3-rc1 review Rudi Heitbaum
2022-10-19 12:51 ` Luna Jernberg
2022-10-19 17:19 ` Fenil Jain
2022-10-19 18:01 ` Jon Hunter
2022-10-19 19:24 ` Ron Economos
2022-10-19 19:29 ` Allen Pais
2022-10-19 19:31 ` Slade Watkins
2022-10-19 19:51 ` Florian Fainelli
2022-10-19 19:53 ` Shuah Khan
2022-10-19 21:39 ` Guenter Roeck
2022-10-20  3:56 ` Bagas Sanjaya
2022-10-20  6:12 ` Jiri Slaby
2022-10-20  7:31 ` Naresh Kamboju
2022-10-20 10:43 ` Sudip Mukherjee (Codethink)
2022-10-20 18:15 ` Justin Forbes

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=20221019083318.839392843@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=rafael.j.wysocki@intel.com \
    --cc=sashal@kernel.org \
    --cc=stable@vger.kernel.org \
    --cc=tony.luck@intel.com \
    --cc=xueshuai@linux.alibaba.com \
    /path/to/YOUR_REPLY

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

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