From: Caspar Zhang <caspar@casparzhang.com>
To: Zhouping Liu <zliu@redhat.com>
Cc: LTP list <ltp-list@lists.sourceforge.net>
Subject: Re: [LTP] [PATCH 3/3] tunable/min_free_kbytes: add 32-bit system limit
Date: Fri, 31 Aug 2012 10:44:49 +0800 [thread overview]
Message-ID: <50402521.2000504@casparzhang.com> (raw)
In-Reply-To: <92b6d1dd1bba3ce81f5f51612e99a23ed2409b7e.1346244062.git.zliu@redhat.com>
On 08/29/2012 08:43 PM, Zhouping Liu wrote:
> in 32-bit system, one process only allocate 3Gb memory at
> least, even though there are enough memory and setting
> overcommit_memory=1, the porcess always exit when it arrives
> in 3Gb memory.
>
> the patch use '__WORDSIZE' macro to avoid the incorrect 'TFAIL'
> without the patch:
> ---- snip ----
> min_free_kbytes 0 TINFO : set overcommit_memory to 1
> min_free_kbytes 0 TINFO : set min_free_kbytes to 3794
> memfree is 15478420 kB before eatup mem
> memfree is 12333408 kB after eatup mem
> min_free_kbytes 3 TFAIL : child unexpectedly failed: 0
> min_free_kbytes 0 TINFO : set min_free_kbytes to 7588
> ---- snip ----
>
> after applying the patch:
> ---- snip ----
> min_free_kbytes 0 TINFO : set overcommit_memory to 1
> min_free_kbytes 0 TINFO : set min_free_kbytes to 3794
> memfree is 15478420 kB before eatup mem
> memfree is 12333408 kB after eatup mem
> min_free_kbytes 0 TINFO : Child can't allocate >3Gb memory in 32bit system
> min_free_kbytes 0 TINFO : set min_free_kbytes to 7588
> ---- snip ----
>
> Reported-by: Shuang Qiu <shuang.qiu@oracle.com>
> Signed-off-by: Zhouping Liu <zliu@redhat.com>
Series Reviewed-by: Caspar Zhang <caspar@casparzhang.com>
> ---
> testcases/kernel/mem/tunable/min_free_kbytes.c | 11 +++++++++++
> 1 file changed, 11 insertions(+)
>
> diff --git a/testcases/kernel/mem/tunable/min_free_kbytes.c b/testcases/kernel/mem/tunable/min_free_kbytes.c
> index dde182c..873b807 100644
> --- a/testcases/kernel/mem/tunable/min_free_kbytes.c
> +++ b/testcases/kernel/mem/tunable/min_free_kbytes.c
> @@ -158,8 +158,19 @@ static void test_tune(unsigned long overcommit_policy)
> "child unexpectedly failed: %d", status);
> } else if (overcommit_policy == 1) {
> if (!WIFSIGNALED(status) || WTERMSIG(status) != SIGKILL)
> +#if __WORDSIZE == 32
> + {
> + if (total_mem < 3145728UL)
> +#endif
> tst_resm(TFAIL,
> "child unexpectedly failed: %d", status);
> +#if __WORDSIZE == 32
> + /* in 32-bit system, a process allocate about 3Gb memory at most */
> + else
> + tst_resm(TINFO, "Child can't allocate "
> + ">3Gb memory in 32bit system");
> + }
> +#endif
> } else {
> if (WIFEXITED(status)) {
> if (WEXITSTATUS(status) != 0) {
>
------------------------------------------------------------------------------
Live Security Virtual Conference
Exclusive live event will cover all the ways today's security and
threat landscape has changed and how IT managers can respond. Discussions
will include endpoint security, mobile security and the latest in malware
threats. http://www.accelacomm.com/jaw/sfrnl04242012/114/50122263/
_______________________________________________
Ltp-list mailing list
Ltp-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ltp-list
next prev parent reply other threads:[~2012-08-31 2:45 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-08-29 12:42 [LTP] [PATCH 1/3] tunable: reduce the min_free_kbytes tunable Zhouping Liu
2012-08-29 12:43 ` [LTP] [PATCH 2/3] tunable/min_free_kbytes: remove map_count args Zhouping Liu
2012-08-29 12:43 ` [LTP] [PATCH 3/3] tunable/min_free_kbytes: add 32-bit system limit Zhouping Liu
2012-08-31 2:07 ` Zhouping Liu
2012-08-31 2:11 ` Wanlong Gao
2012-08-31 2:17 ` Zhouping Liu
2012-08-31 2:44 ` Caspar Zhang [this message]
2012-08-31 2:54 ` Wanlong Gao
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=50402521.2000504@casparzhang.com \
--to=caspar@casparzhang.com \
--cc=ltp-list@lists.sourceforge.net \
--cc=zliu@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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox