M7350/kernel/arch/microblaze/include/asm/atomic.h

28 lines
587 B
C
Raw Permalink Normal View History

2024-09-09 08:52:07 +00:00
#ifndef _ASM_MICROBLAZE_ATOMIC_H
#define _ASM_MICROBLAZE_ATOMIC_H
#include <asm/cmpxchg.h>
#include <asm-generic/atomic.h>
#include <asm-generic/atomic64.h>
/*
* Atomically test *v and decrement if it is greater than 0.
* The function returns the old value of *v minus 1.
*/
static inline int atomic_dec_if_positive(atomic_t *v)
{
unsigned long flags;
int res;
local_irq_save(flags);
res = v->counter - 1;
if (res >= 0)
v->counter = res;
local_irq_restore(flags);
return res;
}
2024-09-09 08:57:42 +00:00
#define atomic_dec_if_positive atomic_dec_if_positive
2024-09-09 08:52:07 +00:00
#endif /* _ASM_MICROBLAZE_ATOMIC_H */