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, Paolo Abeni <pabeni@redhat.com>,
	Mat Martineau <mathew.j.martineau@linux.intel.com>,
	"David S. Miller" <davem@davemloft.net>,
	Sasha Levin <sashal@kernel.org>
Subject: [PATCH 5.13 038/223] mptcp: properly account bulk freed memory
Date: Mon, 26 Jul 2021 17:37:10 +0200	[thread overview]
Message-ID: <20210726153847.495428484@linuxfoundation.org> (raw)
In-Reply-To: <20210726153846.245305071@linuxfoundation.org>

From: Paolo Abeni <pabeni@redhat.com>

[ Upstream commit ce599c516386f09ca30848a1a4eb93d3fffbe187 ]

After commit 879526030c8b ("mptcp: protect the rx path with
the msk socket spinlock") the rmem currently used by a given
msk is really sk_rmem_alloc - rmem_released.

The safety check in mptcp_data_ready() does not take the above
in due account, as a result legit incoming data is kept in
subflow receive queue with no reason, delaying or blocking
MPTCP-level ack generation.

This change addresses the issue introducing a new helper to fetch
the rmem memory and using it as needed. Additionally add a MIB
counter for the exceptional event described above - the peer is
misbehaving.

Finally, introduce the required annotation when rmem_released is
updated.

Fixes: 879526030c8b ("mptcp: protect the rx path with the msk socket spinlock")
Closes: https://github.com/multipath-tcp/mptcp_net-next/issues/211
Signed-off-by: Paolo Abeni <pabeni@redhat.com>
Signed-off-by: Mat Martineau <mathew.j.martineau@linux.intel.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Sasha Levin <sashal@kernel.org>
---
 net/mptcp/mib.c      |  1 +
 net/mptcp/mib.h      |  1 +
 net/mptcp/protocol.c | 12 +++++++-----
 net/mptcp/protocol.h | 10 +++++++++-
 4 files changed, 18 insertions(+), 6 deletions(-)

diff --git a/net/mptcp/mib.c b/net/mptcp/mib.c
index eb2dc6dbe212..c8f4823cd79f 100644
--- a/net/mptcp/mib.c
+++ b/net/mptcp/mib.c
@@ -42,6 +42,7 @@ static const struct snmp_mib mptcp_snmp_list[] = {
 	SNMP_MIB_ITEM("RmSubflow", MPTCP_MIB_RMSUBFLOW),
 	SNMP_MIB_ITEM("MPPrioTx", MPTCP_MIB_MPPRIOTX),
 	SNMP_MIB_ITEM("MPPrioRx", MPTCP_MIB_MPPRIORX),
+	SNMP_MIB_ITEM("RcvPruned", MPTCP_MIB_RCVPRUNED),
 	SNMP_MIB_SENTINEL
 };
 
diff --git a/net/mptcp/mib.h b/net/mptcp/mib.h
index f0da4f060fe1..93fa7c95e206 100644
--- a/net/mptcp/mib.h
+++ b/net/mptcp/mib.h
@@ -35,6 +35,7 @@ enum linux_mptcp_mib_field {
 	MPTCP_MIB_RMSUBFLOW,		/* Remove a subflow */
 	MPTCP_MIB_MPPRIOTX,		/* Transmit a MP_PRIO */
 	MPTCP_MIB_MPPRIORX,		/* Received a MP_PRIO */
+	MPTCP_MIB_RCVPRUNED,		/* Incoming packet dropped due to memory limit */
 	__MPTCP_MIB_MAX
 };
 
diff --git a/net/mptcp/protocol.c b/net/mptcp/protocol.c
index 18f152bdb66f..94b707a39bc3 100644
--- a/net/mptcp/protocol.c
+++ b/net/mptcp/protocol.c
@@ -465,7 +465,7 @@ static void mptcp_cleanup_rbuf(struct mptcp_sock *msk)
 	bool cleanup, rx_empty;
 
 	cleanup = (space > 0) && (space >= (old_space << 1));
-	rx_empty = !atomic_read(&sk->sk_rmem_alloc);
+	rx_empty = !__mptcp_rmem(sk);
 
 	mptcp_for_each_subflow(msk, subflow) {
 		struct sock *ssk = mptcp_subflow_tcp_sock(subflow);
@@ -714,8 +714,10 @@ void mptcp_data_ready(struct sock *sk, struct sock *ssk)
 		sk_rbuf = ssk_rbuf;
 
 	/* over limit? can't append more skbs to msk, Also, no need to wake-up*/
-	if (atomic_read(&sk->sk_rmem_alloc) > sk_rbuf)
+	if (__mptcp_rmem(sk) > sk_rbuf) {
+		MPTCP_INC_STATS(sock_net(sk), MPTCP_MIB_RCVPRUNED);
 		return;
+	}
 
 	/* Wake-up the reader only for in-sequence data */
 	mptcp_data_lock(sk);
@@ -1799,7 +1801,7 @@ static int __mptcp_recvmsg_mskq(struct mptcp_sock *msk,
 		if (!(flags & MSG_PEEK)) {
 			/* we will bulk release the skb memory later */
 			skb->destructor = NULL;
-			msk->rmem_released += skb->truesize;
+			WRITE_ONCE(msk->rmem_released, msk->rmem_released + skb->truesize);
 			__skb_unlink(skb, &msk->receive_queue);
 			__kfree_skb(skb);
 		}
@@ -1918,7 +1920,7 @@ static void __mptcp_update_rmem(struct sock *sk)
 
 	atomic_sub(msk->rmem_released, &sk->sk_rmem_alloc);
 	sk_mem_uncharge(sk, msk->rmem_released);
-	msk->rmem_released = 0;
+	WRITE_ONCE(msk->rmem_released, 0);
 }
 
 static void __mptcp_splice_receive_queue(struct sock *sk)
@@ -2420,7 +2422,7 @@ static int __mptcp_init_sock(struct sock *sk)
 	msk->out_of_order_queue = RB_ROOT;
 	msk->first_pending = NULL;
 	msk->wmem_reserved = 0;
-	msk->rmem_released = 0;
+	WRITE_ONCE(msk->rmem_released, 0);
 	msk->tx_pending_data = 0;
 	msk->size_goal_cache = TCP_BASE_MSS;
 
diff --git a/net/mptcp/protocol.h b/net/mptcp/protocol.h
index f842c832f6b0..dc5b71de0a9a 100644
--- a/net/mptcp/protocol.h
+++ b/net/mptcp/protocol.h
@@ -290,9 +290,17 @@ static inline struct mptcp_sock *mptcp_sk(const struct sock *sk)
 	return (struct mptcp_sock *)sk;
 }
 
+/* the msk socket don't use the backlog, also account for the bulk
+ * free memory
+ */
+static inline int __mptcp_rmem(const struct sock *sk)
+{
+	return atomic_read(&sk->sk_rmem_alloc) - READ_ONCE(mptcp_sk(sk)->rmem_released);
+}
+
 static inline int __mptcp_space(const struct sock *sk)
 {
-	return tcp_space(sk) + READ_ONCE(mptcp_sk(sk)->rmem_released);
+	return tcp_win_from_space(sk, READ_ONCE(sk->sk_rcvbuf) - __mptcp_rmem(sk));
 }
 
 static inline struct mptcp_data_frag *mptcp_send_head(const struct sock *sk)
-- 
2.30.2




  parent reply	other threads:[~2021-07-26 16:28 UTC|newest]

Thread overview: 235+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-07-26 15:36 [PATCH 5.13 000/223] 5.13.6-rc1 review Greg Kroah-Hartman
2021-07-26 15:36 ` [PATCH 5.13 001/223] igc: Fix use-after-free error during reset Greg Kroah-Hartman
2021-07-26 15:36 ` [PATCH 5.13 002/223] igb: " Greg Kroah-Hartman
2021-07-26 15:36 ` [PATCH 5.13 003/223] igc: change default return of igc_read_phy_reg() Greg Kroah-Hartman
2021-07-26 15:36 ` [PATCH 5.13 004/223] ixgbe: Fix an error handling path in ixgbe_probe() Greg Kroah-Hartman
2021-07-26 15:36 ` [PATCH 5.13 005/223] igc: Fix an error handling path in igc_probe() Greg Kroah-Hartman
2021-07-26 15:36 ` [PATCH 5.13 006/223] igb: Fix an error handling path in igb_probe() Greg Kroah-Hartman
2021-07-26 15:36 ` [PATCH 5.13 007/223] fm10k: Fix an error handling path in fm10k_probe() Greg Kroah-Hartman
2021-07-26 15:36 ` [PATCH 5.13 008/223] e1000e: Fix an error handling path in e1000_probe() Greg Kroah-Hartman
2021-07-26 15:36 ` [PATCH 5.13 009/223] iavf: Fix an error handling path in iavf_probe() Greg Kroah-Hartman
2021-07-26 15:36 ` [PATCH 5.13 010/223] igb: Check if num of q_vectors is smaller than max before array access Greg Kroah-Hartman
2021-07-26 15:36 ` [PATCH 5.13 011/223] igb: Fix position of assignment to *ring Greg Kroah-Hartman
2021-07-26 15:36 ` [PATCH 5.13 012/223] net: stmmac: Terminate FPE workqueue in suspend Greg Kroah-Hartman
2021-07-26 15:36 ` [PATCH 5.13 013/223] gve: Fix an error handling path in gve_probe() Greg Kroah-Hartman
2021-07-26 15:36 ` [PATCH 5.13 014/223] bpf, samples: Fix xdpsock with -M parameter missing unload process Greg Kroah-Hartman
2021-07-26 15:36 ` [PATCH 5.13 015/223] bonding: fix suspicious RCU usage in bond_ipsec_add_sa() Greg Kroah-Hartman
2021-07-26 15:36 ` [PATCH 5.13 016/223] bonding: fix null dereference " Greg Kroah-Hartman
2021-07-26 15:36 ` [PATCH 5.13 017/223] ixgbevf: use xso.real_dev instead of xso.dev in callback functions of struct xfrmdev_ops Greg Kroah-Hartman
2021-07-26 15:36 ` [PATCH 5.13 018/223] bonding: fix suspicious RCU usage in bond_ipsec_del_sa() Greg Kroah-Hartman
2021-07-26 15:36 ` [PATCH 5.13 019/223] bonding: disallow setting nested bonding + ipsec offload Greg Kroah-Hartman
2021-07-26 15:36 ` [PATCH 5.13 020/223] bonding: Add struct bond_ipesc to manage SA Greg Kroah-Hartman
2021-07-26 15:36 ` [PATCH 5.13 021/223] bonding: fix suspicious RCU usage in bond_ipsec_offload_ok() Greg Kroah-Hartman
2021-07-26 15:36 ` [PATCH 5.13 022/223] bonding: fix incorrect return value of bond_ipsec_offload_ok() Greg Kroah-Hartman
2021-07-26 15:36 ` [PATCH 5.13 023/223] ipv6: fix disable_policy for fwd packets Greg Kroah-Hartman
2021-07-26 15:36 ` [PATCH 5.13 024/223] stmmac: platform: Fix signedness bug in stmmac_probe_config_dt() Greg Kroah-Hartman
2021-07-26 15:36 ` [PATCH 5.13 025/223] selftests: icmp_redirect: remove from checking for IPv6 route get Greg Kroah-Hartman
2021-07-26 15:36 ` [PATCH 5.13 026/223] selftests: icmp_redirect: IPv6 PMTU info should be cleared after redirect Greg Kroah-Hartman
2021-07-26 15:36 ` [PATCH 5.13 027/223] pwm: sprd: Ensure configuring period and duty_cycle isnt wrongly skipped Greg Kroah-Hartman
2021-07-26 15:37 ` [PATCH 5.13 028/223] cxgb4: fix IRQ free race during driver unload Greg Kroah-Hartman
2021-07-26 15:37 ` [PATCH 5.13 029/223] drm/vmwgfx: Fix a bad merge in otable batch takedown Greg Kroah-Hartman
2021-07-26 15:37 ` [PATCH 5.13 030/223] mptcp: fix warning in __skb_flow_dissect() when do syn cookie for subflow join Greg Kroah-Hartman
2021-07-26 15:37 ` [PATCH 5.13 031/223] mptcp: remove redundant req destruct in subflow_check_req() Greg Kroah-Hartman
2021-07-26 15:37 ` [PATCH 5.13 032/223] mptcp: fix syncookie process if mptcp can not_accept new subflow Greg Kroah-Hartman
2021-07-26 15:37 ` [PATCH 5.13 033/223] mptcp: add sk parameter for mptcp_get_options Greg Kroah-Hartman
2021-07-26 15:37 ` [PATCH 5.13 034/223] mptcp: avoid processing packet if a subflow reset Greg Kroah-Hartman
2021-07-26 15:37 ` [PATCH 5.13 035/223] selftests: mptcp: fix case multiple subflows limited by server Greg Kroah-Hartman
2021-07-26 15:37 ` [PATCH 5.13 036/223] mptcp: use fast lock for subflows when possible Greg Kroah-Hartman
2021-07-26 15:37 ` [PATCH 5.13 037/223] mptcp: refine mptcp_cleanup_rbuf Greg Kroah-Hartman
2021-07-26 15:37 ` Greg Kroah-Hartman [this message]
2021-07-26 15:37 ` [PATCH 5.13 039/223] net: phy: marvell10g: fix differentiation of 88X3310 from 88X3340 Greg Kroah-Hartman
2021-07-26 15:37 ` [PATCH 5.13 040/223] nvme-pci: do not call nvme_dev_remove_admin from nvme_remove Greg Kroah-Hartman
2021-07-26 15:37 ` [PATCH 5.13 041/223] net: ocelot: fix switchdev objects synced for wrong netdev with LAG offload Greg Kroah-Hartman
2021-07-26 15:37 ` [PATCH 5.13 042/223] sfc: fix lack of XDP TX queues - error XDP TX failed (-22) Greg Kroah-Hartman
2021-07-26 15:37 ` [PATCH 5.13 043/223] KVM: x86/pmu: Clear anythread deprecated bit when 0xa leaf is unsupported on the SVM Greg Kroah-Hartman
2021-07-26 15:37 ` [PATCH 5.13 044/223] KVM: SVM: Return -EFAULT if copy_to_user() for SEV mig packet header fails Greg Kroah-Hartman
2021-07-26 15:37 ` [PATCH 5.13 045/223] KVM: SVM: Fix sev_pin_memory() error checks in SEV migration utilities Greg Kroah-Hartman
2021-07-26 15:37 ` [PATCH 5.13 046/223] arm64: mte: fix restoration of GCR_EL1 from suspend Greg Kroah-Hartman
2021-07-26 15:37 ` [PATCH 5.13 047/223] ARM: dts: aspeed: Update e3c246d4i vuart properties Greg Kroah-Hartman
2021-07-26 15:37 ` [PATCH 5.13 048/223] firmware: arm_scmi: Ensure drivers provide a probe function Greg Kroah-Hartman
2021-07-26 15:37 ` [PATCH 5.13 049/223] perf inject: Fix dso->nsinfo refcounting Greg Kroah-Hartman
2021-07-26 15:37 ` [PATCH 5.13 050/223] perf map: " Greg Kroah-Hartman
2021-07-26 15:37 ` [PATCH 5.13 051/223] perf probe: " Greg Kroah-Hartman
2021-07-26 15:37 ` [PATCH 5.13 052/223] perf env: Fix sibling_dies memory leak Greg Kroah-Hartman
2021-07-26 15:37 ` [PATCH 5.13 053/223] perf test session_topology: Delete session->evlist Greg Kroah-Hartman
2021-07-26 15:37 ` [PATCH 5.13 054/223] perf test event_update: Fix memory leak of evlist Greg Kroah-Hartman
2021-07-26 15:37 ` [PATCH 5.13 055/223] perf test event_update: Fix memory leak of unit Greg Kroah-Hartman
2021-07-26 15:37 ` [PATCH 5.13 056/223] perf dso: Fix memory leak in dso__new_map() Greg Kroah-Hartman
2021-07-26 15:37 ` [PATCH 5.13 057/223] perf test maps__merge_in: Fix memory leak of maps Greg Kroah-Hartman
2021-07-26 15:37 ` [PATCH 5.13 058/223] perf env: Fix memory leak of cpu_pmu_caps Greg Kroah-Hartman
2021-07-26 15:37 ` [PATCH 5.13 059/223] perf report: Free generated help strings for sort option Greg Kroah-Hartman
2021-07-26 15:37 ` [PATCH 5.13 060/223] perf script: Release zstd data Greg Kroah-Hartman
2021-07-26 15:37 ` [PATCH 5.13 061/223] perf script: Fix memory threads and cpus leaks on exit Greg Kroah-Hartman
2021-07-26 15:37 ` [PATCH 5.13 062/223] perf lzma: Close lzma stream " Greg Kroah-Hartman
2021-07-26 15:37 ` [PATCH 5.13 063/223] perf probe-file: Delete namelist in del_events() on the error path Greg Kroah-Hartman
2021-07-26 15:37 ` [PATCH 5.13 064/223] perf data: Close all files in close_dir() Greg Kroah-Hartman
2021-07-26 15:37 ` [PATCH 5.13 065/223] perf sched: Fix record failure when CONFIG_SCHEDSTATS is not set Greg Kroah-Hartman
2021-07-26 15:37 ` [PATCH 5.13 066/223] Kbuild: lto: fix module versionings mismatch in GNU make 3.X Greg Kroah-Hartman
2021-07-26 15:37 ` [PATCH 5.13 067/223] ASoC: wm_adsp: Correct wm_coeff_tlv_get handling Greg Kroah-Hartman
2021-07-26 15:37 ` [PATCH 5.13 068/223] spi: stm32: fixes pm_runtime calls in probe/remove Greg Kroah-Hartman
2021-07-26 15:37 ` [PATCH 5.13 069/223] regulator: hi6421: Use correct variable type for regmap api val argument Greg Kroah-Hartman
2021-07-26 15:37 ` [PATCH 5.13 070/223] regulator: hi6421: Fix getting wrong drvdata Greg Kroah-Hartman
2021-07-26 15:37 ` [PATCH 5.13 071/223] spi: mediatek: fix fifo rx mode Greg Kroah-Hartman
2021-07-26 15:37 ` [PATCH 5.13 072/223] ASoC: rt5631: Fix regcache sync errors on resume Greg Kroah-Hartman
2021-07-26 15:37 ` [PATCH 5.13 073/223] bpf, test: fix NULL pointer dereference on invalid expected_attach_type Greg Kroah-Hartman
2021-07-26 15:37 ` [PATCH 5.13 074/223] bpf: Fix tail_call_reachable rejection for interpreter when jit failed Greg Kroah-Hartman
2021-07-26 15:37 ` [PATCH 5.13 075/223] xdp, net: Fix use-after-free in bpf_xdp_link_release Greg Kroah-Hartman
2021-07-26 15:37 ` [PATCH 5.13 076/223] ASoC: SOF: Intel: Update ADL descriptor to use ACPI power states Greg Kroah-Hartman
2021-07-26 15:37 ` [PATCH 5.13 077/223] timers: Fix get_next_timer_interrupt() with no timers pending Greg Kroah-Hartman
2021-07-26 15:37 ` [PATCH 5.13 078/223] drm/vc4: hdmi: Drop devm interrupt handler for CEC interrupts Greg Kroah-Hartman
2021-07-26 15:37 ` [PATCH 5.13 079/223] net: dsa: mv88e6xxx: NET_DSA_MV88E6XXX_PTP should depend on NET_DSA_MV88E6XXX Greg Kroah-Hartman
2021-07-26 15:37 ` [PATCH 5.13 080/223] liquidio: Fix unintentional sign extension issue on left shift of u16 Greg Kroah-Hartman
2021-07-26 15:37 ` [PATCH 5.13 081/223] s390/bpf: Perform r1 range checking before accessing jit->seen_reg[r1] Greg Kroah-Hartman
2021-07-26 15:37 ` [PATCH 5.13 082/223] bpf, sockmap: Fix potential memory leak on unlikely error case Greg Kroah-Hartman
2021-07-26 15:37 ` [PATCH 5.13 083/223] bpf, sockmap, tcp: sk_prot needs inuse_idx set for proc stats Greg Kroah-Hartman
2021-07-26 15:37 ` [PATCH 5.13 084/223] bpf, sockmap, udp: " Greg Kroah-Hartman
2021-07-26 15:37 ` [PATCH 5.13 085/223] bpftool: Check malloc return value in mount_bpffs_for_pin Greg Kroah-Hartman
2021-07-26 15:37 ` [PATCH 5.13 086/223] net: fix uninit-value in caif_seqpkt_sendmsg Greg Kroah-Hartman
2021-07-26 15:37 ` [PATCH 5.13 087/223] spi: spi-cadence-quadspi: Fix division by zero warning Greg Kroah-Hartman
2021-07-26 15:38 ` [PATCH 5.13 088/223] usb: hso: fix error handling code of hso_create_net_device Greg Kroah-Hartman
2021-07-26 15:38 ` [PATCH 5.13 089/223] dma-mapping: handle vmalloc addresses in dma_common_{mmap,get_sgtable} Greg Kroah-Hartman
2021-07-26 15:38 ` [PATCH 5.13 090/223] ASoC: soc-pcm: add a flag to reverse the stop sequence Greg Kroah-Hartman
2021-07-26 15:38 ` [PATCH 5.13 091/223] efi/tpm: Differentiate missing and invalid final event log table Greg Kroah-Hartman
2021-07-26 15:38 ` [PATCH 5.13 092/223] net: decnet: Fix sleeping inside in af_decnet Greg Kroah-Hartman
2021-07-26 15:38 ` [PATCH 5.13 093/223] KVM: PPC: Book3S: Fix CONFIG_TRANSACTIONAL_MEM=n crash Greg Kroah-Hartman
2021-07-26 15:38 ` [PATCH 5.13 094/223] KVM: PPC: Fix kvm_arch_vcpu_ioctl vcpu_load leak Greg Kroah-Hartman
2021-07-26 15:38 ` [PATCH 5.13 095/223] net: sched: fix memory leak in tcindex_partial_destroy_work Greg Kroah-Hartman
2021-07-26 15:38 ` [PATCH 5.13 096/223] sctp: trim optlen when its a huge value in sctp_setsockopt Greg Kroah-Hartman
2021-07-26 15:38 ` [PATCH 5.13 097/223] netrom: Decrease sock refcount when sock timers expire Greg Kroah-Hartman
2021-07-26 15:38 ` [PATCH 5.13 098/223] scsi: iscsi: Fix iface sysfs attr detection Greg Kroah-Hartman
2021-07-26 15:38 ` [PATCH 5.13 099/223] scsi: target: Fix protect handling in WRITE SAME(32) Greg Kroah-Hartman
2021-07-26 15:38 ` [PATCH 5.13 100/223] spi: cadence: Correct initialisation of runtime PM again Greg Kroah-Hartman
2021-07-26 15:38 ` [PATCH 5.13 101/223] ACPI: Kconfig: Fix table override from built-in initrd Greg Kroah-Hartman
2021-07-26 15:38 ` [PATCH 5.13 102/223] efi/dev-path-parser: Switch to use for_each_acpi_dev_match() Greg Kroah-Hartman
2021-07-26 15:38 ` [PATCH 5.13 103/223] ACPI: utils: Fix reference counting in for_each_acpi_dev_match() Greg Kroah-Hartman
2021-07-26 15:38 ` [PATCH 5.13 104/223] bnxt_en: dont disable an already disabled PCI device Greg Kroah-Hartman
2021-07-26 15:38 ` [PATCH 5.13 105/223] bnxt_en: Refresh RoCE capabilities in bnxt_ulp_probe() Greg Kroah-Hartman
2021-07-26 15:38 ` [PATCH 5.13 106/223] bnxt_en: Add missing check for BNXT_STATE_ABORT_ERR in bnxt_fw_rset_task() Greg Kroah-Hartman
2021-07-26 15:38 ` [PATCH 5.13 107/223] bnxt_en: fix error path of FW reset Greg Kroah-Hartman
2021-07-26 15:38 ` [PATCH 5.13 108/223] bnxt_en: Validate vlan protocol ID on RX packets Greg Kroah-Hartman
2021-07-26 15:38 ` [PATCH 5.13 109/223] bnxt_en: Check abort error state in bnxt_half_open_nic() Greg Kroah-Hartman
2021-07-26 15:38 ` [PATCH 5.13 110/223] net: hisilicon: rename CACHE_LINE_MASK to avoid redefinition Greg Kroah-Hartman
2021-07-26 15:38 ` [PATCH 5.13 111/223] net/tcp_fastopen: fix data races around tfo_active_disable_stamp Greg Kroah-Hartman
2021-07-26 15:38 ` [PATCH 5.13 112/223] ALSA: hda: intel-dsp-cfg: add missing ElkhartLake PCI ID Greg Kroah-Hartman
2021-07-26 15:38 ` [PATCH 5.13 113/223] net: hns3: fix possible mismatches resp of mailbox Greg Kroah-Hartman
2021-07-26 15:38 ` [PATCH 5.13 114/223] net: hns3: fix rx VLAN offload state inconsistent issue Greg Kroah-Hartman
2021-07-26 15:38 ` [PATCH 5.13 115/223] spi: spi-bcm2835: Fix deadlock Greg Kroah-Hartman
2021-07-26 15:38 ` [PATCH 5.13 116/223] io_uring: fix memleak in io_init_wq_offload() Greg Kroah-Hartman
2021-07-26 15:38 ` [PATCH 5.13 117/223] net/sched: act_skbmod: Skip non-Ethernet packets Greg Kroah-Hartman
2021-07-26 15:38 ` [PATCH 5.13 118/223] ipv6: fix another slab-out-of-bounds in fib6_nh_flush_exceptions Greg Kroah-Hartman
2021-07-26 15:38 ` [PATCH 5.13 119/223] ceph: dont WARN if were still opening a session to an MDS Greg Kroah-Hartman
2021-07-26 15:38 ` [PATCH 5.13 120/223] i2c: mpc: Poll for MCF Greg Kroah-Hartman
2021-07-26 15:38 ` [PATCH 5.13 121/223] scsi: target: Fix NULL dereference on XCOPY completion Greg Kroah-Hartman
2021-07-26 15:38 ` [PATCH 5.13 122/223] drm/ttm: Force re-init if ttm_global_init() fails Greg Kroah-Hartman
2021-07-26 15:38 ` [PATCH 5.13 123/223] nvme-pci: dont WARN_ON in nvme_reset_work if ctrl.state is not RESETTING Greg Kroah-Hartman
2021-07-26 15:38 ` [PATCH 5.13 124/223] Revert "USB: quirks: ignore remote wake-up on Fibocom L850-GL LTE modem" Greg Kroah-Hartman
2021-07-26 15:38 ` [PATCH 5.13 125/223] afs: Fix tracepoint string placement with built-in AFS Greg Kroah-Hartman
2021-07-26 15:38 ` [PATCH 5.13 126/223] afs: check function return Greg Kroah-Hartman
2021-07-26 15:38 ` [PATCH 5.13 127/223] afs: Fix setting of writeback_index Greg Kroah-Hartman
2021-07-26 15:38 ` [PATCH 5.13 128/223] r8169: Avoid duplicate sysfs entry creation error Greg Kroah-Hartman
2021-07-26 15:38 ` [PATCH 5.13 129/223] nvme: set the PRACT bit when using Write Zeroes with T10 PI Greg Kroah-Hartman
2021-07-26 15:38 ` [PATCH 5.13 130/223] sctp: update active_key for asoc when old key is being replaced Greg Kroah-Hartman
2021-07-26 15:38 ` [PATCH 5.13 131/223] udp: check encap socket in __udp_lib_err Greg Kroah-Hartman
2021-07-26 15:38 ` [PATCH 5.13 132/223] ibmvnic: Remove the proper scrq flush Greg Kroah-Hartman
2021-07-26 15:38 ` [PATCH 5.13 133/223] riscv: Fix 32-bit RISC-V boot failure Greg Kroah-Hartman
2021-07-26 15:38 ` [PATCH 5.13 134/223] tcp: disable TFO blackhole logic by default Greg Kroah-Hartman
2021-07-26 15:38 ` [PATCH 5.13 135/223] net: dsa: sja1105: make VID 4095 a bridge VLAN too Greg Kroah-Hartman
2021-07-26 15:38 ` [PATCH 5.13 136/223] RISC-V: load initrd wherever it fits into memory Greg Kroah-Hartman
2021-07-26 15:38 ` [PATCH 5.13 137/223] net: sched: cls_api: Fix the the wrong parameter Greg Kroah-Hartman
2021-07-26 15:38 ` [PATCH 5.13 138/223] drm/panel: raspberrypi-touchscreen: Prevent double-free Greg Kroah-Hartman
2021-07-26 15:38 ` [PATCH 5.13 139/223] dpaa2-switch: seed the buffer pool after allocating the swp Greg Kroah-Hartman
2021-07-26 15:38 ` [PATCH 5.13 140/223] cifs: only write 64kb at a time when fallocating a small region of a file Greg Kroah-Hartman
2021-07-26 15:38 ` [PATCH 5.13 141/223] cifs: fix fallocate when trying to allocate a hole Greg Kroah-Hartman
2021-07-26 15:38 ` [PATCH 5.13 142/223] proc: Avoid mixing integer types in mem_rw() Greg Kroah-Hartman
2021-07-26 15:38 ` [PATCH 5.13 143/223] ACPI: fix NULL pointer dereference Greg Kroah-Hartman
2021-07-26 15:38 ` [PATCH 5.13 144/223] io_uring: Fix race condition when sqp thread goes to sleep Greg Kroah-Hartman
2021-07-26 15:38 ` [PATCH 5.13 145/223] mmc: core: Dont allocate IDA for OF aliases Greg Kroah-Hartman
2021-07-26 15:38 ` [PATCH 5.13 146/223] s390/ftrace: fix ftrace_update_ftrace_func implementation Greg Kroah-Hartman
2021-07-26 15:38 ` [PATCH 5.13 147/223] s390/boot: fix use of expolines in the DMA code Greg Kroah-Hartman
2021-07-26 15:39 ` [PATCH 5.13 148/223] ALSA: usb-audio: Add missing proc text entry for BESPOKEN type Greg Kroah-Hartman
2021-07-26 15:39 ` [PATCH 5.13 149/223] ALSA: usb-audio: Add registration quirk for JBL Quantum headsets Greg Kroah-Hartman
2021-07-26 15:39 ` [PATCH 5.13 150/223] ALSA: sb: Fix potential ABBA deadlock in CSP driver Greg Kroah-Hartman
2021-07-26 15:39 ` [PATCH 5.13 151/223] ALSA: hda/realtek: Fix pop noise and 2 Front Mic issues on a machine Greg Kroah-Hartman
2021-07-26 15:39 ` [PATCH 5.13 152/223] ALSA: hdmi: Expose all pins on MSI MS-7C94 board Greg Kroah-Hartman
2021-07-26 15:39 ` [PATCH 5.13 153/223] ALSA: pcm: Call substream ack() method upon compat mmap commit Greg Kroah-Hartman
2021-07-26 15:39 ` [PATCH 5.13 154/223] ALSA: pcm: Fix mmap capability check Greg Kroah-Hartman
2021-07-26 15:39 ` [PATCH 5.13 155/223] Revert "usb: renesas-xhci: Fix handling of unknown ROM state" Greg Kroah-Hartman
2021-07-26 15:39 ` [PATCH 5.13 156/223] usb: xhci: avoid renesas_usb_fw.mem when its unusable Greg Kroah-Hartman
2021-07-26 15:39 ` [PATCH 5.13 157/223] xhci: Fix lost USB 2 remote wake Greg Kroah-Hartman
2021-07-26 15:39 ` [PATCH 5.13 158/223] usb: ehci: Prevent missed ehci interrupts with edge-triggered MSI Greg Kroah-Hartman
2021-07-26 15:39 ` [PATCH 5.13 159/223] KVM: PPC: Book3S: Fix H_RTAS rets buffer overflow Greg Kroah-Hartman
2021-07-26 15:39 ` [PATCH 5.13 160/223] KVM: PPC: Book3S HV Nested: Sanitise H_ENTER_NESTED TM state Greg Kroah-Hartman
2021-07-26 15:39 ` [PATCH 5.13 161/223] usb: hub: Disable USB 3 device initiated lpm if exit latency is too high Greg Kroah-Hartman
2021-07-26 15:39 ` [PATCH 5.13 162/223] usb: hub: Fix link power management max exit latency (MEL) calculations Greg Kroah-Hartman
2021-07-26 15:39 ` [PATCH 5.13 163/223] USB: usb-storage: Add LaCie Rugged USB3-FW to IGNORE_UAS Greg Kroah-Hartman
2021-07-26 15:39 ` [PATCH 5.13 164/223] usb: max-3421: Prevent corruption of freed memory Greg Kroah-Hartman
2021-07-26 15:39 ` [PATCH 5.13 165/223] usb: renesas_usbhs: Fix superfluous irqs happen after usb_pkt_pop() Greg Kroah-Hartman
2021-07-26 15:39 ` [PATCH 5.13 166/223] USB: serial: option: add support for u-blox LARA-R6 family Greg Kroah-Hartman
2021-07-26 15:39 ` [PATCH 5.13 167/223] USB: serial: cp210x: fix comments for GE CS1000 Greg Kroah-Hartman
2021-07-26 15:39 ` [PATCH 5.13 168/223] USB: serial: cp210x: add ID for CEL EM3588 USB ZigBee stick Greg Kroah-Hartman
2021-07-26 15:39 ` [PATCH 5.13 169/223] usb: gadget: Fix Unbalanced pm_runtime_enable in tegra_xudc_probe Greg Kroah-Hartman
2021-07-26 15:39 ` [PATCH 5.13 170/223] usb: dwc2: Skip clock gating on Samsung SoCs Greg Kroah-Hartman
2021-07-26 15:39 ` [PATCH 5.13 171/223] usb: dwc2: gadget: Fix GOUTNAK flow for Slave mode Greg Kroah-Hartman
2021-07-26 15:39 ` [PATCH 5.13 172/223] usb: dwc2: gadget: Fix sending zero length packet in DDMA mode Greg Kroah-Hartman
2021-07-26 15:39 ` [PATCH 5.13 173/223] usb: typec: tipd: Dont block probing of consumer of "connector" nodes Greg Kroah-Hartman
2021-07-26 15:39 ` [PATCH 5.13 174/223] usb: typec: stusb160x: register role switch before interrupt registration Greg Kroah-Hartman
2021-07-26 15:39 ` [PATCH 5.13 175/223] usb: typec: stusb160x: Dont block probing of consumer of "connector" nodes Greg Kroah-Hartman
2021-07-26 15:39 ` [PATCH 5.13 176/223] firmware/efi: Tell memblock about EFI iomem reservations Greg Kroah-Hartman
2021-07-26 15:39 ` [PATCH 5.13 177/223] tracepoints: Update static_call before tp_funcs when adding a tracepoint Greg Kroah-Hartman
2021-07-26 15:39 ` [PATCH 5.13 178/223] tracing/histogram: Rename "cpu" to "common_cpu" Greg Kroah-Hartman
2021-07-26 15:39 ` [PATCH 5.13 179/223] tracing: Fix bug in rb_per_cpu_empty() that might cause deadloop Greg Kroah-Hartman
2021-07-26 15:39 ` [PATCH 5.13 180/223] tracing: Synthetic event field_pos is an index not a boolean Greg Kroah-Hartman
2021-07-26 15:39 ` [PATCH 5.13 181/223] btrfs: check for missing device in btrfs_trim_fs Greg Kroah-Hartman
2021-07-26 15:39 ` [PATCH 5.13 182/223] btrfs: fix unpersisted i_size on fsync after expanding truncate Greg Kroah-Hartman
2021-07-26 15:39 ` [PATCH 5.13 183/223] btrfs: fix lock inversion problem when doing qgroup extent tracing Greg Kroah-Hartman
2021-07-26 15:39 ` [PATCH 5.13 184/223] media: ngene: Fix out-of-bounds bug in ngene_command_config_free_buf() Greg Kroah-Hartman
2021-07-26 15:39 ` [PATCH 5.13 185/223] ixgbe: Fix packet corruption due to missing DMA sync Greg Kroah-Hartman
2021-07-26 15:39 ` [PATCH 5.13 186/223] driver core: auxiliary bus: Fix memory leak when driver_register() fail Greg Kroah-Hartman
2021-07-26 15:39 ` [PATCH 5.13 187/223] bus: mhi: pci_generic: Apply no-op for wake using sideband wake boolean Greg Kroah-Hartman
2021-07-26 15:39 ` [PATCH 5.13 188/223] bus: mhi: core: Validate channel ID when processing command completions Greg Kroah-Hartman
2021-07-26 15:39 ` [PATCH 5.13 189/223] bus: mhi: pci_generic: Fix inbound IPCR channel Greg Kroah-Hartman
2021-07-26 15:39 ` [PATCH 5.13 190/223] posix-cpu-timers: Fix rearm racing against process tick Greg Kroah-Hartman
2021-07-26 15:39 ` [PATCH 5.13 191/223] selftest: use mmap instead of posix_memalign to allocate memory Greg Kroah-Hartman
2021-07-29 17:58   ` Peter Collingbourne
2021-07-30  4:38     ` Greg Kroah-Hartman
2021-08-02 20:10       ` Peter Collingbourne
2021-08-04 10:04         ` Greg Kroah-Hartman
2021-07-26 15:39 ` [PATCH 5.13 192/223] io_uring: explicitly count entries for poll reqs Greg Kroah-Hartman
2021-07-26 15:39 ` [PATCH 5.13 193/223] io_uring: remove double poll entry on arm failure Greg Kroah-Hartman
2021-07-26 15:39 ` [PATCH 5.13 194/223] io_uring: fix early fdput() of file Greg Kroah-Hartman
2021-07-26 15:39 ` [PATCH 5.13 195/223] userfaultfd: do not untag user pointers Greg Kroah-Hartman
2021-07-26 15:39 ` [PATCH 5.13 196/223] kfence: move the size check to the beginning of __kfence_alloc() Greg Kroah-Hartman
2021-07-26 15:39 ` [PATCH 5.13 197/223] kfence: skip all GFP_ZONEMASK allocations Greg Kroah-Hartman
2021-07-26 15:39 ` [PATCH 5.13 198/223] mm: call flush_dcache_page() in memcpy_to_page() and memzero_page() Greg Kroah-Hartman
2021-07-26 15:39 ` [PATCH 5.13 199/223] mm: page_alloc: fix page_poison=1 / INIT_ON_ALLOC_DEFAULT_ON interaction Greg Kroah-Hartman
2021-07-26 15:39 ` [PATCH 5.13 200/223] memblock: make for_each_mem_range() traverse MEMBLOCK_HOTPLUG regions Greg Kroah-Hartman
2021-07-26 15:39 ` [PATCH 5.13 201/223] mm: fix the deadlock in finish_fault() Greg Kroah-Hartman
2021-07-26 15:39 ` [PATCH 5.13 202/223] hugetlbfs: fix mount mode command line processing Greg Kroah-Hartman
2021-07-26 15:39 ` [PATCH 5.13 203/223] rbd: dont hold lock_rwsem while running_list is being drained Greg Kroah-Hartman
2021-07-26 15:39 ` [PATCH 5.13 204/223] rbd: always kick acquire on "acquired" and "released" notifications Greg Kroah-Hartman
2021-07-26 15:39 ` [PATCH 5.13 205/223] misc: eeprom: at24: Always append device id even if label property is set Greg Kroah-Hartman
2021-07-26 15:39 ` [PATCH 5.13 206/223] nds32: fix up stack guard gap Greg Kroah-Hartman
2021-07-26 15:39 ` [PATCH 5.13 207/223] driver core: Prevent warning when removing a device link from unregistered consumer Greg Kroah-Hartman
2021-07-26 15:40 ` [PATCH 5.13 208/223] Revert "drm/i915: Propagate errors on awaiting already signaled fences" Greg Kroah-Hartman
2021-07-26 15:40 ` [PATCH 5.13 209/223] drm: Return -ENOTTY for non-drm ioctls Greg Kroah-Hartman
2021-07-26 15:40 ` [PATCH 5.13 210/223] drm/amdgpu: update gc golden setting for dimgrey_cavefish Greg Kroah-Hartman
2021-07-26 15:40 ` [PATCH 5.13 211/223] drm/amdgpu: update the golden setting for vangogh Greg Kroah-Hartman
2021-07-26 15:40 ` [PATCH 5.13 212/223] drm/amdgpu: update golden setting for sienna_cichlid Greg Kroah-Hartman
2021-07-26 15:40 ` [PATCH 5.13 213/223] spi: spi-cadence-quadspi: Revert "Fix division by zero warning" Greg Kroah-Hartman
2021-07-26 15:40 ` [PATCH 5.13 214/223] bonding: fix build issue Greg Kroah-Hartman
2021-07-26 15:40 ` [PATCH 5.13 215/223] mptcp: fix masking a bool warning Greg Kroah-Hartman
2021-07-26 15:40 ` [PATCH 5.13 216/223] skbuff: Release nfct refcount on napi stolen or re-used skbs Greg Kroah-Hartman
2021-07-26 15:40 ` [PATCH 5.13 217/223] ARM: multi_v7_defconfig: Make NOP_USB_XCEIV driver built-in Greg Kroah-Hartman
2021-07-26 15:40 ` [PATCH 5.13 218/223] Documentation: Fix intiramfs script name Greg Kroah-Hartman
2021-07-26 15:40 ` [PATCH 5.13 219/223] arm64: entry: fix KCOV suppression Greg Kroah-Hartman
2021-07-26 15:40 ` [PATCH 5.13 220/223] perf inject: Close inject.output on exit Greg Kroah-Hartman
2021-07-26 15:40 ` [PATCH 5.13 221/223] drm/i915/gvt: Clear d3_entered on elsp cmd submission Greg Kroah-Hartman
2021-07-26 15:40 ` [PATCH 5.13 222/223] spi: spi-cadence-quadspi: Fix division by zero warning - try2 Greg Kroah-Hartman
2021-07-26 15:40 ` [PATCH 5.13 223/223] sfc: ensure correct number of XDP queues Greg Kroah-Hartman
2021-07-26 16:43 ` [PATCH 5.13 000/223] 5.13.6-rc1 review Daniel Díaz
2021-07-26 16:51   ` Greg Kroah-Hartman
2021-07-26 17:05   ` Sudip Mukherjee
2021-07-27  5:13     ` Greg Kroah-Hartman
2021-07-26 21:09 ` Justin Forbes
2021-07-26 22:11 ` Florian Fainelli
2021-07-27  0:34 ` Shuah Khan

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=20210726153847.495428484@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=davem@davemloft.net \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mathew.j.martineau@linux.intel.com \
    --cc=pabeni@redhat.com \
    --cc=sashal@kernel.org \
    --cc=stable@vger.kernel.org \
    /path/to/YOUR_REPLY

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

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