Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 288200
b: refs/heads/master
c: adb7950
h: refs/heads/master
v: v3
  • Loading branch information
Konstantin Khlebnikov authored and Tejun Heo committed Mar 4, 2012
1 parent 3da37f2 commit f77da95
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: e920d5971d706290c5a6281f719e16c25021f964
refs/heads/master: adb795062f89b8d67d295ee25e04034bccce6779
6 changes: 3 additions & 3 deletions trunk/include/linux/percpu.h
Original file line number Diff line number Diff line change
Expand Up @@ -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__; \
Expand Down

0 comments on commit f77da95

Please sign in to comment.