Home
last modified time | relevance | path

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

/Linux-v5.15/fs/fscache/
Doperation.c106 if (test_and_clear_bit(FSCACHE_OP_WAITING, &op->flags)) in fscache_run_op()
107 wake_up_bit(&op->flags, FSCACHE_OP_WAITING); in fscache_run_op()
391 if (test_and_clear_bit(FSCACHE_OP_WAITING, &op->flags)) in fscache_cancel_op()
392 wake_up_bit(&op->flags, FSCACHE_OP_WAITING); in fscache_cancel_op()
407 if (test_and_clear_bit(FSCACHE_OP_WAITING, &op->flags)) in fscache_cancel_op()
408 wake_up_bit(&op->flags, FSCACHE_OP_WAITING); in fscache_cancel_op()
444 if (test_and_clear_bit(FSCACHE_OP_WAITING, &op->flags)) in fscache_cancel_all_ops()
445 wake_up_bit(&op->flags, FSCACHE_OP_WAITING); in fscache_cancel_all_ops()
Dpage.c320 (1UL << FSCACHE_OP_WAITING) | in fscache_alloc_retrieval()
374 if (!test_bit(FSCACHE_OP_WAITING, &op->flags)) in fscache_wait_for_operation_activation()
380 if (wait_on_bit(&op->flags, FSCACHE_OP_WAITING, in fscache_wait_for_operation_activation()
389 wait_on_bit(&op->flags, FSCACHE_OP_WAITING, in fscache_wait_for_operation_activation()
983 (1 << FSCACHE_OP_WAITING) | in __fscache_write_page()
Dcookie.c929 (1 << FSCACHE_OP_WAITING) | in __fscache_check_consistency()
/Linux-v5.15/Documentation/filesystems/caching/
Doperations.rst66 FSCACHE_OP_WAITING may be set in op->flags prior to each submission of the
87 If this option is to be used, FSCACHE_OP_WAITING must be set in op->flags
91 wait_on_bit(&op->flags, FSCACHE_OP_WAITING,
171 FSCACHE_OP_WAITING as described above and check the state of the object if
/Linux-v5.15/include/linux/
Dfscache-cache.h106 #define FSCACHE_OP_WAITING 4 /* cleared when op is woken */ macro