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, Xuan Zhuo <xuanzhuo@linux.alibaba.com>,
	Eric Dumazet <edumazet@google.com>,
	"Michael S. Tsirkin" <mst@redhat.com>,
	Jason Wang <jasowang@redhat.com>,
	virtualization@lists.linux-foundation.org,
	"David S. Miller" <davem@davemloft.net>
Subject: [PATCH 5.11 062/210] virtio_net: Do not pull payload in skb->head
Date: Mon, 12 Apr 2021 10:39:27 +0200	[thread overview]
Message-ID: <20210412084018.062277755@linuxfoundation.org> (raw)
In-Reply-To: <20210412084016.009884719@linuxfoundation.org>

From: Eric Dumazet <edumazet@google.com>

commit 0f6925b3e8da0dbbb52447ca8a8b42b371aac7db upstream.

Xuan Zhuo reported that commit 3226b158e67c ("net: avoid 32 x truesize
under-estimation for tiny skbs") brought  a ~10% performance drop.

The reason for the performance drop was that GRO was forced
to chain sk_buff (using skb_shinfo(skb)->frag_list), which
uses more memory but also cause packet consumers to go over
a lot of overhead handling all the tiny skbs.

It turns out that virtio_net page_to_skb() has a wrong strategy :
It allocates skbs with GOOD_COPY_LEN (128) bytes in skb->head, then
copies 128 bytes from the page, before feeding the packet to GRO stack.

This was suboptimal before commit 3226b158e67c ("net: avoid 32 x truesize
under-estimation for tiny skbs") because GRO was using 2 frags per MSS,
meaning we were not packing MSS with 100% efficiency.

Fix is to pull only the ethernet header in page_to_skb()

Then, we change virtio_net_hdr_to_skb() to pull the missing
headers, instead of assuming they were already pulled by callers.

This fixes the performance regression, but could also allow virtio_net
to accept packets with more than 128bytes of headers.

Many thanks to Xuan Zhuo for his report, and his tests/help.

Fixes: 3226b158e67c ("net: avoid 32 x truesize under-estimation for tiny skbs")
Reported-by: Xuan Zhuo <xuanzhuo@linux.alibaba.com>
Link: https://www.spinics.net/lists/netdev/msg731397.html
Co-Developed-by: Xuan Zhuo <xuanzhuo@linux.alibaba.com>
Signed-off-by: Xuan Zhuo <xuanzhuo@linux.alibaba.com>
Signed-off-by: Eric Dumazet <edumazet@google.com>
Cc: "Michael S. Tsirkin" <mst@redhat.com>
Cc: Jason Wang <jasowang@redhat.com>
Cc: virtualization@lists.linux-foundation.org
Acked-by: Jason Wang <jasowang@redhat.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
 drivers/net/virtio_net.c   |   10 +++++++---
 include/linux/virtio_net.h |   14 +++++++++-----
 2 files changed, 16 insertions(+), 8 deletions(-)

--- a/drivers/net/virtio_net.c
+++ b/drivers/net/virtio_net.c
@@ -406,9 +406,13 @@ static struct sk_buff *page_to_skb(struc
 	offset += hdr_padded_len;
 	p += hdr_padded_len;
 
-	copy = len;
-	if (copy > skb_tailroom(skb))
-		copy = skb_tailroom(skb);
+	/* Copy all frame if it fits skb->head, otherwise
+	 * we let virtio_net_hdr_to_skb() and GRO pull headers as needed.
+	 */
+	if (len <= skb_tailroom(skb))
+		copy = len;
+	else
+		copy = ETH_HLEN + metasize;
 	skb_put_data(skb, p, copy);
 
 	if (metasize) {
--- a/include/linux/virtio_net.h
+++ b/include/linux/virtio_net.h
@@ -65,14 +65,18 @@ static inline int virtio_net_hdr_to_skb(
 	skb_reset_mac_header(skb);
 
 	if (hdr->flags & VIRTIO_NET_HDR_F_NEEDS_CSUM) {
-		u16 start = __virtio16_to_cpu(little_endian, hdr->csum_start);
-		u16 off = __virtio16_to_cpu(little_endian, hdr->csum_offset);
+		u32 start = __virtio16_to_cpu(little_endian, hdr->csum_start);
+		u32 off = __virtio16_to_cpu(little_endian, hdr->csum_offset);
+		u32 needed = start + max_t(u32, thlen, off + sizeof(__sum16));
+
+		if (!pskb_may_pull(skb, needed))
+			return -EINVAL;
 
 		if (!skb_partial_csum_set(skb, start, off))
 			return -EINVAL;
 
 		p_off = skb_transport_offset(skb) + thlen;
-		if (p_off > skb_headlen(skb))
+		if (!pskb_may_pull(skb, p_off))
 			return -EINVAL;
 	} else {
 		/* gso packets without NEEDS_CSUM do not set transport_offset.
@@ -102,14 +106,14 @@ retry:
 			}
 
 			p_off = keys.control.thoff + thlen;
-			if (p_off > skb_headlen(skb) ||
+			if (!pskb_may_pull(skb, p_off) ||
 			    keys.basic.ip_proto != ip_proto)
 				return -EINVAL;
 
 			skb_set_transport_header(skb, keys.control.thoff);
 		} else if (gso_type) {
 			p_off = thlen;
-			if (p_off > skb_headlen(skb))
+			if (!pskb_may_pull(skb, p_off))
 				return -EINVAL;
 		}
 	}



  parent reply	other threads:[~2021-04-12  9:31 UTC|newest]

Thread overview: 214+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-04-12  8:38 [PATCH 5.11 000/210] 5.11.14-rc1 review Greg Kroah-Hartman
2021-04-12  8:38 ` [PATCH 5.11 001/210] xfrm/compat: Cleanup WARN()s that can be user-triggered Greg Kroah-Hartman
2021-04-12  8:38 ` [PATCH 5.11 002/210] ALSA: aloop: Fix initialization of controls Greg Kroah-Hartman
2021-04-12  8:38 ` [PATCH 5.11 003/210] ALSA: hda/realtek: Fix speaker amp setup on Acer Aspire E1 Greg Kroah-Hartman
2021-04-12  8:38 ` [PATCH 5.11 004/210] ALSA: hda/conexant: Apply quirk for another HP ZBook G5 model Greg Kroah-Hartman
2021-04-12  8:38 ` [PATCH 5.11 005/210] file: fix close_range() for unshare+cloexec Greg Kroah-Hartman
2021-04-12  8:38 ` [PATCH 5.11 006/210] ASoC: intel: atom: Stop advertising non working S24LE support Greg Kroah-Hartman
2021-04-12  8:38 ` [PATCH 5.11 007/210] nfc: fix refcount leak in llcp_sock_bind() Greg Kroah-Hartman
2021-04-12  8:38 ` [PATCH 5.11 008/210] nfc: fix refcount leak in llcp_sock_connect() Greg Kroah-Hartman
2021-04-12  8:38 ` [PATCH 5.11 009/210] nfc: fix memory " Greg Kroah-Hartman
2021-04-12  8:38 ` [PATCH 5.11 010/210] nfc: Avoid endless loops caused by repeated llcp_sock_connect() Greg Kroah-Hartman
2021-04-12  8:38 ` [PATCH 5.11 011/210] selinux: make nslot handling in avtab more robust Greg Kroah-Hartman
2021-04-12  8:38 ` [PATCH 5.11 012/210] selinux: fix cond_list corruption when changing booleans Greg Kroah-Hartman
2021-04-12  8:38 ` [PATCH 5.11 013/210] selinux: fix race between old and new sidtab Greg Kroah-Hartman
2021-04-12  8:38 ` [PATCH 5.11 014/210] xen/evtchn: Change irq_info lock to raw_spinlock_t Greg Kroah-Hartman
2021-04-12  8:38 ` [PATCH 5.11 015/210] net: ipv6: check for validity before dereferencing cfg->fc_nlinfo.nlh Greg Kroah-Hartman
2021-04-12  8:38 ` [PATCH 5.11 016/210] net: dsa: lantiq_gswip: Let GSWIP automatically set the xMII clock Greg Kroah-Hartman
2021-04-12  8:38 ` [PATCH 5.11 017/210] net: dsa: lantiq_gswip: Dont use PHY auto polling Greg Kroah-Hartman
2021-04-12  8:38 ` [PATCH 5.11 018/210] net: dsa: lantiq_gswip: Configure all remaining GSWIP_MII_CFG bits Greg Kroah-Hartman
2021-04-12  8:38 ` [PATCH 5.11 019/210] drm/i915: Fix invalid access to ACPI _DSM objects Greg Kroah-Hartman
2021-04-12  8:38 ` [PATCH 5.11 020/210] ACPI: processor: Fix build when CONFIG_ACPI_PROCESSOR=m Greg Kroah-Hartman
2021-04-12  8:38 ` [PATCH 5.11 021/210] drm/radeon: Fix size overflow Greg Kroah-Hartman
2021-04-12  8:38 ` [PATCH 5.11 022/210] drm/amdgpu: " Greg Kroah-Hartman
2021-04-12  8:38 ` [PATCH 5.11 023/210] drm/amdgpu/smu7: fix CAC setting on TOPAZ Greg Kroah-Hartman
2021-04-12  8:38 ` [PATCH 5.11 024/210] rfkill: revert back to old userspace API by default Greg Kroah-Hartman
2021-04-12  8:38 ` [PATCH 5.11 025/210] cifs: escape spaces in share names Greg Kroah-Hartman
2021-04-12  8:38 ` [PATCH 5.11 026/210] cifs: On cifs_reconnect, resolve the hostname again Greg Kroah-Hartman
2021-04-12  8:38 ` [PATCH 5.11 027/210] IB/hfi1: Fix probe time panic when AIP is enabled with a buggy BIOS Greg Kroah-Hartman
2021-04-12  8:38 ` [PATCH 5.11 028/210] LOOKUP_MOUNTPOINT: we are cleaning "jumped" flag too late Greg Kroah-Hartman
2021-04-12  8:38 ` [PATCH 5.11 029/210] gcov: re-fix clang-11+ support Greg Kroah-Hartman
2021-04-12  8:38 ` [PATCH 5.11 030/210] ia64: fix user_stack_pointer() for ptrace() Greg Kroah-Hartman
2021-04-12  8:38 ` [PATCH 5.11 031/210] nds32: flush_dcache_page: use page_mapping_file to avoid races with swapoff Greg Kroah-Hartman
2021-04-12  8:38 ` [PATCH 5.11 032/210] ocfs2: fix deadlock between setattr and dio_end_io_write Greg Kroah-Hartman
2021-04-12  8:38 ` [PATCH 5.11 033/210] fs: direct-io: fix missing sdio->boundary Greg Kroah-Hartman
2021-04-12  8:38 ` [PATCH 5.11 034/210] ethtool: fix incorrect datatype in set_eee ops Greg Kroah-Hartman
2021-04-12  8:39 ` [PATCH 5.11 035/210] of: property: fw_devlink: do not link ".*,nr-gpios" Greg Kroah-Hartman
2021-04-12  8:39 ` [PATCH 5.11 036/210] parisc: parisc-agp requires SBA IOMMU driver Greg Kroah-Hartman
2021-04-12  8:39 ` [PATCH 5.11 037/210] parisc: avoid a warning on u8 cast for cmpxchg on u8 pointers Greg Kroah-Hartman
2021-04-12  8:39 ` [PATCH 5.11 038/210] ARM: dts: turris-omnia: configure LED[2]/INTn pin as interrupt pin Greg Kroah-Hartman
2021-04-12  8:39 ` [PATCH 5.11 039/210] batman-adv: initialize "struct batadv_tvlv_tt_vlan_data"->reserved field Greg Kroah-Hartman
2021-04-12  8:39 ` [PATCH 5.11 040/210] ice: Continue probe on link/PHY errors Greg Kroah-Hartman
2021-04-12  8:39 ` [PATCH 5.11 041/210] ice: Increase control queue timeout Greg Kroah-Hartman
2021-04-12  8:39 ` [PATCH 5.11 042/210] ice: prevent ice_open and ice_stop during reset Greg Kroah-Hartman
2021-04-12  8:39 ` [PATCH 5.11 043/210] ice: fix memory allocation call Greg Kroah-Hartman
2021-04-12  8:39 ` [PATCH 5.11 044/210] ice: remove DCBNL_DEVRESET bit from PF state Greg Kroah-Hartman
2021-04-12  8:39 ` [PATCH 5.11 045/210] ice: Fix for dereference of NULL pointer Greg Kroah-Hartman
2021-04-12  8:39 ` [PATCH 5.11 046/210] ice: Use port number instead of PF ID for WoL Greg Kroah-Hartman
2021-04-12  8:39 ` [PATCH 5.11 047/210] ice: Cleanup fltr list in case of allocation issues Greg Kroah-Hartman
2021-04-12  8:39 ` [PATCH 5.11 048/210] iwlwifi: pcie: properly set LTR workarounds on 22000 devices Greg Kroah-Hartman
2021-04-12  8:39 ` [PATCH 5.11 049/210] ice: fix memory leak of aRFS after resuming from suspend Greg Kroah-Hartman
2021-04-12  8:39 ` [PATCH 5.11 050/210] net: hso: fix null-ptr-deref during tty device unregistration Greg Kroah-Hartman
2021-04-12  8:39 ` [PATCH 5.11 051/210] libbpf: Fix bail out from ringbuf_process_ring() on error Greg Kroah-Hartman
2021-04-12  8:39 ` [PATCH 5.11 052/210] bpf: Enforce that struct_ops programs be GPL-only Greg Kroah-Hartman
2021-04-12  8:39 ` [PATCH 5.11 053/210] bpf: link: Refuse non-O_RDWR flags in BPF_OBJ_GET Greg Kroah-Hartman
2021-04-12  8:39 ` [PATCH 5.11 054/210] ethernet/netronome/nfp: Fix a use after free in nfp_bpf_ctrl_msg_rx Greg Kroah-Hartman
2021-04-12  8:39 ` [PATCH 5.11 055/210] libbpf: Ensure umem pointer is non-NULL before dereferencing Greg Kroah-Hartman
2021-04-12  8:39 ` [PATCH 5.11 056/210] libbpf: Restore umem state after socket create failure Greg Kroah-Hartman
2021-04-12  8:39 ` [PATCH 5.11 057/210] libbpf: Only create rx and tx XDP rings when necessary Greg Kroah-Hartman
2021-04-12  8:39 ` [PATCH 5.11 058/210] bpf: Refcount task stack in bpf_get_task_stack Greg Kroah-Hartman
2021-04-12  8:39 ` [PATCH 5.11 059/210] bpf, sockmap: Fix sk->prot unhash op reset Greg Kroah-Hartman
2021-04-12  8:39 ` [PATCH 5.11 060/210] bpf, sockmap: Fix incorrect fwd_alloc accounting Greg Kroah-Hartman
2021-04-12  8:39 ` [PATCH 5.11 061/210] net: ensure mac header is set in virtio_net_hdr_to_skb() Greg Kroah-Hartman
2021-04-12  8:39 ` Greg Kroah-Hartman [this message]
2021-04-12  8:39 ` [PATCH 5.11 063/210] i40e: Fix sparse warning: missing error code err Greg Kroah-Hartman
2021-04-12  8:39 ` [PATCH 5.11 064/210] i40e: Fix sparse error: vsi->netdev could be null Greg Kroah-Hartman
2021-04-12  8:39 ` [PATCH 5.11 065/210] i40e: Fix sparse error: uninitialized symbol ring Greg Kroah-Hartman
2021-04-12  8:39 ` [PATCH 5.11 066/210] i40e: Fix sparse errors in i40e_txrx.c Greg Kroah-Hartman
2021-04-12  8:39 ` [PATCH 5.11 067/210] vdpa/mlx5: Fix suspend/resume index restoration Greg Kroah-Hartman
2021-04-12  8:39 ` [PATCH 5.11 068/210] net: sched: sch_teql: fix null-pointer dereference Greg Kroah-Hartman
2021-04-12  8:39 ` [PATCH 5.11 069/210] net: sched: fix action overwrite reference counting Greg Kroah-Hartman
2021-04-12  8:39 ` [PATCH 5.11 070/210] nl80211: fix beacon head validation Greg Kroah-Hartman
2021-04-12  8:39 ` [PATCH 5.11 071/210] nl80211: fix potential leak of ACL params Greg Kroah-Hartman
2021-04-12  8:39 ` [PATCH 5.11 072/210] cfg80211: check S1G beacon compat element length Greg Kroah-Hartman
2021-04-12  8:39 ` [PATCH 5.11 073/210] mac80211: fix time-is-after bug in mlme Greg Kroah-Hartman
2021-04-12  8:39 ` [PATCH 5.11 074/210] mac80211: fix TXQ AC confusion Greg Kroah-Hartman
2021-04-12  8:39 ` [PATCH 5.11 075/210] net: hsr: Reset MAC header for Tx path Greg Kroah-Hartman
2021-04-12  8:39 ` [PATCH 5.11 076/210] net-ipv6: bugfix - raw & sctp - switch to ipv6_can_nonlocal_bind() Greg Kroah-Hartman
2021-04-12  8:39 ` [PATCH 5.11 077/210] net: let skb_orphan_partial wake-up waiters Greg Kroah-Hartman
2021-04-12  8:39 ` [PATCH 5.11 078/210] thunderbolt: Fix a leak in tb_retimer_add() Greg Kroah-Hartman
2021-04-12  8:39 ` [PATCH 5.11 079/210] thunderbolt: Fix off by one in tb_port_find_retimer() Greg Kroah-Hartman
2021-04-12  8:39 ` [PATCH 5.11 080/210] usbip: add sysfs_lock to synchronize sysfs code paths Greg Kroah-Hartman
2021-04-12  8:39 ` [PATCH 5.11 081/210] usbip: stub-dev " Greg Kroah-Hartman
2021-04-12  8:39 ` [PATCH 5.11 082/210] usbip: vudc " Greg Kroah-Hartman
2021-04-12  8:39 ` [PATCH 5.11 083/210] usbip: synchronize event handler with " Greg Kroah-Hartman
2021-04-12  8:39 ` [PATCH 5.11 084/210] driver core: Fix locking bug in deferred_probe_timeout_work_func() Greg Kroah-Hartman
2021-04-12  8:39 ` [PATCH 5.11 085/210] scsi: pm80xx: Fix chip initialization failure Greg Kroah-Hartman
2021-04-12  8:39 ` [PATCH 5.11 086/210] scsi: target: iscsi: Fix zero tag inside a trace event Greg Kroah-Hartman
2021-04-12  8:39 ` [PATCH 5.11 087/210] percpu: make pcpu_nr_empty_pop_pages per chunk type Greg Kroah-Hartman
2021-04-12  8:39 ` [PATCH 5.11 088/210] i2c: turn recovery error on init to debug Greg Kroah-Hartman
2021-04-12  8:39 ` [PATCH 5.11 089/210] powerpc/vdso: Make sure vdso_wrapper.o is rebuilt everytime vdso.so is rebuilt Greg Kroah-Hartman
2021-04-12  8:39 ` [PATCH 5.11 090/210] powerpc/ptrace: Dont return error when getting/setting FP regs without CONFIG_PPC_FPU_REGS Greg Kroah-Hartman
2021-04-12  8:39 ` [PATCH 5.11 091/210] KVM: x86/mmu: change TDP MMU yield function returns to match cond_resched Greg Kroah-Hartman
2021-04-12  8:39 ` [PATCH 5.11 092/210] KVM: x86/mmu: Merge flush and non-flush tdp_mmu_iter_cond_resched Greg Kroah-Hartman
2021-04-12  8:39 ` [PATCH 5.11 093/210] KVM: x86/mmu: Rename goal_gfn to next_last_level_gfn Greg Kroah-Hartman
2021-04-12  8:39 ` [PATCH 5.11 094/210] KVM: x86/mmu: Ensure forward progress when yielding in TDP MMU iter Greg Kroah-Hartman
2021-04-12  8:40 ` [PATCH 5.11 095/210] KVM: x86/mmu: Yield in TDU MMU iter even if no SPTES changed Greg Kroah-Hartman
2021-04-12  8:40 ` [PATCH 5.11 096/210] KVM: x86/mmu: Ensure TLBs are flushed when yielding during GFN range zap Greg Kroah-Hartman
2021-04-12  8:40 ` [PATCH 5.11 097/210] KVM: x86/mmu: Ensure TLBs are flushed for TDP MMU during NX zapping Greg Kroah-Hartman
2021-04-12  8:40 ` [PATCH 5.11 098/210] KVM: x86/mmu: Dont allow TDP MMU to yield when recovering NX pages Greg Kroah-Hartman
2021-04-12  8:40 ` [PATCH 5.11 099/210] KVM: x86/mmu: preserve pending TLB flush across calls to kvm_tdp_mmu_zap_sp Greg Kroah-Hartman
2021-04-12  8:40 ` [PATCH 5.11 100/210] net: sched: fix err handler in tcf_action_init() Greg Kroah-Hartman
2021-04-12  8:40 ` [PATCH 5.11 101/210] ice: Refactor DCB related variables out of the ice_port_info struct Greg Kroah-Hartman
2021-04-12  8:40 ` [PATCH 5.11 102/210] ice: Recognize 860 as iSCSI port in CEE mode Greg Kroah-Hartman
2021-04-12  8:40 ` [PATCH 5.11 103/210] xfrm: interface: fix ipv4 pmtu check to honor ip header df Greg Kroah-Hartman
2021-04-12  8:40 ` [PATCH 5.11 104/210] xfrm: Use actual socket sk instead of skb socket for xfrm_output_resume Greg Kroah-Hartman
2021-04-12  8:40 ` [PATCH 5.11 105/210] remoteproc: qcom: pil_info: avoid 64-bit division Greg Kroah-Hartman
2021-04-12  8:40 ` [PATCH 5.11 106/210] regulator: bd9571mwv: Fix AVS and DVFS voltage range Greg Kroah-Hartman
2021-04-12  8:40 ` [PATCH 5.11 107/210] ARM: OMAP4: Fix PMIC voltage domains for bionic Greg Kroah-Hartman
2021-04-12  8:40 ` [PATCH 5.11 108/210] ARM: OMAP4: PM: update ROM return address for OSWR and OFF Greg Kroah-Hartman
2021-04-12  8:40 ` [PATCH 5.11 109/210] remoteproc: pru: Fix firmware loading crashes on K3 SoCs Greg Kroah-Hartman
2021-04-12  8:40 ` [PATCH 5.11 110/210] net: xfrm: Localize sequence counter per network namespace Greg Kroah-Hartman
2021-04-12  8:40 ` [PATCH 5.11 111/210] esp: delete NETIF_F_SCTP_CRC bit from features for esp offload Greg Kroah-Hartman
2021-04-12  8:40 ` [PATCH 5.11 112/210] ASoC: SOF: Intel: HDA: fix core status verification Greg Kroah-Hartman
2021-04-12  8:40 ` [PATCH 5.11 113/210] ASoC: wm8960: Fix wrong bclk and lrclk with pll enabled for some chips Greg Kroah-Hartman
2021-04-12  8:40 ` [PATCH 5.11 114/210] xfrm: Fix NULL pointer dereference on policy lookup Greg Kroah-Hartman
2021-04-12  8:40 ` [PATCH 5.11 115/210] virtchnl: Fix layout of RSS structures Greg Kroah-Hartman
2021-04-12  8:40 ` [PATCH 5.11 116/210] i40e: Added Asym_Pause to supported link modes Greg Kroah-Hartman
2021-04-12  8:40 ` [PATCH 5.11 117/210] i40e: Fix kernel oops when i40e driver removes VFs Greg Kroah-Hartman
2021-04-12  8:40 ` [PATCH 5.11 118/210] hostfs: fix memory handling in follow_link() Greg Kroah-Hartman
2021-04-12  8:40 ` [PATCH 5.11 119/210] amd-xgbe: Update DMA coherency values Greg Kroah-Hartman
2021-04-12  8:40 ` [PATCH 5.11 120/210] vxlan: do not modify the shared tunnel info when PMTU triggers an ICMP reply Greg Kroah-Hartman
2021-04-12  8:40 ` [PATCH 5.11 121/210] geneve: " Greg Kroah-Hartman
2021-04-12  8:40 ` [PATCH 5.11 122/210] sch_red: fix off-by-one checks in red_check_params() Greg Kroah-Hartman
2021-04-12  8:40 ` [PATCH 5.11 123/210] drivers/net/wan/hdlc_fr: Fix a double free in pvc_xmit Greg Kroah-Hartman
2021-04-12  8:40 ` [PATCH 5.11 124/210] arm64: dts: imx8mm/q: Fix pad control of SD1_DATA0 Greg Kroah-Hartman
2021-04-12  8:40 ` [PATCH 5.11 125/210] xfrm: Provide private skb extensions for segmented and hw offloaded ESP packets Greg Kroah-Hartman
2021-04-12  8:40 ` [PATCH 5.11 126/210] can: bcm/raw: fix msg_namelen values depending on CAN_REQUIRED_SIZE Greg Kroah-Hartman
2021-04-12  8:40 ` [PATCH 5.11 127/210] can: isotp: " Greg Kroah-Hartman
2021-04-12  8:40 ` [PATCH 5.11 128/210] can: uapi: can.h: mark union inside struct can_frame packed Greg Kroah-Hartman
2021-04-12  8:40 ` [PATCH 5.11 129/210] mlxsw: spectrum: Fix ECN marking in tunnel decapsulation Greg Kroah-Hartman
2021-04-12  8:40 ` [PATCH 5.11 130/210] ethernet: myri10ge: Fix a use after free in myri10ge_sw_tso Greg Kroah-Hartman
2021-04-12  8:40 ` [PATCH 5.11 131/210] gianfar: Handle error code at MAC address change Greg Kroah-Hartman
2021-04-12  8:40 ` [PATCH 5.11 132/210] net: dsa: Fix type was not set for devlink port Greg Kroah-Hartman
2021-04-12  8:40 ` [PATCH 5.11 133/210] clk: qcom: camcc: Update the clock ops for the SC7180 Greg Kroah-Hartman
2021-04-12  8:40 ` [PATCH 5.11 134/210] cxgb4: avoid collecting SGE_QBASE regs during traffic Greg Kroah-Hartman
2021-04-12  8:40 ` [PATCH 5.11 135/210] net:tipc: Fix a double free in tipc_sk_mcast_rcv Greg Kroah-Hartman
2021-04-12  8:40 ` [PATCH 5.11 136/210] ARM: dts: imx6: pbab01: Set vmmc supply for both SD interfaces Greg Kroah-Hartman
2021-04-12  8:40 ` [PATCH 5.11 137/210] net/ncsi: Avoid channel_monitor hrtimer deadlock Greg Kroah-Hartman
2021-04-12  8:40 ` [PATCH 5.11 138/210] net: qrtr: Fix memory leak on qrtr_tx_wait failure Greg Kroah-Hartman
2021-04-12  8:40 ` [PATCH 5.11 139/210] nfp: flower: ignore duplicate merge hints from FW Greg Kroah-Hartman
2021-04-12  8:40 ` [PATCH 5.11 140/210] net: phy: broadcom: Only advertise EEE for supported modes Greg Kroah-Hartman
2021-04-12  8:40 ` [PATCH 5.11 141/210] I2C: JZ4780: Fix bug for Ingenic X1000 Greg Kroah-Hartman
2021-04-12  8:40 ` [PATCH 5.11 142/210] ASoC: sunxi: sun4i-codec: fill ASoC card owner Greg Kroah-Hartman
2021-04-12  8:40 ` [PATCH 5.11 143/210] net/mlx5e: Fix mapping of ct_label zero Greg Kroah-Hartman
2021-04-12  8:40 ` [PATCH 5.11 144/210] net/mlx5: Delete auxiliary bus driver eth-rep first Greg Kroah-Hartman
2021-04-12  8:40 ` [PATCH 5.11 145/210] net/mlx5e: Fix ethtool indication of connector type Greg Kroah-Hartman
2021-04-12  8:40 ` [PATCH 5.11 146/210] net/mlx5: Dont request more than supported EQs Greg Kroah-Hartman
2021-04-12  8:40 ` [PATCH 5.11 147/210] net/mlx5e: Guarantee room for XSK wakeup NOP on async ICOSQ Greg Kroah-Hartman
2021-04-12  8:40 ` [PATCH 5.11 148/210] net/rds: Fix a use after free in rds_message_map_pages Greg Kroah-Hartman
2021-04-12  8:40 ` [PATCH 5.11 149/210] xdp: fix xdp_return_frame() kernel BUG throw for page_pool memory model Greg Kroah-Hartman
2021-04-12  8:40 ` [PATCH 5.11 150/210] soc/fsl: qbman: fix conflicting alignment attributes Greg Kroah-Hartman
2021-04-12  8:40 ` [PATCH 5.11 151/210] i40e: fix receiving of single packets in xsk zero-copy mode Greg Kroah-Hartman
2021-04-12  8:40 ` [PATCH 5.11 152/210] i40e: Fix display statistics for veb_tc Greg Kroah-Hartman
2021-04-12  8:40 ` [PATCH 5.11 153/210] RDMA/rtrs-clt: Close rtrs client conn before destroying rtrs clt session files Greg Kroah-Hartman
2021-04-12  8:40 ` [PATCH 5.11 154/210] drm/msm: Set drvdata to NULL when msm_drm_init() fails Greg Kroah-Hartman
2021-04-12  8:41 ` [PATCH 5.11 155/210] net: udp: Add support for getsockopt(..., ..., UDP_GRO, ..., ...); Greg Kroah-Hartman
2021-04-12  8:41 ` [PATCH 5.11 156/210] mptcp: forbit mcast-related sockopt on MPTCP sockets Greg Kroah-Hartman
2021-04-12  8:41 ` [PATCH 5.11 157/210] mptcp: revert "mptcp: provide subflow aware release function" Greg Kroah-Hartman
2021-04-12  8:41 ` [PATCH 5.11 158/210] scsi: ufs: core: Fix task management request completion timeout Greg Kroah-Hartman
2021-04-12  8:41 ` [PATCH 5.11 159/210] scsi: ufs: core: Fix wrong Task Tag used in task management request UPIUs Greg Kroah-Hartman
2021-04-12  8:41 ` [PATCH 5.11 160/210] drm/msm: a6xx: fix version check for the A650 SQE microcode Greg Kroah-Hartman
2021-04-12  8:41 ` [PATCH 5.11 161/210] drm/msm/disp/dpu1: program 3d_merge only if block is attached Greg Kroah-Hartman
2021-04-12  8:41 ` [PATCH 5.11 162/210] Revert "arm64: dts: marvell: armada-cp110: Switch to per-port SATA interrupts" Greg Kroah-Hartman
2021-04-12  8:41 ` [PATCH 5.11 163/210] ARM: dts: turris-omnia: fix hardware buffer management Greg Kroah-Hartman
2021-04-12  8:41 ` [PATCH 5.11 164/210] net: cls_api: Fix uninitialised struct field bo->unlocked_driver_cb Greg Kroah-Hartman
2021-04-12  8:41 ` [PATCH 5.11 165/210] net: macb: restore cmp registers on resume path Greg Kroah-Hartman
2021-04-12  8:41 ` [PATCH 5.11 166/210] clk: fix invalid usage of list cursor in register Greg Kroah-Hartman
2021-04-12  8:41 ` [PATCH 5.11 167/210] clk: fix invalid usage of list cursor in unregister Greg Kroah-Hartman
2021-04-12  8:41 ` [PATCH 5.11 168/210] workqueue: Move the position of debug_work_activate() in __queue_work() Greg Kroah-Hartman
2021-04-12  8:41 ` [PATCH 5.11 169/210] s390/cpcmd: fix inline assembly register clobbering Greg Kroah-Hartman
2021-04-12  8:41 ` [PATCH 5.11 170/210] perf inject: Fix repipe usage Greg Kroah-Hartman
2021-04-12  8:41 ` [PATCH 5.11 171/210] openvswitch: fix send of uninitialized stack memory in ct limit reply Greg Kroah-Hartman
2021-04-12  8:41 ` [PATCH 5.11 172/210] i2c: designware: Adjust bus_freq_hz when refuse high speed mode set Greg Kroah-Hartman
2021-04-12  8:41 ` [PATCH 5.11 173/210] iwlwifi: fix 11ax disabled bit in the regulatory capability flags Greg Kroah-Hartman
2021-04-12  8:41 ` [PATCH 5.11 174/210] can: mcp251x: fix support for half duplex SPI host controllers Greg Kroah-Hartman
2021-04-12  8:41 ` [PATCH 5.11 175/210] platform/x86: intel-hid: Fix spurious wakeups caused by tablet-mode events during suspend Greg Kroah-Hartman
2021-04-12  8:41 ` [PATCH 5.11 176/210] tipc: increment the tmp aead refcnt before attaching it Greg Kroah-Hartman
2021-04-12  8:41 ` [PATCH 5.11 177/210] net: hns3: clear VF down state bit before request link status Greg Kroah-Hartman
2021-04-12  8:41 ` [PATCH 5.11 178/210] net/mlx5: Fix HW spec violation configuring uplink Greg Kroah-Hartman
2021-04-12  8:41 ` [PATCH 5.11 179/210] net/mlx5: Fix placement of log_max_flow_counter Greg Kroah-Hartman
2021-04-12  8:41 ` [PATCH 5.11 180/210] net/mlx5: Fix PPLM register mapping Greg Kroah-Hartman
2021-04-12  8:41 ` [PATCH 5.11 181/210] net/mlx5: Fix PBMC " Greg Kroah-Hartman
2021-04-12  8:41 ` [PATCH 5.11 182/210] RDMA/cxgb4: check for ipv6 address properly while destroying listener Greg Kroah-Hartman
2021-04-12  8:41 ` [PATCH 5.11 183/210] perf report: Fix wrong LBR block sorting Greg Kroah-Hartman
2021-04-12  8:41 ` [PATCH 5.11 184/210] RDMA/qedr: Fix kernel panic when trying to access recv_cq Greg Kroah-Hartman
2021-04-12  8:41 ` [PATCH 5.11 185/210] drm/vc4: crtc: Reduce PV fifo threshold on hvs4 Greg Kroah-Hartman
2021-04-12  8:41 ` [PATCH 5.11 186/210] i40e: Fix parameters in aq_get_phy_register() Greg Kroah-Hartman
2021-04-12  8:41 ` [PATCH 5.11 187/210] RDMA/addr: Be strict with gid size Greg Kroah-Hartman
2021-04-12  8:41 ` [PATCH 5.11 188/210] vdpa/mlx5: should exclude header length and fcs from mtu Greg Kroah-Hartman
2021-04-12  8:41 ` [PATCH 5.11 189/210] vdpa/mlx5: Fix wrong use of bit numbers Greg Kroah-Hartman
2021-04-12  8:41 ` [PATCH 5.11 190/210] RAS/CEC: Correct ce_add_elem()s returned values Greg Kroah-Hartman
2021-04-12  8:41 ` [PATCH 5.11 191/210] clk: socfpga: fix iomem pointer cast on 64-bit Greg Kroah-Hartman
2021-04-12  8:41 ` [PATCH 5.11 192/210] lockdep: Address clang -Wformat warning printing for %hd Greg Kroah-Hartman
2021-04-12  8:41 ` [PATCH 5.11 193/210] dt-bindings: net: ethernet-controller: fix typo in NVMEM Greg Kroah-Hartman
2021-04-12  8:41 ` [PATCH 5.11 194/210] net: sched: bump refcount for new action in ACT replace mode Greg Kroah-Hartman
2021-04-12  8:41 ` [PATCH 5.11 195/210] x86/traps: Correct exc_general_protection() and math_error() return paths Greg Kroah-Hartman
2021-04-12  8:41 ` [PATCH 5.11 196/210] gpiolib: Read "gpio-line-names" from a firmware node Greg Kroah-Hartman
2021-04-12  8:41 ` [PATCH 5.11 197/210] cfg80211: remove WARN_ON() in cfg80211_sme_connect Greg Kroah-Hartman
2021-04-12  8:41 ` [PATCH 5.11 198/210] net: tun: set tun->dev->addr_len during TUNSETLINK processing Greg Kroah-Hartman
2021-04-12  8:41 ` [PATCH 5.11 199/210] drivers: net: fix memory leak in atusb_probe Greg Kroah-Hartman
2021-04-12  8:41 ` [PATCH 5.11 200/210] drivers: net: fix memory leak in peak_usb_create_dev Greg Kroah-Hartman
2021-04-12  8:41 ` [PATCH 5.11 201/210] net: mac802154: Fix general protection fault Greg Kroah-Hartman
2021-04-12  8:41 ` [PATCH 5.11 202/210] net: ieee802154: nl-mac: fix check on panid Greg Kroah-Hartman
2021-04-12  8:41 ` [PATCH 5.11 203/210] net: ieee802154: fix nl802154 del llsec key Greg Kroah-Hartman
2021-04-12  8:41 ` [PATCH 5.11 204/210] net: ieee802154: fix nl802154 del llsec dev Greg Kroah-Hartman
2021-04-12  8:41 ` [PATCH 5.11 205/210] net: ieee802154: fix nl802154 add llsec key Greg Kroah-Hartman
2021-04-12  8:41 ` [PATCH 5.11 206/210] net: ieee802154: fix nl802154 del llsec devkey Greg Kroah-Hartman
2021-04-12  8:41 ` [PATCH 5.11 207/210] net: ieee802154: forbid monitor for set llsec params Greg Kroah-Hartman
2021-04-12  8:41 ` [PATCH 5.11 208/210] net: ieee802154: forbid monitor for del llsec seclevel Greg Kroah-Hartman
2021-04-12  8:41 ` [PATCH 5.11 209/210] net: ieee802154: stop dump llsec params for monitors Greg Kroah-Hartman
2021-04-12  8:41 ` [PATCH 5.11 210/210] Revert "net: sched: bump refcount for new action in ACT replace mode" Greg Kroah-Hartman
2021-04-13  1:33 ` [PATCH 5.11 000/210] 5.11.14-rc1 review Shuah Khan
2021-04-13  3:41 ` Guenter Roeck
2021-04-13  4:46 ` Naresh Kamboju

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=20210412084018.062277755@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=davem@davemloft.net \
    --cc=edumazet@google.com \
    --cc=jasowang@redhat.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=mst@redhat.com \
    --cc=stable@vger.kernel.org \
    --cc=virtualization@lists.linux-foundation.org \
    --cc=xuanzhuo@linux.alibaba.com \
    /path/to/YOUR_REPLY

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

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