From f77da9591aa682a7762602c4b6512898468e239e Mon Sep 17 00:00:00 2001 From: Konstantin Khlebnikov Date: Wed, 29 Feb 2012 00:41:12 +0400 Subject: [PATCH] --- yaml --- r: 288200 b: refs/heads/master c: adb795062f89b8d67d295ee25e04034bccce6779 h: refs/heads/master v: v3 --- [refs] | 2 +- trunk/include/linux/percpu.h | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/[refs] b/[refs] index 5b0e6c9edfd7..82aedc4ed9dd 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: e920d5971d706290c5a6281f719e16c25021f964 +refs/heads/master: adb795062f89b8d67d295ee25e04034bccce6779 diff --git a/trunk/include/linux/percpu.h b/trunk/include/linux/percpu.h index 594c0040fdd8..21638ae14e07 100644 --- a/trunk/include/linux/percpu.h +++ b/trunk/include/linux/percpu.h @@ -722,9 +722,9 @@ do { \ __pcpu_size_call_return2(__this_cpu_add_return_, pcp, val) #endif -#define __this_cpu_sub_return(pcp, val) this_cpu_add_return(pcp, -(val)) -#define __this_cpu_inc_return(pcp) this_cpu_add_return(pcp, 1) -#define __this_cpu_dec_return(pcp) this_cpu_add_return(pcp, -1) +#define __this_cpu_sub_return(pcp, val) __this_cpu_add_return(pcp, -(val)) +#define __this_cpu_inc_return(pcp) __this_cpu_add_return(pcp, 1) +#define __this_cpu_dec_return(pcp) __this_cpu_add_return(pcp, -1) #define __this_cpu_generic_xchg(pcp, nval) \ ({ typeof(pcp) ret__; \