Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 142735
b: refs/heads/master
c: aeeae86
h: refs/heads/master
i:
  142733: 5186bc1
  142731: 86db239
  142727: 352c57b
  142719: ecf8c65
v: v3
  • Loading branch information
Linus Torvalds committed Apr 7, 2009
1 parent 6fdcf88 commit 25d3192
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 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: 985c0cd3f75b5a546ceab002e36b4263f2f7d2c3
refs/heads/master: aeeae86859f4319de0a4946b44771d9926eeed54
4 changes: 3 additions & 1 deletion trunk/include/linux/compiler.h
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,9 @@ void ftrace_likely_update(struct ftrace_branch_data *f, int val, int expect);
* "Define 'is'", Bill Clinton
* "Define 'if'", Steven Rostedt
*/
#define if(cond) if (__builtin_constant_p((cond)) ? !!(cond) : \
#define if(cond, ...) __trace_if( (cond , ## __VA_ARGS__) )
#define __trace_if(cond) \
if (__builtin_constant_p((cond)) ? !!(cond) : \
({ \
int ______r; \
static struct ftrace_branch_data \
Expand Down

0 comments on commit 25d3192

Please sign in to comment.