linux-kernel.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, Gang Deng <gavin.dg@linux.alibaba.com>,
	Xu Yu <xuyu@linux.alibaba.com>,
	"Darrick J. Wong" <djwong@kernel.org>,
	Christoph Hellwig <hch@lst.de>, Sasha Levin <sashal@kernel.org>
Subject: [PATCH 5.13 209/300] mm/swap: consider max pages in iomap_swapfile_add_extent
Date: Mon, 13 Sep 2021 15:14:30 +0200	[thread overview]
Message-ID: <20210913131116.426934113@linuxfoundation.org> (raw)
In-Reply-To: <20210913131109.253835823@linuxfoundation.org>

From: Xu Yu <xuyu@linux.alibaba.com>

[ Upstream commit 36ca7943ac18aebf8aad4c50829eb2ea5ec847df ]

When the max pages (last_page in the swap header + 1) is smaller than
the total pages (inode size) of the swapfile, iomap_swapfile_activate
overwrites sis->max with total pages.

However, frontswap_map is a swap page state bitmap allocated using the
initial sis->max page count read from the swap header.  If swapfile
activation increases sis->max, it's possible for the frontswap code to
walk off the end of the bitmap, thereby corrupting kernel memory.

[djwong: modify the description a bit; the original paragraph reads:

"However, frontswap_map is allocated using max pages. When test and clear
the sis offset, which is larger than max pages, of frontswap_map in
__frontswap_invalidate_page(), neighbors of frontswap_map may be
overwritten, i.e., slab is polluted."

Note also that this bug resulted in a behavioral change: activating a
swap file that was formatted and later extended results in all pages
being activated, not the number of pages recorded in the swap header.]

This fixes the issue by considering the limitation of max pages of swap
info in iomap_swapfile_add_extent().

To reproduce the case, compile kernel with slub RED ZONE, then run test:
$ sudo stress-ng -a 1 -x softlockup,resources -t 72h --metrics --times \
 --verify -v -Y /root/tmpdir/stress-ng/stress-statistic-12.yaml \
 --log-file /root/tmpdir/stress-ng/stress-logfile-12.txt \
 --temp-path /root/tmpdir/stress-ng/

We'll get the error log as below:

