All of lore.kernel.org
 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, Zhiguo Niu <zhiguo.niu@unisoc.com>,
	Jing Xia <jing.xia@unisoc.com>, Chao Yu <chao@kernel.org>,
	Jaegeuk Kim <jaegeuk@kernel.org>, Sasha Levin <sashal@kernel.org>
Subject: [PATCH 5.16 0271/1017] f2fs: fix to avoid potential deadlock
Date: Tue,  5 Apr 2022 09:19:44 +0200	[thread overview]
Message-ID: <20220405070402.310055433@linuxfoundation.org> (raw)
In-Reply-To: <20220405070354.155796697@linuxfoundation.org>

From: Chao Yu <chao@kernel.org>

[ Upstream commit 344150999b7fc88502a65bbb147a47503eca2033 ]

Quoted from Jing Xia's report, there is a potential deadlock may happen
between kworker and checkpoint as below:

[T:writeback]				[T:checkpoint]
- wb_writeback
 - blk_start_plug
bio contains NodeA was plugged in writeback threads
					- do_writepages  -- sync write inodeB, inc wb_sync_req[DATA]
					 - f2fs_write_data_pages
					  - f2fs_write_single_data_page -- write last dirty page
					   - f2fs_do_write_data_page
					    - set_page_writeback  -- clear page dirty flag and
					    PAGECACHE_TAG_DIRTY tag in radix tree
					    - f2fs_outplace_write_data
					     - f2fs_update_data_blkaddr
					      - f2fs_wait_on_page_writeback -- wait NodeA to writeback here
					   - inode_dec_dirty_pages
 - writeback_sb_inodes
  - writeback_single_inode
   - do_writepages
    - f2fs_write_data_pages -- skip writepages due to wb_sync_req[DATA]
     - wbc->pages_skipped += get_dirty_pages() -- PAGECACHE_TAG_DIRTY is not set but get_dirty_pages() returns one
  - requeue_inode -- requeue inode to wb->b_dirty queue due to non-zero.pages_skipped
 - blk_finish_plug

Let's try to avoid deadlock condition by forcing unplugging previous bio via
blk_finish_plug(current->plug) once we'v skipped writeback in writepages()
due to valid sbi->wb_sync_req[DATA/NODE].

Fixes: 687de7f1010c ("f2fs: avoid IO split due to mixed WB_SYNC_ALL and WB_SYNC_NONE")
Signed-off-by: Zhiguo Niu <zhiguo.niu@unisoc.com>
Signed-off-by: Jing Xia <jing.xia@unisoc.com>
Signed-off-by: Chao Yu <chao@kernel.org>
Signed-off-by: Jaegeuk Kim <jaegeuk@kernel.org>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 fs/f2fs/data.c | 6 +++++-
 fs/f2fs/node.c | 6 +++++-
 2 files changed, 10 insertions(+), 2 deletions(-)

