Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 147935
b: refs/heads/master
c: d2c123c
h: refs/heads/master
i:
  147933: 0681063
  147931: 98c9307
  147927: 09a4755
  147919: 760ae25
  147903: a9f0cb0
v: v3
  • Loading branch information
Rusty Russell committed Jun 12, 2009
1 parent 3c23746 commit a756f14
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 45fcc70c0b6ee0c508e1fdb5fef735c3546803f4
refs/heads/master: d2c123c27db841c6c11a63de9c144823d2b1ba76
5 changes: 5 additions & 0 deletions trunk/include/linux/compiler.h
Original file line number Diff line number Diff line change
Expand Up @@ -261,6 +261,11 @@ void ftrace_likely_update(struct ftrace_branch_data *f, int val, int expect);
# define __section(S) __attribute__ ((__section__(#S)))
#endif

/* Are two types/vars the same type (ignoring qualifiers)? */
#ifndef __same_type
# define __same_type(a, b) __builtin_types_compatible_p(typeof(a), typeof(b))
#endif

/*
* Prevent the compiler from merging or refetching accesses. The compiler
* is also forbidden from reordering successive instances of ACCESS_ONCE(),
Expand Down

0 comments on commit a756f14

Please sign in to comment.