Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 142782
b: refs/heads/master
c: ab3c9c6
h: refs/heads/master
v: v3
  • Loading branch information
Linus Torvalds authored and Ingo Molnar committed Apr 7, 2009
1 parent cbbbec7 commit e476838
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: d9ad8bc0ca823705413f75b50c442a88cc518b35
refs/heads/master: ab3c9c686e22ab264269337ce7b75d9760211198
4 changes: 3 additions & 1 deletion trunk/include/linux/compiler.h
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,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 e476838

Please sign in to comment.