diff options
author | David S. Miller <davem@sunset.davemloft.net> | 2007-04-26 23:18:17 -0400 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2007-04-26 23:18:17 -0400 |
commit | 411faf5810cdd0e4f5071a3805d8adb49d120a07 (patch) | |
tree | c78231a289bf3ebe0e6786e033674d3848381381 /net/rxrpc/ar-internal.h | |
parent | ba3e0e1accd8d5bb12eaeb0977429d8dc04f6d1e (diff) |
[RXRPC]: Remove bogus atomic_* overrides.
These are done with CPP defines which several platforms
use for their atomic.h implementation, which floods the
build with warnings and breaks the build.
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/rxrpc/ar-internal.h')
-rw-r--r-- | net/rxrpc/ar-internal.h | 24 |
1 files changed, 0 insertions, 24 deletions
diff --git a/net/rxrpc/ar-internal.h b/net/rxrpc/ar-internal.h index cb1eb492ee48..58aaf892238e 100644 --- a/net/rxrpc/ar-internal.h +++ b/net/rxrpc/ar-internal.h | |||
@@ -786,30 +786,6 @@ static inline void rxrpc_purge_queue(struct sk_buff_head *list) | |||
786 | rxrpc_free_skb(skb); | 786 | rxrpc_free_skb(skb); |
787 | } | 787 | } |
788 | 788 | ||
789 | static inline void __rxrpc__atomic_inc(atomic_t *v) | ||
790 | { | ||
791 | CHECK_SLAB_OKAY(v); | ||
792 | atomic_inc(v); | ||
793 | } | ||
794 | |||
795 | #define atomic_inc(v) __rxrpc__atomic_inc((v)) | ||
796 | |||
797 | static inline void __rxrpc__atomic_dec(atomic_t *v) | ||
798 | { | ||
799 | CHECK_SLAB_OKAY(v); | ||
800 | atomic_dec(v); | ||
801 | } | ||
802 | |||
803 | #define atomic_dec(v) __rxrpc__atomic_dec((v)) | ||
804 | |||
805 | static inline int __rxrpc__atomic_dec_and_test(atomic_t *v) | ||
806 | { | ||
807 | CHECK_SLAB_OKAY(v); | ||
808 | return atomic_dec_and_test(v); | ||
809 | } | ||
810 | |||
811 | #define atomic_dec_and_test(v) __rxrpc__atomic_dec_and_test((v)) | ||
812 | |||
813 | static inline void __rxrpc_get_local(struct rxrpc_local *local, const char *f) | 789 | static inline void __rxrpc_get_local(struct rxrpc_local *local, const char *f) |
814 | { | 790 | { |
815 | CHECK_SLAB_OKAY(&local->usage); | 791 | CHECK_SLAB_OKAY(&local->usage); |