brintos

brintos / linux-shallow public Read only

0
0
Text · 195 B · 9764c2e Raw
9 lines · c
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