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, Ayush Sawal <ayush.sawal@chelsio.com>,
	"David S. Miller" <davem@davemloft.net>,
	Sasha Levin <sashal@kernel.org>
Subject: [PATCH 5.10 204/252] cxgb4/ch_ktls: Clear resources when pf4 device is removed
Date: Mon, 31 May 2021 15:14:29 +0200	[thread overview]
Message-ID: <20210531130704.944936529@linuxfoundation.org> (raw)
In-Reply-To: <20210531130657.971257589@linuxfoundation.org>

From: Ayush Sawal <ayush.sawal@chelsio.com>

[ Upstream commit 65e302a9bd57b62872040d57eea1201562a7cbb2 ]

This patch maintain the list of active tids and clear all the active
connection resources when DETACH notification comes.

Fixes: a8c16e8ed624f ("crypto/chcr: move nic TLS functionality to drivers/net")
Signed-off-by: Ayush Sawal <ayush.sawal@chelsio.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 .../net/ethernet/chelsio/cxgb4/cxgb4_main.c   |  2 +-
 .../chelsio/inline_crypto/ch_ktls/chcr_ktls.c | 80 ++++++++++++++++++-
 .../chelsio/inline_crypto/ch_ktls/chcr_ktls.h |  2 +
 3 files changed, 82 insertions(+), 2 deletions(-)

diff --git a/drivers/net/ethernet/chelsio/cxgb4/cxgb4_main.c b/drivers/net/ethernet/chelsio/cxgb4/cxgb4_main.c
index 7fd264a6d085..23c13f34a572 100644
--- a/drivers/net/ethernet/chelsio/cxgb4/cxgb4_main.c
+++ b/drivers/net/ethernet/chelsio/cxgb4/cxgb4_main.c
@@ -6484,9 +6484,9 @@ static void cxgb4_ktls_dev_del(struct net_device *netdev,
 
 	adap->uld[CXGB4_ULD_KTLS].tlsdev_ops->tls_dev_del(netdev, tls_ctx,
 							  direction);
-	cxgb4_set_ktls_feature(adap, FW_PARAMS_PARAM_DEV_KTLS_HW_DISABLE);
 
 out_unlock:
+	cxgb4_set_ktls_feature(adap, FW_PARAMS_PARAM_DEV_KTLS_HW_DISABLE);
 	mutex_unlock(&uld_mutex);
 }
 
diff --git a/drivers/net/ethernet/chelsio/inline_crypto/ch_ktls/chcr_ktls.c b/drivers/net/ethernet/chelsio/inline_crypto/ch_ktls/chcr_ktls.c
index 3a50d5a62ace..f9353826b245 100644
--- a/drivers/net/ethernet/chelsio/inline_crypto/ch_ktls/chcr_ktls.c
+++ b/drivers/net/ethernet/chelsio/inline_crypto/ch_ktls/chcr_ktls.c
@@ -59,6 +59,7 @@ static int chcr_get_nfrags_to_send(struct sk_buff *skb, u32 start, u32 len)
 }
 
 static int chcr_init_tcb_fields(struct chcr_ktls_info *tx_info);
+static void clear_conn_resources(struct chcr_ktls_info *tx_info);
 /*
  * chcr_ktls_save_keys: calculate and save crypto keys.
  * @tx_info - driver specific tls info.
@@ -370,10 +371,14 @@ static void chcr_ktls_dev_del(struct net_device *netdev,
 				chcr_get_ktls_tx_context(tls_ctx);
 	struct chcr_ktls_info *tx_info = tx_ctx->chcr_info;
 	struct ch_ktls_port_stats_debug *port_stats;
+	struct chcr_ktls_uld_ctx *u_ctx;
 
 	if (!tx_info)
 		return;
 
+	u_ctx = tx_info->adap->uld[CXGB4_ULD_KTLS].handle;
+	if (u_ctx && u_ctx->detach)
+		return;
 	/* clear l2t entry */
 	if (tx_info->l2te)
 		cxgb4_l2t_release(tx_info->l2te);
