Home
last modified time | relevance | path

Searched refs:CACHEFILES_OBJECT_ACTIVE (Results 1 – 3 of 3) sorted by relevance

/linux-4.4.14/fs/cachefiles/
Dinterface.c53 BUG_ON(test_bit(CACHEFILES_OBJECT_ACTIVE, &object->flags)); in cachefiles_alloc_object()
103 BUG_ON(test_bit(CACHEFILES_OBJECT_ACTIVE, &object->flags)); in cachefiles_alloc_object()
294 if (test_bit(CACHEFILES_OBJECT_ACTIVE, &object->flags)) { in cachefiles_drop_object()
296 if (!test_and_clear_bit(CACHEFILES_OBJECT_ACTIVE, in cachefiles_drop_object()
300 wake_up_bit(&object->flags, CACHEFILES_OBJECT_ACTIVE); in cachefiles_drop_object()
335 ASSERT(!test_bit(CACHEFILES_OBJECT_ACTIVE, &object->flags)); in cachefiles_put_object()
Dnamei.c160 if (test_and_set_bit(CACHEFILES_OBJECT_ACTIVE, &object->flags)) { in cachefiles_mark_object_active()
202 if (test_bit(CACHEFILES_OBJECT_ACTIVE, &xobject->flags)) { in cachefiles_mark_object_active()
220 wq = bit_waitqueue(&xobject->flags, CACHEFILES_OBJECT_ACTIVE); in cachefiles_mark_object_active()
225 if (!test_bit(CACHEFILES_OBJECT_ACTIVE, &xobject->flags)) in cachefiles_mark_object_active()
233 test_bit(CACHEFILES_OBJECT_ACTIVE, &xobject->flags)) { in cachefiles_mark_object_active()
248 ASSERT(!test_bit(CACHEFILES_OBJECT_ACTIVE, &xobject->flags)); in cachefiles_mark_object_active()
254 clear_bit(CACHEFILES_OBJECT_ACTIVE, &object->flags); in cachefiles_mark_object_active()
689 clear_bit(CACHEFILES_OBJECT_ACTIVE, &object->flags); in cachefiles_walk_to_object()
690 wake_up_bit(&object->flags, CACHEFILES_OBJECT_ACTIVE); in cachefiles_walk_to_object()
Dinternal.h45 #define CACHEFILES_OBJECT_ACTIVE 0 /* T if marked active */ macro