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>
17 #include <linux/slab.h>
18 #include <linux/prefetch.h>
21 static const struct fscache_state
*fscache_abort_initialisation(struct fscache_object
*, int);
22 static const struct fscache_state
*fscache_kill_dependents(struct fscache_object
*, int);
23 static const struct fscache_state
*fscache_drop_object(struct fscache_object
*, int);
24 static const struct fscache_state
*fscache_initialise_object(struct fscache_object
*, int);
25 static const struct fscache_state
*fscache_invalidate_object(struct fscache_object
*, int);
26 static const struct fscache_state
*fscache_jumpstart_dependents(struct fscache_object
*, int);
27 static const struct fscache_state
*fscache_kill_object(struct fscache_object
*, int);
28 static const struct fscache_state
*fscache_lookup_failure(struct fscache_object
*, int);
29 static const struct fscache_state
*fscache_look_up_object(struct fscache_object
*, int);
30 static const struct fscache_state
*fscache_object_available(struct fscache_object
*, int);
31 static const struct fscache_state
*fscache_parent_ready(struct fscache_object
*, int);
32 static const struct fscache_state
*fscache_update_object(struct fscache_object
*, int);
34 #define __STATE_NAME(n) fscache_osm_##n
35 #define STATE(n) (&__STATE_NAME(n))
38 * Define a work state. Work states are execution states. No event processing
39 * is performed by them. The function attached to a work state returns a
40 * pointer indicating the next state to which the state machine should
41 * transition. Returning NO_TRANSIT repeats the current state, but goes back
42 * to the scheduler first.
44 #define WORK_STATE(n, sn, f) \
45 const struct fscache_state __STATE_NAME(n) = { \
52 * Returns from work states.
54 #define transit_to(state) ({ prefetch(&STATE(state)->work); STATE(state); })
56 #define NO_TRANSIT ((struct fscache_state *)NULL)
59 * Define a wait state. Wait states are event processing states. No execution
60 * is performed by them. Wait states are just tables of "if event X occurs,
61 * clear it and transition to state Y". The dispatcher returns to the
62 * scheduler if none of the events in which the wait state has an interest are
65 #define WAIT_STATE(n, sn, ...) \
66 const struct fscache_state __STATE_NAME(n) = { \
70 .transitions = { __VA_ARGS__, { 0, NULL } } \
73 #define TRANSIT_TO(state, emask) \
74 { .events = (emask), .transit_to = STATE(state) }
77 * The object state machine.
79 static WORK_STATE(INIT_OBJECT
, "INIT", fscache_initialise_object
);
80 static WORK_STATE(PARENT_READY
, "PRDY", fscache_parent_ready
);
81 static WORK_STATE(ABORT_INIT
, "ABRT", fscache_abort_initialisation
);
82 static WORK_STATE(LOOK_UP_OBJECT
, "LOOK", fscache_look_up_object
);
83 static WORK_STATE(CREATE_OBJECT
, "CRTO", fscache_look_up_object
);
84 static WORK_STATE(OBJECT_AVAILABLE
, "AVBL", fscache_object_available
);
85 static WORK_STATE(JUMPSTART_DEPS
, "JUMP", fscache_jumpstart_dependents
);
87 static WORK_STATE(INVALIDATE_OBJECT
, "INVL", fscache_invalidate_object
);
88 static WORK_STATE(UPDATE_OBJECT
, "UPDT", fscache_update_object
);
90 static WORK_STATE(LOOKUP_FAILURE
, "LCFL", fscache_lookup_failure
);
91 static WORK_STATE(KILL_OBJECT
, "KILL", fscache_kill_object
);
92 static WORK_STATE(KILL_DEPENDENTS
, "KDEP", fscache_kill_dependents
);
93 static WORK_STATE(DROP_OBJECT
, "DROP", fscache_drop_object
);
94 static WORK_STATE(OBJECT_DEAD
, "DEAD", (void*)2UL);
96 static WAIT_STATE(WAIT_FOR_INIT
, "?INI",
97 TRANSIT_TO(INIT_OBJECT
, 1 << FSCACHE_OBJECT_EV_NEW_CHILD
));
99 static WAIT_STATE(WAIT_FOR_PARENT
, "?PRN",
100 TRANSIT_TO(PARENT_READY
, 1 << FSCACHE_OBJECT_EV_PARENT_READY
));
102 static WAIT_STATE(WAIT_FOR_CMD
, "?CMD",
103 TRANSIT_TO(INVALIDATE_OBJECT
, 1 << FSCACHE_OBJECT_EV_INVALIDATE
),
104 TRANSIT_TO(UPDATE_OBJECT
, 1 << FSCACHE_OBJECT_EV_UPDATE
),
105 TRANSIT_TO(JUMPSTART_DEPS
, 1 << FSCACHE_OBJECT_EV_NEW_CHILD
));
107 static WAIT_STATE(WAIT_FOR_CLEARANCE
, "?CLR",
108 TRANSIT_TO(KILL_OBJECT
, 1 << FSCACHE_OBJECT_EV_CLEARED
));
111 * Out-of-band event transition tables. These are for handling unexpected
112 * events, such as an I/O error. If an OOB event occurs, the state machine
113 * clears and disables the event and forces a transition to the nominated work
114 * state (acurrently executing work states will complete first).
116 * In such a situation, object->state remembers the state the machine should
117 * have been in/gone to and returning NO_TRANSIT returns to that.
119 static const struct fscache_transition fscache_osm_init_oob
[] = {
120 TRANSIT_TO(ABORT_INIT
,
121 (1 << FSCACHE_OBJECT_EV_ERROR
) |
122 (1 << FSCACHE_OBJECT_EV_KILL
)),
126 static const struct fscache_transition fscache_osm_lookup_oob
[] = {
127 TRANSIT_TO(LOOKUP_FAILURE
,
128 (1 << FSCACHE_OBJECT_EV_ERROR
) |
129 (1 << FSCACHE_OBJECT_EV_KILL
)),
133 static const struct fscache_transition fscache_osm_run_oob
[] = {
134 TRANSIT_TO(KILL_OBJECT
,
135 (1 << FSCACHE_OBJECT_EV_ERROR
) |
136 (1 << FSCACHE_OBJECT_EV_KILL
)),
140 static int fscache_get_object(struct fscache_object
*);
141 static void fscache_put_object(struct fscache_object
*);
142 static bool fscache_enqueue_dependents(struct fscache_object
*, int);
143 static void fscache_dequeue_object(struct fscache_object
*);
146 * we need to notify the parent when an op completes that we had outstanding
149 static inline void fscache_done_parent_op(struct fscache_object
*object
)
151 struct fscache_object
*parent
= object
->parent
;
153 _enter("OBJ%x {OBJ%x,%x}",
154 object
->debug_id
, parent
->debug_id
, parent
->n_ops
);
156 spin_lock_nested(&parent
->lock
, 1);
159 if (parent
->n_ops
== 0)
160 fscache_raise_event(parent
, FSCACHE_OBJECT_EV_CLEARED
);
161 spin_unlock(&parent
->lock
);
165 * Object state machine dispatcher.
167 static void fscache_object_sm_dispatcher(struct fscache_object
*object
)
169 const struct fscache_transition
*t
;
170 const struct fscache_state
*state
, *new_state
;
171 unsigned long events
, event_mask
;
174 ASSERT(object
!= NULL
);
176 _enter("{OBJ%x,%s,%lx}",
177 object
->debug_id
, object
->state
->name
, object
->events
);
179 event_mask
= object
->event_mask
;
181 object
->event_mask
= 0; /* Mask normal event handling */
182 state
= object
->state
;
184 events
= object
->events
;
186 /* Handle any out-of-band events (typically an error) */
187 if (events
& object
->oob_event_mask
) {
188 _debug("{OBJ%x} oob %lx",
189 object
->debug_id
, events
& object
->oob_event_mask
);
190 for (t
= object
->oob_table
; t
->events
; t
++) {
191 if (events
& t
->events
) {
192 state
= t
->transit_to
;
193 ASSERT(state
->work
!= NULL
);
194 event
= fls(events
& t
->events
) - 1;
195 __clear_bit(event
, &object
->oob_event_mask
);
196 clear_bit(event
, &object
->events
);
197 goto execute_work_state
;
202 /* Wait states are just transition tables */
204 if (events
& event_mask
) {
205 for (t
= state
->transitions
; t
->events
; t
++) {
206 if (events
& t
->events
) {
207 new_state
= t
->transit_to
;
208 event
= fls(events
& t
->events
) - 1;
209 clear_bit(event
, &object
->events
);
210 _debug("{OBJ%x} ev %d: %s -> %s",
211 object
->debug_id
, event
,
212 state
->name
, new_state
->name
);
213 object
->state
= state
= new_state
;
214 goto execute_work_state
;
218 /* The event mask didn't include all the tabled bits */
221 /* Randomly woke up */
226 _debug("{OBJ%x} exec %s", object
->debug_id
, state
->name
);
228 new_state
= state
->work(object
, event
);
230 if (new_state
== NO_TRANSIT
) {
231 _debug("{OBJ%x} %s notrans", object
->debug_id
, state
->name
);
232 fscache_enqueue_object(object
);
233 event_mask
= object
->oob_event_mask
;
237 _debug("{OBJ%x} %s -> %s",
238 object
->debug_id
, state
->name
, new_state
->name
);
239 object
->state
= state
= new_state
;
242 if (unlikely(state
->work
== ((void *)2UL))) {
249 /* Transited to wait state */
250 event_mask
= object
->oob_event_mask
;
251 for (t
= state
->transitions
; t
->events
; t
++)
252 event_mask
|= t
->events
;
255 object
->event_mask
= event_mask
;
257 events
= object
->events
;
258 if (events
& event_mask
)
260 _leave(" [msk %lx]", event_mask
);
266 static void fscache_object_work_func(struct work_struct
*work
)
268 struct fscache_object
*object
=
269 container_of(work
, struct fscache_object
, work
);
272 _enter("{OBJ%x}", object
->debug_id
);
275 fscache_object_sm_dispatcher(object
);
276 fscache_hist(fscache_objs_histogram
, start
);
277 fscache_put_object(object
);
281 * fscache_object_init - Initialise a cache object description
282 * @object: Object description
283 * @cookie: Cookie object will be attached to
284 * @cache: Cache in which backing object will be found
286 * Initialise a cache object description to its basic values.
288 * See Documentation/filesystems/caching/backend-api.txt for a complete
291 void fscache_object_init(struct fscache_object
*object
,
292 struct fscache_cookie
*cookie
,
293 struct fscache_cache
*cache
)
295 const struct fscache_transition
*t
;
297 atomic_inc(&cache
->object_count
);
299 object
->state
= STATE(WAIT_FOR_INIT
);
300 object
->oob_table
= fscache_osm_init_oob
;
301 object
->flags
= 1 << FSCACHE_OBJECT_IS_LIVE
;
302 spin_lock_init(&object
->lock
);
303 INIT_LIST_HEAD(&object
->cache_link
);
304 INIT_HLIST_NODE(&object
->cookie_link
);
305 INIT_WORK(&object
->work
, fscache_object_work_func
);
306 INIT_LIST_HEAD(&object
->dependents
);
307 INIT_LIST_HEAD(&object
->dep_link
);
308 INIT_LIST_HEAD(&object
->pending_ops
);
309 object
->n_children
= 0;
310 object
->n_ops
= object
->n_in_progress
= object
->n_exclusive
= 0;
312 object
->store_limit
= 0;
313 object
->store_limit_l
= 0;
314 object
->cache
= cache
;
315 object
->cookie
= cookie
;
316 object
->parent
= NULL
;
317 #ifdef CONFIG_FSCACHE_OBJECT_LIST
318 RB_CLEAR_NODE(&object
->objlist_link
);
321 object
->oob_event_mask
= 0;
322 for (t
= object
->oob_table
; t
->events
; t
++)
323 object
->oob_event_mask
|= t
->events
;
324 object
->event_mask
= object
->oob_event_mask
;
325 for (t
= object
->state
->transitions
; t
->events
; t
++)
326 object
->event_mask
|= t
->events
;
328 EXPORT_SYMBOL(fscache_object_init
);
331 * Abort object initialisation before we start it.
333 static const struct fscache_state
*fscache_abort_initialisation(struct fscache_object
*object
,
336 _enter("{OBJ%x},%d", object
->debug_id
, event
);
338 object
->oob_event_mask
= 0;
339 fscache_dequeue_object(object
);
340 return transit_to(KILL_OBJECT
);
344 * initialise an object
345 * - check the specified object's parent to see if we can make use of it
346 * immediately to do a creation
347 * - we may need to start the process of creating a parent and we need to wait
348 * for the parent's lookup and creation to complete if it's not there yet
350 static const struct fscache_state
*fscache_initialise_object(struct fscache_object
*object
,
353 struct fscache_object
*parent
;
356 _enter("{OBJ%x},%d", object
->debug_id
, event
);
358 ASSERT(list_empty(&object
->dep_link
));
360 parent
= object
->parent
;
362 _leave(" [no parent]");
363 return transit_to(DROP_OBJECT
);
366 _debug("parent: %s of:%lx", parent
->state
->name
, parent
->flags
);
368 if (fscache_object_is_dying(parent
)) {
369 _leave(" [bad parent]");
370 return transit_to(DROP_OBJECT
);
373 if (fscache_object_is_available(parent
)) {
375 return transit_to(PARENT_READY
);
380 spin_lock(&parent
->lock
);
381 fscache_stat(&fscache_n_cop_grab_object
);
383 if (fscache_object_is_live(parent
) &&
384 object
->cache
->ops
->grab_object(object
)) {
385 list_add(&object
->dep_link
, &parent
->dependents
);
388 fscache_stat_d(&fscache_n_cop_grab_object
);
389 spin_unlock(&parent
->lock
);
391 _leave(" [grab failed]");
392 return transit_to(DROP_OBJECT
);
395 /* fscache_acquire_non_index_cookie() uses this
396 * to wake the chain up */
397 fscache_raise_event(parent
, FSCACHE_OBJECT_EV_NEW_CHILD
);
399 return transit_to(WAIT_FOR_PARENT
);
403 * Once the parent object is ready, we should kick off our lookup op.
405 static const struct fscache_state
*fscache_parent_ready(struct fscache_object
*object
,
408 struct fscache_object
*parent
= object
->parent
;
410 _enter("{OBJ%x},%d", object
->debug_id
, event
);
412 ASSERT(parent
!= NULL
);
414 spin_lock(&parent
->lock
);
417 object
->lookup_jif
= jiffies
;
418 spin_unlock(&parent
->lock
);
421 return transit_to(LOOK_UP_OBJECT
);
425 * look an object up in the cache from which it was allocated
426 * - we hold an "access lock" on the parent object, so the parent object cannot
427 * be withdrawn by either party till we've finished
429 static const struct fscache_state
*fscache_look_up_object(struct fscache_object
*object
,
432 struct fscache_cookie
*cookie
= object
->cookie
;
433 struct fscache_object
*parent
= object
->parent
;
436 _enter("{OBJ%x},%d", object
->debug_id
, event
);
438 object
->oob_table
= fscache_osm_lookup_oob
;
440 ASSERT(parent
!= NULL
);
441 ASSERTCMP(parent
->n_ops
, >, 0);
442 ASSERTCMP(parent
->n_obj_ops
, >, 0);
444 /* make sure the parent is still available */
445 ASSERT(fscache_object_is_available(parent
));
447 if (fscache_object_is_dying(parent
) ||
448 test_bit(FSCACHE_IOERROR
, &object
->cache
->flags
) ||
449 !fscache_use_cookie(object
)) {
450 _leave(" [unavailable]");
451 return transit_to(LOOKUP_FAILURE
);
454 _debug("LOOKUP \"%s\" in \"%s\"",
455 cookie
->def
->name
, object
->cache
->tag
->name
);
457 fscache_stat(&fscache_n_object_lookups
);
458 fscache_stat(&fscache_n_cop_lookup_object
);
459 ret
= object
->cache
->ops
->lookup_object(object
);
460 fscache_stat_d(&fscache_n_cop_lookup_object
);
462 fscache_unuse_cookie(object
);
464 if (ret
== -ETIMEDOUT
) {
465 /* probably stuck behind another object, so move this one to
466 * the back of the queue */
467 fscache_stat(&fscache_n_object_lookups_timed_out
);
468 _leave(" [timeout]");
474 return transit_to(LOOKUP_FAILURE
);
478 return transit_to(OBJECT_AVAILABLE
);
482 * fscache_object_lookup_negative - Note negative cookie lookup
483 * @object: Object pointing to cookie to mark
485 * Note negative lookup, permitting those waiting to read data from an already
486 * existing backing object to continue as there's no data for them to read.
488 void fscache_object_lookup_negative(struct fscache_object
*object
)
490 struct fscache_cookie
*cookie
= object
->cookie
;
492 _enter("{OBJ%x,%s}", object
->debug_id
, object
->state
->name
);
494 if (!test_and_set_bit(FSCACHE_OBJECT_IS_LOOKED_UP
, &object
->flags
)) {
495 fscache_stat(&fscache_n_object_lookups_negative
);
497 /* Allow write requests to begin stacking up and read requests to begin
500 set_bit(FSCACHE_COOKIE_NO_DATA_YET
, &cookie
->flags
);
501 clear_bit(FSCACHE_COOKIE_UNAVAILABLE
, &cookie
->flags
);
503 _debug("wake up lookup %p", &cookie
->flags
);
504 clear_bit_unlock(FSCACHE_COOKIE_LOOKING_UP
, &cookie
->flags
);
505 wake_up_bit(&cookie
->flags
, FSCACHE_COOKIE_LOOKING_UP
);
509 EXPORT_SYMBOL(fscache_object_lookup_negative
);
512 * fscache_obtained_object - Note successful object lookup or creation
513 * @object: Object pointing to cookie to mark
515 * Note successful lookup and/or creation, permitting those waiting to write
516 * data to a backing object to continue.
518 * Note that after calling this, an object's cookie may be relinquished by the
519 * netfs, and so must be accessed with object lock held.
521 void fscache_obtained_object(struct fscache_object
*object
)
523 struct fscache_cookie
*cookie
= object
->cookie
;
525 _enter("{OBJ%x,%s}", object
->debug_id
, object
->state
->name
);
527 /* if we were still looking up, then we must have a positive lookup
528 * result, in which case there may be data available */
529 if (!test_and_set_bit(FSCACHE_OBJECT_IS_LOOKED_UP
, &object
->flags
)) {
530 fscache_stat(&fscache_n_object_lookups_positive
);
532 /* We do (presumably) have data */
533 clear_bit_unlock(FSCACHE_COOKIE_NO_DATA_YET
, &cookie
->flags
);
534 clear_bit(FSCACHE_COOKIE_UNAVAILABLE
, &cookie
->flags
);
536 /* Allow write requests to begin stacking up and read requests
537 * to begin shovelling data.
539 clear_bit_unlock(FSCACHE_COOKIE_LOOKING_UP
, &cookie
->flags
);
540 wake_up_bit(&cookie
->flags
, FSCACHE_COOKIE_LOOKING_UP
);
542 fscache_stat(&fscache_n_object_created
);
545 set_bit(FSCACHE_OBJECT_IS_AVAILABLE
, &object
->flags
);
548 EXPORT_SYMBOL(fscache_obtained_object
);
551 * handle an object that has just become available
553 static const struct fscache_state
*fscache_object_available(struct fscache_object
*object
,
556 _enter("{OBJ%x},%d", object
->debug_id
, event
);
558 object
->oob_table
= fscache_osm_run_oob
;
560 spin_lock(&object
->lock
);
562 fscache_done_parent_op(object
);
563 if (object
->n_in_progress
== 0) {
564 if (object
->n_ops
> 0) {
565 ASSERTCMP(object
->n_ops
, >=, object
->n_obj_ops
);
566 fscache_start_operations(object
);
568 ASSERT(list_empty(&object
->pending_ops
));
571 spin_unlock(&object
->lock
);
573 fscache_stat(&fscache_n_cop_lookup_complete
);
574 object
->cache
->ops
->lookup_complete(object
);
575 fscache_stat_d(&fscache_n_cop_lookup_complete
);
577 fscache_hist(fscache_obj_instantiate_histogram
, object
->lookup_jif
);
578 fscache_stat(&fscache_n_object_avail
);
581 return transit_to(JUMPSTART_DEPS
);
585 * Wake up this object's dependent objects now that we've become available.
587 static const struct fscache_state
*fscache_jumpstart_dependents(struct fscache_object
*object
,
590 _enter("{OBJ%x},%d", object
->debug_id
, event
);
592 if (!fscache_enqueue_dependents(object
, FSCACHE_OBJECT_EV_PARENT_READY
))
593 return NO_TRANSIT
; /* Not finished; requeue */
594 return transit_to(WAIT_FOR_CMD
);
598 * Handle lookup or creation failute.
600 static const struct fscache_state
*fscache_lookup_failure(struct fscache_object
*object
,
603 struct fscache_cookie
*cookie
;
605 _enter("{OBJ%x},%d", object
->debug_id
, event
);
607 object
->oob_event_mask
= 0;
609 fscache_stat(&fscache_n_cop_lookup_complete
);
610 object
->cache
->ops
->lookup_complete(object
);
611 fscache_stat_d(&fscache_n_cop_lookup_complete
);
613 cookie
= object
->cookie
;
614 set_bit(FSCACHE_COOKIE_UNAVAILABLE
, &cookie
->flags
);
615 if (test_and_clear_bit(FSCACHE_COOKIE_LOOKING_UP
, &cookie
->flags
))
616 wake_up_bit(&cookie
->flags
, FSCACHE_COOKIE_LOOKING_UP
);
618 fscache_done_parent_op(object
);
619 return transit_to(KILL_OBJECT
);
623 * Wait for completion of all active operations on this object and the death of
624 * all child objects of this object.
626 static const struct fscache_state
*fscache_kill_object(struct fscache_object
*object
,
629 _enter("{OBJ%x,%d,%d},%d",
630 object
->debug_id
, object
->n_ops
, object
->n_children
, event
);
632 clear_bit(FSCACHE_OBJECT_IS_LIVE
, &object
->flags
);
633 object
->oob_event_mask
= 0;
635 if (list_empty(&object
->dependents
) &&
636 object
->n_ops
== 0 &&
637 object
->n_children
== 0)
638 return transit_to(DROP_OBJECT
);
640 if (object
->n_in_progress
== 0) {
641 spin_lock(&object
->lock
);
642 if (object
->n_ops
> 0 && object
->n_in_progress
== 0)
643 fscache_start_operations(object
);
644 spin_unlock(&object
->lock
);
647 if (!list_empty(&object
->dependents
))
648 return transit_to(KILL_DEPENDENTS
);
650 return transit_to(WAIT_FOR_CLEARANCE
);
654 * Kill dependent objects.
656 static const struct fscache_state
*fscache_kill_dependents(struct fscache_object
*object
,
659 _enter("{OBJ%x},%d", object
->debug_id
, event
);
661 if (!fscache_enqueue_dependents(object
, FSCACHE_OBJECT_EV_KILL
))
662 return NO_TRANSIT
; /* Not finished */
663 return transit_to(WAIT_FOR_CLEARANCE
);
667 * Drop an object's attachments
669 static const struct fscache_state
*fscache_drop_object(struct fscache_object
*object
,
672 struct fscache_object
*parent
= object
->parent
;
673 struct fscache_cookie
*cookie
= object
->cookie
;
674 struct fscache_cache
*cache
= object
->cache
;
677 _enter("{OBJ%x,%d},%d", object
->debug_id
, object
->n_children
, event
);
679 ASSERT(cookie
!= NULL
);
680 ASSERT(!hlist_unhashed(&object
->cookie_link
));
682 /* Make sure the cookie no longer points here and that the netfs isn't
685 spin_lock(&cookie
->lock
);
686 hlist_del_init(&object
->cookie_link
);
687 if (hlist_empty(&cookie
->backing_objects
) &&
688 test_and_clear_bit(FSCACHE_COOKIE_INVALIDATING
, &cookie
->flags
))
690 spin_unlock(&cookie
->lock
);
693 wake_up_bit(&cookie
->flags
, FSCACHE_COOKIE_INVALIDATING
);
695 /* Prevent a race with our last child, which has to signal EV_CLEARED
696 * before dropping our spinlock.
698 spin_lock(&object
->lock
);
699 spin_unlock(&object
->lock
);
701 /* Discard from the cache's collection of objects */
702 spin_lock(&cache
->object_list_lock
);
703 list_del_init(&object
->cache_link
);
704 spin_unlock(&cache
->object_list_lock
);
706 fscache_stat(&fscache_n_cop_drop_object
);
707 cache
->ops
->drop_object(object
);
708 fscache_stat_d(&fscache_n_cop_drop_object
);
710 /* The parent object wants to know when all it dependents have gone */
712 _debug("release parent OBJ%x {%d}",
713 parent
->debug_id
, parent
->n_children
);
715 spin_lock(&parent
->lock
);
716 parent
->n_children
--;
717 if (parent
->n_children
== 0)
718 fscache_raise_event(parent
, FSCACHE_OBJECT_EV_CLEARED
);
719 spin_unlock(&parent
->lock
);
720 object
->parent
= NULL
;
723 /* this just shifts the object release to the work processor */
724 fscache_put_object(object
);
725 fscache_stat(&fscache_n_object_dead
);
728 return transit_to(OBJECT_DEAD
);
732 * get a ref on an object
734 static int fscache_get_object(struct fscache_object
*object
)
738 fscache_stat(&fscache_n_cop_grab_object
);
739 ret
= object
->cache
->ops
->grab_object(object
) ? 0 : -EAGAIN
;
740 fscache_stat_d(&fscache_n_cop_grab_object
);
745 * Discard a ref on an object
747 static void fscache_put_object(struct fscache_object
*object
)
749 fscache_stat(&fscache_n_cop_put_object
);
750 object
->cache
->ops
->put_object(object
);
751 fscache_stat_d(&fscache_n_cop_put_object
);
755 * fscache_object_destroy - Note that a cache object is about to be destroyed
756 * @object: The object to be destroyed
758 * Note the imminent destruction and deallocation of a cache object record.
760 void fscache_object_destroy(struct fscache_object
*object
)
762 fscache_objlist_remove(object
);
764 /* We can get rid of the cookie now */
765 fscache_cookie_put(object
->cookie
);
766 object
->cookie
= NULL
;
768 EXPORT_SYMBOL(fscache_object_destroy
);
771 * enqueue an object for metadata-type processing
773 void fscache_enqueue_object(struct fscache_object
*object
)
775 _enter("{OBJ%x}", object
->debug_id
);
777 if (fscache_get_object(object
) >= 0) {
778 wait_queue_head_t
*cong_wq
=
779 &get_cpu_var(fscache_object_cong_wait
);
781 if (queue_work(fscache_object_wq
, &object
->work
)) {
782 if (fscache_object_congested())
785 fscache_put_object(object
);
787 put_cpu_var(fscache_object_cong_wait
);
792 * fscache_object_sleep_till_congested - Sleep until object wq is congested
793 * @timeoutp: Scheduler sleep timeout
795 * Allow an object handler to sleep until the object workqueue is congested.
797 * The caller must set up a wake up event before calling this and must have set
798 * the appropriate sleep mode (such as TASK_UNINTERRUPTIBLE) and tested its own
799 * condition before calling this function as no test is made here.
801 * %true is returned if the object wq is congested, %false otherwise.
803 bool fscache_object_sleep_till_congested(signed long *timeoutp
)
805 wait_queue_head_t
*cong_wq
= this_cpu_ptr(&fscache_object_cong_wait
);
808 if (fscache_object_congested())
811 add_wait_queue_exclusive(cong_wq
, &wait
);
812 if (!fscache_object_congested())
813 *timeoutp
= schedule_timeout(*timeoutp
);
814 finish_wait(cong_wq
, &wait
);
816 return fscache_object_congested();
818 EXPORT_SYMBOL_GPL(fscache_object_sleep_till_congested
);
821 * Enqueue the dependents of an object for metadata-type processing.
823 * If we don't manage to finish the list before the scheduler wants to run
824 * again then return false immediately. We return true if the list was
827 static bool fscache_enqueue_dependents(struct fscache_object
*object
, int event
)
829 struct fscache_object
*dep
;
832 _enter("{OBJ%x}", object
->debug_id
);
834 if (list_empty(&object
->dependents
))
837 spin_lock(&object
->lock
);
839 while (!list_empty(&object
->dependents
)) {
840 dep
= list_entry(object
->dependents
.next
,
841 struct fscache_object
, dep_link
);
842 list_del_init(&dep
->dep_link
);
844 fscache_raise_event(dep
, event
);
845 fscache_put_object(dep
);
847 if (!list_empty(&object
->dependents
) && need_resched()) {
853 spin_unlock(&object
->lock
);
858 * remove an object from whatever queue it's waiting on
860 static void fscache_dequeue_object(struct fscache_object
*object
)
862 _enter("{OBJ%x}", object
->debug_id
);
864 if (!list_empty(&object
->dep_link
)) {
865 spin_lock(&object
->parent
->lock
);
866 list_del_init(&object
->dep_link
);
867 spin_unlock(&object
->parent
->lock
);
874 * fscache_check_aux - Ask the netfs whether an object on disk is still valid
875 * @object: The object to ask about
876 * @data: The auxiliary data for the object
877 * @datalen: The size of the auxiliary data
879 * This function consults the netfs about the coherency state of an object.
880 * The caller must be holding a ref on cookie->n_active (held by
881 * fscache_look_up_object() on behalf of the cache backend during object lookup
884 enum fscache_checkaux
fscache_check_aux(struct fscache_object
*object
,
885 const void *data
, uint16_t datalen
)
887 enum fscache_checkaux result
;
889 if (!object
->cookie
->def
->check_aux
) {
890 fscache_stat(&fscache_n_checkaux_none
);
891 return FSCACHE_CHECKAUX_OKAY
;
894 result
= object
->cookie
->def
->check_aux(object
->cookie
->netfs_data
,
897 /* entry okay as is */
898 case FSCACHE_CHECKAUX_OKAY
:
899 fscache_stat(&fscache_n_checkaux_okay
);
902 /* entry requires update */
903 case FSCACHE_CHECKAUX_NEEDS_UPDATE
:
904 fscache_stat(&fscache_n_checkaux_update
);
907 /* entry requires deletion */
908 case FSCACHE_CHECKAUX_OBSOLETE
:
909 fscache_stat(&fscache_n_checkaux_obsolete
);
918 EXPORT_SYMBOL(fscache_check_aux
);
921 * Asynchronously invalidate an object.
923 static const struct fscache_state
*_fscache_invalidate_object(struct fscache_object
*object
,
926 struct fscache_operation
*op
;
927 struct fscache_cookie
*cookie
= object
->cookie
;
929 _enter("{OBJ%x},%d", object
->debug_id
, event
);
931 /* We're going to need the cookie. If the cookie is not available then
932 * retire the object instead.
934 if (!fscache_use_cookie(object
)) {
935 ASSERT(object
->cookie
->stores
.rnode
== NULL
);
936 set_bit(FSCACHE_OBJECT_RETIRED
, &object
->flags
);
937 _leave(" [no cookie]");
938 return transit_to(KILL_OBJECT
);
941 /* Reject any new read/write ops and abort any that are pending. */
942 fscache_invalidate_writes(cookie
);
943 clear_bit(FSCACHE_OBJECT_PENDING_WRITE
, &object
->flags
);
944 fscache_cancel_all_ops(object
);
946 /* Now we have to wait for in-progress reads and writes */
947 op
= kzalloc(sizeof(*op
), GFP_KERNEL
);
951 fscache_operation_init(op
, object
->cache
->ops
->invalidate_object
, NULL
);
952 op
->flags
= FSCACHE_OP_ASYNC
|
953 (1 << FSCACHE_OP_EXCLUSIVE
) |
954 (1 << FSCACHE_OP_UNUSE_COOKIE
);
956 spin_lock(&cookie
->lock
);
957 if (fscache_submit_exclusive_op(object
, op
) < 0)
958 goto submit_op_failed
;
959 spin_unlock(&cookie
->lock
);
960 fscache_put_operation(op
);
962 /* Once we've completed the invalidation, we know there will be no data
963 * stored in the cache and thus we can reinstate the data-check-skip
966 set_bit(FSCACHE_COOKIE_NO_DATA_YET
, &cookie
->flags
);
968 /* We can allow read and write requests to come in once again. They'll
969 * queue up behind our exclusive invalidation operation.
971 if (test_and_clear_bit(FSCACHE_COOKIE_INVALIDATING
, &cookie
->flags
))
972 wake_up_bit(&cookie
->flags
, FSCACHE_COOKIE_INVALIDATING
);
974 return transit_to(UPDATE_OBJECT
);
977 clear_bit(FSCACHE_OBJECT_IS_LIVE
, &object
->flags
);
978 fscache_unuse_cookie(object
);
980 return transit_to(KILL_OBJECT
);
983 clear_bit(FSCACHE_OBJECT_IS_LIVE
, &object
->flags
);
984 spin_unlock(&cookie
->lock
);
985 fscache_unuse_cookie(object
);
988 return transit_to(KILL_OBJECT
);
991 static const struct fscache_state
*fscache_invalidate_object(struct fscache_object
*object
,
994 const struct fscache_state
*s
;
996 fscache_stat(&fscache_n_invalidates_run
);
997 fscache_stat(&fscache_n_cop_invalidate_object
);
998 s
= _fscache_invalidate_object(object
, event
);
999 fscache_stat_d(&fscache_n_cop_invalidate_object
);
1004 * Asynchronously update an object.
1006 static const struct fscache_state
*fscache_update_object(struct fscache_object
*object
,
1009 _enter("{OBJ%x},%d", object
->debug_id
, event
);
1011 fscache_stat(&fscache_n_updates_run
);
1012 fscache_stat(&fscache_n_cop_update_object
);
1013 object
->cache
->ops
->update_object(object
);
1014 fscache_stat_d(&fscache_n_cop_update_object
);
1017 return transit_to(WAIT_FOR_CMD
);