stable.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: "Michael T. Kloos" <michael@michaelkloos.com>
To: Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
	linux-kernel@vger.kernel.org
Cc: stable@vger.kernel.org, Palmer Dabbelt <palmer@rivosinc.com>,
	Sasha Levin <sashal@kernel.org>
Subject: Re: [PATCH 5.16 095/285] riscv: Fixed misaligned memory access. Fixed pointer comparison.
Date: Tue, 12 Apr 2022 11:09:14 -0400	[thread overview]
Message-ID: <ecce92cfd03450e0e41d85bae6c72ef4949ee1b7.camel@michaelkloos.com> (raw)
In-Reply-To: <20220412062946.406503987@linuxfoundation.org>

Backporting to 5.16 looks good to me.

	Michael

On Tue, 2022-04-12 at 08:29 +0200, Greg Kroah-Hartman wrote:
> From: Michael T. Kloos <michael@michaelkloos.com>
> 
> [ Upstream commit 9d1f0ec9f71780e69ceb9d91697600c747d6e02e ]
> 
> Rewrote the RISC-V memmove() assembly implementation.  The
> previous implementation did not check memory alignment and it
> compared 2 pointers with a signed comparison.  The misaligned
> memory access would cause the kernel to crash on systems that
> did not emulate it in firmware and did not support it in hardware.
> Firmware emulation is slow and may not exist.  The RISC-V spec
> does not guarantee that support for misaligned memory accesses
> will exist.  It should not be depended on.
> 
> This patch now checks for XLEN granularity of co-alignment between
> the pointers.  Failing that, copying is done by loading from the 2
> contiguous and naturally aligned XLEN memory locations containing
> the overlapping XLEN sized data to be copied.  The data is shifted
> into the correct place and binary or'ed together on each
> iteration.  The result is then stored into the corresponding
> naturally aligned XLEN sized location in the destination.  For
> unaligned data at the terminations of the regions to be copied
> or for copies less than (2 * XLEN) in size, byte copy is used.
> 
> This patch also now uses unsigned comparison for the pointers and
> migrates to the newer assembler annotations from the now deprecated
> ones.
> 
> Signed-off-by: Michael T. Kloos <michael@michaelkloos.com>
> Signed-off-by: Palmer Dabbelt <palmer@rivosinc.com>
> Signed-off-by: Sasha Levin <sashal@kernel.org>
> ---
>  arch/riscv/lib/memmove.S | 368 +++++++++++++++++++++++++++++++++------
>  1 file changed, 310 insertions(+), 58 deletions(-)
> 
> diff --git a/arch/riscv/lib/memmove.S b/arch/riscv/lib/memmove.S
> index 07d1d2152ba5..e0609e1f0864 100644
> --- a/arch/riscv/lib/memmove.S
> +++ b/arch/riscv/lib/memmove.S
> @@ -1,64 +1,316 @@
> -/* SPDX-License-Identifier: GPL-2.0 */
> +/* SPDX-License-Identifier: GPL-2.0-only */
> +/*
> + * Copyright (C) 2022 Michael T. Kloos <michael@michaelkloos.com>
> + */
>  
>  #include <linux/linkage.h>
>  #include <asm/asm.h>
>  
> -ENTRY(__memmove)
> -WEAK(memmove)
> -        move    t0, a0
> -        move    t1, a1
> -
> -        beq     a0, a1, exit_memcpy
> -        beqz    a2, exit_memcpy
> -        srli    t2, a2, 0x2
> -
> -        slt     t3, a0, a1
> -        beqz    t3, do_reverse
> -
> -        andi    a2, a2, 0x3
> -        li      t4, 1
> -        beqz    t2, byte_copy
> -
> -word_copy:
> -        lw      t3, 0(a1)
> -        addi    t2, t2, -1
> -        addi    a1, a1, 4
> -        sw      t3, 0(a0)
> -        addi    a0, a0, 4
> -        bnez    t2, word_copy
> -        beqz    a2, exit_memcpy
> -        j       byte_copy
> -
> -do_reverse:
> -        add     a0, a0, a2
> -        add     a1, a1, a2
> -        andi    a2, a2, 0x3
> -        li      t4, -1
> -        beqz    t2, reverse_byte_copy
> -
> -reverse_word_copy:
> -        addi    a1, a1, -4
> -        addi    t2, t2, -1
> -        lw      t3, 0(a1)
> -        addi    a0, a0, -4
> -        sw      t3, 0(a0)
> -        bnez    t2, reverse_word_copy
> -        beqz    a2, exit_memcpy
> -
> -reverse_byte_copy:
> -        addi    a0, a0, -1
> -        addi    a1, a1, -1
> +SYM_FUNC_START(__memmove)
> +SYM_FUNC_START_WEAK(memmove)
> +	/*
> +	 * Returns
> +	 *   a0 - dest
> +	 *
> +	 * Parameters
> +	 *   a0 - Inclusive first byte of dest
> +	 *   a1 - Inclusive first byte of src
> +	 *   a2 - Length of copy n
> +	 *
> +	 * Because the return matches the parameter register a0,
> +	 * we will not clobber or modify that register.
> +	 *
> +	 * Note: This currently only works on little-endian.
> +	 * To port to big-endian, reverse the direction of shifts
> +	 * in the 2 misaligned fixup copy loops.
> +	 */
>  
> +	/* Return if nothing to do */
> +	beq a0, a1, return_from_memmove
> +	beqz a2, return_from_memmove
> +
> +	/*
> +	 * Register Uses
> +	 *      Forward Copy: a1 - Index counter of src
> +	 *      Reverse Copy: a4 - Index counter of src
> +	 *      Forward Copy: t3 - Index counter of dest
> +	 *      Reverse Copy: t4 - Index counter of dest
> +	 *   Both Copy Modes: t5 - Inclusive first multibyte/aligned of dest
> +	 *   Both Copy Modes: t6 - Non-Inclusive last multibyte/aligned of dest
> +	 *   Both Copy Modes: t0 - Link / Temporary for load-store
> +	 *   Both Copy Modes: t1 - Temporary for load-store
> +	 *   Both Copy Modes: t2 - Temporary for load-store
> +	 *   Both Copy Modes: a5 - dest to src alignment offset
> +	 *   Both Copy Modes: a6 - Shift ammount
> +	 *   Both Copy Modes: a7 - Inverse Shift ammount
> +	 *   Both Copy Modes: a2 - Alternate breakpoint for unrolled loops
> +	 */
> +
> +	/*
> +	 * Solve for some register values now.
> +	 * Byte copy does not need t5 or t6.
> +	 */
> +	mv   t3, a0
> +	add  t4, a0, a2
> +	add  a4, a1, a2
> +
> +	/*
> +	 * Byte copy if copying less than (2 * SZREG) bytes. This can
> +	 * cause problems with the bulk copy implementation and is
> +	 * small enough not to bother.
> +	 */
> +	andi t0, a2, -(2 * SZREG)
> +	beqz t0, byte_copy
> +
> +	/*
> +	 * Now solve for t5 and t6.
> +	 */
> +	andi t5, t3, -SZREG
> +	andi t6, t4, -SZREG
> +	/*
> +	 * If dest(Register t3) rounded down to the nearest naturally
> +	 * aligned SZREG address, does not equal dest, then add SZREG
> +	 * to find the low-bound of SZREG alignment in the dest memory
> +	 * region.  Note that this could overshoot the dest memory
> +	 * region if n is less than SZREG.  This is one reason why
> +	 * we always byte copy if n is less than SZREG.
> +	 * Otherwise, dest is already naturally aligned to SZREG.
> +	 */
> +	beq  t5, t3, 1f
> +		addi t5, t5, SZREG
> +	1:
> +
> +	/*
> +	 * If the dest and src are co-aligned to SZREG, then there is
> +	 * no need for the full rigmarole of a full misaligned fixup copy.
> +	 * Instead, do a simpler co-aligned copy.
> +	 */
> +	xor  t0, a0, a1
> +	andi t1, t0, (SZREG - 1)
> +	beqz t1, coaligned_copy
> +	/* Fall through to misaligned fixup copy */
> +
> +misaligned_fixup_copy:
> +	bltu a1, a0, misaligned_fixup_copy_reverse
> +
> +misaligned_fixup_copy_forward:
> +	jal  t0, byte_copy_until_aligned_forward
> +
> +	andi a5, a1, (SZREG - 1) /* Find the alignment offset of src (a1) */
> +	slli a6, a5, 3 /* Multiply by 8 to convert that to bits to shift */
> +	sub  a5, a1, t3 /* Find the difference between src and dest */
> +	andi a1, a1, -SZREG /* Align the src pointer */
> +	addi a2, t6, SZREG /* The other breakpoint for the unrolled loop*/
> +
> +	/*
> +	 * Compute The Inverse Shift
> +	 * a7 = XLEN - a6 = XLEN + -a6
> +	 * 2s complement negation to find the negative: -a6 = ~a6 + 1
> +	 * Add that to XLEN.  XLEN = SZREG * 8.
> +	 */
> +	not  a7, a6
> +	addi a7, a7, (SZREG * 8 + 1)
> +
> +	/*
> +	 * Fix Misalignment Copy Loop - Forward
> +	 * load_val0 = load_ptr[0];
> +	 * do {
> +	 * 	load_val1 = load_ptr[1];
> +	 * 	store_ptr += 2;
> +	 * 	store_ptr[0 - 2] = (load_val0 >> {a6}) | (load_val1 << {a7});
> +	 *
> +	 * 	if (store_ptr == {a2})
> +	 * 		break;
> +	 *
> +	 * 	load_val0 = load_ptr[2];
> +	 * 	load_ptr += 2;
> +	 * 	store_ptr[1 - 2] = (load_val1 >> {a6}) | (load_val0 << {a7});
> +	 *
> +	 * } while (store_ptr != store_ptr_end);
> +	 * store_ptr = store_ptr_end;
> +	 */
> +
> +	REG_L t0, (0 * SZREG)(a1)
> +	1:
> +	REG_L t1, (1 * SZREG)(a1)
> +	addi  t3, t3, (2 * SZREG)
> +	srl   t0, t0, a6
> +	sll   t2, t1, a7
> +	or    t2, t0, t2
> +	REG_S t2, ((0 * SZREG) - (2 * SZREG))(t3)
> +
> +	beq   t3, a2, 2f
> +
> +	REG_L t0, (2 * SZREG)(a1)
> +	addi  a1, a1, (2 * SZREG)
> +	srl   t1, t1, a6
> +	sll   t2, t0, a7
> +	or    t2, t1, t2
> +	REG_S t2, ((1 * SZREG) - (2 * SZREG))(t3)
> +
> +	bne   t3, t6, 1b
> +	2:
> +	mv    t3, t6 /* Fix the dest pointer in case the loop was broken */
> +
> +	add  a1, t3, a5 /* Restore the src pointer */
> +	j byte_copy_forward /* Copy any remaining bytes */
> +
> +misaligned_fixup_copy_reverse:
> +	jal  t0, byte_copy_until_aligned_reverse
> +
> +	andi a5, a4, (SZREG - 1) /* Find the alignment offset of src (a4) */
> +	slli a6, a5, 3 /* Multiply by 8 to convert that to bits to shift */
> +	sub  a5, a4, t4 /* Find the difference between src and dest */
> +	andi a4, a4, -SZREG /* Align the src pointer */
> +	addi a2, t5, -SZREG /* The other breakpoint for the unrolled loop*/
> +
> +	/*
> +	 * Compute The Inverse Shift
> +	 * a7 = XLEN - a6 = XLEN + -a6
> +	 * 2s complement negation to find the negative: -a6 = ~a6 + 1
> +	 * Add that to XLEN.  XLEN = SZREG * 8.
> +	 */
> +	not  a7, a6
> +	addi a7, a7, (SZREG * 8 + 1)
> +
> +	/*
> +	 * Fix Misalignment Copy Loop - Reverse
> +	 * load_val1 = load_ptr[0];
> +	 * do {
> +	 * 	load_val0 = load_ptr[-1];
> +	 * 	store_ptr -= 2;
> +	 * 	store_ptr[1] = (load_val0 >> {a6}) | (load_val1 << {a7});
> +	 *
> +	 * 	if (store_ptr == {a2})
> +	 * 		break;
> +	 *
> +	 * 	load_val1 = load_ptr[-2];
> +	 * 	load_ptr -= 2;
> +	 * 	store_ptr[0] = (load_val1 >> {a6}) | (load_val0 << {a7});
> +	 *
> +	 * } while (store_ptr != store_ptr_end);
> +	 * store_ptr = store_ptr_end;
> +	 */
> +
> +	REG_L t1, ( 0 * SZREG)(a4)
> +	1:
> +	REG_L t0, (-1 * SZREG)(a4)
> +	addi  t4, t4, (-2 * SZREG)
> +	sll   t1, t1, a7
> +	srl   t2, t0, a6
> +	or    t2, t1, t2
> +	REG_S t2, ( 1 * SZREG)(t4)
> +
> +	beq   t4, a2, 2f
> +
> +	REG_L t1, (-2 * SZREG)(a4)
> +	addi  a4, a4, (-2 * SZREG)
> +	sll   t0, t0, a7
> +	srl   t2, t1, a6
> +	or    t2, t0, t2
> +	REG_S t2, ( 0 * SZREG)(t4)
> +
> +	bne   t4, t5, 1b
> +	2:
> +	mv    t4, t5 /* Fix the dest pointer in case the loop was broken */
> +
> +	add  a4, t4, a5 /* Restore the src pointer */
> +	j byte_copy_reverse /* Copy any remaining bytes */
> +
> +/*
> + * Simple copy loops for SZREG co-aligned memory locations.
> + * These also make calls to do byte copies for any unaligned
> + * data at their terminations.
> + */
> +coaligned_copy:
> +	bltu a1, a0, coaligned_copy_reverse
> +
> +coaligned_copy_forward:
> +	jal t0, byte_copy_until_aligned_forward
> +
> +	1:
> +	REG_L t1, ( 0 * SZREG)(a1)
> +	addi  a1, a1, SZREG
> +	addi  t3, t3, SZREG
> +	REG_S t1, (-1 * SZREG)(t3)
> +	bne   t3, t6, 1b
> +
> +	j byte_copy_forward /* Copy any remaining bytes */
> +
> +coaligned_copy_reverse:
> +	jal t0, byte_copy_until_aligned_reverse
> +
> +	1:
> +	REG_L t1, (-1 * SZREG)(a4)
> +	addi  a4, a4, -SZREG
> +	addi  t4, t4, -SZREG
> +	REG_S t1, ( 0 * SZREG)(t4)
> +	bne   t4, t5, 1b
> +
> +	j byte_copy_reverse /* Copy any remaining bytes */
> +
> +/*
> + * These are basically sub-functions within the function.  They
> + * are used to byte copy until the dest pointer is in alignment.
> + * At which point, a bulk copy method can be used by the
> + * calling code.  These work on the same registers as the bulk
> + * copy loops.  Therefore, the register values can be picked
> + * up from where they were left and we avoid code duplication
> + * without any overhead except the call in and return jumps.
> + */
> +byte_copy_until_aligned_forward:
> +	beq  t3, t5, 2f
> +	1:
> +	lb   t1,  0(a1)
> +	addi a1, a1, 1
> +	addi t3, t3, 1
> +	sb   t1, -1(t3)
> +	bne  t3, t5, 1b
> +	2:
> +	jalr zero, 0x0(t0) /* Return to multibyte copy loop */
> +
> +byte_copy_until_aligned_reverse:
> +	beq  t4, t6, 2f
> +	1:
> +	lb   t1, -1(a4)
> +	addi a4, a4, -1
> +	addi t4, t4, -1
> +	sb   t1,  0(t4)
> +	bne  t4, t6, 1b
> +	2:
> +	jalr zero, 0x0(t0) /* Return to multibyte copy loop */
> +
> +/*
> + * Simple byte copy loops.
> + * These will byte copy until they reach the end of data to copy.
> + * At that point, they will call to return from memmove.
> + */
>  byte_copy:
> -        lb      t3, 0(a1)
> -        addi    a2, a2, -1
> -        sb      t3, 0(a0)
> -        add     a1, a1, t4
> -        add     a0, a0, t4
> -        bnez    a2, byte_copy
> -
> -exit_memcpy:
> -        move a0, t0
> -        move a1, t1
> -        ret
> -END(__memmove)
> +	bltu a1, a0, byte_copy_reverse
> +
> +byte_copy_forward:
> +	beq  t3, t4, 2f
> +	1:
> +	lb   t1,  0(a1)
> +	addi a1, a1, 1
> +	addi t3, t3, 1
> +	sb   t1, -1(t3)
> +	bne  t3, t4, 1b
> +	2:
> +	ret
> +
> +byte_copy_reverse:
> +	beq  t4, t3, 2f
> +	1:
> +	lb   t1, -1(a4)
> +	addi a4, a4, -1
> +	addi t4, t4, -1
> +	sb   t1,  0(t4)
> +	bne  t4, t3, 1b
> +	2:
> +
> +return_from_memmove:
> +	ret
> +
> +SYM_FUNC_END(memmove)
> +SYM_FUNC_END(__memmove)


  reply	other threads:[~2022-04-12 15:14 UTC|newest]

