linux/fs/bcachefs/two_state_shared_lock.c
Kent Overstreet 19fe87e00b bcachefs: Inline bch2_two_state_(trylock|unlock)
Standard inlining of fast paths - these locks are now used by our new
nocow mode.

Signed-off-by: Kent Overstreet <kent.overstreet@linux.dev>
2023-10-22 17:09:51 -04:00

9 lines
195 B
C

// SPDX-License-Identifier: GPL-2.0
#include "two_state_shared_lock.h"
void __bch2_two_state_lock(two_state_lock_t *lock, int s)
{
__wait_event(lock->wait, bch2_two_state_trylock(lock, s));
}