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,
	Alexandru Elisei <alexandru.elisei@arm.com>,
	Marc Zyngier <maz@kernel.org>,
	Catalin Marinas <catalin.marinas@arm.com>,
	Sasha Levin <sashal@kernel.org>
Subject: [PATCH 5.15 089/667] arm64: compat: Do not treat syscall number as ESR_ELx for a bad syscall
Date: Tue,  7 Jun 2022 18:55:54 +0200	[thread overview]
Message-ID: <20220607164937.488778923@linuxfoundation.org> (raw)
In-Reply-To: <20220607164934.766888869@linuxfoundation.org>

From: Alexandru Elisei <alexandru.elisei@arm.com>

[ Upstream commit 3fed9e551417b84038b15117732ea4505eee386b ]

If a compat process tries to execute an unknown system call above the
__ARM_NR_COMPAT_END number, the kernel sends a SIGILL signal to the
offending process. Information about the error is printed to dmesg in
compat_arm_syscall() -> arm64_notify_die() -> arm64_force_sig_fault() ->
arm64_show_signal().

arm64_show_signal() interprets a non-zero value for
current->thread.fault_code as an exception syndrome and displays the
message associated with the ESR_ELx.EC field (bits 31:26).
current->thread.fault_code is set in compat_arm_syscall() ->
arm64_notify_die() with the bad syscall number instead of a valid ESR_ELx
value. This means that the ESR_ELx.EC field has the value that the user set
for the syscall number and the kernel can end up printing bogus exception
messages*. For example, for the syscall number 0x68000000, which evaluates
to ESR_ELx.EC value of 0x1A (ESR_ELx_EC_FPAC) the kernel prints this error:

[   18.349161] syscall[300]: unhandled exception: ERET/ERETAA/ERETAB, ESR 0x68000000, Oops - bad compat syscall(2) in syscall[10000+50000]
[   18.350639] CPU: 2 PID: 300 Comm: syscall Not tainted 5.18.0-rc1 #79
[   18.351249] Hardware name: Pine64 RockPro64 v2.0 (DT)
[..]

which is misleading, as the bad compat syscall has nothing to do with
pointer authentication.

Stop arm64_show_signal() from printing exception syndrome information by
having compat_arm_syscall() set the ESR_ELx value to 0, as it has no
meaning for an invalid system call number. The example above now becomes:

[   19.935275] syscall[301]: unhandled exception: Oops - bad compat syscall(2) in syscall[10000+50000]
[   19.936124] CPU: 1 PID: 301 Comm: syscall Not tainted 5.18.0-rc1-00005-g7e08006d4102 #80
[   19.936894] Hardware name: Pine64 RockPro64 v2.0 (DT)
[..]

which although shows less information because the syscall number,
wrongfully advertised as the ESR value, is missing, it is better than
showing plainly wrong information. The syscall number can be easily
obtained with strace.

*A 32-bit value above or equal to 0x8000_0000 is interpreted as a negative
integer in compat_arm_syscal() and the condition scno < __ARM_NR_COMPAT_END
evaluates to true; the syscall will exit to userspace in this case with the
ENOSYS error code instead of arm64_notify_die() being called.

Signed-off-by: Alexandru Elisei <alexandru.elisei@arm.com>
Reviewed-by: Marc Zyngier <maz@kernel.org>
Link: https://lore.kernel.org/r/20220425114444.368693-3-alexandru.elisei@arm.com
Signed-off-by: Catalin Marinas <catalin.marinas@arm.com>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 arch/arm64/kernel/sys_compat.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm64/kernel/sys_compat.c b/arch/arm64/kernel/sys_compat.c
index db5159a3055f..b88a52f7188f 100644
--- a/arch/arm64/kernel/sys_compat.c
+++ b/arch/arm64/kernel/sys_compat.c
@@ -114,6 +114,6 @@ long compat_arm_syscall(struct pt_regs *regs, int scno)
 	addr = instruction_pointer(regs) - (compat_thumb_mode(regs) ? 2 : 4);
 
 	arm64_notify_die("Oops - bad compat syscall(2)", regs,
-			 SIGILL, ILL_ILLTRP, addr, scno);
+			 SIGILL, ILL_ILLTRP, addr, 0);
 	return 0;
 }
-- 
2.35.1




  parent reply	other threads:[~2022-06-07 18:04 UTC|newest]

