#ifndef _LINUXKPI_ASM_ATOMIC_LONG_H_
#define _LINUXKPI_ASM_ATOMIC_LONG_H_
#include <linux/compiler.h>
#include <sys/types.h>
#include <machine/atomic.h>
#define ATOMIC_LONG_INIT(x) { .counter = (x) }
typedef struct {
volatile long counter;
} atomic_long_t;
#define atomic_long_add(i, v) atomic_long_add_return((i), (v))
#define atomic_long_sub(i, v) atomic_long_sub_return((i), (v))
#define atomic_long_inc_return(v) atomic_long_add_return(1, (v))
#define atomic_long_inc_not_zero(v) atomic_long_add_unless((v), 1, 0)
static inline long
atomic_long_add_return(long i, atomic_long_t *v)
{
return i + atomic_fetchadd_long(&v->counter, i);
}
static inline long
atomic_long_sub_return(long i, atomic_long_t *v)
{
return atomic_fetchadd_long(&v->counter, -i) - i;
}
static inline void
atomic_long_set(atomic_long_t *v, long i)
{
WRITE_ONCE(v->counter, i);
}
static inline long
atomic_long_read(atomic_long_t *v)
{
return READ_ONCE(v->counter);
}
static inline long
atomic_long_inc(atomic_long_t *v)
{
return atomic_fetchadd_long(&v->counter, 1) + 1;
}
static inline long
atomic_long_dec(atomic_long_t *v)
{
return atomic_fetchadd_long(&v->counter, -1) - 1;
}
static inline long
atomic_long_xchg(atomic_long_t *v, long val)
{
return atomic_swap_long(&v->counter, val);
}
static inline long
atomic_long_cmpxchg(atomic_long_t *v, long old, long new)
{
long ret = old;
for (;;) {
if (atomic_fcmpset_long(&v->counter, &ret, new))
break;
if (ret != old)
break;
}
return (ret);
}
static inline int
atomic_long_add_unless(atomic_long_t *v, long a, long u)
{
long c = atomic_long_read(v);
for (;;) {
if (unlikely(c == u))
break;
if (likely(atomic_fcmpset_long(&v->counter, &c, c + a)))
break;
}
return (c != u);
}
static inline long
atomic_long_fetch_add_unless(atomic_long_t *v, long a, long u)
{
long c = atomic_long_read(v);
for (;;) {
if (unlikely(c == u))
break;
if (likely(atomic_fcmpset_long(&v->counter, &c, c + a)))
break;
}
return (c);
}
static inline long
atomic_long_dec_and_test(atomic_long_t *v)
{
long i = atomic_long_add(-1, v);
return i == 0 ;
}
#endif