]> code.ossystems Code Review - openembedded-core.git/commitdiff
ltp: fix an incorrect macro checking
authorJackie Huang <jackie.huang@windriver.com>
Sat, 19 Nov 2016 02:11:00 +0000 (10:11 +0800)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Wed, 19 Apr 2017 09:16:24 +0000 (10:16 +0100)
The previous patch added a check but incorrectly
change the elif to if, then it always return 0
for cpuid if the machine is not __i386__

getcpu01    1  TFAIL  :  getcpu01.c:140: getcpu() returned wrong value expected cpuid:7, returned value cpuid: 0

After this fix:
getcpu01    1  TPASS  :  getcpu() returned proper cpuid:7, node id:0

Signed-off-by: Jackie Huang <jackie.huang@windriver.com>
Signed-off-by: Ross Burton <ross.burton@intel.com>
meta/recipes-extended/ltp/ltp/0008-Check-if-__GLIBC_PREREQ-is-defined-before-using-it.patch

index d1230742070e028fe8f28abd421dba7571aa1ecf..41f26236209decbcfc283c6c77dca128bbfbda37 100644 (file)
@@ -88,22 +88,19 @@ index c927512..921b107 100644
  
  void cleanup(void);
  void setup(void);
-@@ -164,9 +172,14 @@ static inline int getcpu(unsigned *cpu_id, unsigned *node_id,
+@@ -164,7 +172,11 @@ static inline int getcpu(unsigned *cpu_id, unsigned *node_id,
  {
  #if defined(__i386__)
        return syscall(318, cpu_id, node_id, cache_struct);
 -#elif __GLIBC_PREREQ(2,6)
-+#if defined(__GLIBC__)
++#elif defined(__GLIBC__)
 +#if __GLIBC_PREREQ(2,6)
 +      *cpu_id = sched_getcpu();
 +#endif
 +#else
        *cpu_id = sched_getcpu();
  #endif
-+#endif
        return 0;
- }
 @@ -191,15 +204,20 @@ unsigned int set_cpu_affinity(void)
        cpu_set_t *set;
        size_t size;