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, Helge Deller <deller@gmx.de>
Subject: [PATCH 5.19 053/717] parisc: fbdev/stifb: Align graphics memory size to 4MB
Date: Sat, 22 Oct 2022 09:18:52 +0200	[thread overview]
Message-ID: <20221022072424.461422399@linuxfoundation.org> (raw)
In-Reply-To: <20221022072415.034382448@linuxfoundation.org>

From: Helge Deller <deller@gmx.de>

commit aca7c13d3bee81a968337a5515411409ae9d095d upstream.

Independend of the current graphics resolution, adjust the reported
graphics card memory size to the next 4MB boundary.
This fixes the fbtest program which expects a naturally aligned size.

Signed-off-by: Helge Deller <deller@gmx.de>
Cc: <stable@vger.kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
 drivers/video/fbdev/stifb.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

--- a/drivers/video/fbdev/stifb.c
+++ b/drivers/video/fbdev/stifb.c
@@ -1298,7 +1298,7 @@ static int __init stifb_init_fb(struct s
 	
 	/* limit fbsize to max visible screen size */
 	if (fix->smem_len > yres*fix->line_length)
-		fix->smem_len = yres*fix->line_length;
+		fix->smem_len = ALIGN(yres*fix->line_length, 4*1024*1024);
 	
 	fix->accel = FB_ACCEL_NONE;
 



  parent reply	other threads:[~2022-10-22  7:39 UTC|newest]

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

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=20221022072424.461422399@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=deller@gmx.de \
    --cc=linux-kernel@vger.kernel.org \
    --cc=stable@vger.kernel.org \
    /path/to/YOUR_REPLY

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

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