stable.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
To: linux-kernel@vger.kernel.org
Cc: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	stable@vger.kernel.org,
	Mastan Katragadda <mastanx.katragadda@intel.com>,
	Adam Zabrocki <adamza@microsoft.com>,
	Jackson Cody <cody.jackson@intel.com>,
	Chris Wilson <chris@chris-wilson.co.uk>,
	Jon Bloomfield <jon.bloomfield@intel.com>,
	Sudeep Dutt <sudeep.dutt@intel.com>,
	Matthew Auld <matthew.auld@intel.com>,
	Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Subject: [PATCH 5.17 0193/1126] drm/i915/gem: add missing boundary check in vm_access
Date: Tue,  5 Apr 2022 09:15:40 +0200	[thread overview]
Message-ID: <20220405070413.271822846@linuxfoundation.org> (raw)
In-Reply-To: <20220405070407.513532867@linuxfoundation.org>

From: Mastan Katragadda <mastanx.katragadda@intel.com>

commit 3886a86e7e6cc6ce2ce93c440fecd8f42aed0ce7 upstream.

A missing bounds check in vm_access() can lead to an out-of-bounds read
or write in the adjacent memory area, since the len attribute is not
validated before the memcpy later in the function, potentially hitting:

[  183.637831] BUG: unable to handle page fault for address: ffffc90000c86000
[  183.637934] #PF: supervisor read access in kernel mode
[  183.637997] #PF: error_code(0x0000) - not-present page
[  183.638059] PGD 100000067 P4D 100000067 PUD 100258067 PMD 106341067 PTE 0
[  183.638144] Oops: 0000 [#2] PREEMPT SMP NOPTI
[  183.638201] CPU: 3 PID: 1790 Comm: poc Tainted: G      D           5.17.0-rc6-ci-drm-11296+ #1
[  183.638298] Hardware name: Intel Corporation CoffeeLake Client Platform/CoffeeLake H DDR4 RVP, BIOS CNLSFWR1.R00.X208.B00.1905301319 05/30/2019
[  183.638430] RIP: 0010:memcpy_erms+0x6/0x10
[  183.640213] RSP: 0018:ffffc90001763d48 EFLAGS: 00010246
[  183.641117] RAX: ffff888109c14000 RBX: ffff888111bece40 RCX: 0000000000000ffc
[  183.642029] RDX: 0000000000001000 RSI: ffffc90000c86000 RDI: ffff888109c14004
[  183.642946] RBP: 0000000000000ffc R08: 800000000000016b R09: 0000000000000000
[  183.643848] R10: ffffc90000c85000 R11: 0000000000000048 R12: 0000000000001000
[  183.644742] R13: ffff888111bed190 R14: ffff888109c14000 R15: 0000000000001000
[  183.645653] FS:  00007fe5ef807540(0000) GS:ffff88845b380000(0000) knlGS:0000000000000000
[  183.646570] CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033
[  183.647481] CR2: ffffc90000c86000 CR3: 000000010ff02006 CR4: 00000000003706e0
[  183.648384] DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000
[  183.649271] DR3: 0000000000000000 DR6: 00000000fffe0ff0 DR7: 0000000000000400
[  183.650142] Call Trace:
[  183.650988]  <TASK>
[  183.651793]  vm_access+0x1f0/0x2a0 [i915]
[  183.652726]  __access_remote_vm+0x224/0x380
[  183.653561]  mem_rw.isra.0+0xf9/0x190
[  183.654402]  vfs_read+0x9d/0x1b0
[  183.655238]  ksys_read+0x63/0xe0
[  183.656065]  do_syscall_64+0x38/0xc0
[  183.656882]  entry_SYSCALL_64_after_hwframe+0x44/0xae
[  183.657663] RIP: 0033:0x7fe5ef725142
[  183.659351] RSP: 002b:00007ffe1e81c7e8 EFLAGS: 00000246 ORIG_RAX: 0000000000000000
[  183.660227] RAX: ffffffffffffffda RBX: 0000557055dfb780 RCX: 00007fe5ef725142
[  183.661104] RDX: 0000000000001000 RSI: 00007ffe1e81d880 RDI: 0000000000000005
[  183.661972] RBP: 00007ffe1e81e890 R08: 0000000000000030 R09: 0000000000000046
[  183.662832] R10: 0000557055dfc2e0 R11: 0000000000000246 R12: 0000557055dfb1c0
[  183.663691] R13: 00007ffe1e81e980 R14: 0000000000000000 R15: 0000000000000000

Changes since v1:
     - Updated if condition with range_overflows_t [Chris Wilson]

Fixes: 9f909e215fea ("drm/i915: Implement vm_ops->access for gdb access into mmaps")
Signed-off-by: Mastan Katragadda <mastanx.katragadda@intel.com>
Suggested-by: Adam Zabrocki <adamza@microsoft.com>
Reported-by: Jackson Cody <cody.jackson@intel.com>
Cc: Chris Wilson <chris@chris-wilson.co.uk>
Cc: Jon Bloomfield <jon.bloomfield@intel.com>
Cc: Sudeep Dutt <sudeep.dutt@intel.com>
Cc: <stable@vger.kernel.org> # v5.8+
Reviewed-by: Matthew Auld <matthew.auld@intel.com>
[mauld: tidy up the commit message and add Cc: stable]
Signed-off-by: Matthew Auld <matthew.auld@intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20220303060428.1668844-1-mastanx.katragadda@intel.com
(cherry picked from commit 661412e301e2ca86799aa4f400d1cf0bd38c57c6)
Signed-off-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
 drivers/gpu/drm/i915/gem/i915_gem_mman.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

--- a/drivers/gpu/drm/i915/gem/i915_gem_mman.c
+++ b/drivers/gpu/drm/i915/gem/i915_gem_mman.c
@@ -439,7 +439,7 @@ vm_access(struct vm_area_struct *area, u
 		return -EACCES;
 
 	addr -= area->vm_start;
-	if (addr >= obj->base.size)
+	if (range_overflows_t(u64, addr, len, obj->base.size))
 		return -EINVAL;
 
 	i915_gem_ww_ctx_init(&ww, true);



  parent reply	other threads:[~2022-04-05  7:51 UTC|newest]

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

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

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