From: Chengming Zhou <chengming.zhou@linux.dev>
To: Andrew Morton <akpm@linux-foundation.org>,
David Hildenbrand <david@redhat.com>,
Stefan Roesch <shr@devkernel.io>, xu xin <xu.xin16@zte.com.cn>
Cc: linux-mm@kvack.org, linux-kernel@vger.kernel.org,
zhouchengming@bytedance.com,
Chengming Zhou <chengming.zhou@linux.dev>
Subject: [PATCH 4/4] mm/ksm: calculate general_profit more accurately
Date: Wed, 08 May 2024 17:55:41 +0800 [thread overview]
Message-ID: <20240508-b4-ksm-counters-v1-4-e2a9b13f70c5@linux.dev> (raw)
In-Reply-To: <20240508-b4-ksm-counters-v1-0-e2a9b13f70c5@linux.dev>
The memory resource of KSM is mainly ksm_rmap_item, which has to allocate
for each anon page that mm has mapped on. Another memory resource is the
ksm_stable_node, which is much less than the ksm_rmap_item.
We can account it easily to make general_profit calculation more accurate.
This is important when max_page_sharing is limited and so we have more
chained nodes.
Signed-off-by: Chengming Zhou <chengming.zhou@linux.dev>
---
mm/ksm.c | 14 ++++++++++++--
1 file changed, 12 insertions(+), 2 deletions(-)
diff --git a/mm/ksm.c b/mm/ksm.c
index 87ffd228944c..a9ce17e6814d 100644
--- a/mm/ksm.c
+++ b/mm/ksm.c
@@ -267,6 +267,9 @@ static unsigned long ksm_pages_unshared;
/* The number of rmap_items in use: to calculate pages_volatile */
static unsigned long ksm_rmap_items;
+/* The number of stable_node */
+static unsigned long ksm_stable_nodes;
+
/* The number of stable_node chains */
static unsigned long ksm_stable_node_chains;
@@ -584,12 +587,17 @@ static inline void free_rmap_item(struct ksm_rmap_item *rmap_item)
static inline struct ksm_stable_node *alloc_stable_node(void)
{
+ struct ksm_stable_node *node;
+
/*
* The allocation can take too long with GFP_KERNEL when memory is under
* pressure, which may lead to hung task warnings. Adding __GFP_HIGH
* grants access to memory reserves, helping to avoid this problem.
*/
- return kmem_cache_alloc(stable_node_cache, GFP_KERNEL | __GFP_HIGH);
+ node = kmem_cache_alloc(stable_node_cache, GFP_KERNEL | __GFP_HIGH);
+ if (likely(node))
+ ksm_stable_nodes++;
+ return node;
}
static inline void free_stable_node(struct ksm_stable_node *stable_node)
@@ -597,6 +605,7 @@ static inline void free_stable_node(struct ksm_stable_node *stable_node)
VM_BUG_ON(stable_node->rmap_hlist_len &&
!is_stable_node_chain(stable_node));
kmem_cache_free(stable_node_cache, stable_node);
+ ksm_stable_nodes--;
}
/*
@@ -3671,7 +3680,8 @@ static ssize_t general_profit_show(struct kobject *kobj,
long general_profit;
general_profit = (ksm_pages_sharing + get_ksm_zero_pages()) * PAGE_SIZE -
- ksm_rmap_items * sizeof(struct ksm_rmap_item);
+ ksm_rmap_items * sizeof(struct ksm_rmap_item) -
+ ksm_stable_nodes * sizeof(struct ksm_stable_node);
return sysfs_emit(buf, "%ld\n", general_profit);
}
--
2.45.0
next prev parent reply other threads:[~2024-05-08 9:56 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-05-08 9:55 [PATCH 0/4] mm/ksm: fix some accounting problems Chengming Zhou
2024-05-08 9:55 ` [PATCH 1/4] mm/ksm: fix ksm_pages_scanned accounting Chengming Zhou
2024-05-08 10:35 ` Chengming Zhou
2024-05-08 12:32 ` David Hildenbrand
2024-05-08 9:55 ` [PATCH 2/4] mm/ksm: fix ksm_zero_pages accounting Chengming Zhou
2024-05-08 10:37 ` Chengming Zhou
2024-05-08 12:36 ` David Hildenbrand
2024-05-08 13:52 ` Chengming Zhou
2024-05-08 9:55 ` [PATCH 3/4] mm/ksm: union hlist_node with list_head in struct ksm_stable_node Chengming Zhou
2024-05-08 9:55 ` Chengming Zhou [this message]
2024-05-08 10:24 ` [PATCH 0/4] mm/ksm: fix some accounting problems David Hildenbrand
2024-05-08 10:28 ` Chengming Zhou
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=20240508-b4-ksm-counters-v1-4-e2a9b13f70c5@linux.dev \
--to=chengming.zhou@linux.dev \
--cc=akpm@linux-foundation.org \
--cc=david@redhat.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.org \
--cc=shr@devkernel.io \
--cc=xu.xin16@zte.com.cn \
--cc=zhouchengming@bytedance.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox