Home
last modified time | relevance | path

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

/linux-2.6.39/fs/cachefiles/
Dinterface.c56 BUG_ON(test_bit(CACHEFILES_OBJECT_ACTIVE, &object->flags)); in cachefiles_alloc_object()
106 BUG_ON(test_bit(CACHEFILES_OBJECT_ACTIVE, &object->flags)); in cachefiles_alloc_object()
282 if (test_bit(CACHEFILES_OBJECT_ACTIVE, &object->flags)) { in cachefiles_drop_object()
284 if (!test_and_clear_bit(CACHEFILES_OBJECT_ACTIVE, in cachefiles_drop_object()
288 wake_up_bit(&object->flags, CACHEFILES_OBJECT_ACTIVE); in cachefiles_drop_object()
323 ASSERT(!test_bit(CACHEFILES_OBJECT_ACTIVE, &object->flags)); in cachefiles_put_object()
Dnamei.c163 if (test_and_set_bit(CACHEFILES_OBJECT_ACTIVE, &object->flags)) { in cachefiles_mark_object_active()
206 if (test_bit(CACHEFILES_OBJECT_ACTIVE, &xobject->flags)) { in cachefiles_mark_object_active()
224 wq = bit_waitqueue(&xobject->flags, CACHEFILES_OBJECT_ACTIVE); in cachefiles_mark_object_active()
229 if (!test_bit(CACHEFILES_OBJECT_ACTIVE, &xobject->flags)) in cachefiles_mark_object_active()
237 test_bit(CACHEFILES_OBJECT_ACTIVE, &xobject->flags)) { in cachefiles_mark_object_active()
253 ASSERT(!test_bit(CACHEFILES_OBJECT_ACTIVE, &xobject->flags)); in cachefiles_mark_object_active()
259 clear_bit(CACHEFILES_OBJECT_ACTIVE, &object->flags); in cachefiles_mark_object_active()
688 clear_bit(CACHEFILES_OBJECT_ACTIVE, &object->flags); in cachefiles_walk_to_object()
689 wake_up_bit(&object->flags, CACHEFILES_OBJECT_ACTIVE); in cachefiles_walk_to_object()
Dinternal.h36 #define CACHEFILES_OBJECT_ACTIVE 0 /* T if marked active */ macro