[ 1151.015141] =============================================================================
[ 1151.016489] BUG kmalloc-16 (Not tainted): Right Redzone overwritten
[ 1151.017486] -----------------------------------------------------------------------------
[ 1151.017486]
[ 1151.018997] Disabling lock debugging due to kernel taint
[ 1151.019873] INFO: 0x0000000084e43932-0x0000000098d17cae @offset=7392. First byte 0x0 instead of 0xcc
[ 1151.021303] INFO: Allocated in __do_sys_swapon+0xcf6/0x1170 age=43417 cpu=9 pid=3816
[ 1151.022538]  __slab_alloc+0xe/0x20
[ 1151.023069]  __kmalloc_node+0xfd/0x4b0
[ 1151.023704]  __do_sys_swapon+0xcf6/0x1170
[ 1151.024346]  do_syscall_64+0x33/0x40
[ 1151.024925]  entry_SYSCALL_64_after_hwframe+0x44/0xa9
[ 1151.025749] INFO: Freed in put_cred_rcu+0xa1/0xc0 age=43424 cpu=3 pid=2041
[ 1151.026889]  kfree+0x276/0x2b0
[ 1151.027405]  put_cred_rcu+0xa1/0xc0
[ 1151.027949]  rcu_do_batch+0x17d/0x410
[ 1151.028566]  rcu_core+0x14e/0x2b0
[ 1151.029084]  __do_softirq+0x101/0x29e
[ 1151.029645]  asm_call_irq_on_stack+0x12/0x20
[ 1151.030381]  do_softirq_own_stack+0x37/0x40
[ 1151.031037]  do_softirq.part.15+0x2b/0x30
[ 1151.031710]  __local_bh_enable_ip+0x4b/0x50
[ 1151.032412]  copy_fpstate_to_sigframe+0x111/0x360
[ 1151.033197]  __setup_rt_frame+0xce/0x480
[ 1151.033809]  arch_do_signal+0x1a3/0x250
[ 1151.034463]  exit_to_user_mode_prepare+0xcf/0x110
[ 1151.035242]  syscall_exit_to_user_mode+0x27/0x190
[ 1151.035970]  entry_SYSCALL_64_after_hwframe+0x44/0xa9
[ 1151.036795] INFO: Slab 0x000000003b9de4dc objects=44 used=9 fp=0x00000000539e349e flags=0xfffffc0010201
[ 1151.038323] INFO: Object 0x000000004855ba01 @offset=7376 fp=0x0000000000000000
[ 1151.038323]
[ 1151.039683] Redzone  000000008d0afd3d: cc cc cc cc cc cc cc cc cc cc cc cc cc cc cc cc  ................
[ 1151.041180] Object   000000004855ba01: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00  ................
[ 1151.042714] Redzone  0000000084e43932: 00 00 00 c0 cc cc cc cc                          ........
[ 1151.044120] Padding  000000000864c042: 5a 5a 5a 5a 5a 5a 5a 5a 5a 5a 5a 5a 5a 5a 5a 5a  ZZZZZZZZZZZZZZZZ
[ 1151.045615] CPU: 5 PID: 3816 Comm: stress-ng Tainted: G    B             5.10.50+ #7
[ 1151.046846] Hardware name: QEMU Standard PC (i440FX + PIIX, 1996), BIOS rel-1.12.1-0-ga5cab58e9a3f-prebuilt.qemu.org 04/01/2014
[ 1151.048633] Call Trace:
[ 1151.049072]  dump_stack+0x57/0x6a
[ 1151.049585]  check_bytes_and_report+0xed/0x110
[ 1151.050320]  check_object+0x1eb/0x290
[ 1151.050924]  ? __x64_sys_swapoff+0x39a/0x540
[ 1151.051646]  free_debug_processing+0x151/0x350
[ 1151.052333]  __slab_free+0x21a/0x3a0
[ 1151.052938]  ? _cond_resched+0x2d/0x40
[ 1151.053529]  ? __vunmap+0x1de/0x220
[ 1151.054139]  ? __x64_sys_swapoff+0x39a/0x540
[ 1151.054796]  ? kfree+0x276/0x2b0
[ 1151.055307]  kfree+0x276/0x2b0
[ 1151.055832]  __x64_sys_swapoff+0x39a/0x540
[ 1151.056466]  do_syscall_64+0x33/0x40
[ 1151.057084]  entry_SYSCALL_64_after_hwframe+0x44/0xa9
[ 1151.057866] RIP: 0033:0x150340b0ffb7
[ 1151.058481] Code: Unable to access opcode bytes at RIP 0x150340b0ff8d.
[ 1151.059537] RSP: 002b:00007fff7f4ee238 EFLAGS: 00000246 ORIG_RAX: 00000000000000a8
[ 1151.060768] RAX: ffffffffffffffda RBX: 00007fff7f4ee66c RCX: 0000150340b0ffb7
[ 1151.061904] RDX: 000000000000000a RSI: 0000000000018094 RDI: 00007fff7f4ee860
[ 1151.063033] RBP: 00007fff7f4ef980 R08: 0000000000000000 R09: 0000150340a672bd
[ 1151.064135] R10: 00007fff7f4edca0 R11: 0000000000000246 R12: 0000000000018094
[ 1151.065253] R13: 0000000000000005 R14: 000000000160d930 R15: 00007fff7f4ee66c
[ 1151.066413] FIX kmalloc-16: Restoring 0x0000000084e43932-0x0000000098d17cae=0xcc
[ 1151.066413]
[ 1151.067890] FIX kmalloc-16: Object at 0x000000004855ba01 not freed

Fixes: 67482129cdab ("iomap: add a swapfile activation function")
Fixes: a45c0eccc564 ("iomap: move the swapfile code into a separate file")
Signed-off-by: Gang Deng <gavin.dg@linux.alibaba.com>
Signed-off-by: Xu Yu <xuyu@linux.alibaba.com>
Reviewed-by: Darrick J. Wong <djwong@kernel.org>
Signed-off-by: Darrick J. Wong <djwong@kernel.org>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 fs/iomap/swapfile.c | 6 ++++++
 1 file changed, 6 insertions(+)

diff --git a/fs/iomap/swapfile.c b/fs/iomap/swapfile.c
index 6250ca6a1f85..4ecf4e1f68ef 100644
--- a/fs/iomap/swapfile.c
+++ b/fs/iomap/swapfile.c
@@ -31,11 +31,16 @@ static int iomap_swapfile_add_extent(struct iomap_swapfile_info *isi)
 {
 	struct iomap *iomap = &isi->iomap;
 	unsigned long nr_pages;
+	unsigned long max_pages;
 	uint64_t first_ppage;
 	uint64_t first_ppage_reported;
 	uint64_t next_ppage;
 	int error;
 
+	if (unlikely(isi->nr_pages >= isi->sis->max))
+		return 0;
+	max_pages = isi->sis->max - isi->nr_pages;
+
 	/*
 	 * Round the start up and the end down so that the physical
 	 * extent aligns to a page boundary.
@@ -48,6 +53,7 @@ static int iomap_swapfile_add_extent(struct iomap_swapfile_info *isi)
 	if (first_ppage >= next_ppage)
 		return 0;
 	nr_pages = next_ppage - first_ppage;
+	nr_pages = min(nr_pages, max_pages);
 
 	/*
 	 * Calculate how much swap space we're adding; the first page contains
-- 
2.30.2




  parent reply	other threads:[~2021-09-13 14:11 UTC|newest]

Thread overview: 308+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-09-13 13:11 [PATCH 5.13 000/300] 5.13.17-rc1 review Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.13 001/300] locking/mutex: Fix HANDOFF condition Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.13 002/300] regmap: fix the offset of register error log Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.13 003/300] regulator: tps65910: Silence deferred probe error Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.13 004/300] crypto: mxs-dcp - Check for DMA mapping errors Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.13 005/300] sched/deadline: Fix reset_on_fork reporting of DL tasks Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.13 006/300] power: supply: axp288_fuel_gauge: Report register-address on readb / writeb errors Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.13 007/300] crypto: omap-sham - clear dma flags only after omap_sham_update_dma_stop() Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.13 008/300] sched/deadline: Fix missing clock update in migrate_task_rq_dl() Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.13 009/300] rcu/tree: Handle VM stoppage in stall detection Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.13 010/300] EDAC/mce_amd: Do not load edac_mce_amd module on guests Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.13 011/300] posix-cpu-timers: Force next expiration recalc after itimer reset Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.13 012/300] hrtimer: Avoid double reprogramming in __hrtimer_start_range_ns() Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.13 013/300] hrtimer: Ensure timerfd notification for HIGHRES=n Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.13 014/300] udf: Check LVID earlier Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.13 015/300] udf: Fix iocharset=utf8 mount option Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.13 016/300] isofs: joliet: " Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.13 017/300] bcache: add proper error unwinding in bcache_device_init Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.13 018/300] nbd: add the check to prevent overflow in __nbd_ioctl() Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.13 019/300] blk-throtl: optimize IOPS throttle for large IO scenarios Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.13 020/300] nvme-tcp: dont update queue count when failing to set io queues Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.13 021/300] nvme-rdma: " Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.13 022/300] nvmet: pass back cntlid on successful completion Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.13 023/300] power: supply: smb347-charger: Add missing pin control activation Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.13 024/300] power: supply: max17042_battery: fix typo in MAx17042_TOFF Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.13 025/300] s390/cio: add dev_busid sysfs entry for each subchannel Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.13 026/300] s390/zcrypt: fix wrong offset index for APKA master key valid state Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.13 027/300] libata: fix ata_host_start() Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.13 028/300] sched/topology: Skip updating masks for non-online nodes Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.13 029/300] crypto: omap - Fix inconsistent locking of device lists Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.13 030/300] crypto: qat - do not ignore errors from enable_vf2pf_comms() Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.13 031/300] crypto: qat - handle both source of interrupt in VF ISR Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.13 032/300] crypto: qat - fix reuse of completion variable Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.13 033/300] crypto: qat - fix naming for init/shutdown VF to PF notifications Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.13 034/300] crypto: qat - do not export adf_iov_putmsg() Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.13 035/300] crypto: hisilicon/sec - fix the abnormal exiting process Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.13 036/300] crypto: hisilicon/sec - modify the hardware endian configuration Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.13 037/300] crypto: tcrypt - Fix missing return value check Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.13 038/300] fcntl: fix potential deadlocks for &fown_struct.lock Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.13 039/300] fcntl: fix potential deadlock for &fasync_struct.fa_lock Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.13 040/300] udf_get_extendedattr() had no boundary checks Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.13 041/300] io-wq: remove GFP_ATOMIC allocation off schedule out path Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.13 042/300] s390/kasan: fix large PMD pages address alignment check Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.13 043/300] s390/pci: fix misleading rc in clp_set_pci_fn() Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.13 044/300] s390/debug: keep debug data on resize Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.13 045/300] s390/debug: fix debug area life cycle Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.13 046/300] s390/ap: fix state machine hang after failure to enable irq Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.13 047/300] sched/debug: Dont update sched_domain debug directories before sched_debug_init() Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.13 048/300] power: supply: cw2015: use dev_err_probe to allow deferred probe Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.13 049/300] m68k: emu: Fix invalid free in nfeth_cleanup() Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.13 050/300] crypto: x86/aes-ni - add missing error checks in XTS code Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.13 051/300] crypto: ecc - handle unaligned input buffer in ecc_swap_digits Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.13 052/300] sched/numa: Fix is_core_idle() Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.13 053/300] sched: Fix UCLAMP_FLAG_IDLE setting Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.13 054/300] rcu: Fix to include first blocked task in stall warning Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.13 055/300] rcu: Fix stall-warning deadlock due to non-release of rcu_node ->lock Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.13 056/300] m68k: Fix invalid RMW_INSNS on CPUs that lack CAS Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.13 057/300] block: return ELEVATOR_DISCARD_MERGE if possible Greg Kroah-Hartman
2021-09-13 13:11 ` [PATCH 5.13 058/300] spi: spi-fsl-dspi: Fix issue with uninitialized dma_slave_config Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.13 059/300] spi: spi-pic32: " Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.13 060/300] genirq/timings: Fix error return code in irq_timings_test_irqs() Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.13 061/300] irqchip/loongson-pch-pic: Improve edge triggered interrupt support Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.13 062/300] lib/mpi: use kcalloc in mpi_resize Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.13 063/300] clocksource/drivers/sh_cmt: Fix wrong setting if dont request IRQ for clock source channel Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.13 064/300] block: nbd: add sanity check for first_minor Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.13 065/300] spi: coldfire-qspi: Use clk_disable_unprepare in the remove function Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.13 066/300] irqchip/apple-aic: Fix irq_disable from within irq handlers Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.13 067/300] irqchip/gic-v3: Fix priority comparison when non-secure priorities are used Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.13 068/300] crypto: qat - use proper type for vf_mask Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.13 069/300] certs: Trigger creation of RSA module signing key if its not an RSA key Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.13 070/300] tpm: ibmvtpm: Avoid error message when process gets signal while waiting Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.13 071/300] io_uring: refactor io_submit_flush_completions() Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.13 072/300] x86/mce: Defer processing of early errors Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.13 073/300] spi: davinci: invoke chipselect callback Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.13 074/300] blk-crypto: fix check for too-large dun_bytes Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.13 075/300] regulator: vctrl: Use locked regulator_get_voltage in probe path Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.13 076/300] regulator: vctrl: Avoid lockdep warning in enable/disable ops Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.13 077/300] spi: sprd: Fix the wrong WDG_LOAD_VAL Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.13 078/300] spi: spi-zynq-qspi: use wait_for_completion_timeout to make zynq_qspi_exec_mem_op not interruptible Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.13 079/300] crypto: rmd320 - remove rmd320 in Makefile Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.13 080/300] EDAC/i10nm: Fix NVDIMM detection Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.13 081/300] drm/panfrost: Fix missing clk_disable_unprepare() on error in panfrost_clk_init() Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.13 082/300] drm/gma500: Fix end of loop tests for list_for_each_entry Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.13 083/300] ASoC: mediatek: mt8192:Fix Unbalanced pm_runtime_enable in mt8192_afe_pcm_dev_probe Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.13 084/300] ASoC: mediatek: mt8183: Fix Unbalanced pm_runtime_enable in mt8183_afe_pcm_dev_probe Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.13 085/300] media: TDA1997x: enable EDID support Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.13 086/300] leds: is31fl32xx: Fix missing error code in is31fl32xx_parse_dt() Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.13 087/300] soc: rockchip: ROCKCHIP_GRF should not default to y, unconditionally Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.13 088/300] media: cxd2880-spi: Fix an error handling path Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.13 089/300] drm/of: free the right object Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.13 090/300] bpf: Fix a typo of reuseport map in bpf.h Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.13 091/300] bpf: Fix potential memleak and UAF in the verifier Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.13 092/300] drm/of: free the iterator object on failure Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.13 093/300] gve: fix the wrong AdminQ buffer overflow check Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.13 094/300] libbpf: Fix the possible memory leak on error Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.13 095/300] ARM: dts: aspeed-g6: Fix HVI3C function-group in pinctrl dtsi Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.13 096/300] arm64: dts: renesas: r8a77995: draak: Remove bogus adv7511w properties Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.13 097/300] i40e: improve locking of mac_filter_hash Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.13 098/300] arm64: dts: qcom: sc7180: Set adau wakeup delay to 80 ms Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.13 099/300] soc: qcom: rpmhpd: Use corner in power_off Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.13 100/300] libbpf: Fix removal of inner map in bpf_object__create_map Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.13 101/300] gfs2: Fix memory leak of object lsi on error return path Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.13 102/300] arm64: dts: qcom: sm8250: fix usb2 qmp phy node Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.13 103/300] bpf, selftests: Fix test_maps now that sockmap supports UDP Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.13 104/300] firmware: fix theoretical UAF race with firmware cache and resume Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.13 105/300] driver core: Fix error return code in really_probe() Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.13 106/300] ionic: cleanly release devlink instance Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.13 107/300] media: dvb-usb: fix uninit-value in dvb_usb_adapter_dvb_init Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.13 108/300] media: dvb-usb: fix uninit-value in vp702x_read_mac_addr Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.13 109/300] media: dvb-usb: Fix error handling in dvb_usb_i2c_init Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.13 110/300] media: go7007: fix memory leak in go7007_usb_probe Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.13 111/300] media: go7007: remove redundant initialization Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.13 112/300] media: rockchip/rga: use pm_runtime_resume_and_get() Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.13 113/300] media: rockchip/rga: fix error handling in probe Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.13 114/300] media: coda: fix frame_mem_ctrl for YUV420 and YVU420 formats Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.13 115/300] media: atomisp: fix the uninitialized use and rename "retvalue" Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.13 116/300] Bluetooth: sco: prevent information leak in sco_conn_defer_accept() Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.13 117/300] Bluetooth: btusb: Fix a unspported condition to set available debug features Greg Kroah-Hartman
2021-09-13 13:12 ` [PATCH 5.13 118/300] 6lowpan: iphc: Fix an off-by-one check of array index Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.13 119/300] drm/amdgpu/acp: Make PM domain really work Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.13 120/300] tcp: seq_file: Avoid skipping sk during tcp_seek_last_pos Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.13 121/300] ARM: dts: meson8: Use a higher default GPU clock frequency Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.13 122/300] ARM: dts: meson8b: odroidc1: Fix the pwm regulator supply properties Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.13 123/300] ARM: dts: meson8b: mxq: " Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.13 124/300] ARM: dts: meson8b: ec100: " Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.13 125/300] net/mlx5e: Prohibit inner indir TIRs in IPoIB Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.13 126/300] net/mlx5e: Block LRO if firmware asks for tunneled LRO Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.13 127/300] cgroup/cpuset: Fix a partition bug with hotplug Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.13 128/300] drm: mxsfb: Enable recovery on underflow Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.13 129/300] drm: mxsfb: Increase number of outstanding requests on V4 and newer HW Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.13 130/300] drm: mxsfb: Clear FIFO_CLEAR bit Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.13 131/300] net: cipso: fix warnings in netlbl_cipsov4_add_std Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.13 132/300] net: ti: am65-cpsw-nuss: fix wrong devlink release order Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.13 133/300] drm: rcar-du: Dont put reference to drm_device in rcar_du_remove() Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.13 134/300] Bluetooth: mgmt: Fix wrong opcode in the response for add_adv cmd Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.13 135/300] tools: Free BTF objects at various locations Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.13 136/300] arm64: dts: renesas: hihope-rzg2-ex: Add EtherAVB internal rx delay Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.13 137/300] devlink: Break parameter notification sequence to be before/after unload/load driver Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.13 138/300] net/mlx5: Fix missing return value in mlx5_devlink_eswitch_inline_mode_set() Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.13 139/300] i2c: highlander: add IRQ check Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.13 140/300] leds: lgm-sso: Put fwnode in any case during ->probe() Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.13 141/300] leds: lgm-sso: Dont spam logs when probe is deferred Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.13 142/300] leds: lt3593: Put fwnode in any case during ->probe() Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.13 143/300] leds: rt8515: " Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.13 144/300] leds: trigger: audio: Add an activate callback to ensure the initial brightness is set Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.13 145/300] media: em28xx-input: fix refcount bug in em28xx_usb_disconnect Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.13 146/300] media: omap3isp: Fix missing unlock in isp_subdev_notifier_complete() Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.13 147/300] media: venus: hfi: fix return value check in sys_get_prop_image_version() Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.13 148/300] media: venus: venc: Fix potential null pointer dereference on pointer fmt Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.13 149/300] media: venus: helper: do not set constrained parameters for UBWC Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.13 150/300] soc: mmsys: mediatek: add mask to mmsys routes Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.13 151/300] PCI: PM: Avoid forcing PCI_D0 for wakeup reasons inconsistently Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.13 152/300] PCI: PM: Enable PME if it can be signaled from D3cold Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.13 153/300] bpf, samples: Add missing mprog-disable to xdp_redirect_cpus optstring Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.13 154/300] soc: qcom: smsm: Fix missed interrupts if state changes while masked Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.13 155/300] debugfs: Return error during {full/open}_proxy_open() on rmmod Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.13 156/300] Bluetooth: increase BTNAMSIZ to 21 chars to fix potential buffer overflow Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.13 157/300] net: ti: am65-cpsw-nuss: fix RX IRQ state after .ndo_stop() Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.13 158/300] net: dsa: stop syncing the bridge mcast_router attribute at join time Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.13 159/300] net: dsa: mt7530: remove the .port_set_mrouter implementation Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.13 160/300] net: dsa: dont disable multicast flooding to the CPU even without an IGMP querier Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.13 161/300] PM: EM: Increase energy calculation precision Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.13 162/300] selftests/bpf: Fix bpf-iter-tcp4 test to print correctly the dest IP Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.13 163/300] leds: lgm-sso: Propagate error codes from callee to caller Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.13 164/300] drm/msm/mdp4: refactor HW revision detection into read_mdp_hw_revision Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.13 165/300] drm/msm/mdp4: move HW revision detection to earlier phase Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.13 166/300] drm/msm/dp: update is_connected status base on sink count at dp_pm_resume() Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.13 167/300] drm/msm/dpu: make dpu_hw_ctl_clear_all_blendstages clear necessary LMs Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.13 168/300] arm64: dts: exynos: correct GIC CPU interfaces address range on Exynos7 Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.13 169/300] counter: 104-quad-8: Return error when invalid mode during ceiling_write Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.13 170/300] cgroup/cpuset: Miscellaneous code cleanup Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.13 171/300] cgroup/cpuset: Fix violation of cpuset locking rule Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.13 172/300] ASoC: Intel: Fix platform ID matching Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.13 173/300] Bluetooth: fix repeated calls to sco_sock_kill Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.13 174/300] drm/msm/dsi: Fix some reference counted resource leaks Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.13 175/300] drm/msm/dp: replug event is converted into an unplug followed by an plug events Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.13 176/300] net/mlx5: Fix unpublish devlink parameters Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.13 177/300] ASoC: rt5682: Implement remove callback Greg Kroah-Hartman
2021-09-13 13:13 ` [PATCH 5.13 178/300] ASoC: rt5682: Properly turn off regulators if wrong device ID Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.13 179/300] usb: dwc3: meson-g12a: add IRQ check Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.13 180/300] usb: dwc3: qcom: " Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.13 181/300] usb: gadget: udc: at91: " Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.13 182/300] usb: gadget: udc: s3c2410: " Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.13 183/300] usb: misc: brcmstb-usb-pinmap: " Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.13 184/300] usb: phy: fsl-usb: " Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.13 185/300] usb: phy: twl6030: add IRQ checks Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.13 186/300] usb: gadget: udc: renesas_usb3: Fix soc_device_match() abuse Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.13 187/300] selftests/bpf: Fix test_core_autosize on big-endian machines Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.13 188/300] devlink: Clear whole devlink_flash_notify struct Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.13 189/300] samples: pktgen: add missing IPv6 option to pktgen scripts Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.13 190/300] net: stmmac: fix INTR TBU status affecting irq count statistic Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.13 191/300] Bluetooth: Move shutdown callback before flushing tx and rx queue Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.13 192/300] PM: cpu: Make notifier chain use a raw_spinlock_t Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.13 193/300] usb: host: ohci-tmio: add IRQ check Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.13 194/300] usb: phy: tahvo: " Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.13 195/300] libbpf: Re-build libbpf.so when libbpf.map changes Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.13 196/300] mac80211: Fix insufficient headroom issue for AMSDU Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.13 197/300] locking/local_lock: Add missing owner initialization Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.13 198/300] lockd: Fix invalid lockowner cast after vfs_test_lock Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.13 199/300] SUNRPC: Fix a NULL pointer deref in trace_svc_stats_latency() Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.13 200/300] nfsd4: Fix forced-expiry locking Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.13 201/300] arm64: dts: marvell: armada-37xx: Extend PCIe MEM space Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.13 202/300] clk: staging: correct reference to config IOMEM to config HAS_IOMEM Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.13 203/300] i2c: synquacer: fix deferred probing Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.13 204/300] hwmon: (pmbus/bpa-rs600) Dont use rated limits as warn limits Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.13 205/300] hwmon: remove amd_energy driver in Makefile Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.13 206/300] ASoC: fsl_rpmsg: Check -EPROBE_DEFER for getting clocks Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.13 207/300] firmware: raspberrypi: Fix a leak in rpi_firmware_get() Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.13 208/300] usb: gadget: mv_u3d: request_irq() after initializing UDC Greg Kroah-Hartman
2021-09-13 13:14 ` Greg Kroah-Hartman [this message]
2021-09-13 13:14 ` [PATCH 5.13 210/300] lkdtm: replace SCSI_DISPATCH_CMD with SCSI_QUEUE_RQ Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.13 211/300] Bluetooth: add timeout sanity check to hci_inquiry Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.13 212/300] i2c: iop3xx: fix deferred probing Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.13 213/300] i2c: s3c2410: fix IRQ check Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.13 214/300] i2c: hix5hd2: " Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.13 215/300] gfs2: init system threads before freeze lock Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.13 216/300] rsi: fix error code in rsi_load_9116_firmware() Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.13 217/300] rsi: fix an error code in rsi_probe() Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.13 218/300] octeontx2-af: cn10k: Fix SDP base channel number Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.13 219/300] octeontx2-pf: send correct vlan priority mask to npc_install_flow_req Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.13 220/300] octeontx2-pf: Dont install VLAN offload rule if netdev is down Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.13 221/300] octeontx2-pf: Fix algorithm index in MCAM rules with RSS action Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.13 222/300] m68k: coldfire: return success for clk_enable(NULL) Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.13 223/300] ASoC: Intel: kbl_da7219_max98927: Fix format selection for max98373 Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.13 224/300] ASoC: Intel: Skylake: Leave data as is when invoking TLV IPCs Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.13 225/300] ASoC: Intel: Skylake: Fix module resource and format selection Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.13 226/300] mmc: sdhci: Fix issue with uninitialized dma_slave_config Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.13 227/300] mmc: dw_mmc: " Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.13 228/300] mmc: moxart: " Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.13 229/300] bpf: Fix possible out of bound write in narrow load handling Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.13 230/300] CIFS: Fix a potencially linear read overflow Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.13 231/300] i2c: mt65xx: fix IRQ check Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.13 232/300] i2c: xlp9xx: fix main " Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.13 233/300] octeontx2-pf: cn10k: Fix error return code in otx2_set_flowkey_cfg() Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.13 234/300] usb: ehci-orion: Handle errors of clk_prepare_enable() in probe Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.13 235/300] usb: bdc: Fix an error handling path in bdc_probe() when no suitable DMA config is available Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.13 236/300] usb: bdc: Fix a resource leak in the error handling path of bdc_probe() Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.13 237/300] tty: serial: fsl_lpuart: fix the wrong mapbase value Greg Kroah-Hartman
2021-09-13 13:14 ` [PATCH 5.13 238/300] ASoC: wcd9335: Fix a double irq free in the remove function Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.13 239/300] ASoC: wcd9335: Fix a memory leak in the error handling path of the probe function Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.13 240/300] ASoC: wcd9335: Disable irq on slave ports in the remove function Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.13 241/300] iwlwifi: skip first element in the WTAS ACPI table Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.13 242/300] net/mlx5: Remove all auxiliary devices at the unregister event Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.13 243/300] net/mlx5e: Fix possible use-after-free deleting fdb rule Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.13 244/300] net/mlx5: E-Switch, Set vhca id valid flag when creating indir fwd group Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.13 245/300] net/mlx5e: Use correct eswitch for stack devices with lag Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.13 246/300] ice: Only lock to update netdev dev_addr Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.13 247/300] net: phy: marvell10g: fix broken PHY interrupts for anyone after us in the driver probe list Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.13 248/300] ath6kl: wmi: fix an error code in ath6kl_wmi_sync_point() Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.13 249/300] atlantic: Fix driver resume flow Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.13 250/300] bcma: Fix memory leak for internally-handled cores Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.13 251/300] brcmfmac: pcie: fix oops on failure to resume and reprobe Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.13 252/300] ipv6: make exception cache less predictible Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.13 253/300] ipv4: " Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.13 254/300] net: qrtr: make checks in qrtr_endpoint_post() stricter Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.13 255/300] sch_htb: Fix inconsistency when leaf qdisc creation fails Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.13 256/300] net: sched: Fix qdisc_rate_table refcount leak when get tcf_block failed Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.13 257/300] net: qualcomm: fix QCA7000 checksum handling Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.13 258/300] octeontx2-af: Fix loop in free and unmap counter Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.13 259/300] octeontx2-af: Fix mailbox errors in nix_rss_flowkey_cfg Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.13 260/300] octeontx2-af: Fix static code analyzer reported issues Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.13 261/300] octeontx2-af: Set proper errorcode for IPv4 checksum errors Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.13 262/300] ipv4: fix endianness issue in inet_rtm_getroute_build_skb() Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.13 263/300] amdgpu/pm: add extra info to SMU msg pre-check failed message Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.13 264/300] ASoC: rt5682: Remove unused variable in rt5682_i2c_remove() Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.13 265/300] iwlwifi Add support for ax201 in Samsung Galaxy Book Flex2 Alpha Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.13 266/300] f2fs: guarantee to write dirty data when enabling checkpoint back Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.13 267/300] time: Handle negative seconds correctly in timespec64_to_ns() Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.13 268/300] auxdisplay: hd44780: Fix oops on module unloading Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.13 269/300] io_uring: limit fixed table size by RLIMIT_NOFILE Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.13 270/300] io_uring: IORING_OP_WRITE needs hash_reg_file set Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.13 271/300] io_uring: io_uring_complete() trace should take an integer Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.13 272/300] bio: fix page leak bio_add_hw_page failure Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.13 273/300] raid1: ensure write behind bio has less than BIO_MAX_VECS sectors Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.13 274/300] cifs: Do not leak EDEADLK to dgetents64 for STATUS_USER_SESSION_DELETED Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.13 275/300] smb3: fix posix extensions mount option Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.13 276/300] tty: Fix data race between tiocsti() and flush_to_ldisc() Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.13 277/300] x86/efi: Restore Firmware IDT before calling ExitBootServices() Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.13 278/300] perf/x86/amd/ibs: Extend PERF_PMU_CAP_NO_EXCLUDE to IBS Op Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.13 279/300] x86/resctrl: Fix a maybe-uninitialized build warning treated as error Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.13 280/300] Revert "KVM: x86: mmu: Add guest physical address check in translate_gpa()" Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.13 281/300] KVM: s390: index kvm->arch.idle_mask by vcpu_idx Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.13 282/300] KVM: x86: Update vCPUs hv_clock before back to guest when tsc_offset is adjusted Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.13 283/300] KVM: x86: clamp host mapping level to max_level in kvm_mmu_max_mapping_level Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.13 284/300] KVM: x86/mmu: Avoid collision with !PRESENT SPTEs in TDP MMU lpage stats Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.13 285/300] KVM: VMX: avoid running vmx_handle_exit_irqoff in case of emulation Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.13 286/300] KVM: nVMX: Unconditionally clear nested.pi_pending on nested VM-Enter Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.13 287/300] KVM: arm64: Unregister HYP sections from kmemleak in protected mode Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.13 288/300] ARM: dts: at91: add pinctrl-{names, 0} for all gpios Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.13 289/300] io-wq: check max_worker limits if a worker transitions bound state Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.13 290/300] md/raid10: Remove unnecessary rcu_dereference in raid10_handle_discard Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.13 291/300] char: tpm: Kconfig: remove bad i2c cr50 select Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.13 292/300] fuse: truncate pagecache on atomic_o_trunc Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.13 293/300] fuse: flush extending writes Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.13 294/300] fuse: wait for writepages in syncfs Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.13 295/300] IMA: remove -Wmissing-prototypes warning Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.13 296/300] IMA: remove the dependency on CRYPTO_MD5 Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.13 297/300] fbmem: dont allow too huge resolutions Greg Kroah-Hartman
2021-09-13 13:15 ` [PATCH 5.13 298/300] RDMA/mlx5: Fix number of allocated XLT entries Greg Kroah-Hartman
2021-09-13 13:16 ` [PATCH 5.13 299/300] backlight: pwm_bl: Improve bootloader/kernel device handover Greg Kroah-Hartman
2021-09-13 13:16 ` [PATCH 5.13 300/300] clk: kirkwood: Fix a clocking boot regression Greg Kroah-Hartman
2021-09-13 17:58 ` [PATCH 5.13 000/300] 5.13.17-rc1 review Florian Fainelli
2021-09-13 18:01 ` Naresh Kamboju
2021-09-13 20:07 ` Shuah Khan
2021-09-13 21:14 ` Fox Chen
2021-09-14  9:31 ` Naresh Kamboju
2021-09-14 15:57 ` Guenter Roeck
2021-09-14 15:59 ` Justin Forbes

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=20210913131116.426934113@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=djwong@kernel.org \
    --cc=gavin.dg@linux.alibaba.com \
    --cc=hch@lst.de \
    --cc=linux-kernel@vger.kernel.org \
    --cc=sashal@kernel.org \
    --cc=stable@vger.kernel.org \
    --cc=xuyu@linux.alibaba.com \
    /path/to/YOUR_REPLY

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

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