Thread overview: 678+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-06-07 16:54 [PATCH 5.15 000/667] 5.15.46-rc1 review Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.15 001/667] arm64: Initialize jump labels before setup_machine_fdt() Greg Kroah-Hartman
2022-06-08  9:14   ` Catalin Marinas
2022-06-07 16:54 ` [PATCH 5.15 002/667] binfmt_flat: do not stop relocating GOT entries prematurely on riscv Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.15 003/667] parisc/stifb: Implement fb_is_primary_device() Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.15 004/667] parisc/stifb: Keep track of hardware path of graphics card Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.15 005/667] RISC-V: Mark IORESOURCE_EXCLUSIVE for reserved mem instead of IORESOURCE_BUSY Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.15 006/667] riscv: Initialize thread pointer before calling C functions Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.15 007/667] riscv: Fix irq_work when SMP is disabled Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.15 008/667] riscv: Wire up memfd_secret in UAPI header Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.15 009/667] riscv: Move alternative length validation into subsection Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.15 010/667] ALSA: hda/realtek - Add new type for ALC245 Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.15 011/667] ALSA: hda/realtek: Enable 4-speaker output for Dell XPS 15 9520 laptop Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.15 012/667] ALSA: hda/realtek - Fix microphone noise on ASUS TUF B550M-PLUS Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.15 013/667] ALSA: usb-audio: Cancel pending work at closing a MIDI substream Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.15 014/667] USB: serial: pl2303: fix type detection for odd device Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.15 015/667] USB: serial: option: add Quectel BG95 modem Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.15 016/667] USB: new quirk for Dell Gen 2 devices Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.15 017/667] usb: isp1760: Fix out-of-bounds array access Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.15 018/667] usb: dwc3: gadget: Move null pinter check to proper place Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.15 019/667] usb: core: hcd: Add support for deferring roothub registration Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.15 020/667] fs/ntfs3: Update valid size if -EIOCBQUEUED Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.15 021/667] fs/ntfs3: Fix fiemap + fix shrink file size (to remove preallocated space) Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.15 022/667] fs/ntfs3: Keep preallocated only if option prealloc enabled Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.15 023/667] fs/ntfs3: Check new size for limits Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.15 024/667] fs/ntfs3: In function ntfs_set_acl_ex do not change inode->i_mode if called from function ntfs_init_acl Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.15 025/667] fs/ntfs3: Fix some memory leaks in an error handling path of log_replay() Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.15 026/667] fs/ntfs3: Update i_ctime when xattr is added Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.15 027/667] fs/ntfs3: Restore ntfs_xattr_get_acl and ntfs_xattr_set_acl functions Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.15 028/667] cifs: fix potential double free during failed mount Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.15 029/667] cifs: when extending a file with falloc we should make files not-sparse Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.15 030/667] xhci: Allow host runtime PM as default for Intel Alder Lake N xHCI Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.15 031/667] platform/x86: intel-hid: fix _DSM function index handling Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.15 032/667] x86/MCE/AMD: Fix memory leak when threshold_create_bank() fails Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.15 033/667] perf/x86/intel: Fix event constraints for ICL Greg Kroah-Hartman
2022-06-07 16:54 ` [PATCH 5.15 034/667] x86/kexec: fix memory leak of elf header buffer Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.15 035/667] x86/sgx: Set active memcg prior to shmem allocation Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.15 036/667] ptrace/um: Replace PT_DTRACE with TIF_SINGLESTEP Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.15 037/667] ptrace/xtensa: Replace PT_SINGLESTEP " Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.15 038/667] ptrace: Reimplement PTRACE_KILL by always sending SIGKILL Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.15 039/667] btrfs: add "0x" prefix for unsupported optional features Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.15 040/667] btrfs: return correct error number for __extent_writepage_io() Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.15 041/667] btrfs: repair super block num_devices automatically Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.15 042/667] btrfs: fix the error handling for submit_extent_page() for btrfs_do_readpage() Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.15 043/667] iommu/vt-d: Add RPLS to quirk list to skip TE disabling Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.15 044/667] drm/vmwgfx: validate the screen formats Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.15 045/667] drm/virtio: fix NULL pointer dereference in virtio_gpu_conn_get_modes Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.15 046/667] selftests/bpf: Fix vfs_link kprobe definition Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.15 047/667] selftests/bpf: Fix parsing of prog types in UAPI hdr for bpftool sync Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.15 048/667] mwifiex: add mutex lock for call in mwifiex_dfs_chan_sw_work_queue Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.15 049/667] b43legacy: Fix assigning negative value to unsigned variable Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.15 050/667] b43: " Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.15 051/667] ipw2x00: Fix potential NULL dereference in libipw_xmit() Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.15 052/667] ipv6: fix locking issues with loops over idev->addr_list Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.15 053/667] fbcon: Consistently protect deferred_takeover with console_lock() Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.15 054/667] x86/platform/uv: Update TSC sync state for UV5 Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.15 055/667] ACPICA: Avoid cache flush inside virtual machines Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.15 056/667] mac80211: minstrel_ht: fix where rate stats are stored (fixes debugfs output) Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.15 057/667] drm/komeda: return early if drm_universal_plane_init() fails Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.15 058/667] drm/amd/display: Disabling Z10 on DCN31 Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.15 059/667] rcu-tasks: Fix race in schedule and flush work Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.15 060/667] rcu: Make TASKS_RUDE_RCU select IRQ_WORK Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.15 061/667] sfc: ef10: Fix assigning negative value to unsigned variable Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.15 062/667] ALSA: jack: Access input_dev under mutex Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.15 063/667] rtw88: 8821c: fix debugfs rssi value Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.15 064/667] spi: spi-rspi: Remove setting {src,dst}_{addr,addr_width} based on DMA direction Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.15 065/667] tools/power turbostat: fix ICX DRAM power numbers Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.15 066/667] scsi: lpfc: Move cfg_log_verbose check before calling lpfc_dmp_dbg() Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.15 067/667] scsi: lpfc: Fix SCSI I/O completion and abort handler deadlock Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.15 068/667] scsi: lpfc: Fix call trace observed during I/O with CMF enabled Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.15 069/667] cpuidle: PSCI: Improve support for suspend-to-RAM for PSCI OSI mode Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.15 070/667] drm/amd/pm: fix double free in si_parse_power_table() Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.15 071/667] ASoC: rsnd: care default case on rsnd_ssiu_busif_err_status_clear() Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.15 072/667] ASoC: rsnd: care return value from rsnd_node_fixed_index() Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.15 073/667] ath9k: fix QCA9561 PA bias level Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.15 074/667] media: venus: hfi: avoid null dereference in deinit Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.15 075/667] media: pci: cx23885: Fix the error handling in cx23885_initdev() Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.15 076/667] media: cx25821: Fix the warning when removing the module Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.15 077/667] md/bitmap: dont set sb values if cant pass sanity check Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.15 078/667] mmc: jz4740: Apply DMA engine limits to maximum segment size Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.15 079/667] drivers: mmc: sdhci_am654: Add the quirk to set TESTCD bit Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.15 080/667] scsi: megaraid: Fix error check return value of register_chrdev() Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.15 081/667] drm/amdgpu/sdma: Fix incorrect calculations of the wptr of the doorbells Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.15 082/667] scsi: ufs: Use pm_runtime_resume_and_get() instead of pm_runtime_get_sync() Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.15 083/667] scsi: lpfc: Fix resource leak in lpfc_sli4_send_seq_to_ulp() Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.15 084/667] ath11k: disable spectral scan during spectral deinit Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.15 085/667] ASoC: Intel: bytcr_rt5640: Add quirk for the HP Pro Tablet 408 Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.15 086/667] drm/plane: Move range check for format_count earlier Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.15 087/667] drm/amd/pm: fix the compile warning Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.15 088/667] ath10k: skip ath10k_halt during suspend for driver state RESTARTING Greg Kroah-Hartman
2022-06-07 16:55 ` Greg Kroah-Hartman [this message]
2022-06-07 16:55 ` [PATCH 5.15 090/667] drm: msm: fix error check return value of irq_of_parse_and_map() Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.15 091/667] scsi: target: tcmu: Fix possible data corruption Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.15 092/667] ipv6: Dont send rs packets to the interface of ARPHRD_TUNNEL Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.15 093/667] net/mlx5: fs, delete the FTE when there are no rules attached to it Greg Kroah-Hartman
2022-06-07 16:55 ` [PATCH 5.15 094/667] ASoC: dapm: Dont fold register value changes into notifications Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.15 095/667] mlxsw: spectrum_dcb: Do not warn about priority changes Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.15 096/667] mlxsw: Treat LLDP packets as control Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.15 097/667] drm/amdgpu/psp: move PSP memory alloc from hw_init to sw_init Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.15 098/667] drm/amdgpu/ucode: Remove firmware load type check in amdgpu_ucode_free_bo Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.15 099/667] regulator: mt6315: Enforce regulator-compatible, not name Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.15 100/667] HID: bigben: fix slab-out-of-bounds Write in bigben_probe Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.15 101/667] of: Support more than one crash kernel regions for kexec -s Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.15 102/667] ASoC: tscs454: Add endianness flag in snd_soc_component_driver Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.15 103/667] scsi: lpfc: Alter FPIN stat accounting logic Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.15 104/667] net: remove two BUG() from skb_checksum_help() Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.15 105/667] s390/preempt: disable __preempt_count_add() optimization for PROFILE_ALL_BRANCHES Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.15 106/667] perf/amd/ibs: Cascade pmu init functions return value Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.15 107/667] sched/core: Avoid obvious double update_rq_clock warning Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.15 108/667] spi: stm32-qspi: Fix wait_cmd timeout in APM mode Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.15 109/667] dma-debug: change allocation mode from GFP_NOWAIT to GFP_ATIOMIC Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.15 110/667] ACPI: PM: Block ASUS B1400CEAE from suspend to idle by default Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.15 111/667] ipmi:ssif: Check for NULL msg when handling events and messages Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.15 112/667] ipmi: Fix pr_fmt to avoid compilation issues Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.15 113/667] rtlwifi: Use pr_warn instead of WARN_ONCE Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.15 114/667] mt76: mt7921: accept rx frames with non-standard VHT MCS10-11 Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.15 115/667] mt76: fix encap offload ethernet type check Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.15 116/667] media: rga: fix possible memory leak in rga_probe Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.15 117/667] media: coda: limit frame interval enumeration to supported encoder frame sizes Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.15 118/667] media: hantro: HEVC: unconditionnaly set pps_{cb/cr}_qp_offset values Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.15 119/667] media: ccs-core.c: fix failure to call clk_disable_unprepare Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.15 120/667] media: imon: reorganize serialization Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.15 121/667] media: cec-adap.c: fix is_configuring state Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.15 122/667] usbnet: Run unregister_netdev() before unbind() again Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.15 123/667] openrisc: start CPU timer early in boot Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.15 124/667] nvme-pci: fix a NULL pointer dereference in nvme_alloc_admin_tags Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.15 125/667] ASoC: rt5645: Fix errorenous cleanup order Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.15 126/667] nbd: Fix hung on disconnect request if socket is closed before Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.15 127/667] drm/amd/pm: update smartshift powerboost calc for smu12 Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.15 128/667] drm/amd/pm: update smartshift powerboost calc for smu13 Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.15 129/667] net: phy: micrel: Allow probing without .driver_data Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.15 130/667] media: exynos4-is: Fix compile warning Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.15 131/667] media: hantro: Stop using H.264 parameter pic_num Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.15 132/667] ASoC: max98357a: remove dependency on GPIOLIB Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.15 133/667] ASoC: rt1015p: " Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.15 134/667] ACPI: CPPC: Assume no transition latency if no PCCT Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.15 135/667] nvme: set non-mdts limits in nvme_scan_work Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.15 136/667] can: mcp251xfd: silence clangs -Wunaligned-access warning Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.15 137/667] x86/microcode: Add explicit CPU vendor dependency Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.15 138/667] net: ipa: ignore endianness if there is no header Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.15 139/667] m68k: atari: Make Atari ROM port I/O write macros return void Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.15 140/667] rxrpc: Return an error to sendmsg if call failed Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.15 141/667] rxrpc, afs: Fix selection of abort codes Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.15 142/667] afs: Adjust ACK interpretation to try and cope with NAT Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.15 143/667] eth: tg3: silence the GCC 12 array-bounds warning Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.15 144/667] char: tpm: cr50_i2c: Suppress duplicated error message in .remove() Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.15 145/667] selftests/bpf: fix btf_dump/btf_dump due to recent clang change Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.15 146/667] gfs2: use i_lock spin_lock for inode qadata Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.15 147/667] scsi: target: tcmu: Avoid holding XArray lock when calling lock_page Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.15 148/667] IB/rdmavt: add missing locks in rvt_ruc_loopback Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.15 149/667] ARM: dts: ox820: align interrupt controller node name with dtschema Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.15 150/667] ARM: dts: socfpga: " Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.15 151/667] ARM: dts: s5pv210: align DMA channels " Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.15 152/667] arm64: dts: qcom: msm8994: Fix the cont_splash_mem address Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.15 153/667] arm64: dts: qcom: msm8994: Fix BLSP[12]_DMA channels count Greg Kroah-Hartman
2022-06-07 16:56 ` [PATCH 5.15 154/667] PM / devfreq: rk3399_dmc: Disable edev on remove() Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.15 155/667] crypto: ccree - use fine grained DMA mapping dir Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.15 156/667] soc: ti: ti_sci_pm_domains: Check for null return of devm_kcalloc Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.15 157/667] fs: jfs: fix possible NULL pointer dereference in dbFree() Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.15 158/667] arm64: dts: qcom: sdm845-xiaomi-beryllium: fix typo in panels vddio-supply property Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.15 159/667] ALSA: usb-audio: Add quirk bits for enabling/disabling generic implicit fb Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.15 160/667] ALSA: usb-audio: Move generic implicit fb quirk entries into quirks.c Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.15 161/667] ARM: OMAP1: clock: Fix UART rate reporting algorithm Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.15 162/667] powerpc/fadump: Fix fadump to work with a different endian capture kernel Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.15 163/667] fat: add ratelimit to fat*_ent_bread() Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.15 164/667] pinctrl: renesas: rzn1: Fix possible null-ptr-deref in sh_pfc_map_resources() Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.15 165/667] ARM: versatile: Add missing of_node_put in dcscb_init Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.15 166/667] ARM: dts: exynos: add atmel,24c128 fallback to Samsung EEPROM Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.15 167/667] ARM: hisi: Add missing of_node_put after of_find_compatible_node Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.15 168/667] cpufreq: Avoid unnecessary frequency updates due to mismatch Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.15 169/667] powerpc/rtas: Keep MSR[RI] set when calling RTAS Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.15 170/667] PCI: Avoid pci_dev_lock() AB/BA deadlock with sriov_numvfs_store() Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.15 171/667] KVM: PPC: Book3S HV Nested: L2 LPCR should inherit L1 LPES setting Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.15 172/667] alpha: fix alloc_zeroed_user_highpage_movable() Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.15 173/667] tracing: incorrect isolate_mote_t cast in mm_vmscan_lru_isolate Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.15 174/667] powerpc/powernv/vas: Assign real address to rx_fifo in vas_rx_win_attr Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.15 175/667] powerpc/xics: fix refcount leak in icp_opal_init() Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.15 176/667] powerpc/powernv: fix missing of_node_put in uv_init() Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.15 177/667] macintosh/via-pmu: Fix build failure when CONFIG_INPUT is disabled Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.15 178/667] powerpc/iommu: Add missing of_node_put in iommu_init_early_dart Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.15 179/667] smb3: check for null tcon Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.15 180/667] RDMA/hfi1: Prevent panic when SDMA is disabled Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.15 181/667] Input: gpio-keys - cancel delayed work only in case of GPIO Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.15 182/667] drm: fix EDID struct for old ARM OABI format Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.15 183/667] drm/bridge_connector: enable HPD by default if supported Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.15 184/667] dt-bindings: display: sitronix, st7735r: Fix backlight in example Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.15 185/667] drm/vmwgfx: Fix an invalid read Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.15 186/667] ath11k: acquire ab->base_lock in unassign when finding the peer by addr Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.15 187/667] drm: bridge: it66121: Fix the register page length Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.15 188/667] ath9k: fix ar9003_get_eepmisc Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.15 189/667] drm/edid: fix invalid EDID extension block filtering Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.15 190/667] drm/bridge: adv7511: clean up CEC adapter when probe fails Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.15 191/667] drm: bridge: icn6211: Fix register layout Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.15 192/667] drm: bridge: icn6211: Fix HFP_HSW_HBP_HI and HFP_MIN handling Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.15 193/667] mtd: spinand: gigadevice: fix Quad IO for GD5F1GQ5UExxG Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.15 194/667] spi: qcom-qspi: Add minItems to interconnect-names Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.15 195/667] ASoC: mediatek: Fix error handling in mt8173_max98090_dev_probe Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.15 196/667] ASoC: mediatek: Fix missing of_node_put in mt2701_wm8960_machine_probe Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.15 197/667] x86/delay: Fix the wrong asm constraint in delay_loop() Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.15 198/667] drm/vc4: hvs: Fix frame count register readout Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.15 199/667] drm/mediatek: Fix mtk_cec_mask() Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.15 200/667] drm/vc4: hvs: Reset muxes at probe time Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.15 201/667] drm/vc4: txp: Dont set TXP_VSTART_AT_EOF Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.15 202/667] drm/vc4: txp: Force alpha to be 0xff if its disabled Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.15 203/667] libbpf: Dont error out on CO-RE relos for overriden weak subprogs Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.15 204/667] x86/PCI: Fix ALi M1487 (IBC) PIRQ router link value interpretation Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.15 205/667] mptcp: reset the packet scheduler on PRIO change Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.15 206/667] nl80211: show SSID for P2P_GO interfaces Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.15 207/667] drm/komeda: Fix an undefined behavior bug in komeda_plane_add() Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.15 208/667] drm: mali-dp: potential dereference of null pointer Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.15 209/667] spi: spi-ti-qspi: Fix return value handling of wait_for_completion_timeout Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.15 210/667] scftorture: Fix distribution of short handler delays Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.15 211/667] net: dsa: mt7530: 1G can also support 1000BASE-X link mode Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.15 212/667] ixp4xx_eth: fix error check return value of platform_get_irq() Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.15 213/667] NFC: NULL out the dev->rfkill to prevent UAF Greg Kroah-Hartman
2022-06-07 16:57 ` [PATCH 5.15 214/667] efi: Add missing prototype for efi_capsule_setup_info Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.15 215/667] device property: Check fwnode->secondary when finding properties Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.15 216/667] device property: Allow error pointer to be passed to fwnode APIs Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.15 217/667] target: remove an incorrect unmap zeroes data deduction Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.15 218/667] drbd: fix duplicate array initializer Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.15 219/667] EDAC/dmc520: Dont print an error for each unconfigured interrupt line Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.15 220/667] mtd: rawnand: denali: Use managed device resources Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.15 221/667] HID: hid-led: fix maximum brightness for Dream Cheeky Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.15 222/667] HID: elan: Fix potential double free in elan_input_configured Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.15 223/667] drm/bridge: Fix error handling in analogix_dp_probe Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.15 224/667] regulator: da9121: Fix uninit-value in da9121_assign_chip_model() Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.15 225/667] drm/mediatek: dpi: Use mt8183 output formats for mt8192 Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.15 226/667] signal: Deliver SIGTRAP on perf event asynchronously if blocked Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.15 227/667] sched/fair: Fix cfs_rq_clock_pelt() for throttled cfs_rq Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.15 228/667] sched/psi: report zeroes for CPU full at the system level Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.15 229/667] spi: img-spfi: Fix pm_runtime_get_sync() error checking Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.15 230/667] cpufreq: Fix possible race in cpufreq online error path Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.15 231/667] printk: use atomic updates for klogd work Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.15 232/667] printk: add missing memory barrier to wake_up_klogd() Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.15 233/667] printk: wake waiters for safe and NMI contexts Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.15 234/667] ath9k_htc: fix potential out of bounds access with invalid rxstatus->rs_keyix Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.15 235/667] media: i2c: max9286: Use dev_err_probe() helper Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.15 236/667] media: i2c: max9286: Use "maxim,gpio-poc" property Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.15 237/667] media: i2c: max9286: fix kernel oops when removing module Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.15 238/667] media: hantro: Empty encoder capture buffers by default Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.15 239/667] drm/panel: simple: Add missing bus flags for Innolux G070Y2-L01 Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.15 240/667] ALSA: pcm: Check for null pointer of pointer substream before dereferencing it Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.15 241/667] mtdblock: warn if opened on NAND Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.15 242/667] inotify: show inotify mask flags in proc fdinfo Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.15 243/667] fsnotify: fix wrong lockdep annotations Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.15 244/667] spi: rockchip: Stop spi slave dma receiver when cs inactive Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.15 245/667] spi: rockchip: Preset cs-high and clk polarity in setup progress Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.15 246/667] spi: rockchip: fix missing error on unsupported SPI_CS_HIGH Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.15 247/667] of: overlay: do not break notify on NOTIFY_{OK|STOP} Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.15 248/667] selftests/damon: add damon to selftests root Makefile Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.15 249/667] drm/msm/dp: Modify prototype of encoder based API Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.15 250/667] drm/msm/hdmi: switch to drm_bridge_connector Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.15 251/667] drm/msm/dpu: adjust display_v_end for eDP and DP Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.15 252/667] scsi: iscsi: Fix harmless double shift bug Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.15 253/667] scsi: ufs: qcom: Fix ufs_qcom_resume() Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.15 254/667] scsi: ufs: core: Exclude UECxx from SFR dump list Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.15 255/667] drm/v3d: Fix null pointer dereference of pointer perfmon Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.15 256/667] selftests/resctrl: Fix null pointer dereference on open failed Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.15 257/667] libbpf: Fix logic for finding matching program for CO-RE relocation Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.15 258/667] mtd: spi-nor: core: Check written SR value in spi_nor_write_16bit_sr_and_check() Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.15 259/667] x86/pm: Fix false positive kmemleak report in msr_build_context() Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.15 260/667] mtd: rawnand: cadence: fix possible null-ptr-deref in cadence_nand_dt_probe() Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.15 261/667] mtd: rawnand: intel: fix possible null-ptr-deref in ebu_nand_probe() Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.15 262/667] x86/speculation: Add missing prototype for unpriv_ebpf_notify() Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.15 263/667] ASoC: rk3328: fix disabling mclk on pclk probe failure Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.15 264/667] perf tools: Add missing headers needed by util/data.h Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.15 265/667] drm/msm/disp/dpu1: set vbif hw config to NULL to avoid use after memory free during pm runtime resume Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.15 266/667] drm/msm/dp: stop event kernel thread when DP unbind Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.15 267/667] drm/msm/dp: fix error check return value of irq_of_parse_and_map() Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.15 268/667] drm/msm/dp: reset DP controller before transmit phy test pattern Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.15 269/667] drm/msm/dp: do not stop transmitting phy test pattern during DP phy compliance test Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.15 270/667] drm/msm/dsi: fix error checks and return values for DSI xmit functions Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.15 271/667] drm/msm/hdmi: check return value after calling platform_get_resource_byname() Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.15 272/667] drm/msm/hdmi: fix error check return value of irq_of_parse_and_map() Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.15 273/667] drm/msm: add missing include to msm_drv.c Greg Kroah-Hartman
2022-06-07 16:58 ` [PATCH 5.15 274/667] drm/panel: panel-simple: Fix proper bpc for AM-1280800N3TZQW-T00H Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.15 275/667] kunit: fix debugfs code to use enum kunit_status, not bool Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.15 276/667] drm/rockchip: vop: fix possible null-ptr-deref in vop_bind() Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.15 277/667] spi: cadence-quadspi: fix Direct Access Mode disable for SoCFPGA Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.15 278/667] perf tools: Use Python devtools for version autodetection rather than runtime Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.15 279/667] virtio_blk: fix the discard_granularity and discard_alignment queue limits Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.15 280/667] nl80211: dont hold RTNL in color change request Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.15 281/667] x86: Fix return value of __setup handlers Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.15 282/667] irqchip/exiu: Fix acknowledgment of edge triggered interrupts Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.15 283/667] irqchip/aspeed-i2c-ic: Fix irq_of_parse_and_map() return value Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.15 284/667] irqchip/aspeed-scu-ic: " Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.15 285/667] x86/mm: Cleanup the control_va_addr_alignment() __setup handler Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.15 286/667] arm64: fix types in copy_highpage() Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.15 287/667] regulator: core: Fix enable_count imbalance with EXCLUSIVE_GET Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.15 288/667] drm/msm/dsi: fix address for second DSI PHY on SDM660 Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.15 289/667] drm/msm/dp: fix event thread stuck in wait_event after kthread_stop() Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.15 290/667] drm/msm/mdp5: Return error code in mdp5_pipe_release when deadlock is detected Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.15 291/667] drm/msm/mdp5: Return error code in mdp5_mixer_release " Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.15 292/667] drm/msm: return an error pointer in msm_gem_prime_get_sg_table() Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.15 293/667] media: uvcvideo: Fix missing check to determine if element is found in list Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.15 294/667] arm64: stackleak: fix current_top_of_stack() Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.15 295/667] iomap: iomap_write_failed fix Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.15 296/667] spi: spi-fsl-qspi: check return value after calling platform_get_resource_byname() Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.15 297/667] Revert "cpufreq: Fix possible race in cpufreq online error path" Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.15 298/667] regulator: qcom_smd: Fix up PM8950 regulator configuration Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.15 299/667] samples: bpf: Dont fail for a missing VMLINUX_BTF when VMLINUX_H is provided Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.15 300/667] perf/amd/ibs: Use interrupt regs ip for stack unwinding Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.15 301/667] ath11k: Dont check arvif->is_started before sending management frames Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.15 302/667] wilc1000: fix crash observed in AP mode with cfg80211_register_netdevice() Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.15 303/667] HID: amd_sfh: Modify the bus name Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.15 304/667] HID: amd_sfh: Modify the hid name Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.15 305/667] ASoC: fsl: Use dev_err_probe() helper Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.15 306/667] ASoC: fsl: Fix refcount leak in imx_sgtl5000_probe Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.15 307/667] ASoC: imx-hdmi: Fix refcount leak in imx_hdmi_probe Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.15 308/667] ASoC: mxs-saif: Fix refcount leak in mxs_saif_probe Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.15 309/667] regulator: pfuze100: Fix refcount leak in pfuze_parse_regulators_dt Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.15 310/667] dma-direct: factor out a helper for DMA_ATTR_NO_KERNEL_MAPPING allocations Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.15 311/667] dma-direct: dont fail on highmem CMA pages in dma_direct_alloc_pages Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.15 312/667] ASoC: samsung: Use dev_err_probe() helper Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.15 313/667] ASoC: samsung: Fix refcount leak in aries_audio_probe Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.15 314/667] block: Fix the bio.bi_opf comment Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.15 315/667] kselftest/cgroup: fix test_stress.sh to use OUTPUT dir Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.15 316/667] scripts/faddr2line: Fix overlapping text section failures Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.15 317/667] media: aspeed: Fix an error handling path in aspeed_video_probe() Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.15 318/667] media: exynos4-is: Fix PM disable depth imbalance in fimc_is_probe Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.15 319/667] mt76: mt7921: Fix the error handling path of mt7921_pci_probe() Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.15 320/667] mt76: do not attempt to reorder received 802.3 packets without agg session Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.15 321/667] media: st-delta: Fix PM disable depth imbalance in delta_probe Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.15 322/667] media: atmel: atmel-isc: Fix PM disable depth imbalance in atmel_isc_probe Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.15 323/667] media: i2c: rdacm2x: properly set subdev entity function Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.15 324/667] media: exynos4-is: Change clk_disable to clk_disable_unprepare Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.15 325/667] media: pvrusb2: fix array-index-out-of-bounds in pvr2_i2c_core_init Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.15 326/667] media: vsp1: Fix offset calculation for plane cropping Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.15 327/667] media: atmel: atmel-sama5d2-isc: fix wrong mask in YUYV format check Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.15 328/667] media: hantro: HEVC: Fix tile info buffer value computation Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.15 329/667] Bluetooth: fix dangling sco_conn and use-after-free in sco_sock_timeout Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.15 330/667] Bluetooth: use hdev lock in activate_scan for hci_is_adv_monitoring Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.15 331/667] Bluetooth: use hdev lock for accept_list and reject_list in conn req Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.15 332/667] nvme: set dma alignment to dword Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.15 333/667] m68k: math-emu: Fix dependencies of math emulation support Greg Kroah-Hartman
2022-06-07 16:59 ` [PATCH 5.15 334/667] sctp: read sk->sk_bound_dev_if once in sctp_rcv() Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.15 335/667] net: hinic: add missing destroy_workqueue in hinic_pf_to_mgmt_init Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.15 336/667] ASoC: ti: j721e-evm: Fix refcount leak in j721e_soc_probe_* Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.15 337/667] kselftest/arm64: bti: force static linking Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.15 338/667] media: ov7670: remove ov7670_power_off from ov7670_remove Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.15 339/667] media: i2c: ov5648: fix wrong pointer passed to IS_ERR() and PTR_ERR() Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.15 340/667] media: staging: media: rkvdec: Make use of the helper function devm_platform_ioremap_resource() Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.15 341/667] media: rkvdec: Stop overclocking the decoder Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.15 342/667] media: rkvdec: h264: Fix dpb_valid implementation Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.15 343/667] media: rkvdec: h264: Fix bit depth wrap in pps packet Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.15 344/667] regulator: scmi: Fix refcount leak in scmi_regulator_probe Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.15 345/667] ext4: reject the commit option on ext2 filesystems Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.15 346/667] drm/msm/a6xx: Fix refcount leak in a6xx_gpu_init Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.15 347/667] drm: msm: fix possible memory leak in mdp5_crtc_cursor_set() Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.15 348/667] x86/sev: Annotate stack change in the #VC handler Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.15 349/667] drm/msm: dont free the IRQ if it was not requested Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.15 350/667] selftests/bpf: Add missed ima_setup.sh in Makefile Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.15 351/667] drm/msm/dpu: handle pm_runtime_get_sync() errors in bind path Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.15 352/667] drm/i915: Fix CFI violation with show_dynamic_id() Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.15 353/667] thermal/drivers/bcm2711: Dont clamp temperature at zero Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.15 354/667] thermal/drivers/broadcom: Fix potential NULL dereference in sr_thermal_probe Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.15 355/667] thermal/core: Fix memory leak in __thermal_cooling_device_register() Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.15 356/667] thermal/drivers/imx_sc_thermal: Fix refcount leak in imx_sc_thermal_probe Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.15 357/667] bfq: Relax waker detection for shared queues Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.15 358/667] bfq: Allow current waker to defend against a tentative one Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.15 359/667] ASoC: wm2000: fix missing clk_disable_unprepare() on error in wm2000_anc_transition() Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.15 360/667] PM: domains: Fix initialization of genpds next_wakeup Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.15 361/667] net: macb: Fix PTP one step sync support Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.15 362/667] NFC: hci: fix sleep in atomic context bugs in nfc_hci_hcp_message_tx Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.15 363/667] ASoC: max98090: Move check for invalid values before casting in max98090_put_enab_tlv() Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.15 364/667] net: stmmac: selftests: Use kcalloc() instead of kzalloc() Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.15 365/667] net: stmmac: fix out-of-bounds access in a selftest Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.15 366/667] hv_netvsc: Fix potential dereference of NULL pointer Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.15 367/667] hwmon: (pmbus) Check PEC support before reading other registers Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.15 368/667] rxrpc: Fix listen() setting the bar too high for the prealloc rings Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.15 369/667] rxrpc: Dont try to resend the request if were receiving the reply Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.15 370/667] rxrpc: Fix overlapping ACK accounting Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.15 371/667] rxrpc: Dont let ack.previousPacket regress Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.15 372/667] rxrpc: Fix decision on when to generate an IDLE ACK Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.15 373/667] net: huawei: hinic: Use devm_kcalloc() instead of devm_kzalloc() Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.15 374/667] hinic: Avoid some over memory allocation Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.15 375/667] net: dsa: restrict SMSC_LAN9303_I2C kconfig Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.15 376/667] net/smc: postpone sk_refcnt increment in connect() Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.15 377/667] dma-direct: factor out dma_set_{de,en}crypted helpers Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.15 378/667] dma-direct: dont call dma_set_decrypted for remapped allocations Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.15 379/667] dma-direct: always leak memory that cant be re-encrypted Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.15 380/667] dma-direct: dont over-decrypt memory Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.15 381/667] arm64: dts: rockchip: Move drive-impedance-ohm to emmc phy on rk3399 Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.15 382/667] arm64: dts: mt8192: Fix nor_flash status disable typo Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.15 383/667] PCI/ACPI: Allow D3 only if Root Port can signal and wake from D3 Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.15 384/667] memory: samsung: exynos5422-dmc: Avoid some over memory allocation Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.15 385/667] ARM: dts: BCM5301X: update CRU block description Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.15 386/667] ARM: dts: BCM5301X: Update pin controller node name Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.15 387/667] ARM: dts: suniv: F1C100: fix watchdog compatible Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.15 388/667] soc: qcom: smp2p: Fix missing of_node_put() in smp2p_parse_ipc Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.15 389/667] soc: qcom: smsm: Fix missing of_node_put() in smsm_parse_ipc Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.15 390/667] PCI: cadence: Fix find_first_zero_bit() limit Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.15 391/667] PCI: rockchip: " Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.15 392/667] PCI: mediatek: Fix refcount leak in mtk_pcie_subsys_powerup() Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.15 393/667] PCI: dwc: Fix setting error return on MSI DMA mapping failure Greg Kroah-Hartman
2022-06-07 17:00 ` [PATCH 5.15 394/667] ARM: dts: ci4x10: Adapt to changes in imx6qdl.dtsi regarding fec clocks Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.15 395/667] soc: qcom: llcc: Add MODULE_DEVICE_TABLE() Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.15 396/667] KVM: nVMX: Leave most VM-Exit info fields unmodified on failed VM-Entry Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.15 397/667] KVM: nVMX: Clear IDT vectoring on nested VM-Exit for double/triple fault Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.15 398/667] crypto: qat - set CIPHER capability for QAT GEN2 Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.15 399/667] crypto: qat - set COMPRESSION " Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.15 400/667] crypto: qat - set CIPHER capability for DH895XCC Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.15 401/667] crypto: qat - set COMPRESSION " Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.15 402/667] platform/chrome: cros_ec: fix error handling in cros_ec_register() Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.15 403/667] ARM: dts: imx6dl-colibri: Fix I2C pinmuxing Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.15 404/667] platform/chrome: Re-introduce cros_ec_cmd_xfer and use it for ioctls Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.15 405/667] can: xilinx_can: mark bit timing constants as const Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.15 406/667] ARM: dts: stm32: Fix PHY post-reset delay on Avenger96 Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.15 407/667] ARM: dts: bcm2835-rpi-zero-w: Fix GPIO line name for Wifi/BT Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.15 408/667] ARM: dts: bcm2837-rpi-cm3-io3: Fix GPIO line names for SMPS I2C Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.15 409/667] ARM: dts: bcm2837-rpi-3-b-plus: Fix GPIO line name of power LED Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.15 410/667] ARM: dts: bcm2835-rpi-b: Fix GPIO line names Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.15 411/667] misc: ocxl: fix possible double free in ocxl_file_register_afu Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.15 412/667] crypto: marvell/cesa - ECB does not IV Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.15 413/667] gpiolib: of: Introduce hook for missing gpio-ranges Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.15 414/667] pinctrl: bcm2835: implement " Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.15 415/667] arm: mediatek: select arch timer for mt7629 Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.15 416/667] pinctrl/rockchip: support deferring other gpio params Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.15 417/667] pinctrl: mediatek: mt8195: enable driver on mtk platforms Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.15 418/667] arm64: dts: qcom: qrb5165-rb5: Fix can-clock node name Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.15 419/667] Drivers: hv: vmbus: Fix handling of messages with transaction ID of zero Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.15 420/667] powerpc/fadump: fix PT_LOAD segment for boot memory area Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.15 421/667] mfd: ipaq-micro: Fix error check return value of platform_get_irq() Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.15 422/667] scsi: fcoe: Fix Wstringop-overflow warnings in fcoe_wwn_from_mac() Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.15 423/667] soc: bcm: Check for NULL return of devm_kzalloc() Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.15 424/667] arm64: dts: ti: k3-am64-mcu: remove incorrect UART base clock rates Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.15 425/667] ASoC: sh: rz-ssi: Check return value of pm_runtime_resume_and_get() Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.15 426/667] ASoC: sh: rz-ssi: Propagate error codes returned from platform_get_irq_byname() Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.15 427/667] ASoC: sh: rz-ssi: Release the DMA channels in rz_ssi_probe() error path Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.15 428/667] firmware: arm_scmi: Fix list protocols enumeration in the base protocol Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.15 429/667] nvdimm: Fix firmware activation deadlock scenarios Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.15 430/667] nvdimm: Allow overwrite in the presence of disabled dimms Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.15 431/667] pinctrl: mvebu: Fix irq_of_parse_and_map() return value Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.15 432/667] drivers/base/node.c: fix compaction sysfs file leak Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.15 433/667] dax: fix cache flush on PMD-mapped pages Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.15 434/667] drivers/base/memory: fix an unlikely reference counting issue in __add_memory_block() Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.15 435/667] firmware: arm_ffa: Fix uuid parameter to ffa_partition_probe Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.15 436/667] firmware: arm_ffa: Remove incorrect assignment of driver_data Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.15 437/667] list: introduce list_is_head() helper and re-use it in list.h Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.15 438/667] list: fix a data-race around ep->rdllist Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.15 439/667] drm/msm/dpu: fix error check return value of irq_of_parse_and_map() Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.15 440/667] powerpc/8xx: export cpm_setbrg for modules Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.15 441/667] pinctrl: renesas: r8a779a0: Fix GPIO function on I2C-capable pins Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.15 442/667] pinctrl: renesas: core: Fix possible null-ptr-deref in sh_pfc_map_resources() Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.15 443/667] powerpc/idle: Fix return value of __setup() handler Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.15 444/667] powerpc/4xx/cpm: " Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.15 445/667] RDMA/hns: Add the detection for CMDQ status in the device initialization process Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.15 446/667] arm64: dts: marvell: espressobin-ultra: fix SPI-NOR config Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.15 447/667] arm64: dts: marvell: espressobin-ultra: enable front USB3 port Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.15 448/667] ASoC: atmel-pdmic: Remove endianness flag on pdmic component Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.15 449/667] ASoC: atmel-classd: Remove endianness flag on class d component Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.15 450/667] proc: fix dentry/inode overinstantiating under /proc/${pid}/net Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.15 451/667] ipc/mqueue: use get_tree_nodev() in mqueue_get_tree() Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.15 452/667] PCI: imx6: Fix PERST# start-up sequence Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.15 453/667] tty: fix deadlock caused by calling printk() under tty_port->lock Greg Kroah-Hartman
2022-06-07 17:01 ` [PATCH 5.15 454/667] crypto: sun8i-ss - rework handling of IV Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.15 455/667] crypto: sun8i-ss - handle zero sized sg Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.15 456/667] crypto: cryptd - Protect per-CPU resource by disabling BH Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.15 457/667] ARM: dts: at91: sama7g5: remove interrupt-parent from gic node Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.15 458/667] hugetlbfs: fix hugetlbfs_statfs() locking Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.15 459/667] Input: sparcspkr - fix refcount leak in bbc_beep_probe Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.15 460/667] PCI/AER: Clear MULTI_ERR_COR/UNCOR_RCV bits Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.15 461/667] PCI: microchip: Fix potential race in interrupt handling Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.15 462/667] hwrng: omap3-rom - fix using wrong clk_disable() in omap_rom_rng_runtime_resume() Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.15 463/667] powerpc/64: Only WARN if __pa()/__va() called with bad addresses Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.15 464/667] powerpc/perf: Fix the threshold compare group constraint for power10 Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.15 465/667] powerpc/perf: Fix the threshold compare group constraint for power9 Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.15 466/667] macintosh: via-pmu and via-cuda need RTC_LIB Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.15 467/667] powerpc/xive: Add some error handling code to xive_spapr_init() Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.15 468/667] powerpc/xive: Fix refcount leak in xive_spapr_init Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.15 469/667] powerpc/fsl_rio: Fix refcount leak in fsl_rio_setup Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.15 470/667] mfd: davinci_voicecodec: Fix possible null-ptr-deref davinci_vc_probe() Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.15 471/667] nfsd: destroy percpu stats counters after reply cache shutdown Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.15 472/667] mailbox: forward the hrtimer if not queued and under a lock Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.15 473/667] RDMA/hfi1: Prevent use of lock before it is initialized Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.15 474/667] KVM: LAPIC: Drop pending LAPIC timer injection when canceling the timer Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.15 475/667] Input: stmfts - do not leave device disabled in stmfts_input_open Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.15 476/667] OPP: call of_node_put() on error path in _bandwidth_supported() Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.15 477/667] f2fs: support fault injection for dquot_initialize() Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.15 478/667] f2fs: fix to do sanity check on inline_dots inode Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.15 479/667] f2fs: fix dereference of stale list iterator after loop body Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.15 480/667] iommu/amd: Enable swiotlb in all cases Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.15 481/667] iommu/mediatek: Fix 2 HW sharing pgtable issue Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.15 482/667] iommu/mediatek: Add list_del in mtk_iommu_remove Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.15 483/667] iommu/mediatek: Remove clk_disable " Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.15 484/667] iommu/mediatek: Add mutex for m4u_group and m4u_dom in data Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.15 485/667] i2c: at91: use dma safe buffers Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.15 486/667] cpufreq: mediatek: Use module_init and add module_exit Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.15 487/667] cpufreq: mediatek: Unregister platform device on exit Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.15 488/667] iommu/arm-smmu-v3-sva: Fix mm use-after-free Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.15 489/667] MIPS: Loongson: Use hwmon_device_register_with_groups() to register hwmon Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.15 490/667] iommu/mediatek: Fix NULL pointer dereference when printing dev_name Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.15 491/667] i2c: at91: Initialize dma_buf in at91_twi_xfer() Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.15 492/667] dmaengine: idxd: Fix the error handling path in idxd_cdev_register() Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.15 493/667] NFS: Do not report EINTR/ERESTARTSYS as mapping errors Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.15 494/667] NFS: fsync() should report filesystem errors over EINTR/ERESTARTSYS Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.15 495/667] NFS: Dont report ENOSPC write errors twice Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.15 496/667] NFS: Do not report flush errors in nfs_write_end() Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.15 497/667] NFS: Dont report errors from nfs_pageio_complete() more than once Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.15 498/667] NFSv4/pNFS: Do not fail I/O when we fail to allocate the pNFS layout Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.15 499/667] NFS: Further fixes to the writeback error handling Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.15 500/667] video: fbdev: clcdfb: Fix refcount leak in clcdfb_of_vram_setup Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.15 501/667] dmaengine: stm32-mdma: remove GISR1 register Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.15 502/667] dmaengine: stm32-mdma: fix chan initialization in stm32_mdma_irq_handler() Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.15 503/667] iommu/amd: Increase timeout waiting for GA log enablement Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.15 504/667] i2c: npcm: Fix timeout calculation Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.15 505/667] i2c: npcm: Correct register access width Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.15 506/667] i2c: npcm: Handle spurious interrupts Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.15 507/667] i2c: rcar: fix PM ref counts in probe error paths Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.15 508/667] perf build: Fix btf__load_from_kernel_by_id() feature check Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.15 509/667] perf c2c: Use stdio interface if slang is not supported Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.15 510/667] perf jevents: Fix event syntax error caused by ExtSel Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.15 511/667] video: fbdev: vesafb: Fix a use-after-free due early fb_info cleanup Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.15 512/667] NFS: Always initialise fattr->label in nfs_fattr_alloc() Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.15 513/667] NFS: Create a new nfs_alloc_fattr_with_label() function Greg Kroah-Hartman
2022-06-07 17:02 ` [PATCH 5.15 514/667] NFS: Convert GFP_NOFS to GFP_KERNEL Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.15 515/667] NFSv4.1 mark qualified async operations as MOVEABLE tasks Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.15 516/667] f2fs: fix to avoid f2fs_bug_on() in dec_valid_node_count() Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.15 517/667] f2fs: fix to do sanity check on block address in f2fs_do_zero_range() Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.15 518/667] f2fs: fix to clear dirty inode in f2fs_evict_inode() Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.15 519/667] f2fs: fix deadloop in foreground GC Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.15 520/667] f2fs: dont need inode lock for system hidden quota Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.15 521/667] f2fs: fix to do sanity check on total_data_blocks Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.15 522/667] f2fs: dont use casefolded comparison for "." and ".." Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.15 523/667] f2fs: fix fallocate to use file_modified to update permissions consistently Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.15 524/667] f2fs: fix to do sanity check for inline inode Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.15 525/667] objtool: Fix objtool regression on x32 systems Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.15 526/667] objtool: Fix symbol creation Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.15 527/667] wifi: mac80211: fix use-after-free in chanctx code Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.15 528/667] iwlwifi: mvm: fix assert 1F04 upon reconfig Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.15 529/667] fs-writeback: writeback_sb_inodes:Recalculate wrote according skipped pages Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.15 530/667] efi: Do not import certificates from UEFI Secure Boot for T2 Macs Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.15 531/667] bfq: Avoid false marking of bic as stably merged Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.15 532/667] bfq: Avoid merging queues with different parents Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.15 533/667] bfq: Split shared queues on move between cgroups Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.15 534/667] bfq: Update cgroup information before merging bio Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.15 535/667] bfq: Drop pointless unlock-lock pair Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.15 536/667] bfq: Remove pointless bfq_init_rq() calls Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.15 537/667] bfq: Track whether bfq_group is still online Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.15 538/667] bfq: Get rid of __bio_blkcg() usage Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.15 539/667] bfq: Make sure bfqg for which we are queueing requests is online Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.15 540/667] ext4: mark group as trimmed only if it was fully scanned Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.15 541/667] ext4: fix use-after-free in ext4_rename_dir_prepare Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.15 542/667] ext4: fix race condition between ext4_write and ext4_convert_inline_data Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.15 543/667] ext4: fix warning in ext4_handle_inode_extension Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.15 544/667] ext4: fix bug_on in ext4_writepages Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.15 545/667] ext4: filter out EXT4_FC_REPLAY from on-disk superblock field s_state Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.15 546/667] ext4: fix bug_on in __es_tree_search Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.15 547/667] ext4: verify dir block before splitting it Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.15 548/667] ext4: avoid cycles in directory h-tree Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.15 549/667] ACPI: property: Release subnode properties with data nodes Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.15 550/667] tty: goldfish: Introduce gf_ioread32()/gf_iowrite32() Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.15 551/667] tracing: Fix potential double free in create_var_ref() Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.15 552/667] tracing: Initialize integer variable to prevent garbage return value Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.15 553/667] drm/amdgpu: add beige goby PCI ID Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.15 554/667] PCI/PM: Fix bridge_d3_blacklist[] Elo i2 overwrite of Gigabyte X299 Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.15 555/667] PCI: qcom: Fix runtime PM imbalance on probe errors Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.15 556/667] PCI: qcom: Fix unbalanced PHY init " Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.15 557/667] staging: r8188eu: prevent ->Ssid overflow in rtw_wx_set_scan() Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.15 558/667] mm, compaction: fast_find_migrateblock() should return pfn in the target zone Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.15 559/667] s390/perf: obtain sie_block from the right address Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.15 560/667] s390/stp: clock_delta should be signed Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.15 561/667] dlm: fix plock invalid read Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.15 562/667] dlm: uninitialized variable on error in dlm_listen_for_all() Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.15 563/667] dlm: fix missing lkb refcount handling Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.15 564/667] ocfs2: dlmfs: fix error handling of user_dlm_destroy_lock Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.15 565/667] scsi: dc395x: Fix a missing check on list iterator Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.15 566/667] scsi: ufs: qcom: Add a readl() to make sure ref_clk gets enabled Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.15 567/667] landlock: Add clang-format exceptions Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.15 568/667] landlock: Format with clang-format Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.15 569/667] selftests/landlock: Add clang-format exceptions Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.15 570/667] selftests/landlock: Normalize array assignment Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.15 571/667] selftests/landlock: Format with clang-format Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.15 572/667] samples/landlock: Add clang-format exceptions Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.15 573/667] samples/landlock: Format with clang-format Greg Kroah-Hartman
2022-06-07 17:03 ` [PATCH 5.15 574/667] landlock: Fix landlock_add_rule(2) documentation Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.15 575/667] selftests/landlock: Make tests build with old libc Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.15 576/667] selftests/landlock: Extend tests for minimal valid attribute size Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.15 577/667] selftests/landlock: Add tests for unknown access rights Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.15 578/667] selftests/landlock: Extend access right tests to directories Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.15 579/667] selftests/landlock: Fully test file rename with "remove" access Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.15 580/667] selftests/landlock: Add tests for O_PATH Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.15 581/667] landlock: Change landlock_add_rule(2) argument check ordering Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.15 582/667] landlock: Change landlock_restrict_self(2) " Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.15 583/667] selftests/landlock: Test landlock_create_ruleset(2) argument " Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.15 584/667] landlock: Define access_mask_t to enforce a consistent access mask size Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.15 585/667] landlock: Reduce the maximum number of layers to 16 Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.15 586/667] landlock: Create find_rule() from unmask_layers() Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.15 587/667] landlock: Fix same-layer rule unions Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.15 588/667] drm/amdgpu/cs: make commands with 0 chunks illegal behaviour Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.15 589/667] drm/nouveau/subdev/bus: Ratelimit logging for fault errors Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.15 590/667] drm/etnaviv: check for reaped mapping in etnaviv_iommu_unmap_gem Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.15 591/667] drm/nouveau/clk: Fix an incorrect NULL check on list iterator Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.15 592/667] drm/nouveau/kms/nv50-: atom: fix " Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.15 593/667] drm/bridge: analogix_dp: Grab runtime PM reference for DP-AUX Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.15 594/667] drm/i915/dsi: fix VBT send packet port selection for ICL+ Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.15 595/667] md: fix an incorrect NULL check in does_sb_need_changing Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.15 596/667] md: fix an incorrect NULL check in md_reload_sb Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.15 597/667] mtd: cfi_cmdset_0002: Move and rename chip_check/chip_ready/chip_good_for_write Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.15 598/667] mtd: cfi_cmdset_0002: Use chip_ready() for write on S29GL064N Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.15 599/667] media: coda: Fix reported H264 profile Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.15 600/667] media: coda: Add more H264 levels for CODA960 Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.15 601/667] ima: remove the IMA_TEMPLATE Kconfig option Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.15 602/667] Kconfig: Add option for asm goto w/ tied outputs to workaround clang-13 bug Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.15 603/667] RDMA/hfi1: Fix potential integer multiplication overflow errors Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.15 604/667] mmc: core: Allows to override the timeout value for ioctl() path Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.15 605/667] csky: patch_text: Fixup last cpu should be master Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.15 606/667] irqchip/armada-370-xp: Do not touch Performance Counter Overflow on A375, A38x, A39x Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.15 607/667] irqchip: irq-xtensa-mx: fix initial IRQ affinity Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.15 608/667] thermal: devfreq_cooling: use local ops instead of global ops Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.15 609/667] cfg80211: declare MODULE_FIRMWARE for regulatory.db Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.15 610/667] mac80211: upgrade passive scan to active scan on DFS channels after beacon rx Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.15 611/667] um: Use asm-generic/dma-mapping.h Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.15 612/667] um: chan_user: Fix winch_tramp() return value Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.15 613/667] um: Fix out-of-bounds read in LDT setup Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.15 614/667] kexec_file: drop weak attribute from arch_kexec_apply_relocations[_add] Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.15 615/667] ftrace: Clean up hash direct_functions on register failures Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.15 616/667] ksmbd: fix outstanding credits related bugs Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.15 617/667] iommu/msm: Fix an incorrect NULL check on list iterator Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.15 618/667] iommu/dma: Fix iova map result check bug Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.15 619/667] Revert "mm/cma.c: remove redundant cma_mutex lock" Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.15 620/667] mm/page_alloc: always attempt to allocate at least one page during bulk allocation Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.15 621/667] nodemask.h: fix compilation error with GCC12 Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.15 622/667] hugetlb: fix huge_pmd_unshare address update Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.15 623/667] mm/memremap: fix missing call to untrack_pfn() in pagemap_range() Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.15 624/667] xtensa/simdisk: fix proc_read_simdisk() Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.15 625/667] rtl818x: Prevent using not initialized queues Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.15 626/667] ASoC: rt5514: Fix event generation for "DSP Voice Wake Up" control Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.15 627/667] carl9170: tx: fix an incorrect use of list iterator Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.15 628/667] stm: ltdc: fix two incorrect NULL checks on " Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.15 629/667] bcache: improve multithreaded bch_btree_check() Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.15 630/667] bcache: improve multithreaded bch_sectors_dirty_init() Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.15 631/667] bcache: remove incremental dirty sector counting for bch_sectors_dirty_init() Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.15 632/667] bcache: avoid journal no-space deadlock by reserving 1 journal bucket Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.15 633/667] serial: pch: dont overwrite xmit->buf[0] by x_char Greg Kroah-Hartman
2022-06-07 17:04 ` [PATCH 5.15 634/667] tilcdc: tilcdc_external: fix an incorrect NULL check on list iterator Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.15 635/667] gma500: " Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.15 636/667] arm64: dts: qcom: ipq8074: fix the sleep clock frequency Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.15 637/667] arm64: tegra: Add missing DFLL reset on Tegra210 Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.15 638/667] clk: tegra: Add missing reset deassertion Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.15 639/667] phy: qcom-qmp: fix struct clk leak on probe errors Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.15 640/667] ARM: dts: s5pv210: Remove spi-cs-high on panel in Aries Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.15 641/667] ARM: pxa: maybe fix gpio lookup tables Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.15 642/667] SMB3: EBADF/EIO errors in rename/open caused by race condition in smb2_compound_op Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.15 643/667] docs/conf.py: Cope with removal of language=None in Sphinx 5.0.0 Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.15 644/667] dt-bindings: gpio: altera: correct interrupt-cells Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.15 645/667] vdpasim: allow to enable a vq repeatedly Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.15 646/667] blk-iolatency: Fix inflight count imbalances and IO hangs on offline Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.15 647/667] coresight: core: Fix coresight device probe failure issue Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.15 648/667] phy: qcom-qmp: fix reset-controller leak on probe errors Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.15 649/667] net: ipa: fix page free in ipa_endpoint_trans_release() Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.15 650/667] net: ipa: fix page free in ipa_endpoint_replenish_one() Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.15 651/667] kseltest/cgroup: Make test_stress.sh work if run interactively Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.15 652/667] list: test: Add a test for list_is_head() Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.15 653/667] Revert "random: use static branch for crng_ready()" Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.15 654/667] staging: r8188eu: delete rtw_wx_read/write32() Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.15 655/667] RDMA/hns: Remove the num_cqc_timer variable Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.15 656/667] RDMA/rxe: Generate a completion for unsupported/invalid opcode Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.15 657/667] MIPS: IP27: Remove incorrect `cpu_has_fpu override Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.15 658/667] MIPS: IP30: " Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.15 659/667] ext4: only allow test_dummy_encryption when supported Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.15 660/667] interconnect: qcom: sc7180: Drop IP0 interconnects Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.15 661/667] interconnect: qcom: icc-rpmh: Add BCMs to commit list in pre_aggregate Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.15 662/667] fs: add two trivial lookup helpers Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.15 663/667] exportfs: support idmapped mounts Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.15 664/667] fs/ntfs3: Fix invalid free in log_replay Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.15 665/667] md: Dont set mddev private to NULL in raid0 pers->free Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.15 666/667] md: fix double free of io_acct_set bioset Greg Kroah-Hartman
2022-06-07 17:05 ` [PATCH 5.15 667/667] md: bcache: check the return value of kzalloc() in detached_dev_do_request() Greg Kroah-Hartman
2022-06-07 23:28 ` [PATCH 5.15 000/667] 5.15.46-rc1 review Fox Chen
2022-06-08  1:28 ` Shuah Khan
2022-06-08 10:10 ` Sudip Mukherjee
2022-06-08 11:11   ` Sudip Mukherjee
2022-06-08 13:51     ` Guenter Roeck
2022-06-08 13:01 ` Bagas Sanjaya
2022-06-08 16:30 ` Naresh Kamboju
2022-06-08 23:51 ` Guenter Roeck
2022-06-09  0:23 ` Ron Economos

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=20220607164937.488778923@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=alexandru.elisei@arm.com \
    --cc=catalin.marinas@arm.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=maz@kernel.org \
    --cc=sashal@kernel.org \
    --cc=stable@vger.kernel.org \
    /path/to/YOUR_REPLY

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

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