public inbox for ltp@lists.linux.it
 help / color / mirror / Atom feed
* [LTP] [PATCH v2] ltp: Add support for Imagination Technologies Meta
@ 2013-03-14 16:55 Markos Chandras
  2013-03-16 15:43 ` Mike Frysinger
  0 siblings, 1 reply; 3+ messages in thread
From: Markos Chandras @ 2013-03-14 16:55 UTC (permalink / raw)
  To: ltp-list

From: Markos Chandras <markos.chandras@imgtec.com>

This patch adds support for Imagination's Meta architecture.
The Meta Linux kernel port will be included in the Linux Kernel
v3.9. The Meta stack grows upwards so we need to add the appropriate
__metag__ macro to the ltp_clone function. Also fix the #if/def
macro for s390x.

Signed-off-by: Markos Chandras <markos.chandras@imgtec.com>
---
 lib/cloner.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/lib/cloner.c b/lib/cloner.c
index 3835184..a68ff1e 100644
--- a/lib/cloner.c
+++ b/lib/cloner.c
@@ -31,7 +31,7 @@
 
 #undef clone			/* we want to use clone() */
 
-#if defined (__s390__) || (__s390x__)
+#if defined (__s390__) || defined(__s390x__)
 #define clone __clone
 extern int __clone(int (void *), void *, int, void *);
 #elif defined(__ia64__)
@@ -54,7 +54,7 @@ ltp_clone(unsigned long clone_flags, int (*fn) (void *arg), void *arg,
 {
 	int ret;
 
-#if defined(__hppa__)
+#if defined(__hppa__) || defined(__metag__)
 	ret = clone(fn, stack, clone_flags, arg);
 #elif defined(__ia64__)
 	ret = clone2(fn, stack, stack_size, clone_flags, arg, NULL, NULL, NULL);
-- 
1.7.1



------------------------------------------------------------------------------
Everyone hates slow websites. So do we.
Make your web apps faster with AppDynamics
Download AppDynamics Lite for free today:
http://p.sf.net/sfu/appdyn_d2d_mar
_______________________________________________
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:[~2013-03-16 16:23 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-03-14 16:55 [LTP] [PATCH v2] ltp: Add support for Imagination Technologies Meta Markos Chandras
2013-03-16 15:43 ` Mike Frysinger
2013-03-16 16:22   ` Markos Chandras

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