From: Fengguang Wu <fengguang.wu@gmail.com>
To: Andrea Arcangeli <andrea@suse.de>
Cc: Andrew Morton <akpm@linux-foundation.org>,
linux-mm@kvack.org, Nick Piggin <npiggin@suse.de>
Subject: Re: make swappiness safer to use
Date: Wed, 1 Aug 2007 09:22:22 +0800 [thread overview]
Message-ID: <385932021.25311@ustc.edu.cn> (raw)
Message-ID: <20070801012222.GA20565@mail.ustc.edu.cn> (raw)
In-Reply-To: <20070801011925.GB20109@mail.ustc.edu.cn>
On Wed, Aug 01, 2007 at 09:19:25AM +0800, Fengguang Wu wrote:
> > + imbalance *= (vm_swappiness + 1) / 100;
> ~~~~~~~~~~~~~~~~~~~~~~~~~ It will be zero!
>
> Better to scale it up before the division:
> imbalance *= (vm_swappiness + 1) * 1024 / 100;
>
> > +
> > + /*
> > + * If not much of the ram is mapped, makes the imbalance
> > + * less relevant, it's high priority we refill the inactive
> > + * list with mapped pages only in presence of high ratio of
> > + * mapped pages.
> > + *
> > + * Max temporary value is vm_total_pages*100.
> > + */
> > + imbalance *= mapped_ratio / 100;
>
> imbalance *= mapped_ratio * 1024 / 100;
>
> > + /* apply imbalance feedback to swap_tendency */
> > + swap_tendency += imbalance;
>
> swap_tendency += imbalance / 1024 / 1024;
Or simply move the two ' / 100' to this last line?
--
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:[~2007-08-01 1:22 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-07-31 21:52 make swappiness safer to use Andrea Arcangeli
2007-07-31 22:12 ` Andrew Morton
2007-07-31 22:40 ` Andrea Arcangeli
2007-07-31 22:51 ` Andrew Morton
2007-07-31 23:02 ` Andrea Arcangeli
2007-08-01 1:19 ` Fengguang Wu
2007-08-01 1:19 ` Fengguang Wu
2007-08-01 1:22 ` Fengguang Wu [this message]
2007-08-01 1:22 ` Fengguang Wu
2007-08-01 1:32 ` Fengguang Wu
2007-08-01 1:32 ` Fengguang Wu
2007-08-01 2:33 ` Andrea Arcangeli
2007-08-06 18:21 ` Andrew Morton
2007-08-07 5:00 ` Fengguang Wu
2007-08-07 5:00 ` Fengguang Wu
2007-11-12 2:07 ` YAMAMOTO Takashi
2007-08-01 2:30 ` Andrea Arcangeli
2007-07-31 23:09 ` Andrew Morton
2007-07-31 23:23 ` Andrea Arcangeli
2007-07-31 23:32 ` Martin Bligh
2007-07-31 23:49 ` Andrew Morton
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=385932021.25311@ustc.edu.cn \
--to=fengguang.wu@gmail.com \
--cc=akpm@linux-foundation.org \
--cc=andrea@suse.de \
--cc=linux-mm@kvack.org \
--cc=npiggin@suse.de \
/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.