diff options
Diffstat (limited to 'include/linux/interrupt.h')
-rw-r--r-- | include/linux/interrupt.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/include/linux/interrupt.h b/include/linux/interrupt.h index 051c85032f48..cb19f09d7e3e 100644 --- a/include/linux/interrupt.h +++ b/include/linux/interrupt.h | |||
@@ -491,7 +491,7 @@ static inline int tasklet_trylock(struct tasklet_struct *t) | |||
491 | 491 | ||
492 | static inline void tasklet_unlock(struct tasklet_struct *t) | 492 | static inline void tasklet_unlock(struct tasklet_struct *t) |
493 | { | 493 | { |
494 | smp_mb__before_clear_bit(); | 494 | smp_mb__before_atomic(); |
495 | clear_bit(TASKLET_STATE_RUN, &(t)->state); | 495 | clear_bit(TASKLET_STATE_RUN, &(t)->state); |
496 | } | 496 | } |
497 | 497 | ||
@@ -539,7 +539,7 @@ static inline void tasklet_hi_schedule_first(struct tasklet_struct *t) | |||
539 | static inline void tasklet_disable_nosync(struct tasklet_struct *t) | 539 | static inline void tasklet_disable_nosync(struct tasklet_struct *t) |
540 | { | 540 | { |
541 | atomic_inc(&t->count); | 541 | atomic_inc(&t->count); |
542 | smp_mb__after_atomic_inc(); | 542 | smp_mb__after_atomic(); |
543 | } | 543 | } |
544 | 544 | ||
545 | static inline void tasklet_disable(struct tasklet_struct *t) | 545 | static inline void tasklet_disable(struct tasklet_struct *t) |
@@ -551,13 +551,13 @@ static inline void tasklet_disable(struct tasklet_struct *t) | |||
551 | 551 | ||
552 | static inline void tasklet_enable(struct tasklet_struct *t) | 552 | static inline void tasklet_enable(struct tasklet_struct *t) |
553 | { | 553 | { |
554 | smp_mb__before_atomic_dec(); | 554 | smp_mb__before_atomic(); |
555 | atomic_dec(&t->count); | 555 | atomic_dec(&t->count); |
556 | } | 556 | } |
557 | 557 | ||
558 | static inline void tasklet_hi_enable(struct tasklet_struct *t) | 558 | static inline void tasklet_hi_enable(struct tasklet_struct *t) |
559 | { | 559 | { |
560 | smp_mb__before_atomic_dec(); | 560 | smp_mb__before_atomic(); |
561 | atomic_dec(&t->count); | 561 | atomic_dec(&t->count); |
562 | } | 562 | } |
563 | 563 | ||