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, Eric Dumazet <edumazet@google.com>,
	Keyu Man <kman001@ucr.edu>, Willy Tarreau <w@1wt.eu>,
	"David S. Miller" <davem@davemloft.net>,
	David Ahern <dsahern@kernel.org>, Sasha Levin <sashal@kernel.org>
Subject: [PATCH 5.14 285/334] ipv4: make exception cache less predictible
Date: Mon, 13 Sep 2021 15:15:39 +0200	[thread overview]
Message-ID: <20210913131123.057726452@linuxfoundation.org> (raw)
In-Reply-To: <20210913131113.390368911@linuxfoundation.org>

From: Eric Dumazet <edumazet@google.com>

[ Upstream commit 67d6d681e15b578c1725bad8ad079e05d1c48a8e ]

Even after commit 6457378fe796 ("ipv4: use siphash instead of Jenkins in
fnhe_hashfun()"), an attacker can still use brute force to learn
some secrets from a victim linux host.

One way to defeat these attacks is to make the max depth of the hash
table bucket a random value.

Before this patch, each bucket of the hash table used to store exceptions
could contain 6 items under attack.

After the patch, each bucket would contains a random number of items,
between 6 and 10. The attacker can no longer infer secrets.

This is slightly increasing memory size used by the hash table,
by 50% in average, we do not expect this to be a problem.

This patch is more complex than the prior one (IPv6 equivalent),
because IPv4 was reusing the oldest entry.
Since we need to be able to evict more than one entry per
update_or_create_fnhe() call, I had to replace
fnhe_oldest() with fnhe_remove_oldest().

Also note that we will queue extra kfree_rcu() calls under stress,
which hopefully wont be a too big issue.

Fixes: 4895c771c7f0 ("ipv4: Add FIB nexthop exceptions.")
Signed-off-by: Eric Dumazet <edumazet@google.com>
Reported-by: Keyu Man <kman001@ucr.edu>
Cc: Willy Tarreau <w@1wt.eu>
Signed-off-by: David S. Miller <davem@davemloft.net>
Reviewed-by: David Ahern <dsahern@kernel.org>
Tested-by: David Ahern <dsahern@kernel.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 net/ipv4/route.c | 46 ++++++++++++++++++++++++++++++----------------
 1 file changed, 30 insertions(+), 16 deletions(-)

diff --git a/net/ipv4/route.c b/net/ipv4/route.c
index a6f20ee35335..225714b5efc0 100644
--- a/net/ipv4/route.c
+++ b/net/ipv4/route.c
@@ -586,18 +586,25 @@ static void fnhe_flush_routes(struct fib_nh_exception *fnhe)
 	}
 }
 
-static struct fib_nh_exception *fnhe_oldest(struct fnhe_hash_bucket *hash)
+static void fnhe_remove_oldest(struct fnhe_hash_bucket *hash)
 {
-	struct fib_nh_exception *fnhe, *oldest;
+	struct fib_nh_exception __rcu **fnhe_p, **oldest_p;
+	struct fib_nh_exception *fnhe, *oldest = NULL;
 
-	oldest = rcu_dereference(hash->chain);
-	for (fnhe = rcu_dereference(oldest->fnhe_next); fnhe;
-	     fnhe = rcu_dereference(fnhe->fnhe_next)) {
-		if (time_before(fnhe->fnhe_stamp, oldest->fnhe_stamp))
+	for (fnhe_p = &hash->chain; ; fnhe_p = &fnhe->fnhe_next) {
+		fnhe = rcu_dereference_protected(*fnhe_p,
+						 lockdep_is_held(&fnhe_lock));
+		if (!fnhe)
+			break;
+		if (!oldest ||
+		    time_before(fnhe->fnhe_stamp, oldest->fnhe_stamp)) {
 			oldest = fnhe;
+			oldest_p = fnhe_p;
+		}
 	}
 	fnhe_flush_routes(oldest);
-	return oldest;
+	*oldest_p = oldest->fnhe_next;
+	kfree_rcu(oldest, rcu);
 }
 
 static u32 fnhe_hashfun(__be32 daddr)
@@ -676,16 +683,21 @@ static void update_or_create_fnhe(struct fib_nh_common *nhc, __be32 daddr,
 		if (rt)
 			fill_route_from_fnhe(rt, fnhe);
 	} else {
-		if (depth > FNHE_RECLAIM_DEPTH)
-			fnhe = fnhe_oldest(hash);
-		else {
-			fnhe = kzalloc(sizeof(*fnhe), GFP_ATOMIC);
-			if (!fnhe)
-				goto out_unlock;
-
-			fnhe->fnhe_next = hash->chain;
-			rcu_assign_pointer(hash->chain, fnhe);
+		/* Randomize max depth to avoid some side channels attacks. */
+		int max_depth = FNHE_RECLAIM_DEPTH +
+				prandom_u32_max(FNHE_RECLAIM_DEPTH);
+
+		while (depth > max_depth) {
+			fnhe_remove_oldest(hash);
+			depth--;
 		}
+
+		fnhe = kzalloc(sizeof(*fnhe), GFP_ATOMIC);
+		if (!fnhe)
+			goto out_unlock;
+
+		fnhe->fnhe_next = hash->chain;
+
 		fnhe->fnhe_genid = genid;
 		fnhe->fnhe_daddr = daddr;
 		fnhe->fnhe_gw = gw;
@@ -693,6 +705,8 @@ static void update_or_create_fnhe(struct fib_nh_common *nhc, __be32 daddr,
 		fnhe->fnhe_mtu_locked = lock;
 		fnhe->fnhe_expires = max(1UL, expires);
 
+		rcu_assign_pointer(hash->chain, fnhe);
+
 		/* Exception created; mark the cached routes for the nexthop
 		 * stale, so anyone caching it rechecks if this exception
 		 * applies to them.
-- 
2.30.2




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

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