All of lore.kernel.org
 help / color / mirror / Atom feed
From: Con Kolivas <kernel@kolivas.org>
To: FabF <fabian.frederick@skynet.be>
Cc: Valdis.Kletnieks@vt.edu,
	Bernd Eckenfels <ecki-news2004-05@lina.inka.de>,
	linux-kernel@vger.kernel.org
Subject: Re: why swap at all?
Date: Thu, 3 Jun 2004 09:54:25 +1000	[thread overview]
Message-ID: <200406030954.25222.kernel@kolivas.org> (raw)
In-Reply-To: <1086201031.2047.13.camel@localhost.localdomain>

[-- Attachment #1: Type: text/plain, Size: 975 bytes --]

On Thu, 3 Jun 2004 04:30, FabF wrote:
> On Wed, 2004-06-02 at 19:59, Valdis.Kletnieks@vt.edu wrote:
> > On Wed, 02 Jun 2004 07:38:41 +0200, FabF said:
> > > > Yes but: your wm is so  often used/activated it will not get swaped 
> > > > out. But if your mouse passes over mozilla and tries to focus it,
> > > > then you will feel the pain of a swapped-out x program.
> > >
> > > Exactly !
> > > Does autoregulated VM swap. patch could help here ?
> >
> > Con's auto-adjusting swappiness patch did in fact help that quite a bit,
> > especially for the case of heavy file I/O causing process images to be
> > swapped out.  I need to do some comparisons of that to Nick's MM work...
>
> It helps inactive applications to re-ermerge smoothly, heavy I/O and
> global tuning.I've got 20 swapping delta from start to high usage.
> That patch rock'n'roll my box until updatedb makes sw climbs up to 80
> and freezes my box :(

Try this version instead which biases it downwards.

Con

[-- Attachment #2: patch-2.6.7-rc2-as --]
[-- Type: text/x-diff, Size: 3336 bytes --]

diff -Naurp --exclude-from=dontdiff linux-2.6.7-rc2-base/include/linux/swap.h linux-2.6.7-rc2-am11/include/linux/swap.h
--- linux-2.6.7-rc2-base/include/linux/swap.h	2004-05-31 21:29:21.000000000 +1000
+++ linux-2.6.7-rc2-am11/include/linux/swap.h	2004-05-31 23:39:26.020055153 +1000
@@ -175,6 +175,7 @@ extern void swap_setup(void);
 extern int try_to_free_pages(struct zone **, unsigned int, unsigned int);
 extern int shrink_all_memory(int);
 extern int vm_swappiness;
+extern int auto_swappiness;
 
 #ifdef CONFIG_MMU
 /* linux/mm/shmem.c */
diff -Naurp --exclude-from=dontdiff linux-2.6.7-rc2-base/include/linux/sysctl.h linux-2.6.7-rc2-am11/include/linux/sysctl.h
--- linux-2.6.7-rc2-base/include/linux/sysctl.h	2004-05-31 21:29:21.000000000 +1000
+++ linux-2.6.7-rc2-am11/include/linux/sysctl.h	2004-05-31 23:39:26.021054997 +1000
@@ -164,6 +164,7 @@ enum
 	VM_LAPTOP_MODE=23,	/* vm laptop mode */
 	VM_BLOCK_DUMP=24,	/* block dump mode */
 	VM_HUGETLB_GROUP=25,	/* permitted hugetlb group */
+	VM_AUTO_SWAPPINESS=26,	/* Make vm_swappiness autoregulated */
 };
 
 
diff -Naurp --exclude-from=dontdiff linux-2.6.7-rc2-base/kernel/sysctl.c linux-2.6.7-rc2-am11/kernel/sysctl.c
--- linux-2.6.7-rc2-base/kernel/sysctl.c	2004-05-31 21:29:24.000000000 +1000
+++ linux-2.6.7-rc2-am11/kernel/sysctl.c	2004-05-31 23:40:57.658756170 +1000
@@ -727,6 +727,14 @@ static ctl_table vm_table[] = {
 		.extra1		= &zero,
 		.extra2		= &one_hundred,
 	},
+	{
+		.ctl_name	= VM_AUTO_SWAPPINESS,
+		.procname	= "autoswappiness",
+		.data		= &auto_swappiness,
+		.maxlen		= sizeof(int),
+		.mode		= 0644,
+		.proc_handler	= &proc_dointvec,
+	},
 #ifdef CONFIG_HUGETLB_PAGE
 	 {
 		.ctl_name	= VM_HUGETLB_PAGES,
diff -Naurp --exclude-from=dontdiff linux-2.6.7-rc2-base/mm/vmscan.c linux-2.6.7-rc2-am11/mm/vmscan.c
--- linux-2.6.7-rc2-base/mm/vmscan.c	2004-05-31 21:29:24.000000000 +1000
+++ linux-2.6.7-rc2-am11/mm/vmscan.c	2004-05-31 23:39:26.051050316 +1000
@@ -43,6 +43,7 @@
  * From 0 .. 100.  Higher means more swappy.
  */
 int vm_swappiness = 60;
+int auto_swappiness = 1;
 static long total_memory;
 
 #define lru_to_page(_head) (list_entry((_head)->prev, struct page, lru))
@@ -634,6 +635,41 @@ refill_inactive_zone(struct zone *zone, 
 	 */
 	mapped_ratio = (ps->nr_mapped * 100) / total_memory;
 
+	if (auto_swappiness) {
+#ifdef CONFIG_SWAP
+		int app_percent;
+		struct sysinfo i;
+		
+		si_swapinfo(&i);
+			
+		if (likely(i.totalswap >= 100)) {
+			int swap_centile;
+	
+			/*
+			 * app_percent is the percentage of physical ram used
+			 * by application pages.
+			 */
+			si_meminfo(&i);
+			app_percent = 100 - ((i.freeram + get_page_cache_size() -
+				swapper_space.nrpages) / (i.totalram / 100));
+	
+			/*
+			 * swap_centile is the percentage of the last (sizeof physical
+			 * ram) of swap free.
+			 */
+			swap_centile = i.freeswap / 
+				(min(i.totalswap, i.totalram) / 100);
+			/*
+			 * Autoregulate vm_swappiness to be equal to the lowest of
+			 * app_percent and swap_centile.  Bias it downwards -ck
+			 */
+			vm_swappiness = min(app_percent, swap_centile);
+			vm_swappiness = vm_swappiness * vm_swappiness / 100;
+		} else 
+			vm_swappiness = 0;
+#endif
+	}
+	
 	/*
 	 * Now decide how much we really want to unmap some pages.  The mapped
 	 * ratio is downgraded - just because there's a lot of mapped memory

  reply	other threads:[~2004-06-02 23:55 UTC|newest]

Thread overview: 149+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2004-05-31 19:34 why swap at all? Michael Brennan
2004-05-31 20:29 ` John Bradford
2004-05-31 22:47   ` Nick Piggin
2004-05-31 23:30     ` Bernd Eckenfels
2004-06-01 18:36       ` FabF
2004-06-01 19:02         ` Valdis.Kletnieks
2004-06-01 19:53           ` FabF
2004-06-01 20:00             ` Valdis.Kletnieks
2004-06-01 20:14               ` FabF
2004-06-01 20:22                 ` Valdis.Kletnieks
2004-06-01 21:15                   ` FabF
2004-06-01 21:40                     ` Valdis.Kletnieks
2004-06-03 13:54                     ` Bill Davidsen
2004-06-04  0:01                       ` Nick Piggin
2004-06-01 23:17               ` Bernd Eckenfels
2004-06-02  5:38                 ` FabF
2004-06-02 11:42                   ` Con Kolivas
2004-06-02 12:22                     ` John Bradford
2004-06-02 12:22                       ` Con Kolivas
2004-06-02 17:06                     ` FabF
2004-06-03 14:14                     ` Bill Davidsen
2004-06-04  7:23                       ` Buddy Lumpkin
2004-06-04 17:08                         ` Bill Davidsen
2004-06-15 14:55                           ` Charles Shannon Hendrix
2004-06-04  9:11                       ` Catalin BOIE
2004-06-04 17:24                         ` Bill Davidsen
2004-06-06 14:39                       ` Rik van Riel
2004-06-02 17:59                   ` Valdis.Kletnieks
2004-06-02 18:30                     ` FabF
2004-06-02 23:54                       ` Con Kolivas [this message]
2004-06-03 16:16                         ` FabF
2004-06-03 23:56                           ` Con Kolivas
2004-06-04  0:16                             ` Con Kolivas
2004-06-03 14:18                     ` Bill Davidsen
2004-06-03 14:27                       ` Con Kolivas
2004-06-02 17:52                 ` Valdis.Kletnieks
2004-06-02  3:50           ` Tim Connors
2004-06-02 17:45             ` Valdis.Kletnieks
2004-06-01  8:34     ` John Bradford
2004-06-01  8:32       ` William Lee Irwin III
2004-06-01  8:50         ` John Bradford
2004-06-01  8:54           ` William Lee Irwin III
2004-06-01  9:10             ` John Bradford
2004-06-08  1:18               ` Tim Connors
2004-06-08  5:29                 ` Denis Vlasenko
2004-06-01  9:38   ` Buddy Lumpkin
2004-06-01 10:13     ` Tim Connors
2004-06-01 10:24       ` William Lee Irwin III
2004-06-01 11:19         ` Tim Connors
     [not found] <fa.amhil9e.o5kt1u@ifi.uio.no>
     [not found] ` <fa.kfm8lru.1l2mdp4@ifi.uio.no>
2004-06-08 15:12   ` Ray Bryant
2004-06-08 15:12     ` Ray Bryant
2004-06-08 15:15   ` Ray Bryant
2004-06-08 15:15     ` Ray Bryant
2004-06-09 19:24     ` Bill Davidsen
2004-06-09 19:24       ` Bill Davidsen
  -- strict thread matches above, loose matches on Subject: below --
2004-05-27 12:31 Piszcz, Justin Michael
2004-05-27 12:41 ` William Lee Irwin III
2004-05-27 15:59   ` John Bradford
2004-05-27 16:16     ` William Lee Irwin III
2004-06-03 13:38   ` Bill Davidsen
     [not found] <fa.fegqf9v.kmidof@ifi.uio.no>
     [not found] ` <fa.bqpvcrs.u648jq@ifi.uio.no>
2004-05-27 11:39   ` Andy Lutomirski
2004-05-28 21:37     ` Denis Vlasenko
2004-05-28 22:28       ` Bernd Eckenfels
2004-05-29  7:31         ` Denis Vlasenko
2004-05-31 10:49         ` jlnance
2004-06-01 11:57           ` Lenar Lõhmus
2004-06-01 12:27             ` Robin Rosenberg
2004-06-01 16:49             ` jlnance
2004-06-02 18:38               ` John Hendrikx
2004-06-01 12:21           ` David B. Stevens
2004-05-27  5:37 Nick Piggin
2004-05-27 17:27 ` Buddy Lumpkin
2004-05-26 12:34 Piszcz, Justin Michael
2004-05-26 12:24 Nick Piggin
2004-05-26 13:03 ` Buddy Lumpkin
2004-05-26 13:27   ` Helge Hafting
2004-05-26 11:57 Nick Piggin
2004-05-26 12:19 ` Buddy Lumpkin
2004-05-26 11:04 Nick Piggin
2004-05-26  6:38 Anthony DiSante
2004-05-26  7:31 ` Buddy Lumpkin
2004-05-26  7:55   ` William Lee Irwin III
2004-05-26  8:30     ` Buddy Lumpkin
2004-05-26  8:44       ` Nick Piggin
2004-05-26  9:34         ` John Bradford
2004-05-26  9:48           ` Nick Piggin
2004-05-26 10:10             ` Matthias Schniedermeyer
2004-05-26 10:33               ` Nick Piggin
2004-05-26 10:58                 ` Matthias Schniedermeyer
2004-05-26 11:19                   ` Nick Piggin
2004-05-26 12:27                     ` Matthias Schniedermeyer
2004-05-27  5:38                       ` Nick Piggin
2004-05-26 12:37                     ` Matthias Schniedermeyer
2004-05-26 13:06                       ` Gianni Tedesco
2004-05-26 13:41                         ` Matt H.
2004-05-26 13:55                       ` Buddy Lumpkin
2004-05-27  5:14                       ` Tom Felker
2004-05-27  6:02                         ` Nick Piggin
2004-05-27  7:04                         ` Bernd Eckenfels
2004-05-27  7:16                         ` Oliver Neukum
2004-05-26 10:45               ` Martin Olsson
2004-05-26 11:25                 ` Nick Piggin
2004-05-26 16:33                 ` David Schwartz
2004-05-26 16:58                   ` John Bradford
2004-05-26 23:32                     ` Kyle Moffett
2004-05-27  8:05                       ` John Bradford
2004-05-26 10:46             ` John Bradford
2004-05-26 11:46             ` Buddy Lumpkin
2004-05-26 11:39           ` Buddy Lumpkin
2004-05-26  9:42         ` Anthony DiSante
2004-05-26  9:58           ` Nick Piggin
2004-05-26 20:11             ` Wakko Warner
2004-05-27  5:59               ` Nick Piggin
2004-05-27 14:34                 ` Wakko Warner
2004-05-26 10:40         ` Buddy Lumpkin
2004-05-26 13:15           ` Helge Hafting
2004-05-26  9:09       ` William Lee Irwin III
2004-05-26 11:38         ` Buddy Lumpkin
2004-05-26 12:12           ` Paulo Marques
2004-05-26 12:14           ` Nick Piggin
2004-05-26 12:40           ` Denis Vlasenko
2004-05-26 10:41       ` Denis Vlasenko
2004-05-26 12:07         ` Buddy Lumpkin
2004-05-26 12:06           ` Marc-Christian Petersen
2004-05-26 12:19           ` Denis Vlasenko
2004-05-26 13:48             ` Buddy Lumpkin
2004-05-26 12:33           ` Richard B. Johnson
2004-05-26 13:25             ` Buddy Lumpkin
2004-05-26 12:30         ` Rik van Riel
2004-05-26 10:44       ` Denis Vlasenko
2004-05-26 11:49         ` Buddy Lumpkin
2004-05-26 12:19       ` Rik van Riel
2004-05-26 12:55         ` Buddy Lumpkin
2004-05-26  8:27 ` Roger Luethi
2004-05-26  9:23   ` John Bradford
2004-05-26  9:30     ` Roger Luethi
2004-05-26 10:35       ` John Bradford
2004-05-26 10:37         ` Nick Piggin
2004-05-26 10:48           ` John Bradford
2004-05-26 13:01     ` Helge Hafting
2004-05-26  8:32 ` Denis Vlasenko
2004-05-26  9:00 ` Helge Hafting
2004-05-26  9:40   ` John Bradford
2004-05-26 13:06     ` Helge Hafting
2004-05-26  9:06 ` John Bradford
2004-05-26 12:31   ` Buddy Lumpkin
2004-05-26 10:02 ` Raphael Jacquot
2004-05-26 13:00 ` Satoshi Oshima
2004-05-26 13:38   ` William Lee Irwin III

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=200406030954.25222.kernel@kolivas.org \
    --to=kernel@kolivas.org \
    --cc=Valdis.Kletnieks@vt.edu \
    --cc=ecki-news2004-05@lina.inka.de \
    --cc=fabian.frederick@skynet.be \
    --cc=linux-kernel@vger.kernel.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.