Underflow is what you really want to trap. When you reach urcu_ref_get,
it is already too late.
[Edit: whitespaces -> tab cleanup]
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
Signed-off-by: Mathieu Desnoyers <mathieu.desnoyers@efficios.com>
static inline void urcu_ref_get(struct urcu_ref *ref)
{
- long res = uatomic_add_return(&ref->refcount, 1);
- assert(res != 0);
+ uatomic_add(&ref->refcount, 1);
}
static inline void urcu_ref_put(struct urcu_ref *ref,
void (*release)(struct urcu_ref *))
{
- if (!uatomic_sub_return(&ref->refcount, 1))
+ long res = uatomic_sub_return(&ref->refcount, 1);
+ assert (res >= 0);
+ if (res == 0)
release(ref);
}