* [LTP] [PATCH] getrusage03: add opportunity to reduce memory allocation's size
@ 2012-02-14 15:33 Filippo ARCIDIACONO
2012-02-15 4:09 ` Caspar Zhang
0 siblings, 1 reply; 5+ messages in thread
From: Filippo ARCIDIACONO @ 2012-02-14 15:33 UTC (permalink / raw)
To: ltp-list
To use this test also in embedded systems it needs to reduce the memory
allocation to avoid the test failing when it check the ru_maxrss field
expecting a value close to the allocated one.
The ru_maxrss field contains the total amount of resident set memory
used, so this field doesn't take into account of the swapped memory.
Passing [num] parameter at command line the test is executed using the
input parameter as multiply factor instead of 10, that is the default
value when no argument is passed.
Signed-off-by: Filippo Arcidiacono <filippo.arcidiacono@st.com>
Signed-off-by: Carmelo Amoroso <carmelo.amoroso@st.com>
---
testcases/kernel/syscalls/getrusage/getrusage03.c | 75 ++++++++++++++------
1 files changed, 52 insertions(+), 23 deletions(-)
diff --git a/testcases/kernel/syscalls/getrusage/getrusage03.c b/testcases/kernel/syscalls/getrusage/getrusage03.c
index 3ec5284..87c5987 100644
--- a/testcases/kernel/syscalls/getrusage/getrusage03.c
+++ b/testcases/kernel/syscalls/getrusage/getrusage03.c
@@ -52,6 +52,7 @@ static struct rusage ru;
static long maxrss_init;
static int retval, status;
static pid_t pid;
+int size, factor_nr = 10;
static void inherit_fork(void);
static void inherit_fork2(void);
@@ -77,11 +78,23 @@ int main(int argc, char *argv[])
setup();
+ if (argc > 2)
+ tst_brkm(TBROK, cleanup, " Too many arguments - Usage: %s [factor]", argv[0]);
+
+ if (argv[1])
+ factor_nr = atoi(argv[1]);
+
+ if (factor_nr == 0)
+ tst_brkm(TBROK, cleanup, "Input factor must be != 0");
+
+ tst_resm(TINFO, "Using %d as factor allocation mamory!", factor_nr);
+
for (lc = 0; TEST_LOOPING(lc); lc++) {
Tst_count = 0;
- tst_resm(TINFO, "allocate 100MB");
- consume(100);
+ size = 10 * factor_nr;
+ tst_resm(TINFO, "allocate %dMB", size);
+ consume(size);
inherit_fork();
inherit_fork2();
@@ -123,17 +136,17 @@ static void inherit_fork(void)
}
/* Testcase #02: fork inherit (cont.)
- * expect: initial.children ~= 100MB, child.children = 0 */
+ * expect: initial.children ~= (10 * factor_nr)MB, child.children = 0 */
static void inherit_fork2(void)
{
tst_resm(TINFO, "Testcase #02: fork inherit(cont.)");
SAFE_GETRUSAGE(cleanup, RUSAGE_CHILDREN, &ru);
tst_resm(TINFO, "initial.children = %ld", ru.ru_maxrss);
- if (is_in_delta(ru.ru_maxrss - 102400))
- tst_resm(TPASS, "initial.children ~= 100MB");
+ if (is_in_delta(ru.ru_maxrss - (10240 * factor_nr)))
+ tst_resm(TPASS, "initial.children ~= %dMB", size);
else
- tst_resm(TFAIL, "initial.children !~= 100MB");
+ tst_resm(TFAIL, "initial.children !~= %dMB", size);
switch (pid = fork()) {
case -1:
@@ -153,9 +166,11 @@ static void inherit_fork2(void)
}
/* Testcase #03: fork + malloc
- * expect: initial.self + 50MB ~= child.self */
+ * expect: initial.self + (5 * factor_nr)MB ~= child.self */
static void fork_malloc(void)
{
+ char pass_msg[BUFSIZ], fail_msg[BUFSIZ];
+
tst_resm(TINFO, "Testcase #03: fork + malloc");
SAFE_GETRUSAGE(cleanup, RUSAGE_SELF, &ru);
@@ -166,25 +181,29 @@ static void fork_malloc(void)
tst_brkm(TBROK|TERRNO, cleanup, "fork #3");
case 0:
maxrss_init = ru.ru_maxrss;
- tst_resm(TINFO, "child allocate +50MB");
- consume(50);
+ size = 5 * factor_nr;
+ tst_resm(TINFO, "child allocate + %dMB", size);
+ consume(size);
SAFE_GETRUSAGE(cleanup, RUSAGE_SELF, &ru);
tst_resm(TINFO, "child.self = %ld", ru.ru_maxrss);
- exit(is_in_delta(maxrss_init + 51200 - ru.ru_maxrss));
+ exit(is_in_delta(maxrss_init + (5120 * factor_nr) - ru.ru_maxrss));
default:
break;
}
if (waitpid(pid, &status, WUNTRACED|WCONTINUED) == -1)
tst_brkm(TBROK|TERRNO, cleanup, "waitpid");
- check_return(WEXITSTATUS(status), "initial.self + 50MB ~= child.self",
- "initial.self + 50MB !~= child.self");
+ sprintf(pass_msg, "initial.self + %dMB ~= child.self", size);
+ sprintf(fail_msg, "initial.self + %dMB !~= child.self", size);
+ check_return(WEXITSTATUS(status), pass_msg, fail_msg);
}
/* Testcase #04: grandchild maxrss
- * expect: post_wait.children ~= 300MB */
+ * expect: post_wait.children ~= (30 * factor_nr)MB */
static void grandchild_maxrss(void)
{
+ char cmd_system[BUFSIZ];
+
tst_resm(TINFO, "Testcase #04: grandchild maxrss");
SAFE_GETRUSAGE(cleanup, RUSAGE_CHILDREN, &ru);
@@ -194,7 +213,9 @@ static void grandchild_maxrss(void)
case -1:
tst_brkm(TBROK|TERRNO, cleanup, "fork #4");
case 0:
- retval = system("getrusage03_child -g 300");
+ size = 30 * factor_nr;
+ sprintf(cmd_system, "getrusage03_child -g %d", size);
+ retval = system(cmd_system);
if ((WIFEXITED(retval) && WEXITSTATUS(retval) != 0))
tst_brkm(TBROK|TERRNO, cleanup, "system");
exit(0);
@@ -209,16 +230,18 @@ static void grandchild_maxrss(void)
SAFE_GETRUSAGE(cleanup, RUSAGE_CHILDREN, &ru);
tst_resm(TINFO, "post_wait.children = %ld", ru.ru_maxrss);
- if (is_in_delta(ru.ru_maxrss - 307200))
- tst_resm(TPASS, "child.children ~= 300MB");
+ if (is_in_delta(ru.ru_maxrss - (30720 * factor_nr)))
+ tst_resm(TPASS, "child.children ~= %dMB", size);
else
- tst_resm(TFAIL, "child.children !~= 300MB");
+ tst_resm(TFAIL, "child.children !~= %dMB", size);
}
/* Testcase #05: zombie
- * expect: initial ~= pre_wait, post_wait ~= 400MB */
+ * expect: initial ~= pre_wait, post_wait ~= (40 * factor_nr)MB */
static void zombie(void)
{
+ char cmd_system[BUFSIZ];
+
tst_resm(TINFO, "Testcase #05: zombie");
SAFE_GETRUSAGE(cleanup, RUSAGE_CHILDREN, &ru);
@@ -229,7 +252,9 @@ static void zombie(void)
case -1:
tst_brkm(TBROK, cleanup, "fork #5");
case 0:
- retval = system("getrusage03_child -n 400");
+ size = 40 * factor_nr;
+ sprintf(cmd_system, "getrusage03_child -n %d", size);
+ retval = system(cmd_system);
if ((WIFEXITED(retval) && WEXITSTATUS(retval) != 0))
tst_brkm(TBROK|TERRNO, cleanup, "system");
exit(0);
@@ -252,16 +277,18 @@ static void zombie(void)
SAFE_GETRUSAGE(cleanup, RUSAGE_CHILDREN, &ru);
tst_resm(TINFO, "post_wait.children = %ld", ru.ru_maxrss);
- if (is_in_delta(ru.ru_maxrss - 409600))
- tst_resm(TPASS, "post_wait.children ~= 400MB");
+ if (is_in_delta(ru.ru_maxrss - (40960 * factor_nr)))
+ tst_resm(TPASS, "post_wait.children ~= %dMB", size);
else
- tst_resm(TFAIL, "post_wait.children !~= 400MB");
+ tst_resm(TFAIL, "post_wait.children !~= %dMB", size);
}
/* Testcase #06: SIG_IGN
* expect: initial ~= after_zombie */
static void sig_ign(void)
{
+ char cmd_system[BUFSIZ];
+
tst_resm(TINFO, "Testcase #06: SIG_IGN");
SAFE_GETRUSAGE(cleanup, RUSAGE_CHILDREN, &ru);
@@ -273,7 +300,9 @@ static void sig_ign(void)
case -1:
tst_brkm(TBROK, cleanup, "fork #6");
case 0:
- retval = system("getrusage03_child -n 500");
+ size = 50 * factor_nr;
+ sprintf(cmd_system, "getrusage03_child -n %d", size);
+ retval = system(cmd_system);
if ((WIFEXITED(retval) && WEXITSTATUS(retval) != 0))
tst_brkm(TBROK|TERRNO, cleanup, "system");
exit(0);
--
1.5.5.6
------------------------------------------------------------------------------
Keep Your Developer Skills Current with LearnDevNow!
The most comprehensive online learning library for Microsoft developers
is just $99.99! Visual Studio, SharePoint, SQL - plus HTML5, CSS3, MVC3,
Metro Style Apps, more. Free future releases when you subscribe now!
http://p.sf.net/sfu/learndevnow-d2d
_______________________________________________
Ltp-list mailing list
Ltp-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ltp-list
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [LTP] [PATCH] getrusage03: add opportunity to reduce memory allocation's size
2012-02-14 15:33 [LTP] [PATCH] getrusage03: add opportunity to reduce memory allocation's size Filippo ARCIDIACONO
@ 2012-02-15 4:09 ` Caspar Zhang
2012-02-15 8:27 ` Filippo ARCIDIACONO
[not found] ` <4f3b6c8d.c1cb0e0a.3e38.354dSMTPIN_ADDED@mx.google.com>
0 siblings, 2 replies; 5+ messages in thread
From: Caspar Zhang @ 2012-02-15 4:09 UTC (permalink / raw)
To: Filippo ARCIDIACONO; +Cc: ltp-list
On 02/14/2012 11:33 PM, Filippo ARCIDIACONO wrote:
> To use this test also in embedded systems it needs to reduce the memory
> allocation to avoid the test failing when it check the ru_maxrss field
> expecting a value close to the allocated one.
> The ru_maxrss field contains the total amount of resident set memory
> used, so this field doesn't take into account of the swapped memory.
> Passing [num] parameter at command line the test is executed using the
> input parameter as multiply factor instead of 10, that is the default
> value when no argument is passed.
>
> Signed-off-by: Filippo Arcidiacono <filippo.arcidiacono@st.com>
> Signed-off-by: Carmelo Amoroso <carmelo.amoroso@st.com>
> ---
> testcases/kernel/syscalls/getrusage/getrusage03.c | 75 ++++++++++++++------
> 1 files changed, 52 insertions(+), 23 deletions(-)
>
> diff --git a/testcases/kernel/syscalls/getrusage/getrusage03.c b/testcases/kernel/syscalls/getrusage/getrusage03.c
> index 3ec5284..87c5987 100644
> --- a/testcases/kernel/syscalls/getrusage/getrusage03.c
> +++ b/testcases/kernel/syscalls/getrusage/getrusage03.c
> @@ -52,6 +52,7 @@ static struct rusage ru;
> static long maxrss_init;
> static int retval, status;
> static pid_t pid;
> +int size, factor_nr = 10;
>
> static void inherit_fork(void);
> static void inherit_fork2(void);
> @@ -77,11 +78,23 @@ int main(int argc, char *argv[])
>
> setup();
>
> + if (argc > 2)
> + tst_brkm(TBROK, cleanup, " Too many arguments - Usage: %s [factor]", argv[0]);
> +
> + if (argv[1])
> + factor_nr = atoi(argv[1]);
> +
> + if (factor_nr == 0)
> + tst_brkm(TBROK, cleanup, "Input factor must be != 0");
Here I want to use an LTP way to pass parameters, i.e. use option_t and
parse_opts.
Please take a look at getrusage03_child.c as example.
> +
> + tst_resm(TINFO, "Using %d as factor allocation mamory!", factor_nr);
> +
> for (lc = 0; TEST_LOOPING(lc); lc++) {
> Tst_count = 0;
>
> - tst_resm(TINFO, "allocate 100MB");
> - consume(100);
> + size = 10 * factor_nr;
> + tst_resm(TINFO, "allocate %dMB", size);
> + consume(size);
>
> inherit_fork();
> inherit_fork2();
> @@ -123,17 +136,17 @@ static void inherit_fork(void)
> }
>
> /* Testcase #02: fork inherit (cont.)
> - * expect: initial.children ~= 100MB, child.children = 0 */
> + * expect: initial.children ~= (10 * factor_nr)MB, child.children = 0 */
> static void inherit_fork2(void)
> {
> tst_resm(TINFO, "Testcase #02: fork inherit(cont.)");
>
> SAFE_GETRUSAGE(cleanup, RUSAGE_CHILDREN, &ru);
> tst_resm(TINFO, "initial.children = %ld", ru.ru_maxrss);
> - if (is_in_delta(ru.ru_maxrss - 102400))
> - tst_resm(TPASS, "initial.children ~= 100MB");
> + if (is_in_delta(ru.ru_maxrss - (10240 * factor_nr)))
> + tst_resm(TPASS, "initial.children ~= %dMB", size);
`size` in this function is not initialized?
> else
> - tst_resm(TFAIL, "initial.children !~= 100MB");
> + tst_resm(TFAIL, "initial.children !~= %dMB", size);
>
> switch (pid = fork()) {
> case -1:
> @@ -153,9 +166,11 @@ static void inherit_fork2(void)
> }
>
> /* Testcase #03: fork + malloc
> - * expect: initial.self + 50MB ~= child.self */
> + * expect: initial.self + (5 * factor_nr)MB ~= child.self */
> static void fork_malloc(void)
> {
> + char pass_msg[BUFSIZ], fail_msg[BUFSIZ];
> +
> tst_resm(TINFO, "Testcase #03: fork + malloc");
>
> SAFE_GETRUSAGE(cleanup, RUSAGE_SELF, &ru);
> @@ -166,25 +181,29 @@ static void fork_malloc(void)
> tst_brkm(TBROK|TERRNO, cleanup, "fork #3");
> case 0:
> maxrss_init = ru.ru_maxrss;
> - tst_resm(TINFO, "child allocate +50MB");
> - consume(50);
> + size = 5 * factor_nr;
> + tst_resm(TINFO, "child allocate + %dMB", size);
> + consume(size);
> SAFE_GETRUSAGE(cleanup, RUSAGE_SELF, &ru);
> tst_resm(TINFO, "child.self = %ld", ru.ru_maxrss);
> - exit(is_in_delta(maxrss_init + 51200 - ru.ru_maxrss));
> + exit(is_in_delta(maxrss_init + (5120 * factor_nr) - ru.ru_maxrss));
> default:
> break;
> }
>
> if (waitpid(pid, &status, WUNTRACED|WCONTINUED) == -1)
> tst_brkm(TBROK|TERRNO, cleanup, "waitpid");
> - check_return(WEXITSTATUS(status), "initial.self + 50MB ~= child.self",
> - "initial.self + 50MB !~= child.self");
> + sprintf(pass_msg, "initial.self + %dMB ~= child.self", size);
> + sprintf(fail_msg, "initial.self + %dMB !~= child.self", size);
> + check_return(WEXITSTATUS(status), pass_msg, fail_msg);
> }
>
> /* Testcase #04: grandchild maxrss
> - * expect: post_wait.children ~= 300MB */
> + * expect: post_wait.children ~= (30 * factor_nr)MB */
> static void grandchild_maxrss(void)
> {
> + char cmd_system[BUFSIZ];
> +
> tst_resm(TINFO, "Testcase #04: grandchild maxrss");
>
> SAFE_GETRUSAGE(cleanup, RUSAGE_CHILDREN, &ru);
> @@ -194,7 +213,9 @@ static void grandchild_maxrss(void)
> case -1:
> tst_brkm(TBROK|TERRNO, cleanup, "fork #4");
> case 0:
> - retval = system("getrusage03_child -g 300");
> + size = 30 * factor_nr;
> + sprintf(cmd_system, "getrusage03_child -g %d", size);
> + retval = system(cmd_system);
> if ((WIFEXITED(retval) && WEXITSTATUS(retval) != 0))
> tst_brkm(TBROK|TERRNO, cleanup, "system");
> exit(0);
> @@ -209,16 +230,18 @@ static void grandchild_maxrss(void)
>
> SAFE_GETRUSAGE(cleanup, RUSAGE_CHILDREN, &ru);
> tst_resm(TINFO, "post_wait.children = %ld", ru.ru_maxrss);
> - if (is_in_delta(ru.ru_maxrss - 307200))
> - tst_resm(TPASS, "child.children ~= 300MB");
> + if (is_in_delta(ru.ru_maxrss - (30720 * factor_nr)))
> + tst_resm(TPASS, "child.children ~= %dMB", size);
> else
> - tst_resm(TFAIL, "child.children !~= 300MB");
> + tst_resm(TFAIL, "child.children !~= %dMB", size);
> }
>
> /* Testcase #05: zombie
> - * expect: initial ~= pre_wait, post_wait ~= 400MB */
> + * expect: initial ~= pre_wait, post_wait ~= (40 * factor_nr)MB */
> static void zombie(void)
> {
> + char cmd_system[BUFSIZ];
> +
> tst_resm(TINFO, "Testcase #05: zombie");
>
> SAFE_GETRUSAGE(cleanup, RUSAGE_CHILDREN, &ru);
> @@ -229,7 +252,9 @@ static void zombie(void)
> case -1:
> tst_brkm(TBROK, cleanup, "fork #5");
> case 0:
> - retval = system("getrusage03_child -n 400");
> + size = 40 * factor_nr;
> + sprintf(cmd_system, "getrusage03_child -n %d", size);
> + retval = system(cmd_system);
> if ((WIFEXITED(retval) && WEXITSTATUS(retval) != 0))
> tst_brkm(TBROK|TERRNO, cleanup, "system");
> exit(0);
> @@ -252,16 +277,18 @@ static void zombie(void)
>
> SAFE_GETRUSAGE(cleanup, RUSAGE_CHILDREN, &ru);
> tst_resm(TINFO, "post_wait.children = %ld", ru.ru_maxrss);
> - if (is_in_delta(ru.ru_maxrss - 409600))
> - tst_resm(TPASS, "post_wait.children ~= 400MB");
> + if (is_in_delta(ru.ru_maxrss - (40960 * factor_nr)))
> + tst_resm(TPASS, "post_wait.children ~= %dMB", size);
> else
> - tst_resm(TFAIL, "post_wait.children !~= 400MB");
> + tst_resm(TFAIL, "post_wait.children !~= %dMB", size);
> }
>
> /* Testcase #06: SIG_IGN
> * expect: initial ~= after_zombie */
> static void sig_ign(void)
> {
> + char cmd_system[BUFSIZ];
> +
> tst_resm(TINFO, "Testcase #06: SIG_IGN");
>
> SAFE_GETRUSAGE(cleanup, RUSAGE_CHILDREN, &ru);
> @@ -273,7 +300,9 @@ static void sig_ign(void)
> case -1:
> tst_brkm(TBROK, cleanup, "fork #6");
> case 0:
> - retval = system("getrusage03_child -n 500");
> + size = 50 * factor_nr;
> + sprintf(cmd_system, "getrusage03_child -n %d", size);
> + retval = system(cmd_system);
> if ((WIFEXITED(retval) && WEXITSTATUS(retval) != 0))
> tst_brkm(TBROK|TERRNO, cleanup, "system");
> exit(0);
------------------------------------------------------------------------------
Virtualization & Cloud Management Using Capacity Planning
Cloud computing makes use of virtualization - but cloud computing
also focuses on allowing computing to be delivered as a service.
http://www.accelacomm.com/jaw/sfnl/114/51521223/
_______________________________________________
Ltp-list mailing list
Ltp-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ltp-list
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [LTP] [PATCH] getrusage03: add opportunity to reduce memory allocation's size
2012-02-15 4:09 ` Caspar Zhang
@ 2012-02-15 8:27 ` Filippo ARCIDIACONO
[not found] ` <4f3b6c8d.c1cb0e0a.3e38.354dSMTPIN_ADDED@mx.google.com>
1 sibling, 0 replies; 5+ messages in thread
From: Filippo ARCIDIACONO @ 2012-02-15 8:27 UTC (permalink / raw)
To: 'Caspar Zhang'; +Cc: ltp-list
[snip]
> > static void inherit_fork(void);
> > static void inherit_fork2(void);
> > @@ -77,11 +78,23 @@ int main(int argc, char *argv[])
> >
> > setup();
> >
> > + if (argc > 2)
> > + tst_brkm(TBROK, cleanup, " Too many arguments - Usage: %s
> [factor]", argv[0]);
> > +
> > + if (argv[1])
> > + factor_nr = atoi(argv[1]);
> > +
> > + if (factor_nr == 0)
> > + tst_brkm(TBROK, cleanup, "Input factor must be != 0");
>
> Here I want to use an LTP way to pass parameters, i.e. use option_t and
> parse_opts.
>
> Please take a look at getrusage03_child.c as example.
I have seen that but, I haven't done because it needs to pass only one number.
In any case I will follow your suggestion.
>
> > +
> > + tst_resm(TINFO, "Using %d as factor allocation mamory!",
> factor_nr);
> > +
> > for (lc = 0; TEST_LOOPING(lc); lc++) {
> > Tst_count = 0;
> >
> > - tst_resm(TINFO, "allocate 100MB");
> > - consume(100);
> > + size = 10 * factor_nr;
> > + tst_resm(TINFO, "allocate %dMB", size);
> > + consume(size);
> >
> > inherit_fork();
> > inherit_fork2();
> > @@ -123,17 +136,17 @@ static void inherit_fork(void)
> > }
> >
> > /* Testcase #02: fork inherit (cont.)
> > - * expect: initial.children ~= 100MB, child.children = 0 */
> > + * expect: initial.children ~= (10 * factor_nr)MB, child.children =
> 0 */
> > static void inherit_fork2(void)
> > {
> > tst_resm(TINFO, "Testcase #02: fork inherit(cont.)");
> >
> > SAFE_GETRUSAGE(cleanup, RUSAGE_CHILDREN, &ru);
> > tst_resm(TINFO, "initial.children = %ld", ru.ru_maxrss);
> > - if (is_in_delta(ru.ru_maxrss - 102400))
> > - tst_resm(TPASS, "initial.children ~= 100MB");
> > + if (is_in_delta(ru.ru_maxrss - (10240 * factor_nr)))
> > + tst_resm(TPASS, "initial.children ~= %dMB", size);
>
> `size` in this function is not initialized?
'size' is globally defined, it is initialized in the main().
>
> > else
> > - tst_resm(TFAIL, "initial.children !~= 100MB");
> > + tst_resm(TFAIL, "initial.children !~= %dMB", size);
> >
> > switch (pid = fork()) {
> > case -1:
> > @@ -153,9 +166,11 @@ static void inherit_fork2(void)
> > }
> >
Thanks for the review.
Filippo.
------------------------------------------------------------------------------
Virtualization & Cloud Management Using Capacity Planning
Cloud computing makes use of virtualization - but cloud computing
also focuses on allowing computing to be delivered as a service.
http://www.accelacomm.com/jaw/sfnl/114/51521223/
_______________________________________________
Ltp-list mailing list
Ltp-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ltp-list
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [LTP] [PATCH] getrusage03: add opportunity to reduce memory allocation's size
[not found] ` <4f3b6c8d.c1cb0e0a.3e38.354dSMTPIN_ADDED@mx.google.com>
@ 2012-02-15 10:24 ` Caspar Zhang
2012-02-15 10:46 ` Filippo ARCIDIACONO
0 siblings, 1 reply; 5+ messages in thread
From: Caspar Zhang @ 2012-02-15 10:24 UTC (permalink / raw)
To: Filippo ARCIDIACONO; +Cc: ltp-list
On 02/15/2012 04:27 PM, Filippo ARCIDIACONO wrote:
>>> > > static void inherit_fork2(void)
>>> > > {
>>> > > tst_resm(TINFO, "Testcase #02: fork inherit(cont.)");
>>> > >
>>> > > SAFE_GETRUSAGE(cleanup, RUSAGE_CHILDREN, &ru);
>>> > > tst_resm(TINFO, "initial.children = %ld", ru.ru_maxrss);
>>> > > - if (is_in_delta(ru.ru_maxrss - 102400))
>>> > > - tst_resm(TPASS, "initial.children ~= 100MB");
>>> > > + if (is_in_delta(ru.ru_maxrss - (10240 * factor_nr)))
>>> > > + tst_resm(TPASS, "initial.children ~= %dMB", size);
>> >
>> > `size` in this function is not initialized?
> 'size' is globally defined, it is initialized in the main().
>
Yes, but seems that you missed a "size = 10240 * factor_nr" here.
Thanks,
Caspar
------------------------------------------------------------------------------
Virtualization & Cloud Management Using Capacity Planning
Cloud computing makes use of virtualization - but cloud computing
also focuses on allowing computing to be delivered as a service.
http://www.accelacomm.com/jaw/sfnl/114/51521223/
_______________________________________________
Ltp-list mailing list
Ltp-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ltp-list
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [LTP] [PATCH] getrusage03: add opportunity to reduce memory allocation's size
2012-02-15 10:24 ` Caspar Zhang
@ 2012-02-15 10:46 ` Filippo ARCIDIACONO
0 siblings, 0 replies; 5+ messages in thread
From: Filippo ARCIDIACONO @ 2012-02-15 10:46 UTC (permalink / raw)
To: 'Caspar Zhang'; +Cc: ltp-list
> -----Original Message-----
> From: Caspar Zhang [mailto:caspar@casparzhang.com]
> Sent: Wednesday, February 15, 2012 11:24 AM
> To: Filippo ARCIDIACONO
> Cc: ltp-list@lists.sourceforge.net
> Subject: Re: [LTP] [PATCH] getrusage03: add opportunity to reduce
> memory allocation's size
>
> On 02/15/2012 04:27 PM, Filippo ARCIDIACONO wrote:
> >>> > > static void inherit_fork2(void)
> >>> > > {
> >>> > > tst_resm(TINFO, "Testcase #02: fork inherit(cont.)");
> >>> > >
> >>> > > SAFE_GETRUSAGE(cleanup, RUSAGE_CHILDREN, &ru);
> >>> > > tst_resm(TINFO, "initial.children = %ld", ru.ru_maxrss);
> >>> > > - if (is_in_delta(ru.ru_maxrss - 102400))
> >>> > > - tst_resm(TPASS, "initial.children ~= 100MB");
> >>> > > + if (is_in_delta(ru.ru_maxrss - (10240 * factor_nr)))
> >>> > > + tst_resm(TPASS, "initial.children ~= %dMB", size);
> >> >
> >> > `size` in this function is not initialized?
> > 'size' is globally defined, it is initialized in the main().
> >
>
> Yes, but seems that you missed a "size = 10240 * factor_nr" here.
No, size is in MB. What I'm doing is pass to inherit_fork2() 'size' as parameter,
In this function is used only to format the output string.
I'm going to repost the reworked patch shortly.
>
> Thanks,
> Caspar
------------------------------------------------------------------------------
Virtualization & Cloud Management Using Capacity Planning
Cloud computing makes use of virtualization - but cloud computing
also focuses on allowing computing to be delivered as a service.
http://www.accelacomm.com/jaw/sfnl/114/51521223/
_______________________________________________
Ltp-list mailing list
Ltp-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ltp-list
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2012-02-15 10:46 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-02-14 15:33 [LTP] [PATCH] getrusage03: add opportunity to reduce memory allocation's size Filippo ARCIDIACONO
2012-02-15 4:09 ` Caspar Zhang
2012-02-15 8:27 ` Filippo ARCIDIACONO
[not found] ` <4f3b6c8d.c1cb0e0a.3e38.354dSMTPIN_ADDED@mx.google.com>
2012-02-15 10:24 ` Caspar Zhang
2012-02-15 10:46 ` Filippo ARCIDIACONO
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox