All of lore.kernel.org
 help / color / mirror / Atom feed
* [LTP]  [PATCH 1/3] m4/ltp-numa.m4: fixed numa config
@ 2012-04-28  7:48 Zhouping Liu
  2012-04-28  7:48 ` [LTP] [PATCH 2/3] syscalls/move_pages: modified HAS_NUMA_H as HAVE_NUMA_H Zhouping Liu
                   ` (2 more replies)
  0 siblings, 3 replies; 9+ messages in thread
From: Zhouping Liu @ 2012-04-28  7:48 UTC (permalink / raw)
  To: LTP List

numa_alloc_onnode() and numa_move_pages() all need numa lib '-lnuma',
but in ltp-numa.m4, we just checked the two functions using
AC_CHECK_FUNCS, without the patch, it always report such error
log in numa system: "undefined reference to `numa_alloc_onnode`",
which blocked syscalls/move_pages/* cases, the patch fixed it.

Signed-off-by: Zhouping Liu <zliu@redhat.com>
---
 m4/ltp-numa.m4 |    9 ++++++++-
 1 file changed, 8 insertions(+), 1 deletion(-)

diff --git a/m4/ltp-numa.m4 b/m4/ltp-numa.m4
index bcc5e6b..d03bc80 100644
--- a/m4/ltp-numa.m4
+++ b/m4/ltp-numa.m4
@@ -26,7 +26,14 @@ AC_DEFUN([LTP_CHECK_SYSCALL_NUMA],
 [dnl
 AC_CHECK_HEADERS([linux/mempolicy.h numa.h numaif.h],[
 	LTP_SYSCALL_NUMA_HEADERS=yes
-	AC_CHECK_FUNCS(numa_alloc_onnode,numa_move_pages)
+	AC_CHECK_LIB(numa,numa_alloc_onnode,[have_numa_alloc_onnode="yes"])
+	if  test "x$have_numa_alloc_onnode" = "xyes"; then
+		AC_DEFINE(HAVE_NUMA_ALLOC_ONNODE,1,[define to 1 if you have 'numa_alloc_onnode' function])
+	fi
+	AC_CHECK_LIB(numa,numa_move_pages,[have_numa_move_pages="yes"])
+	if  test "x$have_numa_move_pages" = "xyes"; then
+		AC_DEFINE(HAVE_NUMA_MOVE_PAGES,1,[define to 1 if you have 'numa_move_pages' function])
+	fi
 ]
 	AC_CHECK_LIB(numa,numa_available,[
 NUMA_CPPFLAGS="-DNUMA_VERSION1_COMPATIBILITY"
-- 
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] 9+ messages in thread
[parent not found: <5f459a2d-8dca-42ca-bff1-bd96d9e019a4@zmail13.collab.prod.int.phx2.redhat.com>]

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

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
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
2012-04-28  7:53   ` [LTP] [PATCH 2/3] syscalls/move_pages: modified HAS_NUMA_H as HAVE_NUMA_H Garrett Cooper
2012-04-28  7:56   ` Caspar Zhang
2012-04-28  7:57 ` [LTP] [PATCH 1/3] m4/ltp-numa.m4: fixed numa config Caspar Zhang
2012-04-28 11:35 ` Wanlong Gao
     [not found] <5f459a2d-8dca-42ca-bff1-bd96d9e019a4@zmail13.collab.prod.int.phx2.redhat.com>
2012-04-28  9:05 ` Zhouping Liu

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.