mirror of
https://github.com/FEX-Emu/linux.git
synced 2024-12-15 05:11:32 +00:00
[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>
This commit is contained in:
parent
ba3e0e1acc
commit
411faf5810
@ -786,30 +786,6 @@ static inline void rxrpc_purge_queue(struct sk_buff_head *list)
|
||||
rxrpc_free_skb(skb);
|
||||
}
|
||||
|
||||
static inline void __rxrpc__atomic_inc(atomic_t *v)
|
||||
{
|
||||
CHECK_SLAB_OKAY(v);
|
||||
atomic_inc(v);
|
||||
}
|
||||
|
||||
#define atomic_inc(v) __rxrpc__atomic_inc((v))
|
||||
|
||||
static inline void __rxrpc__atomic_dec(atomic_t *v)
|
||||
{
|
||||
CHECK_SLAB_OKAY(v);
|
||||
atomic_dec(v);
|
||||
}
|
||||
|
||||
#define atomic_dec(v) __rxrpc__atomic_dec((v))
|
||||
|
||||
static inline int __rxrpc__atomic_dec_and_test(atomic_t *v)
|
||||
{
|
||||
CHECK_SLAB_OKAY(v);
|
||||
return atomic_dec_and_test(v);
|
||||
}
|
||||
|
||||
#define atomic_dec_and_test(v) __rxrpc__atomic_dec_and_test((v))
|
||||
|
||||
static inline void __rxrpc_get_local(struct rxrpc_local *local, const char *f)
|
||||
{
|
||||
CHECK_SLAB_OKAY(&local->usage);
|
||||
|
Loading…
Reference in New Issue
Block a user