1 /* netfs cookie management
3 * Copyright (C) 2004-2007 Red Hat, Inc. All Rights Reserved.
4 * Written by David Howells (dhowells@redhat.com)
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
11 * See Documentation/filesystems/caching/netfs-api.txt for more information on
15 #define FSCACHE_DEBUG_LEVEL COOKIE
16 #include <linux/module.h>
17 #include <linux/slab.h>
20 struct kmem_cache
*fscache_cookie_jar
;
22 static atomic_t fscache_object_debug_id
= ATOMIC_INIT(0);
24 #define fscache_cookie_hash_shift 15
25 static struct hlist_bl_head fscache_cookie_hash
[1 << fscache_cookie_hash_shift
];
27 static int fscache_acquire_non_index_cookie(struct fscache_cookie
*cookie
,
29 static int fscache_alloc_object(struct fscache_cache
*cache
,
30 struct fscache_cookie
*cookie
);
31 static int fscache_attach_object(struct fscache_cookie
*cookie
,
32 struct fscache_object
*object
);
34 static void fscache_print_cookie(struct fscache_cookie
*cookie
, char prefix
)
36 struct hlist_node
*object
;
40 pr_err("%c-cookie c=%p [p=%p fl=%lx nc=%u na=%u]\n",
41 prefix
, cookie
, cookie
->parent
, cookie
->flags
,
42 atomic_read(&cookie
->n_children
),
43 atomic_read(&cookie
->n_active
));
44 pr_err("%c-cookie d=%p n=%p\n",
45 prefix
, cookie
->def
, cookie
->netfs_data
);
47 object
= READ_ONCE(cookie
->backing_objects
.first
);
49 pr_err("%c-cookie o=%p\n",
50 prefix
, hlist_entry(object
, struct fscache_object
, cookie_link
));
52 pr_err("%c-key=[%u] '", prefix
, cookie
->key_len
);
53 k
= (cookie
->key_len
<= sizeof(cookie
->inline_key
)) ?
54 cookie
->inline_key
: cookie
->key
;
55 for (loop
= 0; loop
< cookie
->key_len
; loop
++)
56 pr_cont("%02x", k
[loop
]);
60 void fscache_free_cookie(struct fscache_cookie
*cookie
)
63 BUG_ON(!hlist_empty(&cookie
->backing_objects
));
64 if (cookie
->aux_len
> sizeof(cookie
->inline_aux
))
66 if (cookie
->key_len
> sizeof(cookie
->inline_key
))
68 kmem_cache_free(fscache_cookie_jar
, cookie
);
73 * initialise an cookie jar slab element prior to any use
75 void fscache_cookie_init_once(void *_cookie
)
77 struct fscache_cookie
*cookie
= _cookie
;
79 memset(cookie
, 0, sizeof(*cookie
));
80 spin_lock_init(&cookie
->lock
);
81 spin_lock_init(&cookie
->stores_lock
);
82 INIT_HLIST_HEAD(&cookie
->backing_objects
);
86 * Set the index key in a cookie. The cookie struct has space for a 12-byte
87 * key plus length and hash, but if that's not big enough, it's instead a
88 * pointer to a buffer containing 3 bytes of hash, 1 byte of length and then
91 static int fscache_set_key(struct fscache_cookie
*cookie
,
92 const void *index_key
, size_t index_key_len
)
98 cookie
->key_len
= index_key_len
;
100 if (index_key_len
> sizeof(cookie
->inline_key
)) {
101 buf
= kzalloc(index_key_len
, GFP_KERNEL
);
106 buf
= (u32
*)cookie
->inline_key
;
112 memcpy(buf
, index_key
, index_key_len
);
114 /* Calculate a hash and combine this with the length in the first word
117 h
= (unsigned long)cookie
->parent
;
118 h
+= index_key_len
+ cookie
->type
;
119 for (i
= 0; i
< (index_key_len
+ sizeof(u32
) - 1) / sizeof(u32
); i
++)
122 cookie
->key_hash
= h
^ (h
>> 32);
126 static long fscache_compare_cookie(const struct fscache_cookie
*a
,
127 const struct fscache_cookie
*b
)
131 if (a
->key_hash
!= b
->key_hash
)
132 return (long)a
->key_hash
- (long)b
->key_hash
;
133 if (a
->parent
!= b
->parent
)
134 return (long)a
->parent
- (long)b
->parent
;
135 if (a
->key_len
!= b
->key_len
)
136 return (long)a
->key_len
- (long)b
->key_len
;
137 if (a
->type
!= b
->type
)
138 return (long)a
->type
- (long)b
->type
;
140 if (a
->key_len
<= sizeof(a
->inline_key
)) {
147 return memcmp(ka
, kb
, a
->key_len
);
153 struct fscache_cookie
*fscache_alloc_cookie(
154 struct fscache_cookie
*parent
,
155 const struct fscache_cookie_def
*def
,
156 const void *index_key
, size_t index_key_len
,
157 const void *aux_data
, size_t aux_data_len
,
161 struct fscache_cookie
*cookie
;
163 /* allocate and initialise a cookie */
164 cookie
= kmem_cache_alloc(fscache_cookie_jar
, GFP_KERNEL
);
168 cookie
->key_len
= index_key_len
;
169 cookie
->aux_len
= aux_data_len
;
171 if (fscache_set_key(cookie
, index_key
, index_key_len
) < 0)
174 if (cookie
->aux_len
<= sizeof(cookie
->inline_aux
)) {
175 memcpy(cookie
->inline_aux
, aux_data
, cookie
->aux_len
);
177 cookie
->aux
= kmemdup(aux_data
, cookie
->aux_len
, GFP_KERNEL
);
182 atomic_set(&cookie
->usage
, 1);
183 atomic_set(&cookie
->n_children
, 0);
185 /* We keep the active count elevated until relinquishment to prevent an
186 * attempt to wake up every time the object operations queue quiesces.
188 atomic_set(&cookie
->n_active
, 1);
191 cookie
->parent
= parent
;
192 cookie
->netfs_data
= netfs_data
;
193 cookie
->flags
= (1 << FSCACHE_COOKIE_NO_DATA_YET
);
194 cookie
->type
= def
->type
;
196 /* radix tree insertion won't use the preallocation pool unless it's
197 * told it may not wait */
198 INIT_RADIX_TREE(&cookie
->stores
, GFP_NOFS
& ~__GFP_DIRECT_RECLAIM
);
202 fscache_free_cookie(cookie
);
207 * Attempt to insert the new cookie into the hash. If there's a collision, we
208 * return the old cookie if it's not in use and an error otherwise.
210 struct fscache_cookie
*fscache_hash_cookie(struct fscache_cookie
*candidate
)
212 struct fscache_cookie
*cursor
;
213 struct hlist_bl_head
*h
;
214 struct hlist_bl_node
*p
;
217 bucket
= candidate
->key_hash
& (ARRAY_SIZE(fscache_cookie_hash
) - 1);
218 h
= &fscache_cookie_hash
[bucket
];
221 hlist_bl_for_each_entry(cursor
, p
, h
, hash_link
) {
222 if (fscache_compare_cookie(candidate
, cursor
) == 0)
226 __set_bit(FSCACHE_COOKIE_ACQUIRED
, &candidate
->flags
);
227 fscache_cookie_get(candidate
->parent
, fscache_cookie_get_acquire_parent
);
228 atomic_inc(&candidate
->parent
->n_children
);
229 hlist_bl_add_head(&candidate
->hash_link
, h
);
234 if (test_and_set_bit(FSCACHE_COOKIE_ACQUIRED
, &cursor
->flags
)) {
235 trace_fscache_cookie(cursor
, fscache_cookie_collision
,
236 atomic_read(&cursor
->usage
));
237 pr_err("Duplicate cookie detected\n");
238 fscache_print_cookie(cursor
, 'O');
239 fscache_print_cookie(candidate
, 'N');
244 fscache_cookie_get(cursor
, fscache_cookie_get_reacquire
);
250 * request a cookie to represent an object (index, datafile, xattr, etc)
251 * - parent specifies the parent object
252 * - the top level index cookie for each netfs is stored in the fscache_netfs
253 * struct upon registration
254 * - def points to the definition
255 * - the netfs_data will be passed to the functions pointed to in *def
256 * - all attached caches will be searched to see if they contain this object
257 * - index objects aren't stored on disk until there's a dependent file that
259 * - other objects are stored in a selected cache immediately, and all the
260 * indices forming the path to it are instantiated if necessary
261 * - we never let on to the netfs about errors
262 * - we may set a negative cookie pointer, but that's okay
264 struct fscache_cookie
*__fscache_acquire_cookie(
265 struct fscache_cookie
*parent
,
266 const struct fscache_cookie_def
*def
,
267 const void *index_key
, size_t index_key_len
,
268 const void *aux_data
, size_t aux_data_len
,
273 struct fscache_cookie
*candidate
, *cookie
;
277 _enter("{%s},{%s},%p,%u",
278 parent
? (char *) parent
->def
->name
: "<no-parent>",
279 def
->name
, netfs_data
, enable
);
281 if (!index_key
|| !index_key_len
|| index_key_len
> 255 || aux_data_len
> 255)
283 if (!aux_data
|| !aux_data_len
) {
288 fscache_stat(&fscache_n_acquires
);
290 /* if there's no parent cookie, then we don't create one here either */
292 fscache_stat(&fscache_n_acquires_null
);
293 _leave(" [no parent]");
297 /* validate the definition */
298 BUG_ON(!def
->name
[0]);
300 BUG_ON(def
->type
== FSCACHE_COOKIE_TYPE_INDEX
&&
301 parent
->type
!= FSCACHE_COOKIE_TYPE_INDEX
);
303 candidate
= fscache_alloc_cookie(parent
, def
,
304 index_key
, index_key_len
,
305 aux_data
, aux_data_len
,
306 netfs_data
, object_size
);
308 fscache_stat(&fscache_n_acquires_oom
);
313 cookie
= fscache_hash_cookie(candidate
);
315 trace_fscache_cookie(candidate
, fscache_cookie_discard
, 1);
319 if (cookie
== candidate
)
322 switch (cookie
->type
) {
323 case FSCACHE_COOKIE_TYPE_INDEX
:
324 fscache_stat(&fscache_n_cookie_index
);
326 case FSCACHE_COOKIE_TYPE_DATAFILE
:
327 fscache_stat(&fscache_n_cookie_data
);
330 fscache_stat(&fscache_n_cookie_special
);
334 trace_fscache_acquire(cookie
);
337 /* if the object is an index then we need do nothing more here
338 * - we create indices on disk when we need them as an index
339 * may exist in multiple caches */
340 if (cookie
->type
!= FSCACHE_COOKIE_TYPE_INDEX
) {
341 if (fscache_acquire_non_index_cookie(cookie
, object_size
) == 0) {
342 set_bit(FSCACHE_COOKIE_ENABLED
, &cookie
->flags
);
344 atomic_dec(&parent
->n_children
);
345 fscache_cookie_put(cookie
,
346 fscache_cookie_put_acquire_nobufs
);
347 fscache_stat(&fscache_n_acquires_nobufs
);
352 set_bit(FSCACHE_COOKIE_ENABLED
, &cookie
->flags
);
356 fscache_stat(&fscache_n_acquires_ok
);
359 fscache_free_cookie(candidate
);
362 EXPORT_SYMBOL(__fscache_acquire_cookie
);
365 * Enable a cookie to permit it to accept new operations.
367 void __fscache_enable_cookie(struct fscache_cookie
*cookie
,
368 const void *aux_data
,
370 bool (*can_enable
)(void *data
),
373 _enter("%p", cookie
);
375 trace_fscache_enable(cookie
);
377 wait_on_bit_lock(&cookie
->flags
, FSCACHE_COOKIE_ENABLEMENT_LOCK
,
378 TASK_UNINTERRUPTIBLE
);
380 fscache_update_aux(cookie
, aux_data
);
382 if (test_bit(FSCACHE_COOKIE_ENABLED
, &cookie
->flags
))
385 if (can_enable
&& !can_enable(data
)) {
386 /* The netfs decided it didn't want to enable after all */
387 } else if (cookie
->type
!= FSCACHE_COOKIE_TYPE_INDEX
) {
388 /* Wait for outstanding disablement to complete */
389 __fscache_wait_on_invalidate(cookie
);
391 if (fscache_acquire_non_index_cookie(cookie
, object_size
) == 0)
392 set_bit(FSCACHE_COOKIE_ENABLED
, &cookie
->flags
);
394 set_bit(FSCACHE_COOKIE_ENABLED
, &cookie
->flags
);
398 clear_bit_unlock(FSCACHE_COOKIE_ENABLEMENT_LOCK
, &cookie
->flags
);
399 wake_up_bit(&cookie
->flags
, FSCACHE_COOKIE_ENABLEMENT_LOCK
);
401 EXPORT_SYMBOL(__fscache_enable_cookie
);
404 * acquire a non-index cookie
405 * - this must make sure the index chain is instantiated and instantiate the
406 * object representation too
408 static int fscache_acquire_non_index_cookie(struct fscache_cookie
*cookie
,
411 struct fscache_object
*object
;
412 struct fscache_cache
*cache
;
417 set_bit(FSCACHE_COOKIE_UNAVAILABLE
, &cookie
->flags
);
419 /* now we need to see whether the backing objects for this cookie yet
420 * exist, if not there'll be nothing to search */
421 down_read(&fscache_addremove_sem
);
423 if (list_empty(&fscache_cache_list
)) {
424 up_read(&fscache_addremove_sem
);
425 _leave(" = 0 [no caches]");
429 /* select a cache in which to store the object */
430 cache
= fscache_select_cache_for_object(cookie
->parent
);
432 up_read(&fscache_addremove_sem
);
433 fscache_stat(&fscache_n_acquires_no_cache
);
434 _leave(" = -ENOMEDIUM [no cache]");
438 _debug("cache %s", cache
->tag
->name
);
440 set_bit(FSCACHE_COOKIE_LOOKING_UP
, &cookie
->flags
);
442 /* ask the cache to allocate objects for this cookie and its parent
444 ret
= fscache_alloc_object(cache
, cookie
);
446 up_read(&fscache_addremove_sem
);
447 _leave(" = %d", ret
);
451 spin_lock(&cookie
->lock
);
452 if (hlist_empty(&cookie
->backing_objects
)) {
453 spin_unlock(&cookie
->lock
);
457 object
= hlist_entry(cookie
->backing_objects
.first
,
458 struct fscache_object
, cookie_link
);
460 fscache_set_store_limit(object
, object_size
);
462 /* initiate the process of looking up all the objects in the chain
463 * (done by fscache_initialise_object()) */
464 fscache_raise_event(object
, FSCACHE_OBJECT_EV_NEW_CHILD
);
466 spin_unlock(&cookie
->lock
);
468 /* we may be required to wait for lookup to complete at this point */
469 if (!fscache_defer_lookup
) {
470 _debug("non-deferred lookup %p", &cookie
->flags
);
471 wait_on_bit(&cookie
->flags
, FSCACHE_COOKIE_LOOKING_UP
,
472 TASK_UNINTERRUPTIBLE
);
474 if (test_bit(FSCACHE_COOKIE_UNAVAILABLE
, &cookie
->flags
))
478 up_read(&fscache_addremove_sem
);
479 _leave(" = 0 [deferred]");
483 up_read(&fscache_addremove_sem
);
484 _leave(" = -ENOBUFS");
489 * recursively allocate cache object records for a cookie/cache combination
490 * - caller must be holding the addremove sem
492 static int fscache_alloc_object(struct fscache_cache
*cache
,
493 struct fscache_cookie
*cookie
)
495 struct fscache_object
*object
;
498 _enter("%p,%p{%s}", cache
, cookie
, cookie
->def
->name
);
500 spin_lock(&cookie
->lock
);
501 hlist_for_each_entry(object
, &cookie
->backing_objects
,
503 if (object
->cache
== cache
)
504 goto object_already_extant
;
506 spin_unlock(&cookie
->lock
);
508 /* ask the cache to allocate an object (we may end up with duplicate
509 * objects at this stage, but we sort that out later) */
510 fscache_stat(&fscache_n_cop_alloc_object
);
511 object
= cache
->ops
->alloc_object(cache
, cookie
);
512 fscache_stat_d(&fscache_n_cop_alloc_object
);
513 if (IS_ERR(object
)) {
514 fscache_stat(&fscache_n_object_no_alloc
);
515 ret
= PTR_ERR(object
);
519 fscache_stat(&fscache_n_object_alloc
);
521 object
->debug_id
= atomic_inc_return(&fscache_object_debug_id
);
523 _debug("ALLOC OBJ%x: %s {%lx}",
524 object
->debug_id
, cookie
->def
->name
, object
->events
);
526 ret
= fscache_alloc_object(cache
, cookie
->parent
);
530 /* only attach if we managed to allocate all we needed, otherwise
531 * discard the object we just allocated and instead use the one
532 * attached to the cookie */
533 if (fscache_attach_object(cookie
, object
) < 0) {
534 fscache_stat(&fscache_n_cop_put_object
);
535 cache
->ops
->put_object(object
, fscache_obj_put_attach_fail
);
536 fscache_stat_d(&fscache_n_cop_put_object
);
542 object_already_extant
:
544 if (fscache_object_is_dying(object
) ||
545 fscache_cache_is_broken(object
)) {
546 spin_unlock(&cookie
->lock
);
549 spin_unlock(&cookie
->lock
);
550 _leave(" = 0 [found]");
554 fscache_stat(&fscache_n_cop_put_object
);
555 cache
->ops
->put_object(object
, fscache_obj_put_alloc_fail
);
556 fscache_stat_d(&fscache_n_cop_put_object
);
558 _leave(" = %d", ret
);
563 * attach a cache object to a cookie
565 static int fscache_attach_object(struct fscache_cookie
*cookie
,
566 struct fscache_object
*object
)
568 struct fscache_object
*p
;
569 struct fscache_cache
*cache
= object
->cache
;
572 _enter("{%s},{OBJ%x}", cookie
->def
->name
, object
->debug_id
);
574 spin_lock(&cookie
->lock
);
576 /* there may be multiple initial creations of this object, but we only
579 hlist_for_each_entry(p
, &cookie
->backing_objects
, cookie_link
) {
580 if (p
->cache
== object
->cache
) {
581 if (fscache_object_is_dying(p
))
583 goto cant_attach_object
;
587 /* pin the parent object */
588 spin_lock_nested(&cookie
->parent
->lock
, 1);
589 hlist_for_each_entry(p
, &cookie
->parent
->backing_objects
,
591 if (p
->cache
== object
->cache
) {
592 if (fscache_object_is_dying(p
)) {
594 spin_unlock(&cookie
->parent
->lock
);
595 goto cant_attach_object
;
600 spin_unlock(&p
->lock
);
604 spin_unlock(&cookie
->parent
->lock
);
606 /* attach to the cache's object list */
607 if (list_empty(&object
->cache_link
)) {
608 spin_lock(&cache
->object_list_lock
);
609 list_add(&object
->cache_link
, &cache
->object_list
);
610 spin_unlock(&cache
->object_list_lock
);
613 /* attach to the cookie */
614 object
->cookie
= cookie
;
615 fscache_cookie_get(cookie
, fscache_cookie_get_attach_object
);
616 hlist_add_head(&object
->cookie_link
, &cookie
->backing_objects
);
618 fscache_objlist_add(object
);
622 spin_unlock(&cookie
->lock
);
623 _leave(" = %d", ret
);
628 * Invalidate an object. Callable with spinlocks held.
630 void __fscache_invalidate(struct fscache_cookie
*cookie
)
632 struct fscache_object
*object
;
634 _enter("{%s}", cookie
->def
->name
);
636 fscache_stat(&fscache_n_invalidates
);
638 /* Only permit invalidation of data files. Invalidating an index will
639 * require the caller to release all its attachments to the tree rooted
640 * there, and if it's doing that, it may as well just retire the
643 ASSERTCMP(cookie
->type
, ==, FSCACHE_COOKIE_TYPE_DATAFILE
);
645 /* If there's an object, we tell the object state machine to handle the
646 * invalidation on our behalf, otherwise there's nothing to do.
648 if (!hlist_empty(&cookie
->backing_objects
)) {
649 spin_lock(&cookie
->lock
);
651 if (fscache_cookie_enabled(cookie
) &&
652 !hlist_empty(&cookie
->backing_objects
) &&
653 !test_and_set_bit(FSCACHE_COOKIE_INVALIDATING
,
655 object
= hlist_entry(cookie
->backing_objects
.first
,
656 struct fscache_object
,
658 if (fscache_object_is_live(object
))
660 object
, FSCACHE_OBJECT_EV_INVALIDATE
);
663 spin_unlock(&cookie
->lock
);
668 EXPORT_SYMBOL(__fscache_invalidate
);
671 * Wait for object invalidation to complete.
673 void __fscache_wait_on_invalidate(struct fscache_cookie
*cookie
)
675 _enter("%p", cookie
);
677 wait_on_bit(&cookie
->flags
, FSCACHE_COOKIE_INVALIDATING
,
678 TASK_UNINTERRUPTIBLE
);
682 EXPORT_SYMBOL(__fscache_wait_on_invalidate
);
685 * update the index entries backing a cookie
687 void __fscache_update_cookie(struct fscache_cookie
*cookie
, const void *aux_data
)
689 struct fscache_object
*object
;
691 fscache_stat(&fscache_n_updates
);
694 fscache_stat(&fscache_n_updates_null
);
695 _leave(" [no cookie]");
699 _enter("{%s}", cookie
->def
->name
);
701 spin_lock(&cookie
->lock
);
703 fscache_update_aux(cookie
, aux_data
);
705 if (fscache_cookie_enabled(cookie
)) {
706 /* update the index entry on disk in each cache backing this
709 hlist_for_each_entry(object
,
710 &cookie
->backing_objects
, cookie_link
) {
711 fscache_raise_event(object
, FSCACHE_OBJECT_EV_UPDATE
);
715 spin_unlock(&cookie
->lock
);
718 EXPORT_SYMBOL(__fscache_update_cookie
);
721 * Disable a cookie to stop it from accepting new requests from the netfs.
723 void __fscache_disable_cookie(struct fscache_cookie
*cookie
,
724 const void *aux_data
,
727 struct fscache_object
*object
;
730 _enter("%p,%u", cookie
, invalidate
);
732 trace_fscache_disable(cookie
);
734 ASSERTCMP(atomic_read(&cookie
->n_active
), >, 0);
736 if (atomic_read(&cookie
->n_children
) != 0) {
737 pr_err("Cookie '%s' still has children\n",
742 wait_on_bit_lock(&cookie
->flags
, FSCACHE_COOKIE_ENABLEMENT_LOCK
,
743 TASK_UNINTERRUPTIBLE
);
745 fscache_update_aux(cookie
, aux_data
);
747 if (!test_and_clear_bit(FSCACHE_COOKIE_ENABLED
, &cookie
->flags
))
748 goto out_unlock_enable
;
750 /* If the cookie is being invalidated, wait for that to complete first
751 * so that we can reuse the flag.
753 __fscache_wait_on_invalidate(cookie
);
755 /* Dispose of the backing objects */
756 set_bit(FSCACHE_COOKIE_INVALIDATING
, &cookie
->flags
);
758 spin_lock(&cookie
->lock
);
759 if (!hlist_empty(&cookie
->backing_objects
)) {
760 hlist_for_each_entry(object
, &cookie
->backing_objects
, cookie_link
) {
762 set_bit(FSCACHE_OBJECT_RETIRED
, &object
->flags
);
763 clear_bit(FSCACHE_OBJECT_PENDING_WRITE
, &object
->flags
);
764 fscache_raise_event(object
, FSCACHE_OBJECT_EV_KILL
);
767 if (test_and_clear_bit(FSCACHE_COOKIE_INVALIDATING
, &cookie
->flags
))
770 spin_unlock(&cookie
->lock
);
772 wake_up_bit(&cookie
->flags
, FSCACHE_COOKIE_INVALIDATING
);
774 /* Wait for cessation of activity requiring access to the netfs (when
775 * n_active reaches 0). This makes sure outstanding reads and writes
778 if (!atomic_dec_and_test(&cookie
->n_active
)) {
779 wait_var_event(&cookie
->n_active
,
780 !atomic_read(&cookie
->n_active
));
783 /* Make sure any pending writes are cancelled. */
784 if (cookie
->type
!= FSCACHE_COOKIE_TYPE_INDEX
)
785 fscache_invalidate_writes(cookie
);
787 /* Reset the cookie state if it wasn't relinquished */
788 if (!test_bit(FSCACHE_COOKIE_RELINQUISHED
, &cookie
->flags
)) {
789 atomic_inc(&cookie
->n_active
);
790 set_bit(FSCACHE_COOKIE_NO_DATA_YET
, &cookie
->flags
);
794 clear_bit_unlock(FSCACHE_COOKIE_ENABLEMENT_LOCK
, &cookie
->flags
);
795 wake_up_bit(&cookie
->flags
, FSCACHE_COOKIE_ENABLEMENT_LOCK
);
798 EXPORT_SYMBOL(__fscache_disable_cookie
);
801 * release a cookie back to the cache
802 * - the object will be marked as recyclable on disk if retire is true
803 * - all dependents of this cookie must have already been unregistered
804 * (indices/files/pages)
806 void __fscache_relinquish_cookie(struct fscache_cookie
*cookie
,
807 const void *aux_data
,
810 fscache_stat(&fscache_n_relinquishes
);
812 fscache_stat(&fscache_n_relinquishes_retire
);
815 fscache_stat(&fscache_n_relinquishes_null
);
816 _leave(" [no cookie]");
820 _enter("%p{%s,%p,%d},%d",
821 cookie
, cookie
->def
->name
, cookie
->netfs_data
,
822 atomic_read(&cookie
->n_active
), retire
);
824 trace_fscache_relinquish(cookie
, retire
);
826 /* No further netfs-accessing operations on this cookie permitted */
827 if (test_and_set_bit(FSCACHE_COOKIE_RELINQUISHED
, &cookie
->flags
))
830 __fscache_disable_cookie(cookie
, aux_data
, retire
);
832 /* Clear pointers back to the netfs */
833 cookie
->netfs_data
= NULL
;
835 BUG_ON(!radix_tree_empty(&cookie
->stores
));
837 if (cookie
->parent
) {
838 ASSERTCMP(atomic_read(&cookie
->parent
->usage
), >, 0);
839 ASSERTCMP(atomic_read(&cookie
->parent
->n_children
), >, 0);
840 atomic_dec(&cookie
->parent
->n_children
);
843 /* Dispose of the netfs's link to the cookie */
844 ASSERTCMP(atomic_read(&cookie
->usage
), >, 0);
845 fscache_cookie_put(cookie
, fscache_cookie_put_relinquish
);
849 EXPORT_SYMBOL(__fscache_relinquish_cookie
);
852 * Remove a cookie from the hash table.
854 static void fscache_unhash_cookie(struct fscache_cookie
*cookie
)
856 struct hlist_bl_head
*h
;
859 bucket
= cookie
->key_hash
& (ARRAY_SIZE(fscache_cookie_hash
) - 1);
860 h
= &fscache_cookie_hash
[bucket
];
863 hlist_bl_del(&cookie
->hash_link
);
868 * Drop a reference to a cookie.
870 void fscache_cookie_put(struct fscache_cookie
*cookie
,
871 enum fscache_cookie_trace where
)
873 struct fscache_cookie
*parent
;
876 _enter("%p", cookie
);
879 usage
= atomic_dec_return(&cookie
->usage
);
880 trace_fscache_cookie(cookie
, where
, usage
);
886 parent
= cookie
->parent
;
887 fscache_unhash_cookie(cookie
);
888 fscache_free_cookie(cookie
);
891 where
= fscache_cookie_put_parent
;
898 * check the consistency between the netfs inode and the backing cache
900 * NOTE: it only serves no-index type
902 int __fscache_check_consistency(struct fscache_cookie
*cookie
,
903 const void *aux_data
)
905 struct fscache_operation
*op
;
906 struct fscache_object
*object
;
907 bool wake_cookie
= false;
910 _enter("%p,", cookie
);
912 ASSERTCMP(cookie
->type
, ==, FSCACHE_COOKIE_TYPE_DATAFILE
);
914 if (fscache_wait_for_deferred_lookup(cookie
) < 0)
917 if (hlist_empty(&cookie
->backing_objects
))
920 op
= kzalloc(sizeof(*op
), GFP_NOIO
| __GFP_NOMEMALLOC
| __GFP_NORETRY
);
924 fscache_operation_init(cookie
, op
, NULL
, NULL
, NULL
);
925 op
->flags
= FSCACHE_OP_MYTHREAD
|
926 (1 << FSCACHE_OP_WAITING
) |
927 (1 << FSCACHE_OP_UNUSE_COOKIE
);
928 trace_fscache_page_op(cookie
, NULL
, op
, fscache_page_op_check_consistency
);
930 spin_lock(&cookie
->lock
);
932 fscache_update_aux(cookie
, aux_data
);
934 if (!fscache_cookie_enabled(cookie
) ||
935 hlist_empty(&cookie
->backing_objects
))
937 object
= hlist_entry(cookie
->backing_objects
.first
,
938 struct fscache_object
, cookie_link
);
939 if (test_bit(FSCACHE_IOERROR
, &object
->cache
->flags
))
942 op
->debug_id
= atomic_inc_return(&fscache_op_debug_id
);
944 __fscache_use_cookie(cookie
);
945 if (fscache_submit_op(object
, op
) < 0)
948 /* the work queue now carries its own ref on the object */
949 spin_unlock(&cookie
->lock
);
951 ret
= fscache_wait_for_operation_activation(object
, op
, NULL
, NULL
);
953 /* ask the cache to honour the operation */
954 ret
= object
->cache
->ops
->check_consistency(op
);
955 fscache_op_complete(op
, false);
956 } else if (ret
== -ENOBUFS
) {
960 fscache_put_operation(op
);
961 _leave(" = %d", ret
);
965 wake_cookie
= __fscache_unuse_cookie(cookie
);
967 spin_unlock(&cookie
->lock
);
969 __fscache_wake_unused_cookie(cookie
);
971 _leave(" = -ESTALE");
974 EXPORT_SYMBOL(__fscache_check_consistency
);