All of lore.kernel.org
 help / color / mirror / Atom feed
From: gregkh@linuxfoundation.org
To: linux-kernel@vger.kernel.org
Cc: "Greg Kroah-Hartman" <gregkh@linuxfoundation.org>,
	stable@vger.kernel.org, "Mike Rapoport" <rppt@linux.ibm.com>,
	"Qian Cai" <cai@lca.pw>, "Andrea Arcangeli" <aarcange@redhat.com>,
	"Baoquan He" <bhe@redhat.com>, "Vlastimil Babka" <vbabka@suse.cz>,
	"David Hildenbrand" <david@redhat.com>,
	"Borislav Petkov" <bp@alien8.de>,
	"Chris Wilson" <chris@chris-wilson.co.uk>,
	"H. Peter Anvin" <hpa@zytor.com>,
	"Łukasz Majczak" <lma@semihalf.com>,
	"Ingo Molnar" <mingo@redhat.com>, "Mel Gorman" <mgorman@suse.de>,
	"Michal Hocko" <mhocko@kernel.org>,
	"Sarvela, Tomi P" <tomi.p.sarvela@intel.com>,
	"Thomas Gleixner" <tglx@linutronix.de>,
	"Andrew Morton" <akpm@linux-foundation.org>,
	"Linus Torvalds" <torvalds@linux-foundation.org>
Subject: [PATCH 5.10 286/290] mm/page_alloc.c: refactor initialization of struct page for holes in memory layout
Date: Mon, 15 Mar 2021 15:22:36 +0100	[thread overview]
Message-ID: <20210315135551.704702873@linuxfoundation.org> (raw)
In-Reply-To: <20210315135551.391322899@linuxfoundation.org>

From: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

From: Mike Rapoport <rppt@linux.ibm.com>

commit 0740a50b9baa4472cfb12442df4b39e2712a64a4 upstream.

There could be struct pages that are not backed by actual physical memory.
This can happen when the actual memory bank is not a multiple of
SECTION_SIZE or when an architecture does not register memory holes
reserved by the firmware as memblock.memory.

Such pages are currently initialized using init_unavailable_mem() function
that iterates through PFNs in holes in memblock.memory and if there is a
struct page corresponding to a PFN, the fields of this page are set to
default values and it is marked as Reserved.

init_unavailable_mem() does not take into account zone and node the page
belongs to and sets both zone and node links in struct page to zero.

Before commit 73a6e474cb37 ("mm: memmap_init: iterate over memblock
regions rather that check each PFN") the holes inside a zone were
re-initialized during memmap_init() and got their zone/node links right.
However, after that commit nothing updates the struct pages representing
such holes.

On a system that has firmware reserved holes in a zone above ZONE_DMA, for
instance in a configuration below:

	# grep -A1 E820 /proc/iomem
	7a17b000-7a216fff : Unknown E820 type
	7a217000-7bffffff : System RAM

unset zone link in struct page will trigger

	VM_BUG_ON_PAGE(!zone_spans_pfn(page_zone(page), pfn), page);

in set_pfnblock_flags_mask() when called with a struct page from a range
other than E820_TYPE_RAM because there are pages in the range of
ZONE_DMA32 but the unset zone link in struct page makes them appear as a
part of ZONE_DMA.

Interleave initialization of the unavailable pages with the normal
initialization of memory map, so that zone and node information will be
properly set on struct pages that are not backed by the actual memory.

With this change the pages for holes inside a zone will get proper
zone/node links and the pages that are not spanned by any node will get
links to the adjacent zone/node.  The holes between nodes will be
prepended to the zone/node above the hole and the trailing pages in the
last section that will be appended to the zone/node below.

[akpm@linux-foundation.org: don't initialize static to zero, use %llu for u64]

Link: https://lkml.kernel.org/r/20210225224351.7356-2-rppt@kernel.org
Fixes: 73a6e474cb37 ("mm: memmap_init: iterate over memblock regions rather that check each PFN")
Signed-off-by: Mike Rapoport <rppt@linux.ibm.com>
Reported-by: Qian Cai <cai@lca.pw>
Reported-by: Andrea Arcangeli <aarcange@redhat.com>
Reviewed-by: Baoquan He <bhe@redhat.com>
Acked-by: Vlastimil Babka <vbabka@suse.cz>
Reviewed-by: David Hildenbrand <david@redhat.com>
Cc: Borislav Petkov <bp@alien8.de>
Cc: Chris Wilson <chris@chris-wilson.co.uk>
Cc: "H. Peter Anvin" <hpa@zytor.com>
Cc: Łukasz Majczak <lma@semihalf.com>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: Mel Gorman <mgorman@suse.de>
Cc: Michal Hocko <mhocko@kernel.org>
Cc: "Sarvela, Tomi P" <tomi.p.sarvela@intel.com>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: <stable@vger.kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: Mike Rapoport <rppt@linux.ibm.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
---
 mm/page_alloc.c |  158 ++++++++++++++++++++++++++------------------------------
 1 file changed, 75 insertions(+), 83 deletions(-)

--- a/mm/page_alloc.c
+++ b/mm/page_alloc.c
@@ -6189,13 +6189,66 @@ static void __meminit zone_init_free_lis
 	}
 }
 
+#if !defined(CONFIG_FLAT_NODE_MEM_MAP)
+/*
+ * Only struct pages that correspond to ranges defined by memblock.memory
+ * are zeroed and initialized by going through __init_single_page() during
+ * memmap_init_zone().
+ *
+ * But, there could be struct pages that correspond to holes in
+ * memblock.memory. This can happen because of the following reasons:
+ * - physical memory bank size is not necessarily the exact multiple of the
+ *   arbitrary section size
+ * - early reserved memory may not be listed in memblock.memory
+ * - memory layouts defined with memmap= kernel parameter may not align
+ *   nicely with memmap sections
+ *
+ * Explicitly initialize those struct pages so that:
+ * - PG_Reserved is set
+ * - zone and node links point to zone and node that span the page if the
+ *   hole is in the middle of a zone
+ * - zone and node links point to adjacent zone/node if the hole falls on
+ *   the zone boundary; the pages in such holes will be prepended to the
+ *   zone/node above the hole except for the trailing pages in the last
+ *   section that will be appended to the zone/node below.
+ */
+static u64 __meminit init_unavailable_range(unsigned long spfn,
+					    unsigned long epfn,
+					    int zone, int node)
+{
+	unsigned long pfn;
+	u64 pgcnt = 0;
+
+	for (pfn = spfn; pfn < epfn; pfn++) {
+		if (!pfn_valid(ALIGN_DOWN(pfn, pageblock_nr_pages))) {
+			pfn = ALIGN_DOWN(pfn, pageblock_nr_pages)
+				+ pageblock_nr_pages - 1;
+			continue;
+		}
+		__init_single_page(pfn_to_page(pfn), pfn, zone, node);
+		__SetPageReserved(pfn_to_page(pfn));
+		pgcnt++;
+	}
+
+	return pgcnt;
+}
+#else
+static inline u64 init_unavailable_range(unsigned long spfn, unsigned long epfn,
+					 int zone, int node)
+{
+	return 0;
+}
+#endif
+
 void __meminit __weak memmap_init(unsigned long size, int nid,
 				  unsigned long zone,
 				  unsigned long range_start_pfn)
 {
+	static unsigned long hole_pfn;
 	unsigned long start_pfn, end_pfn;
 	unsigned long range_end_pfn = range_start_pfn + size;
 	int i;
+	u64 pgcnt = 0;
 
 	for_each_mem_pfn_range(i, nid, &start_pfn, &end_pfn, NULL) {
 		start_pfn = clamp(start_pfn, range_start_pfn, range_end_pfn);
@@ -6206,7 +6259,29 @@ void __meminit __weak memmap_init(unsign
 			memmap_init_zone(size, nid, zone, start_pfn, range_end_pfn,
 					 MEMINIT_EARLY, NULL, MIGRATE_MOVABLE);
 		}
+
+		if (hole_pfn < start_pfn)
+			pgcnt += init_unavailable_range(hole_pfn, start_pfn,
+							zone, nid);
+		hole_pfn = end_pfn;
 	}
+
+#ifdef CONFIG_SPARSEMEM
+	/*
+	 * Initialize the hole in the range [zone_end_pfn, section_end].
+	 * If zone boundary falls in the middle of a section, this hole
+	 * will be re-initialized during the call to this function for the
+	 * higher zone.
+	 */
+	end_pfn = round_up(range_end_pfn, PAGES_PER_SECTION);
+	if (hole_pfn < end_pfn)
+		pgcnt += init_unavailable_range(hole_pfn, end_pfn,
+						zone, nid);
+#endif
+
+	if (pgcnt)
+		pr_info("  %s zone: %llu pages in unavailable ranges\n",
+			zone_names[zone], pgcnt);
 }
 
 static int zone_batchsize(struct zone *zone)
@@ -6999,88 +7074,6 @@ void __init free_area_init_memoryless_no
 	free_area_init_node(nid);
 }
 
-#if !defined(CONFIG_FLAT_NODE_MEM_MAP)
-/*
- * Initialize all valid struct pages in the range [spfn, epfn) and mark them
- * PageReserved(). Return the number of struct pages that were initialized.
- */
-static u64 __init init_unavailable_range(unsigned long spfn, unsigned long epfn)
-{
-	unsigned long pfn;
-	u64 pgcnt = 0;
-
-	for (pfn = spfn; pfn < epfn; pfn++) {
-		if (!pfn_valid(ALIGN_DOWN(pfn, pageblock_nr_pages))) {
-			pfn = ALIGN_DOWN(pfn, pageblock_nr_pages)
-				+ pageblock_nr_pages - 1;
-			continue;
-		}
-		/*
-		 * Use a fake node/zone (0) for now. Some of these pages
-		 * (in memblock.reserved but not in memblock.memory) will
-		 * get re-initialized via reserve_bootmem_region() later.
-		 */
-		__init_single_page(pfn_to_page(pfn), pfn, 0, 0);
-		__SetPageReserved(pfn_to_page(pfn));
-		pgcnt++;
-	}
-
-	return pgcnt;
-}
-
-/*
- * Only struct pages that are backed by physical memory are zeroed and
- * initialized by going through __init_single_page(). But, there are some
- * struct pages which are reserved in memblock allocator and their fields
- * may be accessed (for example page_to_pfn() on some configuration accesses
- * flags). We must explicitly initialize those struct pages.
- *
- * This function also addresses a similar issue where struct pages are left
- * uninitialized because the physical address range is not covered by
- * memblock.memory or memblock.reserved. That could happen when memblock
- * layout is manually configured via memmap=, or when the highest physical
- * address (max_pfn) does not end on a section boundary.
- */
-static void __init init_unavailable_mem(void)
-{
-	phys_addr_t start, end;
-	u64 i, pgcnt;
-	phys_addr_t next = 0;
-
-	/*
-	 * Loop through unavailable ranges not covered by memblock.memory.
-	 */
-	pgcnt = 0;
-	for_each_mem_range(i, &start, &end) {
-		if (next < start)
-			pgcnt += init_unavailable_range(PFN_DOWN(next),
-							PFN_UP(start));
-		next = end;
-	}
-
-	/*
-	 * Early sections always have a fully populated memmap for the whole
-	 * section - see pfn_valid(). If the last section has holes at the
-	 * end and that section is marked "online", the memmap will be
-	 * considered initialized. Make sure that memmap has a well defined
-	 * state.
-	 */
-	pgcnt += init_unavailable_range(PFN_DOWN(next),
-					round_up(max_pfn, PAGES_PER_SECTION));
-
-	/*
-	 * Struct pages that do not have backing memory. This could be because
-	 * firmware is using some of this memory, or for some other reasons.
-	 */
-	if (pgcnt)
-		pr_info("Zeroed struct page in unavailable ranges: %lld pages", pgcnt);
-}
-#else
-static inline void __init init_unavailable_mem(void)
-{
-}
-#endif /* !CONFIG_FLAT_NODE_MEM_MAP */
-
 #if MAX_NUMNODES > 1
 /*
  * Figure out the number of possible node ids.
@@ -7504,7 +7497,6 @@ void __init free_area_init(unsigned long
 	/* Initialise every node */
 	mminit_verify_pageflags_layout();
 	setup_nr_node_ids();
