Home
last modified time | relevance | path

Searched refs:FSCACHE_OP_WAITING (Results 1 – 4 of 4) sorted by relevance

/linux-4.19.296/fs/fscache/
Doperation.c107 if (test_and_clear_bit(FSCACHE_OP_WAITING, &op->flags)) in fscache_run_op()
108 wake_up_bit(&op->flags, FSCACHE_OP_WAITING); in fscache_run_op()
392 if (test_and_clear_bit(FSCACHE_OP_WAITING, &op->flags)) in fscache_cancel_op()
393 wake_up_bit(&op->flags, FSCACHE_OP_WAITING); in fscache_cancel_op()
408 if (test_and_clear_bit(FSCACHE_OP_WAITING, &op->flags)) in fscache_cancel_op()
409 wake_up_bit(&op->flags, FSCACHE_OP_WAITING); in fscache_cancel_op()
445 if (test_and_clear_bit(FSCACHE_OP_WAITING, &op->flags)) in fscache_cancel_all_ops()
446 wake_up_bit(&op->flags, FSCACHE_OP_WAITING); in fscache_cancel_all_ops()
Dpage.c325 (1UL << FSCACHE_OP_WAITING) | in fscache_alloc_retrieval()
384 if (!test_bit(FSCACHE_OP_WAITING, &op->flags)) in fscache_wait_for_operation_activation()
390 if (wait_on_bit(&op->flags, FSCACHE_OP_WAITING, in fscache_wait_for_operation_activation()
399 wait_on_bit(&op->flags, FSCACHE_OP_WAITING, in fscache_wait_for_operation_activation()
993 (1 << FSCACHE_OP_WAITING) | in __fscache_write_page()
Dcookie.c904 (1 << FSCACHE_OP_WAITING) | in __fscache_check_consistency()
/linux-4.19.296/include/linux/
Dfscache-cache.h110 #define FSCACHE_OP_WAITING 4 /* cleared when op is woken */ macro