[lttng-dev] Package liburcu: build for hurd-i386

Mathieu Desnoyers mathieu.desnoyers at efficios.com
Fri Feb 22 11:01:12 EST 2013


* Samuel Thibault (sthibault at debian.org) wrote:
> Hello,
> 
> Mathieu Desnoyers, le Fri 22 Feb 2013 09:09:20 -0500, a écrit :
> > I noticed a build failure on hurd-i386, and committed a fix in Userspace
> > RCU master branch to address this issue. Testing would be welcome.
> 
> Unfortunately it doesn't work, because sched_setaffinity is for now just
> a fail-stub on hurd-i386, and thus configure considers it as missing,
> and thus the CPU_SET test is disabled completely.
> 
> I however guess you could just disable defining your own cpu_set_t when
> !HAVE_SCHED_SETAFFINITY, since it is probably used only for using
> sched_setaffinity.

Either that or move the cpu_set_t, CPU_SET and CPU_ZERO tests outside of
the sched_setaffinity conditional within configure.ac. It will allow to
handle various configurations more elegantly. Here is the commit (pushed
into master), comments are welcome!


commit b3231c17e4a4e0b2d76754982eb1e1bc90da2987
Author: Mathieu Desnoyers <mathieu.desnoyers at efficios.com>
Date:   Fri Feb 22 10:57:48 2013 -0500

    Fix hurd-i386: move cpuset tests outside of sched_setaffinity conditional
    
    Comment about introduction of cpuset.h within urcu tests:
    
    > Unfortunately it doesn't work, because sched_setaffinity is for now
    > just a fail-stub on hurd-i386, and thus configure considers it as
    > missing, and thus the CPU_SET test is disabled completely.
    >
    > I however guess you could just disable defining your own cpu_set_t
    > when !HAVE_SCHED_SETAFFINITY, since it is probably used only for using
    > sched_setaffinity.
    
    Fix by moving cpu_set_t, CPU_SET and CPU_ZERO tests outside of the
    sched_setaffinity conditional.
    
    Reported-by: Samuel Thibault <sthibault at debian.org>
    Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers at efficios.com>

diff --git a/configure.ac b/configure.ac
index a49b39f..b6f787b 100644
--- a/configure.ac
+++ b/configure.ac
@@ -202,6 +202,49 @@ AS_IF([test "x$def_smp_support" = "xyes"], [AC_DEFINE([CONFIG_RCU_SMP], [1])])
 saved_CFLAGS=$CFLAGS
 CFLAGS="$CFLAGS -D_GNU_SOURCE"
 
+AC_CHECK_TYPES([cpu_set_t],
+	[have_cpu_set_t="yes"],
+	[have_cpu_set_t="no"],
+	[#include <sched.h>])
+
+# Confirm that we have CPU_ZERO, and it actually works.
+AC_MSG_CHECKING([whether CPU_ZERO works])
+AH_TEMPLATE([HAVE_CPU_ZERO], [Defined to 1 if we have CPU_ZERO and it works])
+AC_COMPILE_IFELSE([AC_LANG_SOURCE([[
+		#define _GNU_SOURCE
+		#include <sched.h>
+		int main()
+		{
+			cpu_set_t foo; CPU_ZERO(&foo);
+			return 0;
+		}
+	]])
+],[
+	AC_DEFINE(HAVE_CPU_ZERO, 1)
+	AC_MSG_RESULT([yes])
+],[
+	AC_MSG_RESULT([no])
+])
+
+# Confirm that we have CPU_SET, and it actually works.
+AC_MSG_CHECKING([whether CPU_SET works])
+AH_TEMPLATE([HAVE_CPU_SET], [Defined to 1 if we have CPU_SET and it works])
+AC_COMPILE_IFELSE([AC_LANG_SOURCE([[
+		#define _GNU_SOURCE
+		#include <sched.h>
+		int main()
+		{
+			cpu_set_t foo, mask; CPU_SET(0, &foo);
+			return 0;
+		}
+	]])
+],[
+	AC_DEFINE(HAVE_CPU_SET, 1)
+	AC_MSG_RESULT([yes])
+],[
+	AC_MSG_RESULT([no])
+])
+
 # First check if the function is available at all.
 AC_CHECK_FUNCS([sched_setaffinity],[
 	# Okay, we have it.  Check if also have cpu_set_t.  If we don't,
@@ -210,47 +253,8 @@ AC_CHECK_FUNCS([sched_setaffinity],[
 	# version with 2 or 3 arguments.  In that case, CPU_ZERO, etc.,
 	# should also be present, but we confirm nonetheless.
 
-	AC_CHECK_TYPES([cpu_set_t],[
-		# We do have it.  Confirm that we have CPU_ZERO, and it actually works.
-		AC_MSG_CHECKING([whether CPU_ZERO works])
-		AH_TEMPLATE([HAVE_CPU_ZERO], [Defined to 1 if we have CPU_ZERO and it works])
-		AC_COMPILE_IFELSE([AC_LANG_SOURCE([[
-				#define _GNU_SOURCE
-				#include <sched.h>
-				int main()
-				{
-					cpu_set_t foo; CPU_ZERO (&foo);
-					return 0;
-				}
-			]])
-		],[
-			# Works!
-			AC_DEFINE(HAVE_CPU_ZERO, 1)
-			AC_MSG_RESULT([yes])
-		],[
-			AC_MSG_RESULT([no])
-		])
-
-		# Confirm that we have CPU_SET, and it actually works.
-		AC_MSG_CHECKING([whether CPU_SET works])
-		AH_TEMPLATE([HAVE_CPU_SET], [Defined to 1 if we have CPU_SET and it works])
-		AC_COMPILE_IFELSE([AC_LANG_SOURCE([[
-				#define _GNU_SOURCE
-				#include <sched.h>
-				int main()
-				{
-					cpu_set_t foo, mask; CPU_SET (0, &foo);
-					return 0;
-				}
-			]])
-		],[
-			# Works!
-			AC_DEFINE(HAVE_CPU_SET, 1)
-			AC_MSG_RESULT([yes])
-		],[
-			AC_MSG_RESULT([no])
-		])
-
+	AS_IF([test "x$have_cpu_set_t" = "xyes"], [
+		# We do have it.
 		# Check how many arguments does sched_setaffinity take.
 		# Should be 3 or 2.
 		AC_MSG_CHECKING([how many arguments sched_setaffinity takes])
@@ -259,21 +263,21 @@ AC_CHECK_FUNCS([sched_setaffinity],[
 				int main()
 				{
 					cpu_set_t foo;
-					sched_setaffinity (0, sizeof (foo), &foo);
+					sched_setaffinity(0, sizeof (foo), &foo);
 					return 0;
 				}
 			]])
 		],
 		[sched_set_affinity_args=3],
 		[sched_set_affinity_args=2])
-		AC_DEFINE_UNQUOTED(SCHED_SETAFFINITY_ARGS, $sched_set_affinity_args,
+		AC_DEFINE_UNQUOTED(SCHED_SETAFFINITY_ARGS,
+			$sched_set_affinity_args,
 			[Defined to sched_setaffinity's number of arguments.])
 		AC_MSG_RESULT([$sched_set_affinity_args])
 	],[
 		# No cpu_set_t, always 3 args.
 		AC_DEFINE(SCHED_SETAFFINITY_ARGS, 3)
-    	],
-    	[#include <sched.h>])
+	])
 ])
 
 CFLAGS=$saved_CFLAGS


-- 
Mathieu Desnoyers
EfficiOS Inc.
http://www.efficios.com



More information about the lttng-dev mailing list