-	init_unavailable_mem();
 	for_each_online_node(nid) {
 		pg_data_t *pgdat = NODE_DATA(nid);
 		free_area_init_node(nid);



  parent reply	other threads:[~2021-03-15 14:49 UTC|newest]

Thread overview: 332+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-03-15 13:51 [PATCH 5.10 000/290] 5.10.24-rc1 review gregkh
2021-03-15 13:51 ` [PATCH 5.10 001/290] uapi: nfnetlink_cthelper.h: fix userspace compilation error gregkh
2021-03-15 13:51 ` [PATCH 5.10 002/290] powerpc/perf: Fix handling of privilege level checks in perf interrupt context gregkh
2021-03-15 13:51 ` [PATCH 5.10 003/290] powerpc/pseries: Dont enforce MSI affinity with kdump gregkh
2021-03-15 13:51 ` [PATCH 5.10 004/290] ethernet: alx: fix order of calls on resume gregkh
2021-03-15 13:51 ` [PATCH 5.10 005/290] crypto: mips/poly1305 - enable for all MIPS processors gregkh
2021-03-15 13:51 ` [PATCH 5.10 006/290] ath9k: fix transmitting to stations in dynamic SMPS mode gregkh
2021-03-15 13:51 ` [PATCH 5.10 007/290] net: Fix gro aggregation for udp encaps with zero csum gregkh
2021-03-15 13:51 ` [PATCH 5.10 008/290] net: check if protocol extracted by virtio_net_hdr_set_proto is correct gregkh
2021-03-15 13:51 ` [PATCH 5.10 009/290] net: avoid infinite loop in mpls_gso_segment when mpls_hlen == 0 gregkh
2021-03-15 13:51 ` [PATCH 5.10 010/290] net: l2tp: reduce log level of messages in receive path, add counter instead gregkh
2021-03-15 13:51 ` [PATCH 5.10 011/290] can: skb: can_skb_set_owner(): fix ref counting if socket was closed before setting skb ownership gregkh
2021-03-15 13:51 ` [PATCH 5.10 012/290] can: flexcan: assert FRZ bit in flexcan_chip_freeze() gregkh
2021-03-15 13:51 ` [PATCH 5.10 013/290] can: flexcan: enable RX FIFO after FRZ/HALT valid gregkh
2021-03-15 13:51 ` [PATCH 5.10 014/290] can: flexcan: invoke flexcan_chip_freeze() to enter freeze mode gregkh
2021-03-15 13:51 ` [PATCH 5.10 015/290] can: tcan4x5x: tcan4x5x_init(): fix initialization - clear MRAM before entering Normal Mode gregkh
2021-03-15 13:51 ` [PATCH 5.10 016/290] tcp: Fix sign comparison bug in getsockopt(TCP_ZEROCOPY_RECEIVE) gregkh
2021-03-15 13:51 ` [PATCH 5.10 017/290] tcp: add sanity tests to TCP_QUEUE_SEQ gregkh
2021-03-15 13:51 ` [PATCH 5.10 018/290] netfilter: nf_nat: undo erroneous tcp edemux lookup gregkh
2021-03-15 13:51 ` [PATCH 5.10 019/290] netfilter: x_tables: gpf inside xt_find_revision() gregkh
2021-03-15 13:51 ` [PATCH 5.10 020/290] net: always use icmp{,v6}_ndo_send from ndo_start_xmit gregkh
2021-03-15 13:51 ` [PATCH 5.10 021/290] net: phy: fix save wrong speed and duplex problem if autoneg is on gregkh
2021-03-15 13:51 ` [PATCH 5.10 022/290] selftests/bpf: Use the last page in test_snprintf_btf on s390 gregkh
2021-03-15 13:51 ` [PATCH 5.10 023/290] selftests/bpf: No need to drop the packet when there is no geneve opt gregkh
2021-03-15 13:51 ` [PATCH 5.10 024/290] selftests/bpf: Mask bpf_csum_diff() return value to 16 bits in test_verifier gregkh
2021-03-15 13:51 ` [PATCH 5.10 025/290] samples, bpf: Add missing munmap in xdpsock gregkh
2021-03-15 13:51 ` [PATCH 5.10 026/290] libbpf: Clear map_info before each bpf_obj_get_info_by_fd gregkh
2021-03-15 13:52 ` [PATCH 5.10 027/290] ibmvnic: Fix possibly uninitialized old_num_tx_queues variable warning gregkh
2021-03-15 13:52 ` [PATCH 5.10 028/290] ibmvnic: always store valid MAC address gregkh
2021-03-15 13:52 ` [PATCH 5.10 029/290] mt76: dma: do not report truncated frames to mac80211 gregkh
2021-03-15 13:52 ` [PATCH 5.10 030/290] powerpc/603: Fix protection of user pages mapped with PROT_NONE gregkh
2021-03-15 13:52 ` [PATCH 5.10 031/290] mount: fix mounting of detached mounts onto targets that reside on shared mounts gregkh
2021-03-15 13:52 ` [PATCH 5.10 032/290] cifs: return proper error code in statfs(2) gregkh
2021-03-15 13:52 ` [PATCH 5.10 033/290] Revert "mm, slub: consider rest of partial list if acquire_slab() fails" gregkh
2021-03-15 13:52 ` [PATCH 5.10 034/290] docs: networking: drop special stable handling gregkh
2021-03-15 13:52 ` [PATCH 5.10 035/290] net: dsa: tag_rtl4_a: fix egress tags gregkh
2021-03-15 13:52 ` [PATCH 5.10 036/290] sh_eth: fix TRSCER mask for SH771x gregkh
2021-03-15 13:52 ` [PATCH 5.10 037/290] net: enetc: dont overwrite the RSS indirection table when initializing gregkh
2021-03-15 13:52 ` [PATCH 5.10 038/290] net: enetc: take the MDIO lock only once per NAPI poll cycle gregkh
2021-03-15 13:52 ` [PATCH 5.10 039/290] net: enetc: fix incorrect TPID when receiving 802.1ad tagged packets gregkh
2021-03-15 13:52 ` [PATCH 5.10 040/290] net: enetc: dont disable VLAN filtering in IFF_PROMISC mode gregkh
2021-03-15 13:52 ` [PATCH 5.10 041/290] net: enetc: force the RGMII speed and duplex instead of operating in inband mode gregkh
2021-03-18 12:34   ` Pavel Machek
2021-03-15 13:52 ` [PATCH 5.10 042/290] net: enetc: remove bogus write to SIRXIDR from enetc_setup_rxbdr gregkh
2021-03-15 13:52 ` [PATCH 5.10 043/290] net: enetc: keep RX ring consumer index in sync with hardware gregkh
2021-03-15 13:52 ` [PATCH 5.10 044/290] net: ethernet: mtk-star-emac: fix wrong unmap in RX handling gregkh
2021-03-15 13:52 ` [PATCH 5.10 045/290] net/mlx4_en: update moderation when config reset gregkh
2021-03-15 13:52 ` [PATCH 5.10 046/290] net: stmmac: fix incorrect DMA channel intr enable setting of EQoS v4.10 gregkh
2021-03-15 13:52 ` [PATCH 5.10 047/290] nexthop: Do not flush blackhole nexthops when loopback goes down gregkh
2021-03-15 13:52 ` [PATCH 5.10 048/290] net: sched: avoid duplicates in classes dump gregkh
2021-03-15 13:52 ` [PATCH 5.10 049/290] net: mscc: ocelot: properly reject destination IP keys in VCAP IS1 gregkh
2021-03-15 13:52 ` [PATCH 5.10 050/290] net: dsa: sja1105: fix SGMII PCS being forced to SPEED_UNKNOWN instead of SPEED_10 gregkh
2021-03-15 13:52 ` [PATCH 5.10 051/290] net: usb: qmi_wwan: allow qmimux add/del with master up gregkh
2021-03-15 13:52 ` [PATCH 5.10 052/290] netdevsim: init u64 stats for 32bit hardware gregkh
2021-03-15 13:52 ` [PATCH 5.10 053/290] cipso,calipso: resolve a number of problems with the DOI refcounts gregkh
2021-03-15 13:52 ` [PATCH 5.10 054/290] net: stmmac: Fix VLAN filter delete timeout issue in Intel mGBE SGMII gregkh
2021-03-15 13:52 ` [PATCH 5.10 055/290] stmmac: intel: Fixes clock registration error seen for multiple interfaces gregkh
2021-03-15 13:52 ` [PATCH 5.10 056/290] net: lapbether: Remove netif_start_queue / netif_stop_queue gregkh
2021-03-15 13:52 ` [PATCH 5.10 057/290] net: davicom: Fix regulator not turned off on failed probe gregkh
2021-03-15 13:52 ` [PATCH 5.10 058/290] net: davicom: Fix regulator not turned off on driver removal gregkh
2021-03-15 13:52 ` [PATCH 5.10 059/290] net: enetc: allow hardware timestamping on TX queues with tc-etf enabled gregkh
2021-03-15 13:52 ` [PATCH 5.10 060/290] net: qrtr: fix error return code of qrtr_sendmsg() gregkh
2021-03-15 13:52 ` [PATCH 5.10 061/290] s390/qeth: fix memory leak after failed TX Buffer allocation gregkh
2021-03-15 13:52 ` [PATCH 5.10 062/290] r8169: fix r8168fp_adjust_ocp_cmd function gregkh
2021-03-15 13:52 ` [PATCH 5.10 063/290] ixgbe: fail to create xfrm offload of IPsec tunnel mode SA gregkh
2021-03-15 13:52 ` [PATCH 5.10 064/290] tools/resolve_btfids: Fix build error with older host toolchains gregkh
2021-03-15 13:52 ` [PATCH 5.10 065/290] perf build: Fix ccache usage in $(CC) when generating arch errno table gregkh
2021-03-15 13:52 ` [PATCH 5.10 066/290] net: stmmac: stop each tx channel independently gregkh
2021-03-15 13:52 ` [PATCH 5.10 067/290] net: stmmac: fix watchdog timeout during suspend/resume stress test gregkh
2021-03-15 13:52 ` [PATCH 5.10 068/290] net: stmmac: fix wrongly set buffer2 valid when sph unsupport gregkh
2021-03-15 13:52 ` [PATCH 5.10 069/290] ethtool: fix the check logic of at least one channel for RX/TX gregkh
2021-03-15 13:52 ` [PATCH 5.10 070/290] net: phy: make mdio_bus_phy_suspend/resume as __maybe_unused gregkh
2021-03-15 13:52 ` [PATCH 5.10 071/290] selftests: forwarding: Fix race condition in mirror installation gregkh
2021-03-15 13:52 ` [PATCH 5.10 072/290] mlxsw: spectrum_ethtool: Add an external speed to PTYS register gregkh
2021-03-15 13:52 ` [PATCH 5.10 073/290] perf traceevent: Ensure read cmdlines are null terminated gregkh
2021-03-15 13:52 ` [PATCH 5.10 074/290] perf report: Fix -F for branch & mem modes gregkh
2021-03-15 13:52 ` [PATCH 5.10 075/290] net: hns3: fix query vlan mask value error for flow director gregkh
2021-03-15 13:52 ` [PATCH 5.10 076/290] net: hns3: fix bug when calculating the TCAM table info gregkh
2021-03-15 13:52 ` [PATCH 5.10 077/290] s390/cio: return -EFAULT if copy_to_user() fails again gregkh
2021-03-15 13:52 ` [PATCH 5.10 078/290] bnxt_en: reliably allocate IRQ table on reset to avoid crash gregkh
2021-03-15 13:52 ` [PATCH 5.10 079/290] gpiolib: acpi: Add ACPI_GPIO_QUIRK_ABSOLUTE_NUMBER quirk gregkh
2021-03-15 13:52 ` [PATCH 5.10 080/290] gpiolib: acpi: Allow to find GpioInt() resource by name and index gregkh
2021-03-15 13:52 ` [PATCH 5.10 081/290] gpiolib: Read "gpio-line-names" from a firmware node gregkh
2021-03-15 14:18   ` Marek Vasut
2021-03-15 16:32     ` Bartosz Golaszewski
2021-03-17 16:05       ` Greg KH
2021-03-15 18:18     ` Andy Shevchenko
2021-03-15 13:52 ` [PATCH 5.10 082/290] gpio: pca953x: Set IRQ type when handle Intel Galileo Gen 2 gregkh
2021-03-15 13:52 ` [PATCH 5.10 083/290] gpio: fix gpio-device list corruption gregkh
2021-03-15 13:52 ` [PATCH 5.10 084/290] drm/compat: Clear bounce structures gregkh
2021-03-15 13:52 ` [PATCH 5.10 085/290] drm/amd/display: Add a backlight module option gregkh
2021-03-15 13:52 ` [PATCH 5.10 086/290] drm/amdgpu/display: use GFP_ATOMIC in dcn21_validate_bandwidth_fp() gregkh
2021-03-15 13:53 ` [PATCH 5.10 087/290] drm/amd/display: Fix nested FPU context in dcn21_validate_bandwidth() gregkh
2021-03-15 13:53 ` [PATCH 5.10 088/290] drm/amd/pm: bug fix for pcie dpm gregkh
2021-03-15 13:53 ` [PATCH 5.10 089/290] drm/amdgpu/display: simplify backlight setting gregkh
2021-03-15 13:53 ` [PATCH 5.10 090/290] drm/amdgpu/display: dont assert in set backlight function gregkh
2021-03-15 13:53 ` [PATCH 5.10 091/290] drm/amdgpu/display: handle aux backlight in backlight_get_brightness gregkh
2021-03-15 13:53 ` [PATCH 5.10 092/290] drm/shmem-helper: Check for purged buffers in fault handler gregkh
2021-03-15 13:53 ` [PATCH 5.10 093/290] drm/shmem-helper: Dont remove the offset in vm_area_struct pgoff gregkh
2021-03-15 13:53 ` [PATCH 5.10 094/290] drm: Use USB controllers DMA mask when importing dmabufs gregkh
2021-03-15 13:53 ` [PATCH 5.10 095/290] drm: meson_drv add shutdown function gregkh
2021-12-04 21:31   ` [PATCH 5.10] Revert "drm: meson_drv add shutdown function" Jerome Brunet
2021-12-04 21:31     ` Jerome Brunet
2021-12-05 12:09     ` Greg Kroah-Hartman
2021-12-05 12:09       ` Greg Kroah-Hartman
     [not found]   ` <61abde5e.1c69fb81.474b3.97fbSMTPIN_ADDED_BROKEN@mx.google.com>
2021-12-05  1:40     ` Art Nikpal
2021-12-05  1:40       ` Art Nikpal
2021-12-06  9:32       ` Jerome Brunet
2021-12-06  9:32         ` Jerome Brunet
2021-12-06 11:38     ` Art Nikpal
2021-12-06 11:38       ` Art Nikpal
2021-03-15 13:53 ` [PATCH 5.10 096/290] drm/shmem-helpers: vunmap: Dont put pages for dma-buf gregkh
2021-03-15 13:53 ` [PATCH 5.10 097/290] drm/i915: Wedge the GPU if command parser setup fails gregkh
2021-03-15 13:53 ` [PATCH 5.10 098/290] s390/cio: return -EFAULT if copy_to_user() fails gregkh
2021-03-15 13:53 ` [PATCH 5.10 099/290] s390/crypto: " gregkh
2021-03-15 13:53 ` [PATCH 5.10 100/290] qxl: Fix uninitialised struct field head.surface_id gregkh
2021-03-15 13:53 ` [PATCH 5.10 101/290] sh_eth: fix TRSCER mask for R7S9210 gregkh
2021-03-15 13:53 ` [PATCH 5.10 102/290] media: usbtv: Fix deadlock on suspend gregkh
2021-03-15 13:53 ` [PATCH 5.10 103/290] media: rkisp1: params: fix wrong bits settings gregkh
2021-03-15 13:53 ` [PATCH 5.10 104/290] media: v4l: vsp1: Fix uif null pointer access gregkh
2021-03-15 13:53 ` [PATCH 5.10 105/290] media: v4l: vsp1: Fix bru " gregkh
2021-03-15 13:53 ` [PATCH 5.10 106/290] media: rc: compile rc-cec.c into rc-core gregkh
2021-03-15 13:53 ` [PATCH 5.10 107/290] cifs: fix credit accounting for extra channel gregkh
2021-03-15 13:53 ` [PATCH 5.10 108/290] net: hns3: fix error mask definition of flow director gregkh
2021-03-15 13:53 ` [PATCH 5.10 109/290] s390/qeth: dont replace a fully completed async TX buffer gregkh
2021-03-15 13:53 ` [PATCH 5.10 110/290] s390/qeth: remove QETH_QDIO_BUF_HANDLED_DELAYED state gregkh
2021-03-15 13:53 ` [PATCH 5.10 111/290] s390/qeth: improve completion of pending TX buffers gregkh
2021-03-15 13:53 ` [PATCH 5.10 112/290] s390/qeth: fix notification for pending buffers during teardown gregkh
2021-03-15 13:53 ` [PATCH 5.10 113/290] net: dsa: implement a central TX reallocation procedure gregkh
2021-03-15 19:56   ` Vladimir Oltean
2021-03-15 21:06     ` Sasha Levin
2021-03-16  5:52       ` gregkh
2021-03-16  5:46     ` gregkh
2021-03-16 13:54       ` Sasha Levin
2021-03-16 16:05         ` gregkh
2021-03-16 16:21           ` Sasha Levin
2021-03-16 16:22           ` Vladimir Oltean
2021-03-15 13:53 ` [PATCH 5.10 114/290] net: dsa: tag_ksz: dont allocate additional memory for padding/tagging gregkh
2021-03-15 13:53 ` [PATCH 5.10 115/290] net: dsa: trailer: " gregkh
2021-03-15 13:53 ` [PATCH 5.10 116/290] net: dsa: tag_qca: let DSA core deal with TX reallocation gregkh
2021-03-15 13:53 ` [PATCH 5.10 117/290] net: dsa: tag_ocelot: " gregkh
2021-03-15 13:53 ` [PATCH 5.10 118/290] net: dsa: tag_mtk: " gregkh
2021-03-15 13:53 ` [PATCH 5.10 119/290] net: dsa: tag_lan9303: " gregkh
2021-03-15 13:53 ` [PATCH 5.10 120/290] net: dsa: tag_edsa: " gregkh
2021-03-15 13:53 ` [PATCH 5.10 121/290] net: dsa: tag_brcm: " gregkh
2021-03-15 13:53 ` [PATCH 5.10 122/290] net: dsa: tag_dsa: " gregkh
2021-03-15 13:53 ` [PATCH 5.10 123/290] net: dsa: tag_gswip: " gregkh
2021-03-15 13:53 ` [PATCH 5.10 124/290] net: dsa: tag_ar9331: " gregkh
2021-03-15 13:53 ` [PATCH 5.10 125/290] net: dsa: tag_mtk: fix 802.1ad VLAN egress gregkh
2021-03-15 13:53 ` [PATCH 5.10 126/290] enetc: Fix unused var build warning for CONFIG_OF gregkh
2021-03-15 13:53 ` [PATCH 5.10 127/290] net: enetc: initialize RFS/RSS memories for unused ports too gregkh
2021-03-15 13:53 ` [PATCH 5.10 128/290] ath11k: peer delete synchronization with firmware gregkh
2021-03-15 13:53 ` [PATCH 5.10 129/290] ath11k: start vdev if a bss peer is already created gregkh
2021-03-15 13:53 ` [PATCH 5.10 130/290] ath11k: fix AP mode for QCA6390 gregkh
2021-03-15 13:53 ` [PATCH 5.10 131/290] i2c: rcar: faster irq code to minimize HW race condition gregkh
2021-03-15 13:53 ` [PATCH 5.10 132/290] i2c: rcar: optimize cacheline " gregkh
2021-03-15 13:53 ` [PATCH 5.10 133/290] scsi: ufs: WB is only available on LUN #0 to #7 gregkh
2021-03-15 13:53 ` [PATCH 5.10 134/290] udf: fix silent AED tagLocation corruption gregkh
2021-03-15 13:53 ` [PATCH 5.10 135/290] iommu/vt-d: Clear PRQ overflow only when PRQ is empty gregkh
2021-03-15 13:53 ` [PATCH 5.10 136/290] mmc: mxs-mmc: Fix a resource leak in an error handling path in mxs_mmc_probe() gregkh
2021-03-15 13:53 ` [PATCH 5.10 137/290] mmc: mediatek: fix race condition between msdc_request_timeout and irq gregkh
2021-03-15 13:53 ` [PATCH 5.10 138/290] mmc: sdhci-iproc: Add ACPI bindings for the RPi gregkh
2021-03-15 13:53 ` [PATCH 5.10 139/290] Platform: OLPC: Fix probe error handling gregkh
2021-03-15 13:53 ` [PATCH 5.10 140/290] powerpc/pci: Add ppc_md.discover_phbs() gregkh
2021-03-15 13:53 ` [PATCH 5.10 141/290] spi: stm32: make spurious and overrun interrupts visible gregkh
2021-03-15 13:53 ` [PATCH 5.10 142/290] powerpc: improve handling of unrecoverable system reset gregkh
2021-03-15 13:53 ` [PATCH 5.10 143/290] powerpc/perf: Record counter overflow always if SAMPLE_IP is unset gregkh
2021-03-15 13:53 ` [PATCH 5.10 144/290] HID: logitech-dj: add support for the new lightspeed connection iteration gregkh
2021-03-15 13:53 ` [PATCH 5.10 145/290] powerpc/64: Fix stack trace not displaying final frame gregkh
2021-03-15 13:53 ` [PATCH 5.10 146/290] iommu/amd: Fix performance counter initialization gregkh
2021-03-15 13:54 ` [PATCH 5.10 147/290] clk: qcom: gdsc: Implement NO_RET_PERIPH flag gregkh
2021-03-15 13:54 ` [PATCH 5.10 148/290] sparc32: Limit memblock allocation to low memory gregkh
2021-03-15 13:54 ` [PATCH 5.10 149/290] sparc64: Use arch_validate_flags() to validate ADI flag gregkh
2021-03-15 13:54 ` [PATCH 5.10 150/290] Input: applespi - dont wait for responses to commands indefinitely gregkh
2021-03-15 13:54 ` [PATCH 5.10 151/290] PCI: xgene-msi: Fix race in installing chained irq handler gregkh
2021-03-15 13:54 ` [PATCH 5.10 152/290] PCI: mediatek: Add missing of_node_put() to fix reference leak gregkh
2021-03-15 13:54 ` [PATCH 5.10 153/290] drivers/base: build kunit tests without structleak plugin gregkh
2021-03-15 13:54 ` [PATCH 5.10 154/290] PCI/LINK: Remove bandwidth notification gregkh
2021-03-16 10:05   ` Pavel Machek
2021-03-15 13:54 ` [PATCH 5.10 155/290] ext4: dont try to processed freed blocks until mballoc is initialized gregkh
2021-03-15 13:54 ` [PATCH 5.10 156/290] kbuild: clamp SUBLEVEL to 255 gregkh
2021-03-15 13:54 ` [PATCH 5.10 157/290] PCI: Fix pci_register_io_range() memory leak gregkh
2021-03-15 13:54 ` [PATCH 5.10 158/290] i40e: Fix memory leak in i40e_probe gregkh
2021-03-15 13:54 ` [PATCH 5.10 159/290] kasan: fix memory corruption in kasan_bitops_tags test gregkh
2021-03-15 13:54 ` [PATCH 5.10 160/290] s390/smp: __smp_rescan_cpus() - move cpumask away from stack gregkh
2021-03-15 13:54 ` [PATCH 5.10 161/290] drivers/base/memory: dont store phys_device in memory blocks gregkh
2021-03-15 13:54 ` [PATCH 5.10 162/290] sysctl.c: fix underflow value setting risk in vm_table gregkh
2021-03-15 13:54 ` [PATCH 5.10 163/290] scsi: libiscsi: Fix iscsi_prep_scsi_cmd_pdu() error handling gregkh
2021-03-15 13:54 ` [PATCH 5.10 164/290] scsi: target: core: Add cmd length set before cmd complete gregkh
2021-03-15 13:54 ` [PATCH 5.10 165/290] scsi: target: core: Prevent underflow for service actions gregkh
2021-03-15 13:54 ` [PATCH 5.10 166/290] clk: qcom: gpucc-msm8998: Add resets, cxc, fix flags on gpu_gx_gdsc gregkh
2021-03-15 13:54 ` [PATCH 5.10 167/290] mmc: sdhci: Update firmware interface API gregkh
2021-03-15 13:54 ` [PATCH 5.10 168/290] ARM: 9029/1: Make iwmmxt.S support Clangs integrated assembler gregkh
2021-03-15 13:54 ` [PATCH 5.10 169/290] ARM: assembler: introduce adr_l, ldr_l and str_l macros gregkh
2021-03-15 13:54 ` [PATCH 5.10 170/290] ARM: efistub: replace adrl pseudo-op with adr_l macro invocation gregkh
2021-03-15 13:54 ` [PATCH 5.10 171/290] ALSA: usb: Add Plantronics C320-M USB ctrl msg delay quirk gregkh
2021-03-15 13:54 ` [PATCH 5.10 172/290] ALSA: hda/hdmi: Cancel pending works before suspend gregkh
2021-03-15 13:54 ` [PATCH 5.10 173/290] ALSA: hda/conexant: Add quirk for mute LED control on HP ZBook G5 gregkh
2021-03-15 13:54 ` [PATCH 5.10 174/290] ALSA: hda/ca0132: Add Sound BlasterX AE-5 Plus support gregkh
2021-03-15 13:54 ` [PATCH 5.10 175/290] ALSA: hda: Drop the BATCH workaround for AMD controllers gregkh
2021-03-15 13:54 ` [PATCH 5.10 176/290] ALSA: hda: Flush pending unsolicited events before suspend gregkh
2021-03-15 13:54 ` [PATCH 5.10 177/290] ALSA: hda: Avoid spurious unsol event handling during S3/S4 gregkh
2021-03-15 13:54 ` [PATCH 5.10 178/290] ALSA: usb-audio: Fix "cannot get freq eq" errors on Dell AE515 sound bar gregkh
2021-03-15 13:54 ` [PATCH 5.10 179/290] ALSA: usb-audio: Apply the control quirk to Plantronics headsets gregkh
2021-03-15 13:54 ` [PATCH 5.10 180/290] ALSA: usb-audio: Disable USB autosuspend properly in setup_disable_autosuspend() gregkh
2021-03-15 13:54 ` [PATCH 5.10 181/290] ALSA: usb-audio: fix NULL ptr dereference in usb_audio_probe gregkh
2021-03-15 13:54 ` [PATCH 5.10 182/290] ALSA: usb-audio: fix use after free in usb_audio_disconnect gregkh
2021-03-15 13:54 ` [PATCH 5.10 183/290] Revert 95ebabde382c ("capabilities: Dont allow writing ambiguous v3 file capabilities") gregkh
2021-03-15 13:54 ` [PATCH 5.10 184/290] block: Discard page cache of zone reset target range gregkh
2021-03-15 13:54 ` [PATCH 5.10 185/290] block: Try to handle busy underlying device on discard gregkh
2021-03-15 13:54 ` [PATCH 5.10 186/290] arm64: kasan: fix page_alloc tagging with DEBUG_VIRTUAL gregkh
2021-03-15 13:54 ` [PATCH 5.10 187/290] arm64: mte: Map hotplugged memory as Normal Tagged gregkh
2021-03-15 13:54 ` [PATCH 5.10 188/290] arm64: perf: Fix 64-bit event counter read truncation gregkh
2021-03-15 13:54 ` [PATCH 5.10 189/290] s390/dasd: fix hanging DASD driver unbind gregkh
2021-03-15 13:54 ` [PATCH 5.10 190/290] s390/dasd: fix hanging IO request during " gregkh
2021-03-15 13:54 ` [PATCH 5.10 191/290] software node: Fix node registration gregkh
2021-03-15 13:54 ` [PATCH 5.10 192/290] xen/events: reset affinity of 2-level event when tearing it down gregkh
2021-03-15 13:54 ` [PATCH 5.10 193/290] mmc: mmci: Add MMC_CAP_NEED_RSP_BUSY for the stm32 variants gregkh
2021-03-15 13:54 ` [PATCH 5.10 194/290] mmc: core: Fix partition switch time for eMMC gregkh
2021-03-15 13:54 ` [PATCH 5.10 195/290] mmc: cqhci: Fix random crash when remove mmc module/card gregkh
2021-03-15 13:54 ` [PATCH 5.10 196/290] cifs: do not send close in compound create+close requests gregkh
2021-03-15 13:54 ` [PATCH 5.10 197/290] Goodix Fingerprint device is not a modem gregkh
2021-03-15 13:54 ` [PATCH 5.10 198/290] USB: gadget: udc: s3c2410_udc: fix return value check in s3c2410_udc_probe() gregkh
2021-03-15 13:54 ` [PATCH 5.10 199/290] USB: gadget: u_ether: Fix a configfs return code gregkh
2021-03-15 13:54 ` [PATCH 5.10 200/290] usb: gadget: f_uac2: always increase endpoint max_packet_size by one audio slot gregkh
2021-03-15 13:54 ` [PATCH 5.10 201/290] usb: gadget: f_uac1: stop playback on function disable gregkh
2021-03-15 13:54 ` [PATCH 5.10 202/290] usb: dwc3: qcom: Add missing DWC3 OF node refcount decrement gregkh
2021-03-15 13:54 ` [PATCH 5.10 203/290] usb: dwc3: qcom: add URS Host support for sdm845 ACPI boot gregkh
2021-03-15 13:54 ` [PATCH 5.10 204/290] usb: dwc3: qcom: add ACPI device id for sc8180x gregkh
2021-03-15 13:54 ` [PATCH 5.10 205/290] usb: dwc3: qcom: Honor wakeup enabled/disabled state gregkh
2021-03-15 13:54 ` [PATCH 5.10 206/290] USB: usblp: fix a hang in poll() if disconnected gregkh
2021-03-15 13:55 ` [PATCH 5.10 207/290] usb: renesas_usbhs: Clear PIPECFG for re-enabling pipe with other EPNUM gregkh
2021-03-15 13:55 ` [PATCH 5.10 208/290] usb: xhci: do not perform Soft Retry for some xHCI hosts gregkh
2021-03-15 13:55 ` [PATCH 5.10 209/290] xhci: Improve detection of device initiated wake signal gregkh
2021-03-15 13:55 ` [PATCH 5.10 210/290] usb: xhci: Fix ASMedia ASM1042A and ASM3242 DMA addressing gregkh
2021-03-15 13:55 ` [PATCH 5.10 211/290] xhci: Fix repeated xhci wake after suspend due to uncleared internal wake state gregkh
2021-03-15 13:55 ` [PATCH 5.10 212/290] USB: serial: io_edgeport: fix memory leak in edge_startup gregkh
2021-03-15 13:55 ` [PATCH 5.10 213/290] USB: serial: ch341: add new Product ID gregkh
2021-03-15 13:55 ` [PATCH 5.10 214/290] USB: serial: cp210x: add ID for Acuity Brands nLight Air Adapter gregkh
2021-03-15 13:55 ` [PATCH 5.10 215/290] USB: serial: cp210x: add some more GE USB IDs gregkh
2021-03-15 13:55 ` [PATCH 5.10 216/290] usbip: fix stub_dev to check for stream socket gregkh
2021-03-15 13:55 ` [PATCH 5.10 217/290] usbip: fix vhci_hcd " gregkh
2021-03-15 13:55 ` [PATCH 5.10 218/290] usbip: fix vudc " gregkh
2021-03-15 13:55 ` [PATCH 5.10 219/290] usbip: fix stub_dev usbip_sockfd_store() races leading to gpf gregkh
2021-03-15 13:55 ` [PATCH 5.10 220/290] usbip: fix vhci_hcd attach_store() " gregkh
2021-03-15 13:55 ` [PATCH 5.10 221/290] usbip: fix vudc usbip_sockfd_store " gregkh
2021-03-15 13:55 ` [PATCH 5.10 222/290] Revert "serial: max310x: rework RX interrupt handling" gregkh
2021-03-15 13:55 ` [PATCH 5.10 223/290] misc/pvpanic: Export module FDT device table gregkh
2021-03-15 13:55 ` [PATCH 5.10 224/290] misc: fastrpc: restrict user apps from sending kernel RPC messages gregkh
2021-03-15 13:55 ` [PATCH 5.10 225/290] staging: rtl8192u: fix ->ssid overflow in r8192_wx_set_scan() gregkh
2021-03-15 13:55 ` [PATCH 5.10 226/290] staging: rtl8188eu: prevent ->ssid overflow in rtw_wx_set_scan() gregkh
2021-03-15 13:55 ` [PATCH 5.10 227/290] staging: rtl8712: unterminated string leads to read overflow gregkh
2021-03-15 13:55 ` [PATCH 5.10 228/290] staging: rtl8188eu: fix potential memory corruption in rtw_check_beacon_data() gregkh
2021-03-15 13:55 ` [PATCH 5.10 229/290] staging: ks7010: prevent buffer overflow in ks_wlan_set_scan() gregkh
2021-03-15 13:55 ` [PATCH 5.10 230/290] staging: rtl8712: Fix possible buffer overflow in r8712_sitesurvey_cmd gregkh
2021-03-15 13:55 ` [PATCH 5.10 231/290] staging: rtl8192e: Fix possible buffer overflow in _rtl92e_wx_set_scan gregkh
2021-03-15 13:55 ` [PATCH 5.10 232/290] staging: comedi: addi_apci_1032: Fix endian problem for COS sample gregkh
2021-03-15 13:55 ` [PATCH 5.10 233/290] staging: comedi: addi_apci_1500: Fix endian problem for command sample gregkh
2021-03-15 13:55 ` [PATCH 5.10 234/290] staging: comedi: adv_pci1710: Fix endian problem for AI command data gregkh
2021-03-15 13:55 ` [PATCH 5.10 235/290] staging: comedi: das6402: " gregkh
2021-03-15 13:55 ` [PATCH 5.10 236/290] staging: comedi: das800: " gregkh
2021-03-15 13:55 ` [PATCH 5.10 237/290] staging: comedi: dmm32at: " gregkh
2021-03-15 13:55 ` [PATCH 5.10 238/290] staging: comedi: me4000: " gregkh
2021-03-15 13:55 ` [PATCH 5.10 239/290] staging: comedi: pcl711: " gregkh
2021-03-15 13:55 ` [PATCH 5.10 240/290] staging: comedi: pcl818: " gregkh
2021-03-15 13:55 ` [PATCH 5.10 241/290] sh_eth: fix TRSCER mask for R7S72100 gregkh
2021-03-15 13:55 ` [PATCH 5.10 242/290] cpufreq: qcom-hw: fix dereferencing freed memory data gregkh
2021-03-15 13:55 ` [PATCH 5.10 243/290] cpufreq: qcom-hw: Fix return value check in qcom_cpufreq_hw_cpu_init() gregkh
2021-03-15 13:55 ` [PATCH 5.10 244/290] arm64/mm: Fix pfn_valid() for ZONE_DEVICE based memory gregkh
2021-03-15 13:55   ` gregkh
2021-03-15 13:55 ` [PATCH 5.10 245/290] SUNRPC: Set memalloc_nofs_save() for sync tasks gregkh
2021-03-15 13:55 ` [PATCH 5.10 246/290] NFS: Dont revalidate the directory permissions on a lookup failure gregkh
2021-03-15 13:55 ` [PATCH 5.10 247/290] NFS: Dont gratuitously clear the inode cache when lookup failed gregkh
2021-03-15 13:55 ` [PATCH 5.10 248/290] NFSv4.2: fix return value of _nfs4_get_security_label() gregkh
2021-03-15 13:55 ` [PATCH 5.10 249/290] block: rsxx: fix error return code of rsxx_pci_probe() gregkh
2021-03-15 13:55 ` [PATCH 5.10 250/290] nvme-fc: fix racing controller reset and create association gregkh
2021-03-15 13:55 ` [PATCH 5.10 251/290] configfs: fix a use-after-free in __configfs_open_file gregkh
2021-03-15 13:55 ` [PATCH 5.10 252/290] arm64: mm: use a 48-bit ID map when possible on 52-bit VA builds gregkh
2021-03-15 13:55 ` [PATCH 5.10 253/290] perf/core: Flush PMU internal buffers for per-CPU events gregkh
2021-03-15 13:55 ` [PATCH 5.10 254/290] perf/x86/intel: Set PERF_ATTACH_SCHED_CB for large PEBS and LBR gregkh
2021-03-15 13:55 ` [PATCH 5.10 255/290] hrtimer: Update softirq_expires_next correctly after __hrtimer_get_next_event() gregkh
2021-03-15 13:55 ` [PATCH 5.10 256/290] powerpc/64s/exception: Clean up a missed SRR specifier gregkh
2021-03-15 13:55 ` [PATCH 5.10 257/290] seqlock,lockdep: Fix seqcount_latch_init() gregkh
2021-03-15 13:55 ` [PATCH 5.10 258/290] stop_machine: mark helpers __always_inline gregkh
2021-03-15 13:55 ` [PATCH 5.10 259/290] include/linux/sched/mm.h: use rcu_dereference in in_vfork() gregkh
2021-03-15 13:55 ` [PATCH 5.10 260/290] prctl: fix PR_SET_MM_AUXV kernel stack leak gregkh
2021-03-15 13:55 ` [PATCH 5.10 261/290] zram: fix return value on writeback_store gregkh
2021-03-15 13:55 ` [PATCH 5.10 262/290] linux/compiler-clang.h: define HAVE_BUILTIN_BSWAP* gregkh
2021-03-15 13:55 ` [PATCH 5.10 263/290] sched/membarrier: fix missing local execution of ipi_sync_rq_state() gregkh
2021-03-15 13:55 ` [PATCH 5.10 264/290] efi: stub: omit SetVirtualAddressMap() if marked unsupported in RT_PROP table gregkh
2021-03-15 13:55 ` [PATCH 5.10 265/290] powerpc/64s: Fix instruction encoding for lis in ppc_function_entry() gregkh
2021-03-15 13:55 ` [PATCH 5.10 266/290] powerpc: Fix inverted SET_FULL_REGS bitop gregkh
2021-03-15 13:56 ` [PATCH 5.10 267/290] powerpc: Fix missing declaration of [en/dis]able_kernel_vsx() gregkh
2021-03-15 14:15   ` Geert Uytterhoeven
2021-03-22  6:16     ` Christophe Leroy
2021-03-22  8:15       ` Greg KH
2021-03-15 13:56 ` [PATCH 5.10 268/290] binfmt_misc: fix possible deadlock in bm_register_write gregkh
2021-03-15 13:56 ` [PATCH 5.10 269/290] x86/unwind/orc: Disable KASAN checking in the ORC unwinder, part 2 gregkh
2021-03-15 13:56 ` [PATCH 5.10 270/290] x86/sev-es: Introduce ip_within_syscall_gap() helper gregkh
2021-03-15 13:56 ` [PATCH 5.10 271/290] x86/sev-es: Check regs->sp is trusted before adjusting #VC IST stack gregkh
2021-03-15 13:56 ` [PATCH 5.10 272/290] x86/entry: Move nmi entry/exit into common code gregkh
2021-03-15 13:56 ` [PATCH 5.10 273/290] x86/sev-es: Correctly track IRQ states in runtime #VC handler gregkh
2021-03-15 13:56 ` [PATCH 5.10 274/290] x86/sev-es: Use __copy_from_user_inatomic() gregkh
2021-03-15 13:56 ` [PATCH 5.10 275/290] x86/entry: Fix entry/exit mismatch on failed fast 32-bit syscalls gregkh
2021-03-15 13:56 ` [PATCH 5.10 276/290] KVM: x86: Ensure deadline timer has truly expired before posting its IRQ gregkh
2021-03-15 14:21   ` gregkh
2021-03-15 14:22 ` [PATCH 5.10 277/290] KVM: kvmclock: Fix vCPUs > 64 cant be online/hotpluged gregkh
2021-03-15 14:22   ` [PATCH 5.10 278/290] KVM: arm64: Fix range alignment when walking page tables gregkh
2021-03-15 14:22   ` [PATCH 5.10 279/290] KVM: arm64: Avoid corrupting vCPU context register in guest exit gregkh
2021-03-15 14:22   ` [PATCH 5.10 280/290] KVM: arm64: nvhe: Save the SPE context early gregkh
2021-03-15 14:22   ` [PATCH 5.10 281/290] KVM: arm64: Reject VM creation when the default IPA size is unsupported gregkh
2021-03-15 14:22   ` [PATCH 5.10 282/290] KVM: arm64: Fix exclusive limit for IPA size gregkh
2021-03-15 14:22   ` [PATCH 5.10 283/290] mm/userfaultfd: fix memory corruption due to writeprotect gregkh
2021-03-15 14:22   ` [PATCH 5.10 284/290] mm/madvise: replace ptrace attach requirement for process_madvise gregkh
2021-03-15 14:22   ` [PATCH 5.10 285/290] KVM: arm64: Ensure I-cache isolation between vcpus of a same VM gregkh
2021-03-15 14:22   ` gregkh [this message]
2021-03-15 14:22   ` [PATCH 5.10 287/290] xen/events: dont unmask an event channel when an eoi is pending gregkh
2021-03-15 14:22   ` [PATCH 5.10 288/290] xen/events: avoid handling the same event on two cpus at the same time gregkh
2021-03-15 14:22   ` [PATCH 5.10 289/290] KVM: arm64: Fix nVHE hyp panic host context restore gregkh
2021-03-15 14:22     ` gregkh
2021-03-15 14:22   ` [PATCH 5.10 290/290] RDMA/umem: Use ib_dma_max_seg_size instead of dma_get_max_seg_size gregkh
2021-03-15 17:07 ` [PATCH 5.10 000/290] 5.10.24-rc1 review Jon Hunter
2021-03-19  9:50   ` Greg KH
2021-03-15 20:36 ` Florian Fainelli
2021-03-19  9:51   ` Greg KH
2021-03-15 21:39 ` Pavel Machek
2021-03-15 22:57 ` Jason Self
2021-03-16  5:20 ` Naresh Kamboju
2021-03-16 21:14 ` Guenter Roeck
2021-03-17  1:11 ` Samuel Zou
2021-03-17  3:01 ` Ross Schmidt
2021-03-19  1:51 ` Samuel Zou

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=20210315135551.704702873@linuxfoundation.org \
    --to=gregkh@linuxfoundation.org \
    --cc=aarcange@redhat.com \
    --cc=akpm@linux-foundation.org \
    --cc=bhe@redhat.com \
    --cc=bp@alien8.de \
    --cc=cai@lca.pw \
    --cc=chris@chris-wilson.co.uk \
    --cc=david@redhat.com \
    --cc=hpa@zytor.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=lma@semihalf.com \
    --cc=mgorman@suse.de \
    --cc=mhocko@kernel.org \
    --cc=mingo@redhat.com \
    --cc=rppt@linux.ibm.com \
    --cc=stable@vger.kernel.org \
    --cc=tglx@linutronix.de \
    --cc=tomi.p.sarvela@intel.com \
    --cc=torvalds@linux-foundation.org \
    --cc=vbabka@suse.cz \
    /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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.