From: Michael Olbrich Date: Thu, 18 Oct 2012 11:55:13 +0000 (+0200) Subject: make sure __NR_name_to_handle_at is correctly defined X-Git-Tag: v195~32 X-Git-Url: https://www.chiark.greenend.org.uk/ucgi/~ianmdlvl/git?p=elogind.git;a=commitdiff_plain;h=f527b6b8e23759eabe9ebcb50b7dce412d5132d3 make sure __NR_name_to_handle_at is correctly defined 341 is only valid for x86, so don't use it for other architectures. Add the correct numbers for ARM and PowerPC while at it. --- diff --git a/src/shared/missing.h b/src/shared/missing.h index 1a3106603..f58a609c7 100644 --- a/src/shared/missing.h +++ b/src/shared/missing.h @@ -208,14 +208,26 @@ static inline pid_t gettid(void) { #define MAX_HANDLE_SZ 128 #endif -#ifdef __x86_64__ +#if defined __x86_64__ # ifndef __NR_name_to_handle_at # define __NR_name_to_handle_at 303 # endif -#else +#elif defined __i386__ # ifndef __NR_name_to_handle_at # define __NR_name_to_handle_at 341 # endif +#elif defined __arm__ +# ifndef __NR_name_to_handle_at +# define __NR_name_to_handle_at 370 +# endif +#elif defined __powerpc__ +# ifndef __NR_name_to_handle_at +# define __NR_name_to_handle_at 345 +# endif +#else +# ifndef __NR_name_to_handle_at +# error __NR_name_to_handle_at is not defined +# endif #endif #if !HAVE_DECL_NAME_TO_HANDLE_AT