1 /* FS-Cache object state machine handler
3 * Copyright (C) 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/object.txt for a description of the
12 * object state machine and the in-kernel representations.
15 #define FSCACHE_DEBUG_LEVEL COOKIE
16 #include <linux/module.h>
19 const char *fscache_object_states
[] = {
20 [FSCACHE_OBJECT_INIT
] = "OBJECT_INIT",
21 [FSCACHE_OBJECT_LOOKING_UP
] = "OBJECT_LOOKING_UP",
22 [FSCACHE_OBJECT_CREATING
] = "OBJECT_CREATING",
23 [FSCACHE_OBJECT_AVAILABLE
] = "OBJECT_AVAILABLE",
24 [FSCACHE_OBJECT_ACTIVE
] = "OBJECT_ACTIVE",
25 [FSCACHE_OBJECT_UPDATING
] = "OBJECT_UPDATING",
26 [FSCACHE_OBJECT_DYING
] = "OBJECT_DYING",
27 [FSCACHE_OBJECT_LC_DYING
] = "OBJECT_LC_DYING",
28 [FSCACHE_OBJECT_ABORT_INIT
] = "OBJECT_ABORT_INIT",
29 [FSCACHE_OBJECT_RELEASING
] = "OBJECT_RELEASING",
30 [FSCACHE_OBJECT_RECYCLING
] = "OBJECT_RECYCLING",
31 [FSCACHE_OBJECT_WITHDRAWING
] = "OBJECT_WITHDRAWING",
32 [FSCACHE_OBJECT_DEAD
] = "OBJECT_DEAD",
34 EXPORT_SYMBOL(fscache_object_states
);
36 static void fscache_object_slow_work_put_ref(struct slow_work
*);
37 static int fscache_object_slow_work_get_ref(struct slow_work
*);
38 static void fscache_object_slow_work_execute(struct slow_work
*);
39 static void fscache_initialise_object(struct fscache_object
*);
40 static void fscache_lookup_object(struct fscache_object
*);
41 static void fscache_object_available(struct fscache_object
*);
42 static void fscache_release_object(struct fscache_object
*);
43 static void fscache_withdraw_object(struct fscache_object
*);
44 static void fscache_enqueue_dependents(struct fscache_object
*);
45 static void fscache_dequeue_object(struct fscache_object
*);
47 const struct slow_work_ops fscache_object_slow_work_ops
= {
48 .get_ref
= fscache_object_slow_work_get_ref
,
49 .put_ref
= fscache_object_slow_work_put_ref
,
50 .execute
= fscache_object_slow_work_execute
,
52 EXPORT_SYMBOL(fscache_object_slow_work_ops
);
55 * we need to notify the parent when an op completes that we had outstanding
58 static inline void fscache_done_parent_op(struct fscache_object
*object
)
60 struct fscache_object
*parent
= object
->parent
;
62 _enter("OBJ%x {OBJ%x,%x}",
63 object
->debug_id
, parent
->debug_id
, parent
->n_ops
);
65 spin_lock_nested(&parent
->lock
, 1);
68 if (parent
->n_ops
== 0)
69 fscache_raise_event(parent
, FSCACHE_OBJECT_EV_CLEARED
);
70 spin_unlock(&parent
->lock
);
74 * process events that have been sent to an object's state machine
75 * - initiates parent lookup
76 * - does object lookup
77 * - does object creation
78 * - does object recycling and retirement
79 * - does object withdrawal
81 static void fscache_object_state_machine(struct fscache_object
*object
)
83 enum fscache_object_state new_state
;
85 ASSERT(object
!= NULL
);
87 _enter("{OBJ%x,%s,%lx}",
88 object
->debug_id
, fscache_object_states
[object
->state
],
91 switch (object
->state
) {
92 /* wait for the parent object to become ready */
93 case FSCACHE_OBJECT_INIT
:
95 ULONG_MAX
& ~(1 << FSCACHE_OBJECT_EV_CLEARED
);
96 fscache_initialise_object(object
);
99 /* look up the object metadata on disk */
100 case FSCACHE_OBJECT_LOOKING_UP
:
101 fscache_lookup_object(object
);
104 /* create the object metadata on disk */
105 case FSCACHE_OBJECT_CREATING
:
106 fscache_lookup_object(object
);
109 /* handle an object becoming available; start pending
110 * operations and queue dependent operations for processing */
111 case FSCACHE_OBJECT_AVAILABLE
:
112 fscache_object_available(object
);
115 /* normal running state */
116 case FSCACHE_OBJECT_ACTIVE
:
119 /* update the object metadata on disk */
120 case FSCACHE_OBJECT_UPDATING
:
121 clear_bit(FSCACHE_OBJECT_EV_UPDATE
, &object
->events
);
122 fscache_stat(&fscache_n_updates_run
);
123 object
->cache
->ops
->update_object(object
);
126 /* handle an object dying during lookup or creation */
127 case FSCACHE_OBJECT_LC_DYING
:
128 object
->event_mask
&= ~(1 << FSCACHE_OBJECT_EV_UPDATE
);
129 object
->cache
->ops
->lookup_complete(object
);
131 spin_lock(&object
->lock
);
132 object
->state
= FSCACHE_OBJECT_DYING
;
133 if (test_and_clear_bit(FSCACHE_COOKIE_CREATING
,
134 &object
->cookie
->flags
))
135 wake_up_bit(&object
->cookie
->flags
,
136 FSCACHE_COOKIE_CREATING
);
137 spin_unlock(&object
->lock
);
139 fscache_done_parent_op(object
);
141 /* wait for completion of all active operations on this object
142 * and the death of all child objects of this object */
143 case FSCACHE_OBJECT_DYING
:
145 clear_bit(FSCACHE_OBJECT_EV_CLEARED
, &object
->events
);
146 spin_lock(&object
->lock
);
147 _debug("dying OBJ%x {%d,%d}",
148 object
->debug_id
, object
->n_ops
, object
->n_children
);
149 if (object
->n_ops
== 0 && object
->n_children
== 0) {
150 object
->event_mask
&=
151 ~(1 << FSCACHE_OBJECT_EV_CLEARED
);
152 object
->event_mask
|=
153 (1 << FSCACHE_OBJECT_EV_WITHDRAW
) |
154 (1 << FSCACHE_OBJECT_EV_RETIRE
) |
155 (1 << FSCACHE_OBJECT_EV_RELEASE
) |
156 (1 << FSCACHE_OBJECT_EV_ERROR
);
158 object
->event_mask
&=
159 ~((1 << FSCACHE_OBJECT_EV_WITHDRAW
) |
160 (1 << FSCACHE_OBJECT_EV_RETIRE
) |
161 (1 << FSCACHE_OBJECT_EV_RELEASE
) |
162 (1 << FSCACHE_OBJECT_EV_ERROR
));
163 object
->event_mask
|=
164 1 << FSCACHE_OBJECT_EV_CLEARED
;
166 spin_unlock(&object
->lock
);
167 fscache_enqueue_dependents(object
);
168 goto terminal_transit
;
170 /* handle an abort during initialisation */
171 case FSCACHE_OBJECT_ABORT_INIT
:
172 _debug("handle abort init %lx", object
->events
);
173 object
->event_mask
&= ~(1 << FSCACHE_OBJECT_EV_UPDATE
);
175 spin_lock(&object
->lock
);
176 fscache_dequeue_object(object
);
178 object
->state
= FSCACHE_OBJECT_DYING
;
179 if (test_and_clear_bit(FSCACHE_COOKIE_CREATING
,
180 &object
->cookie
->flags
))
181 wake_up_bit(&object
->cookie
->flags
,
182 FSCACHE_COOKIE_CREATING
);
183 spin_unlock(&object
->lock
);
186 /* handle the netfs releasing an object and possibly marking it
188 case FSCACHE_OBJECT_RELEASING
:
189 case FSCACHE_OBJECT_RECYCLING
:
190 object
->event_mask
&=
191 ~((1 << FSCACHE_OBJECT_EV_WITHDRAW
) |
192 (1 << FSCACHE_OBJECT_EV_RETIRE
) |
193 (1 << FSCACHE_OBJECT_EV_RELEASE
) |
194 (1 << FSCACHE_OBJECT_EV_ERROR
));
195 fscache_release_object(object
);
196 spin_lock(&object
->lock
);
197 object
->state
= FSCACHE_OBJECT_DEAD
;
198 spin_unlock(&object
->lock
);
199 fscache_stat(&fscache_n_object_dead
);
200 goto terminal_transit
;
202 /* handle the parent cache of this object being withdrawn from
204 case FSCACHE_OBJECT_WITHDRAWING
:
205 object
->event_mask
&=
206 ~((1 << FSCACHE_OBJECT_EV_WITHDRAW
) |
207 (1 << FSCACHE_OBJECT_EV_RETIRE
) |
208 (1 << FSCACHE_OBJECT_EV_RELEASE
) |
209 (1 << FSCACHE_OBJECT_EV_ERROR
));
210 fscache_withdraw_object(object
);
211 spin_lock(&object
->lock
);
212 object
->state
= FSCACHE_OBJECT_DEAD
;
213 spin_unlock(&object
->lock
);
214 fscache_stat(&fscache_n_object_dead
);
215 goto terminal_transit
;
217 /* complain about the object being woken up once it is
219 case FSCACHE_OBJECT_DEAD
:
220 printk(KERN_ERR
"FS-Cache:"
221 " Unexpected event in dead state %lx\n",
222 object
->events
& object
->event_mask
);
226 printk(KERN_ERR
"FS-Cache: Unknown object state %u\n",
231 /* determine the transition from a lookup state */
233 switch (fls(object
->events
& object
->event_mask
) - 1) {
234 case FSCACHE_OBJECT_EV_WITHDRAW
:
235 case FSCACHE_OBJECT_EV_RETIRE
:
236 case FSCACHE_OBJECT_EV_RELEASE
:
237 case FSCACHE_OBJECT_EV_ERROR
:
238 new_state
= FSCACHE_OBJECT_LC_DYING
;
240 case FSCACHE_OBJECT_EV_REQUEUE
:
243 goto done
; /* sleep until event */
245 goto unsupported_event
;
248 /* determine the transition from an active state */
250 switch (fls(object
->events
& object
->event_mask
) - 1) {
251 case FSCACHE_OBJECT_EV_WITHDRAW
:
252 case FSCACHE_OBJECT_EV_RETIRE
:
253 case FSCACHE_OBJECT_EV_RELEASE
:
254 case FSCACHE_OBJECT_EV_ERROR
:
255 new_state
= FSCACHE_OBJECT_DYING
;
257 case FSCACHE_OBJECT_EV_UPDATE
:
258 new_state
= FSCACHE_OBJECT_UPDATING
;
261 new_state
= FSCACHE_OBJECT_ACTIVE
;
262 goto change_state
; /* sleep until event */
264 goto unsupported_event
;
267 /* determine the transition from a terminal state */
269 switch (fls(object
->events
& object
->event_mask
) - 1) {
270 case FSCACHE_OBJECT_EV_WITHDRAW
:
271 new_state
= FSCACHE_OBJECT_WITHDRAWING
;
273 case FSCACHE_OBJECT_EV_RETIRE
:
274 new_state
= FSCACHE_OBJECT_RECYCLING
;
276 case FSCACHE_OBJECT_EV_RELEASE
:
277 new_state
= FSCACHE_OBJECT_RELEASING
;
279 case FSCACHE_OBJECT_EV_ERROR
:
280 new_state
= FSCACHE_OBJECT_WITHDRAWING
;
282 case FSCACHE_OBJECT_EV_CLEARED
:
283 new_state
= FSCACHE_OBJECT_DYING
;
286 goto done
; /* sleep until event */
288 goto unsupported_event
;
292 spin_lock(&object
->lock
);
293 object
->state
= new_state
;
294 spin_unlock(&object
->lock
);
297 _leave(" [->%s]", fscache_object_states
[object
->state
]);
301 printk(KERN_ERR
"FS-Cache:"
302 " Unsupported event %lx [mask %lx] in state %s\n",
303 object
->events
, object
->event_mask
,
304 fscache_object_states
[object
->state
]);
311 static void fscache_object_slow_work_execute(struct slow_work
*work
)
313 struct fscache_object
*object
=
314 container_of(work
, struct fscache_object
, work
);
317 _enter("{OBJ%x}", object
->debug_id
);
319 clear_bit(FSCACHE_OBJECT_EV_REQUEUE
, &object
->events
);
322 fscache_object_state_machine(object
);
323 fscache_hist(fscache_objs_histogram
, start
);
324 if (object
->events
& object
->event_mask
)
325 fscache_enqueue_object(object
);
329 * initialise an object
330 * - check the specified object's parent to see if we can make use of it
331 * immediately to do a creation
332 * - we may need to start the process of creating a parent and we need to wait
333 * for the parent's lookup and creation to complete if it's not there yet
334 * - an object's cookie is pinned until we clear FSCACHE_COOKIE_CREATING on the
335 * leaf-most cookies of the object and all its children
337 static void fscache_initialise_object(struct fscache_object
*object
)
339 struct fscache_object
*parent
;
342 ASSERT(object
->cookie
!= NULL
);
343 ASSERT(object
->cookie
->parent
!= NULL
);
344 ASSERT(list_empty(&object
->work
.link
));
346 if (object
->events
& ((1 << FSCACHE_OBJECT_EV_ERROR
) |
347 (1 << FSCACHE_OBJECT_EV_RELEASE
) |
348 (1 << FSCACHE_OBJECT_EV_RETIRE
) |
349 (1 << FSCACHE_OBJECT_EV_WITHDRAW
))) {
350 _debug("abort init %lx", object
->events
);
351 spin_lock(&object
->lock
);
352 object
->state
= FSCACHE_OBJECT_ABORT_INIT
;
353 spin_unlock(&object
->lock
);
357 spin_lock(&object
->cookie
->lock
);
358 spin_lock_nested(&object
->cookie
->parent
->lock
, 1);
360 parent
= object
->parent
;
363 set_bit(FSCACHE_OBJECT_EV_WITHDRAW
, &object
->events
);
365 spin_lock(&object
->lock
);
366 spin_lock_nested(&parent
->lock
, 1);
367 _debug("parent %s", fscache_object_states
[parent
->state
]);
369 if (parent
->state
>= FSCACHE_OBJECT_DYING
) {
370 _debug("bad parent");
371 set_bit(FSCACHE_OBJECT_EV_WITHDRAW
, &object
->events
);
372 } else if (parent
->state
< FSCACHE_OBJECT_AVAILABLE
) {
375 /* we may get woken up in this state by child objects
376 * binding on to us, so we need to make sure we don't
377 * add ourself to the list multiple times */
378 if (list_empty(&object
->dep_link
)) {
379 object
->cache
->ops
->grab_object(object
);
380 list_add(&object
->dep_link
,
381 &parent
->dependents
);
383 /* fscache_acquire_non_index_cookie() uses this
384 * to wake the chain up */
385 if (parent
->state
== FSCACHE_OBJECT_INIT
)
386 fscache_enqueue_object(parent
);
392 object
->lookup_jif
= jiffies
;
393 object
->state
= FSCACHE_OBJECT_LOOKING_UP
;
394 set_bit(FSCACHE_OBJECT_EV_REQUEUE
, &object
->events
);
397 spin_unlock(&parent
->lock
);
398 spin_unlock(&object
->lock
);
401 spin_unlock(&object
->cookie
->parent
->lock
);
402 spin_unlock(&object
->cookie
->lock
);
407 * look an object up in the cache from which it was allocated
408 * - we hold an "access lock" on the parent object, so the parent object cannot
409 * be withdrawn by either party till we've finished
410 * - an object's cookie is pinned until we clear FSCACHE_COOKIE_CREATING on the
411 * leaf-most cookies of the object and all its children
413 static void fscache_lookup_object(struct fscache_object
*object
)
415 struct fscache_cookie
*cookie
= object
->cookie
;
416 struct fscache_object
*parent
;
420 parent
= object
->parent
;
421 ASSERT(parent
!= NULL
);
422 ASSERTCMP(parent
->n_ops
, >, 0);
423 ASSERTCMP(parent
->n_obj_ops
, >, 0);
425 /* make sure the parent is still available */
426 ASSERTCMP(parent
->state
, >=, FSCACHE_OBJECT_AVAILABLE
);
428 if (parent
->state
>= FSCACHE_OBJECT_DYING
||
429 test_bit(FSCACHE_IOERROR
, &object
->cache
->flags
)) {
430 _debug("unavailable");
431 set_bit(FSCACHE_OBJECT_EV_WITHDRAW
, &object
->events
);
436 _debug("LOOKUP \"%s/%s\" in \"%s\"",
437 parent
->cookie
->def
->name
, cookie
->def
->name
,
438 object
->cache
->tag
->name
);
440 fscache_stat(&fscache_n_object_lookups
);
441 object
->cache
->ops
->lookup_object(object
);
443 if (test_bit(FSCACHE_OBJECT_EV_ERROR
, &object
->events
))
444 set_bit(FSCACHE_COOKIE_UNAVAILABLE
, &cookie
->flags
);
450 * fscache_object_lookup_negative - Note negative cookie lookup
451 * @object: Object pointing to cookie to mark
453 * Note negative lookup, permitting those waiting to read data from an already
454 * existing backing object to continue as there's no data for them to read.
456 void fscache_object_lookup_negative(struct fscache_object
*object
)
458 struct fscache_cookie
*cookie
= object
->cookie
;
461 object
->debug_id
, fscache_object_states
[object
->state
]);
463 spin_lock(&object
->lock
);
464 if (object
->state
== FSCACHE_OBJECT_LOOKING_UP
) {
465 fscache_stat(&fscache_n_object_lookups_negative
);
467 /* transit here to allow write requests to begin stacking up
468 * and read requests to begin returning ENODATA */
469 object
->state
= FSCACHE_OBJECT_CREATING
;
470 spin_unlock(&object
->lock
);
472 set_bit(FSCACHE_COOKIE_PENDING_FILL
, &cookie
->flags
);
473 set_bit(FSCACHE_COOKIE_NO_DATA_YET
, &cookie
->flags
);
475 _debug("wake up lookup %p", &cookie
->flags
);
476 smp_mb__before_clear_bit();
477 clear_bit(FSCACHE_COOKIE_LOOKING_UP
, &cookie
->flags
);
478 smp_mb__after_clear_bit();
479 wake_up_bit(&cookie
->flags
, FSCACHE_COOKIE_LOOKING_UP
);
480 set_bit(FSCACHE_OBJECT_EV_REQUEUE
, &object
->events
);
482 ASSERTCMP(object
->state
, ==, FSCACHE_OBJECT_CREATING
);
483 spin_unlock(&object
->lock
);
488 EXPORT_SYMBOL(fscache_object_lookup_negative
);
491 * fscache_obtained_object - Note successful object lookup or creation
492 * @object: Object pointing to cookie to mark
494 * Note successful lookup and/or creation, permitting those waiting to write
495 * data to a backing object to continue.
497 * Note that after calling this, an object's cookie may be relinquished by the
498 * netfs, and so must be accessed with object lock held.
500 void fscache_obtained_object(struct fscache_object
*object
)
502 struct fscache_cookie
*cookie
= object
->cookie
;
505 object
->debug_id
, fscache_object_states
[object
->state
]);
507 /* if we were still looking up, then we must have a positive lookup
508 * result, in which case there may be data available */
509 spin_lock(&object
->lock
);
510 if (object
->state
== FSCACHE_OBJECT_LOOKING_UP
) {
511 fscache_stat(&fscache_n_object_lookups_positive
);
513 clear_bit(FSCACHE_COOKIE_NO_DATA_YET
, &cookie
->flags
);
515 object
->state
= FSCACHE_OBJECT_AVAILABLE
;
516 spin_unlock(&object
->lock
);
518 smp_mb__before_clear_bit();
519 clear_bit(FSCACHE_COOKIE_LOOKING_UP
, &cookie
->flags
);
520 smp_mb__after_clear_bit();
521 wake_up_bit(&cookie
->flags
, FSCACHE_COOKIE_LOOKING_UP
);
522 set_bit(FSCACHE_OBJECT_EV_REQUEUE
, &object
->events
);
524 ASSERTCMP(object
->state
, ==, FSCACHE_OBJECT_CREATING
);
525 fscache_stat(&fscache_n_object_created
);
527 object
->state
= FSCACHE_OBJECT_AVAILABLE
;
528 spin_unlock(&object
->lock
);
529 set_bit(FSCACHE_OBJECT_EV_REQUEUE
, &object
->events
);
533 if (test_and_clear_bit(FSCACHE_COOKIE_CREATING
, &cookie
->flags
))
534 wake_up_bit(&cookie
->flags
, FSCACHE_COOKIE_CREATING
);
538 EXPORT_SYMBOL(fscache_obtained_object
);
541 * handle an object that has just become available
543 static void fscache_object_available(struct fscache_object
*object
)
545 _enter("{OBJ%x}", object
->debug_id
);
547 spin_lock(&object
->lock
);
549 if (test_and_clear_bit(FSCACHE_COOKIE_CREATING
, &object
->cookie
->flags
))
550 wake_up_bit(&object
->cookie
->flags
, FSCACHE_COOKIE_CREATING
);
552 fscache_done_parent_op(object
);
553 if (object
->n_in_progress
== 0) {
554 if (object
->n_ops
> 0) {
555 ASSERTCMP(object
->n_ops
, >=, object
->n_obj_ops
);
556 ASSERTIF(object
->n_ops
> object
->n_obj_ops
,
557 !list_empty(&object
->pending_ops
));
558 fscache_start_operations(object
);
560 ASSERT(list_empty(&object
->pending_ops
));
563 spin_unlock(&object
->lock
);
565 object
->cache
->ops
->lookup_complete(object
);
566 fscache_enqueue_dependents(object
);
568 fscache_hist(fscache_obj_instantiate_histogram
, object
->lookup_jif
);
569 fscache_stat(&fscache_n_object_avail
);
575 * drop an object's attachments
577 static void fscache_drop_object(struct fscache_object
*object
)
579 struct fscache_object
*parent
= object
->parent
;
580 struct fscache_cache
*cache
= object
->cache
;
582 _enter("{OBJ%x,%d}", object
->debug_id
, object
->n_children
);
584 spin_lock(&cache
->object_list_lock
);
585 list_del_init(&object
->cache_link
);
586 spin_unlock(&cache
->object_list_lock
);
588 cache
->ops
->drop_object(object
);
591 _debug("release parent OBJ%x {%d}",
592 parent
->debug_id
, parent
->n_children
);
594 spin_lock(&parent
->lock
);
595 parent
->n_children
--;
596 if (parent
->n_children
== 0)
597 fscache_raise_event(parent
, FSCACHE_OBJECT_EV_CLEARED
);
598 spin_unlock(&parent
->lock
);
599 object
->parent
= NULL
;
602 /* this just shifts the object release to the slow work processor */
603 object
->cache
->ops
->put_object(object
);
609 * release or recycle an object that the netfs has discarded
611 static void fscache_release_object(struct fscache_object
*object
)
615 fscache_drop_object(object
);
619 * withdraw an object from active service
621 static void fscache_withdraw_object(struct fscache_object
*object
)
623 struct fscache_cookie
*cookie
;
628 spin_lock(&object
->lock
);
629 cookie
= object
->cookie
;
631 /* need to get the cookie lock before the object lock, starting
632 * from the object pointer */
633 atomic_inc(&cookie
->usage
);
634 spin_unlock(&object
->lock
);
637 spin_lock(&cookie
->lock
);
638 spin_lock(&object
->lock
);
640 if (object
->cookie
== cookie
) {
641 hlist_del_init(&object
->cookie_link
);
642 object
->cookie
= NULL
;
645 spin_unlock(&cookie
->lock
);
646 fscache_cookie_put(cookie
);
648 fscache_cookie_put(cookie
);
651 spin_unlock(&object
->lock
);
653 fscache_drop_object(object
);
657 * withdraw an object from active service at the behest of the cache
658 * - need break the links to a cached object cookie
659 * - called under two situations:
660 * (1) recycler decides to reclaim an in-use object
661 * (2) a cache is unmounted
662 * - have to take care as the cookie can be being relinquished by the netfs
664 * - the object is pinned by the caller holding a refcount on it
666 void fscache_withdrawing_object(struct fscache_cache
*cache
,
667 struct fscache_object
*object
)
669 bool enqueue
= false;
671 _enter(",OBJ%x", object
->debug_id
);
673 spin_lock(&object
->lock
);
674 if (object
->state
< FSCACHE_OBJECT_WITHDRAWING
) {
675 object
->state
= FSCACHE_OBJECT_WITHDRAWING
;
678 spin_unlock(&object
->lock
);
681 fscache_enqueue_object(object
);
687 * allow the slow work item processor to get a ref on an object
689 static int fscache_object_slow_work_get_ref(struct slow_work
*work
)
691 struct fscache_object
*object
=
692 container_of(work
, struct fscache_object
, work
);
694 return object
->cache
->ops
->grab_object(object
) ? 0 : -EAGAIN
;
698 * allow the slow work item processor to discard a ref on a work item
700 static void fscache_object_slow_work_put_ref(struct slow_work
*work
)
702 struct fscache_object
*object
=
703 container_of(work
, struct fscache_object
, work
);
705 return object
->cache
->ops
->put_object(object
);
709 * enqueue an object for metadata-type processing
711 void fscache_enqueue_object(struct fscache_object
*object
)
713 _enter("{OBJ%x}", object
->debug_id
);
715 slow_work_enqueue(&object
->work
);
719 * enqueue the dependents of an object for metadata-type processing
720 * - the caller must hold the object's lock
721 * - this may cause an already locked object to wind up being processed again
723 static void fscache_enqueue_dependents(struct fscache_object
*object
)
725 struct fscache_object
*dep
;
727 _enter("{OBJ%x}", object
->debug_id
);
729 if (list_empty(&object
->dependents
))
732 spin_lock(&object
->lock
);
734 while (!list_empty(&object
->dependents
)) {
735 dep
= list_entry(object
->dependents
.next
,
736 struct fscache_object
, dep_link
);
737 list_del_init(&dep
->dep_link
);
740 /* sort onto appropriate lists */
741 fscache_enqueue_object(dep
);
742 dep
->cache
->ops
->put_object(dep
);
744 if (!list_empty(&object
->dependents
))
745 cond_resched_lock(&object
->lock
);
748 spin_unlock(&object
->lock
);
752 * remove an object from whatever queue it's waiting on
753 * - the caller must hold object->lock
755 void fscache_dequeue_object(struct fscache_object
*object
)
757 _enter("{OBJ%x}", object
->debug_id
);
759 if (!list_empty(&object
->dep_link
)) {
760 spin_lock(&object
->parent
->lock
);
761 list_del_init(&object
->dep_link
);
762 spin_unlock(&object
->parent
->lock
);
769 * fscache_check_aux - Ask the netfs whether an object on disk is still valid
770 * @object: The object to ask about
771 * @data: The auxiliary data for the object
772 * @datalen: The size of the auxiliary data
774 * This function consults the netfs about the coherency state of an object
776 enum fscache_checkaux
fscache_check_aux(struct fscache_object
*object
,
777 const void *data
, uint16_t datalen
)
779 enum fscache_checkaux result
;
781 if (!object
->cookie
->def
->check_aux
) {
782 fscache_stat(&fscache_n_checkaux_none
);
783 return FSCACHE_CHECKAUX_OKAY
;
786 result
= object
->cookie
->def
->check_aux(object
->cookie
->netfs_data
,
789 /* entry okay as is */
790 case FSCACHE_CHECKAUX_OKAY
:
791 fscache_stat(&fscache_n_checkaux_okay
);
794 /* entry requires update */
795 case FSCACHE_CHECKAUX_NEEDS_UPDATE
:
796 fscache_stat(&fscache_n_checkaux_update
);
799 /* entry requires deletion */
800 case FSCACHE_CHECKAUX_OBSOLETE
:
801 fscache_stat(&fscache_n_checkaux_obsolete
);
810 EXPORT_SYMBOL(fscache_check_aux
);