[LTP] [PATCH] lib/mem.c: exit from test_transparent_hugepage() if shortage of memory
Cyril Hrubis
chrubis@suse.cz
Tue Jan 26 12:11:57 CET 2016
Hi!
> Sometime thp05.c fails like:
> ---
> thp05 0 TINFO : Stop all children...
> thp05 0 TINFO : Start to scan all transparent hugepages...
> thp05 0 TINFO : khugepaged daemon takes 10s to scan all thp pages
> thp05 0 TINFO : Start to verify transparent hugepage size...
> thp05 1 TFAIL : mem.c:754: child[27099] got 43008KB thps - expect 40960KB thps
> thp05 2 TFAIL : mem.c:754: child[27099] got 43008KB thps - expect 40960KB thps
> thp05 3 TFAIL : mem.c:754: child[27099] got 43008KB thps - expect 40960KB thps
> thp05 4 TFAIL : mem.c:754: child[27099] got 43008KB thps - expect 40960KB thps
Hmm shouldn't the TCONF message be included in the output here?
(otherwise the if wasn't triggered at all)
> ---
>
> Since the system has done much testing work so far as it comes here, it is very easy to
> hit the fails if the memory is fragmented, the following tests should better be skiped
> while system dose not have enough memory for THP testing.
>
> Signed-off-by: Li Wang <liwang@redhat.com>
> ---
> testcases/kernel/mem/lib/mem.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/testcases/kernel/mem/lib/mem.c b/testcases/kernel/mem/lib/mem.c
> index cee4e91..6715c35 100644
> --- a/testcases/kernel/mem/lib/mem.c
> +++ b/testcases/kernel/mem/lib/mem.c
> @@ -773,7 +773,7 @@ void test_transparent_hugepage(int nr_children, int nr_thps,
> memfree = read_meminfo("MemFree:");
> tst_resm(TINFO, "The current MemFree is %luMB", memfree / KB);
> if (memfree < MB)
> - tst_resm(TCONF, "Not enough memory for testing");
> + tst_brkm(TCONF, NULL, "Not enough memory for testing");
This looks like obvious typo, but we should pass the cleanup to the
tst_brkm() here as the rest of the tst_brkm() in this fuction does.
> hugepagesize = read_meminfo("Hugepagesize:");
> tst_resm(TINFO, "The current Hugepagesize is %luMB", hugepagesize / KB);
--
Cyril Hrubis
chrubis@suse.cz
More information about the Ltp
mailing list