public inbox for ltp@lists.linux.it
 help / color / mirror / Atom feed
* [LTP]  [PATCH 2/2] mbind01: Fix the bug of mind case06
@ 2009-09-02  5:44 Zhang Xiliang
  2009-09-07 11:41 ` Subrata Modak
  0 siblings, 1 reply; 2+ messages in thread
From: Zhang Xiliang @ 2009-09-02  5:44 UTC (permalink / raw)
  To: ltp-list

I tested ltp mbind case and found the case06 failed.

In mbind manual, it says "If the nodemask and maxnode arguments specify the empty set, 
then the memory is allocated on the node of the CPU that triggered the allocation."

In case06, when tc->policy is MPOL_PREFERRED and tc->from_node is NONE, the getnodemask 
which is get by get_mempolicy() refer to the node of the CPU that triggered the allocation.
But the nodemask is zero.(It is not used by mbind(), mbind() used "NULL".)

So in this case, the cmp_ok should only compare the policy.

Signed-off-by: Zhang Xiliang <zhangxiliang@cn.fujitsu.com>
---
 testcases/kernel/syscalls/mbind/mbind01.c |    5 ++++-
 1 files changed, 4 insertions(+), 1 deletions(-)

diff --git a/testcases/kernel/syscalls/mbind/mbind01.c b/testcases/kernel/syscalls/mbind/mbind01.c
index 94c2dd0..446fdaf 100644
--- a/testcases/kernel/syscalls/mbind/mbind01.c
+++ b/testcases/kernel/syscalls/mbind/mbind01.c
@@ -305,7 +305,10 @@ static int do_test(struct test_case *tc) {
 // When policy equals MPOL_DEFAULT, then get_mempolicy not return node
         if (tc->policy == MPOL_DEFAULT)
 		nodemask_zero(&nodemask);
-	cmp_ok = ((tc->policy == policy) && nodemask_equal(&nodemask,&getnodemask));
+	if ((tc->policy == MPOL_PREFERRED) && (tc->from_node == NONE))
+		cmp_ok = (tc->policy == policy);
+	else
+		cmp_ok = ((tc->policy == policy) && nodemask_equal(&nodemask,&getnodemask));
         if (opt_debug) {
 		nodemask_dump("nodemask Expect:", &nodemask);
 		nodemask_dump("nodemask Result:", &getnodemask);



------------------------------------------------------------------------------
Let Crystal Reports handle the reporting - Free Crystal Reports 2008 30-Day 
trial. Simplify your report design, integration and deployment - and focus on 
what you do best, core application coding. Discover what's new with 
Crystal Reports now.  http://p.sf.net/sfu/bobj-july
_______________________________________________
Ltp-list mailing list
Ltp-list@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/ltp-list

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

end of thread, other threads:[~2009-09-07 11:41 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-09-02  5:44 [LTP] [PATCH 2/2] mbind01: Fix the bug of mind case06 Zhang Xiliang
2009-09-07 11:41 ` Subrata Modak

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox