All of lore.kernel.org
 help / color / mirror / Atom feed
From: Suren Baghdasaryan <surenb-hpIqsD4AKlfQT0dZR+AlfA@public.gmane.org>
To: akpm-de/tnXTf+JLsfHDXvbKv3WD2FQJk+8+b@public.gmane.org
Cc: kent.overstreet-fxUVXftIFDnyG1zEObXtfA@public.gmane.org,
	mhocko-IBi9RG/b67k@public.gmane.org,
	vbabka-AlSwsSmVLrQ@public.gmane.org,
	hannes-druUgvl0LCNAfugRpC6u6w@public.gmane.org,
	roman.gushchin-fxUVXftIFDnyG1zEObXtfA@public.gmane.org,
	mgorman-l3A5Bk7waGM@public.gmane.org,
	dave-h16yJtLeMjHk1uMJSBkQmQ@public.gmane.org,
	willy-wEGCiKHe2LqWVfeAwA7xHQ@public.gmane.org,
	liam.howlett-QHcLZuEGTsvQT0dZR+AlfA@public.gmane.org,
	corbet-T1hC0tSOHrs@public.gmane.org,
	void-gq6j2QGBifHby3iVrkZq2A@public.gmane.org,
	peterz-wEGCiKHe2LqWVfeAwA7xHQ@public.gmane.org,
	juri.lelli-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org,
	ldufour-tEXmvtCZX7AybS5Ee8rs3A@public.gmane.org,
	catalin.marinas-5wv7dgnIgG8@public.gmane.org,
	will-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org,
	arnd-r2nGTMty4D4@public.gmane.org,
	tglx-hfZtesqFncYOwBW4kG4KsQ@public.gmane.org,
	mingo-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org,
	dave.hansen-VuQAYsv1563Yd54FQh9/CA@public.gmane.org,
	x86-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org,
	peterx-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org,
	david-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org,
	axboe-tSWWG44O7X1aa/9Udqfwiw@public.gmane.org,
	mcgrof-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org,
	masahiroy-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org,
	nathan-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org,
	dennis-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org,
	tj-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org,
	muchun.song-fxUVXftIFDnyG1zEObXtfA@public.gmane.org,
	rppt-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org,
	paulmck-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org,
	pasha.tatashin-2EmBfe737+LQT0dZR+AlfA@public.gmane.org,
	yosryahmed-hpIqsD4AKlfQT0dZR+AlfA@public.gmane.org,
	yuzhao-hpIqsD4AKlfQT0dZR+AlfA@public.gmane.org,
	dhowells-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org,
	hughd-hpIqsD4AKlfQT0dZR+AlfA@public.gmane.org,
	andreyknvl-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org,
	keescook-F7+t8E8rja9g9hUCZPvPmw@public.gmane.org
Subject: [PATCH 33/40] move stack capture functionality into a separate function for reuse
Date: Mon,  1 May 2023 09:54:43 -0700	[thread overview]
Message-ID: <20230501165450.15352-34-surenb@google.com> (raw)
In-Reply-To: <20230501165450.15352-1-surenb-hpIqsD4AKlfQT0dZR+AlfA@public.gmane.org>

Make save_stack() function part of stackdepot API to be used outside of
page_owner. Also rename task_struct's in_page_owner to in_capture_stack
flag to better convey the wider use of this flag.

Signed-off-by: Suren Baghdasaryan <surenb-hpIqsD4AKlfQT0dZR+AlfA@public.gmane.org>
---
 include/linux/sched.h      |  6 ++--
 include/linux/stackdepot.h | 16 +++++++++
 lib/stackdepot.c           | 68 ++++++++++++++++++++++++++++++++++++++
 mm/page_owner.c            | 52 ++---------------------------
 4 files changed, 90 insertions(+), 52 deletions(-)

