From: Rik van Riel <riel@redhat.com>
To: linux-mm@kvack.org
Cc: linux-kernel@vger.kernel.org
Subject: [PATCH/RFT 5/5] CLOCK-Pro page replacement
Date: Wed, 10 Aug 2005 16:02:21 -0400 [thread overview]
Message-ID: <20050810200944.197606000@jumble.boston.redhat.com> (raw)
In-Reply-To: <20050810200216.644997000@jumble.boston.redhat.com>
[-- Attachment #1: clockpro-stats --]
[-- Type: text/plain, Size: 2510 bytes --]
Export the active limit statistic through /proc. We may want to
export some more CLOCK-Pro statistics in the future, but I'm not
sure yet which ones.
Signed-off-by: Rik van Riel
Index: linux-2.6.12-vm/fs/proc/proc_misc.c
===================================================================
--- linux-2.6.12-vm.orig/fs/proc/proc_misc.c
+++ linux-2.6.12-vm/fs/proc/proc_misc.c
@@ -125,11 +125,13 @@ static int meminfo_read_proc(char *page,
unsigned long free;
unsigned long committed;
unsigned long allowed;
+ unsigned long active_limit;
struct vmalloc_info vmi;
long cached;
get_page_state(&ps);
get_zone_counts(&active, &inactive, &free);
+ active_limit = get_active_limit();
/*
* display in kilobytes.
@@ -158,6 +160,7 @@ static int meminfo_read_proc(char *page,
"SwapCached: %8lu kB\n"
"Active: %8lu kB\n"
"Inactive: %8lu kB\n"
+ "ActiveLimit: %8lu kB\n"
"HighTotal: %8lu kB\n"
"HighFree: %8lu kB\n"
"LowTotal: %8lu kB\n"
@@ -181,6 +184,7 @@ static int meminfo_read_proc(char *page,
K(total_swapcache_pages),
K(active),
K(inactive),
+ K(active_limit),
K(i.totalhigh),
K(i.freehigh),
K(i.totalram-i.totalhigh),
Index: linux-2.6.12-vm/include/linux/swap.h
===================================================================
--- linux-2.6.12-vm.orig/include/linux/swap.h
+++ linux-2.6.12-vm/include/linux/swap.h
@@ -161,6 +161,7 @@ extern void init_nonresident(void);
/* linux/mm/clockpro.c */
extern void remember_page(struct page *, struct address_space *, unsigned long);
extern int page_is_hot(struct page *, struct address_space *, unsigned long);
+extern unsigned long get_active_limit(void);
DECLARE_PER_CPU(unsigned long, evicted_pages);
/* linux/mm/page_alloc.c */
Index: linux-2.6.12-vm/mm/clockpro.c
===================================================================
--- linux-2.6.12-vm.orig/mm/clockpro.c
+++ linux-2.6.12-vm/mm/clockpro.c
@@ -100,3 +100,14 @@ void remember_page(struct page * page, s
zone->active_limit < zone->present_pages * 7 / 8)
zone->active_limit++;
}
+
+unsigned long get_active_limit(void)
+{
+ unsigned long total = 0;
+ struct zone * zone;
+
+ for_each_zone(zone)
+ total += zone->active_limit;
+
+ return total;
+}
--
--
All Rights Reversed
--
To unsubscribe, send a message with 'unsubscribe linux-mm' in
the body to majordomo@kvack.org. For more info on Linux MM,
see: http://www.linux-mm.org/ .
Don't email: <a href=mailto:"dont@kvack.org"> email@kvack.org </a>
next prev parent reply other threads:[~2005-08-10 20:02 UTC|newest]
Thread overview: 21+ messages / expand[flat|nested] mbox.gz Atom feed top
2005-08-10 20:02 [PATCH/RFT 0/5] " Rik van Riel
2005-08-10 20:02 ` [PATCH/RFT 1/5] " Rik van Riel
2005-08-10 20:02 ` [PATCH/RFT 2/5] " Rik van Riel
2005-08-10 20:27 ` David S. Miller, Rik van Riel
2005-08-10 20:38 ` Rik van Riel
2005-08-10 20:02 ` [PATCH/RFT 3/5] " Rik van Riel
2005-08-10 20:02 ` [PATCH/RFT 4/5] " Rik van Riel
2005-08-10 20:31 ` David S. Miller, Rik van Riel
2005-08-18 0:38 ` Andrew Morton
2005-08-18 2:48 ` David S. Miller, Andrew Morton
2005-08-18 4:05 ` Andrew Morton
2005-08-18 4:48 ` David S. Miller, Andrew Morton
2005-08-19 7:03 ` Rusty Russell
2005-08-19 7:10 ` Andrew Morton
2005-08-19 7:27 ` Rusty Russell
2005-08-19 13:04 ` Horst von Brand
2005-08-10 23:22 ` Marcelo Tosatti
2005-08-11 0:06 ` Rik van Riel
2005-08-10 20:02 ` Rik van Riel [this message]
2005-08-11 22:08 ` [PATCH/RFT 5/5] " Song Jiang
2005-08-12 1:22 ` Rik van Riel
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=20050810200944.197606000@jumble.boston.redhat.com \
--to=riel@redhat.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-mm@kvack.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox