Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 162847
b: refs/heads/master
c: 9d24baf
h: refs/heads/master
i:
  162845: 0f812c6
  162843: ec63d57
  162839: b322d70
  162831: aa5445e
  162815: 78e05b1
v: v3
  • Loading branch information
David Daney authored and Ralf Baechle committed Sep 17, 2009
1 parent 2454cd6 commit 94ba979
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 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: b791d1193af9772040e592d5aa161790f800b762
refs/heads/master: 9d24bafb0d1ecf636f71a56f9d6f071f5c7a882d
Original file line number Diff line number Diff line change
Expand Up @@ -31,12 +31,16 @@
#define cpu_has_cache_cdex_s 0
#define cpu_has_prefetch 1

#define cpu_has_llsc 1
/*
* We should disable LL/SC on non SMP systems as it is faster to
* disable interrupts for atomic access than a LL/SC. Unfortunatly we
* cannot as this breaks asm/futex.h
* We Disable LL/SC on non SMP systems as it is faster to disable
* interrupts for atomic access than a LL/SC.
*/
#define cpu_has_llsc 1
#ifdef CONFIG_SMP
# define kernel_uses_llsc 1
#else
# define kernel_uses_llsc 0
#endif
#define cpu_has_vtag_icache 1
#define cpu_has_dc_aliases 0
#define cpu_has_ic_fills_f_dc 0
Expand Down

0 comments on commit 94ba979

Please sign in to comment.