diff --git a/include/linux/sched.h b/include/linux/sched.h
index 33708bf8f191..6eca46ab6d78 100644
--- a/include/linux/sched.h
+++ b/include/linux/sched.h
@@ -942,9 +942,9 @@ struct task_struct {
 	/* Stalled due to lack of memory */
 	unsigned			in_memstall:1;
 #endif
-#ifdef CONFIG_PAGE_OWNER
-	/* Used by page_owner=on to detect recursion in page tracking. */
-	unsigned			in_page_owner:1;
+#ifdef CONFIG_STACKDEPOT
+	/* Used by stack_depot_capture_stack to detect recursion. */
+	unsigned			in_capture_stack:1;
 #endif
 #ifdef CONFIG_EVENTFD
 	/* Recursion prevention for eventfd_signal() */
diff --git a/include/linux/stackdepot.h b/include/linux/stackdepot.h
index e58306783d8e..baf7e80cf449 100644
--- a/include/linux/stackdepot.h
+++ b/include/linux/stackdepot.h
@@ -164,4 +164,20 @@ depot_stack_handle_t __must_check stack_depot_set_extra_bits(
  */
 unsigned int stack_depot_get_extra_bits(depot_stack_handle_t handle);
 
+/**
+ * stack_depot_capture_init - Initialize stack depot capture mechanism
+ *
+ * Return: Stack depot initialization status
+ */
+bool stack_depot_capture_init(void);
+
+/**
+ * stack_depot_capture_stack - Capture current stack trace into stack depot
+ *
+ * @flags:	Allocation GFP flags
+ *
+ * Return: Handle of the stack trace stored in depot, 0 on failure
+ */
+depot_stack_handle_t stack_depot_capture_stack(gfp_t flags);
+
 #endif
diff --git a/lib/stackdepot.c b/lib/stackdepot.c
index 2f5aa851834e..c7e5e22fcb16 100644
--- a/lib/stackdepot.c
+++ b/lib/stackdepot.c
@@ -539,3 +539,71 @@ unsigned int stack_depot_get_extra_bits(depot_stack_handle_t handle)
 	return parts.extra;
 }
 EXPORT_SYMBOL(stack_depot_get_extra_bits);
+
+static depot_stack_handle_t recursion_handle;
+static depot_stack_handle_t failure_handle;
+
+static __always_inline depot_stack_handle_t create_custom_stack(void)
+{
+	unsigned long entries[4];
+	unsigned int nr_entries;
+
+	nr_entries = stack_trace_save(entries, ARRAY_SIZE(entries), 0);
+	return stack_depot_save(entries, nr_entries, GFP_KERNEL);
+}
+
+static noinline void register_recursion_stack(void)
+{
+	recursion_handle = create_custom_stack();
+}
+
+static noinline void register_failure_stack(void)
+{
+	failure_handle = create_custom_stack();
+}
+
+bool stack_depot_capture_init(void)
+{
+	static DEFINE_MUTEX(stack_depot_capture_init_mutex);
+	static bool utility_stacks_ready;
+
+	mutex_lock(&stack_depot_capture_init_mutex);
+	if (!utility_stacks_ready) {
+		register_recursion_stack();
+		register_failure_stack();
+		utility_stacks_ready = true;
+	}
+	mutex_unlock(&stack_depot_capture_init_mutex);
+
+	return utility_stacks_ready;
+}
+
+/* TODO: teach stack_depot_capture_stack to use off stack temporal storage */
+#define CAPTURE_STACK_DEPTH (16)
+
+depot_stack_handle_t stack_depot_capture_stack(gfp_t flags)
+{
+	unsigned long entries[CAPTURE_STACK_DEPTH];
+	depot_stack_handle_t handle;
+	unsigned int nr_entries;
+
+	/*
+	 * Avoid recursion.
+	 *
+	 * Sometimes page metadata allocation tracking requires more
+	 * memory to be allocated:
+	 * - when new stack trace is saved to stack depot
+	 * - when backtrace itself is calculated (ia64)
+	 */
+	if (current->in_capture_stack)
+		return recursion_handle;
+	current->in_capture_stack = 1;
+
+	nr_entries = stack_trace_save(entries, ARRAY_SIZE(entries), 2);
+	handle = stack_depot_save(entries, nr_entries, flags);
+	if (!handle)
+		handle = failure_handle;
+
+	current->in_capture_stack = 0;
+	return handle;
+}
diff --git a/mm/page_owner.c b/mm/page_owner.c
index 8b6086c666e6..9fafbc290d5b 100644
--- a/mm/page_owner.c
+++ b/mm/page_owner.c
@@ -15,12 +15,6 @@
 
 #include "internal.h"
 
-/*
- * TODO: teach PAGE_OWNER_STACK_DEPTH (__dump_page_owner and save_stack)
- * to use off stack temporal storage
- */
-#define PAGE_OWNER_STACK_DEPTH (16)
-
 struct page_owner {
 	unsigned short order;
 	short last_migrate_reason;
@@ -37,8 +31,6 @@ struct page_owner {
 static bool page_owner_enabled __initdata;
 DEFINE_STATIC_KEY_FALSE(page_owner_inited);
 
-static depot_stack_handle_t dummy_handle;
-static depot_stack_handle_t failure_handle;
 static depot_stack_handle_t early_handle;
 
 static void init_early_allocated_pages(void);
@@ -68,16 +60,6 @@ static __always_inline depot_stack_handle_t create_dummy_stack(void)
 	return stack_depot_save(entries, nr_entries, GFP_KERNEL);
 }
 
-static noinline void register_dummy_stack(void)
-{
-	dummy_handle = create_dummy_stack();
-}
-
-static noinline void register_failure_stack(void)
-{
-	failure_handle = create_dummy_stack();
-}
-
 static noinline void register_early_stack(void)
 {
 	early_handle = create_dummy_stack();
@@ -88,8 +70,7 @@ static __init void init_page_owner(void)
 	if (!page_owner_enabled)
 		return;
 
-	register_dummy_stack();
-	register_failure_stack();
+	stack_depot_capture_init();
 	register_early_stack();
 	static_branch_enable(&page_owner_inited);
 	init_early_allocated_pages();
@@ -107,33 +88,6 @@ static inline struct page_owner *get_page_owner(struct page_ext *page_ext)
 	return (void *)page_ext + page_owner_ops.offset;
 }
 
-static noinline depot_stack_handle_t save_stack(gfp_t flags)
-{
-	unsigned long entries[PAGE_OWNER_STACK_DEPTH];
-	depot_stack_handle_t handle;
-	unsigned int nr_entries;
-
-	/*
-	 * Avoid recursion.
-	 *
-	 * Sometimes page metadata allocation tracking requires more
-	 * memory to be allocated:
-	 * - when new stack trace is saved to stack depot
-	 * - when backtrace itself is calculated (ia64)
-	 */
-	if (current->in_page_owner)
-		return dummy_handle;
-	current->in_page_owner = 1;
-
-	nr_entries = stack_trace_save(entries, ARRAY_SIZE(entries), 2);
-	handle = stack_depot_save(entries, nr_entries, flags);
-	if (!handle)
-		handle = failure_handle;
-
-	current->in_page_owner = 0;
-	return handle;
-}
-
 void __reset_page_owner(struct page *page, unsigned short order)
 {
 	int i;
@@ -146,7 +100,7 @@ void __reset_page_owner(struct page *page, unsigned short order)
 	if (unlikely(!page_ext))
 		return;
 
-	handle = save_stack(GFP_NOWAIT | __GFP_NOWARN);
+	handle = stack_depot_capture_stack(GFP_NOWAIT | __GFP_NOWARN);
 	for (i = 0; i < (1 << order); i++) {
 		__clear_bit(PAGE_EXT_OWNER_ALLOCATED, &page_ext->flags);
 		page_owner = get_page_owner(page_ext);
@@ -189,7 +143,7 @@ noinline void __set_page_owner(struct page *page, unsigned short order,
 	struct page_ext *page_ext;
 	depot_stack_handle_t handle;
 
-	handle = save_stack(gfp_mask);
+	handle = stack_depot_capture_stack(gfp_mask);
 
 	page_ext = page_ext_get(page);
 	if (unlikely(!page_ext))
-- 
2.40.1.495.gc816e09b53d-goog


WARNING: multiple messages have this Message-ID (diff)
From: Suren Baghdasaryan <surenb@google.com>
To: akpm@linux-foundation.org
Cc: kent.overstreet@linux.dev, mhocko@suse.com, vbabka@suse.cz,
	hannes@cmpxchg.org, roman.gushchin@linux.dev, mgorman@suse.de,
	dave@stgolabs.net, willy@infradead.org, liam.howlett@oracle.com,
	corbet@lwn.net, void@manifault.com, peterz@infradead.org,
	juri.lelli@redhat.com, ldufour@linux.ibm.com,
	catalin.marinas@arm.com, will@kernel.org, arnd@arndb.de,
	tglx@linutronix.de, mingo@redhat.com,
	dave.hansen@linux.intel.com, x86@kernel.org, peterx@redhat.com,
	david@redhat.com, axboe@kernel.dk, mcgrof@kernel.org,
	masahiroy@kernel.org, nathan@kernel.org, dennis@kernel.org,
	tj@kernel.org, muchun.song@linux.dev, rppt@kernel.org,
	paulmck@kernel.org, pasha.tatashin@soleen.com,
	yosryahmed@google.com, yuzhao@google.com, dhowells@redhat.com,
	hughd@google.com, andreyknvl@gmail.com, keescook@chromium.org,
	ndesaulniers@google.com, gregkh@linuxfoundation.org,
	ebiggers@google.com, ytcoode@gmail.com,
	vincent.guittot@linaro.org, dietmar.eggemann@arm.com,
	rostedt@goodmis.org, bsegall@google.com, bristot@redhat.com,
	vschneid@redhat.com, cl@linux.com, penberg@kernel.org,
	iamjoonsoo.kim@lge.com, 42.hyeyoo@gmail.com, glider@google.com,
	elver@google.com, dvyukov@google.com, shakeelb@google.com,
	songmuchun@bytedance.com, jbaron@akamai.com, rientjes@google.com,
	minchan@google.com, kaleshsingh@google.com, surenb@google.com,
	kernel-team@android.com, linux-doc@vger.kernel.org,
	linux-kernel@vger.kernel.org, iommu@lists.linux.dev,
	linux-arch@vger.kernel.org, linux-fsdevel@vger.kernel.org,
	linux-mm@kvack.org, linux-modules@vger.kernel.org,
	kasan-dev@googlegroups.com, cgroups@vger.kernel.org
Subject: [PATCH 33/40] move stack capture functionality into a separate function for reuse
Date: Mon,  1 May 2023 09:54:43 -0700	[thread overview]
Message-ID: <20230501165450.15352-34-surenb@google.com> (raw)
In-Reply-To: <20230501165450.15352-1-surenb@google.com>

Make save_stack() function part of stackdepot API to be used outside of
page_owner. Also rename task_struct's in_page_owner to in_capture_stack
flag to better convey the wider use of this flag.

Signed-off-by: Suren Baghdasaryan <surenb@google.com>
---
 include/linux/sched.h      |  6 ++--
 include/linux/stackdepot.h | 16 +++++++++
 lib/stackdepot.c           | 68 ++++++++++++++++++++++++++++++++++++++
 mm/page_owner.c            | 52 ++---------------------------
 4 files changed, 90 insertions(+), 52 deletions(-)

diff --git a/include/linux/sched.h b/include/linux/sched.h
index 33708bf8f191..6eca46ab6d78 100644
--- a/include/linux/sched.h
+++ b/include/linux/sched.h
@@ -942,9 +942,9 @@ struct task_struct {
 	/* Stalled due to lack of memory */
 	unsigned			in_memstall:1;
 #endif
-#ifdef CONFIG_PAGE_OWNER
-	/* Used by page_owner=on to detect recursion in page tracking. */
-	unsigned			in_page_owner:1;
+#ifdef CONFIG_STACKDEPOT
+	/* Used by stack_depot_capture_stack to detect recursion. */
+	unsigned			in_capture_stack:1;
 #endif
 #ifdef CONFIG_EVENTFD
 	/* Recursion prevention for eventfd_signal() */
diff --git a/include/linux/stackdepot.h b/include/linux/stackdepot.h
index e58306783d8e..baf7e80cf449 100644
--- a/include/linux/stackdepot.h
+++ b/include/linux/stackdepot.h
@@ -164,4 +164,20 @@ depot_stack_handle_t __must_check stack_depot_set_extra_bits(
  */
 unsigned int stack_depot_get_extra_bits(depot_stack_handle_t handle);
 
+/**
+ * stack_depot_capture_init - Initialize stack depot capture mechanism
+ *
+ * Return: Stack depot initialization status
+ */
+bool stack_depot_capture_init(void);
+
+/**
+ * stack_depot_capture_stack - Capture current stack trace into stack depot
+ *
+ * @flags:	Allocation GFP flags
+ *
+ * Return: Handle of the stack trace stored in depot, 0 on failure
+ */
+depot_stack_handle_t stack_depot_capture_stack(gfp_t flags);
+
 #endif
diff --git a/lib/stackdepot.c b/lib/stackdepot.c
index 2f5aa851834e..c7e5e22fcb16 100644
--- a/lib/stackdepot.c
+++ b/lib/stackdepot.c
@@ -539,3 +539,71 @@ unsigned int stack_depot_get_extra_bits(depot_stack_handle_t handle)
 	return parts.extra;
 }
 EXPORT_SYMBOL(stack_depot_get_extra_bits);
+
+static depot_stack_handle_t recursion_handle;
+static depot_stack_handle_t failure_handle;
+
+static __always_inline depot_stack_handle_t create_custom_stack(void)
+{
+	unsigned long entries[4];
+	unsigned int nr_entries;
+
+	nr_entries = stack_trace_save(entries, ARRAY_SIZE(entries), 0);
+	return stack_depot_save(entries, nr_entries, GFP_KERNEL);
+}
+
+static noinline void register_recursion_stack(void)
+{
+	recursion_handle = create_custom_stack();
+}
+
+static noinline void register_failure_stack(void)
+{
+	failure_handle = create_custom_stack();
+}
+
+bool stack_depot_capture_init(void)
+{
+	static DEFINE_MUTEX(stack_depot_capture_init_mutex);
+	static bool utility_stacks_ready;
+
+	mutex_lock(&stack_depot_capture_init_mutex);
+	if (!utility_stacks_ready) {
+		register_recursion_stack();
+		register_failure_stack();
+		utility_stacks_ready = true;
+	}
+	mutex_unlock(&stack_depot_capture_init_mutex);
+
+	return utility_stacks_ready;
+}
+
+/* TODO: teach stack_depot_capture_stack to use off stack temporal storage */
+#define CAPTURE_STACK_DEPTH (16)
+
+depot_stack_handle_t stack_depot_capture_stack(gfp_t flags)
+{
+	unsigned long entries[CAPTURE_STACK_DEPTH];
+	depot_stack_handle_t handle;
+	unsigned int nr_entries;
+
+	/*
+	 * Avoid recursion.
+	 *
+	 * Sometimes page metadata allocation tracking requires more
+	 * memory to be allocated:
+	 * - when new stack trace is saved to stack depot
+	 * - when backtrace itself is calculated (ia64)
+	 */
+	if (current->in_capture_stack)
+		return recursion_handle;
+	current->in_capture_stack = 1;
+
+	nr_entries = stack_trace_save(entries, ARRAY_SIZE(entries), 2);
+	handle = stack_depot_save(entries, nr_entries, flags);
+	if (!handle)
+		handle = failure_handle;
+
+	current->in_capture_stack = 0;
+	return handle;
+}
diff --git a/mm/page_owner.c b/mm/page_owner.c
index 8b6086c666e6..9fafbc290d5b 100644
--- a/mm/page_owner.c
+++ b/mm/page_owner.c
@@ -15,12 +15,6 @@
 
 #include "internal.h"
 
-/*
- * TODO: teach PAGE_OWNER_STACK_DEPTH (__dump_page_owner and save_stack)
- * to use off stack temporal storage
- */
-#define PAGE_OWNER_STACK_DEPTH (16)
-
 struct page_owner {
 	unsigned short order;
 	short last_migrate_reason;
@@ -37,8 +31,6 @@ struct page_owner {
 static bool page_owner_enabled __initdata;
 DEFINE_STATIC_KEY_FALSE(page_owner_inited);
 
-static depot_stack_handle_t dummy_handle;
-static depot_stack_handle_t failure_handle;
 static depot_stack_handle_t early_handle;
 
 static void init_early_allocated_pages(void);
@@ -68,16 +60,6 @@ static __always_inline depot_stack_handle_t create_dummy_stack(void)
 	return stack_depot_save(entries, nr_entries, GFP_KERNEL);
 }
 
-static noinline void register_dummy_stack(void)
-{
-	dummy_handle = create_dummy_stack();
-}
-
-static noinline void register_failure_stack(void)
-{
-	failure_handle = create_dummy_stack();
-}
-
 static noinline void register_early_stack(void)
 {
 	early_handle = create_dummy_stack();
@@ -88,8 +70,7 @@ static __init void init_page_owner(void)
 	if (!page_owner_enabled)
 		return;
 
-	register_dummy_stack();
-	register_failure_stack();
+	stack_depot_capture_init();
 	register_early_stack();
 	static_branch_enable(&page_owner_inited);
 	init_early_allocated_pages();
@@ -107,33 +88,6 @@ static inline struct page_owner *get_page_owner(struct page_ext *page_ext)
 	return (void *)page_ext + page_owner_ops.offset;
 }
 
-static noinline depot_stack_handle_t save_stack(gfp_t flags)
-{
-	unsigned long entries[PAGE_OWNER_STACK_DEPTH];
-	depot_stack_handle_t handle;
-	unsigned int nr_entries;
-
-	/*
-	 * Avoid recursion.
-	 *
-	 * Sometimes page metadata allocation tracking requires more
-	 * memory to be allocated:
-	 * - when new stack trace is saved to stack depot
-	 * - when backtrace itself is calculated (ia64)
-	 */
-	if (current->in_page_owner)
-		return dummy_handle;
-	current->in_page_owner = 1;
-
-	nr_entries = stack_trace_save(entries, ARRAY_SIZE(entries), 2);
-	handle = stack_depot_save(entries, nr_entries, flags);
-	if (!handle)
-		handle = failure_handle;
-
-	current->in_page_owner = 0;
-	return handle;
-}
-
 void __reset_page_owner(struct page *page, unsigned short order)
 {
 	int i;
@@ -146,7 +100,7 @@ void __reset_page_owner(struct page *page, unsigned short order)
 	if (unlikely(!page_ext))
 		return;
 
-	handle = save_stack(GFP_NOWAIT | __GFP_NOWARN);
+	handle = stack_depot_capture_stack(GFP_NOWAIT | __GFP_NOWARN);
 	for (i = 0; i < (1 << order); i++) {
 		__clear_bit(PAGE_EXT_OWNER_ALLOCATED, &page_ext->flags);
 		page_owner = get_page_owner(page_ext);
@@ -189,7 +143,7 @@ noinline void __set_page_owner(struct page *page, unsigned short order,
 	struct page_ext *page_ext;
 	depot_stack_handle_t handle;
 
-	handle = save_stack(gfp_mask);
+	handle = stack_depot_capture_stack(gfp_mask);
 
 	page_ext = page_ext_get(page);
 	if (unlikely(!page_ext))
-- 
2.40.1.495.gc816e09b53d-goog


  parent reply	other threads:[~2023-05-01 16:54 UTC|newest]

Thread overview: 320+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-05-01 16:54 [PATCH 00/40] Memory allocation profiling Suren Baghdasaryan
2023-05-01 16:54 ` Suren Baghdasaryan
2023-05-01 16:54 ` [PATCH 01/40] lib/string_helpers: Drop space in string_get_size's output Suren Baghdasaryan
2023-05-01 16:54   ` Suren Baghdasaryan
     [not found]   ` <20230501165450.15352-2-surenb-hpIqsD4AKlfQT0dZR+AlfA@public.gmane.org>
2023-05-01 18:13     ` Davidlohr Bueso
2023-05-01 18:13       ` Davidlohr Bueso
2023-05-01 19:35       ` Kent Overstreet
2023-05-01 19:57         ` Andy Shevchenko
2023-05-01 19:57           ` Andy Shevchenko
2023-05-01 21:16           ` Kent Overstreet
2023-05-01 21:16             ` Kent Overstreet
2023-05-01 21:33           ` Liam R. Howlett
2023-05-01 21:33             ` Liam R. Howlett
2023-05-02  0:11             ` Kent Overstreet
2023-05-02  0:11               ` Kent Overstreet
2023-05-02  0:53           ` Kent Overstreet
2023-05-02  0:53             ` Kent Overstreet
2023-05-02  2:22         ` James Bottomley
     [not found]           ` <b6b472b65b76e95bb4c7fc7eac1ee296fdbb64fd.camel-d9PhHud1JfjCXq6kfMZ53/egYHeGw8Jk@public.gmane.org>
2023-05-02  3:17             ` Kent Overstreet
2023-05-02  3:17               ` Kent Overstreet
     [not found]               ` <ZFCA2FF+9MI8LI5i-jC9Py7bek1znysI04z7BkA@public.gmane.org>
2023-05-02  5:33                 ` Andy Shevchenko
2023-05-02  5:33                   ` Andy Shevchenko
2023-05-02  6:21                   ` Kent Overstreet
2023-05-02  6:21                     ` Kent Overstreet
2023-05-02 15:19                     ` Andy Shevchenko
2023-05-02 15:19                       ` Andy Shevchenko
2023-05-03  2:07                       ` Kent Overstreet
2023-05-03  2:07                         ` Kent Overstreet
2023-05-03  6:30                         ` Andy Shevchenko
2023-05-03  6:30                           ` Andy Shevchenko
2023-05-03  7:12                           ` Kent Overstreet
2023-05-03  7:12                             ` Kent Overstreet
2023-05-03  9:12                             ` Andy Shevchenko
2023-05-03  9:12                               ` Andy Shevchenko
     [not found]                               ` <CAHp75Vd_VMOh1zxJvr0KqhxYBXAU1X+Ax7YA1sJ0G_abEpn-Dg-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2023-05-03  9:16                                 ` Kent Overstreet
2023-05-03  9:16                                   ` Kent Overstreet
2023-05-02 11:42               ` James Bottomley
2023-05-02 11:42                 ` James Bottomley
2023-05-02 22:50                 ` Dave Chinner
2023-05-02 22:50                   ` Dave Chinner
2023-05-03  9:28                   ` Vlastimil Babka
2023-05-03  9:28                     ` Vlastimil Babka
2023-05-03  9:44                     ` Andy Shevchenko
2023-05-03  9:44                       ` Andy Shevchenko
     [not found]                   ` <20230502225016.GJ2155823-pA1nmv6sEBkOM8BvhN4Z8vybgvtCy99p@public.gmane.org>
2023-05-03 12:15                     ` James Bottomley
2023-05-03 12:15                       ` James Bottomley
     [not found]         ` <ZFAUj+Q+hP7cWs4w-jC9Py7bek1znysI04z7BkA@public.gmane.org>
2023-05-02  2:22           ` James Bottomley
2023-05-01 19:35       ` Kent Overstreet
2023-05-02  7:55   ` Jani Nikula
2023-05-02  7:55     ` Jani Nikula
2023-05-01 16:54 ` [PATCH 04/40] nodemask: Split out include/linux/nodemask_types.h Suren Baghdasaryan
2023-05-01 16:54   ` Suren Baghdasaryan
2023-05-01 16:54 ` [PATCH 05/40] prandom: Remove unused include Suren Baghdasaryan
2023-05-01 16:54   ` Suren Baghdasaryan
2023-05-01 16:54 ` [PATCH 06/40] lib/string.c: strsep_no_empty() Suren Baghdasaryan
2023-05-01 16:54   ` Suren Baghdasaryan
2023-05-02 12:37   ` Petr Tesařík
2023-05-02 12:37     ` Petr Tesařík
2023-05-01 16:54 ` [PATCH 08/40] mm: introduce slabobj_ext to support slab object extensions Suren Baghdasaryan
2023-05-01 16:54   ` Suren Baghdasaryan
2023-05-01 16:54 ` [PATCH 10/40] mm/slab: introduce SLAB_NO_OBJ_EXT to avoid obj_ext creation Suren Baghdasaryan
2023-05-01 16:54   ` Suren Baghdasaryan
2023-05-01 16:54 ` [PATCH 11/40] mm: prevent slabobj_ext allocations for slabobj_ext and kmem_cache objects Suren Baghdasaryan
2023-05-01 16:54   ` Suren Baghdasaryan
2023-05-01 16:54 ` [PATCH 12/40] slab: objext: introduce objext_flags as extension to page_memcg_data_flags Suren Baghdasaryan
2023-05-01 16:54   ` Suren Baghdasaryan
2023-05-01 16:54 ` [PATCH 13/40] lib: code tagging framework Suren Baghdasaryan
2023-05-01 16:54   ` Suren Baghdasaryan
2023-05-01 16:54 ` [PATCH 14/40] lib: code tagging module support Suren Baghdasaryan
2023-05-01 16:54   ` Suren Baghdasaryan
2023-05-01 16:54 ` [PATCH 15/40] lib: prevent module unloading if memory is not freed Suren Baghdasaryan
2023-05-01 16:54   ` Suren Baghdasaryan
2023-05-01 16:54 ` [PATCH 16/40] lib: code tagging query helper functions Suren Baghdasaryan
2023-05-01 16:54   ` Suren Baghdasaryan
2023-05-01 16:54 ` [PATCH 17/40] lib: add allocation tagging support for memory allocation profiling Suren Baghdasaryan
2023-05-01 16:54   ` Suren Baghdasaryan
2023-05-01 16:54 ` [PATCH 18/40] lib: introduce support for page allocation tagging Suren Baghdasaryan
2023-05-01 16:54   ` Suren Baghdasaryan
2023-05-01 16:54 ` [PATCH 19/40] change alloc_pages name in dma_map_ops to avoid name conflicts Suren Baghdasaryan
2023-05-01 16:54   ` Suren Baghdasaryan
2023-05-02 15:50   ` Petr Tesařík
2023-05-02 15:50     ` Petr Tesařík
2023-05-02 18:38     ` Suren Baghdasaryan
2023-05-02 18:38       ` Suren Baghdasaryan
2023-05-02 20:09       ` Petr Tesařík
2023-05-02 20:09         ` Petr Tesařík
2023-05-02 20:18         ` Kent Overstreet
2023-05-02 20:18           ` Kent Overstreet
2023-05-02 20:24         ` Suren Baghdasaryan
2023-05-02 20:24           ` Suren Baghdasaryan
2023-05-02 20:39           ` Petr Tesařík
2023-05-02 20:39             ` Petr Tesařík
     [not found]             ` <20230502223915.6b38f8c4-TD/jYOLh/Qr2G+KSGY6Hrl+YFMdMcpeZ@public.gmane.org>
2023-05-02 20:41               ` Suren Baghdasaryan
2023-05-02 20:41                 ` Suren Baghdasaryan
     [not found]   ` <20230501165450.15352-20-surenb-hpIqsD4AKlfQT0dZR+AlfA@public.gmane.org>
2023-05-03 16:25     ` Steven Rostedt
2023-05-03 16:25       ` Steven Rostedt
2023-05-03 18:03       ` Suren Baghdasaryan
2023-05-03 18:03         ` Suren Baghdasaryan
2023-05-01 16:54 ` [PATCH 22/40] mm: create new codetag references during page splitting Suren Baghdasaryan
2023-05-01 16:54   ` Suren Baghdasaryan
2023-05-01 16:54 ` [PATCH 24/40] mm/slab: add allocation accounting into slab allocation and free paths Suren Baghdasaryan
2023-05-01 16:54   ` Suren Baghdasaryan
2023-05-01 16:54 ` [PATCH 25/40] mm/slab: enable slab allocation tagging for kmalloc and friends Suren Baghdasaryan
2023-05-01 16:54   ` Suren Baghdasaryan
2023-05-01 16:54 ` [PATCH 26/40] mm/slub: Mark slab_free_freelist_hook() __always_inline Suren Baghdasaryan
2023-05-01 16:54   ` Suren Baghdasaryan
2023-05-01 16:54 ` [PATCH 27/40] mempool: Hook up to memory allocation profiling Suren Baghdasaryan
2023-05-01 16:54   ` Suren Baghdasaryan
2023-05-01 16:54 ` [PATCH 29/40] mm: percpu: Introduce pcpuobj_ext Suren Baghdasaryan
2023-05-01 16:54   ` Suren Baghdasaryan
2023-05-01 16:54 ` [PATCH 31/40] mm: percpu: enable per-cpu allocation tagging Suren Baghdasaryan
2023-05-01 16:54   ` Suren Baghdasaryan
     [not found] ` <20230501165450.15352-1-surenb-hpIqsD4AKlfQT0dZR+AlfA@public.gmane.org>
2023-05-01 16:54   ` [PATCH 02/40] scripts/kallysms: Always include __start and __stop symbols Suren Baghdasaryan
2023-05-01 16:54     ` Suren Baghdasaryan
2023-05-01 16:54   ` [PATCH 03/40] fs: Convert alloc_inode_sb() to a macro Suren Baghdasaryan
2023-05-01 16:54     ` Suren Baghdasaryan
2023-05-02 12:35     ` Petr Tesařík
2023-05-02 12:35       ` Petr Tesařík
     [not found]       ` <20230502143530.1586e287-TD/jYOLh/Qr2G+KSGY6Hrl+YFMdMcpeZ@public.gmane.org>
2023-05-02 19:57         ` Kent Overstreet
2023-05-02 19:57           ` Kent Overstreet
2023-05-02 20:20           ` Petr Tesařík
2023-05-02 20:20             ` Petr Tesařík
2023-05-01 16:54   ` [PATCH 07/40] Lazy percpu counters Suren Baghdasaryan
2023-05-01 16:54     ` Suren Baghdasaryan
2023-05-01 19:17     ` Randy Dunlap
2023-05-01 19:17       ` Randy Dunlap
2023-05-01 16:54   ` [PATCH 09/40] mm: introduce __GFP_NO_OBJ_EXT flag to selectively prevent slabobj_ext creation Suren Baghdasaryan
2023-05-01 16:54     ` Suren Baghdasaryan
     [not found]     ` <20230501165450.15352-10-surenb-hpIqsD4AKlfQT0dZR+AlfA@public.gmane.org>
2023-05-02 12:50       ` Petr Tesařík
2023-05-02 12:50         ` Petr Tesařík
2023-05-02 18:33         ` Suren Baghdasaryan
2023-05-02 18:33           ` Suren Baghdasaryan
2023-05-01 16:54   ` [PATCH 20/40] mm: enable page allocation tagging Suren Baghdasaryan
2023-05-01 16:54     ` Suren Baghdasaryan
2023-05-01 16:54   ` [PATCH 21/40] mm/page_ext: enable early_page_ext when CONFIG_MEM_ALLOC_PROFILING_DEBUG=y Suren Baghdasaryan
2023-05-01 16:54     ` Suren Baghdasaryan
2023-05-01 16:54   ` [PATCH 23/40] lib: add codetag reference into slabobj_ext Suren Baghdasaryan
2023-05-01 16:54     ` Suren Baghdasaryan
2023-05-01 16:54   ` [PATCH 28/40] timekeeping: Fix a circular include dependency Suren Baghdasaryan
2023-05-01 16:54     ` Suren Baghdasaryan
     [not found]     ` <20230501165450.15352-29-surenb-hpIqsD4AKlfQT0dZR+AlfA@public.gmane.org>
2023-05-02 15:50       ` Thomas Gleixner
2023-05-02 15:50         ` Thomas Gleixner
2023-05-01 16:54   ` [PATCH 30/40] mm: percpu: Add codetag reference into pcpuobj_ext Suren Baghdasaryan
2023-05-01 16:54     ` Suren Baghdasaryan
2023-05-01 16:54   ` [PATCH 32/40] arm64: Fix circular header dependency Suren Baghdasaryan
2023-05-01 16:54     ` Suren Baghdasaryan
2023-05-01 16:54   ` Suren Baghdasaryan [this message]
2023-05-01 16:54     ` [PATCH 33/40] move stack capture functionality into a separate function for reuse Suren Baghdasaryan
2023-05-01 17:47   ` [PATCH 00/40] Memory allocation profiling Roman Gushchin
2023-05-01 17:47     ` Roman Gushchin
2023-05-01 18:08     ` Suren Baghdasaryan
2023-05-01 18:08       ` Suren Baghdasaryan
2023-05-01 18:14       ` Roman Gushchin
2023-05-01 18:14         ` Roman Gushchin
2023-05-01 19:37         ` Kent Overstreet
2023-05-01 19:37           ` Kent Overstreet
     [not found]           ` <ZFAVFlrRtpVgxJ0q-jC9Py7bek1znysI04z7BkA@public.gmane.org>
2023-05-01 21:18             ` Roman Gushchin
2023-05-01 21:18               ` Roman Gushchin
2023-05-01 16:54 ` [PATCH 34/40] lib: code tagging context capture support Suren Baghdasaryan
2023-05-01 16:54   ` Suren Baghdasaryan
2023-05-03  7:35   ` Michal Hocko
2023-05-03  7:35     ` Michal Hocko
2023-05-03 15:18     ` Suren Baghdasaryan
2023-05-03 15:18       ` Suren Baghdasaryan
2023-05-03 15:26       ` Dave Hansen
2023-05-03 15:26         ` Dave Hansen
2023-05-03 19:45         ` Suren Baghdasaryan
2023-05-03 19:45           ` Suren Baghdasaryan
     [not found]       ` <CAJuCfpHrZ4kWYFPvA3W9J+CmNMuOtGa_ZMXE9fOmKsPQeNt2tg-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2023-05-04  8:04         ` Michal Hocko
2023-05-04  8:04           ` Michal Hocko
2023-05-04 14:31           ` Suren Baghdasaryan
2023-05-04 14:31             ` Suren Baghdasaryan
2023-05-01 16:54 ` [PATCH 35/40] lib: implement context capture support for tagged allocations Suren Baghdasaryan
2023-05-01 16:54   ` Suren Baghdasaryan
2023-05-03  7:39   ` Michal Hocko
2023-05-03  7:39     ` Michal Hocko
     [not found]     ` <ZFIPmnrSIdJ5yusM-2MMpYkNvuYDjFM9bn6wA6Q@public.gmane.org>
2023-05-03 15:24       ` Suren Baghdasaryan
2023-05-03 15:24         ` Suren Baghdasaryan
2023-05-04  8:09         ` Michal Hocko
2023-05-04  8:09           ` Michal Hocko
2023-05-04 16:22           ` Suren Baghdasaryan
2023-05-04 16:22             ` Suren Baghdasaryan
2023-05-05  8:40             ` Michal Hocko
2023-05-05  8:40               ` Michal Hocko
     [not found]               ` <ZFTA8xVzxWc345Ug-2MMpYkNvuYDjFM9bn6wA6Q@public.gmane.org>
2023-05-05 18:10                 ` Suren Baghdasaryan
2023-05-05 18:10                   ` Suren Baghdasaryan
2023-05-01 16:54 ` [PATCH 36/40] lib: add memory allocations report in show_mem() Suren Baghdasaryan
2023-05-01 16:54   ` Suren Baghdasaryan
2023-05-01 16:54 ` [PATCH 37/40] codetag: debug: skip objext checking when it's for objext itself Suren Baghdasaryan
2023-05-01 16:54   ` Suren Baghdasaryan
2023-05-01 16:54 ` [PATCH 38/40] codetag: debug: mark codetags for reserved pages as empty Suren Baghdasaryan
2023-05-01 16:54   ` Suren Baghdasaryan
2023-05-01 16:54 ` [PATCH 39/40] codetag: debug: introduce OBJEXTS_ALLOC_FAIL to mark failed slab_ext allocations Suren Baghdasaryan
2023-05-01 16:54   ` Suren Baghdasaryan
2023-05-01 16:54 ` [PATCH 40/40] MAINTAINERS: Add entries for code tagging and memory allocation profiling Suren Baghdasaryan
2023-05-01 16:54   ` Suren Baghdasaryan
2023-05-03  7:25 ` [PATCH 00/40] Memory " Michal Hocko
2023-05-03  7:25   ` Michal Hocko
2023-05-03  7:34   ` Kent Overstreet
2023-05-03  7:34     ` Kent Overstreet
     [not found]     ` <ZFIOfb6/jHwLqg6M-jC9Py7bek1znysI04z7BkA@public.gmane.org>
2023-05-03  7:51       ` Michal Hocko
2023-05-03  7:51         ` Michal Hocko
     [not found]         ` <ZFISlX+mSx4QJDK6-2MMpYkNvuYDjFM9bn6wA6Q@public.gmane.org>
2023-05-03  8:05           ` Kent Overstreet
2023-05-03  8:05             ` Kent Overstreet
2023-05-03 13:21             ` Steven Rostedt
2023-05-03 13:21               ` Steven Rostedt
     [not found]             ` <ZFIVtB8JyKk0ddA5-jC9Py7bek1znysI04z7BkA@public.gmane.org>
2023-05-03 16:35               ` Tejun Heo
2023-05-03 16:35                 ` Tejun Heo
     [not found]                 ` <ZFKNZZwC8EUbOLMv-NiLfg/pYEd1N0TnZuCh8vA@public.gmane.org>
2023-05-03 17:42                   ` Suren Baghdasaryan
2023-05-03 17:42                     ` Suren Baghdasaryan
2023-05-03 18:06                     ` Tejun Heo
2023-05-03 18:06                       ` Tejun Heo
2023-05-03 17:44                   ` Kent Overstreet
2023-05-03 17:44                     ` Kent Overstreet
2023-05-03 17:51                   ` Kent Overstreet
2023-05-03 17:51                     ` Kent Overstreet
2023-05-03 18:24                     ` Tejun Heo
2023-05-03 18:24                       ` Tejun Heo
2023-05-03 18:07                 ` Johannes Weiner
2023-05-03 18:07                   ` Johannes Weiner
     [not found]                   ` <20230503180726.GA196054-druUgvl0LCNAfugRpC6u6w@public.gmane.org>
2023-05-03 18:19                     ` Tejun Heo
2023-05-03 18:19                       ` Tejun Heo
     [not found]                       ` <ZFKlrP7nLn93iIRf-NiLfg/pYEd1N0TnZuCh8vA@public.gmane.org>
2023-05-03 18:40                         ` Tejun Heo
2023-05-03 18:40                           ` Tejun Heo
2023-05-03 18:56                           ` Kent Overstreet
2023-05-03 18:56                             ` Kent Overstreet
     [not found]                             ` <ZFKubD/lq7oB4svV-jC9Py7bek1znysI04z7BkA@public.gmane.org>
2023-05-03 18:58                               ` Tejun Heo
2023-05-03 18:58                                 ` Tejun Heo
2023-05-03 19:09                                 ` Tejun Heo
2023-05-03 19:09                                   ` Tejun Heo
     [not found]                                   ` <ZFKxcfqkUQ60zBB_-NiLfg/pYEd1N0TnZuCh8vA@public.gmane.org>
2023-05-03 19:41                                     ` Suren Baghdasaryan
2023-05-03 19:41                                       ` Suren Baghdasaryan
     [not found]                                       ` <CAJuCfpEPkCJZO2svT-GfmpJ+V-jSLyFDKM_atnqPVRBKtzgtnQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2023-05-03 19:48                                         ` Tejun Heo
2023-05-03 19:48                                           ` Tejun Heo
2023-05-03 20:00                                           ` Tejun Heo
2023-05-03 20:00                                             ` Tejun Heo
     [not found]                                             ` <ZFK9XMSzOBxIFOHm-NiLfg/pYEd1N0TnZuCh8vA@public.gmane.org>
2023-05-03 20:14                                               ` Suren Baghdasaryan
2023-05-03 20:14                                                 ` Suren Baghdasaryan
2023-05-04  2:25                                                 ` Tejun Heo
2023-05-04  2:25                                                   ` Tejun Heo
2023-05-04  3:33                                                   ` Kent Overstreet
2023-05-04  3:33                                                     ` Kent Overstreet
     [not found]                                                   ` <ZFMXmj9ZhSe5wyaS-NiLfg/pYEd1N0TnZuCh8vA@public.gmane.org>
2023-05-04  3:33                                                     ` Suren Baghdasaryan
2023-05-04  3:33                                                       ` Suren Baghdasaryan
2023-05-04  8:00                                                 ` Petr Tesařík
2023-05-04  8:00                                                   ` Petr Tesařík
     [not found]                                           ` <ZFK6pwOelIlhV8Bm-NiLfg/pYEd1N0TnZuCh8vA@public.gmane.org>
2023-05-03 20:08                                             ` Suren Baghdasaryan
2023-05-03 20:08                                               ` Suren Baghdasaryan
2023-05-03 20:11                                               ` Johannes Weiner
2023-05-03 20:11                                                 ` Johannes Weiner
2023-05-04  2:16                                               ` Tejun Heo
2023-05-04  2:16                                                 ` Tejun Heo
2023-05-03 20:04                 ` Andrey Ryabinin
2023-05-03 20:04                   ` Andrey Ryabinin
2023-05-03  9:50         ` Petr Tesařík
2023-05-03  9:50           ` Petr Tesařík
     [not found]           ` <20230503115051.30b8a97f-TD/jYOLh/Qr2G+KSGY6Hrl+YFMdMcpeZ@public.gmane.org>
2023-05-03  9:54             ` Kent Overstreet
2023-05-03  9:54               ` Kent Overstreet
     [not found]               ` <ZFIvY5p1UAXxHw9s-jC9Py7bek1znysI04z7BkA@public.gmane.org>
2023-05-03 10:24                 ` Petr Tesařík
2023-05-03 10:24                   ` Petr Tesařík
2023-05-03  9:57           ` Kent Overstreet
2023-05-03  9:57             ` Kent Overstreet
2023-05-03 10:26             ` Petr Tesařík
2023-05-03 10:26               ` Petr Tesařík
2023-05-03 15:30               ` Kent Overstreet
2023-05-03 15:30                 ` Kent Overstreet
2023-05-03 12:33             ` James Bottomley
2023-05-03 12:33               ` James Bottomley
     [not found]               ` <25a1ea786712df5111d7d1db42490624ac63651e.camel-d9PhHud1JfjCXq6kfMZ53/egYHeGw8Jk@public.gmane.org>
2023-05-03 14:31                 ` Suren Baghdasaryan
2023-05-03 14:31                   ` Suren Baghdasaryan
2023-05-03 15:28               ` Kent Overstreet
2023-05-03 15:28                 ` Kent Overstreet
2023-05-03 15:37                 ` Lorenzo Stoakes
2023-05-03 15:37                   ` Lorenzo Stoakes
2023-05-03 16:03                   ` Kent Overstreet
2023-05-03 16:03                     ` Kent Overstreet
2023-05-03 15:49                 ` James Bottomley
2023-05-03 15:49                   ` James Bottomley
2023-05-03 15:09   ` Suren Baghdasaryan
2023-05-03 15:09     ` Suren Baghdasaryan
2023-05-03 16:28     ` Steven Rostedt
2023-05-03 16:28       ` Steven Rostedt
     [not found]       ` <20230503122839.0d9934c5-f9ZlEuEWxVcJvu8Pb33WZ0EMvNT87kid@public.gmane.org>
2023-05-03 17:40         ` Suren Baghdasaryan
2023-05-03 17:40           ` Suren Baghdasaryan
2023-05-03 18:03           ` Steven Rostedt
2023-05-03 18:03             ` Steven Rostedt
2023-05-03 18:07             ` Suren Baghdasaryan
2023-05-03 18:07               ` Suren Baghdasaryan
2023-05-03 18:12             ` Kent Overstreet
2023-05-03 18:12               ` Kent Overstreet
2023-05-04  9:07     ` Michal Hocko
2023-05-04  9:07       ` Michal Hocko
2023-05-04 15:08       ` Suren Baghdasaryan
2023-05-04 15:08         ` Suren Baghdasaryan
     [not found]         ` <CAJuCfpEkV_+pAjxyEpMqY+x7buZhSpj5qDF6KubsS=ObrQKUZg-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2023-05-07 10:27           ` Michal Hocko
2023-05-07 10:27             ` Michal Hocko
2023-05-07 17:01             ` Kent Overstreet
2023-05-07 17:01               ` Kent Overstreet
     [not found]       ` <ZFN1yswCd9wRgYPR-2MMpYkNvuYDjFM9bn6wA6Q@public.gmane.org>
2023-05-07 17:20         ` Kent Overstreet
2023-05-07 17:20           ` Kent Overstreet
2023-05-07 20:55           ` Steven Rostedt
2023-05-07 20:55             ` Steven Rostedt
2023-05-07 21:53             ` Kent Overstreet
2023-05-07 21:53               ` Kent Overstreet
2023-05-07 22:09               ` Steven Rostedt
2023-05-07 22:09                 ` Steven Rostedt
     [not found]                 ` <20230507180911.09d328c8-tvvo3QnZDcrq6bvjpv6Lkf3PFXHtQ0wO@public.gmane.org>
2023-05-07 22:17                   ` Kent Overstreet
2023-05-07 22:17                     ` Kent Overstreet
2023-05-08 15:52           ` Petr Tesařík
2023-05-08 15:52             ` Petr Tesařík
2023-05-08 15:57             ` Kent Overstreet
2023-05-08 15:57               ` Kent Overstreet
2023-05-08 16:09               ` Petr Tesařík
2023-05-08 16:09                 ` Petr Tesařík
     [not found]                 ` <20230508180913.6a018b21-TD/jYOLh/Qr2G+KSGY6Hrl+YFMdMcpeZ@public.gmane.org>
2023-05-08 16:28                   ` Kent Overstreet
2023-05-08 16:28                     ` Kent Overstreet
     [not found]                     ` <ZFkjRBCExpXfI+O5-jC9Py7bek1znysI04z7BkA@public.gmane.org>
2023-05-08 18:59                       ` Petr Tesařík
2023-05-08 18:59                         ` Petr Tesařík
     [not found]                         ` <20230508205939.0b5b485c-TD/jYOLh/Qr2G+KSGY6Hrl+YFMdMcpeZ@public.gmane.org>
2023-05-08 20:48                           ` Kent Overstreet
2023-05-08 20:48                             ` Kent Overstreet

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=20230501165450.15352-34-surenb@google.com \
    --to=surenb-hpiqsd4aklfqt0dzr+alfa@public.gmane.org \
    --cc=akpm-de/tnXTf+JLsfHDXvbKv3WD2FQJk+8+b@public.gmane.org \
    --cc=andreyknvl-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org \
    --cc=arnd-r2nGTMty4D4@public.gmane.org \
    --cc=axboe-tSWWG44O7X1aa/9Udqfwiw@public.gmane.org \
    --cc=catalin.marinas-5wv7dgnIgG8@public.gmane.org \
    --cc=corbet-T1hC0tSOHrs@public.gmane.org \
    --cc=dave-h16yJtLeMjHk1uMJSBkQmQ@public.gmane.org \
    --cc=dave.hansen-VuQAYsv1563Yd54FQh9/CA@public.gmane.org \
    --cc=david-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org \
    --cc=dennis-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org \
    --cc=dhowells-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org \
    --cc=hannes-druUgvl0LCNAfugRpC6u6w@public.gmane.org \
    --cc=hughd-hpIqsD4AKlfQT0dZR+AlfA@public.gmane.org \
    --cc=juri.lelli-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org \
    --cc=keescook-F7+t8E8rja9g9hUCZPvPmw@public.gmane.org \
    --cc=kent.overstreet-fxUVXftIFDnyG1zEObXtfA@public.gmane.org \
    --cc=ldufour-tEXmvtCZX7AybS5Ee8rs3A@public.gmane.org \
    --cc=liam.howlett-QHcLZuEGTsvQT0dZR+AlfA@public.gmane.org \
    --cc=masahiroy-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org \
    --cc=mcgrof-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org \
    --cc=mgorman-l3A5Bk7waGM@public.gmane.org \
    --cc=mhocko-IBi9RG/b67k@public.gmane.org \
    --cc=mingo-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org \
    --cc=muchun.song-fxUVXftIFDnyG1zEObXtfA@public.gmane.org \
    --cc=nathan-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org \
    --cc=pasha.tatashin-2EmBfe737+LQT0dZR+AlfA@public.gmane.org \
    --cc=paulmck-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org \
    --cc=peterx-H+wXaHxf7aLQT0dZR+AlfA@public.gmane.org \
    --cc=peterz-wEGCiKHe2LqWVfeAwA7xHQ@public.gmane.org \
    --cc=roman.gushchin-fxUVXftIFDnyG1zEObXtfA@public.gmane.org \
    --cc=rppt-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org \
    --cc=tglx-hfZtesqFncYOwBW4kG4KsQ@public.gmane.org \
    --cc=tj-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org \
    --cc=vbabka-AlSwsSmVLrQ@public.gmane.org \
    --cc=void-gq6j2QGBifHby3iVrkZq2A@public.gmane.org \
    --cc=will-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org \
    --cc=willy-wEGCiKHe2LqWVfeAwA7xHQ@public.gmane.org \
    --cc=x86-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org \
    --cc=yosryahmed-hpIqsD4AKlfQT0dZR+AlfA@public.gmane.org \
    --cc=yuzhao-hpIqsD4AKlfQT0dZR+AlfA@public.gmane.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 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.