1// SPDX-License-Identifier: GPL-2.02 3#include "two_state_shared_lock.h"4 5void __bch2_two_state_lock(two_state_lock_t *lock, int s)6{7 __wait_event(lock->wait, bch2_two_state_trylock(lock, s));8}9