Thread overview: 294+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-04-12  6:27 [PATCH 5.16 000/285] 5.16.20-rc1 review Greg Kroah-Hartman
2022-04-12  6:27 ` [PATCH 5.16 001/285] lib/logic_iomem: correct fallback config references Greg Kroah-Hartman
2022-04-12  6:27 ` [PATCH 5.16 002/285] um: fix and optimize xor select template for CONFIG64 and timetravel mode Greg Kroah-Hartman
2022-04-12  6:27 ` [PATCH 5.16 003/285] rtc: wm8350: Handle error for wm8350_register_irq Greg Kroah-Hartman
2022-04-12  6:27 ` [PATCH 5.16 004/285] KVM: x86/pmu: Use different raw event masks for AMD and Intel Greg Kroah-Hartman
2022-04-12  6:27 ` [PATCH 5.16 005/285] KVM: SVM: Fix kvm_cache_regs.h inclusions for is_guest_mode() Greg Kroah-Hartman
2022-04-12  6:27 ` [PATCH 5.16 006/285] KVM: x86/svm: Clear reserved bits written to PerfEvtSeln MSRs Greg Kroah-Hartman
2022-04-12  6:27 ` [PATCH 5.16 007/285] KVM: x86/pmu: Fix and isolate TSX-specific performance event logic Greg Kroah-Hartman
2022-04-12  6:27 ` [PATCH 5.16 008/285] KVM: x86/emulator: Emulate RDPID only if it is enabled in guest Greg Kroah-Hartman
2022-04-12  6:27 ` [PATCH 5.16 009/285] drm: Add orientation quirk for GPD Win Max Greg Kroah-Hartman
2022-04-12  6:27 ` [PATCH 5.16 010/285] ath5k: fix OOB in ath5k_eeprom_read_pcal_info_5111 Greg Kroah-Hartman
2022-04-12  6:27 ` [PATCH 5.16 011/285] drm/amd/display: Add signal type check when verify stream backends same Greg Kroah-Hartman
2022-04-12  6:27 ` [PATCH 5.16 012/285] drm/edid: remove non_desktop quirk for HPN-3515 and LEN-B800 Greg Kroah-Hartman
2022-04-12  6:27 ` [PATCH 5.16 013/285] drm/edid: improve non-desktop quirk logging Greg Kroah-Hartman
2022-04-12  6:27 ` [PATCH 5.16 014/285] drm/amd/amdgpu/amdgpu_cs: fix refcount leak of a dma_fence obj Greg Kroah-Hartman
2022-04-12  6:27 ` [PATCH 5.16 015/285] drm/amd/display: Fix memory leak Greg Kroah-Hartman
2022-04-12  6:27 ` [PATCH 5.16 016/285] drm/amd/display: Use PSR version selected during set_psr_caps Greg Kroah-Hartman
2022-04-12  6:27 ` [PATCH 5.16 017/285] usb: gadget: tegra-xudc: Do not program SPARAM Greg Kroah-Hartman
2022-04-12  6:27 ` [PATCH 5.16 018/285] usb: gadget: tegra-xudc: Fix control endpoints definitions Greg Kroah-Hartman
2022-04-12  6:27 ` [PATCH 5.16 019/285] usb: cdnsp: fix cdnsp_decode_trb function to properly handle ret value Greg Kroah-Hartman
2022-04-12  6:27 ` [PATCH 5.16 020/285] ptp: replace snprintf with sysfs_emit Greg Kroah-Hartman
2022-04-12  6:27 ` [PATCH 5.16 021/285] selftests, xsk: Fix bpf_res cleanup test Greg Kroah-Hartman
2022-04-12  6:27 ` [PATCH 5.16 022/285] drm/amdkfd: Dont take process mutex for svm ioctls Greg Kroah-Hartman
2022-04-12  6:28 ` [PATCH 5.16 023/285] drm/amdkfd: Ensure mm remain valid in svm deferred_list work Greg Kroah-Hartman
2022-04-12  6:28 ` [PATCH 5.16 024/285] drm/amdkfd: svm range restore work deadlock when process exit Greg Kroah-Hartman
2022-04-12  6:28 ` [PATCH 5.16 025/285] powerpc: dts: t104xrdb: fix phy type for FMAN 4/5 Greg Kroah-Hartman
2022-04-12  6:28 ` [PATCH 5.16 026/285] ath11k: fix kernel panic during unload/load ath11k modules Greg Kroah-Hartman
2022-04-12  6:28 ` [PATCH 5.16 027/285] ath11k: pci: fix crash on suspend if board file is not found Greg Kroah-Hartman
2022-04-12  6:28 ` [PATCH 5.16 028/285] ath11k: mhi: use mhi_sync_power_up() Greg Kroah-Hartman
2022-04-12  6:28 ` [PATCH 5.16 029/285] net/smc: Send directly when TCP_CORK is cleared Greg Kroah-Hartman
2022-04-12  6:28 ` [PATCH 5.16 030/285] drm/bridge: Add missing pm_runtime_put_sync Greg Kroah-Hartman
2022-04-12  6:28 ` [PATCH 5.16 031/285] bpf: Make dst_port field in struct bpf_sock 16-bit wide Greg Kroah-Hartman
2022-04-12  6:28 ` [PATCH 5.16 032/285] scsi: mvsas: Replace snprintf() with sysfs_emit() Greg Kroah-Hartman
2022-04-12  6:28 ` [PATCH 5.16 033/285] scsi: bfa: " Greg Kroah-Hartman
2022-04-12  6:28 ` [PATCH 5.16 034/285] drm/v3d: fix missing unlock Greg Kroah-Hartman
2022-04-12  6:28 ` [PATCH 5.16 035/285] power: supply: axp20x_battery: properly report current when discharging Greg Kroah-Hartman
2022-04-12  6:28 ` [PATCH 5.16 036/285] mt76: mt7921: fix crash when startup fails Greg Kroah-Hartman
2022-04-12  6:28 ` [PATCH 5.16 037/285] mt76: dma: initialize skip_unmap in mt76_dma_rx_fill Greg Kroah-Hartman
2022-04-12  6:28 ` [PATCH 5.16 038/285] cfg80211: dont add non transmitted BSS to 6GHz scanned channels Greg Kroah-Hartman
2022-04-12  6:28 ` [PATCH 5.16 039/285] libbpf: Fix build issue with llvm-readelf Greg Kroah-Hartman
2022-04-12  6:28 ` [PATCH 5.16 040/285] ipv6: make mc_forwarding atomic Greg Kroah-Hartman
2022-04-12  6:28 ` [PATCH 5.16 041/285] net: initialize init_net earlier Greg Kroah-Hartman
2022-04-12  6:28 ` [PATCH 5.16 042/285] powerpc: Set crashkernel offset to mid of RMA region Greg Kroah-Hartman
2022-04-12  6:28 ` [PATCH 5.16 043/285] drm/amdgpu: Fix recursive locking warning Greg Kroah-Hartman
2022-04-12  6:28 ` [PATCH 5.16 044/285] scsi: smartpqi: Fix rmmod stack trace Greg Kroah-Hartman
2022-04-12  6:28 ` [PATCH 5.16 045/285] scsi: smartpqi: Fix kdump issue when controller is locked up Greg Kroah-Hartman
2022-04-12  6:28 ` [PATCH 5.16 046/285] PCI: aardvark: Fix support for MSI interrupts Greg Kroah-Hartman
2022-04-12  6:28 ` [PATCH 5.16 047/285] iommu/arm-smmu-v3: fix event handling soft lockup Greg Kroah-Hartman
2022-04-12  6:28 ` [PATCH 5.16 048/285] usb: ehci: add pci device support for Aspeed platforms Greg Kroah-Hartman
2022-04-12  6:28 ` [PATCH 5.16 049/285] KVM: arm64: Do not change the PMU event filter after a VCPU has run Greg Kroah-Hartman
2022-04-12  6:28 ` [PATCH 5.16 050/285] PCI: endpoint: Fix alignment fault error in copy tests Greg Kroah-Hartman
2022-04-12  6:28 ` [PATCH 5.16 051/285] tcp: Dont acquire inet_listen_hashbucket::lock with disabled BH Greg Kroah-Hartman
2022-04-12  6:28 ` [PATCH 5.16 052/285] PCI: pciehp: Add Qualcomm quirk for Command Completed erratum Greg Kroah-Hartman
2022-04-12  6:28 ` [PATCH 5.16 053/285] scsi: mpi3mr: Fix reporting of actual data transfer size Greg Kroah-Hartman
2022-04-12  6:28 ` [PATCH 5.16 054/285] scsi: mpi3mr: Fix memory leaks Greg Kroah-Hartman
2022-04-12  6:28 ` [PATCH 5.16 055/285] powerpc/set_memory: Avoid spinlock recursion in change_page_attr() Greg Kroah-Hartman
2022-04-12  6:28 ` [PATCH 5.16 056/285] power: supply: axp288-charger: Set Vhold to 4.4V Greg Kroah-Hartman
2022-04-12  6:28 ` [PATCH 5.16 057/285] drm/amd/display: reset lane settings after each PHY repeater LT Greg Kroah-Hartman
2022-04-12  6:28 ` [PATCH 5.16 058/285] net/mlx5e: Disable TX queues before registering the netdev Greg Kroah-Hartman
2022-04-12  6:28 ` [PATCH 5.16 059/285] usb: dwc3: pci: Set the swnode from inside dwc3_pci_quirks() Greg Kroah-Hartman
2022-04-12  6:28 ` [PATCH 5.16 060/285] iwlwifi: mvm: Correctly set fragmented EBS Greg Kroah-Hartman
2022-04-12  6:28 ` [PATCH 5.16 061/285] iwlwifi: fix small doc mistake for iwl_fw_ini_addr_val Greg Kroah-Hartman
2022-04-12  6:28 ` [PATCH 5.16 062/285] iwlwifi: mvm: move only to an enabled channel Greg Kroah-Hartman
2022-04-12  6:28 ` [PATCH 5.16 063/285] drm/msm/dsi: Remove spurious IRQF_ONESHOT flag Greg Kroah-Hartman
2022-04-12  6:28 ` [PATCH 5.16 064/285] rtw89: fix RCU usage in rtw89_core_txq_push() Greg Kroah-Hartman
2022-04-12  6:28 ` [PATCH 5.16 065/285] ipv4: Invalidate neighbour for broadcast address upon address addition Greg Kroah-Hartman
2022-04-12  6:28 ` [PATCH 5.16 066/285] dm ioctl: prevent potential spectre v1 gadget Greg Kroah-Hartman
2022-04-12  6:28 ` [PATCH 5.16 067/285] dm: requeue IO if mapping table not yet available Greg Kroah-Hartman
2022-04-12  6:28 ` [PATCH 5.16 068/285] drm/amdkfd: make CRAT table missing message informational only Greg Kroah-Hartman
2022-04-12  6:28 ` [PATCH 5.16 069/285] vfio/pci: Stub vfio_pci_vga_rw when !CONFIG_VFIO_PCI_VGA Greg Kroah-Hartman
2022-04-12  6:28 ` [PATCH 5.16 070/285] scsi: pm8001: Fix pm80xx_pci_mem_copy() interface Greg Kroah-Hartman
2022-04-12  6:28 ` [PATCH 5.16 071/285] scsi: pm8001: Fix pm8001_mpi_task_abort_resp() Greg Kroah-Hartman
2022-04-12  6:28 ` [PATCH 5.16 072/285] scsi: pm8001: Fix task leak in pm8001_send_abort_all() Greg Kroah-Hartman
2022-04-12  6:28 ` [PATCH 5.16 073/285] scsi: pm8001: Fix tag leaks on error Greg Kroah-Hartman
2022-04-12  6:28 ` [PATCH 5.16 074/285] scsi: pm8001: Fix memory leak in pm8001_chip_fw_flash_update_req() Greg Kroah-Hartman
2022-04-12  6:28 ` [PATCH 5.16 075/285] mt76: mt7915: fix injected MPDU transmission to not use HW A-MSDU Greg Kroah-Hartman
2022-04-12  6:28 ` [PATCH 5.16 076/285] powerpc/64s/hash: Make hash faults work in NMI context Greg Kroah-Hartman
2022-04-12  6:28 ` [PATCH 5.16 077/285] mt76: mt7615: Fix assigning negative values to unsigned variable Greg Kroah-Hartman
2022-04-12  6:28 ` [PATCH 5.16 078/285] scsi: aha152x: Fix aha152x_setup() __setup handler return value Greg Kroah-Hartman
2022-04-12  6:28 ` [PATCH 5.16 079/285] scsi: hisi_sas: Free irq vectors in order for v3 HW Greg Kroah-Hartman
2022-04-12  6:28 ` [PATCH 5.16 080/285] scsi: hisi_sas: Limit users changing debugfs BIST count value Greg Kroah-Hartman
2022-04-12  6:28 ` [PATCH 5.16 081/285] net/smc: correct settings of RMB window update limit Greg Kroah-Hartman
2022-04-12  6:28 ` [PATCH 5.16 082/285] mips: ralink: fix a refcount leak in ill_acc_of_setup() Greg Kroah-Hartman
2022-04-12  6:29 ` [PATCH 5.16 083/285] macvtap: advertise link netns via netlink Greg Kroah-Hartman
2022-04-12  6:29 ` [PATCH 5.16 084/285] tuntap: add sanity checks about msg_controllen in sendmsg Greg Kroah-Hartman
2022-04-12  6:29 ` [PATCH 5.16 085/285] Bluetooth: Fix not checking for valid hdev on bt_dev_{info,warn,err,dbg} Greg Kroah-Hartman
2022-04-12  6:29 ` [PATCH 5.16 086/285] Bluetooth: use memset avoid memory leaks Greg Kroah-Hartman
2022-04-12  6:29 ` [PATCH 5.16 087/285] bnxt_en: Eliminate unintended link toggle during FW reset Greg Kroah-Hartman
2022-04-12  6:29 ` [PATCH 5.16 088/285] PCI: endpoint: Fix misused goto label Greg Kroah-Hartman
2022-04-12  6:29 ` [PATCH 5.16 089/285] MIPS: fix fortify panic when copying asm exception handlers Greg Kroah-Hartman
2022-04-12  6:29 ` [PATCH 5.16 090/285] powerpc/64e: Tie PPC_BOOK3E_64 to PPC_FSL_BOOK3E Greg Kroah-Hartman
2022-04-12  6:29 ` [PATCH 5.16 091/285] powerpc/secvar: fix refcount leak in format_show() Greg Kroah-Hartman
2022-04-12  6:29 ` [PATCH 5.16 092/285] scsi: libfc: Fix use after free in fc_exch_abts_resp() Greg Kroah-Hartman
2022-04-12  6:29 ` [PATCH 5.16 093/285] can: isotp: set default value for N_As to 50 micro seconds Greg Kroah-Hartman
2022-04-12  6:29 ` [PATCH 5.16 094/285] can: etas_es58x: es58x_fd_rx_event_msg(): initialize rx_event_msg before calling es58x_check_msg_len() Greg Kroah-Hartman
2022-04-12  6:29 ` [PATCH 5.16 095/285] riscv: Fixed misaligned memory access. Fixed pointer comparison Greg Kroah-Hartman
2022-04-12 15:09   ` Michael T. Kloos [this message]
2022-04-12  6:29 ` [PATCH 5.16 096/285] net: account alternate interface name memory Greg Kroah-Hartman
2022-04-12  6:29 ` [PATCH 5.16 097/285] net: limit altnames to 64k total Greg Kroah-Hartman
2022-04-12  6:29 ` [PATCH 5.16 098/285] net/mlx5e: Remove overzealous validations in netlink EEPROM query Greg Kroah-Hartman
2022-04-12  6:29 ` [PATCH 5.16 099/285] platform/x86: hp-wmi: Fix SW_TABLET_MODE detection method Greg Kroah-Hartman
2022-04-12  6:29 ` [PATCH 5.16 100/285] platform/x86: hp-wmi: Fix 0x05 error code reported by several WMI calls Greg Kroah-Hartman
2022-04-12  6:29 ` [PATCH 5.16 101/285] net: sfp: add 2500base-X quirk for Lantech SFP module Greg Kroah-Hartman
2022-04-12  6:29 ` [PATCH 5.16 102/285] usb: dwc3: omap: fix "unbalanced disables for smps10_out1" on omap5evm Greg Kroah-Hartman
2022-04-12  6:29 ` [PATCH 5.16 103/285] mt76: fix monitor mode crash with sdio driver Greg Kroah-Hartman
2022-04-12  6:29 ` [PATCH 5.16 104/285] xtensa: fix DTC warning unit_address_format Greg Kroah-Hartman
2022-04-12  6:29 ` [PATCH 5.16 105/285] MIPS: ingenic: correct unit node address Greg Kroah-Hartman
2022-04-12  6:29 ` [PATCH 5.16 106/285] Bluetooth: Fix use after free in hci_send_acl Greg Kroah-Hartman
2022-04-12  6:29 ` [PATCH 5.16 107/285] netfilter: conntrack: revisit gc autotuning Greg Kroah-Hartman
2022-04-12  6:29 ` [PATCH 5.16 108/285] netlabel: fix out-of-bounds memory accesses Greg Kroah-Hartman
2022-04-12  6:29 ` [PATCH 5.16 109/285] ceph: fix inode reference leakage in ceph_get_snapdir() Greg Kroah-Hartman
2022-04-12  6:29 ` [PATCH 5.16 110/285] ceph: fix memory leak in ceph_readdir when note_last_dentry returns error Greg Kroah-Hartman
2022-04-12  6:29 ` [PATCH 5.16 111/285] lib/Kconfig.debug: add ARCH dependency for FUNCTION_ALIGN option Greg Kroah-Hartman
2022-04-12  6:29 ` [PATCH 5.16 112/285] init/main.c: return 1 from handled __setup() functions Greg Kroah-Hartman
2022-04-12  6:29 ` [PATCH 5.16 113/285] minix: fix bug when opening a file with O_DIRECT Greg Kroah-Hartman
2022-04-12  6:29 ` [PATCH 5.16 114/285] clk: si5341: fix reported clk_rate when output divider is 2 Greg Kroah-Hartman
2022-04-12  6:29 ` [PATCH 5.16 115/285] clk: mediatek: Fix memory leaks on probe Greg Kroah-Hartman
2022-04-12  6:29 ` [PATCH 5.16 116/285] staging: vchiq_arm: Avoid NULL ptr deref in vchiq_dump_platform_instances Greg Kroah-Hartman
2022-04-12  6:29 ` [PATCH 5.16 117/285] staging: vchiq_core: handle NULL result of find_service_by_handle Greg Kroah-Hartman
2022-04-12  6:29 ` [PATCH 5.16 118/285] phy: amlogic: phy-meson-gxl-usb2: fix shared reset controller use Greg Kroah-Hartman
2022-04-12  6:29 ` [PATCH 5.16 119/285] phy: amlogic: meson8b-usb2: Use dev_err_probe() Greg Kroah-Hartman
2022-04-12  6:29 ` [PATCH 5.16 120/285] phy: amlogic: meson8b-usb2: fix shared reset control use Greg Kroah-Hartman
2022-04-12  6:29 ` [PATCH 5.16 121/285] clk: rockchip: drop CLK_SET_RATE_PARENT from dclk_vop* on rk3568 Greg Kroah-Hartman
2022-04-12  6:29 ` [PATCH 5.16 122/285] cpufreq: CPPC: Fix performance/frequency conversion Greg Kroah-Hartman
2022-04-12  6:29 ` [PATCH 5.16 123/285] opp: Expose of-nodes name in debugfs Greg Kroah-Hartman
2022-04-12  6:29 ` [PATCH 5.16 124/285] staging: wfx: fix an error handling in wfx_init_common() Greg Kroah-Hartman
2022-04-12  6:29 ` [PATCH 5.16 125/285] w1: w1_therm: fixes w1_seq for ds28ea00 sensors Greg Kroah-Hartman
2022-04-12  6:29 ` [PATCH 5.16 126/285] NFSv4.2: fix reference count leaks in _nfs42_proc_copy_notify() Greg Kroah-Hartman
2022-04-12  6:29 ` [PATCH 5.16 127/285] NFSv4: Protect the state recovery thread against direct reclaim Greg Kroah-Hartman
2022-04-12  6:29 ` [PATCH 5.16 128/285] habanalabs: fix possible memory leak in MMU DR fini Greg Kroah-Hartman
2022-04-12  6:29 ` [PATCH 5.16 129/285] habanalabs: reject host map with mmu disabled Greg Kroah-Hartman
2022-04-12  6:29 ` [PATCH 5.16 130/285] xen: delay xen_hvm_init_time_ops() if kdump is boot on vcpu>=32 Greg Kroah-Hartman
2022-04-12  6:29 ` [PATCH 5.16 131/285] clk: ti: Preserve node in ti_dt_clocks_register() Greg Kroah-Hartman
2022-04-12  6:29 ` [PATCH 5.16 132/285] clk: Enforce that disjoints limits are invalid Greg Kroah-Hartman
2022-04-12  6:29 ` [PATCH 5.16 133/285] SUNRPC/xprt: async tasks mustnt block waiting for memory Greg Kroah-Hartman
2022-04-12  6:29 ` [PATCH 5.16 134/285] SUNRPC: remove scheduling boost for "SWAPPER" tasks Greg Kroah-Hartman
2022-04-12  6:29 ` [PATCH 5.16 135/285] NFS: swap IO handling is slightly different for O_DIRECT IO Greg Kroah-Hartman
2022-04-12  6:29 ` [PATCH 5.16 136/285] NFS: swap-out must always use STABLE writes Greg Kroah-Hartman
2022-04-12  6:29 ` [PATCH 5.16 137/285] x86: Annotate call_on_stack() Greg Kroah-Hartman
2022-04-12  6:29 ` [PATCH 5.16 138/285] x86/Kconfig: Do not allow CONFIG_X86_X32_ABI=y with llvm-objcopy Greg Kroah-Hartman
2022-04-12  6:29 ` [PATCH 5.16 139/285] serial: samsung_tty: do not unlock port->lock for uart_write_wakeup() Greg Kroah-Hartman
2022-04-12  6:29 ` [PATCH 5.16 140/285] virtio_console: eliminate anonymous module_init & module_exit Greg Kroah-Hartman
2022-04-12  6:29 ` [PATCH 5.16 141/285] jfs: prevent NULL deref in diFree Greg Kroah-Hartman
2022-04-12  6:29 ` [PATCH 5.16 142/285] SUNRPC: Fix socket waits for write buffer space Greg Kroah-Hartman
2022-04-12  6:30 ` [PATCH 5.16 143/285] NFS: nfsiod should not block forever in mempool_alloc() Greg Kroah-Hartman
2022-04-12  6:30 ` [PATCH 5.16 144/285] NFS: Avoid writeback threads getting stuck " Greg Kroah-Hartman
2022-04-12  6:30 ` [PATCH 5.16 145/285] selftests: net: Add tls config dependency for tls selftests Greg Kroah-Hartman
2022-04-12  6:30 ` [PATCH 5.16 146/285] parisc: Fix CPU affinity for Lasi, WAX and Dino chips Greg Kroah-Hartman
2022-04-12  6:30 ` [PATCH 5.16 147/285] parisc: Fix patch code locking and flushing Greg Kroah-Hartman
2022-04-12  6:30 ` [PATCH 5.16 148/285] mm: fix race between MADV_FREE reclaim and blkdev direct IO read Greg Kroah-Hartman
2022-04-12  6:30 ` [PATCH 5.16 149/285] rtc: mc146818-lib: change return values of mc146818_get_time() Greg Kroah-Hartman
2022-04-12  6:30 ` [PATCH 5.16 150/285] rtc: Check return value from mc146818_get_time() Greg Kroah-Hartman
2022-04-12  6:30 ` [PATCH 5.16 151/285] rtc: mc146818-lib: fix RTC presence check Greg Kroah-Hartman
2022-04-12  6:30 ` [PATCH 5.16 152/285] drm/amdgpu: fix off by one in amdgpu_gfx_kiq_acquire() Greg Kroah-Hartman
2022-04-12  6:30 ` [PATCH 5.16 153/285] Drivers: hv: vmbus: Fix potential crash on module unload Greg Kroah-Hartman
2022-04-12  6:30 ` [PATCH 5.16 154/285] Revert "NFSv4: Handle the special Linux file open access mode" Greg Kroah-Hartman
2022-04-12  6:30 ` [PATCH 5.16 155/285] NFSv4: fix open failure with O_ACCMODE flag Greg Kroah-Hartman
2022-04-12  6:30 ` [PATCH 5.16 156/285] scsi: sr: Fix typo in CDROM(CLOSETRAY|EJECT) handling Greg Kroah-Hartman
2022-04-12  6:30 ` [PATCH 5.16 157/285] scsi: core: Fix sbitmap depth in scsi_realloc_sdev_budget_map() Greg Kroah-Hartman
2022-04-12  6:30 ` [PATCH 5.16 158/285] scsi: zorro7xx: Fix a resource leak in zorro7xx_remove_one() Greg Kroah-Hartman
2022-04-12  6:30 ` [PATCH 5.16 159/285] vdpa: mlx5: prevent cvq work from hogging CPU Greg Kroah-Hartman
2022-04-12  6:30 ` [PATCH 5.16 160/285] net: sfc: add missing xdp queue reinitialization Greg Kroah-Hartman
2022-04-12  6:30 ` [PATCH 5.16 161/285] net/tls: fix slab-out-of-bounds bug in decrypt_internal Greg Kroah-Hartman
2022-04-12  6:30 ` [PATCH 5.16 162/285] vrf: fix packet sniffing for traffic originating from ip tunnels Greg Kroah-Hartman
2022-04-12  6:30 ` [PATCH 5.16 163/285] skbuff: fix coalescing for page_pool fragment recycling Greg Kroah-Hartman
2022-04-12  6:30 ` [PATCH 5.16 164/285] ice: Clear default forwarding VSI during VSI release Greg Kroah-Hartman
2022-04-12  6:30 ` [PATCH 5.16 165/285] mctp: Fix check for dev_hard_header() result Greg Kroah-Hartman
2022-04-12  6:30 ` [PATCH 5.16 166/285] mctp: Use output netdev to allocate skb headroom Greg Kroah-Hartman
2022-04-12  6:30 ` [PATCH 5.16 167/285] net: ipv4: fix route with nexthop object delete warning Greg Kroah-Hartman
2022-04-12  6:30 ` [PATCH 5.16 168/285] net: stmmac: Fix unset max_speed difference between DT and non-DT platforms Greg Kroah-Hartman
2022-04-12  6:30 ` [PATCH 5.16 169/285] drm/imx: imx-ldb: Check for null pointer after calling kmemdup Greg Kroah-Hartman
2022-04-12  6:30 ` [PATCH 5.16 170/285] drm/imx: Fix memory leak in imx_pd_connector_get_modes Greg Kroah-Hartman
2022-04-12  6:30 ` [PATCH 5.16 171/285] drm/imx: dw_hdmi-imx: Fix bailout in error cases of probe Greg Kroah-Hartman
2022-04-12  6:30 ` [PATCH 5.16 172/285] regulator: rtq2134: Fix missing active_discharge_on setting Greg Kroah-Hartman
2022-04-12  6:30 ` [PATCH 5.16 173/285] regulator: atc260x: " Greg Kroah-Hartman
2022-04-12  6:30 ` [PATCH 5.16 174/285] arch/arm64: Fix topology initialization for core scheduling Greg Kroah-Hartman
2022-04-12  6:30 ` [PATCH 5.16 175/285] bnxt_en: Synchronize tx when xdp redirects happen on same ring Greg Kroah-Hartman
2022-04-12  6:30 ` [PATCH 5.16 176/285] bnxt_en: reserve space inside receive page for skb_shared_info Greg Kroah-Hartman
2022-04-12  6:30 ` [PATCH 5.16 177/285] bnxt_en: Prevent XDP redirect from running when stopping TX queue Greg Kroah-Hartman
2022-04-12  6:30 ` [PATCH 5.16 178/285] sfc: Do not free an empty page_ring Greg Kroah-Hartman
2022-04-12  6:30 ` [PATCH 5.16 179/285] RDMA/mlx5: Dont remove cache MRs when a delay is needed Greg Kroah-Hartman
2022-04-12  6:30 ` [PATCH 5.16 180/285] RDMA/mlx5: Add a missing update of cache->last_add Greg Kroah-Hartman
2022-04-12  6:30 ` [PATCH 5.16 181/285] IB/cm: Cancel mad on the DREQ event when the state is MRA_REP_RCVD Greg Kroah-Hartman
2022-04-12  6:30 ` [PATCH 5.16 182/285] IB/rdmavt: add lock to call to rvt_error_qp to prevent a race condition Greg Kroah-Hartman
2022-04-12  6:30 ` [PATCH 5.16 183/285] sctp: count singleton chunks in assoc user stats Greg Kroah-Hartman
2022-04-12  6:30 ` [PATCH 5.16 184/285] dpaa2-ptp: Fix refcount leak in dpaa2_ptp_probe Greg Kroah-Hartman
2022-04-12  6:30 ` [PATCH 5.16 185/285] ice: Set txq_teid to ICE_INVAL_TEID on ring creation Greg Kroah-Hartman
2022-04-12  6:30 ` [PATCH 5.16 186/285] ice: Do not skip not enabled queues in ice_vc_dis_qs_msg Greg Kroah-Hartman
2022-04-12  6:30 ` [PATCH 5.16 187/285] ipv6: Fix stats accounting in ip6_pkt_drop Greg Kroah-Hartman
2022-04-12  6:30 ` [PATCH 5.16 188/285] ice: synchronize_rcu() when terminating rings Greg Kroah-Hartman
2022-04-12  6:30 ` [PATCH 5.16 189/285] ice: xsk: fix VSI state check in ice_xsk_wakeup() Greg Kroah-Hartman
2022-04-12  6:30 ` [PATCH 5.16 190/285] ice: clear cmd_type_offset_bsz for TX rings Greg Kroah-Hartman
2022-04-12  6:30 ` [PATCH 5.16 191/285] net: openvswitch: dont send internal clone attribute to the userspace Greg Kroah-Hartman
2022-04-12  6:30 ` [PATCH 5.16 192/285] net: ethernet: mv643xx: Fix over zealous checking of_get_mac_address() Greg Kroah-Hartman
2022-04-12  6:30 ` [PATCH 5.16 193/285] net: openvswitch: fix leak of nested actions Greg Kroah-Hartman
2022-04-12  6:30 ` [PATCH 5.16 194/285] rxrpc: fix a race in rxrpc_exit_net() Greg Kroah-Hartman
2022-04-12  6:30 ` [PATCH 5.16 195/285] net: sfc: fix using uninitialized xdp tx_queue Greg Kroah-Hartman
2022-04-12  6:30 ` [PATCH 5.16 196/285] net: phy: mscc-miim: reject clause 45 register accesses Greg Kroah-Hartman
2022-04-12  6:30 ` [PATCH 5.16 197/285] qede: confirm skb is allocated before using Greg Kroah-Hartman
2022-04-12  6:30 ` [PATCH 5.16 198/285] spi: bcm-qspi: fix MSPI only access with bcm_qspi_exec_mem_op() Greg Kroah-Hartman
2022-04-12  6:30 ` [PATCH 5.16 199/285] bpf: Support dual-stack sockets in bpf_tcp_check_syncookie Greg Kroah-Hartman
2022-04-12  6:30 ` [PATCH 5.16 200/285] drbd: Fix five use after free bugs in get_initial_state Greg Kroah-Hartman
2022-04-12  6:30 ` [PATCH 5.16 201/285] scsi: sd: sd_read_cpr() requires VPD pages Greg Kroah-Hartman
2022-04-12  6:30 ` [PATCH 5.16 202/285] scsi: ufs: ufshpb: Fix a NULL check on list iterator Greg Kroah-Hartman
2022-04-12  6:31 ` [PATCH 5.16 203/285] io_uring: nospec index for tags on files update Greg Kroah-Hartman
2022-04-12  6:31 ` [PATCH 5.16 204/285] io_uring: dont touch scm_fp_list after queueing skb Greg Kroah-Hartman
2022-04-12  6:31 ` [PATCH 5.16 205/285] SUNRPC: Handle ENOMEM in call_transmit_status() Greg Kroah-Hartman
2022-04-12  6:31 ` [PATCH 5.16 206/285] SUNRPC: Handle low memory situations in call_status() Greg Kroah-Hartman
2022-04-12  6:31 ` [PATCH 5.16 207/285] SUNRPC: svc_tcp_sendmsg() should handle errors from xdr_alloc_bvec() Greg Kroah-Hartman
2022-04-12  6:31 ` [PATCH 5.16 208/285] iommu/omap: Fix regression in probe for NULL pointer dereference Greg Kroah-Hartman
2022-04-12  6:31 ` [PATCH 5.16 209/285] perf: arm-spe: Fix perf report --mem-mode Greg Kroah-Hartman
2022-04-12  6:31 ` [PATCH 5.16 210/285] perf tools: Fix perfs libperf_print callback Greg Kroah-Hartman
2022-04-12  6:31 ` [PATCH 5.16 211/285] perf session: Remap buf if there is no space for event Greg Kroah-Hartman
2022-04-12  6:31 ` [PATCH 5.16 212/285] arm64: Add part number for Arm Cortex-A78AE Greg Kroah-Hartman
2022-04-12  6:31 ` [PATCH 5.16 213/285] scsi: mpt3sas: Fix use after free in _scsih_expander_node_remove() Greg Kroah-Hartman
2022-04-12  6:31 ` [PATCH 5.16 214/285] scsi: ufs: ufs-pci: Add support for Intel MTL Greg Kroah-Hartman
2022-04-12  6:31 ` [PATCH 5.16 215/285] Revert "mmc: sdhci-xenon: fix annoying 1.8V regulator warning" Greg Kroah-Hartman
2022-04-12  6:31 ` [PATCH 5.16 216/285] mmc: block: Check for errors after write on SPI Greg Kroah-Hartman
2022-04-12  6:31 ` [PATCH 5.16 217/285] mmc: mmci: stm32: correctly check all elements of sg list Greg Kroah-Hartman
2022-04-12  6:31 ` [PATCH 5.16 218/285] mmc: renesas_sdhi: dont overwrite TAP settings when HS400 tuning is complete Greg Kroah-Hartman
2022-04-12  6:31 ` [PATCH 5.16 219/285] mmc: core: Fixup support for writeback-cache for eMMC and SD Greg Kroah-Hartman
2022-04-12  6:31 ` [PATCH 5.16 220/285] lz4: fix LZ4_decompress_safe_partial read out of bound Greg Kroah-Hartman
2022-04-12  6:31 ` [PATCH 5.16 221/285] highmem: fix checks in __kmap_local_sched_{in,out} Greg Kroah-Hartman
2022-04-12  6:31 ` [PATCH 5.16 222/285] mmmremap.c: avoid pointless invalidate_range_start/end on mremap(old_size=0) Greg Kroah-Hartman
2022-04-12  6:31 ` [PATCH 5.16 223/285] mm/mempolicy: fix mpol_new leak in shared_policy_replace Greg Kroah-Hartman
2022-04-12  6:31 ` [PATCH 5.16 224/285] io_uring: dont check req->file in io_fsync_prep() Greg Kroah-Hartman
2022-04-12  6:31 ` [PATCH 5.16 225/285] io_uring: defer splice/tee file validity check until command issue Greg Kroah-Hartman
2022-04-12  6:31 ` [PATCH 5.16 226/285] io_uring: implement compat handling for IORING_REGISTER_IOWQ_AFF Greg Kroah-Hartman
2022-04-12  6:31 ` [PATCH 5.16 227/285] io_uring: fix race between timeout flush and removal Greg Kroah-Hartman
2022-04-12  6:31 ` [PATCH 5.16 228/285] x86/pm: Save the MSR validity status at context setup Greg Kroah-Hartman
2022-04-12  6:31 ` [PATCH 5.16 229/285] x86/speculation: Restore speculation related MSRs during S3 resume Greg Kroah-Hartman
2022-04-12  6:31 ` [PATCH 5.16 230/285] perf/x86/intel: Update the FRONTEND MSR mask on Sapphire Rapids Greg Kroah-Hartman
2022-04-12  6:31 ` [PATCH 5.16 231/285] btrfs: fix qgroup reserve overflow the qgroup limit Greg Kroah-Hartman
2022-04-12  6:31 ` [PATCH 5.16 232/285] btrfs: zoned: traverse devices under chunk_mutex in btrfs_can_activate_zone Greg Kroah-Hartman
2022-04-12  6:31 ` [PATCH 5.16 233/285] btrfs: remove device item and update super block in the same transaction Greg Kroah-Hartman
2022-04-12  6:31 ` [PATCH 5.16 234/285] btrfs: avoid defragging extents whose next extents are not targets Greg Kroah-Hartman
2022-04-12  6:31 ` [PATCH 5.16 235/285] btrfs: prevent subvol with swapfile from being deleted Greg Kroah-Hartman
2022-04-12  6:31 ` [PATCH 5.16 236/285] spi: core: add dma_map_dev for __spi_unmap_msg() Greg Kroah-Hartman
2022-04-12  6:31 ` [PATCH 5.16 237/285] qed: fix ethtool register dump Greg Kroah-Hartman
2022-04-12  6:31 ` [PATCH 5.16 238/285] arm64: patch_text: Fixup last cpu should be master Greg Kroah-Hartman
2022-04-12  6:31 ` [PATCH 5.16 239/285] RDMA/hfi1: Fix use-after-free bug for mm struct Greg Kroah-Hartman
2022-04-12  6:31 ` [PATCH 5.16 240/285] drbd: fix an invalid memory access caused by incorrect use of list iterator Greg Kroah-Hartman
2022-04-12  6:31 ` [PATCH 5.16 241/285] gpio: Restrict usage of GPIO chip irq members before initialization Greg Kroah-Hartman
2022-04-12  6:31 ` [PATCH 5.16 242/285] x86/msi: Fix msi message data shadow struct Greg Kroah-Hartman
2022-04-12  6:31 ` [PATCH 5.16 243/285] x86/mm/tlb: Revert retpoline avoidance approach Greg Kroah-Hartman
2022-04-12  6:31 ` [PATCH 5.16 244/285] perf/x86/intel: Dont extend the pseudo-encoding to GP counters Greg Kroah-Hartman
2022-04-12  6:31 ` [PATCH 5.16 245/285] ata: sata_dwc_460ex: Fix crash due to OOB write Greg Kroah-Hartman
2022-04-12  6:31 ` [PATCH 5.16 246/285] perf: qcom_l2_pmu: fix an incorrect NULL check on list iterator Greg Kroah-Hartman
2022-04-12  6:31 ` [PATCH 5.16 247/285] perf/core: Inherit event_caps Greg Kroah-Hartman
2022-04-12  6:31 ` [PATCH 5.16 248/285] irqchip/gic-v3: Fix GICR_CTLR.RWP polling Greg Kroah-Hartman
2022-04-12  6:31 ` [PATCH 5.16 249/285] fbdev: Fix unregistering of framebuffers without device Greg Kroah-Hartman
2022-04-12  6:31 ` [PATCH 5.16 250/285] amd/display: set backlight only if required Greg Kroah-Hartman
2022-04-12  6:31 ` [PATCH 5.16 251/285] drm/panel: ili9341: fix optional regulator handling Greg Kroah-Hartman
2022-04-12  6:31 ` [PATCH 5.16 252/285] drm/amd/display: Fix by adding FPU protection for dcn30_internal_validate_bw Greg Kroah-Hartman
2022-04-12  6:31 ` [PATCH 5.16 253/285] drm/amdgpu/display: change pipe policy for DCN 2.1 Greg Kroah-Hartman
2022-04-12  6:31 ` [PATCH 5.16 254/285] drm/amdgpu/smu10: fix SoC/fclk units in auto mode Greg Kroah-Hartman
2022-04-12  6:31 ` [PATCH 5.16 255/285] drm/amdgpu/vcn: Fix the register setting for vcn1 Greg Kroah-Hartman
2022-04-12  6:31 ` [PATCH 5.16 256/285] drm/nouveau/pmu: Add missing callbacks for Tegra devices Greg Kroah-Hartman
2022-04-12  6:31 ` [PATCH 5.16 257/285] drm/amdkfd: Create file descriptor after client is added to smi_clients list Greg Kroah-Hartman
2022-04-12  6:31 ` [PATCH 5.16 258/285] drm/amdgpu: dont use BACO for reset in S3 Greg Kroah-Hartman
2022-04-12  6:31 ` [PATCH 5.16 259/285] SUNRPC: Ensure we flush any closed sockets before xs_xprt_free() Greg Kroah-Hartman
2022-04-12  6:31 ` [PATCH 5.16 260/285] KVM: SVM: Allow AVIC support on system w/ physical APIC ID > 255 Greg Kroah-Hartman
2022-04-12  6:31 ` [PATCH 5.16 261/285] drm/amdkfd: Fix variable set but not used warning Greg Kroah-Hartman
2022-04-12  6:31 ` [PATCH 5.16 262/285] net/smc: send directly on setting TCP_NODELAY Greg Kroah-Hartman
2022-04-12  6:32 ` [PATCH 5.16 263/285] Revert "selftests: net: Add tls config dependency for tls selftests" Greg Kroah-Hartman
2022-04-12  6:32 ` [PATCH 5.16 264/285] bpf: Make remote_port field in struct bpf_sk_lookup 16-bit wide Greg Kroah-Hartman
2022-04-12  6:32 ` [PATCH 5.16 265/285] selftests/bpf: Fix u8 narrow load checks for bpf_sk_lookup remote_port Greg Kroah-Hartman
2022-04-12  6:32 ` [PATCH 5.16 266/285] rtc: mc146818-lib: fix signedness bug in mc146818_get_time() Greg Kroah-Hartman
2022-04-12  6:32 ` [PATCH 5.16 267/285] perf build: Dont use -ffat-lto-objects in the python feature test when building with clang-13 Greg Kroah-Hartman
2022-04-12  6:32 ` [PATCH 5.16 268/285] perf python: Fix probing for some clang command line options Greg Kroah-Hartman
2022-04-12  6:32 ` [PATCH 5.16 269/285] tools build: Filter out options and warnings not supported by clang Greg Kroah-Hartman
2022-04-12  6:32 ` [PATCH 5.16 270/285] tools build: Use $(shell ) instead of `` to get embedded libperls ccopts Greg Kroah-Hartman
2022-04-12  6:32 ` [PATCH 5.16 271/285] dmaengine: Revert "dmaengine: shdma: Fix runtime PM imbalance on error" Greg Kroah-Hartman
2022-04-12  6:32 ` [PATCH 5.16 272/285] KVM: avoid NULL pointer dereference in kvm_dirty_ring_push Greg Kroah-Hartman
2022-04-12  6:32 ` [PATCH 5.16 273/285] ubsan: remove CONFIG_UBSAN_OBJECT_SIZE Greg Kroah-Hartman
2022-04-12  6:32 ` [PATCH 5.16 274/285] x86/fpu/xstate: Fix the ARCH_REQ_XCOMP_PERM implementation Greg Kroah-Hartman
2022-04-12  6:32 ` [PATCH 5.16 275/285] Drivers: hv: vmbus: Replace smp_store_mb() with virt_store_mb() Greg Kroah-Hartman
2022-04-12  6:32 ` [PATCH 5.16 276/285] powerpc: Fix virt_addr_valid() for 64-bit Book3E & 32-bit Greg Kroah-Hartman
2022-04-12  6:32 ` [PATCH 5.16 277/285] Revert "powerpc: Set max_mapnr correctly" Greg Kroah-Hartman
2022-04-12  6:32 ` [PATCH 5.16 278/285] x86/bug: Prevent shadowing in __WARN_FLAGS Greg Kroah-Hartman
2022-04-12  6:32 ` [PATCH 5.16 279/285] sched: Teach the forced-newidle balancer about CPU affinity limitation Greg Kroah-Hartman
2022-04-12  6:32 ` [PATCH 5.16 280/285] x86,static_call: Fix __static_call_return0 for i386 Greg Kroah-Hartman
2022-04-12  6:32 ` [PATCH 5.16 281/285] irqchip/gic-v4: Wait for GICR_VPENDBASER.Dirty to clear before descheduling Greg Kroah-Hartman
2022-04-12  6:32 ` [PATCH 5.16 282/285] powerpc/64: Fix build failure with allyesconfig in book3s_64_entry.S Greg Kroah-Hartman
2022-04-12  6:32 ` [PATCH 5.16 283/285] irqchip/gic, gic-v3: Prevent GSI to SGI translations Greg Kroah-Hartman
2022-04-12  6:32 ` [PATCH 5.16 284/285] mm/sparsemem: fix mem_section will never be NULL gcc 12 warning Greg Kroah-Hartman
2022-04-12  6:32 ` [PATCH 5.16 285/285] static_call: Dont make __static_call_return0 static Greg Kroah-Hartman
2022-04-12 14:23 ` [PATCH 5.16 000/285] 5.16.20-rc1 review Fox Chen
2022-04-12 22:20 ` Shuah Khan
2022-04-13  0:05 ` Ron Economos
2022-04-13  2:23 ` Guenter Roeck
2022-04-13  5:59 ` Naresh Kamboju
2022-04-13 11:38 ` Justin Forbes
2022-04-13 20:17 ` Florian Fainelli

Reply instructions:

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

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

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

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

  git send-email \
    --in-reply-to=ecce92cfd03450e0e41d85bae6c72ef4949ee1b7.camel@michaelkloos.com \
    --to=michael@michaelkloos.com \
    --cc=gregkh@linuxfoundation.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=palmer@rivosinc.com \
    --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).