Home
last modified time | relevance | path

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

/linux-3.4.99/fs/fscache/
Doperation.c68 if (test_and_clear_bit(FSCACHE_OP_WAITING, &op->flags)) in fscache_run_op()
69 wake_up_bit(&op->flags, FSCACHE_OP_WAITING); in fscache_run_op()
302 if (test_and_clear_bit(FSCACHE_OP_WAITING, &op->flags)) in fscache_cancel_op()
303 wake_up_bit(&op->flags, FSCACHE_OP_WAITING); in fscache_cancel_op()
Dpage.c251 op->op.flags = FSCACHE_OP_MYTHREAD | (1 << FSCACHE_OP_WAITING); in fscache_alloc_retrieval()
303 if (!test_bit(FSCACHE_OP_WAITING, &op->op.flags)) in fscache_wait_for_retrieval_activation()
308 if (wait_on_bit(&op->op.flags, FSCACHE_OP_WAITING, in fscache_wait_for_retrieval_activation()
317 wait_on_bit(&op->op.flags, FSCACHE_OP_WAITING, in fscache_wait_for_retrieval_activation()
768 op->op.flags = FSCACHE_OP_ASYNC | (1 << FSCACHE_OP_WAITING); in __fscache_write_page()
/linux-3.4.99/Documentation/filesystems/caching/
Doperations.txt66 FSCACHE_OP_WAITING may be set in op->flags prior to each submission of the
88 If this option is to be used, FSCACHE_OP_WAITING must be set in op->flags
92 wait_on_bit(&op->flags, FSCACHE_OP_WAITING,
173 FSCACHE_OP_WAITING as described above and check the state of the object if
/linux-3.4.99/include/linux/
Dfscache-cache.h87 #define FSCACHE_OP_WAITING 4 /* cleared when op is woken */ macro