From: Oscar Salvador <osalvador@suse.de>
To: Andrew Morton <akpm@linux-foundation.org>
Cc: linux-kernel@vger.kernel.org, linux-mm@kvack.org,
Michal Hocko <mhocko@suse.com>, Vlastimil Babka <vbabka@suse.cz>,
Marco Elver <elver@google.com>,
Andrey Konovalov <andreyknvl@gmail.com>,
Alexander Potapenko <glider@google.com>,
Oscar Salvador <osalvador@suse.de>
Subject: [PATCH] mm,page_owner: Fix refcount imbalance
Date: Thu, 14 Mar 2024 15:47:53 +0100 [thread overview]
Message-ID: <20240314144753.16276-1-osalvador@suse.de> (raw)
Current code does not contemplate scenarios were an allocation and
free operation on the same pages do not handle it in the same amount
at once.
To give an example, page_alloc_exact(), where we will allocate a page
of enough order to stafisfy the size request, but we will free the
remainings right away.
In the above example, we will increment the stack_record refcount
only once, but we will decrease it the same number of times as number
of unused pages we have to free.
This will lead to a warning because of refcount imbalance.
Fix this by recording the number of base pages every stack_record holds,
and only let the last decrementing of refcount succeed if the number of
base pages equals 0, which means we freed all the pages.
As a bonus, show the aggregate of stack_count + base_pages as this gives
a much better picture of the memory usage.
Signed-off-by: Oscar Salvador <osalvador@suse.de>
Fixes: 217b2119b9e2 ("mm,page_owner: implement the tracking of the stacks count")
---
include/linux/stackdepot.h | 3 ++
mm/page_owner.c | 57 +++++++++++++++++++++++++++++++-------
2 files changed, 50 insertions(+), 10 deletions(-)
diff --git a/include/linux/stackdepot.h b/include/linux/stackdepot.h
index 3c6caa5abc7c..261472807c32 100644
--- a/include/linux/stackdepot.h
+++ b/include/linux/stackdepot.h
@@ -57,6 +57,9 @@ struct stack_record {
u32 size; /* Number of stored frames */
union handle_parts handle; /* Constant after initialization */
refcount_t count;
+#ifdef CONFIG_PAGE_OWNER
+ unsigned long nr_base_pages;
+#endif
union {
unsigned long entries[CONFIG_STACKDEPOT_MAX_FRAMES]; /* Frames */
struct {
diff --git a/mm/page_owner.c b/mm/page_owner.c
index 50111078ecd9..5192449bb581 100644
--- a/mm/page_owner.c
+++ b/mm/page_owner.c
@@ -123,10 +123,14 @@ static __init void init_page_owner(void)
/* Initialize dummy and failure stacks and link them to stack_list */
dummy_stack.stack_record = __stack_depot_get_stack_record(dummy_handle);
failure_stack.stack_record = __stack_depot_get_stack_record(failure_handle);
- if (dummy_stack.stack_record)
+ if (dummy_stack.stack_record) {
+ dummy_stack.stack_record->nr_base_pages = 0;
refcount_set(&dummy_stack.stack_record->count, 1);
- if (failure_stack.stack_record)
+ }
+ if (failure_stack.stack_record) {
+ failure_stack.stack_record->nr_base_pages = 0;
refcount_set(&failure_stack.stack_record->count, 1);
+ }
dummy_stack.next = &failure_stack;
stack_list = &dummy_stack;
}
@@ -192,9 +196,11 @@ static void add_stack_record_to_list(struct stack_record *stack_record,
spin_unlock_irqrestore(&stack_list_lock, flags);
}
-static void inc_stack_record_count(depot_stack_handle_t handle, gfp_t gfp_mask)
+static void inc_stack_record_count(depot_stack_handle_t handle, gfp_t gfp_mask,
+ unsigned long nr_base_pages)
{
struct stack_record *stack_record = __stack_depot_get_stack_record(handle);
+ unsigned long curr_nr_pages;
if (!stack_record)
return;
@@ -209,19 +215,47 @@ static void inc_stack_record_count(depot_stack_handle_t handle, gfp_t gfp_mask)
if (refcount_read(&stack_record->count) == REFCOUNT_SATURATED) {
int old = REFCOUNT_SATURATED;
- if (atomic_try_cmpxchg_relaxed(&stack_record->count.refs, &old, 1))
+ if (atomic_try_cmpxchg_relaxed(&stack_record->count.refs, &old, 1)) {
/* Add the new stack_record to our list */
add_stack_record_to_list(stack_record, gfp_mask);
+ smp_store_release(&stack_record->nr_base_pages,
+ nr_base_pages);
+ goto inc;
+ }
}
+
+ curr_nr_pages = smp_load_acquire(&stack_record->nr_base_pages);
+ smp_store_release(&stack_record->nr_base_pages,
+ curr_nr_pages + nr_base_pages);
+inc:
refcount_inc(&stack_record->count);
}
-static void dec_stack_record_count(depot_stack_handle_t handle)
+static void dec_stack_record_count(depot_stack_handle_t handle,
+ unsigned long nr_base_pages)
{
struct stack_record *stack_record = __stack_depot_get_stack_record(handle);
+ unsigned long curr_nr_pages;
+
+ if (!stack_record)
+ return;
+
+ curr_nr_pages = smp_load_acquire(&stack_record->nr_base_pages);
+ smp_store_release(&stack_record->nr_base_pages,
+ curr_nr_pages - nr_base_pages);
+ curr_nr_pages = smp_load_acquire(&stack_record->nr_base_pages);
+
+ /*
+ * If this stack_record is going to reach a refcount == 1, which means
+ * free, only do it if all the base pages it allocated were freed.
+ * E.g: scenarios like THP splitting, or alloc_pages_exact() can have
+ * an alloc/free operation with different amount of pages
+ */
+ if (refcount_read(&stack_record->count) == 2 &&
+ curr_nr_pages)
+ return;
- if (stack_record)
- refcount_dec(&stack_record->count);
+ refcount_dec(&stack_record->count);
}
void __reset_page_owner(struct page *page, unsigned short order)
@@ -260,7 +294,7 @@ void __reset_page_owner(struct page *page, unsigned short order)
* the machinery is not ready yet, we cannot decrement
* their refcount either.
*/
- dec_stack_record_count(alloc_handle);
+ dec_stack_record_count(alloc_handle, 1UL << order);
}
static inline void __set_page_owner_handle(struct page_ext *page_ext,
@@ -303,7 +337,7 @@ noinline void __set_page_owner(struct page *page, unsigned short order,
__set_page_owner_handle(page_ext, handle, order, gfp_mask);
page_ext_put(page_ext);
set_current_in_page_owner();
- inc_stack_record_count(handle, gfp_mask);
+ inc_stack_record_count(handle, gfp_mask, 1UL << order);
unset_current_in_page_owner();
}
@@ -868,6 +902,7 @@ static int stack_print(struct seq_file *m, void *v)
struct stack *stack = v;
unsigned long *entries;
unsigned long nr_entries;
+ unsigned long nr_base_pages;
struct stack_record *stack_record = stack->stack_record;
if (!stack->stack_record)
@@ -875,6 +910,7 @@ static int stack_print(struct seq_file *m, void *v)
nr_entries = stack_record->size;
entries = stack_record->entries;
+ nr_base_pages = stack_record->nr_base_pages;
stack_count = refcount_read(&stack_record->count) - 1;
if (stack_count < 1 || stack_count < page_owner_stack_threshold)
@@ -882,7 +918,8 @@ static int stack_print(struct seq_file *m, void *v)
for (i = 0; i < nr_entries; i++)
seq_printf(m, " %pS\n", (void *)entries[i]);
- seq_printf(m, "stack_count: %d\n\n", stack_count);
+ seq_printf(m, "stack_count: %d curr_nr_base_pages: %lu\n\n",
+ stack_count, nr_base_pages);
return 0;
}
--
2.44.0
next reply other threads:[~2024-03-14 14:46 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-03-14 14:47 Oscar Salvador [this message]
2024-03-15 13:21 ` Vlastimil Babka
2024-03-15 15:55 ` Oscar Salvador
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=20240314144753.16276-1-osalvador@suse.de \
--to=osalvador@suse.de \
--cc=akpm@linux-foundation.org \
--cc=andreyknvl@gmail.com \
--cc=elver@google.com \
--cc=glider@google.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=mhocko@suse.com \
--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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox