All of lore.kernel.org
 help / color / mirror / Atom feed
* Re: [LTP] [PATCH 3/3] syscalls/move_pages: removed tst_exit in check_config()
       [not found] <2F2D931F-792A-425D-9BFE-D97AD02CDEF7@gmail.com>
@ 2012-04-28  9:04 ` Zhouping Liu
  0 siblings, 0 replies; 3+ messages in thread
From: Zhouping Liu @ 2012-04-28  9:04 UTC (permalink / raw)
  To: Garrett Cooper; +Cc: LTP List



----- Original Message -----
> From: "Garrett Cooper" <yanegomi@gmail.com>
> To: "Zhouping Liu" <zliu@redhat.com>
> Sent: Saturday, April 28, 2012 3:53:54 PM
> Subject: Re: [LTP] [PATCH 3/3] syscalls/move_pages: removed tst_exit in check_config()
> 
> On Apr 28, 2012, at 12:48 AM, Zhouping Liu wrote:
> 
> > removed tst_exit in check_config(), as it's always involked
> > at any time, instead, using tst_brkm to displace tst_resm,
> > since TCONF should be called by tst_brkm.
> > 
> > Signed-off-by: Zhouping Liu <zliu@redhat.com>
> 
> Reviewed-by: Garrett Cooper <yanegomi@gmail.com
> 

Hi, Garrett,
you missed to CC ltp-list.

-- 
Thanks,
Zhouping

------------------------------------------------------------------------------
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

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [LTP] [PATCH 3/3] syscalls/move_pages: removed tst_exit in check_config()
  2012-04-28  7:48   ` [LTP] [PATCH 3/3] syscalls/move_pages: removed tst_exit in check_config() Zhouping Liu
@ 2012-04-28  7:56     ` Caspar Zhang
  0 siblings, 0 replies; 3+ messages in thread
From: Caspar Zhang @ 2012-04-28  7:56 UTC (permalink / raw)
  To: Zhouping Liu; +Cc: LTP List

On 04/28/2012 03:48 PM, Zhouping Liu wrote:
> removed tst_exit in check_config(), as it's always involked
> at any time, instead, using tst_brkm to displace tst_resm,
> since TCONF should be called by tst_brkm.
> 
> Signed-off-by: Zhouping Liu <zliu@redhat.com>

Acked-by: Caspar Zhang <caspar@casparzhang.com>

> ---
>  testcases/kernel/syscalls/move_pages/move_pages_support.c |    9 ++++-----
>  1 file changed, 4 insertions(+), 5 deletions(-)
> 
> diff --git a/testcases/kernel/syscalls/move_pages/move_pages_support.c b/testcases/kernel/syscalls/move_pages/move_pages_support.c
> index 6bd95d3..320486f 100644
> --- a/testcases/kernel/syscalls/move_pages/move_pages_support.c
> +++ b/testcases/kernel/syscalls/move_pages/move_pages_support.c
> @@ -382,14 +382,13 @@ void check_config(unsigned int min_nodes)
>  {
>  #if HAVE_NUMA_H && HAVE_NUMAIF_H
>  	if (numa_available() < 0) {
> -		tst_resm(TCONF, "NUMA support is not available");
> +		tst_brkm(TCONF, NULL, "NUMA support is not available");
>  	} else if (numa_max_node() < (min_nodes - 1)) {
> -		tst_resm(TCONF, "atleast 2 NUMA nodes are required");
> +		tst_brkm(TCONF, NULL, "atleast 2 NUMA nodes are required");
>  	} else if (tst_kvercmp(2, 6, 18) < 0) {
> -		tst_resm(TCONF, "2.6.18 or greater kernel required");
> +		tst_brkm(TCONF, NULL, "2.6.18 or greater kernel required");
>  	}
>  #else
> -	tst_resm(TCONF, "NUMA support not provided");
> +	tst_brkm(TCONF, NULL, "NUMA support not provided");
>  #endif
> -	tst_exit();
>  }


------------------------------------------------------------------------------
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

^ permalink raw reply	[flat|nested] 3+ messages in thread

* [LTP] [PATCH 3/3] syscalls/move_pages: removed tst_exit in check_config()
  2012-04-28  7:48 ` [LTP] [PATCH 2/3] syscalls/move_pages: modified HAS_NUMA_H as HAVE_NUMA_H Zhouping Liu
@ 2012-04-28  7:48   ` Zhouping Liu
  2012-04-28  7:56     ` Caspar Zhang
  0 siblings, 1 reply; 3+ messages in thread
From: Zhouping Liu @ 2012-04-28  7:48 UTC (permalink / raw)
  To: LTP List

removed tst_exit in check_config(), as it's always involked
at any time, instead, using tst_brkm to displace tst_resm,
since TCONF should be called by tst_brkm.

Signed-off-by: Zhouping Liu <zliu@redhat.com>
---
 testcases/kernel/syscalls/move_pages/move_pages_support.c |    9 ++++-----
 1 file changed, 4 insertions(+), 5 deletions(-)

diff --git a/testcases/kernel/syscalls/move_pages/move_pages_support.c b/testcases/kernel/syscalls/move_pages/move_pages_support.c
index 6bd95d3..320486f 100644
--- a/testcases/kernel/syscalls/move_pages/move_pages_support.c
+++ b/testcases/kernel/syscalls/move_pages/move_pages_support.c
@@ -382,14 +382,13 @@ void check_config(unsigned int min_nodes)
 {
 #if HAVE_NUMA_H && HAVE_NUMAIF_H
 	if (numa_available() < 0) {
-		tst_resm(TCONF, "NUMA support is not available");
+		tst_brkm(TCONF, NULL, "NUMA support is not available");
 	} else if (numa_max_node() < (min_nodes - 1)) {
-		tst_resm(TCONF, "atleast 2 NUMA nodes are required");
+		tst_brkm(TCONF, NULL, "atleast 2 NUMA nodes are required");
 	} else if (tst_kvercmp(2, 6, 18) < 0) {
-		tst_resm(TCONF, "2.6.18 or greater kernel required");
+		tst_brkm(TCONF, NULL, "2.6.18 or greater kernel required");
 	}
 #else
-	tst_resm(TCONF, "NUMA support not provided");
+	tst_brkm(TCONF, NULL, "NUMA support not provided");
 #endif
-	tst_exit();
 }
-- 
1.7.10


------------------------------------------------------------------------------
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

^ permalink raw reply related	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2012-04-28  9:04 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <2F2D931F-792A-425D-9BFE-D97AD02CDEF7@gmail.com>
2012-04-28  9:04 ` [LTP] [PATCH 3/3] syscalls/move_pages: removed tst_exit in check_config() Zhouping Liu
2012-04-28  7:48 [LTP] [PATCH 1/3] m4/ltp-numa.m4: fixed numa config Zhouping Liu
2012-04-28  7:48 ` [LTP] [PATCH 2/3] syscalls/move_pages: modified HAS_NUMA_H as HAVE_NUMA_H Zhouping Liu
2012-04-28  7:48   ` [LTP] [PATCH 3/3] syscalls/move_pages: removed tst_exit in check_config() Zhouping Liu
2012-04-28  7:56     ` Caspar Zhang

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.