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, Sean Paul <seanpaul@chromium.org>,
	Rob Clark <robdclark@chromium.org>,
	Maarten Lankhorst <maarten.lankhorst@linux.intel.com>,
	Maxime Ripard <mripard@kernel.org>,
	Thomas Zimmermann <tzimmermann@suse.de>,
	David Airlie <airlied@linux.ie>, Daniel Vetter <daniel@ffwll.ch>,
	Alex Deucher <alexander.deucher@amd.com>,
	Liu Ying <victor.liu@nxp.com>, Sasha Levin <sashal@kernel.org>
Subject: [PATCH 5.16 0818/1039] drm/atomic: Check new_crtc_state->active to determine if CRTC needs disable in self refresh mode
Date: Mon, 24 Jan 2022 19:43:27 +0100	[thread overview]
Message-ID: <20220124184152.800331782@linuxfoundation.org> (raw)
In-Reply-To: <20220124184125.121143506@linuxfoundation.org>

From: Liu Ying <victor.liu@nxp.com>

[ Upstream commit 69e630016ef4e4a1745310c446f204dc6243e907 ]

Actual hardware state of CRTC is controlled by the member 'active' in
struct drm_crtc_state instead of the member 'enable', according to the
kernel doc of the member 'enable'.  In fact, the drm client modeset
and atomic helpers are using the member 'active' to do the control.

Referencing the member 'enable' of new_crtc_state, the function
crtc_needs_disable() may fail to reflect if CRTC needs disable in
self refresh mode, e.g., when the framebuffer emulation will be blanked
through the client modeset helper with the next commit, the member
'enable' of new_crtc_state is still true while the member 'active' is
false, hence the relevant potential encoder and bridges won't be disabled.

So, let's check new_crtc_state->active to determine if CRTC needs disable
in self refresh mode instead of new_crtc_state->enable.

Fixes: 1452c25b0e60 ("drm: Add helpers to kick off self refresh mode in drivers")
Cc: Sean Paul <seanpaul@chromium.org>
Cc: Rob Clark <robdclark@chromium.org>
Cc: Maarten Lankhorst <maarten.lankhorst@linux.intel.com>
Cc: Maxime Ripard <mripard@kernel.org>
Cc: Thomas Zimmermann <tzimmermann@suse.de>
Cc: David Airlie <airlied@linux.ie>
Cc: Daniel Vetter <daniel@ffwll.ch>
Reviewed-by: Alex Deucher <alexander.deucher@amd.com>
Signed-off-by: Liu Ying <victor.liu@nxp.com>
Signed-off-by: Alex Deucher <alexander.deucher@amd.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20211230040626.646807-1-victor.liu@nxp.com
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 drivers/gpu/drm/drm_atomic_helper.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/drm_atomic_helper.c b/drivers/gpu/drm/drm_atomic_helper.c
index 2c0c6ec928200..ff2bc9a118011 100644
--- a/drivers/gpu/drm/drm_atomic_helper.c
+++ b/drivers/gpu/drm/drm_atomic_helper.c
@@ -1001,7 +1001,7 @@ crtc_needs_disable(struct drm_crtc_state *old_state,
 	 * it's in self refresh mode and needs to be fully disabled.
 	 */
 	return old_state->active ||
-	       (old_state->self_refresh_active && !new_state->enable) ||
+	       (old_state->self_refresh_active && !new_state->active) ||
 	       new_state->self_refresh_active;
 }
 
-- 
2.34.1




  parent reply	other threads:[~2022-01-24 21:46 UTC|newest]

Thread overview: 1058+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-01-24 18:29 [PATCH 5.16 0000/1039] 5.16.3-rc1 review Greg Kroah-Hartman
2022-01-24 18:29 ` [PATCH 5.16 0001/1039] KVM: x86/mmu: Fix write-protection of PTs mapped by the TDP MMU Greg Kroah-Hartman
2022-01-24 18:29 ` [PATCH 5.16 0002/1039] KVM: VMX: switch blocked_vcpu_on_cpu_lock to raw spinlock Greg Kroah-Hartman
2022-01-24 18:29 ` [PATCH 5.16 0003/1039] HID: Ignore battery for Elan touchscreen on HP Envy X360 15t-dr100 Greg Kroah-Hartman
2022-01-24 18:29 ` [PATCH 5.16 0004/1039] HID: uhid: Fix worker destroying device without any protection Greg Kroah-Hartman
2022-01-24 18:29 ` [PATCH 5.16 0005/1039] HID: wacom: Reset expected and received contact counts at the same time Greg Kroah-Hartman
2022-01-24 18:29 ` [PATCH 5.16 0006/1039] HID: wacom: Ignore the confidence flag when a touch is removed Greg Kroah-Hartman
2022-01-24 18:29 ` [PATCH 5.16 0007/1039] HID: wacom: Avoid using stale array indicies to read contact count Greg Kroah-Hartman
2022-01-24 18:29 ` [PATCH 5.16 0008/1039] ALSA: core: Fix SSID quirk lookup for subvendor=0 Greg Kroah-Hartman
2022-01-24 18:29 ` [PATCH 5.16 0009/1039] cifs: free ntlmsspblob allocated in negotiate Greg Kroah-Hartman
2022-01-24 18:29 ` [PATCH 5.16 0010/1039] f2fs: fix to do sanity check on inode type during garbage collection Greg Kroah-Hartman
2022-01-24 18:30 ` [PATCH 5.16 0011/1039] f2fs: fix to do sanity check in is_alive() Greg Kroah-Hartman
2022-01-24 18:30 ` [PATCH 5.16 0012/1039] f2fs: fix to do sanity check on last xattr entry in __f2fs_setxattr() Greg Kroah-Hartman
2022-01-24 18:30 ` [PATCH 5.16 0013/1039] f2fs: avoid EINVAL by SBI_NEED_FSCK when pinning a file Greg Kroah-Hartman
2022-01-24 18:30 ` [PATCH 5.16 0014/1039] nfc: llcp: fix NULL error pointer dereference on sendmsg() after failed bind() Greg Kroah-Hartman
2022-01-24 18:30 ` [PATCH 5.16 0015/1039] mtd: rawnand: gpmi: Add ERR007117 protection for nfc_apply_timings Greg Kroah-Hartman
2022-01-24 18:30 ` [PATCH 5.16 0016/1039] mtd: rawnand: gpmi: Remove explicit default gpmi clock setting for i.MX6 Greg Kroah-Hartman
2022-01-24 18:30 ` [PATCH 5.16 0017/1039] mtd: Fixed breaking list in __mtd_del_partition Greg Kroah-Hartman
2022-01-24 18:30 ` [PATCH 5.16 0018/1039] mtd: rawnand: davinci: Dont calculate ECC when reading page Greg Kroah-Hartman
2022-01-24 18:30 ` [PATCH 5.16 0019/1039] mtd: rawnand: davinci: Avoid duplicated page read Greg Kroah-Hartman
2022-01-24 18:30 ` [PATCH 5.16 0020/1039] mtd: rawnand: davinci: Rewrite function description Greg Kroah-Hartman
2022-01-24 18:30 ` [PATCH 5.16 0021/1039] mtd: rawnand: Export nand_read_page_hwecc_oob_first() Greg Kroah-Hartman
2022-01-24 18:30 ` [PATCH 5.16 0022/1039] mtd: rawnand: ingenic: JZ4740 needs oob_first read page function Greg Kroah-Hartman
2022-01-24 18:30 ` [PATCH 5.16 0023/1039] riscv: Get rid of MAXPHYSMEM configs Greg Kroah-Hartman
2022-01-24 18:30 ` [PATCH 5.16 0024/1039] RISC-V: Use common riscv_cpuid_to_hartid_mask() for both SMP=y and SMP=n Greg Kroah-Hartman
2022-01-24 18:30 ` [PATCH 5.16 0025/1039] riscv: try to allocate crashkern region from 32bit addressible memory Greg Kroah-Hartman
2022-01-24 18:30 ` [PATCH 5.16 0026/1039] riscv: Dont use va_pa_offset on kdump Greg Kroah-Hartman
2022-01-24 18:30 ` [PATCH 5.16 0027/1039] riscv: use hart id instead of cpu id on machine_kexec Greg Kroah-Hartman
2022-01-24 18:30 ` [PATCH 5.16 0028/1039] riscv: mm: fix wrong phys_ram_base value for RV64 Greg Kroah-Hartman
2022-01-24 18:30 ` [PATCH 5.16 0029/1039] x86/gpu: Reserve stolen memory for first integrated Intel GPU Greg Kroah-Hartman
2022-01-24 18:30 ` [PATCH 5.16 0030/1039] tools/nolibc: x86-64: Fix startup code bug Greg Kroah-Hartman
2022-01-24 18:30 ` [PATCH 5.16 0031/1039] crypto: x86/aesni - dont require alignment of data Greg Kroah-Hartman
2022-01-24 18:30 ` [PATCH 5.16 0032/1039] tools/nolibc: i386: fix initial stack alignment Greg Kroah-Hartman
2022-01-24 18:30 ` [PATCH 5.16 0033/1039] tools/nolibc: fix incorrect truncation of exit code Greg Kroah-Hartman
2022-01-24 18:30 ` [PATCH 5.16 0034/1039] rtc: cmos: take rtc_lock while reading from CMOS Greg Kroah-Hartman
2022-01-24 18:30 ` [PATCH 5.16 0035/1039] net: phy: marvell: add Marvell specific PHY loopback Greg Kroah-Hartman
2022-01-24 18:30 ` [PATCH 5.16 0036/1039] ksmbd: uninitialized variable in create_socket() Greg Kroah-Hartman
2022-01-24 18:30 ` [PATCH 5.16 0037/1039] ksmbd: fix guest connection failure with nautilus Greg Kroah-Hartman
2022-01-24 18:30 ` [PATCH 5.16 0038/1039] ksmbd: add support for smb2 max credit parameter Greg Kroah-Hartman
2022-01-24 18:30 ` [PATCH 5.16 0039/1039] ksmbd: move credit charge deduction under processing request Greg Kroah-Hartman
2022-01-24 18:30 ` [PATCH 5.16 0040/1039] ksmbd: limits exceeding the maximum allowable outstanding requests Greg Kroah-Hartman
2022-01-24 18:30 ` [PATCH 5.16 0041/1039] ksmbd: add reserved room in ipc request/response Greg Kroah-Hartman
2022-01-24 18:30 ` [PATCH 5.16 0042/1039] media: cec: fix a deadlock situation Greg Kroah-Hartman
2022-01-24 18:30 ` [PATCH 5.16 0043/1039] media: ov8865: Disable only enabled regulators on error path Greg Kroah-Hartman
2022-01-24 18:30 ` [PATCH 5.16 0044/1039] media: v4l2-ioctl.c: readbuffers depends on V4L2_CAP_READWRITE Greg Kroah-Hartman
2022-01-24 18:30 ` [PATCH 5.16 0045/1039] media: flexcop-usb: fix control-message timeouts Greg Kroah-Hartman
2022-01-24 18:30 ` [PATCH 5.16 0046/1039] media: mceusb: " Greg Kroah-Hartman
2022-01-24 18:30 ` [PATCH 5.16 0047/1039] media: em28xx: " Greg Kroah-Hartman
2022-01-24 18:30 ` [PATCH 5.16 0048/1039] media: cpia2: " Greg Kroah-Hartman
2022-01-24 18:30 ` [PATCH 5.16 0049/1039] media: s2255: " Greg Kroah-Hartman
2022-01-24 18:30 ` [PATCH 5.16 0050/1039] media: dib0700: fix undefined behavior in tuner shutdown Greg Kroah-Hartman
2022-01-24 18:30 ` [PATCH 5.16 0051/1039] media: redrat3: fix control-message timeouts Greg Kroah-Hartman
2022-01-24 18:30 ` [PATCH 5.16 0052/1039] media: pvrusb2: " Greg Kroah-Hartman
2022-01-24 18:30 ` [PATCH 5.16 0053/1039] media: stk1160: " Greg Kroah-Hartman
2022-01-24 18:30 ` [PATCH 5.16 0054/1039] media: cec-pin: fix interrupt en/disable handling Greg Kroah-Hartman
2022-01-24 18:30 ` [PATCH 5.16 0055/1039] can: softing_cs: softingcs_probe(): fix memleak on registration failure Greg Kroah-Hartman
2022-01-24 18:30 ` [PATCH 5.16 0056/1039] mei: hbm: fix client dma reply status Greg Kroah-Hartman
2022-01-24 18:30 ` [PATCH 5.16 0057/1039] iio: adc: ti-adc081c: Partial revert of removal of ACPI IDs Greg Kroah-Hartman
2022-01-24 18:30 ` [PATCH 5.16 0058/1039] iio: trigger: Fix a scheduling whilst atomic issue seen on tsc2046 Greg Kroah-Hartman
2022-01-24 18:30 ` [PATCH 5.16 0059/1039] lkdtm: Fix content of section containing lkdtm_rodata_do_nothing() Greg Kroah-Hartman
2022-01-24 18:30 ` [PATCH 5.16 0060/1039] bus: mhi: pci_generic: Graceful shutdown on freeze Greg Kroah-Hartman
2022-01-24 18:30 ` [PATCH 5.16 0061/1039] bus: mhi: core: Fix reading wake_capable channel configuration Greg Kroah-Hartman
2022-01-24 18:30 ` [PATCH 5.16 0062/1039] bus: mhi: core: Fix race while handling SYS_ERR at power up Greg Kroah-Hartman
2022-01-24 18:30 ` [PATCH 5.16 0063/1039] cxl/pmem: Fix reference counting for delayed work Greg Kroah-Hartman
2022-01-24 18:30 ` [PATCH 5.16 0064/1039] cxl/pmem: Fix module reload vs workqueue state Greg Kroah-Hartman
2022-01-24 18:30 ` [PATCH 5.16 0065/1039] thermal/drivers/int340x: Fix RFIM mailbox write commands Greg Kroah-Hartman
2022-01-24 18:30 ` [PATCH 5.16 0066/1039] arm64: errata: Fix exec handling in erratum 1418040 workaround Greg Kroah-Hartman
2022-01-24 18:30 ` [PATCH 5.16 0067/1039] ARM: dts: at91: update alternate function of signal PD20 Greg Kroah-Hartman
2022-01-24 18:30 ` [PATCH 5.16 0068/1039] iommu/io-pgtable-arm-v7s: Add error handle for page table allocation failure Greg Kroah-Hartman
2022-01-24 18:30 ` [PATCH 5.16 0069/1039] gpu: host1x: Add back arm_iommu_detach_device() Greg Kroah-Hartman
2022-01-24 18:30 ` [PATCH 5.16 0070/1039] drm/tegra: " Greg Kroah-Hartman
2022-01-24 18:31 ` [PATCH 5.16 0071/1039] io_uring: fix no lock protection for ctx->cq_extra Greg Kroah-Hartman
2022-01-24 18:31 ` [PATCH 5.16 0072/1039] virtio/virtio_mem: handle a possible NULL as a memcpy parameter Greg Kroah-Hartman
2022-01-24 18:31 ` [PATCH 5.16 0073/1039] dma_fence_array: Fix PENDING_ERROR leak in dma_fence_array_signaled() Greg Kroah-Hartman
2022-01-24 18:31 ` [PATCH 5.16 0074/1039] PCI: Add function 1 DMA alias quirk for Marvell 88SE9125 SATA controller Greg Kroah-Hartman
2022-01-24 18:31 ` [PATCH 5.16 0075/1039] mm_zone: add function to check if managed dma zone exists Greg Kroah-Hartman
2022-01-24 18:31 ` [PATCH 5.16 0076/1039] dma/pool: create dma atomic pool only if dma zone has managed pages Greg Kroah-Hartman
2022-01-24 18:31 ` [PATCH 5.16 0077/1039] mm/page_alloc.c: do not warn allocation failure on zone DMA if no " Greg Kroah-Hartman
2022-01-24 18:31 ` [PATCH 5.16 0078/1039] ath11k: add string type to search board data in board-2.bin for WCN6855 Greg Kroah-Hartman
2022-01-24 18:31 ` [PATCH 5.16 0079/1039] shmem: fix a race between shmem_unused_huge_shrink and shmem_evict_inode Greg Kroah-Hartman
2022-01-24 18:31 ` [PATCH 5.16 0080/1039] drm/rockchip: dsi: Hold pm-runtime across bind/unbind Greg Kroah-Hartman
2022-01-24 18:31 ` [PATCH 5.16 0081/1039] drm/rockchip: dsi: Reconfigure hardware on resume() Greg Kroah-Hartman
2022-01-24 18:31 ` [PATCH 5.16 0082/1039] drm/ttm: Put BO in its memory managers lru list Greg Kroah-Hartman
2022-01-24 18:31 ` [PATCH 5.16 0083/1039] Bluetooth: hci_vhci: Fix to set the force_wakeup value Greg Kroah-Hartman
2022-01-24 18:31 ` [PATCH 5.16 0084/1039] Bluetooth: mgmt: Fix Experimental Feature Changed event Greg Kroah-Hartman
2022-01-24 18:31 ` [PATCH 5.16 0085/1039] Bluetooth: L2CAP: Fix not initializing sk_peer_pid Greg Kroah-Hartman
2022-01-24 18:31 ` [PATCH 5.16 0086/1039] drm/bridge: display-connector: fix an uninitialized pointer in probe() Greg Kroah-Hartman
2022-01-24 18:31 ` [PATCH 5.16 0087/1039] drm: fix null-ptr-deref in drm_dev_init_release() Greg Kroah-Hartman
2022-01-24 18:31 ` [PATCH 5.16 0088/1039] drm/panel: kingdisplay-kd097d04: Delete panel on attach() failure Greg Kroah-Hartman
2022-01-24 18:31 ` [PATCH 5.16 0089/1039] drm/panel: innolux-p079zca: " Greg Kroah-Hartman
2022-01-24 18:31 ` [PATCH 5.16 0090/1039] drm/rockchip: dsi: Fix unbalanced clock on probe error Greg Kroah-Hartman
2022-01-24 18:31 ` [PATCH 5.16 0091/1039] drm/rockchip: dsi: Disable PLL clock on bind error Greg Kroah-Hartman
2022-01-24 18:31 ` [PATCH 5.16 0092/1039] Bluetooth: virtio_bt: fix memory leak in virtbt_rx_handle() Greg Kroah-Hartman
2022-01-24 18:31 ` [PATCH 5.16 0093/1039] Bluetooth: cmtp: fix possible panic when cmtp_init_sockets() fails Greg Kroah-Hartman
2022-01-24 18:31 ` [PATCH 5.16 0094/1039] clk: bcm-2835: Pick the closest clock rate Greg Kroah-Hartman
2022-01-24 18:31 ` [PATCH 5.16 0095/1039] clk: bcm-2835: Remove rounding up the dividers Greg Kroah-Hartman
2022-01-24 18:31 ` [PATCH 5.16 0096/1039] drm/vc4: hdmi: Set a default HSM rate Greg Kroah-Hartman
2022-01-24 18:31 ` [PATCH 5.16 0097/1039] drm/vc4: hdmi: Move the HSM clock enable to runtime_pm Greg Kroah-Hartman
2022-01-24 18:31 ` [PATCH 5.16 0098/1039] drm/vc4: hdmi: Make sure the controller is powered in detect Greg Kroah-Hartman
2022-01-24 18:31 ` [PATCH 5.16 0099/1039] drm/vc4: hdmi: Make sure the controller is powered up during bind Greg Kroah-Hartman
2022-01-24 18:31 ` [PATCH 5.16 0100/1039] drm/vc4: hdmi: Rework the pre_crtc_configure error handling Greg Kroah-Hartman
2022-01-24 18:31 ` [PATCH 5.16 0101/1039] drm/vc4: crtc: Make sure the HDMI controller is powered when disabling Greg Kroah-Hartman
2022-01-24 18:31 ` [PATCH 5.16 0102/1039] drm/bridge: sn65dsi83: Fix bridge removal Greg Kroah-Hartman
2022-01-24 18:31 ` [PATCH 5.16 0103/1039] drm/virtio: fix potential integer overflow on shift of a int Greg Kroah-Hartman
2022-01-24 18:31 ` [PATCH 5.16 0104/1039] drm/virtio: fix another " Greg Kroah-Hartman
2022-01-24 18:31 ` [PATCH 5.16 0105/1039] wcn36xx: ensure pairing of init_scan/finish_scan and start_scan/end_scan Greg Kroah-Hartman
2022-01-24 18:31 ` [PATCH 5.16 0106/1039] wcn36xx: Indicate beacon not connection loss on MISSED_BEACON_IND Greg Kroah-Hartman
2022-01-24 18:31 ` [PATCH 5.16 0107/1039] libbpf: Fix section counting logic Greg Kroah-Hartman
2022-01-24 18:31 ` [PATCH 5.16 0108/1039] drm/vc4: hdmi: Enable the scrambler on reconnection Greg Kroah-Hartman
2022-01-24 18:31 ` [PATCH 5.16 0109/1039] libbpf: Fix non-C89 loop variable declaration in gen_loader.c Greg Kroah-Hartman
2022-01-24 18:31 ` [PATCH 5.16 0110/1039] libbpf: Free up resources used by inner map definition Greg Kroah-Hartman
2022-01-24 18:31 ` [PATCH 5.16 0111/1039] wcn36xx: Fix DMA channel enable/disable cycle Greg Kroah-Hartman
2022-01-24 18:31 ` [PATCH 5.16 0112/1039] wcn36xx: Release DMA channel descriptor allocations Greg Kroah-Hartman
2022-01-24 18:31 ` [PATCH 5.16 0113/1039] wcn36xx: Put DXE block into reset before freeing memory Greg Kroah-Hartman
2022-01-24 18:31 ` [PATCH 5.16 0114/1039] wcn36xx: populate band before determining rate on RX Greg Kroah-Hartman
2022-01-24 18:31 ` [PATCH 5.16 0115/1039] wcn36xx: fix RX BD rate mapping for 5GHz legacy rates Greg Kroah-Hartman
2022-01-24 18:31 ` [PATCH 5.16 0116/1039] ath11k: Send PPDU_STATS_CFG with proper pdev mask to firmware Greg Kroah-Hartman
2022-01-24 18:31 ` [PATCH 5.16 0117/1039] bpftool: Fix memory leak in prog_dump() Greg Kroah-Hartman
2022-01-24 18:31 ` [PATCH 5.16 0118/1039] mtd: hyperbus: rpc-if: Check return value of rpcif_sw_init() Greg Kroah-Hartman
2022-01-24 18:31 ` [PATCH 5.16 0119/1039] media: videobuf2: Fix the size printk format Greg Kroah-Hartman
2022-01-24 18:31 ` [PATCH 5.16 0120/1039] media: ipu3-cio2: fix error code in cio2_bridge_connect_sensor() Greg Kroah-Hartman
2022-01-24 18:31 ` [PATCH 5.16 0121/1039] media: atomisp: add missing media_device_cleanup() in atomisp_unregister_entities() Greg Kroah-Hartman
2022-01-24 18:31 ` [PATCH 5.16 0122/1039] media: atomisp: fix punit_ddr_dvfs_enable() argument for mrfld_power up case Greg Kroah-Hartman
2022-01-24 18:31 ` [PATCH 5.16 0123/1039] media: atomisp: fix inverted logic in buffers_needed() Greg Kroah-Hartman
2022-01-24 18:31 ` [PATCH 5.16 0124/1039] media: atomisp: do not use err var when checking port validity for ISP2400 Greg Kroah-Hartman
2022-01-24 18:31 ` [PATCH 5.16 0125/1039] media: atomisp: fix inverted error check for ia_css_mipi_is_source_port_valid() Greg Kroah-Hartman
2022-01-24 18:31 ` [PATCH 5.16 0126/1039] media: atomisp: fix ifdefs in sh_css.c Greg Kroah-Hartman
2022-01-24 18:31 ` [PATCH 5.16 0127/1039] media: atomisp: add NULL check for asd obtained from atomisp_video_pipe Greg Kroah-Hartman
2022-01-24 18:31 ` [PATCH 5.16 0128/1039] media: atomisp: fix enum formats logic Greg Kroah-Hartman
2022-01-24 18:31 ` [PATCH 5.16 0129/1039] media: atomisp: fix uninitialized bug in gmin_get_pmic_id_and_addr() Greg Kroah-Hartman
2022-01-24 18:31 ` [PATCH 5.16 0130/1039] media: aspeed: fix mode-detect always time out at 2nd run Greg Kroah-Hartman
2022-01-24 18:32 ` [PATCH 5.16 0131/1039] media: em28xx: fix memory leak in em28xx_init_dev Greg Kroah-Hartman
2022-01-24 18:32 ` [PATCH 5.16 0132/1039] media: aspeed: Update signal status immediately to ensure sane hw state Greg Kroah-Hartman
2022-01-24 18:32 ` [PATCH 5.16 0133/1039] arm64: dts: amlogic: meson-g12: Fix GPU operating point table node name Greg Kroah-Hartman
2022-01-24 18:32 ` [PATCH 5.16 0134/1039] arm64: dts: amlogic: Fix SPI NOR flash node name for ODROID N2/N2+ Greg Kroah-Hartman
2022-01-24 18:32 ` [PATCH 5.16 0135/1039] arm64: dts: meson-gxbb-wetek: fix HDMI in early boot Greg Kroah-Hartman
2022-01-24 18:32 ` [PATCH 5.16 0136/1039] arm64: dts: meson-gxbb-wetek: fix missing GPIO binding Greg Kroah-Hartman
2022-01-24 18:32 ` [PATCH 5.16 0137/1039] fs: dlm: dont call kernel_getpeername() in error_report() Greg Kroah-Hartman
2022-01-24 18:32 ` [PATCH 5.16 0138/1039] memory: renesas-rpc-if: Return error in case devm_ioremap_resource() fails Greg Kroah-Hartman
2022-01-24 18:32 ` [PATCH 5.16 0139/1039] Bluetooth: stop proccessing malicious adv data Greg Kroah-Hartman
2022-01-24 18:32 ` [PATCH 5.16 0140/1039] Bluetooth: fix uninitialized variables notify_evt Greg Kroah-Hartman
2022-01-24 18:32 ` [PATCH 5.16 0141/1039] ath11k: Fix ETSI regd with weather radar overlap Greg Kroah-Hartman
2022-01-24 18:32 ` [PATCH 5.16 0142/1039] ath11k: clear the keys properly via DISABLE_KEY Greg Kroah-Hartman
2022-01-24 18:32 ` [PATCH 5.16 0143/1039] ath11k: reset RSN/WPA present state for open BSS Greg Kroah-Hartman
2022-01-24 18:32 ` [PATCH 5.16 0144/1039] spi: hisi-kunpeng: Fix the debugfs directory name incorrect Greg Kroah-Hartman
2022-01-24 18:32 ` [PATCH 5.16 0145/1039] tee: fix put order in teedev_close_context() Greg Kroah-Hartman
2022-01-24 18:32 ` [PATCH 5.16 0146/1039] kernel/locking: Use a pointer in ww_mutex_trylock() Greg Kroah-Hartman
2022-01-24 18:32 ` [PATCH 5.16 0147/1039] fs: dlm: fix build with CONFIG_IPV6 disabled Greg Kroah-Hartman
2022-01-24 18:32 ` [PATCH 5.16 0148/1039] drm/dp: Dont read back backlight mode in drm_edp_backlight_enable() Greg Kroah-Hartman
2022-01-24 18:32 ` [PATCH 5.16 0149/1039] selftests/bpf: Fix xdpxceiver failures for no hugepages Greg Kroah-Hartman
2022-01-24 18:32 ` [PATCH 5.16 0150/1039] mctp/test: Update refcount checking in route fragment tests Greg Kroah-Hartman
2022-01-24 18:32 ` [PATCH 5.16 0151/1039] drm/vboxvideo: fix a NULL vs IS_ERR() check Greg Kroah-Hartman
2022-01-24 18:32 ` [PATCH 5.16 0152/1039] ath11k: set correct NL80211_FEATURE_DYNAMIC_SMPS for WCN6855 Greg Kroah-Hartman
2022-01-24 18:32 ` [PATCH 5.16 0153/1039] ath11k: allocate dst ring descriptors from cacheable memory Greg Kroah-Hartman
2022-01-24 18:32 ` [PATCH 5.16 0154/1039] ath11k: add hw_param for wakeup_mhi Greg Kroah-Hartman
2022-01-24 18:32 ` [PATCH 5.16 0155/1039] arm64: dts: renesas: cat875: Add rx/tx delays Greg Kroah-Hartman
2022-01-24 18:32 ` [PATCH 5.16 0156/1039] media: dmxdev: fix UAF when dvb_register_device() fails Greg Kroah-Hartman
2022-01-24 18:32 ` [PATCH 5.16 0157/1039] crypto: atmel-aes - Reestablish the correct tfm context at dequeue Greg Kroah-Hartman
2022-01-24 18:32 ` [PATCH 5.16 0158/1039] crypto: keembay-ocs-ecc - Fix error return code in kmb_ocs_ecc_probe() Greg Kroah-Hartman
2022-01-24 18:32 ` [PATCH 5.16 0159/1039] crypto: qce - fix uaf on qce_aead_register_one Greg Kroah-Hartman
2022-01-24 18:32 ` [PATCH 5.16 0160/1039] crypto: qce - fix uaf on qce_ahash_register_one Greg Kroah-Hartman
2022-01-24 18:32 ` [PATCH 5.16 0161/1039] crypto: qce - fix uaf on qce_skcipher_register_one Greg Kroah-Hartman
2022-01-24 18:32 ` [PATCH 5.16 0162/1039] arm64: dts: qcom: sc7280: Fix incorrect clock name Greg Kroah-Hartman
2022-01-24 18:32 ` [PATCH 5.16 0163/1039] arm64: dts: qcom: sc7280: Fix interrupt-map parent address cells Greg Kroah-Hartman
2022-01-24 18:32 ` [PATCH 5.16 0164/1039] mtd: hyperbus: rpc-if: fix bug in rpcif_hb_remove Greg Kroah-Hartman
2022-01-24 18:32 ` [PATCH 5.16 0165/1039] cpufreq: qcom-cpufreq-hw: Update offline CPUs per-cpu thermal pressure Greg Kroah-Hartman
2022-01-24 18:32 ` [PATCH 5.16 0166/1039] soc: imx: gpcv2: keep i.MX8MM VPU-H1 bus clock active Greg Kroah-Hartman
2022-01-24 18:32 ` [PATCH 5.16 0167/1039] cpufreq: qcom-hw: Fix probable nested interrupt handling Greg Kroah-Hartman
2022-01-24 18:32 ` [PATCH 5.16 0168/1039] ARM: dts: stm32: fix dtbs_check warning on ili9341 dts binding on stm32f429 disco Greg Kroah-Hartman
2022-01-24 18:32 ` [PATCH 5.16 0169/1039] libbpf: Load global data maps lazily on legacy kernels Greg Kroah-Hartman
2022-01-24 18:32 ` [PATCH 5.16 0170/1039] tools/resolve_btf_ids: Close ELF file on error Greg Kroah-Hartman
2022-01-24 18:32 ` [PATCH 5.16 0171/1039] libbpf: Fix potential misaligned memory access in btf_ext__new() Greg Kroah-Hartman
2022-01-24 18:32 ` [PATCH 5.16 0172/1039] libbpf: Fix glob_syms memory leak in bpf_linker Greg Kroah-Hartman
2022-01-24 18:32 ` [PATCH 5.16 0173/1039] libbpf: Fix using invalidated memory " Greg Kroah-Hartman
2022-01-24 18:32 ` [PATCH 5.16 0174/1039] crypto: qat - fix undetected PFVF timeout in ACK loop Greg Kroah-Hartman
2022-01-24 18:32 ` [PATCH 5.16 0175/1039] ath11k: Use host CE parameters for CE interrupts configuration Greg Kroah-Hartman
2022-01-24 18:32 ` [PATCH 5.16 0176/1039] arm64: dts: ti: k3-j721e: correct cache-sets info Greg Kroah-Hartman
2022-01-24 18:32 ` [PATCH 5.16 0177/1039] tty: serial: atmel: Check return code of dmaengine_submit() Greg Kroah-Hartman
2022-01-24 18:32 ` [PATCH 5.16 0178/1039] tty: serial: atmel: Call dma_async_issue_pending() Greg Kroah-Hartman
2022-01-24 18:32 ` [PATCH 5.16 0179/1039] pinctrl: apple: return an error if pinmux is missing in the DT Greg Kroah-Hartman
2022-01-24 18:32 ` [PATCH 5.16 0180/1039] net: dsa: rtl8365mb: set RGMII RX delay in steps of 0.3 ns Greg Kroah-Hartman
2022-01-24 18:32 ` [PATCH 5.16 0181/1039] mfd: atmel-flexcom: Remove #ifdef CONFIG_PM_SLEEP Greg Kroah-Hartman
2022-01-24 18:32 ` [PATCH 5.16 0182/1039] mfd: atmel-flexcom: Use .resume_noirq Greg Kroah-Hartman
2022-01-24 18:32 ` [PATCH 5.16 0183/1039] bfq: Do not let waker requests skip proper accounting Greg Kroah-Hartman
2022-01-24 18:32 ` [PATCH 5.16 0184/1039] libbpf: Silence uninitialized warning/error in btf_dump_dump_type_data Greg Kroah-Hartman
2022-01-24 18:32 ` [PATCH 5.16 0185/1039] media: i2c: imx274: fix s_frame_interval runtime resume not requested Greg Kroah-Hartman
2022-01-24 18:32 ` [PATCH 5.16 0186/1039] media: i2c: Re-order runtime pm initialisation Greg Kroah-Hartman
2022-01-24 18:32 ` [PATCH 5.16 0187/1039] media: i2c: ov8865: Fix lockdep error Greg Kroah-Hartman
2022-01-24 18:32 ` [PATCH 5.16 0188/1039] media: rcar-csi2: Correct the selection of hsfreqrange Greg Kroah-Hartman
2022-01-24 18:32 ` [PATCH 5.16 0189/1039] media: imx-pxp: Initialize the spinlock prior to using it Greg Kroah-Hartman
2022-01-24 18:32 ` [PATCH 5.16 0190/1039] media: si470x-i2c: fix possible memory leak in si470x_i2c_probe() Greg Kroah-Hartman
2022-01-24 18:33 ` [PATCH 5.16 0191/1039] media: mtk-vcodec: Fix an error handling path in mtk_vcodec_probe() Greg Kroah-Hartman
2022-01-24 18:33 ` [PATCH 5.16 0192/1039] media: mtk-vcodec: call v4l2_m2m_ctx_release first when file is released Greg Kroah-Hartman
2022-01-24 18:33 ` [PATCH 5.16 0193/1039] media: hantro: Hook up RK3399 JPEG encoder output Greg Kroah-Hartman
2022-01-24 18:33 ` [PATCH 5.16 0194/1039] media: coda: fix CODA960 JPEG encoder buffer overflow Greg Kroah-Hartman
2022-01-24 18:33 ` [PATCH 5.16 0195/1039] media: venus: correct low power frequency calculation for encoder Greg Kroah-Hartman
2022-01-24 18:33 ` [PATCH 5.16 0196/1039] media: venus: core: Fix a potential NULL pointer dereference in an error handling path Greg Kroah-Hartman
2022-01-24 18:33 ` [PATCH 5.16 0197/1039] media: venus: core: Fix a resource leak in the error handling path of venus_probe() Greg Kroah-Hartman
2022-01-24 18:33 ` [PATCH 5.16 0198/1039] net: stmmac: Add platform level debug register dump feature Greg Kroah-Hartman
2022-01-24 18:33 ` [PATCH 5.16 0199/1039] net: lantiq: fix missing free_netdev() on error in ltq_etop_probe() Greg Kroah-Hartman
2022-01-24 18:33 ` [PATCH 5.16 0200/1039] thermal/drivers/imx: Implement runtime PM support Greg Kroah-Hartman
2022-01-24 18:33 ` [PATCH 5.16 0201/1039] igc: AF_XDP zero-copy metadata adjust breaks SKBs on XDP_PASS Greg Kroah-Hartman
2022-01-24 18:33 ` [PATCH 5.16 0202/1039] netfilter: bridge: add support for pppoe filtering Greg Kroah-Hartman
2022-01-24 18:33 ` [PATCH 5.16 0203/1039] powerpc: Avoid discarding flags in system_call_exception() Greg Kroah-Hartman
2022-01-24 18:33 ` [PATCH 5.16 0204/1039] rcu: Avoid alloc_pages() when recording stack Greg Kroah-Hartman
2022-01-24 18:33 ` [PATCH 5.16 0205/1039] arm64: dts: qcom: msm8916: fix MMC controller aliases Greg Kroah-Hartman
2022-01-24 18:33 ` [PATCH 5.16 0206/1039] drm/vmwgfx: Remove the deprecated lower mem limit Greg Kroah-Hartman
2022-01-24 18:33 ` [PATCH 5.16 0207/1039] drm/vmwgfx: Fail to initialize on broken configs Greg Kroah-Hartman
2022-01-24 18:33 ` [PATCH 5.16 0208/1039] cgroup: Trace event cgroup id fields should be u64 Greg Kroah-Hartman
2022-01-24 18:33 ` [PATCH 5.16 0209/1039] ACPI: EC: Rework flushing of EC work while suspended to idle Greg Kroah-Hartman
2022-01-24 18:33 ` [PATCH 5.16 0210/1039] pinctrl: mediatek: uninitialized variable in mtk_pctrl_show_one_pin() Greg Kroah-Hartman
2022-01-24 18:33 ` [PATCH 5.16 0211/1039] pinctrl: mediatek: add a check for error in mtk_pinconf_bias_get_rsel() Greg Kroah-Hartman
2022-01-24 18:33 ` [PATCH 5.16 0212/1039] thermal/drivers/imx8mm: Enable ADC when enabling monitor Greg Kroah-Hartman
2022-01-24 18:33 ` [PATCH 5.16 0213/1039] drm/amdgpu: Fix a NULL pointer dereference in amdgpu_connector_lcd_native_mode() Greg Kroah-Hartman
2022-01-24 18:33 ` [PATCH 5.16 0214/1039] drm/radeon/radeon_kms: Fix a NULL pointer dereference in radeon_driver_open_kms() Greg Kroah-Hartman
2022-01-24 18:33 ` [PATCH 5.16 0215/1039] libbpf: Clean gen_loaders attach kind Greg Kroah-Hartman
2022-01-24 18:33 ` [PATCH 5.16 0216/1039] null_blk: allow zero poll queues Greg Kroah-Hartman
2022-01-24 18:33 ` [PATCH 5.16 0217/1039] crypto: caam - save caam memory to support crypto engine retry mechanism Greg Kroah-Hartman
2022-01-24 18:33 ` [PATCH 5.16 0218/1039] arm64: dts: ti: k3-am642: Fix the L2 cache sets Greg Kroah-Hartman
2022-01-24 18:33 ` [PATCH 5.16 0219/1039] arm64: dts: ti: k3-j7200: " Greg Kroah-Hartman
2022-01-24 18:33 ` [PATCH 5.16 0220/1039] arm64: dts: ti: k3-j721e: " Greg Kroah-Hartman
2022-01-24 18:33 ` [PATCH 5.16 0221/1039] arm64: dts: ti: k3-j7200: Correct the d-cache-sets info Greg Kroah-Hartman
2022-01-24 18:33 ` [PATCH 5.16 0222/1039] tty: serial: uartlite: allow 64 bit address Greg Kroah-Hartman
2022-01-24 18:33 ` [PATCH 5.16 0223/1039] serial: amba-pl011: do not request memory region twice Greg Kroah-Hartman
2022-01-24 18:33 ` [PATCH 5.16 0224/1039] mtd: core: provide unique name for nvmem device Greg Kroah-Hartman
2022-01-24 18:33 ` [PATCH 5.16 0225/1039] floppy: Fix hang in watchdog when disk is ejected Greg Kroah-Hartman
2022-01-24 18:33 ` [PATCH 5.16 0226/1039] staging: rtl8192e: return error code from rtllib_softmac_init() Greg Kroah-Hartman
2022-01-24 18:33 ` [PATCH 5.16 0227/1039] staging: rtl8192e: rtllib_module: fix error handle case in alloc_rtllib() Greg Kroah-Hartman
2022-01-24 18:33 ` [PATCH 5.16 0228/1039] Bluetooth: btmtksdio: fix resume failure Greg Kroah-Hartman
2022-01-24 18:33 ` [PATCH 5.16 0229/1039] bpf: Fix the test_task_vma selftest to support output shorter than 1 kB Greg Kroah-Hartman
2022-01-24 18:33 ` [PATCH 5.16 0230/1039] sched/fair: Fix detection of per-CPU kthreads waking a task Greg Kroah-Hartman
2022-01-24 18:33 ` [PATCH 5.16 0231/1039] sched/fair: Fix per-CPU kthread and wakee stacking for asym CPU capacity Greg Kroah-Hartman
2022-01-24 18:33 ` [PATCH 5.16 0232/1039] bpf: Adjust BTF log size limit Greg Kroah-Hartman
2022-01-24 18:33 ` [PATCH 5.16 0233/1039] bpf: Disallow BPF_LOG_KERNEL log level for bpf(BPF_BTF_LOAD) Greg Kroah-Hartman
2022-01-24 18:33 ` [PATCH 5.16 0234/1039] bpf: Remove config check to enable bpf support for branch records Greg Kroah-Hartman
2022-01-24 18:33 ` [PATCH 5.16 0235/1039] drm: rcar-du: Add DSI support to rcar_du_output_name Greg Kroah-Hartman
2022-01-24 18:33 ` [PATCH 5.16 0236/1039] drm: rcar-du: crtc: Support external DSI dot clock Greg Kroah-Hartman
2022-01-24 18:33 ` [PATCH 5.16 0237/1039] arm64: clear_page() shouldnt use DC ZVA when DCZID_EL0.DZP == 1 Greg Kroah-Hartman
2022-01-24 18:33 ` [PATCH 5.16 0238/1039] arm64: mte: DC {GVA,GZVA} shouldnt be used " Greg Kroah-Hartman
2022-01-24 18:33 ` [PATCH 5.16 0239/1039] platform/x86: wmi: Replace read_takes_no_args with a flags field Greg Kroah-Hartman
2022-01-24 18:33 ` [PATCH 5.16 0240/1039] platform/x86: wmi: Fix driver->notify() vs ->probe() race Greg Kroah-Hartman
2022-01-24 18:33 ` [PATCH 5.16 0241/1039] samples/bpf: Clean up samples/bpf build failes Greg Kroah-Hartman
2022-01-24 18:33 ` [PATCH 5.16 0242/1039] samples: bpf: Fix xdp_sample_user.o linking with Clang Greg Kroah-Hartman
2022-01-24 18:33 ` [PATCH 5.16 0243/1039] samples: bpf: Fix unknown warning group build warning on Clang Greg Kroah-Hartman
2022-01-24 18:33 ` [PATCH 5.16 0244/1039] media: uvcvideo: Fix memory leak of object map on error exit path Greg Kroah-Hartman
2022-01-24 18:33 ` [PATCH 5.16 0245/1039] media: uvcvideo: Avoid invalid memory access Greg Kroah-Hartman
2022-01-24 18:33 ` [PATCH 5.16 0246/1039] media: uvcvideo: Avoid returning invalid controls Greg Kroah-Hartman
2022-01-24 18:33 ` [PATCH 5.16 0247/1039] media: dib8000: Fix a memleak in dib8000_init() Greg Kroah-Hartman
2022-01-24 18:33 ` [PATCH 5.16 0248/1039] media: saa7146: mxb: Fix a NULL pointer dereference in mxb_attach() Greg Kroah-Hartman
2022-01-24 18:33 ` [PATCH 5.16 0249/1039] media: si2157: Fix "warm" tuner state detection Greg Kroah-Hartman
2022-01-24 18:33 ` [PATCH 5.16 0250/1039] wireless: iwlwifi: Fix a double free in iwl_txq_dyn_alloc_dma Greg Kroah-Hartman
2022-01-24 18:34 ` [PATCH 5.16 0251/1039] sched/rt: Try to restart rt period timer when rt runtime exceeded Greg Kroah-Hartman
2022-01-24 18:34 ` [PATCH 5.16 0252/1039] mtd: spi-nor: Get rid of nor->page_size Greg Kroah-Hartman
2022-01-24 18:34 ` [PATCH 5.16 0253/1039] mtd: spi-nor: Fix mtd size for s3an flashes Greg Kroah-Hartman
2022-01-24 18:34 ` [PATCH 5.16 0254/1039] ath10k: Fix the MTU size on QCA9377 SDIO Greg Kroah-Hartman
2022-01-24 18:34 ` [PATCH 5.16 0255/1039] ath11k: Fix QMI file type enum value Greg Kroah-Hartman
2022-01-24 18:34 ` [PATCH 5.16 0256/1039] Bluetooth: MGMT: Use hci_dev_test_and_{set,clear}_flag Greg Kroah-Hartman
2022-01-24 18:34 ` [PATCH 5.16 0257/1039] Bluetooth: btusb: Handle download_firmware failure cases Greg Kroah-Hartman
2022-01-24 18:34 ` [PATCH 5.16 0258/1039] drm/amd/display: Fix bug in debugfs crc_win_update entry Greg Kroah-Hartman
2022-01-24 18:34 ` [PATCH 5.16 0259/1039] drm/amd/display: Fix out of bounds access on DNC31 stream encoder regs Greg Kroah-Hartman
2022-01-24 18:34 ` [PATCH 5.16 0260/1039] drm/msm/gpu: Dont allow zero fence_id Greg Kroah-Hartman
2022-01-24 18:34 ` [PATCH 5.16 0261/1039] drm/msm/dp: displayPort driver need algorithm rational Greg Kroah-Hartman
2022-01-24 18:34 ` [PATCH 5.16 0262/1039] rcu/exp: Mark current CPU as exp-QS in IPI loop second pass Greg Kroah-Hartman
2022-01-24 18:34 ` [PATCH 5.16 0263/1039] wcn36xx: Fix max channels retrieval Greg Kroah-Hartman
2022-01-24 18:34 ` [PATCH 5.16 0264/1039] drm/msm/dsi: fix initialization in the bonded DSI case Greg Kroah-Hartman
2022-01-24 18:34 ` [PATCH 5.16 0265/1039] mwifiex: Fix possible ABBA deadlock Greg Kroah-Hartman
2022-01-24 18:34 ` [PATCH 5.16 0266/1039] xfrm: fix a small bug in xfrm_sa_len() Greg Kroah-Hartman
2022-01-24 18:34 ` [PATCH 5.16 0267/1039] x86/uaccess: Move variable into switch case statement Greg Kroah-Hartman
2022-01-24 18:34 ` [PATCH 5.16 0268/1039] libbpf: Add "bool skipped" to struct bpf_map Greg Kroah-Hartman
2022-01-24 18:34 ` [PATCH 5.16 0269/1039] selftests: clone3: clone3: add case CLONE3_ARGS_NO_TEST Greg Kroah-Hartman
2022-01-24 18:34 ` [PATCH 5.16 0270/1039] selftests: harness: avoid false negatives if test has no ASSERTs Greg Kroah-Hartman
2022-01-24 18:34 ` [PATCH 5.16 0271/1039] crypto: stm32/cryp - fix CTR counter carry Greg Kroah-Hartman
2022-01-24 18:34 ` [PATCH 5.16 0272/1039] crypto: stm32/cryp - fix xts and race condition in crypto_engine requests Greg Kroah-Hartman
2022-01-24 18:34 ` [PATCH 5.16 0273/1039] crypto: stm32/cryp - check early input data Greg Kroah-Hartman
2022-01-24 18:34 ` [PATCH 5.16 0274/1039] crypto: stm32/cryp - fix double pm exit Greg Kroah-Hartman
2022-01-24 18:34 ` [PATCH 5.16 0275/1039] crypto: stm32/cryp - fix lrw chaining mode Greg Kroah-Hartman
2022-01-24 18:34 ` [PATCH 5.16 0276/1039] crypto: stm32/cryp - fix bugs and crash in tests Greg Kroah-Hartman
2022-01-24 18:34 ` [PATCH 5.16 0277/1039] crypto: stm32 - Revert broken pm_runtime_resume_and_get changes Greg Kroah-Hartman
2022-01-24 18:34 ` [PATCH 5.16 0278/1039] crypto: hisilicon/qm - fix incorrect return value of hisi_qm_resume() Greg Kroah-Hartman
2022-01-24 18:34 ` [PATCH 5.16 0279/1039] libbpf: Fix gen_loader assumption on number of programs Greg Kroah-Hartman
2022-01-24 18:34 ` [PATCH 5.16 0280/1039] ath11k: Fix deleting uninitialized kernel timer during fragment cache flush Greg Kroah-Hartman
2022-01-24 18:34 ` [PATCH 5.16 0281/1039] spi: Fix incorrect cs_setup delay handling Greg Kroah-Hartman
2022-01-24 18:34 ` [PATCH 5.16 0282/1039] kunit: tool: fix --json output for skipped tests Greg Kroah-Hartman
2022-01-24 18:34 ` [PATCH 5.16 0283/1039] ARM: dts: gemini: NAS4220-B: fis-index-block with 128 KiB sectors Greg Kroah-Hartman
2022-01-24 18:34 ` [PATCH 5.16 0284/1039] perf/arm-cmn: Fix CPU hotplug unregistration Greg Kroah-Hartman
2022-01-24 18:34 ` [PATCH 5.16 0285/1039] media: dw2102: Fix use after free Greg Kroah-Hartman
2022-01-24 18:34 ` [PATCH 5.16 0286/1039] media: msi001: fix possible null-ptr-deref in msi001_probe() Greg Kroah-Hartman
2022-01-24 18:34 ` [PATCH 5.16 0287/1039] media: coda/imx-vdoa: Handle dma_set_coherent_mask error codes Greg Kroah-Hartman
2022-01-24 18:34 ` [PATCH 5.16 0288/1039] ath11k: Fix a NULL pointer dereference in ath11k_mac_op_hw_scan() Greg Kroah-Hartman
2022-01-24 18:34 ` [PATCH 5.16 0289/1039] net: dsa: hellcreek: Fix insertion of static FDB entries Greg Kroah-Hartman
2022-01-24 18:34 ` [PATCH 5.16 0290/1039] net: dsa: hellcreek: Add STP forwarding rule Greg Kroah-Hartman
2022-01-24 18:34 ` [PATCH 5.16 0291/1039] net: dsa: hellcreek: Allow PTP P2P measurements on blocked ports Greg Kroah-Hartman
2022-01-24 18:34 ` [PATCH 5.16 0292/1039] net: dsa: hellcreek: Add missing PTP via UDP rules Greg Kroah-Hartman
2022-01-24 18:34 ` [PATCH 5.16 0293/1039] arm64: dts: qcom: c630: Fix soundcard setup Greg Kroah-Hartman
2022-01-24 18:34 ` [PATCH 5.16 0294/1039] arm64: dts: qcom: ipq6018: Fix gpio-ranges property Greg Kroah-Hartman
2022-01-24 18:34 ` [PATCH 5.16 0295/1039] drm/msm/dpu: fix safe status debugfs file Greg Kroah-Hartman
2022-01-24 18:34 ` [PATCH 5.16 0296/1039] drm/bridge: ti-sn65dsi86: Set max register for regmap Greg Kroah-Hartman
2022-01-24 18:34 ` [PATCH 5.16 0297/1039] gpu: host1x: select CONFIG_DMA_SHARED_BUFFER Greg Kroah-Hartman
2022-01-24 18:34 ` [PATCH 5.16 0298/1039] drm/tegra: gr2d: Explicitly control module reset Greg Kroah-Hartman
2022-01-24 18:34 ` [PATCH 5.16 0299/1039] drm/tegra: vic: Fix DMA API misuse Greg Kroah-Hartman
2022-01-24 18:34 ` [PATCH 5.16 0300/1039] media: hantro: Fix probe func error path Greg Kroah-Hartman
2022-01-24 18:34 ` [PATCH 5.16 0301/1039] xfrm: interface with if_id 0 should return error Greg Kroah-Hartman
2022-01-24 18:34 ` [PATCH 5.16 0302/1039] xfrm: state and policy should fail if XFRMA_IF_ID 0 Greg Kroah-Hartman
2022-01-24 18:34 ` [PATCH 5.16 0303/1039] ARM: 9159/1: decompressor: Avoid UNPREDICTABLE NOP encoding Greg Kroah-Hartman
2022-01-24 18:34 ` [PATCH 5.16 0304/1039] usb: ftdi-elan: fix memory leak on device disconnect Greg Kroah-Hartman
2022-01-24 18:34 ` [PATCH 5.16 0305/1039] arm64: dts: marvell: cn9130: add GPIO and SPI aliases Greg Kroah-Hartman
2022-01-24 18:34 ` [PATCH 5.16 0306/1039] arm64: dts: marvell: cn9130: enable CP0 GPIO controllers Greg Kroah-Hartman
2022-01-24 18:34 ` [PATCH 5.16 0307/1039] ARM: dts: armada-38x: Add generic compatible to UART nodes Greg Kroah-Hartman
2022-01-24 18:34 ` [PATCH 5.16 0308/1039] mt76: mt7921: drop offload_flags overwritten Greg Kroah-Hartman
2022-01-24 18:34 ` [PATCH 5.16 0309/1039] mt76: mt7921: fix MT7921E reset failure Greg Kroah-Hartman
2022-01-24 18:34 ` [PATCH 5.16 0310/1039] mt76: debugfs: fix queue reporting for mt76-usb Greg Kroah-Hartman
2022-01-24 18:35 ` [PATCH 5.16 0311/1039] mt76: fix possible OOB issue in mt76_calculate_default_rate Greg Kroah-Hartman
2022-01-24 18:35 ` [PATCH 5.16 0312/1039] mt76: mt7921: fix possible NULL pointer dereference in mt7921_mac_write_txwi Greg Kroah-Hartman
2022-01-24 18:35 ` [PATCH 5.16 0313/1039] mt76: mt7921: move mt76_connac_mcu_set_hif_suspend to bus-related files Greg Kroah-Hartman
2022-01-24 18:35 ` [PATCH 5.16 0314/1039] mt76: mt7921s: fix the device cannot sleep deeply in suspend Greg Kroah-Hartman
2022-01-24 18:35 ` [PATCH 5.16 0315/1039] mt76: mt7921: use correct iftype data on 6GHz cap init Greg Kroah-Hartman
2022-01-24 18:35 ` [PATCH 5.16 0316/1039] mt76: mt7921s: fix possible kernel crash due to invalid Rx count Greg Kroah-Hartman
2022-01-24 18:35 ` [PATCH 5.16 0317/1039] mt76: connac: fix last_chan configuration in mt76_connac_mcu_rate_txpower_band Greg Kroah-Hartman
2022-01-24 18:35 ` [PATCH 5.16 0318/1039] mt76: mt7921: fix possible resume failure Greg Kroah-Hartman
2022-01-24 18:35 ` [PATCH 5.16 0319/1039] mt76: connac: introduce MCU_EXT macros Greg Kroah-Hartman
2022-01-24 18:35 ` [PATCH 5.16 0320/1039] mt76: connac: align MCU_EXT definitions with 7915 driver Greg Kroah-Hartman
2022-01-24 18:35 ` [PATCH 5.16 0321/1039] mt76: connac: remove MCU_FW_PREFIX bit Greg Kroah-Hartman
2022-01-24 18:35 ` [PATCH 5.16 0322/1039] mt76: connac: introduce MCU_UNI_CMD macro Greg Kroah-Hartman
2022-01-24 18:35 ` [PATCH 5.16 0323/1039] mt76: mt7921s: fix suspend error with enlarging mcu timeout value Greg Kroah-Hartman
2022-01-24 18:35 ` [PATCH 5.16 0324/1039] wilc1000: fix double free error in probe() Greg Kroah-Hartman
2022-01-24 18:35 ` [PATCH 5.16 0325/1039] rtw88: add quirk to disable pci caps on HP 250 G7 Notebook PC Greg Kroah-Hartman
2022-01-24 18:35 ` [PATCH 5.16 0326/1039] rtw88: Disable PCIe ASPM while doing NAPI poll on 8821CE Greg Kroah-Hartman
2022-01-24 18:35 ` [PATCH 5.16 0327/1039] iwlwifi: mvm: fix 32-bit build in FTM Greg Kroah-Hartman
2022-01-24 18:35 ` [PATCH 5.16 0328/1039] iwlwifi: dont pass actual WGDS revision number in table_revision Greg Kroah-Hartman
2022-01-24 18:35 ` [PATCH 5.16 0329/1039] iwlwifi: mvm: test roc running status bits before removing the sta Greg Kroah-Hartman
2022-01-24 18:35 ` [PATCH 5.16 0330/1039] iwlwifi: mvm: perform 6GHz passive scan after suspend Greg Kroah-Hartman
2022-01-24 18:35 ` [PATCH 5.16 0331/1039] iwlwifi: mvm: set protected flag only for NDP ranging Greg Kroah-Hartman
2022-01-24 18:35 ` [PATCH 5.16 0332/1039] mmc: meson-mx-sdhc: add IRQ check Greg Kroah-Hartman
2022-01-24 18:35 ` [PATCH 5.16 0333/1039] mmc: meson-mx-sdio: " Greg Kroah-Hartman
2022-01-24 18:35 ` [PATCH 5.16 0334/1039] block: fix error unwinding in device_add_disk Greg Kroah-Hartman
2022-01-24 18:35 ` [PATCH 5.16 0335/1039] selinux: fix potential memleak in selinux_add_opt() Greg Kroah-Hartman
2022-01-24 18:35 ` [PATCH 5.16 0336/1039] um: fix ndelay/udelay defines Greg Kroah-Hartman
2022-01-24 18:35 ` [PATCH 5.16 0337/1039] um: rename set_signals() to um_set_signals() Greg Kroah-Hartman
2022-01-24 18:35 ` [PATCH 5.16 0338/1039] um: virt-pci: Fix 32-bit compile Greg Kroah-Hartman
2022-01-24 18:35 ` [PATCH 5.16 0339/1039] lib/logic_iomem: Fix 32-bit build Greg Kroah-Hartman
2022-01-24 18:35 ` [PATCH 5.16 0340/1039] lib/logic_iomem: Fix operation on 32-bit Greg Kroah-Hartman
2022-01-24 18:35 ` [PATCH 5.16 0341/1039] um: virtio_uml: Fix time-travel external time propagation Greg Kroah-Hartman
2022-01-24 18:35 ` [PATCH 5.16 0342/1039] Bluetooth: L2CAP: Fix using wrong mode Greg Kroah-Hartman
2022-01-24 18:35 ` [PATCH 5.16 0343/1039] bpftool: Enable line buffering for stdout Greg Kroah-Hartman
2022-01-24 18:35 ` [PATCH 5.16 0344/1039] backlight: qcom-wled: Validate enabled string indices in DT Greg Kroah-Hartman
2022-01-24 18:35 ` [PATCH 5.16 0345/1039] backlight: qcom-wled: Pass number of elements to read to read_u32_array Greg Kroah-Hartman
2022-01-24 18:35 ` [PATCH 5.16 0346/1039] backlight: qcom-wled: Fix off-by-one maximum with default num_strings Greg Kroah-Hartman
2022-01-24 18:35 ` [PATCH 5.16 0347/1039] backlight: qcom-wled: Override default length with qcom,enabled-strings Greg Kroah-Hartman
2022-01-24 18:35 ` [PATCH 5.16 0348/1039] backlight: qcom-wled: Use cpu_to_le16 macro to perform conversion Greg Kroah-Hartman
2022-01-24 18:35 ` [PATCH 5.16 0349/1039] backlight: qcom-wled: Respect enabled-strings in set_brightness Greg Kroah-Hartman
2022-01-24 18:35 ` [PATCH 5.16 0350/1039] software node: fix wrong node passed to find nargs_prop Greg Kroah-Hartman
2022-01-24 18:35 ` [PATCH 5.16 0351/1039] ath11k: Fix unexpected return buffer manager error for QCA6390 Greg Kroah-Hartman
2022-01-24 18:35 ` [PATCH 5.16 0352/1039] mt76: mt7921: fix a possible race enabling/disabling runtime-pm Greg Kroah-Hartman
2022-01-24 18:35 ` [PATCH 5.16 0353/1039] Bluetooth: hci_qca: Stop IBS timer during BT OFF Greg Kroah-Hartman
2022-01-24 18:35 ` [PATCH 5.16 0354/1039] x86/boot/compressed: Move CLANG_FLAGS to beginning of KBUILD_CFLAGS Greg Kroah-Hartman
2022-01-24 18:35 ` [PATCH 5.16 0355/1039] crypto: octeontx2 - prevent underflow in get_cores_bmap() Greg Kroah-Hartman
2022-01-24 18:35 ` [PATCH 5.16 0356/1039] block: null_blk: only set set->nr_maps as 3 if active poll_queues is > 0 Greg Kroah-Hartman
2022-01-24 18:35 ` [PATCH 5.16 0357/1039] regulator: qcom-labibb: OCP interrupts are not a failure while disabled Greg Kroah-Hartman
2022-01-24 18:35 ` [PATCH 5.16 0358/1039] hwmon: (mr75203) fix wrong power-up delay value Greg Kroah-Hartman
2022-01-24 18:35 ` [PATCH 5.16 0359/1039] x86/mce/inject: Avoid out-of-bounds write when setting flags Greg Kroah-Hartman
2022-01-24 18:35 ` [PATCH 5.16 0360/1039] io_uring: remove double poll on poll update Greg Kroah-Hartman
2022-01-24 18:35 ` [PATCH 5.16 0361/1039] bpf: Add missing map_get_next_key method to bloom filter map Greg Kroah-Hartman
2022-01-24 18:35 ` [PATCH 5.16 0362/1039] serial: 8250_bcm7271: Propagate error codes from brcmuart_probe() Greg Kroah-Hartman
2022-01-24 18:35 ` [PATCH 5.16 0363/1039] drm/amd/display: fix dereference before NULL check Greg Kroah-Hartman
2022-01-24 18:35 ` [PATCH 5.16 0364/1039] ACPI: scan: Create platform device for BCM4752 and LNV4752 ACPI nodes Greg Kroah-Hartman
2022-01-24 18:35 ` [PATCH 5.16 0365/1039] pcmcia: rsrc_nonstatic: Fix a NULL pointer dereference in __nonstatic_find_io_region() Greg Kroah-Hartman
2022-01-24 18:35 ` [PATCH 5.16 0366/1039] pcmcia: rsrc_nonstatic: Fix a NULL pointer dereference in nonstatic_find_mem_region() Greg Kroah-Hartman
2022-01-24 18:35 ` [PATCH 5.16 0367/1039] power: reset: mt6397: Check for null res pointer Greg Kroah-Hartman
2022-01-24 18:35 ` [PATCH 5.16 0368/1039] net/xfrm: IPsec tunnel mode fix inner_ipproto setting in sec_path Greg Kroah-Hartman
2022-01-24 18:35 ` [PATCH 5.16 0369/1039] net: ethernet: mtk_eth_soc: fix return values and refactor MDIO ops Greg Kroah-Hartman
2022-01-24 18:35 ` [PATCH 5.16 0370/1039] net: dsa: fix incorrect function pointer check for MRP ring roles Greg Kroah-Hartman
2022-01-24 18:36 ` [PATCH 5.16 0371/1039] netfilter: ipt_CLUSTERIP: fix refcount leak in clusterip_tg_check() Greg Kroah-Hartman
2022-01-24 18:36 ` [PATCH 5.16 0372/1039] bpf, arm64: Use emit_addr_mov_i64() for BPF_PSEUDO_FUNC Greg Kroah-Hartman
2022-01-24 18:36 ` [PATCH 5.16 0373/1039] bpf, sockmap: Fix return codes from tcp_bpf_recvmsg_parser() Greg Kroah-Hartman
2022-01-24 18:36 ` [PATCH 5.16 0374/1039] bpf, sockmap: Fix double bpf_prog_put on error case in map_link Greg Kroah-Hartman
2022-01-24 18:36 ` [PATCH 5.16 0375/1039] bpf: Dont promote bogus looking registers after null check Greg Kroah-Hartman
2022-01-24 18:36 ` [PATCH 5.16 0376/1039] bpf: Fix verifier support for validation of async callbacks Greg Kroah-Hartman
2022-01-24 18:36 ` [PATCH 5.16 0377/1039] bpf: Fix SO_RCVBUF/SO_SNDBUF handling in _bpf_setsockopt() Greg Kroah-Hartman
2022-01-24 18:36 ` [PATCH 5.16 0378/1039] libbpf: Use probe_name for legacy kprobe Greg Kroah-Hartman
2022-01-24 18:36 ` [PATCH 5.16 0379/1039] netfilter: nft_payload: do not update layer 4 checksum when mangling fragments Greg Kroah-Hartman
2022-01-24 18:36 ` [PATCH 5.16 0380/1039] netfilter: nft_set_pipapo: allocate pcpu scratch maps on clone Greg Kroah-Hartman
2022-01-24 18:36 ` [PATCH 5.16 0381/1039] net: fix SOF_TIMESTAMPING_BIND_PHC to work with multiple sockets Greg Kroah-Hartman
2022-01-24 18:36 ` [PATCH 5.16 0382/1039] ppp: ensure minimum packet size in ppp_write() Greg Kroah-Hartman
2022-01-24 18:36 ` [PATCH 5.16 0383/1039] rocker: fix a sleeping in atomic bug Greg Kroah-Hartman
2022-01-24 18:36 ` [PATCH 5.16 0384/1039] staging: greybus: audio: Check null pointer Greg Kroah-Hartman
2022-01-24 18:36 ` [PATCH 5.16 0385/1039] fsl/fman: Check for null pointer after calling devm_ioremap Greg Kroah-Hartman
2022-01-24 18:36 ` [PATCH 5.16 0386/1039] Bluetooth: hci_bcm: Check for error irq Greg Kroah-Hartman
2022-01-24 18:36 ` [PATCH 5.16 0387/1039] Bluetooth: hci_qca: Fix NULL vs IS_ERR_OR_NULL check in qca_serdev_probe Greg Kroah-Hartman
2022-01-24 18:36 ` [PATCH 5.16 0388/1039] net/smc: Reset conn->lgr when link group registration fails Greg Kroah-Hartman
2022-01-24 18:36 ` [PATCH 5.16 0389/1039] usb: dwc3: qcom: Fix NULL vs IS_ERR checking in dwc3_qcom_probe Greg Kroah-Hartman
2022-01-24 18:36 ` [PATCH 5.16 0390/1039] usb: dwc2: do not gate off the hardware if it does not support clock gating Greg Kroah-Hartman
2022-01-24 18:36 ` [PATCH 5.16 0391/1039] usb: dwc2: gadget: initialize max_speed from params Greg Kroah-Hartman
2022-01-24 18:36 ` [PATCH 5.16 0392/1039] usb: gadget: u_audio: fix calculations for small bInterval Greg Kroah-Hartman
2022-01-24 18:36 ` [PATCH 5.16 0393/1039] usb: gadget: u_audio: Subdevice 0 for capture ctls Greg Kroah-Hartman
2022-01-24 18:36 ` [PATCH 5.16 0394/1039] HID: hid-uclogic-params: Invalid parameter check in uclogic_params_init Greg Kroah-Hartman
2022-01-24 18:36 ` [PATCH 5.16 0395/1039] HID: hid-uclogic-params: Invalid parameter check in uclogic_params_get_str_desc Greg Kroah-Hartman
2022-01-24 18:36 ` [PATCH 5.16 0396/1039] HID: hid-uclogic-params: Invalid parameter check in uclogic_params_huion_init Greg Kroah-Hartman
2022-01-24 18:36 ` [PATCH 5.16 0397/1039] HID: hid-uclogic-params: Invalid parameter check in uclogic_params_frame_init_v1_buttonpad Greg Kroah-Hartman
2022-01-24 18:36 ` [PATCH 5.16 0398/1039] debugfs: lockdown: Allow reading debugfs files that are not world readable Greg Kroah-Hartman
2022-01-24 18:36 ` [PATCH 5.16 0399/1039] drivers/firmware: Add missing platform_device_put() in sysfb_create_simplefb Greg Kroah-Hartman
2022-01-24 18:36 ` [PATCH 5.16 0400/1039] serial: liteuart: fix MODULE_ALIAS Greg Kroah-Hartman
2022-01-24 18:36 ` [PATCH 5.16 0401/1039] serial: stm32: move tx dma terminate DMA to shutdown Greg Kroah-Hartman
2022-01-24 18:36 ` [PATCH 5.16 0402/1039] spi: qcom: geni: set the error code for gpi transfer Greg Kroah-Hartman
2022-01-24 18:36 ` [PATCH 5.16 0403/1039] spi: qcom: geni: handle timeout for gpi mode Greg Kroah-Hartman
2022-01-24 18:36 ` [PATCH 5.16 0404/1039] x86, sched: Fix undefined reference to init_freq_invariance_cppc() build error Greg Kroah-Hartman
2022-01-24 18:36 ` [PATCH 5.16 0405/1039] net/mlx5e: Fix page DMA map/unmap attributes Greg Kroah-Hartman
2022-01-24 18:36 ` [PATCH 5.16 0406/1039] net/mlx5e: Fix nullptr on deleting mirroring rule Greg Kroah-Hartman
2022-01-24 18:36 ` [PATCH 5.16 0407/1039] net/mlx5e: Fix wrong usage of fib_info_nh when routes with nexthop objects are used Greg Kroah-Hartman
2022-01-24 18:36 ` [PATCH 5.16 0408/1039] net/mlx5e: Dont block routes with nexthop objects in SW Greg Kroah-Hartman
2022-01-24 18:36 ` [PATCH 5.16 0409/1039] Revert "net/mlx5e: Block offload of outer header csum for UDP tunnels" Greg Kroah-Hartman
2022-01-24 18:36 ` [PATCH 5.16 0410/1039] Revert "net/mlx5e: Block offload of outer header csum for GRE tunnel" Greg Kroah-Hartman
2022-01-24 18:36 ` [PATCH 5.16 0411/1039] net/mlx5e: Fix matching on modified inner ip_ecn bits Greg Kroah-Hartman
2022-01-24 18:36 ` [PATCH 5.16 0412/1039] net/mlx5: Fix access to sf_dev_table on allocation failure Greg Kroah-Hartman
2022-01-24 18:36 ` [PATCH 5.16 0413/1039] net/mlx5e: Sync VXLAN udp ports during uplink representor profile change Greg Kroah-Hartman
2022-01-24 18:36 ` [PATCH 5.16 0414/1039] net/mlx5: Set command entry semaphore up once got index free Greg Kroah-Hartman
2022-01-24 18:36 ` [PATCH 5.16 0415/1039] lib/mpi: Add the return value check of kcalloc() Greg Kroah-Hartman
2022-01-24 18:36 ` [PATCH 5.16 0416/1039] Bluetooth: L2CAP: uninitialized variables in l2cap_sock_setsockopt() Greg Kroah-Hartman
2022-01-24 18:36 ` [PATCH 5.16 0417/1039] Bluetooth: hci_sock: fix endian bug in hci_sock_setsockopt() Greg Kroah-Hartman
2022-01-24 18:36 ` [PATCH 5.16 0418/1039] mptcp: fix per socket endpoint accounting Greg Kroah-Hartman
2022-01-24 18:36 ` [PATCH 5.16 0419/1039] mptcp: fix opt size when sending DSS + MP_FAIL Greg Kroah-Hartman
2022-01-24 18:36 ` [PATCH 5.16 0420/1039] mptcp: fix a DSS option writing error Greg Kroah-Hartman
2022-01-24 18:36 ` [PATCH 5.16 0421/1039] mptcp: Check reclaim amount before reducing allocation Greg Kroah-Hartman
2022-01-24 18:36 ` [PATCH 5.16 0422/1039] spi: spi-meson-spifc: Add missing pm_runtime_disable() in meson_spifc_probe Greg Kroah-Hartman
2022-01-24 18:36 ` [PATCH 5.16 0423/1039] octeontx2-af: Increment ptp refcount before use Greg Kroah-Hartman
2022-01-24 18:36 ` [PATCH 5.16 0424/1039] octeontx2-nicvf: Free VF PTP resources Greg Kroah-Hartman
2022-01-24 18:36 ` [PATCH 5.16 0425/1039] ax25: uninitialized variable in ax25_setsockopt() Greg Kroah-Hartman
2022-01-24 18:36 ` [PATCH 5.16 0426/1039] netrom: fix api breakage in nr_setsockopt() Greg Kroah-Hartman
2022-01-24 18:36 ` [PATCH 5.16 0427/1039] regmap: Call regmap_debugfs_exit() prior to _init() Greg Kroah-Hartman
2022-01-24 18:36 ` [PATCH 5.16 0428/1039] net: mscc: ocelot: fix incorrect balancing with down LAG ports Greg Kroah-Hartman
2022-01-24 18:36 ` [PATCH 5.16 0429/1039] octeontx2-af: Fix interrupt name strings Greg Kroah-Hartman
2022-01-24 18:36 ` [PATCH 5.16 0430/1039] can: mcp251xfd: add missing newline to printed strings Greg Kroah-Hartman
2022-01-24 18:37 ` [PATCH 5.16 0431/1039] tpm: add request_locality before write TPM_INT_ENABLE Greg Kroah-Hartman
2022-01-24 18:37 ` [PATCH 5.16 0432/1039] tpm_tis: Fix an error handling path in tpm_tis_core_init() Greg Kroah-Hartman
2022-01-24 18:37 ` [PATCH 5.16 0433/1039] can: softing: softing_startstop(): fix set but not used variable warning Greg Kroah-Hartman
2022-01-24 18:37 ` [PATCH 5.16 0434/1039] can: xilinx_can: xcan_probe(): check for error irq Greg Kroah-Hartman
2022-01-24 18:37 ` [PATCH 5.16 0435/1039] can: rcar_canfd: rcar_canfd_channel_probe(): make sure we free CAN network device Greg Kroah-Hartman
2022-01-24 18:37 ` [PATCH 5.16 0436/1039] pcmcia: fix setting of kthread task states Greg Kroah-Hartman
2022-01-24 18:37 ` [PATCH 5.16 0437/1039] netfilter: egress: avoid a lockdep splat Greg Kroah-Hartman
2022-01-24 18:37 ` [PATCH 5.16 0438/1039] net: openvswitch: Fix ct_state nat flags for conns arriving from tc Greg Kroah-Hartman
2022-01-24 18:37 ` [PATCH 5.16 0439/1039] iwlwifi: mvm: Use div_s64 instead of do_div in iwl_mvm_ftm_rtt_smoothing() Greg Kroah-Hartman
2022-01-24 18:37 ` [PATCH 5.16 0440/1039] bnxt_en: use firmware provided max timeout for messages Greg Kroah-Hartman
2022-01-24 18:37 ` [PATCH 5.16 0441/1039] net: mcs7830: handle usb read errors properly Greg Kroah-Hartman
2022-01-24 18:37 ` [PATCH 5.16 0442/1039] amt: fix wrong return type of amt_send_membership_update() Greg Kroah-Hartman
2022-01-24 18:37 ` [PATCH 5.16 0443/1039] ext4: avoid trim error on fs with small groups Greg Kroah-Hartman
2022-01-24 18:37 ` [PATCH 5.16 0444/1039] ASoC: Intel: sof_sdw: fix jack detection on HP Spectre x360 convertible Greg Kroah-Hartman
2022-01-24 18:37 ` [PATCH 5.16 0445/1039] ALSA: jack: Add missing rwsem around snd_ctl_remove() calls Greg Kroah-Hartman
2022-01-24 18:37 ` [PATCH 5.16 0446/1039] ALSA: PCM: " Greg Kroah-Hartman
2022-01-24 18:37 ` [PATCH 5.16 0447/1039] ALSA: hda: " Greg Kroah-Hartman
2022-01-24 18:37 ` [PATCH 5.16 0448/1039] ALSA: hda: Fix potential deadlock at codec unbinding Greg Kroah-Hartman
2022-01-24 18:37 ` [PATCH 5.16 0449/1039] RDMA/bnxt_re: Scan the whole bitmap when checking if "disabling RCFW with pending cmd-bit" Greg Kroah-Hartman
2022-01-24 18:37 ` [PATCH 5.16 0450/1039] RDMA/hns: Validate the pkey index Greg Kroah-Hartman
2022-01-24 18:37 ` [PATCH 5.16 0451/1039] scsi: pm80xx: Update WARN_ON check in pm8001_mpi_build_cmd() Greg Kroah-Hartman
2022-01-24 18:37 ` [PATCH 5.16 0452/1039] clk: renesas: rzg2l: Check return value of pm_genpd_init() Greg Kroah-Hartman
2022-01-24 18:37 ` [PATCH 5.16 0453/1039] clk: renesas: rzg2l: propagate return value of_genpd_add_provider_simple() Greg Kroah-Hartman
2022-01-24 18:37 ` [PATCH 5.16 0454/1039] clk: imx8mn: Fix imx8mn_clko1_sels Greg Kroah-Hartman
2022-01-24 18:37 ` [PATCH 5.16 0455/1039] ASoC: cs42l42: Report initial jack state Greg Kroah-Hartman
2022-01-24 18:37 ` [PATCH 5.16 0456/1039] powerpc/prom_init: Fix improper check of prom_getprop() Greg Kroah-Hartman
2022-01-24 18:37 ` [PATCH 5.16 0457/1039] ASoC: uniphier: drop selecting non-existing SND_SOC_UNIPHIER_AIO_DMA Greg Kroah-Hartman
2022-01-24 18:37 ` [PATCH 5.16 0458/1039] ASoC: codecs: wcd938x: add SND_SOC_WCD938_SDW to codec list instead Greg Kroah-Hartman
2022-01-24 18:37 ` [PATCH 5.16 0459/1039] RDMA/rtrs-clt: Fix the initial value of min_latency Greg Kroah-Hartman
2022-01-24 18:37 ` [PATCH 5.16 0460/1039] ALSA: hda: Make proper use of timecounter Greg Kroah-Hartman
2022-01-24 18:37 ` [PATCH 5.16 0461/1039] dt-bindings: thermal: Fix definition of cooling-maps contribution property Greg Kroah-Hartman
2022-01-24 18:37 ` [PATCH 5.16 0462/1039] powerpc/perf: Fix PMU callbacks to clear pending PMI before resetting an overflown PMC Greg Kroah-Hartman
2022-01-24 18:37 ` [PATCH 5.16 0463/1039] powerpc/modules: Dont WARN on first module allocation attempt Greg Kroah-Hartman
2022-01-24 18:37 ` [PATCH 5.16 0464/1039] powerpc/32s: Fix shift-out-of-bounds in KASAN init Greg Kroah-Hartman
2022-01-24 18:37 ` [PATCH 5.16 0465/1039] clocksource: Avoid accidental unstable marking of clocksources Greg Kroah-Hartman
2022-01-24 18:37 ` [PATCH 5.16 0466/1039] ALSA: oss: fix compile error when OSS_DEBUG is enabled Greg Kroah-Hartman
2022-01-24 18:37 ` [PATCH 5.16 0467/1039] ALSA: usb-audio: Drop superfluous 0 in Presonus Studio 1810cs ID Greg Kroah-Hartman
2022-01-24 18:37 ` [PATCH 5.16 0468/1039] ASoC: amd: Fix dependency for SPI master Greg Kroah-Hartman
2022-01-24 18:37 ` [PATCH 5.16 0469/1039] misc: at25: Make driver OF independent again Greg Kroah-Hartman
2022-01-24 18:37 ` [PATCH 5.16 0470/1039] char/mwave: Adjust io port register size Greg Kroah-Hartman
2022-01-24 18:37 ` [PATCH 5.16 0471/1039] binder: fix handling of error during copy Greg Kroah-Hartman
2022-01-24 18:37 ` [PATCH 5.16 0472/1039] binder: avoid potential data leakage when copying txn Greg Kroah-Hartman
2022-01-24 18:37 ` [PATCH 5.16 0473/1039] openrisc: Add clone3 ABI wrapper Greg Kroah-Hartman
2022-01-24 18:37 ` [PATCH 5.16 0474/1039] uio: uio_dmem_genirq: Catch the Exception Greg Kroah-Hartman
2022-01-24 18:37 ` [PATCH 5.16 0475/1039] iommu: Extend mutex lock scope in iommu_probe_device() Greg Kroah-Hartman
2022-01-24 18:37 ` [PATCH 5.16 0476/1039] iommu/io-pgtable-arm: Fix table descriptor paddr formatting Greg Kroah-Hartman
2022-01-24 18:37 ` [PATCH 5.16 0477/1039] ASoC: SOF: Intel: fix build issue related to CODEC_PROBE_ENTRIES Greg Kroah-Hartman
2022-01-24 18:37 ` [PATCH 5.16 0478/1039] scsi: core: Fix scsi_device_max_queue_depth() Greg Kroah-Hartman
2022-01-24 18:37 ` [PATCH 5.16 0479/1039] scsi: ufs: Fix race conditions related to driver data Greg Kroah-Hartman
2022-01-24 18:37 ` [PATCH 5.16 0480/1039] RDMA/qedr: Fix reporting max_{send/recv}_wr attrs Greg Kroah-Hartman
2022-01-24 18:37 ` [PATCH 5.16 0481/1039] PCI/MSI: Fix pci_irq_vector()/pci_irq_get_affinity() Greg Kroah-Hartman
2022-01-24 18:37 ` [PATCH 5.16 0482/1039] powerpc/powermac: Add additional missing lockdep_register_key() Greg Kroah-Hartman
2022-01-24 18:37 ` [PATCH 5.16 0483/1039] iommu/arm-smmu-qcom: Fix TTBR0 read Greg Kroah-Hartman
2022-01-24 18:37 ` [PATCH 5.16 0484/1039] RDMA/core: Let ib_find_gid() continue search even after empty entry Greg Kroah-Hartman
2022-01-24 18:37 ` [PATCH 5.16 0485/1039] RDMA/cma: Let cma_resolve_ib_dev() " Greg Kroah-Hartman
2022-01-24 18:37 ` [PATCH 5.16 0486/1039] ASoC: rt5663: Handle device_property_read_u32_array error codes Greg Kroah-Hartman
2022-01-24 18:37 ` [PATCH 5.16 0487/1039] of: unittest: fix warning on PowerPC frame size warning Greg Kroah-Hartman
2022-01-24 18:37 ` [PATCH 5.16 0488/1039] of: unittest: 64 bit dma address test requires arch support Greg Kroah-Hartman
2022-01-24 18:37 ` [PATCH 5.16 0489/1039] clk: stm32: Fix ltdcs clock turn off by clk_disable_unused() after system enter shell Greg Kroah-Hartman
2022-01-24 18:37 ` [PATCH 5.16 0490/1039] mips: add SYS_HAS_CPU_MIPS64_R5 config for MIPS Release 5 support Greg Kroah-Hartman
2022-01-24 18:38 ` [PATCH 5.16 0491/1039] mips: fix Kconfig reference to PHYS_ADDR_T_64BIT Greg Kroah-Hartman
2022-01-24 18:38 ` [PATCH 5.16 0492/1039] dmaengine: pxa/mmp: stop referencing config->slave_id Greg Kroah-Hartman
2022-01-24 18:38 ` [PATCH 5.16 0493/1039] iommu/amd: Restore GA log/tail pointer on host resume Greg Kroah-Hartman
2022-01-24 18:38 ` [PATCH 5.16 0494/1039] iommu/amd: X2apic mode: re-enable after resume Greg Kroah-Hartman
2022-01-24 18:38 ` [PATCH 5.16 0495/1039] iommu/amd: X2apic mode: setup the INTX registers on mask/unmask Greg Kroah-Hartman
2022-01-24 18:38 ` [PATCH 5.16 0496/1039] iommu/amd: X2apic mode: mask/unmask interrupts on suspend/resume Greg Kroah-Hartman
2022-01-24 18:38 ` [PATCH 5.16 0497/1039] iommu/amd: Remove useless irq affinity notifier Greg Kroah-Hartman
2022-01-24 18:38 ` [PATCH 5.16 0498/1039] ASoC: Intel: catpt: Test dmaengine_submit() result before moving on Greg Kroah-Hartman
2022-01-24 18:38 ` [PATCH 5.16 0499/1039] iommu/iova: Fix race between FQ timeout and teardown Greg Kroah-Hartman
2022-01-24 18:38 ` [PATCH 5.16 0500/1039] ASoC: mediatek: mt8195: correct default value Greg Kroah-Hartman
2022-01-24 18:38 ` [PATCH 5.16 0501/1039] counter: 104-quad-8: Fix persistent enabled events bug Greg Kroah-Hartman
2022-01-24 18:38 ` [PATCH 5.16 0502/1039] of: fdt: Aggregate the processing of "linux,usable-memory-range" Greg Kroah-Hartman
2022-01-24 18:38 ` [PATCH 5.16 0503/1039] efi: apply memblock cap after memblock_add() Greg Kroah-Hartman
2022-01-24 18:38 ` [PATCH 5.16 0504/1039] scsi: block: pm: Always set request queue runtime active in blk_post_runtime_resume() Greg Kroah-Hartman
2022-01-24 18:38 ` [PATCH 5.16 0505/1039] phy: uniphier-usb3ss: fix unintended writing zeros to PHY register Greg Kroah-Hartman
2022-01-24 18:38 ` [PATCH 5.16 0506/1039] ASoC: mediatek: Check for error clk pointer Greg Kroah-Hartman
2022-01-24 18:38 ` [PATCH 5.16 0507/1039] powerpc/64s: Mask NIP before checking against SRR0 Greg Kroah-Hartman
2022-01-24 18:38 ` [PATCH 5.16 0508/1039] powerpc/64s: Use EMIT_WARN_ENTRY for SRR debug warnings Greg Kroah-Hartman
2022-01-24 18:38 ` [PATCH 5.16 0509/1039] phy: cadence: Sierra: Fix to get correct parent for mux clocks Greg Kroah-Hartman
2022-01-24 18:38 ` [PATCH 5.16 0510/1039] iio: chemical: sunrise_co2: set val parameter only on success Greg Kroah-Hartman
2022-01-24 18:38 ` [PATCH 5.16 0511/1039] ASoC: samsung: idma: Check of ioremap return value Greg Kroah-Hartman
2022-01-24 18:38 ` [PATCH 5.16 0512/1039] misc: lattice-ecp3-config: Fix task hung when firmware load failed Greg Kroah-Hartman
2022-01-24 18:38 ` [PATCH 5.16 0513/1039] ASoC: mediatek: mt8195: correct pcmif BE dai control flow Greg Kroah-Hartman
2022-01-24 18:38 ` [PATCH 5.16 0514/1039] arm64: tegra: Remove non existent Tegra194 reset Greg Kroah-Hartman
2022-01-24 18:38 ` [PATCH 5.16 0515/1039] mips: lantiq: add support for clk_set_parent() Greg Kroah-Hartman
2022-01-24 18:38 ` [PATCH 5.16 0516/1039] mips: bcm63xx: " Greg Kroah-Hartman
2022-01-24 18:38 ` [PATCH 5.16 0517/1039] powerpc/xive: Add missing null check after calling kmalloc Greg Kroah-Hartman
2022-01-24 18:38 ` [PATCH 5.16 0518/1039] ASoC: fsl_mqs: fix MODULE_ALIAS Greg Kroah-Hartman
2022-01-24 18:38 ` [PATCH 5.16 0519/1039] ALSA: hda/cs8409: Increase delay during jack detection Greg Kroah-Hartman
2022-01-24 18:38 ` [PATCH 5.16 0520/1039] ALSA: hda/cs8409: Fix Jack detection after resume Greg Kroah-Hartman
2022-01-24 18:38 ` [PATCH 5.16 0521/1039] cxl/core: Remove cxld_const_init in cxl_decoder_alloc() Greg Kroah-Hartman
2022-01-24 18:38 ` [PATCH 5.16 0522/1039] MIPS: fix local_{add,sub}_return on MIPS64 Greg Kroah-Hartman
2022-01-24 18:38 ` [PATCH 5.16 0523/1039] RDMA/cxgb4: Set queue pair state when being queried Greg Kroah-Hartman
2022-01-24 18:38 ` [PATCH 5.16 0524/1039] clk: qcom: gcc-sc7280: Mark gcc_cfg_noc_lpass_clk always enabled Greg Kroah-Hartman
2022-01-24 18:38 ` [PATCH 5.16 0525/1039] ASoC: imx-card: Need special setting for ak4497 on i.MX8MQ Greg Kroah-Hartman
2022-01-24 18:38 ` [PATCH 5.16 0526/1039] ASoC: imx-card: Fix mclk calculation issue for akcodec Greg Kroah-Hartman
2022-01-24 18:38 ` [PATCH 5.16 0527/1039] ASoC: imx-card: improve the sound quality for low rate Greg Kroah-Hartman
2022-01-24 18:38 ` [PATCH 5.16 0528/1039] ASoC: fsl_asrc: refine the check of available clock divider Greg Kroah-Hartman
2022-01-24 18:38 ` [PATCH 5.16 0529/1039] clk: bm1880: remove kfrees on static allocations Greg Kroah-Hartman
2022-01-24 18:38 ` [PATCH 5.16 0530/1039] of: base: Fix phandle argument length mismatch error message Greg Kroah-Hartman
2022-01-24 18:38 ` [PATCH 5.16 0531/1039] of/fdt: Dont worry about non-memory region overlap for no-map Greg Kroah-Hartman
2022-01-24 18:38 ` [PATCH 5.16 0532/1039] MIPS: compressed: Fix build with ZSTD compression Greg Kroah-Hartman
2022-01-24 18:38 ` [PATCH 5.16 0533/1039] mailbox: fix gce_num of mt8192 driver data Greg Kroah-Hartman
2022-01-24 18:38 ` [PATCH 5.16 0534/1039] mailbox: imx: Fix an IS_ERR() vs NULL bug Greg Kroah-Hartman
2022-01-24 18:38 ` [PATCH 5.16 0535/1039] mailbox: pcc: Avoid using the uninitialized variable dev Greg Kroah-Hartman
2022-01-24 18:38 ` [PATCH 5.16 0536/1039] mailbox: pcc: Handle all PCC subtypes correctly in pcc_mbox_irq Greg Kroah-Hartman
2022-01-24 18:38 ` [PATCH 5.16 0537/1039] ARM: dts: omap3-n900: Fix lp5523 for multi color Greg Kroah-Hartman
2022-01-24 18:38 ` [PATCH 5.16 0538/1039] leds: lp55xx: initialise output direction from dts Greg Kroah-Hartman
2022-01-24 18:38 ` [PATCH 5.16 0539/1039] Bluetooth: hci_sock: purge socket queues in the destruct() callback Greg Kroah-Hartman
2022-01-24 18:38 ` [PATCH 5.16 0540/1039] Bluetooth: Fix debugfs entry leak in hci_register_dev() Greg Kroah-Hartman
2022-01-24 18:38 ` [PATCH 5.16 0541/1039] Bluetooth: Fix memory leak of hci device Greg Kroah-Hartman
2022-01-24 18:38 ` [PATCH 5.16 0542/1039] drm/panel: Delete panel on mipi_dsi_attach() failure Greg Kroah-Hartman
2022-01-24 18:38 ` [PATCH 5.16 0543/1039] Bluetooth: Fix removing adv when processing cmd complete Greg Kroah-Hartman
2022-01-24 18:38 ` [PATCH 5.16 0544/1039] drm/sched: Avoid lockdep spalt on killing a processes Greg Kroah-Hartman
2022-01-24 18:38 ` [PATCH 5.16 0545/1039] fs: dlm: filter user dlm messages for kernel locks Greg Kroah-Hartman
2022-01-24 18:38 ` [PATCH 5.16 0546/1039] libbpf: Detect corrupted ELF symbols section Greg Kroah-Hartman
2022-01-24 18:38 ` [PATCH 5.16 0547/1039] libbpf: Improve sanity checking during BTF fix up Greg Kroah-Hartman
2022-01-24 18:38 ` [PATCH 5.16 0548/1039] libbpf: Validate that .BTF and .BTF.ext sections contain data Greg Kroah-Hartman
2022-01-24 18:38 ` [PATCH 5.16 0549/1039] drm/lima: fix warning when CONFIG_DEBUG_SG=y & CONFIG_DMA_API_DEBUG=y Greg Kroah-Hartman
2022-01-24 18:38 ` [PATCH 5.16 0550/1039] selftests/bpf: Fix memory leaks in btf_type_c_dump() helper Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.16 0551/1039] selftests/bpf: Destroy XDP link correctly Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.16 0552/1039] selftests/bpf: Fix bpf_object leak in skb_ctx selftest Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.16 0553/1039] ar5523: Fix null-ptr-deref with unexpected WDCMSG_TARGET_START reply Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.16 0554/1039] drm/bridge: dw-hdmi: handle ELD when DRM_BRIDGE_ATTACH_NO_CONNECTOR Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.16 0555/1039] drm/nouveau/pmu/gm200-: avoid touching PMU outside of DEVINIT/PREOS/ACR Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.16 0556/1039] media: atomisp: fix try_fmt logic Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.16 0557/1039] media: atomisp: set per-devices default mode Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.16 0558/1039] media: atomisp-ov2680: Fix ov2680_set_fmt() clobbering the exposure Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.16 0559/1039] media: atomisp: check before deference asd variable Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.16 0560/1039] ARM: shmobile: rcar-gen2: Add missing of_node_put() Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.16 0561/1039] ath11k: enable IEEE80211_VHT_EXT_NSS_BW_CAPABLE if NSS ratio enabled Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.16 0562/1039] batman-adv: allow netlink usage in unprivileged containers Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.16 0563/1039] bpf: Change value of MAX_TAIL_CALL_CNT from 32 to 33 Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.16 0564/1039] media: atomisp: handle errors at sh_css_create_isp_params() Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.16 0565/1039] ath11k: Fix crash caused by uninitialized TX ring Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.16 0566/1039] usb: dwc3: meson-g12a: fix shared reset control use Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.16 0567/1039] USB: ehci_brcm_hub_control: Improve port index sanitizing Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.16 0568/1039] usb: gadget: f_fs: Use stream_open() for endpoint files Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.16 0569/1039] psi: Fix PSI_MEM_FULL state when tasks are in memstall and doing reclaim Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.16 0570/1039] drm: panel-orientation-quirks: Add quirk for the Lenovo Yoga Book X91F/L Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.16 0571/1039] HID: magicmouse: Report battery level over USB Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.16 0572/1039] HID: apple: Do not reset quirks when the Fn key is not found Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.16 0573/1039] media: b2c2: Add missing check in flexcop_pci_isr: Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.16 0574/1039] libbpf: Accommodate DWARF/compiler bug with duplicated structs Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.16 0575/1039] ethernet: renesas: Use div64_ul instead of do_div Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.16 0576/1039] EDAC/synopsys: Use the quirk for version instead of ddr version Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.16 0577/1039] arm64: dts: qcom: sm[68]350: Use interrupts-extended with pdc interrupts Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.16 0578/1039] arm64: dts: qcom: sm8350: Shorten camera-thermal-bottom name Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.16 0579/1039] soc: imx: gpcv2: Synchronously suspend MIX domains Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.16 0580/1039] ARM: imx: rename DEBUG_IMX21_IMX27_UART to DEBUG_IMX27_UART Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.16 0581/1039] ath11k: Fix mon status ring rx tlv processing Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.16 0582/1039] drm/amd/display: check top_pipe_to_program pointer Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.16 0583/1039] drm/amdgpu/display: set vblank_disable_immediate for DC Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.16 0584/1039] soc: ti: pruss: fix referenced node in error message Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.16 0585/1039] mlxsw: pci: Add shutdown method in PCI driver Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.16 0586/1039] drm/amd/display: add else to avoid double destroy clk_mgr Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.16 0587/1039] drm/bridge: megachips: Ensure both bridges are probed before registration Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.16 0588/1039] mxser: keep only !tty test in ISR Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.16 0589/1039] mxser: dont throttle manually Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.16 0590/1039] mxser: increase buf_overrun if tty_insert_flip_char() fails Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.16 0591/1039] serial: 8250_dw: Add StarFive JH7100 quirk Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.16 0592/1039] tty: serial: imx: disable UCR4_OREN in .stop_rx() instead of .shutdown() Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.16 0593/1039] gpiolib: acpi: Do not set the IRQ type if the IRQ is already in use Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.16 0594/1039] HSI: core: Fix return freed object in hsi_new_client Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.16 0595/1039] crypto: jitter - consider 32 LSB for APT Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.16 0596/1039] rtw89: fix potentially access out of range of RF register array Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.16 0597/1039] mwifiex: Fix skb_over_panic in mwifiex_usb_recv() Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.16 0598/1039] rsi: Fix use-after-free in rsi_rx_done_handler() Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.16 0599/1039] rsi: Fix out-of-bounds read in rsi_read_pkt() Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.16 0600/1039] ath11k: Avoid NULL ptr access during mgmt tx cleanup Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.16 0601/1039] media: venus: avoid calling core_clk_setrate() concurrently during concurrent video sessions Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.16 0602/1039] regulator: da9121: Prevent current limit change when enabled Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.16 0603/1039] drm/vmwgfx: Release ttm memory if probe fails Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.16 0604/1039] drm/vmwgfx: Introduce a new placement for MOB page tables Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.16 0605/1039] ACPI / x86: Drop PWM2 device on Lenovo Yoga Book from always present table Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.16 0606/1039] ACPI: Change acpi_device_always_present() into acpi_device_override_status() Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.16 0607/1039] ACPI / x86: Allow specifying acpi_device_override_status() quirks by path Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.16 0608/1039] ACPI / x86: Add not-present quirk for the PCI0.SDHB.BRC1 device on the GPD win Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.16 0609/1039] drm: Return error codes from struct drm_driver.gem_create_object Greg Kroah-Hartman
2022-01-24 18:39 ` [PATCH 5.16 0610/1039] drm/amd/display: Use oriented source size when checking cursor scaling Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.16 0611/1039] arm64: dts: ti: j7200-main: Fix dtbs_check serdes_ln_ctrl node Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.16 0612/1039] arm64: dts: ti: j721e-main: Fix dtbs_check in " Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.16 0613/1039] usb: uhci: add aspeed ast2600 uhci support Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.16 0614/1039] floppy: Add max size check for user space request Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.16 0615/1039] x86/mm: Flush global TLB when switching to trampoline page-table Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.16 0616/1039] drm: rcar-du: Fix CRTC timings when CMM is used Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.16 0617/1039] media: uvcvideo: Increase UVC_CTRL_CONTROL_TIMEOUT to 5 seconds Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.16 0618/1039] media: rcar-vin: Update format alignment constraints Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.16 0619/1039] media: saa7146: hexium_orion: Fix a NULL pointer dereference in hexium_attach() Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.16 0620/1039] media: atomisp: fix "variable dereferenced before check asd" Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.16 0621/1039] media: m920x: dont use stack on USB reads Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.16 0622/1039] thunderbolt: Runtime PM activate both ends of the device link Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.16 0623/1039] arm64: dts: renesas: Fix thermal bindings Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.16 0624/1039] iwlwifi: mvm: synchronize with FW after multicast commands Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.16 0625/1039] iwlwifi: mvm: avoid clearing a just saved session protection id Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.16 0626/1039] iwlwifi: acpi: fix wgds rev 3 size Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.16 0627/1039] rcutorture: Avoid soft lockup during cpu stall Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.16 0628/1039] ath11k: avoid deadlock by change ieee80211_queue_work for regd_update_work Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.16 0629/1039] ath10k: Fix tx hanging Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.16 0630/1039] rtw89: dont kick off TX DMA if failed to write skb Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.16 0631/1039] net-sysfs: update the queue counts in the unregistration path Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.16 0632/1039] ath10k: drop beacon and probe response which leak from other channel Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.16 0633/1039] net: phy: prefer 1000baseT over 1000baseKX Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.16 0634/1039] gpio: aspeed: Convert aspeed_gpio.lock to raw_spinlock Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.16 0635/1039] gpio: aspeed-sgpio: Convert aspeed_sgpio.lock " Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.16 0636/1039] selftests/ftrace: make kprobe profile testcase description unique Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.16 0637/1039] arm64: dts: rockchip: Fix Bluetooth on ROCK Pi 4 boards Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.16 0638/1039] ath11k: Avoid false DEADLOCK warning reported by lockdep Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.16 0639/1039] ARM: dts: qcom: sdx55: fix IPA interconnect definitions Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.16 0640/1039] x86/mce: Allow instrumentation during task work queueing Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.16 0641/1039] x86/mce: Prevent severity computation from being instrumented Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.16 0642/1039] x86/mce: Mark mce_panic() noinstr Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.16 0643/1039] x86/mce: Mark mce_end() noinstr Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.16 0644/1039] x86/mce: Mark mce_read_aux() noinstr Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.16 0645/1039] net: bonding: debug: avoid printing debug logs when bond is not notifying peers Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.16 0646/1039] kunit: Dont crash if no parameters are generated Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.16 0647/1039] bpf: Do not WARN in bpf_warn_invalid_xdp_action() Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.16 0648/1039] drm/amdkfd: Fix error handling in svm_range_add Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.16 0649/1039] drm/amdgpu: fix amdgpu_ras_mca_query_error_status scope Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.16 0650/1039] HID: quirks: Allow inverting the absolute X/Y values Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.16 0651/1039] HID: i2c-hid-of: Expose the touchscreen-inverted properties Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.16 0652/1039] media: igorplugusb: receiver overflow should be reported Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.16 0653/1039] media: rockchip: rkisp1: use device name for debugfs subdir name Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.16 0654/1039] media: saa7146: hexium_gemini: Fix a NULL pointer dereference in hexium_attach() Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.16 0655/1039] mmc: tmio: reinit card irqs in reset routine Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.16 0656/1039] mmc: core: Fixup storing of OCR for MMC_QUIRK_NONSTD_SDIO Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.16 0657/1039] mmc: omap_hsmmc: Revert special init for wl1251 Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.16 0658/1039] drm/amd/amdgpu: fix psp tmr bo pin count leak in SRIOV Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.16 0659/1039] drm/amd/amdgpu: fix gmc " Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.16 0660/1039] audit: ensure userspace is penalized the same as the kernel when under pressure Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.16 0661/1039] arm64: dts: ls1028a-qds: move rtc node to the correct i2c bus Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.16 0662/1039] arm64: tegra: Adjust length of CCPLEX cluster MMIO region Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.16 0663/1039] crypto: ccp - Move SEV_INIT retry for corrupted data Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.16 0664/1039] crypto: hisilicon/hpre - fix memory leak in hpre_curve25519_src_init() Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.16 0665/1039] crypto: hisilicon/qm - fix deadlock for remove driver Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.16 0666/1039] PM: runtime: Add safety net to supplier device release Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.16 0667/1039] cpufreq: Fix initialization of min and max frequency QoS requests Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.16 0668/1039] usb: hub: Add delay for SuperSpeed hub resume to let links transit to U0 Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.16 0669/1039] mt76: mt7615: fix possible deadlock while mt7615_register_ext_phy() Greg Kroah-Hartman
2022-01-24 18:40 ` [PATCH 5.16 0670/1039] mt76: mt7915: fix SMPS operation fail Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.16 0671/1039] mt76: connac: fix a theoretical NULL pointer dereference in mt76_connac_get_phy_mode Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.16 0672/1039] mt76: do not pass the received frame with decryption error Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.16 0673/1039] mt76: mt7615: improve wmm index allocation Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.16 0674/1039] mt76: mt7921: fix network buffer leak by txs missing Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.16 0675/1039] ath9k_htc: fix NULL pointer dereference at ath9k_htc_rxep() Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.16 0676/1039] ath9k_htc: fix NULL pointer dereference at ath9k_htc_tx_get_packet() Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.16 0677/1039] ath9k: Fix out-of-bound memcpy in ath9k_hif_usb_rx_stream Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.16 0678/1039] rtw88: 8822c: update rx settings to prevent potential hw deadlock Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.16 0679/1039] PM: AVS: qcom-cpr: Use div64_ul instead of do_div Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.16 0680/1039] iwlwifi: recognize missing PNVM data and then log filename Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.16 0681/1039] iwlwifi: fix leaks/bad data after failed firmware load Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.16 0682/1039] iwlwifi: remove module loading failure message Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.16 0683/1039] iwlwifi: mvm: Fix calculation of frame length Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.16 0684/1039] iwlwifi: mvm: fix AUX ROC removal Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.16 0685/1039] iwlwifi: pcie: make sure prph_info is set when treating wakeup IRQ Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.16 0686/1039] mmc: sdhci-pci-gli: GL9755: Support for CD/WP inversion on OF platforms Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.16 0687/1039] block: check minor range in device_add_disk() Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.16 0688/1039] um: registers: Rename function names to avoid conflicts and build problems Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.16 0689/1039] ath11k: Fix napi related hang Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.16 0690/1039] Bluetooth: btintel: Add missing quirks and msft ext for legacy bootloader Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.16 0691/1039] cpufreq: intel_pstate: Update cpuinfo.max_freq on HWP_CAP changes Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.16 0692/1039] Bluetooth: vhci: Set HCI_QUIRK_VALID_LE_STATES Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.16 0693/1039] xfrm: rate limit SA mapping change message to user space Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.16 0694/1039] drm/etnaviv: consider completed fence seqno in hang check Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.16 0695/1039] jffs2: GC deadlock reading a page that is used in jffs2_write_begin() Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.16 0696/1039] ACPICA: actypes.h: Expand the ACPI_ACCESS_ definitions Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.16 0697/1039] ACPICA: Utilities: Avoid deleting the same object twice in a row Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.16 0698/1039] ACPICA: Executer: Fix the REFCLASS_REFOF case in acpi_ex_opcode_1A_0T_1R() Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.16 0699/1039] ACPICA: Fix wrong interpretation of PCC address Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.16 0700/1039] ACPICA: Hardware: Do not flush CPU cache when entering S4 and S5 Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.16 0701/1039] mmc: mtk-sd: Use readl_poll_timeout instead of open-coded polling Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.16 0702/1039] drm/amdgpu: Dont inherit GEM object VMAs in child process Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.16 0703/1039] drm/amdgpu: fixup bad vram size on gmc v8 Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.16 0704/1039] mfd: intel_soc_pmic: Use CPU-id check instead of _HRV check to differentiate variants Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.16 0705/1039] amdgpu/pm: Make sysfs pm attributes as read-only for VFs Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.16 0706/1039] ACPI: battery: Add the ThinkPad "Not Charging" quirk Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.16 0707/1039] ACPI: CPPC: Check present CPUs for determining _CPC is valid Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.16 0708/1039] net/mlx5: DR, Fix error flow in creating matcher Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.16 0709/1039] btrfs: remove BUG_ON() in find_parent_nodes() Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.16 0710/1039] btrfs: remove BUG_ON(!eie) in find_parent_nodes Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.16 0711/1039] net: mdio: Demote probed message to debug print Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.16 0712/1039] mac80211: allow non-standard VHT MCS-10/11 Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.16 0713/1039] dm btree: add a defensive bounds check to insert_at() Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.16 0714/1039] dm space map common: add bounds check to sm_ll_lookup_bitmap() Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.16 0715/1039] can: do not increase rx statistics when generating a CAN rx error message frame Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.16 0716/1039] bpf/selftests: Fix namespace mount setup in tc_redirect Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.16 0717/1039] mlxsw: pci: Avoid flow control for EMAD packets Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.16 0718/1039] net: phy: marvell: configure RGMII delays for 88E1118 Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.16 0719/1039] net: gemini: allow any RGMII interface mode Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.16 0720/1039] regulator: qcom_smd: Align probe function with rpmh-regulator Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.16 0721/1039] serial: pl010: Drop CR register reset on set_termios Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.16 0722/1039] serial: pl011: " Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.16 0723/1039] serial: core: Keep mctrl register state and cached copy in sync Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.16 0724/1039] random: do not throw away excess input to crng_fast_load Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.16 0725/1039] net/mlx5: Update log_max_qp value to FW max capability Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.16 0726/1039] net/mlx5e: Unblock setting vid 0 for VF in case PF isnt eswitch manager Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.16 0727/1039] parisc: Avoid calling faulthandler_disabled() twice Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.16 0728/1039] scripts: sphinx-pre-install: Fix ctex support on Debian Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.16 0729/1039] can: flexcan: allow to change quirks at runtime Greg Kroah-Hartman
2022-01-24 18:41 ` [PATCH 5.16 0730/1039] can: flexcan: rename RX modes Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.16 0731/1039] can: flexcan: add more quirks to describe RX path capabilities Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.16 0732/1039] x86/kbuild: Enable CONFIG_KALLSYMS_ALL=y in the defconfigs Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.16 0733/1039] clk: samsung: exynos850: Register clocks early Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.16 0734/1039] powerpc/6xx: add missing of_node_put Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.16 0735/1039] powerpc/powernv: " Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.16 0736/1039] powerpc/cell: " Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.16 0737/1039] powerpc/btext: " Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.16 0738/1039] powerpc/watchdog: Fix missed watchdog reset due to memory ordering race Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.16 0739/1039] ASoC: imx-hdmi: add put_device() after of_find_device_by_node() Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.16 0740/1039] i2c: i801: Dont silently correct invalid transfer size Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.16 0741/1039] powerpc/smp: Move setup_profiling_timer() under CONFIG_PROFILING Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.16 0742/1039] i2c: mpc: Correct I2C reset procedure Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.16 0743/1039] clk: meson: gxbb: Fix the SDM_EN bit for MPLL0 on GXBB Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.16 0744/1039] powerpc/powermac: Add missing lockdep_register_key() Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.16 0745/1039] KVM: PPC: Book3S: Suppress warnings when allocating too big memory slots Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.16 0746/1039] KVM: PPC: Book3S: Suppress failed alloc warning in H_COPY_TOFROM_GUEST Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.16 0747/1039] w1: Misuse of get_user()/put_user() reported by sparse Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.16 0748/1039] nvmem: core: set size for sysfs bin file Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.16 0749/1039] dm: fix alloc_dax error handling in alloc_dev Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.16 0750/1039] dm: make the DAX support depend on CONFIG_FS_DAX Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.16 0751/1039] ASoC: test-component: fix null pointer dereference Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.16 0752/1039] interconnect: qcom: rpm: Prevent integer overflow in rate Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.16 0753/1039] scsi: ufs: Fix a kernel crash during shutdown Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.16 0754/1039] scsi: lpfc: Fix leaked lpfc_dmabuf mbox allocations with NPIV Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.16 0755/1039] scsi: lpfc: Trigger SLI4 firmware dump before doing driver cleanup Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.16 0756/1039] ALSA: seq: Set upper limit of processed events Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.16 0757/1039] MIPS: Loongson64: Use three arguments for slti Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.16 0758/1039] powerpc/40x: Map 32Mbytes of memory at startup Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.16 0759/1039] selftests/powerpc/spectre_v2: Return skip code when miss_percent is high Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.16 0760/1039] powerpc: handle kdump appropriately with crash_kexec_post_notifiers option Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.16 0761/1039] powerpc/fadump: Fix inaccurate CPU state info in vmcore generated with panic Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.16 0762/1039] ASoC: SOF: Intel: hda: add quirks for HDAudio DMA position information Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.16 0763/1039] udf: Fix error handling in udf_new_inode() Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.16 0764/1039] MIPS: OCTEON: add put_device() after of_find_device_by_node() Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.16 0765/1039] irqchip/gic-v4: Disable redistributors view of the VPE table at boot time Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.16 0766/1039] i2c: designware-pci: Fix to change data types of hcnt and lcnt parameters Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.16 0767/1039] scsi: hisi_sas: Prevent parallel FLR and controller reset Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.16 0768/1039] ASoC: SOF: ipc: Add null pointer check for substream->runtime Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.16 0769/1039] selftests/powerpc: Add a test of sigreturning to the kernel Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.16 0770/1039] MIPS: Octeon: Fix build errors using clang Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.16 0771/1039] scsi: sr: Dont use GFP_DMA Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.16 0772/1039] scsi: mpi3mr: Fixes around reply request queues Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.16 0773/1039] ASoC: mediatek: mt8192-mt6359: fix device_node leak Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.16 0774/1039] phy: phy-mtk-tphy: add support efuse setting Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.16 0775/1039] ASoC: mediatek: mt8173: fix device_node leak Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.16 0776/1039] ASoC: mediatek: mt8183: " Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.16 0777/1039] habanalabs: change wait for interrupt timeout to 64 bit Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.16 0778/1039] habanalabs: skip read fw errors if dynamic descriptor invalid Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.16 0779/1039] phy: mediatek: Fix missing check in mtk_mipi_tx_probe Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.16 0780/1039] mailbox: change mailbox-mpfs compatible string Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.16 0781/1039] signal: In get_signal test for signal_group_exit every time through the loop Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.16 0782/1039] PCI: mediatek-gen3: Disable DVFSRC voltage request Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.16 0783/1039] PCI: qcom: Fix an error handling path in qcom_pcie_probe() Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.16 0784/1039] PCI: rcar: Check if device is runtime suspended instead of __clk_is_enabled() Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.16 0785/1039] PCI: dwc: Do not remap invalid res Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.16 0786/1039] PCI: aardvark: Fix checking for MEM resource type Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.16 0787/1039] PCI: apple: Fix REFCLK1 enable/poll logic Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.16 0788/1039] KVM: VMX: Dont unblock vCPU w/ Posted IRQ if IRQs are disabled in guest Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.16 0789/1039] KVM: s390: Ensure kvm_arch_no_poll() is read once when blocking vCPU Greg Kroah-Hartman
2022-01-24 18:42 ` [PATCH 5.16 0790/1039] KVM: VMX: Read Posted Interrupt "control" exactly once per loop iteration Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.16 0791/1039] KVM: X86: Ensure that dirty PDPTRs are loaded Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.16 0792/1039] KVM: x86: Handle 32-bit wrap of EIP for EMULTYPE_SKIP with flat code seg Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.16 0793/1039] KVM: x86: Exit to userspace if emulation prepared a completion callback Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.16 0794/1039] i3c: fix incorrect address slot lookup on 64-bit Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.16 0795/1039] i3c/master/mipi-i3c-hci: Fix a potentially infinite loop in hci_dat_v1_get_index() Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.16 0796/1039] tracing: Do not let synth_events block other dyn_event systems during create Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.16 0797/1039] Input: ti_am335x_tsc - set ADCREFM for X configuration Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.16 0798/1039] Input: ti_am335x_tsc - fix STEPCONFIG setup for Z2 Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.16 0799/1039] PCI: mvebu: Check for errors from pci_bridge_emul_init() call Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.16 0800/1039] PCI: mvebu: Do not modify PCI IO type bits in conf_write Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.16 0801/1039] PCI: mvebu: Fix support for bus mastering and PCI_COMMAND on emulated bridge Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.16 0802/1039] PCI: mvebu: Fix configuring secondary bus of PCIe Root Port via " Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.16 0803/1039] PCI: mvebu: Setup PCIe controller to Root Complex mode Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.16 0804/1039] PCI: mvebu: Fix support for PCI_BRIDGE_CTL_BUS_RESET on emulated bridge Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.16 0805/1039] PCI: mvebu: Fix support for PCI_EXP_DEVCTL " Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.16 0806/1039] PCI: mvebu: Fix support for PCI_EXP_RTSTA " Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.16 0807/1039] PCI: mvebu: Fix support for DEVCAP2, DEVCTL2 and LNKCTL2 registers " Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.16 0808/1039] KVM: RISC-V: Avoid spurious virtual interrupts after clearing hideleg CSR Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.16 0809/1039] NFSD: Fix verifier returned in stable WRITEs Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.16 0810/1039] Revert "nfsd: skip some unnecessary stats in the v4 case" Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.16 0811/1039] nfsd: fix crash on COPY_NOTIFY with special stateid Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.16 0812/1039] x86/hyperv: Properly deal with empty cpumasks in hyperv_flush_tlb_multi() Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.16 0813/1039] drm/i915/pxp: Hold RPM wakelock during PXP unbind Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.16 0814/1039] drm/i915: dont call free_mmap_offset when purging Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.16 0815/1039] SUNRPC: Fix sockaddr handling in the svc_xprt_create_error trace point Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.16 0816/1039] SUNRPC: Fix sockaddr handling in svcsock_accept_class trace points Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.16 0817/1039] drm/sun4i: dw-hdmi: Fix missing put_device() call in sun8i_hdmi_phy_get Greg Kroah-Hartman
2022-01-24 18:43 ` Greg Kroah-Hartman [this message]
2022-01-24 18:43 ` [PATCH 5.16 0819/1039] ntb_hw_switchtec: Fix pff ioread to read into mmio_part_cfg_all Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.16 0820/1039] ntb_hw_switchtec: Fix bug with more than 32 partitions Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.16 0821/1039] drm/amd/display: invalid parameter check in dmub_hpd_callback Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.16 0822/1039] drm/amdkfd: Check for null pointer after calling kmemdup Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.16 0823/1039] drm/amdgpu: use spin_lock_irqsave to avoid deadlock by local interrupt Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.16 0824/1039] PCI: mt7621: Add missing MODULE_LICENSE() Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.16 0825/1039] i3c: master: dw: check return of dw_i3c_master_get_free_pos() Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.16 0826/1039] dma-buf: cma_heap: Fix mutex locking section Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.16 0827/1039] tracing/uprobes: Check the return value of kstrdup() for tu->filename Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.16 0828/1039] tracing/probes: check the return value of kstrndup() for pbuf Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.16 0829/1039] mm: defer kmemleak object creation of module_alloc() Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.16 0830/1039] kasan: fix quarantine conflicting with init_on_free Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.16 0831/1039] selftests/vm: make charge_reserved_hugetlb.sh work with existing cgroup setting Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.16 0832/1039] mm/page_isolation: unset migratetype directly for non Buddy page Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.16 0833/1039] hugetlbfs: fix off-by-one error in hugetlb_vmdelete_list() Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.16 0834/1039] rpmsg: core: Clean up resources on announce_create failure Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.16 0835/1039] ifcvf/vDPA: fix misuse virtio-net device config size for blk dev Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.16 0836/1039] crypto: omap-aes - Fix broken pm_runtime_and_get() usage Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.16 0837/1039] crypto: stm32/crc32 - Fix kernel BUG triggered in probe() Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.16 0838/1039] crypto: caam - replace this_cpu_ptr with raw_cpu_ptr Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.16 0839/1039] ubifs: Error path in ubifs_remount_rw() seems to wrongly free write buffers Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.16 0840/1039] tpm: fix potential NULL pointer access in tpm_del_char_device Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.16 0841/1039] tpm: fix NPE on probe for missing device Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.16 0842/1039] mfd: tps65910: Set PWR_OFF bit during driver probe Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.16 0843/1039] spi: uniphier: Fix a bug that doesnt point to private data correctly Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.16 0844/1039] xen/gntdev: fix unmap notification order Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.16 0845/1039] md: Move alloc/free acct bioset in to personality Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.16 0846/1039] HID: magicmouse: Fix an error handling path in magicmouse_probe() Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.16 0847/1039] x86/mce: Check regs before accessing it Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.16 0848/1039] fuse: Pass correct lend value to filemap_write_and_wait_range() Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.16 0849/1039] serial: Fix incorrect rs485 polarity on uart open Greg Kroah-Hartman
2022-01-24 18:43 ` [PATCH 5.16 0850/1039] cputime, cpuacct: Include guest time in user time in cpuacct.stat Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.16 0851/1039] sched/cpuacct: Fix user/system in shown cpuacct.usage* Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.16 0852/1039] tracing/osnoise: Properly unhook events if start_per_cpu_kthreads() fails Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.16 0853/1039] tracing/kprobes: nmissed not showed correctly for kretprobe Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.16 0854/1039] tracing: Have syscall trace events use trace_event_buffer_lock_reserve() Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.16 0855/1039] remoteproc: imx_rproc: Fix a resource leak in the remove function Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.16 0856/1039] iwlwifi: mvm: Increase the scan timeout guard to 30 seconds Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.16 0857/1039] s390/mm: fix 2KB pgtable release race Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.16 0858/1039] device property: Fix fwnode_graph_devcon_match() fwnode leak Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.16 0859/1039] drm/tegra: submit: Add missing pm_runtime_mark_last_busy() Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.16 0860/1039] drm/etnaviv: limit submit sizes Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.16 0861/1039] drm/amd/display: Fix the uninitialized variable in enable_stream_features() Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.16 0862/1039] drm/nouveau/kms/nv04: use vzalloc for nv04_display Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.16 0863/1039] drm/bridge: analogix_dp: Make PSR-exit block less Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.16 0864/1039] parisc: Fix lpa and lpa_user defines Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.16 0865/1039] powerpc/64s/radix: Fix huge vmap false positive Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.16 0866/1039] scsi: lpfc: Fix lpfc_force_rscn ndlp kref imbalance Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.16 0867/1039] drm/amdgpu: Use correct VIEWPORT_DIMENSION for DCN2 Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.16 0868/1039] drm/amdgpu: Fix rejecting Tahiti GPUs Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.16 0869/1039] drm/amdgpu: dont do resets on APUs which dont support it Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.16 0870/1039] drm/amd/display: Revert W/A for hard hangs on DCN20/DCN21 Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.16 0871/1039] drm/i915/display/ehl: Update voltage swing table Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.16 0872/1039] PCI: xgene: Fix IB window setup Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.16 0873/1039] PCI: pciehp: Use down_read/write_nested(reset_lock) to fix lockdep errors Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.16 0874/1039] PCI: pciehp: Fix infinite loop in IRQ handler upon power fault Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.16 0875/1039] PCI: pci-bridge-emul: Make expansion ROM Base Address register read-only Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.16 0876/1039] PCI: pci-bridge-emul: Properly mark reserved PCIe bits in PCI config space Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.16 0877/1039] PCI: pci-bridge-emul: Fix definitions of reserved bits Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.16 0878/1039] PCI: pci-bridge-emul: Correctly set PCIe capabilities Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.16 0879/1039] PCI: pci-bridge-emul: Set PCI_STATUS_CAP_LIST for PCIe device Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.16 0880/1039] xfrm: fix policy lookup for ipv6 gre packets Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.16 0881/1039] xfrm: fix dflt policy check when there is no policy configured Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.16 0882/1039] btrfs: fix deadlock between quota enable and other quota operations Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.16 0883/1039] btrfs: zoned: cache reported zone during mount Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.16 0884/1039] btrfs: check the root node for uptodate before returning it Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.16 0885/1039] btrfs: add extent allocator hook to decide to allocate chunk or not Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.16 0886/1039] btrfs: zoned: unset dedicated block group on allocation failure Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.16 0887/1039] btrfs: zoned: fix chunk allocation condition for zoned allocator Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.16 0888/1039] btrfs: respect the max size in the header when activating swap file Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.16 0889/1039] ext4: make sure to reset inode lockdep class when quota enabling fails Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.16 0890/1039] ext4: make sure quota gets properly shutdown on error Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.16 0891/1039] ext4: fix a possible ABBA deadlock due to busy PA Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.16 0892/1039] ext4: initialize err_blk before calling __ext4_get_inode_loc Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.16 0893/1039] ext4: fix fast commit may miss tracking range for FALLOC_FL_ZERO_RANGE Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.16 0894/1039] ext4: set csum seed in tmp inode while migrating to extents Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.16 0895/1039] ext4: Fix BUG_ON in ext4_bread when write quota data Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.16 0896/1039] ext4: use ext4_ext_remove_space() for fast commit replay delete range Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.16 0897/1039] ext4: fast commit may miss tracking unwritten range during ftruncate Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.16 0898/1039] ext4: destroy ext4_fc_dentry_cachep kmemcache on module removal Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.16 0899/1039] ext4: fix null-ptr-deref in __ext4_journal_ensure_credits Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.16 0900/1039] ext4: fix an use-after-free issue about data=journal writeback mode Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.16 0901/1039] ext4: dont use the orphan list when migrating an inode Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.16 0902/1039] Revert "drm/amdgpu: Dont inherit GEM object VMAs in child process" Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.16 0903/1039] drm/radeon: fix error handling in radeon_driver_open_kms Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.16 0904/1039] drm/amdgpu/display: Only set vblank_disable_immediate when PSR is not enabled Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.16 0905/1039] firmware: Update Kconfig help text for Google firmware Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.16 0906/1039] can: mcp251xfd: mcp251xfd_tef_obj_read(): fix typo in error message Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.16 0907/1039] media: rcar-csi2: Optimize the selection PHTW register Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.16 0908/1039] drm/vc4: hdmi: Make sure the device is powered with CEC Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.16 0909/1039] media: correct MEDIA_TEST_SUPPORT help text Greg Kroah-Hartman
2022-01-24 18:44 ` [PATCH 5.16 0910/1039] Documentation: coresight: Fix documentation issue Greg Kroah-Hartman
2022-01-24 18:45 ` [PATCH 5.16 0911/1039] Documentation: dmaengine: Correctly describe dmatest with channel unset Greg Kroah-Hartman
2022-01-24 18:45 ` [PATCH 5.16 0912/1039] Documentation: ACPI: Fix data node reference documentation Greg Kroah-Hartman
2022-01-24 18:45 ` [PATCH 5.16 0913/1039] Documentation, arch: Remove leftovers from raw device Greg Kroah-Hartman
2022-01-24 18:45 ` [PATCH 5.16 0914/1039] Documentation, arch: Remove leftovers from CIFS_WEAK_PW_HASH Greg Kroah-Hartman
2022-01-24 18:45 ` [PATCH 5.16 0915/1039] Documentation: refer to config RANDOMIZE_BASE for kernel address-space randomization Greg Kroah-Hartman
2022-01-24 18:45 ` [PATCH 5.16 0916/1039] Documentation: fix firewire.rst ABI file path error Greg Kroah-Hartman
2022-01-24 18:45 ` [PATCH 5.16 0917/1039] Bluetooth: btusb: Return error code when getting patch status failed Greg Kroah-Hartman
2022-01-24 18:45 ` [PATCH 5.16 0918/1039] net: usb: Correct reset handling of smsc95xx Greg Kroah-Hartman
2022-01-24 18:45 ` [PATCH 5.16 0919/1039] Bluetooth: hci_sync: Fix not setting adv set duration Greg Kroah-Hartman
2022-01-24 18:45 ` [PATCH 5.16 0920/1039] scsi: core: Show SCMD_LAST in text form Greg Kroah-Hartman
2022-01-24 18:45 ` [PATCH 5.16 0921/1039] of: base: Improve argument length mismatch error Greg Kroah-Hartman
2022-01-24 18:45 ` [PATCH 5.16 0922/1039] scsi: ufs: ufs-mediatek: Fix error checking in ufs_mtk_init_va09_pwr_ctrl() Greg Kroah-Hartman
2022-01-24 18:45 ` [PATCH 5.16 0923/1039] dmaengine: uniphier-xdmac: Fix type of address variables Greg Kroah-Hartman
2022-01-24 18:45 ` [PATCH 5.16 0924/1039] dmaengine: idxd: fix wq settings post wq disable Greg Kroah-Hartman
2022-01-24 18:45 ` [PATCH 5.16 0925/1039] RDMA/hns: Modify the mapping attribute of doorbell to device Greg Kroah-Hartman
2022-01-24 18:45 ` [PATCH 5.16 0926/1039] RDMA/rxe: Fix a typo in opcode name Greg Kroah-Hartman
2022-01-24 18:45 ` [PATCH 5.16 0927/1039] dmaengine: stm32-mdma: fix STM32_MDMA_CTBR_TSEL_MASK Greg Kroah-Hartman
2022-01-24 18:45 ` [PATCH 5.16 0928/1039] Revert "net/mlx5: Add retry mechanism to the command entry index allocation" Greg Kroah-Hartman
2022-01-24 18:45 ` [PATCH 5.16 0929/1039] powerpc/cell: Fix clang -Wimplicit-fallthrough warning Greg Kroah-Hartman
2022-01-24 18:45 ` [PATCH 5.16 0930/1039] powerpc/fsl/dts: Enable WA for erratum A-009885 on fman3l MDIO buses Greg Kroah-Hartman
2022-01-24 18:45 ` [PATCH 5.16 0931/1039] block: fix async_depth sysfs interface for mq-deadline Greg Kroah-Hartman
2022-01-24 18:45 ` [PATCH 5.16 0932/1039] block: Fix fsync always failed if once failed Greg Kroah-Hartman
2022-01-24 18:45 ` [PATCH 5.16 0933/1039] drm/vc4: crtc: Drop feed_txp from state Greg Kroah-Hartman
2022-01-24 18:45 ` [PATCH 5.16 0934/1039] drm/vc4: Fix non-blocking commit getting stuck forever Greg Kroah-Hartman
2022-01-24 18:45 ` [PATCH 5.16 0935/1039] drm/vc4: crtc: Copy assigned channel to the CRTC Greg Kroah-Hartman
2022-01-24 18:45 ` [PATCH 5.16 0936/1039] libbpf: Remove deprecation attribute from struct bpf_prog_prep_result Greg Kroah-Hartman
2022-01-24 18:45 ` [PATCH 5.16 0937/1039] arm64/bpf: Remove 128MB limit for BPF JIT programs Greg Kroah-Hartman
2022-01-24 18:45 ` [PATCH 5.16 0938/1039] bpftool: Remove inclusion of utilities.mak from Makefiles Greg Kroah-Hartman
2022-01-24 18:45 ` [PATCH 5.16 0939/1039] bpftool: Fix indent in option lists in the documentation Greg Kroah-Hartman
2022-01-24 18:45 ` [PATCH 5.16 0940/1039] xdp: check prog type before updating BPF link Greg Kroah-Hartman
2022-01-24 18:45 ` [PATCH 5.16 0941/1039] bpf: Fix mount source show for bpffs Greg Kroah-Hartman
2022-01-24 18:45 ` [PATCH 5.16 0942/1039] bpf: Mark PTR_TO_FUNC register initially with zero offset Greg Kroah-Hartman
2022-01-24 18:45 ` [PATCH 5.16 0943/1039] perf evsel: Override attr->sample_period for non-libpfm4 events Greg Kroah-Hartman
2022-01-24 18:45 ` [PATCH 5.16 0944/1039] ipv4: update fib_info_cnt under spinlock protection Greg Kroah-Hartman
2022-01-24 18:45 ` [PATCH 5.16 0945/1039] ipv4: avoid quadratic behavior in netns dismantle Greg Kroah-Hartman
2022-01-24 18:45 ` [PATCH 5.16 0946/1039] mlx5: Dont accidentally set RTO_ONLINK before mlx5e_route_lookup_ipv4_get() Greg Kroah-Hartman
2022-01-24 18:45 ` [PATCH 5.16 0947/1039] net/fsl: xgmac_mdio: Add workaround for erratum A-009885 Greg Kroah-Hartman
2022-01-24 18:45 ` [PATCH 5.16 0948/1039] net/fsl: xgmac_mdio: Fix incorrect iounmap when removing module Greg Kroah-Hartman
2022-01-24 18:45 ` [PATCH 5.16 0949/1039] parisc: pdc_stable: Fix memory leak in pdcs_register_pathentries Greg Kroah-Hartman
2022-01-24 18:45 ` [PATCH 5.16 0950/1039] RISC-V: defconfigs: Set CONFIG_FB=y, for FB console Greg Kroah-Hartman
2022-01-24 18:45 ` [PATCH 5.16 0951/1039] riscv: dts: microchip: mpfs: Drop empty chosen node Greg Kroah-Hartman
2022-01-24 18:45 ` [PATCH 5.16 0952/1039] drm/vmwgfx: Remove explicit transparent hugepages support Greg Kroah-Hartman
2022-01-24 18:45 ` [PATCH 5.16 0953/1039] drm/vmwgfx: Remove unused compile options Greg Kroah-Hartman
2022-01-24 18:45 ` [PATCH 5.16 0954/1039] f2fs: fix remove page failed in invalidate compress pages Greg Kroah-Hartman
2022-01-24 18:45 ` [PATCH 5.16 0955/1039] f2fs: fix to avoid panic in is_alive() if metadata is inconsistent Greg Kroah-Hartman
2022-01-24 18:45 ` [PATCH 5.16 0956/1039] f2fs: compress: fix potential deadlock of compress file Greg Kroah-Hartman
2022-01-24 18:45 ` [PATCH 5.16 0957/1039] f2fs: fix to reserve space for IO align feature Greg Kroah-Hartman
2022-01-24 18:45 ` [PATCH 5.16 0958/1039] f2fs: fix to check available space of CP area correctly in update_ckpt_flags() Greg Kroah-Hartman
2022-01-24 18:45 ` [PATCH 5.16 0959/1039] crypto: octeontx2 - uninitialized variable in kvf_limits_store() Greg Kroah-Hartman
2022-01-24 18:45 ` [PATCH 5.16 0960/1039] af_unix: annote lockless accesses to unix_tot_inflight & gc_in_progress Greg Kroah-Hartman
2022-01-24 18:45 ` [PATCH 5.16 0961/1039] clk: Emit a stern warning with writable debugfs enabled Greg Kroah-Hartman
2022-01-24 18:45 ` [PATCH 5.16 0962/1039] clk: si5341: Fix clock HW provider cleanup Greg Kroah-Hartman
2022-01-24 18:45 ` [PATCH 5.16 0963/1039] pinctrl/rockchip: fix gpio device creation Greg Kroah-Hartman
2022-01-24 18:45 ` [PATCH 5.16 0964/1039] gpio: mpc8xxx: Fix IRQ check in mpc8xxx_probe Greg Kroah-Hartman
2022-01-24 18:45 ` [PATCH 5.16 0965/1039] gpio: idt3243x: Fix IRQ check in idt_gpio_probe Greg Kroah-Hartman
2022-01-24 18:45 ` [PATCH 5.16 0966/1039] net/smc: Fix hung_task when removing SMC-R devices Greg Kroah-Hartman
2022-01-24 18:45 ` [PATCH 5.16 0967/1039] net: axienet: increase reset timeout Greg Kroah-Hartman
2022-01-24 18:45 ` [PATCH 5.16 0968/1039] net: axienet: Wait for PhyRstCmplt after core reset Greg Kroah-Hartman
2022-01-24 18:45 ` [PATCH 5.16 0969/1039] net: axienet: reset core on initialization prior to MDIO access Greg Kroah-Hartman
2022-01-24 18:45 ` [PATCH 5.16 0970/1039] net: axienet: add missing memory barriers Greg Kroah-Hartman
2022-01-24 18:46 ` [PATCH 5.16 0971/1039] net: axienet: limit minimum TX ring size Greg Kroah-Hartman
2022-01-24 18:46 ` [PATCH 5.16 0972/1039] net: axienet: Fix TX ring slot available check Greg Kroah-Hartman
2022-01-24 18:46 ` [PATCH 5.16 0973/1039] net: axienet: fix number of TX ring slots for " Greg Kroah-Hartman
2022-01-24 18:46 ` [PATCH 5.16 0974/1039] net: axienet: fix for TX busy handling Greg Kroah-Hartman
2022-01-24 18:46 ` [PATCH 5.16 0975/1039] net: axienet: increase default TX ring size to 128 Greg Kroah-Hartman
2022-01-24 18:46 ` [PATCH 5.16 0976/1039] bitops: protect find_first_{,zero}_bit properly Greg Kroah-Hartman
2022-01-24 18:46 ` [PATCH 5.16 0977/1039] um: gitignore: Add kernel/capflags.c Greg Kroah-Hartman
2022-01-24 18:46 ` [PATCH 5.16 0978/1039] HID: vivaldi: fix handling devices not using numbered reports Greg Kroah-Hartman
2022-01-24 18:46 ` [PATCH 5.16 0979/1039] mctp: test: zero out sockaddr Greg Kroah-Hartman
2022-01-24 18:46 ` [PATCH 5.16 0980/1039] rtc: Move variable into switch case statement Greg Kroah-Hartman
2022-01-24 18:46 ` [PATCH 5.16 0981/1039] rtc: pxa: fix null pointer dereference Greg Kroah-Hartman
2022-01-24 18:46 ` [PATCH 5.16 0982/1039] vdpa/mlx5: Fix wrong configuration of virtio_version_1_0 Greg Kroah-Hartman
2022-01-24 18:46 ` [PATCH 5.16 0983/1039] virtio_ring: mark ring unused on error Greg Kroah-Hartman
2022-01-24 18:46 ` [PATCH 5.16 0984/1039] taskstats: Cleanup the use of task->exit_code Greg Kroah-Hartman
2022-01-24 18:46 ` [PATCH 5.16 0985/1039] inet: frags: annotate races around fqdir->dead and fqdir->high_thresh Greg Kroah-Hartman
2022-01-24 18:46 ` [PATCH 5.16 0986/1039] netns: add schedule point in ops_exit_list() Greg Kroah-Hartman
2022-01-24 18:46 ` [PATCH 5.16 0987/1039] iwlwifi: fix Bz NMI behaviour Greg Kroah-Hartman
2022-01-24 18:46 ` [PATCH 5.16 0988/1039] xfrm: Dont accidentally set RTO_ONLINK in decode_session4() Greg Kroah-Hartman
2022-01-24 18:46 ` [PATCH 5.16 0989/1039] vdpa/mlx5: Fix config_attr_mask assignment Greg Kroah-Hartman
2022-01-24 18:46 ` [PATCH 5.16 0990/1039] vdpa/mlx5: Restore cur_num_vqs in case of failure in change_num_qps() Greg Kroah-Hartman
2022-01-24 18:46 ` [PATCH 5.16 0991/1039] gre: Dont accidentally set RTO_ONLINK in gre_fill_metadata_dst() Greg Kroah-Hartman
2022-01-24 18:46 ` [PATCH 5.16 0992/1039] libcxgb: Dont accidentally set RTO_ONLINK in cxgb_find_route() Greg Kroah-Hartman
2022-01-24 18:46 ` [PATCH 5.16 0993/1039] perf script: Fix hex dump character output Greg Kroah-Hartman
2022-01-24 18:46 ` [PATCH 5.16 0994/1039] dmaengine: at_xdmac: Dont start transactions at tx_submit level Greg Kroah-Hartman
2022-01-24 18:46 ` [PATCH 5.16 0995/1039] dmaengine: at_xdmac: Start transfer for cyclic channels in issue_pending Greg Kroah-Hartman
2022-01-24 18:46 ` [PATCH 5.16 0996/1039] dmaengine: at_xdmac: Print debug message after realeasing the lock Greg Kroah-Hartman
2022-01-24 18:46 ` [PATCH 5.16 0997/1039] dmaengine: at_xdmac: Fix concurrency over xfers_list Greg Kroah-Hartman
2022-01-24 18:46 ` [PATCH 5.16 0998/1039] dmaengine: at_xdmac: Fix lld view setting Greg Kroah-Hartman
2022-01-24 18:46 ` [PATCH 5.16 0999/1039] dmaengine: at_xdmac: Fix at_xdmac_lld struct definition 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=20220124184152.800331782@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=airlied@linux.ie \
    --cc=alexander.deucher@amd.com \
    --cc=daniel@ffwll.ch \
    --cc=linux-kernel@vger.kernel.org \
    --cc=maarten.lankhorst@linux.intel.com \
    --cc=mripard@kernel.org \
    --cc=robdclark@chromium.org \
    --cc=sashal@kernel.org \
    --cc=seanpaul@chromium.org \
    --cc=stable@vger.kernel.org \
    --cc=tzimmermann@suse.de \
    --cc=victor.liu@nxp.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).