@@ -390,6 +395,8 @@ static void chcr_ktls_dev_del(struct net_device *netdev,
 	if (tx_info->tid != -1) {
 		cxgb4_remove_tid(&tx_info->adap->tids, tx_info->tx_chan,
 				 tx_info->tid, tx_info->ip_family);
+
+		xa_erase(&u_ctx->tid_list, tx_info->tid);
 	}
 
 	port_stats = &tx_info->adap->ch_ktls_stats.ktls_port[tx_info->port_id];
@@ -417,6 +424,7 @@ static int chcr_ktls_dev_add(struct net_device *netdev, struct sock *sk,
 	struct tls_context *tls_ctx = tls_get_ctx(sk);
 	struct ch_ktls_port_stats_debug *port_stats;
 	struct chcr_ktls_ofld_ctx_tx *tx_ctx;
+	struct chcr_ktls_uld_ctx *u_ctx;
 	struct chcr_ktls_info *tx_info;
 	struct dst_entry *dst;
 	struct adapter *adap;
@@ -431,6 +439,7 @@ static int chcr_ktls_dev_add(struct net_device *netdev, struct sock *sk,
 	adap = pi->adapter;
 	port_stats = &adap->ch_ktls_stats.ktls_port[pi->port_id];
 	atomic64_inc(&port_stats->ktls_tx_connection_open);
+	u_ctx = adap->uld[CXGB4_ULD_KTLS].handle;
 
 	if (direction == TLS_OFFLOAD_CTX_DIR_RX) {
 		pr_err("not expecting for RX direction\n");
@@ -440,6 +449,9 @@ static int chcr_ktls_dev_add(struct net_device *netdev, struct sock *sk,
 	if (tx_ctx->chcr_info)
 		goto out;
 
+	if (u_ctx && u_ctx->detach)
+		goto out;
+
 	tx_info = kvzalloc(sizeof(*tx_info), GFP_KERNEL);
 	if (!tx_info)
 		goto out;
@@ -575,6 +587,8 @@ free_tid:
 	cxgb4_remove_tid(&tx_info->adap->tids, tx_info->tx_chan,
 			 tx_info->tid, tx_info->ip_family);
 
+	xa_erase(&u_ctx->tid_list, tx_info->tid);
+
 put_module:
 	/* release module refcount */
 	module_put(THIS_MODULE);
@@ -639,8 +653,12 @@ static int chcr_ktls_cpl_act_open_rpl(struct adapter *adap,
 {
 	const struct cpl_act_open_rpl *p = (void *)input;
 	struct chcr_ktls_info *tx_info = NULL;
+	struct chcr_ktls_ofld_ctx_tx *tx_ctx;
+	struct chcr_ktls_uld_ctx *u_ctx;
 	unsigned int atid, tid, status;
+	struct tls_context *tls_ctx;
 	struct tid_info *t;
+	int ret = 0;
 
 	tid = GET_TID(p);
 	status = AOPEN_STATUS_G(ntohl(p->atid_status));
@@ -672,14 +690,29 @@ static int chcr_ktls_cpl_act_open_rpl(struct adapter *adap,
 	if (!status) {
 		tx_info->tid = tid;
 		cxgb4_insert_tid(t, tx_info, tx_info->tid, tx_info->ip_family);
+		/* Adding tid */
+		tls_ctx = tls_get_ctx(tx_info->sk);
+		tx_ctx = chcr_get_ktls_tx_context(tls_ctx);
+		u_ctx = adap->uld[CXGB4_ULD_KTLS].handle;
+		if (u_ctx) {
+			ret = xa_insert_bh(&u_ctx->tid_list, tid, tx_ctx,
+					   GFP_NOWAIT);
+			if (ret < 0) {
+				pr_err("%s: Failed to allocate tid XA entry = %d\n",
+				       __func__, tx_info->tid);
+				tx_info->open_state = CH_KTLS_OPEN_FAILURE;
+				goto out;
+			}
+		}
 		tx_info->open_state = CH_KTLS_OPEN_SUCCESS;
 	} else {
 		tx_info->open_state = CH_KTLS_OPEN_FAILURE;
 	}
+out:
 	spin_unlock(&tx_info->lock);
 
 	complete(&tx_info->completion);
-	return 0;
+	return ret;
 }
 
 /*
@@ -2097,6 +2130,8 @@ static void *chcr_ktls_uld_add(const struct cxgb4_lld_info *lldi)
 		goto out;
 	}
 	u_ctx->lldi = *lldi;
+	u_ctx->detach = false;
+	xa_init_flags(&u_ctx->tid_list, XA_FLAGS_LOCK_BH);
 out:
 	return u_ctx;
 }
@@ -2130,6 +2165,45 @@ static int chcr_ktls_uld_rx_handler(void *handle, const __be64 *rsp,
 	return 0;
 }
 
+static void clear_conn_resources(struct chcr_ktls_info *tx_info)
+{
+	/* clear l2t entry */
+	if (tx_info->l2te)
+		cxgb4_l2t_release(tx_info->l2te);
+
+#if IS_ENABLED(CONFIG_IPV6)
+	/* clear clip entry */
+	if (tx_info->ip_family == AF_INET6)
+		cxgb4_clip_release(tx_info->netdev, (const u32 *)
+				   &tx_info->sk->sk_v6_rcv_saddr,
+				   1);
+#endif
+
+	/* clear tid */
+	if (tx_info->tid != -1)
+		cxgb4_remove_tid(&tx_info->adap->tids, tx_info->tx_chan,
+				 tx_info->tid, tx_info->ip_family);
+}
+
+static void ch_ktls_reset_all_conn(struct chcr_ktls_uld_ctx *u_ctx)
+{
+	struct ch_ktls_port_stats_debug *port_stats;
+	struct chcr_ktls_ofld_ctx_tx *tx_ctx;
+	struct chcr_ktls_info *tx_info;
+	unsigned long index;
+
+	xa_for_each(&u_ctx->tid_list, index, tx_ctx) {
+		tx_info = tx_ctx->chcr_info;
+		clear_conn_resources(tx_info);
+		port_stats = &tx_info->adap->ch_ktls_stats.ktls_port[tx_info->port_id];
+		atomic64_inc(&port_stats->ktls_tx_connection_close);
+		kvfree(tx_info);
+		tx_ctx->chcr_info = NULL;
+		/* release module refcount */
+		module_put(THIS_MODULE);
+	}
+}
+
 static int chcr_ktls_uld_state_change(void *handle, enum cxgb4_state new_state)
 {
 	struct chcr_ktls_uld_ctx *u_ctx = handle;
@@ -2146,7 +2220,10 @@ static int chcr_ktls_uld_state_change(void *handle, enum cxgb4_state new_state)
 	case CXGB4_STATE_DETACH:
 		pr_info("%s: Down\n", pci_name(u_ctx->lldi.pdev));
 		mutex_lock(&dev_mutex);
+		u_ctx->detach = true;
 		list_del(&u_ctx->entry);
+		ch_ktls_reset_all_conn(u_ctx);
+		xa_destroy(&u_ctx->tid_list);
 		mutex_unlock(&dev_mutex);
 		break;
 	default:
@@ -2185,6 +2262,7 @@ static void __exit chcr_ktls_exit(void)
 		adap = pci_get_drvdata(u_ctx->lldi.pdev);
 		memset(&adap->ch_ktls_stats, 0, sizeof(adap->ch_ktls_stats));
 		list_del(&u_ctx->entry);
+		xa_destroy(&u_ctx->tid_list);
 		kfree(u_ctx);
 	}
 	mutex_unlock(&dev_mutex);
diff --git a/drivers/net/ethernet/chelsio/inline_crypto/ch_ktls/chcr_ktls.h b/drivers/net/ethernet/chelsio/inline_crypto/ch_ktls/chcr_ktls.h
index 18b3b1f02415..10572dc55365 100644
--- a/drivers/net/ethernet/chelsio/inline_crypto/ch_ktls/chcr_ktls.h
+++ b/drivers/net/ethernet/chelsio/inline_crypto/ch_ktls/chcr_ktls.h
@@ -75,6 +75,8 @@ struct chcr_ktls_ofld_ctx_tx {
 struct chcr_ktls_uld_ctx {
 	struct list_head entry;
 	struct cxgb4_lld_info lldi;
+	struct xarray tid_list;
+	bool detach;
 };
 
 static inline struct chcr_ktls_ofld_ctx_tx *
-- 
2.30.2




  parent reply	other threads:[~2021-05-31 14:59 UTC|newest]

Thread overview: 268+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-05-31 13:11 [PATCH 5.10 000/252] 5.10.42-rc1 review Greg Kroah-Hartman
2021-05-31 13:11 ` [PATCH 5.10 001/252] ALSA: hda/realtek: the bass speaker cant output sound on Yoga 9i Greg Kroah-Hartman
2021-05-31 13:11 ` [PATCH 5.10 002/252] ALSA: hda/realtek: Headphone volume is controlled by Front mixer Greg Kroah-Hartman
2021-05-31 13:11 ` [PATCH 5.10 003/252] ALSA: hda/realtek: Chain in pop reduction fixup for ThinkStation P340 Greg Kroah-Hartman
2021-05-31 13:11 ` [PATCH 5.10 004/252] ALSA: hda/realtek: fix mute/micmute LEDs for HP 855 G8 Greg Kroah-Hartman
2021-05-31 13:11 ` [PATCH 5.10 005/252] ALSA: hda/realtek: fix mute/micmute LEDs and speaker for HP Zbook G8 Greg Kroah-Hartman
2021-05-31 13:11 ` [PATCH 5.10 006/252] ALSA: hda/realtek: fix mute/micmute LEDs and speaker for HP Zbook Fury 15 G8 Greg Kroah-Hartman
2021-05-31 13:11 ` [PATCH 5.10 007/252] ALSA: hda/realtek: fix mute/micmute LEDs and speaker for HP Zbook Fury 17 G8 Greg Kroah-Hartman
2021-05-31 13:11 ` [PATCH 5.10 008/252] ALSA: usb-audio: scarlett2: Fix device hang with ehci-pci Greg Kroah-Hartman
2021-05-31 13:11 ` [PATCH 5.10 009/252] ALSA: usb-audio: scarlett2: Improve driver startup messages Greg Kroah-Hartman
2021-05-31 13:11 ` [PATCH 5.10 010/252] cifs: set server->cipher_type to AES-128-CCM for SMB3.0 Greg Kroah-Hartman
2021-05-31 13:11 ` [PATCH 5.10 011/252] NFSv4: Fix a NULL pointer dereference in pnfs_mark_matching_lsegs_return() Greg Kroah-Hartman
2021-05-31 13:11 ` [PATCH 5.10 012/252] iommu/vt-d: Fix sysfs leak in alloc_iommu() Greg Kroah-Hartman
2021-05-31 13:11 ` [PATCH 5.10 013/252] perf intel-pt: Fix sample instruction bytes Greg Kroah-Hartman
2021-05-31 13:11 ` [PATCH 5.10 014/252] perf intel-pt: Fix transaction abort handling Greg Kroah-Hartman
2021-05-31 13:11 ` [PATCH 5.10 015/252] perf scripts python: exported-sql-viewer.py: Fix copy to clipboard from Top Calls by elapsed Time report Greg Kroah-Hartman
2021-05-31 13:11 ` [PATCH 5.10 016/252] perf scripts python: exported-sql-viewer.py: Fix Array TypeError Greg Kroah-Hartman
2021-05-31 13:11 ` [PATCH 5.10 017/252] perf scripts python: exported-sql-viewer.py: Fix warning display Greg Kroah-Hartman
2021-05-31 13:11 ` [PATCH 5.10 018/252] proc: Check /proc/$pid/attr/ writes against file opener Greg Kroah-Hartman
2021-05-31 13:11 ` [PATCH 5.10 019/252] net: hso: fix control-request directions Greg Kroah-Hartman
2021-05-31 13:11 ` [PATCH 5.10 020/252] net/sched: fq_pie: re-factor fix for fq_pie endless loop Greg Kroah-Hartman
2021-05-31 13:11 ` [PATCH 5.10 021/252] net/sched: fq_pie: fix OOB access in the traffic path Greg Kroah-Hartman
2021-05-31 13:11 ` [PATCH 5.10 022/252] netfilter: nft_set_pipapo_avx2: Add irq_fpu_usable() check, fallback to non-AVX2 version Greg Kroah-Hartman
2021-05-31 13:11 ` [PATCH 5.10 023/252] mac80211: assure all fragments are encrypted Greg Kroah-Hartman
2021-05-31 13:11 ` [PATCH 5.10 024/252] mac80211: prevent mixed key and fragment cache attacks Greg Kroah-Hartman
2021-06-01  9:26   ` Pavel Machek
2021-06-05 10:57     ` Mathy Vanhoef
2021-05-31 13:11 ` [PATCH 5.10 025/252] mac80211: properly handle A-MSDUs that start with an RFC 1042 header Greg Kroah-Hartman
2021-05-31 13:11 ` [PATCH 5.10 026/252] cfg80211: mitigate A-MSDU aggregation attacks Greg Kroah-Hartman
2021-05-31 13:11 ` [PATCH 5.10 027/252] mac80211: drop A-MSDUs on old ciphers Greg Kroah-Hartman
2021-05-31 13:11 ` [PATCH 5.10 028/252] mac80211: add fragment cache to sta_info Greg Kroah-Hartman
2021-05-31 13:11 ` [PATCH 5.10 029/252] mac80211: check defrag PN against current frame Greg Kroah-Hartman
2021-05-31 13:11 ` [PATCH 5.10 030/252] mac80211: prevent attacks on TKIP/WEP as well Greg Kroah-Hartman
2021-06-01  9:31   ` Pavel Machek
2021-05-31 13:11 ` [PATCH 5.10 031/252] mac80211: do not accept/forward invalid EAPOL frames Greg Kroah-Hartman
2021-05-31 13:11 ` [PATCH 5.10 032/252] mac80211: extend protection against mixed key and fragment cache attacks Greg Kroah-Hartman
2021-05-31 13:11 ` [PATCH 5.10 033/252] ath10k: add CCMP PN replay protection for fragmented frames for PCIe Greg Kroah-Hartman
2021-05-31 13:11 ` [PATCH 5.10 034/252] ath10k: drop fragments with multicast DA " Greg Kroah-Hartman
2021-05-31 13:11 ` [PATCH 5.10 035/252] ath10k: drop fragments with multicast DA for SDIO Greg Kroah-Hartman
2021-05-31 13:11 ` [PATCH 5.10 036/252] ath10k: drop MPDU which has discard flag set by firmware " Greg Kroah-Hartman
2021-05-31 20:24   ` Pavel Machek
2021-06-03 19:14     ` Nick Lowe
2021-05-31 13:11 ` [PATCH 5.10 037/252] ath10k: Fix TKIP Michael MIC verification for PCIe Greg Kroah-Hartman
2021-05-31 13:11 ` [PATCH 5.10 038/252] ath10k: Validate first subframe of A-MSDU before processing the list Greg Kroah-Hartman
2021-05-31 13:11 ` [PATCH 5.10 039/252] ath11k: Clear the fragment cache during key install Greg Kroah-Hartman
2021-05-31 13:11 ` [PATCH 5.10 040/252] dm snapshot: properly fix a crash when an origin has no snapshots Greg Kroah-Hartman
2021-05-31 13:11 ` [PATCH 5.10 041/252] drm/amd/pm: correct MGpuFanBoost setting Greg Kroah-Hartman
2021-05-31 13:11 ` [PATCH 5.10 042/252] drm/amdgpu/vcn1: add cancel_delayed_work_sync before power gate Greg Kroah-Hartman
2021-05-31 13:11 ` [PATCH 5.10 043/252] drm/amdkfd: correct sienna_cichlid SDMA RLC register offset error Greg Kroah-Hartman
2021-05-31 13:11 ` [PATCH 5.10 044/252] drm/amdgpu/vcn2.0: add cancel_delayed_work_sync before power gate Greg Kroah-Hartman
2021-05-31 13:11 ` [PATCH 5.10 045/252] drm/amdgpu/vcn2.5: " Greg Kroah-Hartman
2021-05-31 13:11 ` [PATCH 5.10 046/252] drm/amdgpu/jpeg2.0: " Greg Kroah-Hartman
2021-05-31 13:11 ` [PATCH 5.10 047/252] selftests/gpio: Use TEST_GEN_PROGS_EXTENDED Greg Kroah-Hartman
2021-05-31 13:11 ` [PATCH 5.10 048/252] selftests/gpio: Move include of lib.mk up Greg Kroah-Hartman
2021-05-31 13:11 ` [PATCH 5.10 049/252] selftests/gpio: Fix build when source tree is read only Greg Kroah-Hartman
2021-05-31 13:11 ` [PATCH 5.10 050/252] kgdb: fix gcc-11 warnings harder Greg Kroah-Hartman
2021-05-31 13:11 ` [PATCH 5.10 051/252] Documentation: seccomp: Fix user notification documentation Greg Kroah-Hartman
2021-05-31 13:11 ` [PATCH 5.10 052/252] seccomp: Refactor notification handler to prepare for new semantics Greg Kroah-Hartman
2021-05-31 13:11 ` [PATCH 5.10 053/252] serial: core: fix suspicious security_locked_down() call Greg Kroah-Hartman
2021-05-31 20:26   ` Pavel Machek
2021-05-31 13:11 ` [PATCH 5.10 054/252] misc/uss720: fix memory leak in uss720_probe Greg Kroah-Hartman
2021-05-31 13:12 ` [PATCH 5.10 055/252] thunderbolt: usb4: Fix NVM read buffer bounds and offset issue Greg Kroah-Hartman
2021-05-31 13:12 ` [PATCH 5.10 056/252] thunderbolt: dma_port: " Greg Kroah-Hartman
2021-05-31 13:12 ` [PATCH 5.10 057/252] KVM: X86: Fix vCPU preempted state from guests point of view Greg Kroah-Hartman
2021-05-31 13:12 ` [PATCH 5.10 058/252] KVM: arm64: Prevent mixed-width VM creation Greg Kroah-Hartman
2021-05-31 13:12 ` [PATCH 5.10 059/252] mei: request autosuspend after sending rx flow control Greg Kroah-Hartman
2021-05-31 13:12 ` [PATCH 5.10 060/252] staging: iio: cdc: ad7746: avoid overwrite of num_channels Greg Kroah-Hartman
2021-05-31 13:12 ` [PATCH 5.10 061/252] iio: gyro: fxas21002c: balance runtime power in error path Greg Kroah-Hartman
2021-05-31 13:12 ` [PATCH 5.10 062/252] iio: dac: ad5770r: Put fwnode in error case during ->probe() Greg Kroah-Hartman
2021-05-31 13:12 ` [PATCH 5.10 063/252] iio: adc: ad7768-1: Fix too small buffer passed to iio_push_to_buffers_with_timestamp() Greg Kroah-Hartman
2021-05-31 13:12 ` [PATCH 5.10 064/252] iio: adc: ad7124: Fix missbalanced regulator enable / disable on error Greg Kroah-Hartman
2021-05-31 13:12 ` [PATCH 5.10 065/252] iio: adc: ad7124: Fix potential overflow due to non sequential channel numbers Greg Kroah-Hartman
2021-05-31 13:12 ` [PATCH 5.10 066/252] iio: adc: ad7923: Fix undersized rx buffer Greg Kroah-Hartman
2021-05-31 13:12 ` [PATCH 5.10 067/252] iio: adc: ad7793: Add missing error code in ad7793_setup() Greg Kroah-Hartman
2021-05-31 13:12 ` [PATCH 5.10 068/252] iio: adc: ad7192: Avoid disabling a clock that was never enabled Greg Kroah-Hartman
2021-05-31 13:12 ` [PATCH 5.10 069/252] iio: adc: ad7192: handle regulator voltage error first Greg Kroah-Hartman
2021-05-31 13:12 ` [PATCH 5.10 070/252] serial: 8250: Add UART_BUG_TXRACE workaround for Aspeed VUART Greg Kroah-Hartman
2021-05-31 13:12 ` [PATCH 5.10 071/252] serial: 8250_dw: Add device HID for new AMD UART controller Greg Kroah-Hartman
2021-05-31 13:12 ` [PATCH 5.10 072/252] serial: 8250_pci: Add support for new HPE serial device Greg Kroah-Hartman
2021-05-31 13:12 ` [PATCH 5.10 073/252] serial: 8250_pci: handle FL_NOIRQ board flag Greg Kroah-Hartman
2021-05-31 13:12 ` [PATCH 5.10 074/252] USB: trancevibrator: fix control-request direction Greg Kroah-Hartman
2021-05-31 13:12 ` [PATCH 5.10 075/252] Revert "irqbypass: do not start cons/prod when failed connect" Greg Kroah-Hartman
2021-05-31 13:12 ` [PATCH 5.10 076/252] USB: usbfs: Dont WARN about excessively large memory allocations Greg Kroah-Hartman
2021-05-31 13:12 ` [PATCH 5.10 077/252] drivers: base: Fix device link removal Greg Kroah-Hartman
2021-05-31 13:12 ` [PATCH 5.10 078/252] serial: tegra: Fix a mask operation that is always true Greg Kroah-Hartman
2021-05-31 13:12 ` [PATCH 5.10 079/252] serial: sh-sci: Fix off-by-one error in FIFO threshold register setting Greg Kroah-Hartman
2021-05-31 13:12 ` [PATCH 5.10 080/252] serial: rp2: use request_firmware instead of request_firmware_nowait Greg Kroah-Hartman
2021-05-31 13:12 ` [PATCH 5.10 081/252] USB: serial: ti_usb_3410_5052: add startech.com device id Greg Kroah-Hartman
2021-05-31 13:12 ` [PATCH 5.10 082/252] USB: serial: option: add Telit LE910-S1 compositions 0x7010, 0x7011 Greg Kroah-Hartman
2021-05-31 13:12 ` [PATCH 5.10 083/252] USB: serial: ftdi_sio: add IDs for IDS GmbH Products Greg Kroah-Hartman
2021-05-31 13:12 ` [PATCH 5.10 084/252] USB: serial: pl2303: add device id for ADLINK ND-6530 GC Greg Kroah-Hartman
2021-05-31 13:12 ` [PATCH 5.10 085/252] thermal/drivers/intel: Initialize RW trip to THERMAL_TEMP_INVALID Greg Kroah-Hartman
2021-05-31 13:12 ` [PATCH 5.10 086/252] usb: dwc3: gadget: Properly track pending and queued SG Greg Kroah-Hartman
2021-05-31 13:12 ` [PATCH 5.10 087/252] usb: gadget: udc: renesas_usb3: Fix a race in usb3_start_pipen() Greg Kroah-Hartman
2021-05-31 13:12 ` [PATCH 5.10 088/252] usb: typec: mux: Fix matching with typec_altmode_desc Greg Kroah-Hartman
2021-05-31 13:12 ` [PATCH 5.10 089/252] net: usb: fix memory leak in smsc75xx_bind Greg Kroah-Hartman
2021-05-31 13:12 ` [PATCH 5.10 090/252] Bluetooth: cmtp: fix file refcount when cmtp_attach_device fails Greg Kroah-Hartman
2021-05-31 13:12 ` [PATCH 5.10 091/252] fs/nfs: Use fatal_signal_pending instead of signal_pending Greg Kroah-Hartman
2021-05-31 13:12 ` [PATCH 5.10 092/252] NFS: fix an incorrect limit in filelayout_decode_layout() Greg Kroah-Hartman
2021-05-31 13:12 ` [PATCH 5.10 093/252] NFS: Fix an Oopsable condition in __nfs_pageio_add_request() Greg Kroah-Hartman
2021-05-31 13:12 ` [PATCH 5.10 094/252] NFS: Dont corrupt the value of pg_bytes_written in nfs_do_recoalesce() Greg Kroah-Hartman
2021-05-31 13:12 ` [PATCH 5.10 095/252] NFSv4: Fix v4.0/v4.1 SEEK_DATA return -ENOTSUPP when set NFS_V4_2 config Greg Kroah-Hartman
2021-05-31 13:12 ` [PATCH 5.10 096/252] drm/meson: fix shutdown crash when component not probed Greg Kroah-Hartman
2021-05-31 13:12 ` [PATCH 5.10 097/252] net/mlx5e: reset XPS on error flow if netdev isnt registered yet Greg Kroah-Hartman
2021-05-31 13:12 ` [PATCH 5.10 098/252] net/mlx5e: Fix multipath lag activation Greg Kroah-Hartman
2021-05-31 13:12 ` [PATCH 5.10 099/252] net/mlx5e: Fix error path of updating netdev queues Greg Kroah-Hartman
2021-05-31 13:12 ` [PATCH 5.10 100/252] {net,vdpa}/mlx5: Configure interface MAC into mpfs L2 table Greg Kroah-Hartman
2021-05-31 13:12 ` [PATCH 5.10 101/252] net/mlx5e: Fix nullptr in add_vlan_push_action() Greg Kroah-Hartman
2021-05-31 13:12 ` [PATCH 5.10 102/252] net/mlx5: Set reformat action when needed for termination rules Greg Kroah-Hartman
2021-05-31 13:12 ` [PATCH 5.10 103/252] net/mlx5e: Fix null deref accessing lag dev Greg Kroah-Hartman
2021-05-31 13:12 ` [PATCH 5.10 104/252] net/mlx4: Fix EEPROM dump support Greg Kroah-Hartman
2021-05-31 13:12 ` [PATCH 5.10 105/252] net/mlx5: Set term table as an unmanaged flow table Greg Kroah-Hartman
2021-05-31 13:12 ` [PATCH 5.10 106/252] SUNRPC in case of backlog, hand free slots directly to waiting task Greg Kroah-Hartman
2021-05-31 13:12 ` [PATCH 5.10 107/252] Revert "net:tipc: Fix a double free in tipc_sk_mcast_rcv" Greg Kroah-Hartman
2021-05-31 13:12 ` [PATCH 5.10 108/252] tipc: wait and exit until all work queues are done Greg Kroah-Hartman
2021-05-31 13:12 ` [PATCH 5.10 109/252] tipc: skb_linearize the head skb when reassembling msgs Greg Kroah-Hartman
2021-05-31 13:12 ` [PATCH 5.10 110/252] spi: spi-fsl-dspi: Fix a resource leak in an error handling path Greg Kroah-Hartman
2021-05-31 13:12 ` [PATCH 5.10 111/252] netfilter: flowtable: Remove redundant hw refresh bit Greg Kroah-Hartman
2021-05-31 13:12 ` [PATCH 5.10 112/252] net: dsa: mt7530: fix VLAN traffic leaks Greg Kroah-Hartman
2021-05-31 13:12 ` [PATCH 5.10 113/252] net: dsa: fix a crash if ->get_sset_count() fails Greg Kroah-Hartman
2021-05-31 13:12 ` [PATCH 5.10 114/252] net: dsa: sja1105: update existing VLANs from the bridge VLAN list Greg Kroah-Hartman
2021-05-31 13:13 ` [PATCH 5.10 115/252] net: dsa: sja1105: use 4095 as the private VLAN for untagged traffic Greg Kroah-Hartman
2021-05-31 13:13 ` [PATCH 5.10 116/252] net: dsa: sja1105: error out on unsupported PHY mode Greg Kroah-Hartman
2021-05-31 13:13 ` [PATCH 5.10 117/252] net: dsa: sja1105: add error handling in sja1105_setup() Greg Kroah-Hartman
2021-05-31 13:13 ` [PATCH 5.10 118/252] net: dsa: sja1105: call dsa_unregister_switch when allocating memory fails Greg Kroah-Hartman
2021-05-31 13:13 ` [PATCH 5.10 119/252] net: dsa: sja1105: fix VL lookup command packing for P/Q/R/S Greg Kroah-Hartman
2021-05-31 13:13 ` [PATCH 5.10 120/252] i2c: s3c2410: fix possible NULL pointer deref on read message after write Greg Kroah-Hartman
2021-05-31 13:13 ` [PATCH 5.10 121/252] i2c: mediatek: Disable i2c start_en and clear intr_stat brfore reset Greg Kroah-Hartman
2021-05-31 13:13 ` [PATCH 5.10 122/252] i2c: i801: Dont generate an interrupt on bus reset Greg Kroah-Hartman
2021-05-31 13:13 ` [PATCH 5.10 123/252] i2c: sh_mobile: Use new clock calculation formulas for RZ/G2E Greg Kroah-Hartman
2021-05-31 13:13 ` [PATCH 5.10 124/252] afs: Fix the nlink handling of dir-over-dir rename Greg Kroah-Hartman
2021-05-31 13:13 ` [PATCH 5.10 125/252] perf jevents: Fix getting maximum number of fds Greg Kroah-Hartman
2021-05-31 13:13 ` [PATCH 5.10 126/252] nvmet-tcp: fix inline data size comparison in nvmet_tcp_queue_response Greg Kroah-Hartman
2021-05-31 13:13 ` [PATCH 5.10 127/252] mptcp: avoid error message on infinite mapping Greg Kroah-Hartman
2021-05-31 13:13 ` [PATCH 5.10 128/252] mptcp: drop unconditional pr_warn on bad opt Greg Kroah-Hartman
2021-05-31 13:13 ` [PATCH 5.10 129/252] mptcp: fix data stream corruption Greg Kroah-Hartman
2021-05-31 13:13 ` [PATCH 5.10 130/252] platform/x86: hp_accel: Avoid invoking _INI to speed up resume Greg Kroah-Hartman
2021-05-31 13:13 ` [PATCH 5.10 131/252] gpio: cadence: Add missing MODULE_DEVICE_TABLE Greg Kroah-Hartman
2021-05-31 13:13 ` [PATCH 5.10 132/252] Revert "crypto: cavium/nitrox - add an error message to explain the failure of pci_request_mem_regions" Greg Kroah-Hartman
2021-05-31 13:13 ` [PATCH 5.10 133/252] Revert "media: usb: gspca: add a missed check for goto_low_power" Greg Kroah-Hartman
2021-05-31 13:13 ` [PATCH 5.10 134/252] Revert "ALSA: sb: fix a missing check of snd_ctl_add" Greg Kroah-Hartman
2021-05-31 13:13 ` [PATCH 5.10 135/252] Revert "serial: max310x: pass return value of spi_register_driver" Greg Kroah-Hartman
2021-05-31 13:13 ` [PATCH 5.10 136/252] serial: max310x: unregister uart driver in case of failure and abort Greg Kroah-Hartman
2021-05-31 13:13 ` [PATCH 5.10 137/252] Revert "net: fujitsu: fix a potential NULL pointer dereference" Greg Kroah-Hartman
2021-05-31 13:13 ` [PATCH 5.10 138/252] net: fujitsu: fix potential null-ptr-deref Greg Kroah-Hartman
2021-05-31 13:13 ` [PATCH 5.10 139/252] Revert "net/smc: fix a NULL pointer dereference" Greg Kroah-Hartman
2021-05-31 13:13 ` [PATCH 5.10 140/252] net/smc: properly handle workqueue allocation failure Greg Kroah-Hartman
2021-05-31 13:13 ` [PATCH 5.10 141/252] Revert "net: caif: replace BUG_ON with recovery code" Greg Kroah-Hartman
2021-05-31 13:13 ` [PATCH 5.10 142/252] net: caif: remove BUG_ON(dev == NULL) in caif_xmit Greg Kroah-Hartman
2021-05-31 13:13 ` [PATCH 5.10 143/252] Revert "char: hpet: fix a missing check of ioremap" Greg Kroah-Hartman
2021-05-31 13:13 ` [PATCH 5.10 144/252] char: hpet: add checks after calling ioremap Greg Kroah-Hartman
2021-05-31 13:13 ` [PATCH 5.10 145/252] Revert "ALSA: gus: add a check of the status of snd_ctl_add" Greg Kroah-Hartman
2021-05-31 13:13 ` [PATCH 5.10 146/252] ALSA: sb8: Add a comment note regarding an unused pointer Greg Kroah-Hartman
2021-05-31 13:13 ` [PATCH 5.10 147/252] Revert "ALSA: usx2y: Fix potential NULL pointer dereference" Greg Kroah-Hartman
2021-05-31 13:13 ` [PATCH 5.10 148/252] Revert "isdn: mISDNinfineon: fix " Greg Kroah-Hartman
2021-05-31 13:13 ` [PATCH 5.10 149/252] isdn: mISDNinfineon: check/cleanup ioremap failure correctly in setup_io Greg Kroah-Hartman
2021-05-31 13:13 ` [PATCH 5.10 150/252] Revert "ath6kl: return error code in ath6kl_wmi_set_roam_lrssi_cmd()" Greg Kroah-Hartman
2021-05-31 13:13 ` [PATCH 5.10 151/252] ath6kl: return error code in ath6kl_wmi_set_roam_lrssi_cmd() Greg Kroah-Hartman
2021-05-31 13:13 ` [PATCH 5.10 152/252] Revert "isdn: mISDN: Fix potential NULL pointer dereference of kzalloc" Greg Kroah-Hartman
2021-05-31 13:13 ` [PATCH 5.10 153/252] isdn: mISDN: correctly handle ph_info allocation failure in hfcsusb_ph_info Greg Kroah-Hartman
2021-05-31 13:13 ` [PATCH 5.10 154/252] Revert "dmaengine: qcom_hidma: Check for driver register failure" Greg Kroah-Hartman
2021-05-31 13:13 ` [PATCH 5.10 155/252] dmaengine: qcom_hidma: comment platform_driver_register call Greg Kroah-Hartman
2021-05-31 13:13 ` [PATCH 5.10 156/252] Revert "libertas: add checks for the return value of sysfs_create_group" Greg Kroah-Hartman
2021-05-31 13:13 ` [PATCH 5.10 157/252] libertas: register sysfs groups properly Greg Kroah-Hartman
2021-05-31 13:13 ` [PATCH 5.10 158/252] Revert "ASoC: cs43130: fix a NULL pointer dereference" Greg Kroah-Hartman
2021-05-31 13:13 ` [PATCH 5.10 159/252] ASoC: cs43130: handle errors in cs43130_probe() properly Greg Kroah-Hartman
2021-05-31 13:13 ` [PATCH 5.10 160/252] Revert "media: dvb: Add check on sp8870_readreg" Greg Kroah-Hartman
2021-05-31 13:13 ` [PATCH 5.10 161/252] media: dvb: Add check on sp8870_readreg return Greg Kroah-Hartman
2021-05-31 13:13 ` [PATCH 5.10 162/252] Revert "media: gspca: mt9m111: Check write_bridge for timeout" Greg Kroah-Hartman
2021-05-31 13:13 ` [PATCH 5.10 163/252] media: gspca: mt9m111: Check write_bridge for timeout Greg Kroah-Hartman
2021-05-31 13:13 ` [PATCH 5.10 164/252] Revert "media: gspca: Check the return value of write_bridge for timeout" Greg Kroah-Hartman
2021-05-31 13:13 ` [PATCH 5.10 165/252] media: gspca: properly check for errors in po1030_probe() Greg Kroah-Hartman
2021-05-31 13:13 ` [PATCH 5.10 166/252] Revert "net: liquidio: fix a NULL pointer dereference" Greg Kroah-Hartman
2021-05-31 13:13 ` [PATCH 5.10 167/252] net: liquidio: Add missing null pointer checks Greg Kroah-Hartman
2021-05-31 13:13 ` [PATCH 5.10 168/252] Revert "brcmfmac: add a check for the status of usb_register" Greg Kroah-Hartman
2021-05-31 13:13 ` [PATCH 5.10 169/252] brcmfmac: properly check for bus register errors Greg Kroah-Hartman
2021-05-31 13:13 ` [PATCH 5.10 170/252] btrfs: return whole extents in fiemap Greg Kroah-Hartman
2021-05-31 13:13 ` [PATCH 5.10 171/252] scsi: ufs: ufs-mediatek: Fix power down spec violation Greg Kroah-Hartman
2021-05-31 13:13 ` [PATCH 5.10 172/252] scsi: BusLogic: Fix 64-bit system enumeration error for Buslogic Greg Kroah-Hartman
2021-05-31 13:13 ` [PATCH 5.10 173/252] openrisc: Define memory barrier mb Greg Kroah-Hartman
2021-05-31 13:13 ` [PATCH 5.10 174/252] scsi: pm80xx: Fix drives missing during rmmod/insmod loop Greg Kroah-Hartman
2021-05-31 13:14 ` [PATCH 5.10 175/252] btrfs: release path before starting transaction when cloning inline extent Greg Kroah-Hartman
2021-05-31 13:14 ` [PATCH 5.10 176/252] btrfs: do not BUG_ON in link_to_fixup_dir Greg Kroah-Hartman
2021-05-31 13:14 ` [PATCH 5.10 177/252] platform/x86: hp-wireless: add AMDs hardware id to the supported list Greg Kroah-Hartman
2021-05-31 13:14 ` [PATCH 5.10 178/252] platform/x86: intel_punit_ipc: Append MODULE_DEVICE_TABLE for ACPI Greg Kroah-Hartman
2021-05-31 13:14 ` [PATCH 5.10 179/252] platform/x86: touchscreen_dmi: Add info for the Mediacom Winpad 7.0 W700 tablet Greg Kroah-Hartman
2021-05-31 13:14 ` [PATCH 5.10 180/252] SMB3: incorrect file id in requests compounded with open Greg Kroah-Hartman
2021-05-31 13:14 ` [PATCH 5.10 181/252] drm/amd/display: Disconnect non-DP with no EDID Greg Kroah-Hartman
2021-05-31 13:14 ` [PATCH 5.10 182/252] drm/amd/amdgpu: fix refcount leak Greg Kroah-Hartman
2021-07-29  7:58   ` Krzysztof Kozlowski
2021-05-31 13:14 ` [PATCH 5.10 183/252] drm/amdgpu: Fix a use-after-free Greg Kroah-Hartman
2021-05-31 13:14 ` [PATCH 5.10 184/252] drm/amd/amdgpu: fix a potential deadlock in gpu reset Greg Kroah-Hartman
2021-05-31 13:14 ` [PATCH 5.10 185/252] drm/amdgpu: stop touching sched.ready in the backend Greg Kroah-Hartman
2021-05-31 13:14 ` [PATCH 5.10 186/252] platform/x86: touchscreen_dmi: Add info for the Chuwi Hi10 Pro (CWI529) tablet Greg Kroah-Hartman
2021-05-31 13:14 ` [PATCH 5.10 187/252] block: fix a race between del_gendisk and BLKRRPART Greg Kroah-Hartman
2021-05-31 13:14 ` [PATCH 5.10 188/252] linux/bits.h: fix compilation error with GENMASK Greg Kroah-Hartman
2021-05-31 13:14 ` [PATCH 5.10 189/252] net: netcp: Fix an error message Greg Kroah-Hartman
2021-05-31 13:14 ` [PATCH 5.10 190/252] net: dsa: fix error code getting shifted with 4 in dsa_slave_get_sset_count Greg Kroah-Hartman
2021-05-31 13:14 ` [PATCH 5.10 191/252] interconnect: qcom: bcm-voter: add a missing of_node_put() Greg Kroah-Hartman
2021-05-31 13:14 ` [PATCH 5.10 192/252] interconnect: qcom: Add missing MODULE_DEVICE_TABLE Greg Kroah-Hartman
2021-05-31 13:14 ` [PATCH 5.10 193/252] ASoC: cs42l42: Regmap must use_single_read/write Greg Kroah-Hartman
2021-05-31 13:14 ` [PATCH 5.10 194/252] net: stmmac: Fix MAC WoL not working if PHY does not support WoL Greg Kroah-Hartman
2021-05-31 13:14 ` [PATCH 5.10 195/252] net: ipa: memory region array is variable size Greg Kroah-Hartman
2021-05-31 13:14 ` [PATCH 5.10 196/252] vfio-ccw: Check initialized flag in cp_init() Greg Kroah-Hartman
2021-05-31 13:14 ` [PATCH 5.10 197/252] spi: Assume GPIO CS active high in ACPI case Greg Kroah-Hartman
2021-05-31 13:14 ` [PATCH 5.10 198/252] net: really orphan skbs tied to closing sk Greg Kroah-Hartman
2021-05-31 13:14 ` [PATCH 5.10 199/252] net: packetmmap: fix only tx timestamp on request Greg Kroah-Hartman
2021-05-31 13:14 ` [PATCH 5.10 200/252] net: fec: fix the potential memory leak in fec_enet_init() Greg Kroah-Hartman
2021-05-31 13:14 ` [PATCH 5.10 201/252] chelsio/chtls: unlock on error in chtls_pt_recvmsg() Greg Kroah-Hartman
2021-05-31 13:14 ` [PATCH 5.10 202/252] net: mdio: thunder: Fix a double free issue in the .remove function Greg Kroah-Hartman
2021-05-31 13:14 ` [PATCH 5.10 203/252] net: mdio: octeon: Fix some double free issues Greg Kroah-Hartman
2021-05-31 13:14 ` Greg Kroah-Hartman [this message]
2021-05-31 13:14 ` [PATCH 5.10 205/252] openvswitch: meter: fix race when getting now_ms Greg Kroah-Hartman
2021-05-31 13:14 ` [PATCH 5.10 206/252] tls splice: check SPLICE_F_NONBLOCK instead of MSG_DONTWAIT Greg Kroah-Hartman
2021-05-31 13:14 ` [PATCH 5.10 207/252] net: sched: fix packet stuck problem for lockless qdisc Greg Kroah-Hartman
2021-05-31 13:14 ` [PATCH 5.10 208/252] net: sched: fix tx action rescheduling issue during deactivation Greg Kroah-Hartman
2021-05-31 13:14 ` [PATCH 5.10 209/252] net: sched: fix tx action reschedule issue with stopped queue Greg Kroah-Hartman
2021-05-31 13:14 ` [PATCH 5.10 210/252] net: hso: check for allocation failure in hso_create_bulk_serial_device() Greg Kroah-Hartman
2021-05-31 13:14 ` [PATCH 5.10 211/252] net: bnx2: Fix error return code in bnx2_init_board() Greg Kroah-Hartman
2021-05-31 13:14 ` [PATCH 5.10 212/252] bnxt_en: Include new P5 HV definition in VF check Greg Kroah-Hartman
2021-05-31 13:14 ` [PATCH 5.10 213/252] bnxt_en: Fix context memory setup for 64K page size Greg Kroah-Hartman
2021-05-31 13:14 ` [PATCH 5.10 214/252] mld: fix panic in mld_newpack() Greg Kroah-Hartman
2021-05-31 13:14 ` [PATCH 5.10 215/252] net/smc: remove device from smcd_dev_list after failed device_add() Greg Kroah-Hartman
2021-05-31 13:14 ` [PATCH 5.10 216/252] gve: Check TX QPL was actually assigned Greg Kroah-Hartman
2021-05-31 13:14 ` [PATCH 5.10 217/252] gve: Update mgmt_msix_idx if num_ntfy changes Greg Kroah-Hartman
2021-05-31 13:14 ` [PATCH 5.10 218/252] gve: Add NULL pointer checks when freeing irqs Greg Kroah-Hartman
2021-05-31 13:14 ` [PATCH 5.10 219/252] gve: Upgrade memory barrier in poll routine Greg Kroah-Hartman
2021-05-31 13:14 ` [PATCH 5.10 220/252] gve: Correct SKB queue index validation Greg Kroah-Hartman
2021-05-31 13:14 ` [PATCH 5.10 221/252] iommu/virtio: Add missing MODULE_DEVICE_TABLE Greg Kroah-Hartman
2021-05-31 13:14 ` [PATCH 5.10 222/252] net: hns3: fix incorrect resp_msg issue Greg Kroah-Hartman
2021-05-31 13:14 ` [PATCH 5.10 223/252] net: hns3: put off calling register_netdev() until client initialize complete Greg Kroah-Hartman
2021-05-31 13:14 ` [PATCH 5.10 224/252] iommu/vt-d: Use user privilege for RID2PASID translation Greg Kroah-Hartman
2021-05-31 13:14 ` [PATCH 5.10 225/252] cxgb4: avoid accessing registers when clearing filters Greg Kroah-Hartman
2021-05-31 13:14 ` [PATCH 5.10 226/252] staging: emxx_udc: fix loop in _nbu2ss_nuke() Greg Kroah-Hartman
2021-05-31 13:14 ` [PATCH 5.10 227/252] ASoC: cs35l33: fix an error code in probe() Greg Kroah-Hartman
2021-05-31 13:14 ` [PATCH 5.10 228/252] bpf, offload: Reorder offload callback prepare in verifier Greg Kroah-Hartman
2021-05-31 13:14 ` [PATCH 5.10 229/252] bpf: Set mac_len in bpf_skb_change_head Greg Kroah-Hartman
2021-05-31 13:14 ` [PATCH 5.10 230/252] ixgbe: fix large MTU request from VF Greg Kroah-Hartman
2021-05-31 13:14 ` [PATCH 5.10 231/252] ASoC: qcom: lpass-cpu: Use optional clk APIs Greg Kroah-Hartman
2021-05-31 13:14 ` [PATCH 5.10 232/252] scsi: libsas: Use _safe() loop in sas_resume_port() Greg Kroah-Hartman
2021-05-31 13:14 ` [PATCH 5.10 233/252] net: lantiq: fix memory corruption in RX ring Greg Kroah-Hartman
2021-05-31 13:14 ` [PATCH 5.10 234/252] ipv6: record frag_max_size in atomic fragments in input path Greg Kroah-Hartman
2021-05-31 13:15 ` [PATCH 5.10 235/252] ALSA: usb-audio: scarlett2: snd_scarlett_gen2_controls_create() can be static Greg Kroah-Hartman
2021-06-05 13:42   ` Pavel Machek
2021-06-05 17:05     ` Greg Kroah-Hartman
2021-05-31 13:15 ` [PATCH 5.10 236/252] net: ethernet: mtk_eth_soc: Fix packet statistics support for MT7628/88 Greg Kroah-Hartman
2021-05-31 13:15 ` [PATCH 5.10 237/252] sch_dsmark: fix a NULL deref in qdisc_reset() Greg Kroah-Hartman
2021-05-31 13:15 ` [PATCH 5.10 238/252] net: hsr: fix mac_len checks Greg Kroah-Hartman
2021-05-31 13:15 ` [PATCH 5.10 239/252] MIPS: alchemy: xxs1500: add gpio-au1000.h header file Greg Kroah-Hartman
2021-05-31 13:15 ` [PATCH 5.10 240/252] MIPS: ralink: export rt_sysc_membase for rt2880_wdt.c Greg Kroah-Hartman
2021-05-31 13:15 ` [PATCH 5.10 241/252] net: zero-initialize tc skb extension on allocation Greg Kroah-Hartman
2021-05-31 13:15 ` [PATCH 5.10 242/252] net: mvpp2: add buffer header handling in RX Greg Kroah-Hartman
2021-05-31 13:15 ` [PATCH 5.10 243/252] i915: fix build warning in intel_dp_get_link_status() Greg Kroah-Hartman
2021-05-31 13:15 ` [PATCH 5.10 244/252] samples/bpf: Consider frame size in tx_only of xdpsock sample Greg Kroah-Hartman
2021-05-31 13:15 ` [PATCH 5.10 245/252] net: hns3: check the return of skb_checksum_help() Greg Kroah-Hartman
2021-05-31 13:15 ` [PATCH 5.10 246/252] bpftool: Add sock_release help info for cgroup attach/prog load command Greg Kroah-Hartman
2021-05-31 13:15 ` [PATCH 5.10 247/252] SUNRPC: More fixes for backlog congestion Greg Kroah-Hartman
2021-05-31 13:15 ` [PATCH 5.10 248/252] Revert "Revert "ALSA: usx2y: Fix potential NULL pointer dereference"" Greg Kroah-Hartman
2021-05-31 13:15 ` [PATCH 5.10 249/252] net: hso: bail out on interrupt URB allocation failure Greg Kroah-Hartman
2021-05-31 13:15 ` [PATCH 5.10 250/252] scripts/clang-tools: switch explicitly to Python 3 Greg Kroah-Hartman
2021-05-31 13:15 ` [PATCH 5.10 251/252] neighbour: Prevent Race condition in neighbour subsytem Greg Kroah-Hartman
2021-05-31 13:15 ` [PATCH 5.10 252/252] usb: core: reduce power-on-good delay time of root hub Greg Kroah-Hartman
2021-05-31 16:58 ` [PATCH 5.10 000/252] 5.10.42-rc1 review Fox Chen
2021-05-31 19:09 ` Pavel Machek
2021-06-01  2:27 ` Florian Fainelli
2021-06-01  7:13 ` Naresh Kamboju
2021-06-01  8:23 ` Samuel Zou
2021-06-02  2:24 ` Guenter Roeck

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=20210531130704.944936529@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=ayush.sawal@chelsio.com \
    --cc=davem@davemloft.net \
    --cc=linux-kernel@vger.kernel.org \
    --cc=sashal@kernel.org \
    --cc=stable@vger.kernel.org \
    /path/to/YOUR_REPLY

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

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