diff --git a/fs/f2fs/data.c b/fs/f2fs/data.c
index 3ba75587a2cd..04e82dedb4df 100644
--- a/fs/f2fs/data.c
+++ b/fs/f2fs/data.c
@@ -3267,8 +3267,12 @@ static int __f2fs_write_data_pages(struct address_space *mapping,
 	/* to avoid spliting IOs due to mixed WB_SYNC_ALL and WB_SYNC_NONE */
 	if (wbc->sync_mode == WB_SYNC_ALL)
 		atomic_inc(&sbi->wb_sync_req[DATA]);
-	else if (atomic_read(&sbi->wb_sync_req[DATA]))
+	else if (atomic_read(&sbi->wb_sync_req[DATA])) {
+		/* to avoid potential deadlock */
+		if (current->plug)
+			blk_finish_plug(current->plug);
 		goto skip_write;
+	}
 
 	if (__should_serialize_io(inode, wbc)) {
 		mutex_lock(&sbi->writepages);
diff --git a/fs/f2fs/node.c b/fs/f2fs/node.c
index 556fcd8457f3..69c6bcaf5aae 100644
--- a/fs/f2fs/node.c
+++ b/fs/f2fs/node.c
@@ -2106,8 +2106,12 @@ static int f2fs_write_node_pages(struct address_space *mapping,
 
 	if (wbc->sync_mode == WB_SYNC_ALL)
 		atomic_inc(&sbi->wb_sync_req[NODE]);
-	else if (atomic_read(&sbi->wb_sync_req[NODE]))
+	else if (atomic_read(&sbi->wb_sync_req[NODE])) {
+		/* to avoid potential deadlock */
+		if (current->plug)
+			blk_finish_plug(current->plug);
 		goto skip_write;
+	}
 
 	trace_f2fs_writepages(mapping->host, wbc, NODE);
 
-- 
2.34.1




  parent reply	other threads:[~2022-04-05 11:45 UTC|newest]

Thread overview: 1048+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-04-05  7:15 [PATCH 5.16 0000/1017] 5.16.19-rc1 review Greg Kroah-Hartman
2022-04-05  7:15 ` [PATCH 5.16 0001/1017] Revert "swiotlb: rework "fix info leak with DMA_FROM_DEVICE"" Greg Kroah-Hartman
2022-04-05  7:15 ` [PATCH 5.16 0002/1017] USB: serial: pl2303: add IBM device IDs Greg Kroah-Hartman
2022-04-05  7:15 ` [PATCH 5.16 0003/1017] dt-bindings: usb: hcd: correct usb-device path Greg Kroah-Hartman
2022-04-05  7:15 ` [PATCH 5.16 0004/1017] USB: serial: pl2303: fix GS type detection Greg Kroah-Hartman
2022-04-05  7:15 ` [PATCH 5.16 0005/1017] USB: serial: simple: add Nokia phone driver Greg Kroah-Hartman
2022-04-05  7:15 ` [PATCH 5.16 0006/1017] mm: kfence: fix missing objcg housekeeping for SLAB Greg Kroah-Hartman
2022-04-05  7:15 ` [PATCH 5.16 0007/1017] HID: logitech-dj: add new lightspeed receiver id Greg Kroah-Hartman
2022-04-05  7:15 ` [PATCH 5.16 0008/1017] HID: Add support for open wheel and no attachment to T300 Greg Kroah-Hartman
2022-04-05  7:15 ` [PATCH 5.16 0009/1017] xfrm: fix tunnel model fragmentation behavior Greg Kroah-Hartman
2022-04-05  7:15 ` [PATCH 5.16 0010/1017] ARM: mstar: Select HAVE_ARM_ARCH_TIMER Greg Kroah-Hartman
2022-04-05  7:15 ` [PATCH 5.16 0011/1017] virtio_console: break out of buf poll on remove Greg Kroah-Hartman
2022-04-05  7:15 ` [PATCH 5.16 0012/1017] vdpa/mlx5: should verify CTRL_VQ feature exists for MQ Greg Kroah-Hartman
2022-04-05  7:15 ` [PATCH 5.16 0013/1017] tools/virtio: fix virtio_test execution Greg Kroah-Hartman
2022-04-05  7:15 ` [PATCH 5.16 0014/1017] ethernet: sun: Free the coherent when failing in probing Greg Kroah-Hartman
2022-04-05  7:15 ` [PATCH 5.16 0015/1017] gpio: Revert regression in sysfs-gpio (gpiolib.c) Greg Kroah-Hartman
2022-04-05  7:15 ` [PATCH 5.16 0016/1017] spi: Fix invalid sgs value Greg Kroah-Hartman
2022-04-05  7:15 ` [PATCH 5.16 0017/1017] net:mcf8390: Use platform_get_irq() to get the interrupt Greg Kroah-Hartman
2022-04-05  7:15 ` [PATCH 5.16 0018/1017] Revert "gpio: Revert regression in sysfs-gpio (gpiolib.c)" Greg Kroah-Hartman
2022-04-05  7:15 ` [PATCH 5.16 0019/1017] spi: Fix erroneous sgs value with min_t() Greg Kroah-Hartman
2022-04-05  7:15 ` [PATCH 5.16 0020/1017] Input: zinitix - do not report shadow fingers Greg Kroah-Hartman
2022-04-05  7:15 ` [PATCH 5.16 0021/1017] af_key: add __GFP_ZERO flag for compose_sadb_supported in function pfkey_register Greg Kroah-Hartman
2022-04-05  7:15 ` [PATCH 5.16 0022/1017] net: dsa: microchip: add spi_device_id tables Greg Kroah-Hartman
2022-04-05  7:15 ` [PATCH 5.16 0023/1017] scsi: fnic: Finish scsi_cmnd before dropping the spinlock Greg Kroah-Hartman
2022-04-05  7:15 ` [PATCH 5.16 0024/1017] selftests: vm: fix clang build error multiple output files Greg Kroah-Hartman
2022-04-05  7:15 ` [PATCH 5.16 0025/1017] locking/lockdep: Avoid potential access of invalid memory in lock_class Greg Kroah-Hartman
2022-04-05  7:15 ` [PATCH 5.16 0026/1017] drm/amdgpu: move PX checking into amdgpu_device_ip_early_init Greg Kroah-Hartman
2022-04-05  7:15 ` [PATCH 5.16 0027/1017] drm/amdgpu: only check for _PR3 on dGPUs Greg Kroah-Hartman
2022-04-05  7:15 ` [PATCH 5.16 0028/1017] iommu/iova: Improve 32-bit free space estimate Greg Kroah-Hartman
2022-04-05  7:15 ` [PATCH 5.16 0029/1017] tpm: fix reference counting for struct tpm_chip Greg Kroah-Hartman
2022-04-05  7:15 ` [PATCH 5.16 0030/1017] block: ensure plug merging checks the correct queue at least once Greg Kroah-Hartman
2022-04-05  7:15 ` [PATCH 5.16 0031/1017] block: flush plug based on hardware and software queue order Greg Kroah-Hartman
2022-04-05  7:15 ` [PATCH 5.16 0032/1017] usb: typec: tipd: Forward plug orientation to typec subsystem Greg Kroah-Hartman
2022-04-05  7:15 ` [PATCH 5.16 0033/1017] USB: usb-storage: Fix use of bitfields for hardware data in ene_ub6250.c Greg Kroah-Hartman
2022-04-05  7:15 ` [PATCH 5.16 0034/1017] xhci: fix garbage USBSTS being logged in some cases Greg Kroah-Hartman
2022-04-05  7:15 ` [PATCH 5.16 0035/1017] xhci: fix runtime PM imbalance in USB2 resume Greg Kroah-Hartman
2022-04-05  7:15 ` [PATCH 5.16 0036/1017] xhci: make xhci_handshake timeout for xhci_reset() adjustable Greg Kroah-Hartman
2022-04-05  7:15 ` [PATCH 5.16 0037/1017] xhci: fix uninitialized string returned by xhci_decode_ctrl_ctx() Greg Kroah-Hartman
2022-04-05  7:15 ` [PATCH 5.16 0038/1017] mei: me: disable driver on the ign firmware Greg Kroah-Hartman
2022-04-05  7:15 ` [PATCH 5.16 0039/1017] mei: me: add Alder Lake N device id Greg Kroah-Hartman
2022-04-05  7:15 ` [PATCH 5.16 0040/1017] mei: avoid iterator usage outside of list_for_each_entry Greg Kroah-Hartman
2022-04-05  7:15 ` [PATCH 5.16 0041/1017] bus: mhi: pci_generic: Add mru_default for Quectel EM1xx series Greg Kroah-Hartman
2022-04-05  7:15 ` [PATCH 5.16 0042/1017] bus: mhi: Fix MHI DMA structure endianness Greg Kroah-Hartman
2022-04-05  7:15 ` [PATCH 5.16 0043/1017] docs: sphinx/requirements: Limit jinja2<3.1 Greg Kroah-Hartman
2022-04-05  7:15 ` [PATCH 5.16 0044/1017] coresight: Fix TRCCONFIGR.QE sysfs interface Greg Kroah-Hartman
2022-04-05  7:15 ` [PATCH 5.16 0045/1017] coresight: syscfg: Fix memleak on registration failure in cscfg_create_device Greg Kroah-Hartman
2022-04-05  7:15 ` [PATCH 5.16 0046/1017] iio: adc: aspeed: Add divider flag to fix incorrect voltage reading Greg Kroah-Hartman
2022-04-05  7:16 ` [PATCH 5.16 0047/1017] iio: afe: rescale: use s64 for temporary scale calculations Greg Kroah-Hartman
2022-04-05  7:16 ` [PATCH 5.16 0048/1017] iio: inkern: apply consumer scale on IIO_VAL_INT cases Greg Kroah-Hartman
2022-04-05  7:16 ` [PATCH 5.16 0049/1017] iio: inkern: apply consumer scale when no channel scale is available Greg Kroah-Hartman
2022-04-05  7:16 ` [PATCH 5.16 0050/1017] iio: inkern: make a best effort on offset calculation Greg Kroah-Hartman
2022-04-05  7:16 ` [PATCH 5.16 0051/1017] greybus: svc: fix an error handling bug in gb_svc_hello() Greg Kroah-Hartman
2022-04-05  7:16 ` [PATCH 5.16 0052/1017] clk: rockchip: re-add rational best approximation algorithm to the fractional divider Greg Kroah-Hartman
2022-04-05  7:16 ` [PATCH 5.16 0053/1017] clk: uniphier: Fix fixed-rate initialization Greg Kroah-Hartman
2022-04-05  7:16 ` [PATCH 5.16 0054/1017] ptrace: Check PTRACE_O_SUSPEND_SECCOMP permission on PTRACE_SEIZE Greg Kroah-Hartman
2022-04-05  7:16 ` [PATCH 5.16 0055/1017] cifs: fix handlecache and multiuser Greg Kroah-Hartman
2022-04-05  7:16 ` [PATCH 5.16 0056/1017] cifs: we do not need a spinlock around the tree access during umount Greg Kroah-Hartman
2022-04-05  7:16 ` [PATCH 5.16 0057/1017] KEYS: fix length validation in keyctl_pkey_params_get_2() Greg Kroah-Hartman
2022-04-05  7:16 ` [PATCH 5.16 0058/1017] KEYS: asymmetric: enforce that sig algo matches key algo Greg Kroah-Hartman
2022-04-05  7:16 ` [PATCH 5.16 0059/1017] KEYS: asymmetric: properly validate hash_algo and encoding Greg Kroah-Hartman
2022-04-05  7:16 ` [PATCH 5.16 0060/1017] Documentation: add link to stable release candidate tree Greg Kroah-Hartman
2022-04-05  7:16 ` [PATCH 5.16 0061/1017] Documentation: update stable tree link Greg Kroah-Hartman
2022-04-05  7:16 ` [PATCH 5.16 0062/1017] firmware: stratix10-svc: add missing callback parameter on RSU Greg Kroah-Hartman
2022-04-05  7:16 ` [PATCH 5.16 0063/1017] firmware: sysfb: fix platform-device leak in error path Greg Kroah-Hartman
2022-04-05  7:16 ` [PATCH 5.16 0064/1017] HID: intel-ish-hid: Use dma_alloc_coherent for firmware update Greg Kroah-Hartman
2022-04-05  7:16 ` [PATCH 5.16 0065/1017] SUNRPC: avoid race between mod_timer() and del_timer_sync() Greg Kroah-Hartman
2022-04-05  7:16 ` [PATCH 5.16 0066/1017] SUNRPC: Do not dereference non-socket transports in sysfs Greg Kroah-Hartman
2022-04-05  7:16 ` [PATCH 5.16 0067/1017] NFS: NFSv2/v3 clients should never be setting NFS_CAP_XATTR Greg Kroah-Hartman
2022-04-05  7:16 ` [PATCH 5.16 0068/1017] NFSD: prevent underflow in nfssvc_decode_writeargs() Greg Kroah-Hartman
2022-04-05  7:16 ` [PATCH 5.16 0069/1017] NFSD: prevent integer overflow on 32 bit systems Greg Kroah-Hartman
2022-04-05  7:16 ` [PATCH 5.16 0070/1017] f2fs: fix to unlock page correctly in error path of is_alive() Greg Kroah-Hartman
2022-04-05  7:16 ` [PATCH 5.16 0071/1017] f2fs: quota: fix loop condition at f2fs_quota_sync() Greg Kroah-Hartman
2022-04-05  7:16 ` [PATCH 5.16 0072/1017] f2fs: fix to do sanity check on .cp_pack_total_block_count Greg Kroah-Hartman
2022-04-05  7:16 ` [PATCH 5.16 0073/1017] remoteproc: Fix count check in rproc_coredump_write() Greg Kroah-Hartman
2022-04-05  7:16 ` [PATCH 5.16 0074/1017] mm/mlock: fix two bugs in user_shm_lock() Greg Kroah-Hartman
2022-04-05  7:16 ` [PATCH 5.16 0075/1017] pinctrl: ingenic: Fix regmap on X series SoCs Greg Kroah-Hartman
2022-04-05  7:16 ` [PATCH 5.16 0076/1017] pinctrl: samsung: drop pin banks references on error paths Greg Kroah-Hartman
2022-04-05  7:16 ` [PATCH 5.16 0077/1017] net: bnxt_ptp: fix compilation error Greg Kroah-Hartman
2022-04-05  7:16 ` [PATCH 5.16 0078/1017] spi: mxic: Fix the transmit path Greg Kroah-Hartman
2022-04-05  7:16 ` [PATCH 5.16 0079/1017] mtd: rawnand: protect access to rawnand devices while in suspend Greg Kroah-Hartman
2022-04-05  7:16 ` [PATCH 5.16 0080/1017] can: ems_usb: ems_usb_start_xmit(): fix double dev_kfree_skb() in error path Greg Kroah-Hartman
2022-04-05  7:16 ` [PATCH 5.16 0081/1017] can: m_can: m_can_tx_handler(): fix use after free of skb Greg Kroah-Hartman
2022-04-05  7:16 ` [PATCH 5.16 0082/1017] can: usb_8dev: usb_8dev_start_xmit(): fix double dev_kfree_skb() in error path Greg Kroah-Hartman
2022-04-05  7:16 ` [PATCH 5.16 0083/1017] jffs2: fix use-after-free in jffs2_clear_xattr_subsystem Greg Kroah-Hartman
2022-04-05  7:16 ` [PATCH 5.16 0084/1017] jffs2: fix memory leak in jffs2_do_mount_fs Greg Kroah-Hartman
2022-04-05  7:16 ` [PATCH 5.16 0085/1017] jffs2: fix memory leak in jffs2_scan_medium Greg Kroah-Hartman
2022-04-05  7:16 ` [PATCH 5.16 0086/1017] mm: fs: fix lru_cache_disabled race in bh_lru Greg Kroah-Hartman
2022-04-05  7:16 ` [PATCH 5.16 0087/1017] mm: dont skip swap entry even if zap_details specified Greg Kroah-Hartman
2022-04-05  7:16 ` [PATCH 5.16 0088/1017] mm/pages_alloc.c: dont create ZONE_MOVABLE beyond the end of a node Greg Kroah-Hartman
2022-04-05  7:16 ` [PATCH 5.16 0089/1017] mm: invalidate hwpoison page cache page in fault path Greg Kroah-Hartman
2022-04-05  7:16 ` [PATCH 5.16 0090/1017] mempolicy: mbind_range() set_policy() after vma_merge() Greg Kroah-Hartman
2022-04-05  7:16 ` [PATCH 5.16 0091/1017] scsi: core: sd: Add silence_suspend flag to suppress some PM messages Greg Kroah-Hartman
2022-04-05  7:16 ` [PATCH 5.16 0092/1017] scsi: ufs: Fix runtime PM messages never-ending cycle Greg Kroah-Hartman
2022-04-05  7:16 ` [PATCH 5.16 0093/1017] scsi: scsi_transport_fc: Fix FPIN Link Integrity statistics counters Greg Kroah-Hartman
2022-04-05  7:16 ` [PATCH 5.16 0094/1017] scsi: libsas: Fix sas_ata_qc_issue() handling of NCQ NON DATA commands Greg Kroah-Hartman
2022-04-05  7:16 ` [PATCH 5.16 0095/1017] qed: display VF trust config Greg Kroah-Hartman
2022-04-05  7:16 ` [PATCH 5.16 0096/1017] qed: validate and restrict untrusted VFs vlan promisc mode Greg Kroah-Hartman
2022-04-05  7:16 ` [PATCH 5.16 0097/1017] riscv: dts: canaan: Fix SPI3 bus width Greg Kroah-Hartman
2022-04-05  7:16 ` [PATCH 5.16 0098/1017] riscv: Fix fill_callchain return value Greg Kroah-Hartman
2022-04-05  7:16 ` [PATCH 5.16 0099/1017] riscv: Increase stack size under KASAN Greg Kroah-Hartman
2022-04-05  7:16 ` [PATCH 5.16 0100/1017] Revert "Input: clear BTN_RIGHT/MIDDLE on buttonpads" Greg Kroah-Hartman
2022-04-05  7:16 ` [PATCH 5.16 0101/1017] cifs: do not skip link targets when an I/O fails Greg Kroah-Hartman
2022-04-05  7:16 ` [PATCH 5.16 0102/1017] cifs: prevent bad output lengths in smb2_ioctl_query_info() Greg Kroah-Hartman
2022-04-05  7:16 ` [PATCH 5.16 0103/1017] cifs: fix NULL ptr dereference " Greg Kroah-Hartman
2022-04-05  7:16 ` [PATCH 5.16 0104/1017] ALSA: cs4236: fix an incorrect NULL check on list iterator Greg Kroah-Hartman
2022-04-05  7:16 ` [PATCH 5.16 0105/1017] ALSA: hda: Avoid unsol event during RPM suspending Greg Kroah-Hartman
2022-04-05  7:16 ` [PATCH 5.16 0106/1017] ALSA: pcm: Fix potential AB/BA lock with buffer_mutex and mmap_lock Greg Kroah-Hartman
2022-04-05  7:17 ` [PATCH 5.16 0107/1017] ALSA: hda/realtek: Fix audio regression on Mi Notebook Pro 2020 Greg Kroah-Hartman
2022-04-05  7:17 ` [PATCH 5.16 0108/1017] rtc: mc146818-lib: fix locking in mc146818_set_time Greg Kroah-Hartman
2022-04-05  7:17 ` [PATCH 5.16 0109/1017] rtc: pl031: fix rtc features null pointer dereference Greg Kroah-Hartman
2022-04-05  7:17 ` [PATCH 5.16 0110/1017] io_uring: ensure that fsnotify is always called Greg Kroah-Hartman
2022-04-05  7:17 ` [PATCH 5.16 0111/1017] ocfs2: fix crash when mount with quota enabled Greg Kroah-Hartman
2022-04-05  7:17 ` [PATCH 5.16 0112/1017] drm/simpledrm: Add "panel orientation" property on non-upright mounted LCD panels Greg Kroah-Hartman
2022-04-05  7:17 ` [PATCH 5.16 0113/1017] mm: madvise: skip unmapped vma holes passed to process_madvise Greg Kroah-Hartman
2022-04-05  7:17 ` [PATCH 5.16 0114/1017] mm: madvise: return correct bytes advised with process_madvise Greg Kroah-Hartman
2022-04-05  7:17 ` [PATCH 5.16 0115/1017] Revert "mm: madvise: skip unmapped vma holes passed to process_madvise" Greg Kroah-Hartman
2022-04-05  7:17 ` [PATCH 5.16 0116/1017] mm,hwpoison: unmap poisoned page before invalidation Greg Kroah-Hartman
2022-04-05  7:17 ` [PATCH 5.16 0117/1017] mm/kmemleak: reset tag when compare object pointer Greg Kroah-Hartman
2022-04-05  7:17 ` [PATCH 5.16 0118/1017] dm stats: fix too short end duration_ns when using precise_timestamps Greg Kroah-Hartman
2022-04-05  7:17 ` [PATCH 5.16 0119/1017] dm: fix use-after-free in dm_cleanup_zoned_dev() Greg Kroah-Hartman
2022-04-05  7:17 ` [PATCH 5.16 0120/1017] dm: interlock pending dm_io and dm_wait_for_bios_completion Greg Kroah-Hartman
2022-04-05  7:17 ` [PATCH 5.16 0121/1017] dm: fix double accounting of flush with data Greg Kroah-Hartman
2022-04-05  7:17 ` [PATCH 5.16 0122/1017] dm integrity: set journal entry unused when shrinking device Greg Kroah-Hartman
2022-04-05  7:17 ` [PATCH 5.16 0123/1017] tracing: Have trace event string test handle zero length strings Greg Kroah-Hartman
2022-04-05  7:17 ` [PATCH 5.16 0124/1017] drbd: fix potential silent data corruption Greg Kroah-Hartman
2022-04-05  7:17 ` [PATCH 5.16 0125/1017] can: isotp: sanitize CAN ID checks in isotp_bind() Greg Kroah-Hartman
2022-04-05  7:17 ` [PATCH 5.16 0126/1017] PCI: fu740: Force 2.5GT/s for initial device probe Greg Kroah-Hartman
2022-04-05  7:17 ` [PATCH 5.16 0127/1017] arm64: signal: nofpsimd: Do not allocate fp/simd context when not available Greg Kroah-Hartman
2022-04-05  7:17 ` [PATCH 5.16 0128/1017] arm64: Do not defer reserve_crashkernel() for platforms with no DMA memory zones Greg Kroah-Hartman
2022-04-05  7:17 ` [PATCH 5.16 0129/1017] arm64: dts: qcom: sm8250: Fix MSI IRQ for PCIe1 and PCIe2 Greg Kroah-Hartman
2022-04-05  7:17 ` [PATCH 5.16 0130/1017] arm64: dts: ti: k3-am65: Fix gic-v3 compatible regs Greg Kroah-Hartman
2022-04-05  7:17 ` [PATCH 5.16 0131/1017] arm64: dts: ti: k3-j721e: " Greg Kroah-Hartman
2022-04-05  7:17 ` [PATCH 5.16 0132/1017] arm64: dts: ti: k3-j7200: " Greg Kroah-Hartman
2022-04-05  7:17 ` [PATCH 5.16 0133/1017] arm64: dts: ti: k3-am64: " Greg Kroah-Hartman
2022-04-05  7:17 ` [PATCH 5.16 0134/1017] ASoC: SOF: Intel: Fix NULL ptr dereference when ENOMEM Greg Kroah-Hartman
2022-04-05  7:17   ` Greg Kroah-Hartman
2022-04-05  7:17 ` [PATCH 5.16 0135/1017] mmc: core: use sysfs_emit() instead of sprintf() Greg Kroah-Hartman
2022-04-05  7:17 ` [PATCH 5.16 0136/1017] Revert "ACPI: Pass the same capabilities to the _OSC regardless of the query flag" Greg Kroah-Hartman
2022-04-05  7:17 ` [PATCH 5.16 0137/1017] ACPI: properties: Consistently return -ENOENT if there are no more references Greg Kroah-Hartman
2022-04-05  7:17 ` [PATCH 5.16 0138/1017] coredump: Also dump first pages of non-executable ELF libraries Greg Kroah-Hartman
2022-04-05  7:17 ` [PATCH 5.16 0139/1017] ext4: fix ext4_fc_stats trace point Greg Kroah-Hartman
2022-04-05  7:17 ` [PATCH 5.16 0140/1017] ext4: fix fs corruption when tring to remove a non-empty directory with IO error Greg Kroah-Hartman
2022-04-05  7:17 ` [PATCH 5.16 0141/1017] ext4: make mb_optimize_scan performance mount option work with extents Greg Kroah-Hartman
2022-04-05  7:17 ` [PATCH 5.16 0142/1017] samples/landlock: Fix path_list memory leak Greg Kroah-Hartman
2022-04-05  7:17 ` [PATCH 5.16 0143/1017] landlock: Use square brackets around "landlock-ruleset" Greg Kroah-Hartman
2022-04-05  7:17 ` [PATCH 5.16 0144/1017] mailbox: tegra-hsp: Flush whole channel Greg Kroah-Hartman
2022-04-05  7:17 ` [PATCH 5.16 0145/1017] btrfs: zoned: put block group after final usage Greg Kroah-Hartman
2022-04-05  7:17 ` [PATCH 5.16 0146/1017] block: fix rq-qos breakage from skipping rq_qos_done_bio() Greg Kroah-Hartman
2022-04-05  7:17 ` [PATCH 5.16 0147/1017] block: limit request dispatch loop duration Greg Kroah-Hartman
2022-04-05  7:17 ` [PATCH 5.16 0148/1017] block: dont merge across cgroup boundaries if blkcg is enabled Greg Kroah-Hartman
2022-04-05  7:17 ` [Intel-gfx] [PATCH 5.16 0149/1017] drm/edid: check basic audio support on CEA extension block Greg Kroah-Hartman
2022-04-05  7:17   ` Greg Kroah-Hartman
2022-04-05  7:17 ` [PATCH 5.16 0150/1017] fbdev: Hot-unplug firmware fb devices on forced removal Greg Kroah-Hartman
2022-04-05  7:17 ` [PATCH 5.16 0151/1017] video: fbdev: sm712fb: Fix crash in smtcfb_read() Greg Kroah-Hartman
2022-04-05  7:17 ` [PATCH 5.16 0152/1017] video: fbdev: atari: Atari 2 bpp (STe) palette bugfix Greg Kroah-Hartman
2022-04-05  7:17 ` [PATCH 5.16 0153/1017] rfkill: make new event layout opt-in Greg Kroah-Hartman
2022-04-05  7:17 ` [PATCH 5.16 0154/1017] ARM: dts: at91: sama7g5: Remove unused properties in i2c nodes Greg Kroah-Hartman
2022-04-05  7:17 ` [PATCH 5.16 0155/1017] ARM: dts: at91: sama5d2: Fix PMERRLOC resource size Greg Kroah-Hartman
2022-04-05  7:17 ` [PATCH 5.16 0156/1017] ARM: dts: exynos: fix UART3 pins configuration in Exynos5250 Greg Kroah-Hartman
2022-04-05  7:17 ` [PATCH 5.16 0157/1017] ARM: dts: exynos: add missing HDMI supplies on SMDK5250 Greg Kroah-Hartman
2022-04-05  7:17 ` [PATCH 5.16 0158/1017] ARM: dts: exynos: add missing HDMI supplies on SMDK5420 Greg Kroah-Hartman
2022-04-05  7:17 ` [PATCH 5.16 0159/1017] mgag200 fix memmapsl configuration in GCTL6 register Greg Kroah-Hartman
2022-04-05  7:17 ` [PATCH 5.16 0160/1017] carl9170: fix missing bit-wise or operator for tx_params Greg Kroah-Hartman
2022-04-05  7:17 ` [PATCH 5.16 0161/1017] pstore: Dont use semaphores in always-atomic-context code Greg Kroah-Hartman
2022-04-05  7:17 ` [PATCH 5.16 0162/1017] thermal: int340x: Increase bitmap size Greg Kroah-Hartman
2022-04-05  7:17 ` [PATCH 5.16 0163/1017] lib/raid6/test: fix multiple definition linking error Greg Kroah-Hartman
2022-04-05  7:17 ` [PATCH 5.16 0164/1017] exec: Force single empty string when argv is empty Greg Kroah-Hartman
2022-04-05  7:17 ` [PATCH 5.16 0165/1017] crypto: rsa-pkcs1pad - only allow with rsa Greg Kroah-Hartman
2022-04-05  7:17 ` [PATCH 5.16 0166/1017] crypto: rsa-pkcs1pad - correctly get hash from source scatterlist Greg Kroah-Hartman
2022-04-05  7:18 ` [PATCH 5.16 0167/1017] crypto: rsa-pkcs1pad - restore signature length check Greg Kroah-Hartman
2022-04-05  7:18 ` [PATCH 5.16 0168/1017] crypto: rsa-pkcs1pad - fix buffer overread in pkcs1pad_verify_complete() Greg Kroah-Hartman
2022-04-05  7:18 ` [PATCH 5.16 0169/1017] bcache: fixup multiple threads crash Greg Kroah-Hartman
2022-04-05  7:18 ` [PATCH 5.16 0170/1017] PM: domains: Fix sleep-in-atomic bug caused by genpd_debug_remove() Greg Kroah-Hartman
2022-04-05  7:18 ` [PATCH 5.16 0171/1017] DEC: Limit PMAX memory probing to R3k systems Greg Kroah-Hartman
2022-04-05  7:18 ` [PATCH 5.16 0172/1017] media: gpio-ir-tx: fix transmit with long spaces on Orange Pi PC Greg Kroah-Hartman
2022-04-05  7:18 ` [PATCH 5.16 0173/1017] media: omap3isp: Use struct_group() for memcpy() region Greg Kroah-Hartman
2022-04-05  7:18 ` [PATCH 5.16 0174/1017] media: venus: vdec: fixed possible memory leak issue Greg Kroah-Hartman
2022-04-05  7:18 ` [PATCH 5.16 0175/1017] media: venus: hfi_cmds: List HDR10 property as unsupported for v1 and v3 Greg Kroah-Hartman
2022-04-05  7:18 ` [PATCH 5.16 0176/1017] media: venus: venc: Fix h264 8x8 transform control Greg Kroah-Hartman
2022-04-05  7:18 ` [PATCH 5.16 0177/1017] media: davinci: vpif: fix unbalanced runtime PM get Greg Kroah-Hartman
2022-04-05  7:18 ` [PATCH 5.16 0178/1017] media: davinci: vpif: fix unbalanced runtime PM enable Greg Kroah-Hartman
2022-04-05  7:18 ` [PATCH 5.16 0179/1017] media: davinci: vpif: fix use-after-free on driver unbind Greg Kroah-Hartman
2022-04-05  7:18 ` [PATCH 5.16 0180/1017] btrfs: zoned: mark relocation as writing Greg Kroah-Hartman
2022-04-05  7:18 ` [PATCH 5.16 0181/1017] btrfs: extend locking to all space_info members accesses Greg Kroah-Hartman
2022-04-05  7:18 ` [PATCH 5.16 0182/1017] btrfs: verify the tranisd of the to-be-written dirty extent buffer Greg Kroah-Hartman
2022-04-05  7:18 ` [PATCH 5.16 0183/1017] xtensa: define update_mmu_tlb function Greg Kroah-Hartman
2022-04-05  7:18 ` [PATCH 5.16 0184/1017] xtensa: fix stop_machine_cpuslocked call in patch_text Greg Kroah-Hartman
2022-04-05  7:18 ` [PATCH 5.16 0185/1017] xtensa: fix xtensa_wsr always writing 0 Greg Kroah-Hartman
2022-04-05  7:18 ` [PATCH 5.16 0186/1017] drm/syncobj: flatten dma_fence_chains on transfer Greg Kroah-Hartman
2022-04-05  7:18 ` [PATCH 5.16 0187/1017] drm/nouveau/backlight: Fix LVDS backlight detection on some laptops Greg Kroah-Hartman
2022-04-05  7:18 ` [PATCH 5.16 0188/1017] drm/nouveau/backlight: Just set all backlight types as RAW Greg Kroah-Hartman
2022-04-05  7:18 ` [PATCH 5.16 0189/1017] drm/fb-helper: Mark screen buffers in system memory with FBINFO_VIRTFB Greg Kroah-Hartman
2022-04-05  7:18   ` Greg Kroah-Hartman
2022-04-05  7:18 ` [PATCH 5.16 0190/1017] brcmfmac: firmware: Allocate space for default boardrev in nvram Greg Kroah-Hartman
2022-04-05  7:18 ` [PATCH 5.16 0191/1017] brcmfmac: pcie: Release firmwares in the brcmf_pcie_setup error path Greg Kroah-Hartman
2022-04-05  7:18 ` [PATCH 5.16 0192/1017] brcmfmac: pcie: Declare missing firmware files in pcie.c Greg Kroah-Hartman
2022-04-05  7:18 ` [PATCH 5.16 0193/1017] brcmfmac: pcie: Replace brcmf_pcie_copy_mem_todev with memcpy_toio Greg Kroah-Hartman
2022-04-05  7:18 ` [PATCH 5.16 0194/1017] brcmfmac: pcie: Fix crashes due to early IRQs Greg Kroah-Hartman
2022-04-05  7:18 ` [PATCH 5.16 0195/1017] drm/i915/opregion: check port number bounds for SWSCI display power state Greg Kroah-Hartman
2022-04-05  7:18 ` [PATCH 5.16 0196/1017] drm/i915/gem: add missing boundary check in vm_access Greg Kroah-Hartman
2022-04-05  7:18 ` [PATCH 5.16 0197/1017] PCI: imx6: Allow to probe when dw_pcie_wait_for_link() fails Greg Kroah-Hartman
2022-04-05  7:18 ` [PATCH 5.16 0198/1017] PCI: pciehp: Clear cmd_busy bit in polling mode Greg Kroah-Hartman
2022-04-05  7:18 ` [PATCH 5.16 0199/1017] PCI: xgene: Revert "PCI: xgene: Fix IB window setup" Greg Kroah-Hartman
2022-04-05  7:18 ` [PATCH 5.16 0200/1017] regulator: qcom_smd: fix for_each_child.cocci warnings Greg Kroah-Hartman
2022-04-05  7:18 ` [PATCH 5.16 0201/1017] selinux: access superblock_security_struct in LSM blob way Greg Kroah-Hartman
2022-04-05  7:18 ` [PATCH 5.16 0202/1017] selinux: check return value of sel_make_avc_files Greg Kroah-Hartman
2022-04-05  7:18 ` [PATCH 5.16 0203/1017] crypto: ccp - Ensure psp_ret is always initd in __sev_platform_init_locked() Greg Kroah-Hartman
2022-04-05  7:18 ` [PATCH 5.16 0204/1017] hwrng: cavium - Check health status while reading random data Greg Kroah-Hartman
2022-04-05  7:18 ` [PATCH 5.16 0205/1017] hwrng: cavium - HW_RANDOM_CAVIUM should depend on ARCH_THUNDER Greg Kroah-Hartman
2022-04-05  7:18 ` [PATCH 5.16 0206/1017] crypto: sun8i-ss - really disable hash on A80 Greg Kroah-Hartman
2022-04-05  7:18 ` [PATCH 5.16 0207/1017] crypto: authenc - Fix sleep in atomic context in decrypt_tail Greg Kroah-Hartman
2022-04-05  7:18 ` [PATCH 5.16 0208/1017] crypto: mxs-dcp - Fix scatterlist processing Greg Kroah-Hartman
2022-04-05  7:18 ` [PATCH 5.16 0209/1017] selinux: Fix selinux_sb_mnt_opts_compat() Greg Kroah-Hartman
2022-04-05  7:18 ` [PATCH 5.16 0210/1017] thermal: int340x: Check for NULL after calling kmemdup() Greg Kroah-Hartman
2022-04-05  7:18 ` [PATCH 5.16 0211/1017] crypto: octeontx2 - remove CONFIG_DM_CRYPT check Greg Kroah-Hartman
2022-04-05  7:18 ` [PATCH 5.16 0212/1017] spi: tegra114: Add missing IRQ check in tegra_spi_probe Greg Kroah-Hartman
2022-04-05  7:18 ` [PATCH 5.16 0213/1017] spi: tegra210-quad: Fix missin IRQ check in tegra_qspi_probe Greg Kroah-Hartman
2022-04-05  7:18 ` [PATCH 5.16 0214/1017] stack: Constrain and fix stack offset randomization with Clang builds Greg Kroah-Hartman
2022-04-05  7:18 ` [PATCH 5.16 0215/1017] arm64/mm: avoid fixmap race condition when create pud mapping Greg Kroah-Hartman
2022-04-05  7:18 ` [PATCH 5.16 0216/1017] security: add sctp_assoc_established hook Greg Kroah-Hartman
2022-04-05  7:18 ` [PATCH 5.16 0217/1017] security: implement sctp_assoc_established hook in selinux Greg Kroah-Hartman
2022-04-05  7:18 ` [PATCH 5.16 0218/1017] blk-cgroup: set blkg iostat after percpu stat aggregation Greg Kroah-Hartman
2022-04-05  7:18 ` [PATCH 5.16 0219/1017] selftests/x86: Add validity check and allow field splitting Greg Kroah-Hartman
2022-04-05  7:18 ` [PATCH 5.16 0220/1017] selftests/sgx: Treat CC as one argument Greg Kroah-Hartman
2022-04-05  7:18 ` [PATCH 5.16 0221/1017] crypto: rockchip - ECB does not need IV Greg Kroah-Hartman
2022-04-05  7:18 ` [PATCH 5.16 0222/1017] audit: log AUDIT_TIME_* records only from rules Greg Kroah-Hartman
2022-04-05  7:18 ` [PATCH 5.16 0223/1017] EVM: fix the evm= __setup handler return value Greg Kroah-Hartman
2022-04-05  7:18 ` [PATCH 5.16 0224/1017] crypto: ccree - dont attempt 0 len DMA mappings Greg Kroah-Hartman
2022-04-05  7:18 ` [PATCH 5.16 0225/1017] crypto: hisilicon/sec - fix the aead software fallback for engine Greg Kroah-Hartman
2022-04-05  7:18 ` [PATCH 5.16 0226/1017] spi: pxa2xx-pci: Balance reference count for PCI DMA device Greg Kroah-Hartman
2022-04-05  7:19 ` [PATCH 5.16 0227/1017] hwmon: (pmbus) Add mutex to regulator ops Greg Kroah-Hartman
2022-04-05  7:19 ` [PATCH 5.16 0228/1017] hwmon: (sch56xx-common) Replace WDOG_ACTIVE with WDOG_HW_RUNNING Greg Kroah-Hartman
2022-04-05  7:19 ` [PATCH 5.16 0229/1017] nvme: cleanup __nvme_check_ids Greg Kroah-Hartman
2022-04-05  7:19 ` [PATCH 5.16 0230/1017] nvme: fix the check for duplicate unique identifiers Greg Kroah-Hartman
2022-04-05  7:19 ` [PATCH 5.16 0231/1017] block: dont delete queue kobject before its children Greg Kroah-Hartman
2022-04-05  7:19 ` [PATCH 5.16 0232/1017] PM: hibernate: fix __setup handler error handling Greg Kroah-Hartman
2022-04-05  7:19 ` [PATCH 5.16 0233/1017] PM: suspend: fix return value of __setup handler Greg Kroah-Hartman
2022-04-05  7:19 ` [PATCH 5.16 0234/1017] spi: spi-zynqmp-gqspi: Handle error for dma_set_mask Greg Kroah-Hartman
2022-04-05  7:19 ` [PATCH 5.16 0235/1017] hwrng: atmel - disable trng on failure path Greg Kroah-Hartman
2022-04-05  7:19 ` [PATCH 5.16 0236/1017] crypto: sun8i-ss - call finalize with bh disabled Greg Kroah-Hartman
2022-04-05  7:19 ` [PATCH 5.16 0237/1017] crypto: sun8i-ce " Greg Kroah-Hartman
2022-04-05  7:19 ` [PATCH 5.16 0238/1017] crypto: amlogic " Greg Kroah-Hartman
2022-04-05  7:19 ` [PATCH 5.16 0239/1017] crypto: gemini " Greg Kroah-Hartman
2022-04-05  7:19 ` [PATCH 5.16 0240/1017] crypto: vmx - add missing dependencies Greg Kroah-Hartman
2022-04-05  7:19 ` [PATCH 5.16 0241/1017] clocksource/drivers/timer-ti-dm: Fix regression from errata i940 fix Greg Kroah-Hartman
2022-04-05  7:19 ` [PATCH 5.16 0242/1017] clocksource/drivers/exynos_mct: Refactor resources allocation Greg Kroah-Hartman
2022-04-05  7:19 ` [PATCH 5.16 0243/1017] clocksource/drivers/exynos_mct: Handle DTS with higher number of interrupts Greg Kroah-Hartman
2022-04-05  7:19 ` [PATCH 5.16 0244/1017] clocksource/drivers/timer-microchip-pit64b: Use notrace Greg Kroah-Hartman
2022-04-05  7:19 ` [PATCH 5.16 0245/1017] clocksource/drivers/timer-of: Check return value of of_iomap in timer_of_base_init() Greg Kroah-Hartman
2022-04-05  7:19 ` [PATCH 5.16 0246/1017] arm64: prevent instrumentation of bp hardening callbacks Greg Kroah-Hartman
2022-04-05  7:19 ` [PATCH 5.16 0247/1017] KEYS: trusted: Fix trusted key backends when building as module Greg Kroah-Hartman
2022-04-05  7:19 ` [PATCH 5.16 0248/1017] KEYS: trusted: Avoid calling null function trusted_key_exit Greg Kroah-Hartman
2022-04-05  7:19 ` [PATCH 5.16 0249/1017] ACPI: APEI: fix return value of __setup handlers Greg Kroah-Hartman
2022-04-05  7:19 ` [PATCH 5.16 0250/1017] crypto: ccp - ccp_dmaengine_unregister release dma channels Greg Kroah-Hartman
2022-04-05  7:19 ` [PATCH 5.16 0251/1017] crypto: ccree - Fix use after free in cc_cipher_exit() Greg Kroah-Hartman
2022-04-05  7:19 ` [PATCH 5.16 0252/1017] hwrng: nomadik - Change clk_disable to clk_disable_unprepare Greg Kroah-Hartman
2022-04-05  7:19 ` [PATCH 5.16 0253/1017] hwmon: (pmbus) Add Vin unit off handling Greg Kroah-Hartman
2022-04-05  7:19 ` [PATCH 5.16 0254/1017] clocksource: acpi_pm: fix return value of __setup handler Greg Kroah-Hartman
2022-04-05  7:19 ` [PATCH 5.16 0255/1017] io_uring: dont check unrelated req->open.how in accept request Greg Kroah-Hartman
2022-04-05  7:19 ` [PATCH 5.16 0256/1017] io_uring: terminate manual loop iterator loop correctly for non-vecs Greg Kroah-Hartman
2022-04-05  7:19 ` [PATCH 5.16 0257/1017] watch_queue: Fix NULL dereference in error cleanup Greg Kroah-Hartman
2022-04-05  7:19 ` [PATCH 5.16 0258/1017] watch_queue: Actually free the watch Greg Kroah-Hartman
2022-04-05  7:19 ` [PATCH 5.16 0259/1017] f2fs: fix to enable ATGC correctly via gc_idle sysfs interface Greg Kroah-Hartman
2022-04-05  7:19 ` [PATCH 5.16 0260/1017] sched/debug: Remove mpol_get/put and task_lock/unlock from sched_show_numa Greg Kroah-Hartman
2022-04-05  7:19 ` [PATCH 5.16 0261/1017] sched/core: Export pelt_thermal_tp Greg Kroah-Hartman
2022-04-05  7:19 ` [PATCH 5.16 0262/1017] sched/uclamp: Fix iowait boost escaping uclamp restriction Greg Kroah-Hartman
2022-04-05  7:19 ` [PATCH 5.16 0263/1017] rseq: Remove broken uapi field layout on 32-bit little endian Greg Kroah-Hartman
2022-04-05  7:19 ` [PATCH 5.16 0264/1017] perf/core: Fix address filter parser for multiple filters Greg Kroah-Hartman
2022-04-05  7:19 ` [PATCH 5.16 0265/1017] perf/x86/intel/pt: Fix address filter config for 32-bit kernel Greg Kroah-Hartman
2022-04-05  7:19 ` [PATCH 5.16 0266/1017] sched/fair: Improve consistency of allowed NUMA balance calculations Greg Kroah-Hartman
2022-04-05  7:19 ` [PATCH 5.16 0267/1017] f2fs: fix missing free nid in f2fs_handle_failed_inode Greg Kroah-Hartman
2022-04-05  7:19 ` [PATCH 5.16 0268/1017] nfsd: more robust allocation failure handling in nfsd_file_cache_init Greg Kroah-Hartman
2022-04-05  7:19 ` [PATCH 5.16 0269/1017] sched/cpuacct: Fix charge percpu cpuusage Greg Kroah-Hartman
2022-04-05  7:19 ` [PATCH 5.16 0270/1017] sched/rt: Plug rt_mutex_setprio() vs push_rt_task() race Greg Kroah-Hartman
2022-04-05  7:19 ` Greg Kroah-Hartman [this message]
2022-04-05  7:19 ` [PATCH 5.16 0272/1017] btrfs: fix unexpected error path when reflinking an inline extent Greg Kroah-Hartman
2022-04-05  7:19 ` [PATCH 5.16 0273/1017] f2fs: fix compressed file start atomic write may cause data corruption Greg Kroah-Hartman
2022-04-05  7:19 ` [PATCH 5.16 0274/1017] selftests, x86: fix how check_cc.sh is being invoked Greg Kroah-Hartman
2022-04-05  7:19 ` [PATCH 5.16 0275/1017] drivers/base/memory: add memory block to memory group after registration succeeded Greg Kroah-Hartman
2022-04-05  7:19 ` [PATCH 5.16 0276/1017] kunit: make kunit_test_timeout compatible with comment Greg Kroah-Hartman
2022-04-05  7:19 ` [PATCH 5.16 0277/1017] pinctrl: samsung: Remove EINT handler for Exynos850 ALIVE and CMGP gpios Greg Kroah-Hartman
2022-04-05  7:19 ` [PATCH 5.16 0278/1017] media: staging: media: zoran: fix usage of vb2_dma_contig_set_max_seg_size Greg Kroah-Hartman
2022-04-05  7:19 ` [PATCH 5.16 0279/1017] media: camss: csid-170: fix non-10bit formats Greg Kroah-Hartman
2022-04-05  7:19 ` [PATCH 5.16 0280/1017] media: camss: csid-170: dont enable unused irqs Greg Kroah-Hartman
2022-04-05  7:19 ` [PATCH 5.16 0281/1017] media: camss: csid-170: set the right HALT_CMD when disabled Greg Kroah-Hartman
2022-04-05  7:19 ` [PATCH 5.16 0282/1017] media: camss: vfe-170: fix "VFE halt timeout" error Greg Kroah-Hartman
2022-04-05  7:19 ` [PATCH 5.16 0283/1017] media: staging: media: imx: imx7-mipi-csis: Make subdev name unique Greg Kroah-Hartman
2022-04-05  7:19 ` [PATCH 5.16 0284/1017] media: v4l2-mem2mem: Apply DST_QUEUE_OFF_BASE on MMAP buffers across ioctls Greg Kroah-Hartman
2022-04-05  7:19 ` [PATCH 5.16 0285/1017] media: mtk-vcodec: potential dereference of null pointer Greg Kroah-Hartman
2022-04-05  7:19 ` [PATCH 5.16 0286/1017] media: imx: imx8mq-mipi-csi2: remove wrong irq config write operation Greg Kroah-Hartman
2022-04-05  7:20 ` [PATCH 5.16 0287/1017] media: imx: imx8mq-mipi_csi2: fix system resume Greg Kroah-Hartman
2022-04-05  7:20 ` [PATCH 5.16 0288/1017] media: bttv: fix WARNING regression on tunerless devices Greg Kroah-Hartman
2022-04-05  7:20 ` [PATCH 5.16 0289/1017] media: atmel: atmel-sama7g5-isc: fix ispck leftover Greg Kroah-Hartman
2022-04-05  7:20 ` [PATCH 5.16 0290/1017] ASoC: sh: rz-ssi: Drop calling rz_ssi_pio_recv() recursively Greg Kroah-Hartman
2022-04-05  7:20 ` [PATCH 5.16 0291/1017] ASoC: codecs: Check for error pointer after calling devm_regmap_init_mmio Greg Kroah-Hartman
2022-04-05  7:20 ` [PATCH 5.16 0292/1017] ASoC: xilinx: xlnx_formatter_pcm: Handle sysclk setting Greg Kroah-Hartman
2022-04-05  7:20 ` [PATCH 5.16 0293/1017] ASoC: simple-card-utils: Set sysclk on all components Greg Kroah-Hartman
2022-04-05  7:20 ` [PATCH 5.16 0294/1017] memory: tegra20-emc: Correct memory device mask Greg Kroah-Hartman
2022-04-05  7:20 ` [PATCH 5.16 0295/1017] media: coda: Fix missing put_device() call in coda_get_vdoa_data Greg Kroah-Hartman
2022-04-05  7:20 ` [PATCH 5.16 0296/1017] media: meson: vdec: potential dereference of null pointer Greg Kroah-Hartman
2022-04-05  7:20 ` [PATCH 5.16 0297/1017] media: hantro: Fix overfill bottom register field name Greg Kroah-Hartman
2022-04-05  7:20 ` [PATCH 5.16 0298/1017] media: ov6650: Fix set format try processing path Greg Kroah-Hartman
2022-04-05  7:20 ` [PATCH 5.16 0299/1017] media: v4l: Avoid unaligned access warnings when printing 4cc modifiers Greg Kroah-Hartman
2022-04-05  7:20 ` [PATCH 5.16 0300/1017] media: ov5648: Dont pack controls struct Greg Kroah-Hartman
2022-04-05  7:20 ` [PATCH 5.16 0301/1017] media: aspeed: Correct value for h-total-pixels Greg Kroah-Hartman
2022-04-05  7:20 ` [PATCH 5.16 0302/1017] video: fbdev: matroxfb: set maxvram of vbG200eW to the same as vbG200 to avoid black screen Greg Kroah-Hartman
2022-04-05  7:20 ` [PATCH 5.16 0303/1017] video: fbdev: controlfb: Fix COMPILE_TEST build Greg Kroah-Hartman
2022-04-05  7:20 ` [PATCH 5.16 0304/1017] video: fbdev: smscufx: Fix null-ptr-deref in ufx_usb_probe() Greg Kroah-Hartman
2022-04-05  7:20 ` [PATCH 5.16 0305/1017] video: fbdev: atmel_lcdfb: fix an error code in atmel_lcdfb_probe() Greg Kroah-Hartman
2022-04-05  7:20 ` [PATCH 5.16 0306/1017] video: fbdev: fbcvt.c: fix printing in fb_cvt_print_name() Greg Kroah-Hartman
2022-04-05  7:20 ` [PATCH 5.16 0307/1017] ARM: dts: Fix OpenBMC flash layout label addresses Greg Kroah-Hartman
2022-04-05  7:20 ` [PATCH 5.16 0308/1017] ASoC: max98927: add missing header file Greg Kroah-Hartman
2022-04-05  7:20   ` Greg Kroah-Hartman
2022-04-05  7:20 ` [PATCH 5.16 0309/1017] arm64: dts: qcom: sc7280: Fix gmu unit address Greg Kroah-Hartman
2022-04-05  7:20 ` [PATCH 5.16 0310/1017] firmware: qcom: scm: Remove reassignment to desc following initializer Greg Kroah-Hartman
2022-04-05  7:20 ` [PATCH 5.16 0311/1017] ARM: dts: qcom: ipq4019: fix sleep clock Greg Kroah-Hartman
2022-04-05  7:20 ` [PATCH 5.16 0312/1017] soc: qcom: rpmpd: Check for null return of devm_kcalloc Greg Kroah-Hartman
2022-04-05  7:20 ` [PATCH 5.16 0313/1017] soc: qcom: ocmem: Fix missing put_device() call in of_get_ocmem Greg Kroah-Hartman
2022-04-05  7:20 ` [PATCH 5.16 0314/1017] soc: qcom: aoss: Fix missing put_device call in qmp_get Greg Kroah-Hartman
2022-04-05  7:20 ` [PATCH 5.16 0315/1017] soc: qcom: aoss: remove spurious IRQF_ONESHOT flags Greg Kroah-Hartman
2022-04-05  7:20 ` [PATCH 5.16 0316/1017] arm64: dts: qcom: sdm845: fix microphone bias properties and values Greg Kroah-Hartman
2022-04-05  7:20 ` [PATCH 5.16 0317/1017] arm64: dts: qcom: sm8250: fix PCIe bindings to follow schema Greg Kroah-Hartman
2022-04-05  7:20 ` [PATCH 5.16 0318/1017] arm64: dts: broadcom: bcm4908: use proper TWD binding Greg Kroah-Hartman
2022-04-05  7:20 ` [PATCH 5.16 0319/1017] arm64: dts: qcom: sm8150: Correct TCS configuration for apps rsc Greg Kroah-Hartman
2022-04-05  7:20 ` [PATCH 5.16 0320/1017] arm64: dts: qcom: sm8350: " Greg Kroah-Hartman
2022-04-05  7:20 ` [PATCH 5.16 0321/1017] arm64: dts: qcom: msm8994: Provide missing "xo_board" and "sleep_clk" to GCC Greg Kroah-Hartman
2022-04-05  7:20 ` [PATCH 5.16 0322/1017] arm64: dts: qcom: ipq6018: fix usb reference period Greg Kroah-Hartman
2022-04-05  7:20 ` [PATCH 5.16 0323/1017] firmware: ti_sci: Fix compilation failure when CONFIG_TI_SCI_PROTOCOL is not defined Greg Kroah-Hartman
2022-04-05  7:20 ` [PATCH 5.16 0324/1017] soc: ti: wkup_m3_ipc: Fix IRQ check in wkup_m3_ipc_probe Greg Kroah-Hartman
2022-04-05  7:20 ` [PATCH 5.16 0325/1017] cpuidle: qcom-spm: Check if any CPU is managed by SPM Greg Kroah-Hartman
2022-04-05  7:20 ` [PATCH 5.16 0326/1017] ARM: dts: sun8i: v3s: Move the csi1 block to follow address order Greg Kroah-Hartman
2022-04-05  7:20 ` [PATCH 5.16 0327/1017] ARM: dts: stm32: fix AV96 board SAI2 pin muxing on stm32mp15 Greg Kroah-Hartman
2022-04-05  7:20 ` [PATCH 5.16 0328/1017] ARM: ftrace: ensure that ADR takes the Thumb bit into account Greg Kroah-Hartman
2022-04-05  7:20 ` [PATCH 5.16 0329/1017] vsprintf: Fix potential unaligned access Greg Kroah-Hartman
2022-04-05  7:20 ` [PATCH 5.16 0330/1017] ARM: dts: imx: Add missing LVDS decoder on M53Menlo Greg Kroah-Hartman
2022-04-05  7:20 ` [PATCH 5.16 0331/1017] media: mexon-ge2d: fixup frames size in registers Greg Kroah-Hartman
2022-04-05  7:20 ` [PATCH 5.16 0332/1017] media: video/hdmi: handle short reads of hdmi info frame Greg Kroah-Hartman
2022-04-05  7:20 ` [PATCH 5.16 0333/1017] media: ti-vpe: cal: Fix a NULL pointer dereference in cal_ctx_v4l2_init_formats() Greg Kroah-Hartman
2022-04-05  7:20 ` [PATCH 5.16 0334/1017] media: em28xx: initialize refcount before kref_get Greg Kroah-Hartman
2022-04-05  7:20 ` [PATCH 5.16 0335/1017] media: usb: go7007: s2250-board: fix leak in probe() Greg Kroah-Hartman
2022-04-05  7:20 ` [PATCH 5.16 0336/1017] media: cedrus: H265: Fix neighbour info buffer size Greg Kroah-Hartman
2022-04-05  7:20 ` [PATCH 5.16 0337/1017] media: cedrus: h264: " Greg Kroah-Hartman
2022-04-05  7:20 ` [PATCH 5.16 0338/1017] ASoC: codecs: rx-macro: fix accessing compander for aux Greg Kroah-Hartman
2022-04-05  7:20 ` [PATCH 5.16 0339/1017] ASoC: codecs: rx-macro: fix accessing array out of bounds for enum type Greg Kroah-Hartman
2022-04-05  7:20 ` [PATCH 5.16 0340/1017] ASoC: codecs: va-macro: " Greg Kroah-Hartman
2022-04-05  7:20 ` [PATCH 5.16 0341/1017] ASoC: codecs: wc938x: " Greg Kroah-Hartman
2022-04-05  7:20 ` [PATCH 5.16 0342/1017] ASoC: codecs: wcd938x: fix kcontrol max values Greg Kroah-Hartman
2022-04-05  7:20 ` [PATCH 5.16 0343/1017] ASoC: codecs: wcd934x: " Greg Kroah-Hartman
2022-04-05  7:20 ` [PATCH 5.16 0344/1017] ASoC: codecs: wcd934x: fix return value of wcd934x_rx_hph_mode_put Greg Kroah-Hartman
2022-04-05  7:20 ` [PATCH 5.16 0345/1017] media: v4l2-core: Initialize h264 scaling matrix Greg Kroah-Hartman
2022-04-05  7:20 ` [PATCH 5.16 0346/1017] media: ov5640: Fix set format, v4l2_mbus_pixelcode not updated Greg Kroah-Hartman
2022-04-05  7:21 ` [PATCH 5.16 0347/1017] selftests/lkdtm: Add UBSAN config Greg Kroah-Hartman
2022-04-05  7:21 ` [PATCH 5.16 0348/1017] vsprintf: Fix %pK with kptr_restrict == 0 Greg Kroah-Hartman
2022-04-05  7:21 ` [PATCH 5.16 0349/1017] uaccess: fix nios2 and microblaze get_user_8() Greg Kroah-Hartman
2022-04-05  7:21 ` [PATCH 5.16 0350/1017] ASoC: rt5663: check the return value of devm_kzalloc() in rt5663_parse_dp() Greg Kroah-Hartman
2022-04-05  7:21 ` [PATCH 5.16 0351/1017] ASoC: acp: check the return value of devm_kzalloc() in acp_legacy_dai_links_create() Greg Kroah-Hartman
2022-04-05  7:21 ` [PATCH 5.16 0352/1017] soc: mediatek: pm-domains: Add wakeup capacity support in power domain Greg Kroah-Hartman
2022-04-05  7:21 ` [PATCH 5.16 0353/1017] mmc: sdhci_am654: Fix the driver data of AM64 SoC Greg Kroah-Hartman
2022-04-05  7:21 ` [PATCH 5.16 0354/1017] ASoC: ti: davinci-i2s: Add check for clk_enable() Greg Kroah-Hartman
2022-04-05  7:21 ` [PATCH 5.16 0355/1017] ALSA: spi: " Greg Kroah-Hartman
2022-04-05  7:21 ` [PATCH 5.16 0356/1017] arm64: dts: ns2: Fix spi-cpol and spi-cpha property Greg Kroah-Hartman
2022-04-05  7:21 ` [PATCH 5.16 0357/1017] arm64: dts: broadcom: Fix sata nodename Greg Kroah-Hartman
2022-04-05  7:21 ` [PATCH 5.16 0358/1017] printk: fix return value of printk.devkmsg __setup handler Greg Kroah-Hartman
2022-04-05  7:21 ` [PATCH 5.16 0359/1017] ASoC: mxs-saif: Handle errors for clk_enable Greg Kroah-Hartman
2022-04-05  7:21 ` [PATCH 5.16 0360/1017] ASoC: atmel_ssc_dai: " Greg Kroah-Hartman
2022-04-05  7:21 ` [PATCH 5.16 0361/1017] ASoC: dwc-i2s: " Greg Kroah-Hartman
2022-04-05  7:21 ` [PATCH 5.16 0362/1017] ASoC: soc-compress: prevent the potentially use of null pointer Greg Kroah-Hartman
2022-04-05  7:21 ` [PATCH 5.16 0363/1017] memory: emif: Add check for setup_interrupts Greg Kroah-Hartman
2022-04-05  7:21 ` [PATCH 5.16 0364/1017] memory: emif: check the pointer temp in get_device_details() Greg Kroah-Hartman
2022-04-05  7:21 ` [PATCH 5.16 0365/1017] ALSA: firewire-lib: fix uninitialized flag for AV/C deferred transaction Greg Kroah-Hartman
2022-04-05  7:21 ` [PATCH 5.16 0366/1017] arm64: dts: rockchip: Fix SDIO regulator supply properties on rk3399-firefly Greg Kroah-Hartman
2022-04-05  7:21 ` [PATCH 5.16 0367/1017] m68k: coldfire/device.c: only build for MCF_EDMA when h/w macros are defined Greg Kroah-Hartman
2022-04-05  7:21 ` [PATCH 5.16 0368/1017] media: stk1160: If start stream fails, return buffers with VB2_BUF_STATE_QUEUED Greg Kroah-Hartman
2022-04-05  7:21 ` [PATCH 5.16 0369/1017] media: vidtv: Check for null return of vzalloc Greg Kroah-Hartman
2022-04-05  7:21 ` [PATCH 5.16 0370/1017] ASoC: cs35l41: Fix GPIO2 configuration Greg Kroah-Hartman
2022-04-05  7:21 ` [PATCH 5.16 0371/1017] ASoC: cs35l41: Fix max number of TX channels Greg Kroah-Hartman
2022-04-05  7:21 ` [PATCH 5.16 0372/1017] ASoC: atmel: Add missing of_node_put() in at91sam9g20ek_audio_probe Greg Kroah-Hartman
2022-04-05  7:21 ` [PATCH 5.16 0373/1017] ASoC: wm8350: Handle error for wm8350_register_irq Greg Kroah-Hartman
2022-04-05  7:21 ` [PATCH 5.16 0374/1017] ASoC: fsi: Add check for clk_enable Greg Kroah-Hartman
2022-04-05  7:21 ` [PATCH 5.16 0375/1017] video: fbdev: omapfb: Add missing of_node_put() in dvic_probe_of Greg Kroah-Hartman
2022-04-05  7:21 ` [PATCH 5.16 0376/1017] media: saa7134: fix incorrect use to determine if list is empty Greg Kroah-Hartman
2022-04-05  7:21 ` [PATCH 5.16 0377/1017] ivtv: fix incorrect device_caps for ivtvfb Greg Kroah-Hartman
2022-04-05  7:21 ` [PATCH 5.16 0378/1017] ASoC: atmel: Fix error handling in snd_proto_probe Greg Kroah-Hartman
2022-04-05  7:21 ` [PATCH 5.16 0379/1017] ASoC: rockchip: i2s: Fix missing clk_disable_unprepare() in rockchip_i2s_probe Greg Kroah-Hartman
2022-04-05  7:21 ` [PATCH 5.16 0380/1017] ASoC: SOF: Add missing of_node_put() in imx8m_probe Greg Kroah-Hartman
2022-04-05  7:21 ` [PATCH 5.16 0381/1017] ASoC: mediatek: use of_device_get_match_data() Greg Kroah-Hartman
2022-04-05  7:21 ` [PATCH 5.16 0382/1017] ASoC: mediatek: mt8192-mt6359: Fix error handling in mt8192_mt6359_dev_probe Greg Kroah-Hartman
2022-04-05  7:21 ` [PATCH 5.16 0383/1017] ASoC: rk817: Fix missing clk_disable_unprepare() in rk817_platform_probe Greg Kroah-Hartman
2022-04-05  7:21 ` [PATCH 5.16 0384/1017] ASoC: dmaengine: do not use a NULL prepare_slave_config() callback Greg Kroah-Hartman
2022-04-05  7:21 ` [PATCH 5.16 0385/1017] ASoC: mxs: Fix error handling in mxs_sgtl5000_probe Greg Kroah-Hartman
2022-04-05  7:21 ` [PATCH 5.16 0386/1017] ASoC: fsl_spdif: Disable TX clock when stop Greg Kroah-Hartman
2022-04-05  7:21 ` [PATCH 5.16 0387/1017] ASoC: imx-es8328: Fix error return code in imx_es8328_probe() Greg Kroah-Hartman
2022-04-05  7:21 ` [PATCH 5.16 0388/1017] ASoC: SOF: Intel: enable DMI L1 for playback streams Greg Kroah-Hartman
2022-04-05  7:21 ` [PATCH 5.16 0389/1017] ASoC: msm8916-wcd-digital: Fix missing clk_disable_unprepare() in msm8916_wcd_digital_probe Greg Kroah-Hartman
2022-04-05  7:21 ` [PATCH 5.16 0390/1017] mmc: davinci_mmc: Handle error for clk_enable Greg Kroah-Hartman
2022-04-05  7:21 ` [PATCH 5.16 0391/1017] ASoC: rockchip: Fix PM usage reference of rockchip_i2s_tdm_resume Greg Kroah-Hartman
2022-04-05  7:21 ` [PATCH 5.16 0392/1017] ASoC: atmel: Fix error handling in sam9x5_wm8731_driver_probe Greg Kroah-Hartman
2022-04-05  7:21 ` [PATCH 5.16 0393/1017] ASoC: msm8916-wcd-analog: Fix error handling in pm8916_wcd_analog_spmi_probe Greg Kroah-Hartman
2022-04-05  7:21 ` [PATCH 5.16 0394/1017] ASoC: codecs: wcd934x: Add missing of_node_put() in wcd934x_codec_parse_data Greg Kroah-Hartman
2022-04-05  7:21 ` [PATCH 5.16 0395/1017] ASoC: amd: Fix reference to PCM buffer address Greg Kroah-Hartman
2022-04-05  7:21 ` [PATCH 5.16 0396/1017] ARM: configs: multi_v5_defconfig: re-enable CONFIG_V4L_PLATFORM_DRIVERS Greg Kroah-Hartman
2022-04-05  7:21 ` [PATCH 5.16 0397/1017] ARM: configs: multi_v5_defconfig: re-enable DRM_PANEL and FB_xxx Greg Kroah-Hartman
2022-04-05  7:21 ` [PATCH 5.16 0398/1017] drm/meson: osd_afbcd: Add an exit callback to struct meson_afbcd_ops Greg Kroah-Hartman
2022-04-05  7:21 ` [PATCH 5.16 0399/1017] drm/meson: split out encoder from meson_dw_hdmi Greg Kroah-Hartman
2022-04-05  7:21 ` [PATCH 5.16 0400/1017] drm/meson: Fix error handling when afbcd.ops->init fails Greg Kroah-Hartman
2022-04-05  7:21 ` [PATCH 5.16 0401/1017] drm/bridge: Fix free wrong object in sii8620_init_rcp_input_dev Greg Kroah-Hartman
2022-04-05  7:21 ` [PATCH 5.16 0402/1017] drm/bridge: Add missing pm_runtime_disable() in __dw_mipi_dsi_probe Greg Kroah-Hartman
2022-04-05  7:21 ` [PATCH 5.16 0403/1017] drm/bridge: nwl-dsi: Fix PM disable depth imbalance in nwl_dsi_probe Greg Kroah-Hartman
2022-04-05  7:21 ` [PATCH 5.16 0404/1017] drm: bridge: adv7511: Fix ADV7535 HPD enablement Greg Kroah-Hartman
2022-04-05  7:21 ` [PATCH 5.16 0405/1017] ath10k: fix memory overwrite of the WoWLAN wakeup packet pattern Greg Kroah-Hartman
2022-04-05  7:21 ` [PATCH 5.16 0406/1017] drm/v3d/v3d_drv: Check for error num after setting mask Greg Kroah-Hartman
2022-04-05  7:22 ` [PATCH 5.16 0407/1017] drm/panfrost: " Greg Kroah-Hartman
2022-04-05  7:22 ` [PATCH 5.16 0408/1017] bpftool: Fix error check when calling hashmap__new() Greg Kroah-Hartman
2022-04-05  7:22 ` [PATCH 5.16 0409/1017] libbpf: Fix possible NULL pointer dereference when destroying skeleton Greg Kroah-Hartman
2022-04-05  7:22 ` [PATCH 5.16 0410/1017] bpftool: Only set obj->skeleton on complete success Greg Kroah-Hartman
2022-04-05  7:22 ` [PATCH 5.16 0411/1017] udmabuf: validate ubuf->pagecount Greg Kroah-Hartman
2022-04-05  7:22 ` [PATCH 5.16 0412/1017] bpf: Fix UAF due to race between btf_try_get_module and load_module Greg Kroah-Hartman
2022-04-05  7:22 ` [PATCH 5.16 0413/1017] drm/selftests/test-drm_dp_mst_helper: Fix memory leak in sideband_msg_req_encode_decode Greg Kroah-Hartman
2022-04-05  7:22 ` [PATCH 5.16 0414/1017] drm/locking: fix drm_modeset_acquire_ctx kernel-doc Greg Kroah-Hartman
2022-04-05  7:22 ` [PATCH 5.16 0415/1017] selftests: bpf: Fix bind on used port Greg Kroah-Hartman
2022-04-05  7:22 ` [PATCH 5.16 0416/1017] Bluetooth: btintel: Fix WBS setting for Intel legacy ROM products Greg Kroah-Hartman
2022-04-05  7:22 ` [PATCH 5.16 0417/1017] Bluetooth: hci_serdev: call init_rwsem() before p->open() Greg Kroah-Hartman
2022-04-05  7:22 ` [PATCH 5.16 0418/1017] mtd: onenand: Check for error irq Greg Kroah-Hartman
2022-04-05  7:22 ` [PATCH 5.16 0419/1017] mtd: rawnand: gpmi: fix controller timings setting Greg Kroah-Hartman
2022-04-05  7:22 ` [PATCH 5.16 0420/1017] selftests, xsk: Fix rx_full stats test Greg Kroah-Hartman
2022-04-05  7:22 ` [PATCH 5.16 0421/1017] drm/edid: Dont clear formats if using deep color Greg Kroah-Hartman
2022-04-05  7:22 ` [PATCH 5.16 0422/1017] drm/edid: Split deep color modes between RGB and YUV444 Greg Kroah-Hartman
2022-04-05  7:22 ` [PATCH 5.16 0423/1017] ionic: fix type complaint in ionic_dev_cmd_clean() Greg Kroah-Hartman
2022-04-05  7:22 ` [PATCH 5.16 0424/1017] ionic: start watchdog after all is setup Greg Kroah-Hartman
2022-04-05  7:22 ` [PATCH 5.16 0425/1017] ionic: Dont send reset commands if FW isnt running Greg Kroah-Hartman
2022-04-05  7:22 ` [PATCH 5.16 0426/1017] ionic: fix up printing of timeout error Greg Kroah-Hartman
2022-04-05  7:22 ` [PATCH 5.16 0427/1017] ionic: Correctly print AQ errors if completions arent received Greg Kroah-Hartman
2022-04-05  7:22 ` [PATCH 5.16 0428/1017] drm/nouveau/acr: Fix undefined behavior in nvkm_acr_hsfw_load_bl() Greg Kroah-Hartman
2022-04-05  7:22 ` [PATCH 5.16 0429/1017] drm/amd/display: Fix a NULL pointer dereference in amdgpu_dm_connector_add_common_modes() Greg Kroah-Hartman
2022-04-05  7:22 ` [PATCH 5.16 0430/1017] drm/amd/pm: return -ENOTSUPP if there is no get_dpm_ultimate_freq function Greg Kroah-Hartman
2022-04-05  7:22 ` [PATCH 5.16 0431/1017] net: phy: at803x: move page selection fix to config_init Greg Kroah-Hartman
2022-04-05  7:22 ` [PATCH 5.16 0432/1017] selftests/bpf/test_xdp_redirect_multi: use temp netns for testing Greg Kroah-Hartman
2022-04-05  7:22 ` [PATCH 5.16 0433/1017] ath9k_htc: fix uninit value bugs Greg Kroah-Hartman
2022-04-05  7:22 ` [PATCH 5.16 0434/1017] ath11k: set WMI_PEER_40MHZ while peer assoc for 6 GHz Greg Kroah-Hartman
2022-04-05  7:22 ` [PATCH 5.16 0435/1017] RDMA/core: Set MR type in ib_reg_user_mr Greg Kroah-Hartman
2022-04-05  7:22 ` [PATCH 5.16 0436/1017] KVM: PPC: Fix vmx/vsx mixup in mmio emulation Greg Kroah-Hartman
2022-04-05  7:22 ` [PATCH 5.16 0437/1017] selftests/net: timestamping: Fix bind_phc check Greg Kroah-Hartman
2022-04-05  7:22 ` [PATCH 5.16 0438/1017] i40e: dont reserve excessive XDP_PACKET_HEADROOM on XSK Rx to skb Greg Kroah-Hartman
2022-04-05  7:22 ` [PATCH 5.16 0439/1017] i40e: respect metadata " Greg Kroah-Hartman
2022-04-05  7:22 ` [PATCH 5.16 0440/1017] ice: dont reserve excessive XDP_PACKET_HEADROOM " Greg Kroah-Hartman
2022-04-05  7:22 ` [PATCH 5.16 0441/1017] ice: respect metadata " Greg Kroah-Hartman
2022-04-05  7:22 ` [PATCH 5.16 0442/1017] igc: dont reserve excessive XDP_PACKET_HEADROOM " Greg Kroah-Hartman
2022-04-05  7:22 ` [PATCH 5.16 0443/1017] ixgbe: pass bi->xdp to ixgbe_construct_skb_zc() directly Greg Kroah-Hartman
2022-04-05  7:22 ` [PATCH 5.16 0444/1017] ixgbe: dont reserve excessive XDP_PACKET_HEADROOM on XSK Rx to skb Greg Kroah-Hartman
2022-04-05  7:22 ` [PATCH 5.16 0445/1017] ixgbe: respect metadata " Greg Kroah-Hartman
2022-04-05  7:22 ` [PATCH 5.16 0446/1017] power: reset: gemini-poweroff: Fix IRQ check in gemini_poweroff_probe Greg Kroah-Hartman
2022-04-05  7:22 ` [PATCH 5.16 0447/1017] ray_cs: Check ioremap return value Greg Kroah-Hartman
2022-04-05  7:22 ` [PATCH 5.16 0448/1017] powerpc: dts: t1040rdb: fix ports names for Seville Ethernet switch Greg Kroah-Hartman
2022-04-05  7:22 ` [PATCH 5.16 0449/1017] KVM: PPC: Book3S HV: Check return value of kvmppc_radix_init Greg Kroah-Hartman
2022-04-05  7:22 ` [PATCH 5.16 0450/1017] powerpc/perf: Dont use perf_hw_context for trace IMC PMU Greg Kroah-Hartman
2022-04-05  7:22 ` [PATCH 5.16 0451/1017] mt76: connac: fix sta_rec_wtbl tag len Greg Kroah-Hartman
2022-04-05  7:22 ` [PATCH 5.16 0452/1017] mt76: mt7915: use proper aid value in mt7915_mcu_wtbl_generic_tlv in sta mode Greg Kroah-Hartman
2022-04-05  7:22 ` [PATCH 5.16 0453/1017] mt76: mt7915: use proper aid value in mt7915_mcu_sta_basic_tlv Greg Kroah-Hartman
2022-04-05  7:22 ` [PATCH 5.16 0454/1017] mt76: mt76_connac: fix MCU_CE_CMD_SET_ROC definition error Greg Kroah-Hartman
2022-04-05  7:22 ` [PATCH 5.16 0455/1017] mt76: mt7921: set EDCA parameters with the MCU CE command Greg Kroah-Hartman
2022-04-05  7:22 ` [PATCH 5.16 0456/1017] mt76: mt7921: do not always disable fw runtime-pm Greg Kroah-Hartman
2022-04-05  7:22 ` [PATCH 5.16 0457/1017] mt76: mt7921: fix a leftover race in runtime-pm Greg Kroah-Hartman
2022-04-05  7:22 ` [PATCH 5.16 0458/1017] mt76: mt7615: " Greg Kroah-Hartman
2022-04-05  7:22 ` [PATCH 5.16 0459/1017] mt76: mt7915: fix ht mcs in mt7915_mac_add_txs_skb() Greg Kroah-Hartman
2022-04-05  7:22 ` [PATCH 5.16 0460/1017] mt76: mt7921: fix ht mcs in mt7921_mac_add_txs_skb() Greg Kroah-Hartman
2022-04-05  7:22 ` [PATCH 5.16 0461/1017] mt76: mt7921s: fix mt7921s_mcu_[fw|drv]_pmctrl Greg Kroah-Hartman
2022-04-05  7:22 ` [PATCH 5.16 0462/1017] mt76: mt7921e: fix possible probe failure after reboot Greg Kroah-Hartman
2022-04-05  7:22 ` [PATCH 5.16 0463/1017] mt76: mt7603: check sta_rates pointer in mt7603_sta_rate_tbl_update Greg Kroah-Hartman
2022-04-05  7:22 ` [PATCH 5.16 0464/1017] mt76: mt7615: check sta_rates pointer in mt7615_sta_rate_tbl_update Greg Kroah-Hartman
2022-04-05  7:22 ` [PATCH 5.16 0465/1017] mt76: mt7915: fix possible memory leak in mt7915_mcu_add_sta Greg Kroah-Hartman
2022-04-05  7:22 ` [PATCH 5.16 0466/1017] mt76: mt7915: fix mcs_map in mt7915_mcu_set_sta_he_mcs() Greg Kroah-Hartman
2022-04-05  7:23 ` [PATCH 5.16 0467/1017] mt76: mt7915: fix the nss setting in bitrates Greg Kroah-Hartman
2022-04-05  7:23 ` [PATCH 5.16 0468/1017] ptp: unregister virtual clocks when unregistering physical clock Greg Kroah-Hartman
2022-04-05  7:23 ` [PATCH 5.16 0469/1017] net: dsa: mv88e6xxx: Enable port policy support on 6097 Greg Kroah-Hartman
2022-04-05  7:23 ` [PATCH 5.16 0470/1017] bpf: Fix a btf decl_tag bug when tagging a function Greg Kroah-Hartman
2022-04-05  7:23 ` [PATCH 5.16 0471/1017] mac80211: Remove a couple of obsolete TODO Greg Kroah-Hartman
2022-04-05  7:23 ` [PATCH 5.16 0472/1017] mac80211: limit bandwidth in HE capabilities Greg Kroah-Hartman
2022-04-05  7:23 ` [PATCH 5.16 0473/1017] scripts/dtc: Call pkg-config POSIXly correct Greg Kroah-Hartman
2022-04-05  7:23 ` [PATCH 5.16 0474/1017] livepatch: Fix build failure on 32 bits processors Greg Kroah-Hartman
2022-04-05  7:23 ` [PATCH 5.16 0475/1017] net: asix: add proper error handling of usb read errors Greg Kroah-Hartman
2022-04-05  7:23 ` [PATCH 5.16 0476/1017] i2c: bcm2835: Use platform_get_irq() to get the interrupt Greg Kroah-Hartman
2022-04-05  7:23 ` [PATCH 5.16 0477/1017] i2c: bcm2835: Fix the error handling in bcm2835_i2c_probe() Greg Kroah-Hartman
2022-04-05  7:23 ` [PATCH 5.16 0478/1017] mtd: mchp23k256: Add SPI ID table Greg Kroah-Hartman
2022-04-05  7:23 ` [PATCH 5.16 0479/1017] mtd: mchp48l640: " Greg Kroah-Hartman
2022-04-05  7:23 ` [PATCH 5.16 0480/1017] selftests/bpf: Extract syscall wrapper Greg Kroah-Hartman
2022-04-05  7:23 ` [PATCH 5.16 0481/1017] selftests/bpf: Use "__se_" prefix on architectures without " Greg Kroah-Hartman
2022-04-05  7:23 ` [PATCH 5.16 0482/1017] igc: avoid kernel warning when changing RX ring parameters Greg Kroah-Hartman
2022-04-05  7:23 ` [PATCH 5.16 0483/1017] igb: refactor XDP registration Greg Kroah-Hartman
2022-04-05  7:23 ` [PATCH 5.16 0484/1017] PCI: aardvark: Fix reading MSI interrupt number Greg Kroah-Hartman
2022-04-05  7:23 ` [PATCH 5.16 0485/1017] PCI: aardvark: Fix reading PCI_EXP_RTSTA_PME bit on emulated bridge Greg Kroah-Hartman
2022-04-05  7:23 ` [PATCH 5.16 0486/1017] RDMA/rxe: Check the last packet by RXE_END_MASK Greg Kroah-Hartman
2022-04-05  7:23 ` [PATCH 5.16 0487/1017] libbpf: Fix signedness bug in btf_dump_array_data() Greg Kroah-Hartman
2022-04-05  7:23 ` [PATCH 5.16 0488/1017] cxl/core: Fix cxl_probe_component_regs() error message Greg Kroah-Hartman
2022-04-05  7:23 ` [PATCH 5.16 0489/1017] tools/testing/cxl: Fix root port to host bridge assignment Greg Kroah-Hartman
2022-04-05  7:23 ` [PATCH 5.16 0490/1017] cxl/regs: Fix size of CXL Capability Header Register Greg Kroah-Hartman
2022-04-05  7:23 ` [PATCH 5.16 0491/1017] net:enetc: allocate CBD ring data memory using DMA coherent methods Greg Kroah-Hartman
2022-04-05  7:23 ` [PATCH 5.16 0492/1017] libbpf: Fix compilation warning due to mismatched printf format Greg Kroah-Hartman
2022-04-05  7:23 ` [PATCH 5.16 0493/1017] drm/bridge: dw-hdmi: use safe format when first in bridge chain Greg Kroah-Hartman
2022-04-05  7:23 ` [PATCH 5.16 0494/1017] libbpf: Use dynamically allocated buffer when receiving netlink messages Greg Kroah-Hartman
2022-04-05  7:23 ` [PATCH 5.16 0495/1017] power: supply: ab8500: Fix memory leak in ab8500_fg_sysfs_init Greg Kroah-Hartman
2022-04-05  7:23 ` [PATCH 5.16 0496/1017] HID: i2c-hid: fix GET/SET_REPORT for unnumbered reports Greg Kroah-Hartman
2022-04-05  7:23 ` [PATCH 5.16 0497/1017] iommu/ipmmu-vmsa: Check for error num after setting mask Greg Kroah-Hartman
2022-04-05  7:23 ` [PATCH 5.16 0498/1017] drm/bridge: anx7625: Fix overflow issue on reading EDID Greg Kroah-Hartman
2022-04-05  7:23 ` [PATCH 5.16 0499/1017] i2c: pasemi: Drop I2C classes from platform driver variant Greg Kroah-Hartman
2022-04-05  7:23 ` [PATCH 5.16 0500/1017] bpftool: Fix the error when lookup in no-btf maps Greg Kroah-Hartman
2022-04-05  7:23 ` [PATCH 5.16 0501/1017] drm/amd/pm: enable pm sysfs write for one VF mode Greg Kroah-Hartman
2022-04-05  7:23 ` [PATCH 5.16 0502/1017] drm/amd/display: Add affected crtcs to atomic state for dsc mst unplug Greg Kroah-Hartman
2022-04-05  7:23 ` [PATCH 5.16 0503/1017] libbpf: Fix memleak in libbpf_netlink_recv() Greg Kroah-Hartman
2022-04-05  7:23 ` [PATCH 5.16 0504/1017] IB/cma: Allow XRC INI QPs to set their local ACK timeout Greg Kroah-Hartman
2022-04-05  7:23 ` [PATCH 5.16 0505/1017] cxl/port: Hold port reference until decoder release Greg Kroah-Hartman
2022-04-05  7:23 ` [PATCH 5.16 0506/1017] dax: make sure inodes are flushed before destroy cache Greg Kroah-Hartman
2022-04-05  7:23 ` [PATCH 5.16 0507/1017] selftests: mptcp: add csum mib check for mptcp_connect Greg Kroah-Hartman
2022-04-05  7:23 ` [PATCH 5.16 0508/1017] iwlwifi: mvm: Dont call iwl_mvm_sta_from_mac80211() with NULL sta Greg Kroah-Hartman
2022-04-05  7:23 ` [PATCH 5.16 0509/1017] iwlwifi: mvm: dont iterate unadded vifs when handling FW SMPS req Greg Kroah-Hartman
2022-04-05  7:23 ` [PATCH 5.16 0510/1017] iwlwifi: mvm: align locking in D3 test debugfs Greg Kroah-Hartman
2022-04-05  7:23 ` [PATCH 5.16 0511/1017] iwlwifi: yoyo: remove DBGI_SRAM address reset writing Greg Kroah-Hartman
2022-04-05  7:23 ` [PATCH 5.16 0512/1017] iwlwifi: yoyo: Avoid using dram data if allocation failed Greg Kroah-Hartman
2022-04-05  7:23 ` [PATCH 5.16 0513/1017] iwlwifi: Fix -EIO error code that is never returned Greg Kroah-Hartman
2022-04-05  7:23 ` [PATCH 5.16 0514/1017] iwlwifi: mvm: Fix an error code in iwl_mvm_up() Greg Kroah-Hartman
2022-04-05  7:23 ` [PATCH 5.16 0515/1017] mtd: rawnand: pl353: Set the nand chip node as the flash node Greg Kroah-Hartman
2022-04-05  7:23 ` [PATCH 5.16 0516/1017] drm/msm/dp: populate connector of struct dp_panel Greg Kroah-Hartman
2022-04-05  7:23 ` [PATCH 5.16 0517/1017] drm/msm/dp: stop link training after link training 2 failed Greg Kroah-Hartman
2022-04-05  7:23 ` [PATCH 5.16 0518/1017] drm/msm/dp: always add fail-safe mode into connector mode list Greg Kroah-Hartman
2022-04-05  7:23 ` [PATCH 5.16 0519/1017] drm/msm/dsi: Use "ref" fw clock instead of global name for VCO parent Greg Kroah-Hartman
2022-04-05  7:23 ` [PATCH 5.16 0520/1017] drm/msm/dsi/phy: fix 7nm v4.0 settings for C-PHY mode Greg Kroah-Hartman
2022-04-05  7:23 ` [PATCH 5.16 0521/1017] drm/msm/dpu: add DSPP blocks teardown Greg Kroah-Hartman
2022-04-05  7:23 ` [PATCH 5.16 0522/1017] drm/msm/dpu: fix dp audio condition Greg Kroah-Hartman
2022-04-05  7:23 ` [PATCH 5.16 0523/1017] i40e: remove dead stores on XSK hotpath Greg Kroah-Hartman
2022-04-05  7:23 ` [PATCH 5.16 0524/1017] ath11k: avoid active pdev check for each msdu Greg Kroah-Hartman
2022-04-05  7:23 ` [PATCH 5.16 0525/1017] ath11k: Invalidate cached reo ring entry before accessing it Greg Kroah-Hartman
2022-04-05  7:23 ` [PATCH 5.16 0526/1017] dm crypt: fix get_key_size compiler warning if !CONFIG_KEYS Greg Kroah-Hartman
2022-04-05  7:24 ` [PATCH 5.16 0527/1017] vfio/pci: fix memory leak during D3hot to D0 transition Greg Kroah-Hartman
2022-04-05  7:24 ` [PATCH 5.16 0528/1017] vfio/pci: wake-up devices around reset functions Greg Kroah-Hartman
2022-04-05  7:24 ` [PATCH 5.16 0529/1017] scsi: fnic: Fix a tracing statement Greg Kroah-Hartman
2022-04-05  7:24 ` [PATCH 5.16 0530/1017] scsi: pm8001: Fix command initialization in pm80XX_send_read_log() Greg Kroah-Hartman
2022-04-05  7:24 ` [PATCH 5.16 0531/1017] scsi: pm8001: Fix command initialization in pm8001_chip_ssp_tm_req() Greg Kroah-Hartman
2022-04-05  7:24 ` [PATCH 5.16 0532/1017] scsi: pm8001: Fix payload initialization in pm80xx_set_thermal_config() Greg Kroah-Hartman
2022-04-05  7:24 ` [PATCH 5.16 0533/1017] scsi: pm8001: Fix le32 values handling in pm80xx_set_sas_protocol_timer_config() Greg Kroah-Hartman
2022-04-05  7:24 ` [PATCH 5.16 0534/1017] scsi: pm8001: Fix payload initialization in pm80xx_encrypt_update() Greg Kroah-Hartman
2022-04-05  7:24 ` [PATCH 5.16 0535/1017] scsi: pm8001: Fix le32 values handling in pm80xx_chip_ssp_io_req() Greg Kroah-Hartman
2022-04-05  7:24 ` [PATCH 5.16 0536/1017] scsi: pm8001: Fix le32 values handling in pm80xx_chip_sata_req() Greg Kroah-Hartman
2022-04-05  7:24 ` [PATCH 5.16 0537/1017] scsi: pm8001: Fix NCQ NON DATA command task initialization Greg Kroah-Hartman
2022-04-05  7:24 ` [PATCH 5.16 0538/1017] scsi: pm8001: Fix NCQ NON DATA command completion handling Greg Kroah-Hartman
2022-04-05  7:24 ` [PATCH 5.16 0539/1017] scsi: pm8001: Fix abort all task initialization Greg Kroah-Hartman
2022-04-05  7:24 ` [PATCH 5.16 0540/1017] mt76: mt7921s: fix missing fc type/sub-type for 802.11 pkts Greg Kroah-Hartman
2022-04-05  7:24 ` [PATCH 5.16 0541/1017] net: dsa: realtek-smi: fix kdoc warnings Greg Kroah-Hartman
2022-04-05  7:24 ` [PATCH 5.16 0542/1017] net: dsa: realtek-smi: move to subdirectory Greg Kroah-Hartman
2022-04-05  7:24 ` [PATCH 5.16 0543/1017] RDMA/mlx5: Fix the flow of a miss in the allocation of a cache ODP MR Greg Kroah-Hartman
2022-04-05  7:24 ` [PATCH 5.16 0544/1017] drm/amd/display: Remove vupdate_int_entry definition Greg Kroah-Hartman
2022-04-05  7:24 ` [PATCH 5.16 0545/1017] TOMOYO: fix __setup handlers return values Greg Kroah-Hartman
2022-04-05  7:24 ` [PATCH 5.16 0546/1017] power: supply: sbs-charger: Dont cancel work that is not initialized Greg Kroah-Hartman
2022-04-05  7:24 ` [PATCH 5.16 0547/1017] mt76: mt7915: fix the muru tlv issue Greg Kroah-Hartman
2022-04-05  7:24 ` [PATCH 5.16 0548/1017] ext2: correct max file size computing Greg Kroah-Hartman
2022-04-05  7:24 ` [PATCH 5.16 0549/1017] drm/tegra: Fix reference leak in tegra_dsi_ganged_probe Greg Kroah-Hartman
2022-04-05  7:24 ` [PATCH 5.16 0550/1017] power: supply: bq24190_charger: Fix bq24190_vbus_is_enabled() wrong false return Greg Kroah-Hartman
2022-04-05  7:24 ` [PATCH 5.16 0551/1017] scsi: hisi_sas: Change permission of parameter prot_mask Greg Kroah-Hartman
2022-04-05  7:24 ` [PATCH 5.16 0552/1017] drm/bridge: cdns-dsi: Make sure to to create proper aliases for dt Greg Kroah-Hartman
2022-04-05  7:24 ` [PATCH 5.16 0553/1017] bpf, arm64: Call build_prologue() first in first JIT pass Greg Kroah-Hartman
2022-04-05  7:24 ` [PATCH 5.16 0554/1017] bpf, arm64: Feed byte-offset into bpf line info Greg Kroah-Hartman
2022-04-05  7:24 ` [PATCH 5.16 0555/1017] xsk: Fix race at socket teardown Greg Kroah-Hartman
2022-04-05  7:24 ` [PATCH 5.16 0556/1017] RDMA/irdma: Fix netdev notifications for vlans Greg Kroah-Hartman
2022-04-05  7:24 ` [PATCH 5.16 0557/1017] RDMA/irdma: Fix Passthrough mode in VM Greg Kroah-Hartman
2022-04-05  7:24 ` [PATCH 5.16 0558/1017] RDMA/irdma: Remove incorrect masking of PD Greg Kroah-Hartman
2022-04-05  7:24 ` [PATCH 5.16 0559/1017] gpu: host1x: Fix a memory leak in host1x_remove() Greg Kroah-Hartman
2022-04-05  7:24 ` [PATCH 5.16 0560/1017] libbpf: Skip forward declaration when counting duplicated type names Greg Kroah-Hartman
2022-04-05  7:24 ` [PATCH 5.16 0561/1017] powerpc/mm/numa: skip NUMA_NO_NODE onlining in parse_numa_properties() Greg Kroah-Hartman
2022-04-05  7:24 ` [PATCH 5.16 0562/1017] powerpc/Makefile: Dont pass -mcpu=powerpc64 when building 32-bit Greg Kroah-Hartman
2022-04-05  7:24 ` [PATCH 5.16 0563/1017] KVM: x86: Fix emulation in writing cr8 Greg Kroah-Hartman
2022-04-05  7:24 ` [PATCH 5.16 0564/1017] KVM: x86/emulator: Defer not-present segment check in __load_segment_descriptor() Greg Kroah-Hartman
2022-04-05  7:24 ` [PATCH 5.16 0565/1017] KVM: SVM: Exit to userspace on ENOMEM/EFAULT GHCB errors Greg Kroah-Hartman
2022-04-05  7:24 ` [PATCH 5.16 0566/1017] hv_balloon: rate-limit "Unhandled message" warning Greg Kroah-Hartman
2022-04-05  7:24 ` [PATCH 5.16 0567/1017] KVM: arm64: Enable Cortex-A510 erratum 2077057 by default Greg Kroah-Hartman
2022-04-05  7:24 ` [PATCH 5.16 0568/1017] i2c: xiic: Make bus names unique Greg Kroah-Hartman
2022-04-05  7:24 ` [PATCH 5.16 0569/1017] net: phy: micrel: Fix concurrent register access Greg Kroah-Hartman
2022-04-05  7:24 ` [PATCH 5.16 0570/1017] power: supply: wm8350-power: Handle error for wm8350_register_irq Greg Kroah-Hartman
2022-04-05  7:24 ` [PATCH 5.16 0571/1017] power: supply: wm8350-power: Add missing free in free_charger_irq Greg Kroah-Hartman
2022-04-05  7:24 ` [PATCH 5.16 0572/1017] IB/hfi1: Allow larger MTU without AIP Greg Kroah-Hartman
2022-04-05  7:24 ` [PATCH 5.16 0573/1017] RDMA/core: Fix ib_qp_usecnt_dec() called when error Greg Kroah-Hartman
2022-04-05  7:24 ` [PATCH 5.16 0574/1017] PCI: Reduce warnings on possible RW1C corruption Greg Kroah-Hartman
2022-04-05  7:24 ` [PATCH 5.16 0575/1017] net: axienet: fix RX ring refill allocation failure handling Greg Kroah-Hartman
2022-04-05  7:24 ` [PATCH 5.16 0576/1017] drm/msm/a6xx: Fix missing ARRAY_SIZE() check Greg Kroah-Hartman
2022-04-05  7:24 ` [PATCH 5.16 0577/1017] mips: DEC: honor CONFIG_MIPS_FP_SUPPORT=n Greg Kroah-Hartman
2022-04-05  7:24 ` [PATCH 5.16 0578/1017] MIPS: Sanitise Cavium switch cases in TLB handler synthesizers Greg Kroah-Hartman
2022-04-05  7:24 ` [PATCH 5.16 0579/1017] powerpc/sysdev: fix incorrect use to determine if list is empty Greg Kroah-Hartman
2022-04-05  7:24 ` [PATCH 5.16 0580/1017] powerpc/64s: Dont use DSISR for SLB faults Greg Kroah-Hartman
2022-04-05  7:24 ` [PATCH 5.16 0581/1017] mfd: mc13xxx: Add check for mc13xxx_irq_request Greg Kroah-Hartman
2022-04-05  7:24 ` [PATCH 5.16 0582/1017] libbpf: Unmap rings when umem deleted Greg Kroah-Hartman
2022-04-05  7:24 ` [PATCH 5.16 0583/1017] selftests/bpf: Make test_lwt_ip_encap more stable and faster Greg Kroah-Hartman
2022-04-05  7:24 ` [PATCH 5.16 0584/1017] platform/x86: huawei-wmi: check the return value of device_create_file() Greg Kroah-Hartman
2022-04-05  7:24 ` [PATCH 5.16 0585/1017] scsi: mpt3sas: Fix incorrect 4GB boundary check Greg Kroah-Hartman
2022-04-05  7:24 ` [PATCH 5.16 0586/1017] powerpc: 8xx: fix a return value error in mpc8xx_pic_init Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.16 0587/1017] xtensa: add missing XCHAL_HAVE_WINDOWED check Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.16 0588/1017] iwlwifi: pcie: fix SW error MSI-X mapping Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.16 0589/1017] vxcan: enable local echo for sent CAN frames Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.16 0590/1017] ath10k: Fix error handling in ath10k_setup_msa_resources Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.16 0591/1017] mips: cdmm: Fix refcount leak in mips_cdmm_phys_base Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.16 0592/1017] MIPS: RB532: fix return value of __setup handler Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.16 0593/1017] MIPS: pgalloc: fix memory leak caused by pgd_free() Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.16 0594/1017] mtd: rawnand: atmel: fix refcount issue in atmel_nand_controller_init Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.16 0595/1017] power: ab8500_chargalg: Use CLOCK_MONOTONIC Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.16 0596/1017] RDMA/irdma: Prevent some integer underflows Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.16 0597/1017] Revert "RDMA/core: Fix ib_qp_usecnt_dec() called when error" Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.16 0598/1017] RDMA/mlx5: Fix memory leak in error flow for subscribe event routine Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.16 0599/1017] bpf, sockmap: Fix memleak in sk_psock_queue_msg Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.16 0600/1017] bpf, sockmap: Fix memleak in tcp_bpf_sendmsg while sk msg is full Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.16 0601/1017] bpf, sockmap: Fix more uncharged while msg has more_data Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.16 0602/1017] bpf, sockmap: Fix double uncharge the mem of sk_msg Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.16 0603/1017] samples/bpf, xdpsock: Fix race when running for fix duration of time Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.16 0604/1017] USB: storage: ums-realtek: fix error code in rts51x_read_mem() Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.16 0605/1017] RDMA/rxe: Change variable and function argument to proper type Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.16 0606/1017] RDMA/rxe: Fix ref error in rxe_av.c Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.16 0607/1017] drm/i915/display: Fix HPD short pulse handling for eDP Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.16 0608/1017] drm/i915/display: Do not re-enable PSR after it was marked as not reliable Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.16 0609/1017] netfilter: flowtable: Fix QinQ and pppoe support for inet table Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.16 0610/1017] mt76: mt7921: fix mt7921_queues_acq implementation Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.16 0611/1017] can: isotp: return -EADDRNOTAVAIL when reading from unbound socket Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.16 0612/1017] can: isotp: support MSG_TRUNC flag when reading from socket Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.16 0613/1017] bareudp: use ipv6_mod_enabled to check if IPv6 enabled Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.16 0614/1017] ibmvnic: fix race between xmit and reset Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.16 0615/1017] af_unix: Fix some data-races around unix_sk(sk)->oob_skb Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.16 0616/1017] selftests/bpf: Fix error reporting from sock_fields programs Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.16 0617/1017] Bluetooth: hci_uart: add missing NULL check in h5_enqueue Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.16 0618/1017] Bluetooth: call hci_le_conn_failed with hdev lock in hci_le_conn_failed Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.16 0619/1017] Bluetooth: btmtksdio: Fix kernel oops in btmtksdio_interrupt Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.16 0620/1017] RDMA/nldev: Prevent underflow in nldev_stat_set_counter_dynamic_doit() Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.16 0621/1017] ipv4: Fix route lookups when handling ICMP redirects and PMTU updates Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.16 0622/1017] mptcp: Fix crash due to tcp_tsorted_anchor was initialized before release skb Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.16 0623/1017] af_netlink: Fix shift out of bounds in group mask calculation Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.16 0624/1017] i2c: meson: Fix wrong speed use from probe Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.16 0625/1017] netfilter: conntrack: Add and use nf_ct_set_auto_assign_helper_warned() Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.16 0626/1017] i2c: mux: demux-pinctrl: do not deactivate a master that is not active Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.16 0627/1017] powerpc/pseries: Fix use after free in remove_phb_dynamic() Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.16 0628/1017] selftests/bpf/test_lirc_mode2.sh: Exit with proper code Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.16 0629/1017] bpftool: Fix print error when show bpf map Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.16 0630/1017] PCI: Avoid broken MSI on SB600 USB devices Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.16 0631/1017] net: bcmgenet: Use stronger register read/writes to assure ordering Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.16 0632/1017] tcp: ensure PMTU updates are processed during fastopen Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.16 0633/1017] openvswitch: always update flow key after nat Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.16 0634/1017] net: dsa: fix panic on shutdown if multi-chip tree failed to probe Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.16 0635/1017] tipc: fix the timer expires after interval 100ms Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.16 0636/1017] mfd: asic3: Add missing iounmap() on error asic3_mfd_probe Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.16 0637/1017] ice: fix scheduling while atomic on aux critical err interrupt Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.16 0638/1017] ice: dont allow to run ice_send_event_to_aux() in atomic ctx Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.16 0639/1017] drivers: ethernet: cpsw: fix panic when interrupt coaleceing is set via ethtool Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.16 0640/1017] kernel/resource: fix kfree() of bootmem memory again Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.16 0641/1017] clk: renesas: r9a07g044: Update multiplier and divider values for PLL2/3 Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.16 0642/1017] staging: r8188eu: convert DBG_88E_LEVEL call in hal/rtl8188e_hal_init.c Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.16 0643/1017] staging: r8188eu: release_firmware is not called if allocation fails Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.16 0644/1017] mxser: fix xmit_buf leak in activate when LSR == 0xff Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.16 0645/1017] fsi: scom: Fix error handling Greg Kroah-Hartman
2022-04-05  7:25 ` [PATCH 5.16 0646/1017] fsi: scom: Remove retries in indirect scoms Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.16 0647/1017] pwm: lpc18xx-sct: Initialize driver data and hardware before pwmchip_add() Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.16 0648/1017] pps: clients: gpio: Propagate return value from pps_gpio_probe Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.16 0649/1017] fsi: Aspeed: Fix a potential double free Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.16 0650/1017] misc: alcor_pci: Fix an error handling path Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.16 0651/1017] cpufreq: qcom-cpufreq-nvmem: fix reading of PVS Valid fuse Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.16 0652/1017] soundwire: intel: fix wrong register name in intel_shim_wake Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.16 0653/1017] clk: qcom: ipq8074: fix PCI-E clock oops Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.16 0654/1017] dmaengine: idxd: change bandwidth token to read buffers Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.16 0655/1017] dmaengine: idxd: restore traffic class defaults after wq reset Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.16 0656/1017] iio: mma8452: Fix probe failing when an i2c_device_id is used Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.16 0657/1017] staging: qlge: add unregister_netdev in qlge_probe Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.16 0658/1017] serial: 8250_aspeed_vuart: add PORT_ASPEED_VUART port type Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.16 0659/1017] staging:iio:adc:ad7280a: Fix handing of device address bit reversing Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.16 0660/1017] pinctrl: renesas: r8a77470: Reduce size for narrow VIN1 channel Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.16 0661/1017] pinctrl: renesas: checker: Fix miscalculation of number of states Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.16 0662/1017] clk: qcom: ipq8074: Use floor ops for SDCC1 clock Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.16 0663/1017] phy: dphy: Correct lpx parameter and its derivatives(ta_{get,go,sure}) Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.16 0664/1017] phy: phy-brcm-usb: fixup BCM4908 support Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.16 0665/1017] serial: 8250_mid: Balance reference count for PCI DMA device Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.16 0666/1017] serial: 8250_lpss: " Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.16 0667/1017] NFS: Use of mapping_set_error() results in spurious errors Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.16 0668/1017] serial: 8250: Fix race condition in RTS-after-send handling Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.16 0669/1017] iio: adc: Add check for devm_request_threaded_irq Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.16 0670/1017] habanalabs: Add check for pci_enable_device Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.16 0671/1017] NFS: Return valid errors from nfs2/3_decode_dirent() Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.16 0672/1017] staging: r8188eu: fix endless loop in recv_func Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.16 0673/1017] dma-debug: fix return value of __setup handlers Greg Kroah-Hartman
2022-04-05  7:26   ` Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.16 0674/1017] clk: imx7d: Remove audio_mclk_root_clk Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.16 0675/1017] clk: imx: off by one in imx_lpcg_parse_clks_from_dt() Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.16 0676/1017] clk: at91: sama7g5: fix parents of PDMCs GCLK Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.16 0677/1017] clk: qcom: clk-rcg2: Update logic to calculate D value for RCG Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.16 0678/1017] clk: qcom: clk-rcg2: Update the frac table for pixel clock Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.16 0679/1017] dmaengine: hisi_dma: fix MSI allocate fail when reload hisi_dma Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.16 0680/1017] remoteproc: qcom: Fix missing of_node_put in adsp_alloc_memory_region Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.16 0681/1017] remoteproc: qcom_wcnss: Add missing of_node_put() in wcnss_alloc_memory_region Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.16 0682/1017] remoteproc: qcom_q6v5_mss: Fix some leaks in q6v5_alloc_memory_region Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.16 0683/1017] nvdimm/region: Fix default alignment for small regions Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.16 0684/1017] clk: actions: Terminate clk_div_table with sentinel element Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.16 0685/1017] clk: loongson1: " Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.16 0686/1017] clk: hisilicon: " Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.16 0687/1017] clk: clps711x: " Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.16 0688/1017] clk: Fix clk_hw_get_clk() when dev is NULL Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.16 0689/1017] clk: tegra: tegra124-emc: Fix missing put_device() call in emc_ensure_emc_driver Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.16 0690/1017] mailbox: imx: fix crash in resume on i.mx8ulp Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.16 0691/1017] NFS: remove unneeded check in decode_devicenotify_args() Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.16 0692/1017] staging: mt7621-dts: fix LEDs and pinctrl on GB-PC1 devicetree Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.16 0693/1017] staging: mt7621-dts: fix formatting Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.16 0694/1017] staging: mt7621-dts: fix pinctrl properties for ethernet Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.16 0695/1017] staging: mt7621-dts: fix GB-PC2 devicetree Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.16 0696/1017] pinctrl: mediatek: Fix missing of_node_put() in mtk_pctrl_init Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.16 0697/1017] pinctrl: mediatek: paris: Fix PIN_CONFIG_BIAS_* readback Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.16 0698/1017] pinctrl: mediatek: paris: Fix "argument" argument type for mtk_pinconf_get() Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.16 0699/1017] pinctrl: mediatek: paris: Fix pingroup pin config state readback Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.16 0700/1017] pinctrl: mediatek: paris: Skip custom extra pin config dump for virtual GPIOs Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.16 0701/1017] pinctrl: microchip-sgpio: lock RMW access Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.16 0702/1017] pinctrl: nomadik: Add missing of_node_put() in nmk_pinctrl_probe Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.16 0703/1017] pinctrl/rockchip: Add missing of_node_put() in rockchip_pinctrl_probe Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.16 0704/1017] tty: hvc: fix return value of __setup handler Greg Kroah-Hartman
2022-04-05  7:26   ` Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.16 0705/1017] kgdboc: " Greg Kroah-Hartman
2022-04-05  7:26 ` [PATCH 5.16 0706/1017] serial: 8250: fix XOFF/XON sending when DMA is used Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.16 0707/1017] virt: acrn: obtain pa from VMA with PFNMAP flag Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.16 0708/1017] virt: acrn: fix a memory leak in acrn_dev_ioctl() Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.16 0709/1017] kgdbts: fix return value of __setup handler Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.16 0710/1017] firmware: google: Properly state IOMEM dependency Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.16 0711/1017] driver core: dd: fix return value of __setup handler Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.16 0712/1017] jfs: fix divide error in dbNextAG Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.16 0713/1017] SUNRPC/call_alloc: async tasks mustnt block waiting for memory Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.16 0714/1017] SUNRPC: improve swap handling: scheduling and PF_MEMALLOC Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.16 0715/1017] SUNRPC: Dont call connect() more than once on a TCP socket Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.16 0716/1017] netfilter: egress: Report interface as outgoing Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.16 0717/1017] netfilter: nf_conntrack_tcp: preserve liberal flag in tcp options Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.16 0718/1017] SUNRPC dont resend a task on an offlined transport Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.16 0719/1017] NFSv4.1: dont retry BIND_CONN_TO_SESSION on session error Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.16 0720/1017] kdb: Fix the putarea helper function Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.16 0721/1017] perf stat: Fix forked applications enablement of counters Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.16 0722/1017] clk: qcom: gcc-msm8994: Fix gpll4 width Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.16 0723/1017] vsock/virtio: initialize vdev->priv before using VQs Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.16 0724/1017] vsock/virtio: read the negotiated features " Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.16 0725/1017] vsock/virtio: enable VQs early on probe Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.16 0726/1017] clk: Initialize orphan req_rate Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.16 0727/1017] xen: fix is_xen_pmu() Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.16 0728/1017] net: enetc: report software timestamping via SO_TIMESTAMPING Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.16 0729/1017] net: hns3: fix bug when PF set the duplicate MAC address for VFs Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.16 0730/1017] net: hns3: fix port base vlan add fail when concurrent with reset Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.16 0731/1017] net: hns3: add vlan list lock to protect vlan list Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.16 0732/1017] net: hns3: format the output of the MAC address Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.16 0733/1017] net: hns3: refine the process when PF set VF VLAN Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.16 0734/1017] net: phy: broadcom: Fix brcm_fet_config_init() Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.16 0735/1017] selftests: test_vxlan_under_vrf: Fix broken test case Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.16 0736/1017] NFS: Dont loop forever in nfs_do_recoalesce() Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.16 0737/1017] net: hns3: clean residual vf config after disable sriov Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.16 0738/1017] net: sparx5: depends on PTP_1588_CLOCK_OPTIONAL Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.16 0739/1017] qlcnic: dcb: default to returning -EOPNOTSUPP Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.16 0740/1017] net/x25: Fix null-ptr-deref caused by x25_disconnect Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.16 0741/1017] net: sparx5: switchdev: fix possible NULL pointer dereference Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.16 0742/1017] octeontx2-af: initialize action variable Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.16 0743/1017] selftests: tls: skip cmsg_to_pipe tests with TLS=n Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.16 0744/1017] net: prefer nf_ct_put instead of nf_conntrack_put Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.16 0745/1017] net/sched: act_ct: fix ref leak when switching zones Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.16 0746/1017] NFSv4/pNFS: Fix another issue with a list iterator pointing to the head Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.16 0747/1017] net: dsa: bcm_sf2_cfp: fix an incorrect NULL check on list iterator Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.16 0748/1017] fs: fd tables have to be multiples of BITS_PER_LONG Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.16 0749/1017] lib/test: use after free in register_test_dev_kmod() Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.16 0750/1017] fs: fix fd table size alignment properly Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.16 0751/1017] LSM: general protection fault in legacy_parse_param Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.16 0752/1017] regulator: rpi-panel: Handle I2C errors/timing to the Atmel Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.16 0753/1017] crypto: hisilicon/qm - cleanup warning in qm_vf_read_qos Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.16 0754/1017] gcc-plugins/stackleak: Exactly match strings instead of prefixes Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.16 0755/1017] rcu: Kill rnp->ofl_seq and use only rcu_state.ofl_lock for exclusion Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.16 0756/1017] pinctrl: npcm: Fix broken references to chip->parent_device Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.16 0757/1017] rcu: Mark writes to the rcu_segcblist structures ->flags field Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.16 0758/1017] block: throttle split bio in case of iops limit Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.16 0759/1017] memstick/mspro_block: fix handling of read-only devices Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.16 0760/1017] block/bfq_wf2q: correct weight to ioprio Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.16 0761/1017] crypto: xts - Add softdep on ecb Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.16 0762/1017] crypto: hisilicon/sec - not need to enable sm4 extra mode at HW V3 Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.16 0763/1017] block, bfq: dont move oom_bfqq Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.16 0764/1017] selinux: use correct type for context length Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.16 0765/1017] powercap/dtpm_cpu: Reset per_cpu variable in the release function Greg Kroah-Hartman
2022-04-05  7:27 ` [PATCH 5.16 0766/1017] arm64: module: remove (NOLOAD) from linker script Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.16 0767/1017] selinux: allow FIOCLEX and FIONCLEX with policy capability Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.16 0768/1017] loop: use sysfs_emit() in the sysfs xxx show() Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.16 0769/1017] Fix incorrect type in assignment of ipv6 port for audit Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.16 0770/1017] irqchip/qcom-pdc: Fix broken locking Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.16 0771/1017] irqchip/nvic: Release nvic_base upon failure Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.16 0772/1017] fs/binfmt_elf: Fix AT_PHDR for unusual ELF files Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.16 0773/1017] bfq: fix use-after-free in bfq_dispatch_request Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.16 0774/1017] ACPICA: Avoid walking the ACPI Namespace if it is not there Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.16 0775/1017] lib/raid6/test/Makefile: Use $(pound) instead of \# for Make 4.3 Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.16 0776/1017] Revert "Revert "block, bfq: honor already-setup queue merges"" Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.16 0777/1017] ACPI/APEI: Limit printable size of BERT table data Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.16 0778/1017] PM: core: keep irq flags in device_pm_check_callbacks() Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.16 0779/1017] parisc: Fix non-access data TLB cache flush faults Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.16 0780/1017] parisc: Fix handling off probe non-access faults Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.16 0781/1017] nvme-tcp: lockdep: annotate in-kernel sockets Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.16 0782/1017] spi: tegra20: Use of_device_get_match_data() Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.16 0783/1017] spi: fsi: Implement a timeout for polling status Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.16 0784/1017] atomics: Fix atomic64_{read_acquire,set_release} fallbacks Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.16 0785/1017] locking/lockdep: Iterate lock_classes directly when reading lockdep files Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.16 0786/1017] ext4: correct cluster len and clusters changed accounting in ext4_mb_mark_bb Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.16 0787/1017] ext4: fix ext4_mb_mark_bb() with flex_bg with fast_commit Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.16 0788/1017] sched/tracing: Dont re-read p->state when emitting sched_switch event Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.16 0789/1017] sched/tracing: Report TASK_RTLOCK_WAIT tasks as TASK_UNINTERRUPTIBLE Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.16 0790/1017] ext4: dont BUG if someone dirty pages without asking ext4 first Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.16 0791/1017] f2fs: fix to do sanity check on curseg->alloc_type Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.16 0792/1017] NFSD: Fix nfsd_breaker_owns_lease() return values Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.16 0793/1017] f2fs: dont get FREEZE lock in f2fs_evict_inode in frozen fs Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.16 0794/1017] btrfs: harden identification of a stale device Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.16 0795/1017] btrfs: make search_csum_tree return 0 if we get -EFBIG Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.16 0796/1017] btrfs: handle csum lookup errors properly on reads Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.16 0797/1017] btrfs: do not double complete bio on errors during compressed reads Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.16 0798/1017] btrfs: do not clean up repair bio if submit fails Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.16 0799/1017] f2fs: use spin_lock to avoid hang Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.16 0800/1017] f2fs: compress: fix to print raw data size in error path of lz4 decompression Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.16 0801/1017] Adjust cifssb maximum read size Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.16 0802/1017] ntfs: add sanity check on allocation size Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.16 0803/1017] media: staging: media: zoran: move videodev alloc Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.16 0804/1017] media: staging: media: zoran: calculate the right buffer number for zoran_reap_stat_com Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.16 0805/1017] media: staging: media: zoran: fix various V4L2 compliance errors Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.16 0806/1017] media: atmel: atmel-isc-base: report frame sizes as full supported range Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.16 0807/1017] media: ir_toy: free before error exiting Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.16 0808/1017] ASoC: sh: rz-ssi: Make the data structures available before registering the handlers Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.16 0809/1017] ASoC: cs42l42: Report full jack status when plug is detected Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.16 0810/1017] ASoC: SOF: Intel: match sdw version on link_slaves_found Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.16 0811/1017] media: imx-jpeg: Prevent decoding NV12M jpegs into single-planar buffers Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.16 0812/1017] ASoC: SOF: Intel: hda: Remove link assignment limitation Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.16 0813/1017] media: iommu/mediatek-v1: Free the existed fwspec if the master dev already has Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.16 0814/1017] media: iommu/mediatek: Return ENODEV if the device is NULL Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.16 0815/1017] media: iommu/mediatek: Add device_link between the consumer and the larb devices Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.16 0816/1017] video: fbdev: nvidiafb: Use strscpy() to prevent buffer overflow Greg Kroah-Hartman
2022-04-05  7:28   ` Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.16 0817/1017] video: fbdev: w100fb: Reset global state Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.16 0818/1017] video: fbdev: cirrusfb: check pixclock to avoid divide by zero Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.16 0819/1017] video: fbdev: omapfb: acx565akm: replace snprintf with sysfs_emit Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.16 0820/1017] ARM: dts: qcom: fix gic_irq_domain_translate warnings for msm8960 Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.16 0821/1017] ARM: dts: bcm2837: Add the missing L1/L2 cache information Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.16 0822/1017] ASoC: madera: Add dependencies on MFD Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.16 0823/1017] media: atomisp_gmin_platform: Add DMI quirk to not turn AXP ELDO2 regulator off on some boards Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.16 0824/1017] media: atomisp: fix dummy_ptr check to avoid duplicate active_bo Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.16 0825/1017] ARM: ftrace: avoid redundant loads or clobbering IP Greg Kroah-Hartman
2022-04-05  7:28 ` [PATCH 5.16 0826/1017] ALSA: hda: Fix driver index handling at re-binding Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.16 0827/1017] ARM: dts: imx7: Use audio_mclk_post_div instead audio_mclk_root_clk Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.16 0828/1017] arm64: defconfig: build imx-sdma as a module Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.16 0829/1017] video: fbdev: omapfb: panel-dsi-cm: Use sysfs_emit() instead of snprintf() Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.16 0830/1017] video: fbdev: omapfb: panel-tpo-td043mtea1: " Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.16 0831/1017] video: fbdev: udlfb: replace snprintf in show functions with sysfs_emit Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.16 0832/1017] ARM: dts: bcm2711: Add the missing L1/L2 cache information Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.16 0833/1017] ASoC: soc-core: skip zero num_dai component in searching dai name Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.16 0834/1017] ASoC: Intel: sof_es8336: add quirk for Huawei D15 2021 Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.16 0835/1017] media: imx-jpeg: fix a bug of accessing array out of bounds Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.16 0836/1017] media: cx88-mpeg: clear interrupt status register before streaming video Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.16 0837/1017] ASoC: rt5682s: Fix the wrong jack type detected Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.16 0838/1017] uaccess: fix type mismatch warnings from access_ok() Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.16 0839/1017] lib/test_lockup: fix kernel pointer check for separate address spaces Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.16 0840/1017] ARM: tegra: tamonten: Fix I2C3 pad setting Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.16 0841/1017] ARM: mmp: Fix failure to remove sram device Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.16 0842/1017] ASoC: amd: vg: fix for pm resume callback sequence Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.16 0843/1017] ASoC: amd: vangogh: fix uninitialized symbol warning in machine driver Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.16 0844/1017] video: fbdev: sm712fb: Fix crash in smtcfb_write() Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.16 0845/1017] media: i2c: ov5648: Fix lockdep error Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.16 0846/1017] media: Revert "media: em28xx: add missing em28xx_close_extension" Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.16 0847/1017] media: hdpvr: initialize dev->worker at hdpvr_register_videodev Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.16 0848/1017] ASoC: Intel: sof_sdw: fix quirks for 2022 HP Spectre x360 13" Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.16 0849/1017] ASoC: Intel: soc-acpi: add more ACPI HIDs for ES83x6 devices Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.16 0850/1017] ASoC: Intel: Revert "ASoC: Intel: sof_es8336: add quirk for Huawei D15 2021" Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.16 0851/1017] ASoC: Intel: sof_es8336: use NHLT information to set dmic and SSP Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.16 0852/1017] ASoC: Intel: sof_es8336: log all quirks Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.16 0853/1017] tracing: Have TRACE_DEFINE_ENUM affect trace event types as well Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.16 0854/1017] mmc: host: Return an error when ->enable_sdio_irq() ops is missing Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.16 0855/1017] media: atomisp: fix bad usage at error handling logic Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.16 0856/1017] ALSA: hda/realtek: Add alc256-samsung-headphone fixup Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.16 0857/1017] KVM: x86: Reinitialize context if host userspace toggles EFER.LME Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.16 0858/1017] KVM: x86/mmu: Use common TDP MMU zap helper for MMU notifier unmap hook Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.16 0859/1017] KVM: x86/mmu: Move "invalid" check out of kvm_tdp_mmu_get_root() Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.16 0860/1017] KVM: x86/mmu: Zap _all_ roots when unmapping gfn range in TDP MMU Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.16 0861/1017] KVM: x86/mmu: Check for present SPTE when clearing dirty bit " Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.16 0862/1017] KVM: x86: hyper-v: Drop redundant ex parameter from kvm_hv_send_ipi() Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.16 0863/1017] KVM: x86: hyper-v: Drop redundant ex parameter from kvm_hv_flush_tlb() Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.16 0864/1017] KVM: x86: hyper-v: Fix the maximum number of sparse banks for XMM fast TLB flush hypercalls Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.16 0865/1017] KVM: x86: hyper-v: HVCALL_SEND_IPI_EX is an XMM fast hypercall Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.16 0866/1017] powerpc/kasan: Fix early region not updated correctly Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.16 0867/1017] powerpc/lib/sstep: Fix sthcx instruction Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.16 0868/1017] powerpc/lib/sstep: Fix build errors with newer binutils Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.16 0869/1017] powerpc: Add set_memory_{p/np}() and remove set_memory_attr() Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.16 0870/1017] powerpc: Fix build errors with newer binutils Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.16 0871/1017] drm/dp: Fix off-by-one in register cache size Greg Kroah-Hartman
2022-04-05  7:29   ` Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.16 0872/1017] drm/i915: Treat SAGV block time 0 as SAGV disabled Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.16 0873/1017] drm/i915: Fix PSF GV point mask when SAGV is not possible Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.16 0874/1017] drm/i915: Reject unsupported TMDS rates on ICL+ Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.16 0875/1017] scsi: qla2xxx: Refactor asynchronous command initialization Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.16 0876/1017] scsi: qla2xxx: Implement ref count for SRB Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.16 0877/1017] scsi: qla2xxx: Fix stuck session in gpdb Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.16 0878/1017] scsi: qla2xxx: Fix warning message due to adisc being flushed Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.16 0879/1017] scsi: qla2xxx: Fix scheduling while atomic Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.16 0880/1017] scsi: qla2xxx: Fix premature hw access after PCI error Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.16 0881/1017] scsi: qla2xxx: Fix wrong FDMI data for 64G adapter Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.16 0882/1017] scsi: qla2xxx: Fix warning for missing error code Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.16 0883/1017] scsi: qla2xxx: Fix device reconnect in loop topology Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.16 0884/1017] scsi: qla2xxx: edif: Fix clang warning Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.16 0885/1017] scsi: qla2xxx: Fix T10 PI tag escape and IP guard options for 28XX adapters Greg Kroah-Hartman
2022-04-05  7:29 ` [PATCH 5.16 0886/1017] scsi: qla2xxx: Add devids and conditionals for 28xx Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.16 0887/1017] scsi: qla2xxx: Check for firmware dump already collected Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.16 0888/1017] scsi: qla2xxx: Suppress a kernel complaint in qla_create_qpair() Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.16 0889/1017] scsi: qla2xxx: Fix disk failure to rediscover Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.16 0890/1017] scsi: qla2xxx: Fix incorrect reporting of task management failure Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.16 0891/1017] scsi: qla2xxx: Fix hang due to session stuck Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.16 0892/1017] scsi: qla2xxx: Fix laggy FC remote port session recovery Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.16 0893/1017] scsi: qla2xxx: Fix missed DMA unmap for NVMe ls requests Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.16 0894/1017] scsi: qla2xxx: Fix crash during module load unload test Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.16 0895/1017] scsi: qla2xxx: Fix N2N inconsistent PLOGI Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.16 0896/1017] scsi: qla2xxx: Fix stuck session of PRLI reject Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.16 0897/1017] scsi: qla2xxx: Reduce false trigger to login Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.16 0898/1017] scsi: qla2xxx: Use correct feature type field during RFF_ID processing Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.16 0899/1017] platform: chrome: Split trace include file Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.16 0900/1017] MIPS: crypto: Fix CRC32 code Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.16 0901/1017] KVM: x86: Check lapic_in_kernel() before attempting to set a SynIC irq Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.16 0902/1017] KVM: x86: Avoid theoretical NULL pointer dereference in kvm_irq_delivery_to_apic_fast() Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.16 0903/1017] KVM: x86: Forbid VMM to set SYNIC/STIMER MSRs when SynIC wasnt activated Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.16 0904/1017] KVM: Prevent module exit until all VMs are freed Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.16 0905/1017] KVM: x86: fix sending PV IPI Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.16 0906/1017] KVM: SVM: fix panic on out-of-bounds guest IRQ Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.16 0907/1017] ubifs: rename_whiteout: Fix double free for whiteout_ui->data Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.16 0908/1017] ubifs: Fix deadlock in concurrent rename whiteout and inode writeback Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.16 0909/1017] ubifs: Add missing iput if do_tmpfile() failed in rename whiteout Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.16 0910/1017] ubifs: Rename whiteout atomically Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.16 0911/1017] ubifs: Fix ui->dirty race between do_tmpfile() and writeback work Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.16 0912/1017] ubifs: Rectify space amount budget for mkdir/tmpfile operations Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.16 0913/1017] ubifs: setflags: Make dirtied_ino_d 8 bytes aligned Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.16 0914/1017] ubifs: Fix read out-of-bounds in ubifs_wbuf_write_nolock() Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.16 0915/1017] ubifs: Fix to add refcount once page is set private Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.16 0916/1017] ubifs: rename_whiteout: correct old_dir size computing Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.16 0917/1017] nvme: allow duplicate NSIDs for private namespaces Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.16 0918/1017] nvme: fix the read-only state for zoned namespaces with unsupposed features Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.16 0919/1017] wireguard: queueing: use CFI-safe ptr_ring cleanup function Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.16 0920/1017] wireguard: socket: free skb in send6 when ipv6 is disabled Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.16 0921/1017] wireguard: socket: ignore v6 endpoints " Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.16 0922/1017] XArray: Fix xas_create_range() when multi-order entry present Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.16 0923/1017] can: mcba_usb: mcba_usb_start_xmit(): fix double dev_kfree_skb in error path Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.16 0924/1017] can: mcba_usb: properly check endpoint type Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.16 0925/1017] can: mcp251xfd: mcp251xfd_register_get_dev_id(): fix return of error value Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.16 0926/1017] XArray: Update the LRU list in xas_split() Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.16 0927/1017] modpost: restore the warning message for missing symbol versions Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.16 0928/1017] rtc: check if __rtc_read_time was successful Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.16 0929/1017] loop: fix ioctl calls using compat_loop_info Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.16 0930/1017] gfs2: gfs2_setattr_size error path fix Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.16 0931/1017] gfs2: Fix gfs2_file_buffered_write endless loop workaround Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.16 0932/1017] gfs2: Make sure FITRIM minlen is rounded up to fs block size Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.16 0933/1017] net: hns3: fix the concurrency between functions reading debugfs Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.16 0934/1017] net: hns3: fix software vlan talbe of vlan 0 inconsistent with hardware Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.16 0935/1017] rxrpc: fix some null-ptr-deref bugs in server_key.c Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.16 0936/1017] rxrpc: Fix call timer start racing with call destruction Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.16 0937/1017] mailbox: imx: fix wakeup failure from freeze mode Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.16 0938/1017] crypto: arm/aes-neonbs-cbc - Select generic cbc and aes Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.16 0939/1017] watch_queue: Free the page array when watch_queue is dismantled Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.16 0940/1017] pinctrl: pinconf-generic: Print arguments for bias-pull-* Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.16 0941/1017] watchdog: rti-wdt: Add missing pm_runtime_disable() in probe function Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.16 0942/1017] net: sparx5: uses, depends on BRIDGE or !BRIDGE Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.16 0943/1017] pinctrl: nuvoton: npcm7xx: Rename DS() macro to DSTR() Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.16 0944/1017] pinctrl: nuvoton: npcm7xx: Use %zu printk format for ARRAY_SIZE() Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.16 0945/1017] ASoC: rockchip: i2s_tdm: Fixup config for SND_SOC_DAIFMT_DSP_A/B Greg Kroah-Hartman
2022-04-05  7:30 ` [PATCH 5.16 0946/1017] ASoC: mediatek: mt6358: add missing EXPORT_SYMBOLs Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.16 0947/1017] ubi: Fix race condition between ctrl_cdev_ioctl and ubi_cdev_ioctl Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.16 0948/1017] ARM: iop32x: offset IRQ numbers by 1 Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.16 0949/1017] block: Fix the maximum minor value is blk_alloc_ext_minor() Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.16 0950/1017] Revert "virtio-pci: harden INTX interrupts" Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.16 0951/1017] Revert "virtio_pci: harden MSI-X interrupts" Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.16 0952/1017] virtio: use virtio_device_ready() in virtio_device_restore() Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.16 0953/1017] io_uring: fix memory leak of uid in files registration Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.16 0954/1017] riscv module: remove (NOLOAD) Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.16 0955/1017] ACPI: CPPC: Avoid out of bounds access when parsing _CPC data Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.16 0956/1017] vhost: handle error while adding split ranges to iotlb Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.16 0957/1017] spi: Fix Tegra QSPI example Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.16 0958/1017] platform/chrome: cros_ec_typec: Check for EC device Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.16 0959/1017] can: isotp: restore accidentally removed MSG_PEEK feature Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.16 0960/1017] proc: bootconfig: Add null pointer check Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.16 0961/1017] drm/connector: Fix typo in documentation Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.16 0962/1017] scsi: qla2xxx: Add qla2x00_async_done() for async routines Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.16 0963/1017] staging: mt7621-dts: fix pinctrl-0 items to be size-1 items on ethernet Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.16 0964/1017] docs: fix make htmldocs warning in SCTP.rst Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.16 0965/1017] arm64: mm: Drop const from conditional arm64_dma_phys_limit definition Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.16 0966/1017] ASoC: soc-compress: Change the check for codec_dai Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.16 0967/1017] Reinstate some of "swiotlb: rework "fix info leak with DMA_FROM_DEVICE"" Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.16 0968/1017] tracing: Have type enum modifications copy the strings Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.16 0969/1017] net: add skb_set_end_offset() helper Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.16 0970/1017] net: preserve skb_end_offset() in skb_unclone_keeptruesize() Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.16 0971/1017] mm/mmap: return 1 from stack_guard_gap __setup() handler Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.16 0972/1017] ARM: 9187/1: JIVE: fix return value of __setup handler Greg Kroah-Hartman
2022-04-05  7:31   ` Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.16 0973/1017] mm/memcontrol: return 1 from cgroup.memory __setup() handler Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.16 0974/1017] mm/usercopy: return 1 from hardened_usercopy " Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.16 0975/1017] af_unix: Support POLLPRI for OOB Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.16 0976/1017] libbpf: Define BTF_KIND_* constants in btf.h to avoid compilation errors Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.16 0977/1017] bpf: Adjust BPF stack helper functions to accommodate skip > 0 Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.16 0978/1017] bpf: Fix comment for helper bpf_current_task_under_cgroup() Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.16 0979/1017] nbd: fix possible overflow on first_minor in nbd_dev_add() Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.16 0980/1017] mmc: rtsx: Use pm_runtime_{get,put}() to handle runtime PM Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.16 0981/1017] dt-bindings: mtd: nand-controller: Fix the reg property description Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.16 0982/1017] dt-bindings: mtd: nand-controller: Fix a comment in the examples Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.16 0983/1017] dt-bindings: spi: mxic: The interrupt property is not mandatory Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.16 0984/1017] media: dt-binding: media: hynix,hi846: use $defs/port-base port description Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.16 0985/1017] media: dt-bindings: media: hynix,hi846: add link-frequencies description Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.16 0986/1017] dt-bindings: memory: mtk-smi: Rename clock to clocks Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.16 0987/1017] dt-bindings: memory: mtk-smi: No need mediatek,larb-id for mt8167 Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.16 0988/1017] dt-bindings: memory: mtk-smi: Correct minItems to 2 for the gals clocks Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.16 0989/1017] dt-bindings: pinctrl: pinctrl-microchip-sgpio: Fix example Greg Kroah-Hartman
2022-04-05  7:31 ` [PATCH 5.16 0990/1017] ubi: fastmap: Return error code if memory allocation fails in add_aeb() Greg Kroah-Hartman

Reply instructions:

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

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

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

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

  git send-email \
    --in-reply-to=20220405070402.310055433@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=chao@kernel.org \
    --cc=jaegeuk@kernel.org \
    --cc=jing.xia@unisoc.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=sashal@kernel.org \
    --cc=stable@vger.kernel.org \
    --cc=zhiguo.niu@unisoc.com \
    /path/to/YOUR_REPLY

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

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