From: Laszlo Ersek <lersek@redhat.com>
To: Vitaly Kuznetsov <vkuznets@redhat.com>,
"K. Y. Srinivasan" <kys@microsoft.com>
Cc: Haiyang Zhang <haiyangz@microsoft.com>,
devel@linuxdriverproject.org, linux-kernel@vger.kernel.org,
Dexuan Cui <decui@microsoft.com>
Subject: Re: [PATCH] Drivers: hv: hv_balloon: eliminate jumps in piecewiese linear floor function
Date: Thu, 26 Mar 2015 17:17:46 +0100 [thread overview]
Message-ID: <5514312A.1000406@redhat.com> (raw)
In-Reply-To: <1427365613-29528-1-git-send-email-vkuznets@redhat.com>
On 03/26/15 11:26, Vitaly Kuznetsov wrote:
> Commit 79208c57da53 ("Drivers: hv: hv_balloon: Make adjustments in computing
> the floor") was inacurate as it introduced a jump in our piecewiese linear
> 'floor' function:
>
> At 2048MB we have:
> Left limit:
> 104 + 2048/8 = 360
> Right limit:
> 256 + 2048/16 = 384 (so the right value is 232)
>
> We now have to make an adjustment at 8192 boundary:
> 232 + 8192/16 = 744
> 512 + 8192/32 = 768 (so the right value is 488)
>
> Suggested-by: Laszlo Ersek <lersek@redhat.com>
> Signed-off-by: Vitaly Kuznetsov <vkuznets@redhat.com>
> ---
> drivers/hv/hv_balloon.c | 8 ++++----
> 1 file changed, 4 insertions(+), 4 deletions(-)
>
> diff --git a/drivers/hv/hv_balloon.c b/drivers/hv/hv_balloon.c
> index 014256a..16d52da 100644
> --- a/drivers/hv/hv_balloon.c
> +++ b/drivers/hv/hv_balloon.c
> @@ -966,8 +966,8 @@ static unsigned long compute_balloon_floor(void)
> * 128 72 (1/2)
> * 512 168 (1/4)
> * 2048 360 (1/8)
> - * 8192 768 (1/16)
> - * 32768 1536 (1/32)
> + * 8192 744 (1/16)
> + * 32768 1512 (1/32)
> */
> if (totalram_pages < MB2PAGES(128))
> min_pages = MB2PAGES(8) + (totalram_pages >> 1);
> @@ -976,9 +976,9 @@ static unsigned long compute_balloon_floor(void)
> else if (totalram_pages < MB2PAGES(2048))
> min_pages = MB2PAGES(104) + (totalram_pages >> 3);
> else if (totalram_pages < MB2PAGES(8192))
> - min_pages = MB2PAGES(256) + (totalram_pages >> 4);
> + min_pages = MB2PAGES(232) + (totalram_pages >> 4);
> else
> - min_pages = MB2PAGES(512) + (totalram_pages >> 5);
> + min_pages = MB2PAGES(488) + (totalram_pages >> 5);
> #undef MB2PAGES
> return min_pages;
> }
>
Reviewed-by: Laszlo Ersek <lersek@redhat.com>
Thanks!
Laszlo
prev parent reply other threads:[~2015-03-26 16:17 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-03-26 10:26 [PATCH] Drivers: hv: hv_balloon: eliminate jumps in piecewiese linear floor function Vitaly Kuznetsov
2015-03-26 16:17 ` Laszlo Ersek [this message]
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=5514312A.1000406@redhat.com \
--to=lersek@redhat.com \
--cc=decui@microsoft.com \
--cc=devel@linuxdriverproject.org \
--cc=haiyangz@microsoft.com \
--cc=kys@microsoft.com \
--cc=linux-kernel@vger.kernel.org \
--cc=vkuznets@redhat.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 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.