platform/x86: (eeepc-laptop) Replace SENSORS_LIMIT with clamp_val
[linux-2.6.git] / fs / fscache / object.c
blob50d41c1802110b472f93eae0cae5f775d332fd13
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 "internal.h"
20 const char *fscache_object_states[FSCACHE_OBJECT__NSTATES] = {
21 [FSCACHE_OBJECT_INIT] = "OBJECT_INIT",
22 [FSCACHE_OBJECT_LOOKING_UP] = "OBJECT_LOOKING_UP",
23 [FSCACHE_OBJECT_CREATING] = "OBJECT_CREATING",
24 [FSCACHE_OBJECT_AVAILABLE] = "OBJECT_AVAILABLE",
25 [FSCACHE_OBJECT_ACTIVE] = "OBJECT_ACTIVE",
26 [FSCACHE_OBJECT_INVALIDATING] = "OBJECT_INVALIDATING",
27 [FSCACHE_OBJECT_UPDATING] = "OBJECT_UPDATING",
28 [FSCACHE_OBJECT_DYING] = "OBJECT_DYING",
29 [FSCACHE_OBJECT_LC_DYING] = "OBJECT_LC_DYING",
30 [FSCACHE_OBJECT_ABORT_INIT] = "OBJECT_ABORT_INIT",
31 [FSCACHE_OBJECT_RELEASING] = "OBJECT_RELEASING",
32 [FSCACHE_OBJECT_RECYCLING] = "OBJECT_RECYCLING",
33 [FSCACHE_OBJECT_WITHDRAWING] = "OBJECT_WITHDRAWING",
34 [FSCACHE_OBJECT_DEAD] = "OBJECT_DEAD",
36 EXPORT_SYMBOL(fscache_object_states);
38 const char fscache_object_states_short[FSCACHE_OBJECT__NSTATES][5] = {
39 [FSCACHE_OBJECT_INIT] = "INIT",
40 [FSCACHE_OBJECT_LOOKING_UP] = "LOOK",
41 [FSCACHE_OBJECT_CREATING] = "CRTN",
42 [FSCACHE_OBJECT_AVAILABLE] = "AVBL",
43 [FSCACHE_OBJECT_ACTIVE] = "ACTV",
44 [FSCACHE_OBJECT_INVALIDATING] = "INVL",
45 [FSCACHE_OBJECT_UPDATING] = "UPDT",
46 [FSCACHE_OBJECT_DYING] = "DYNG",
47 [FSCACHE_OBJECT_LC_DYING] = "LCDY",
48 [FSCACHE_OBJECT_ABORT_INIT] = "ABTI",
49 [FSCACHE_OBJECT_RELEASING] = "RELS",
50 [FSCACHE_OBJECT_RECYCLING] = "RCYC",
51 [FSCACHE_OBJECT_WITHDRAWING] = "WTHD",
52 [FSCACHE_OBJECT_DEAD] = "DEAD",
55 static int fscache_get_object(struct fscache_object *);
56 static void fscache_put_object(struct fscache_object *);
57 static void fscache_initialise_object(struct fscache_object *);
58 static void fscache_lookup_object(struct fscache_object *);
59 static void fscache_object_available(struct fscache_object *);
60 static void fscache_invalidate_object(struct fscache_object *);
61 static void fscache_release_object(struct fscache_object *);
62 static void fscache_withdraw_object(struct fscache_object *);
63 static void fscache_enqueue_dependents(struct fscache_object *);
64 static void fscache_dequeue_object(struct fscache_object *);
67 * we need to notify the parent when an op completes that we had outstanding
68 * upon it
70 static inline void fscache_done_parent_op(struct fscache_object *object)
72 struct fscache_object *parent = object->parent;
74 _enter("OBJ%x {OBJ%x,%x}",
75 object->debug_id, parent->debug_id, parent->n_ops);
77 spin_lock_nested(&parent->lock, 1);
78 parent->n_ops--;
79 parent->n_obj_ops--;
80 if (parent->n_ops == 0)
81 fscache_raise_event(parent, FSCACHE_OBJECT_EV_CLEARED);
82 spin_unlock(&parent->lock);
86 * Notify netfs of invalidation completion.
88 static inline void fscache_invalidation_complete(struct fscache_cookie *cookie)
90 if (test_and_clear_bit(FSCACHE_COOKIE_INVALIDATING, &cookie->flags))
91 wake_up_bit(&cookie->flags, FSCACHE_COOKIE_INVALIDATING);
95 * process events that have been sent to an object's state machine
96 * - initiates parent lookup
97 * - does object lookup
98 * - does object creation
99 * - does object recycling and retirement
100 * - does object withdrawal
102 static void fscache_object_state_machine(struct fscache_object *object)
104 enum fscache_object_state new_state;
105 struct fscache_cookie *cookie;
106 int event;
108 ASSERT(object != NULL);
110 _enter("{OBJ%x,%s,%lx}",
111 object->debug_id, fscache_object_states[object->state],
112 object->events);
114 switch (object->state) {
115 /* wait for the parent object to become ready */
116 case FSCACHE_OBJECT_INIT:
117 object->event_mask =
118 FSCACHE_OBJECT_EVENTS_MASK &
119 ~(1 << FSCACHE_OBJECT_EV_CLEARED);
120 fscache_initialise_object(object);
121 goto done;
123 /* look up the object metadata on disk */
124 case FSCACHE_OBJECT_LOOKING_UP:
125 fscache_lookup_object(object);
126 goto lookup_transit;
128 /* create the object metadata on disk */
129 case FSCACHE_OBJECT_CREATING:
130 fscache_lookup_object(object);
131 goto lookup_transit;
133 /* handle an object becoming available; start pending
134 * operations and queue dependent operations for processing */
135 case FSCACHE_OBJECT_AVAILABLE:
136 fscache_object_available(object);
137 goto active_transit;
139 /* normal running state */
140 case FSCACHE_OBJECT_ACTIVE:
141 goto active_transit;
143 /* Invalidate an object on disk */
144 case FSCACHE_OBJECT_INVALIDATING:
145 clear_bit(FSCACHE_OBJECT_EV_INVALIDATE, &object->events);
146 fscache_stat(&fscache_n_invalidates_run);
147 fscache_stat(&fscache_n_cop_invalidate_object);
148 fscache_invalidate_object(object);
149 fscache_stat_d(&fscache_n_cop_invalidate_object);
150 fscache_raise_event(object, FSCACHE_OBJECT_EV_UPDATE);
151 goto active_transit;
153 /* update the object metadata on disk */
154 case FSCACHE_OBJECT_UPDATING:
155 clear_bit(FSCACHE_OBJECT_EV_UPDATE, &object->events);
156 fscache_stat(&fscache_n_updates_run);
157 fscache_stat(&fscache_n_cop_update_object);
158 object->cache->ops->update_object(object);
159 fscache_stat_d(&fscache_n_cop_update_object);
160 goto active_transit;
162 /* handle an object dying during lookup or creation */
163 case FSCACHE_OBJECT_LC_DYING:
164 object->event_mask &= ~(1 << FSCACHE_OBJECT_EV_UPDATE);
165 fscache_stat(&fscache_n_cop_lookup_complete);
166 object->cache->ops->lookup_complete(object);
167 fscache_stat_d(&fscache_n_cop_lookup_complete);
169 spin_lock(&object->lock);
170 object->state = FSCACHE_OBJECT_DYING;
171 cookie = object->cookie;
172 if (cookie) {
173 if (test_and_clear_bit(FSCACHE_COOKIE_LOOKING_UP,
174 &cookie->flags))
175 wake_up_bit(&cookie->flags,
176 FSCACHE_COOKIE_LOOKING_UP);
177 if (test_and_clear_bit(FSCACHE_COOKIE_CREATING,
178 &cookie->flags))
179 wake_up_bit(&cookie->flags,
180 FSCACHE_COOKIE_CREATING);
182 spin_unlock(&object->lock);
184 fscache_done_parent_op(object);
186 /* wait for completion of all active operations on this object
187 * and the death of all child objects of this object */
188 case FSCACHE_OBJECT_DYING:
189 dying:
190 clear_bit(FSCACHE_OBJECT_EV_CLEARED, &object->events);
191 spin_lock(&object->lock);
192 _debug("dying OBJ%x {%d,%d}",
193 object->debug_id, object->n_ops, object->n_children);
194 if (object->n_ops == 0 && object->n_children == 0) {
195 object->event_mask &=
196 ~(1 << FSCACHE_OBJECT_EV_CLEARED);
197 object->event_mask |=
198 (1 << FSCACHE_OBJECT_EV_WITHDRAW) |
199 (1 << FSCACHE_OBJECT_EV_RETIRE) |
200 (1 << FSCACHE_OBJECT_EV_RELEASE) |
201 (1 << FSCACHE_OBJECT_EV_ERROR);
202 } else {
203 object->event_mask &=
204 ~((1 << FSCACHE_OBJECT_EV_WITHDRAW) |
205 (1 << FSCACHE_OBJECT_EV_RETIRE) |
206 (1 << FSCACHE_OBJECT_EV_RELEASE) |
207 (1 << FSCACHE_OBJECT_EV_ERROR));
208 object->event_mask |=
209 1 << FSCACHE_OBJECT_EV_CLEARED;
211 spin_unlock(&object->lock);
212 fscache_enqueue_dependents(object);
213 fscache_start_operations(object);
214 goto terminal_transit;
216 /* handle an abort during initialisation */
217 case FSCACHE_OBJECT_ABORT_INIT:
218 _debug("handle abort init %lx", object->events);
219 object->event_mask &= ~(1 << FSCACHE_OBJECT_EV_UPDATE);
221 spin_lock(&object->lock);
222 fscache_dequeue_object(object);
224 object->state = FSCACHE_OBJECT_DYING;
225 if (test_and_clear_bit(FSCACHE_COOKIE_CREATING,
226 &object->cookie->flags))
227 wake_up_bit(&object->cookie->flags,
228 FSCACHE_COOKIE_CREATING);
229 spin_unlock(&object->lock);
230 goto dying;
232 /* handle the netfs releasing an object and possibly marking it
233 * obsolete too */
234 case FSCACHE_OBJECT_RELEASING:
235 case FSCACHE_OBJECT_RECYCLING:
236 object->event_mask &=
237 ~((1 << FSCACHE_OBJECT_EV_WITHDRAW) |
238 (1 << FSCACHE_OBJECT_EV_RETIRE) |
239 (1 << FSCACHE_OBJECT_EV_RELEASE) |
240 (1 << FSCACHE_OBJECT_EV_ERROR));
241 fscache_release_object(object);
242 spin_lock(&object->lock);
243 object->state = FSCACHE_OBJECT_DEAD;
244 spin_unlock(&object->lock);
245 fscache_stat(&fscache_n_object_dead);
246 goto terminal_transit;
248 /* handle the parent cache of this object being withdrawn from
249 * active service */
250 case FSCACHE_OBJECT_WITHDRAWING:
251 object->event_mask &=
252 ~((1 << FSCACHE_OBJECT_EV_WITHDRAW) |
253 (1 << FSCACHE_OBJECT_EV_RETIRE) |
254 (1 << FSCACHE_OBJECT_EV_RELEASE) |
255 (1 << FSCACHE_OBJECT_EV_ERROR));
256 fscache_withdraw_object(object);
257 spin_lock(&object->lock);
258 object->state = FSCACHE_OBJECT_DEAD;
259 spin_unlock(&object->lock);
260 fscache_stat(&fscache_n_object_dead);
261 goto terminal_transit;
263 /* complain about the object being woken up once it is
264 * deceased */
265 case FSCACHE_OBJECT_DEAD:
266 printk(KERN_ERR "FS-Cache:"
267 " Unexpected event in dead state %lx\n",
268 object->events & object->event_mask);
269 BUG();
271 default:
272 printk(KERN_ERR "FS-Cache: Unknown object state %u\n",
273 object->state);
274 BUG();
277 /* determine the transition from a lookup state */
278 lookup_transit:
279 event = fls(object->events & object->event_mask) - 1;
280 switch (event) {
281 case FSCACHE_OBJECT_EV_WITHDRAW:
282 case FSCACHE_OBJECT_EV_RETIRE:
283 case FSCACHE_OBJECT_EV_RELEASE:
284 case FSCACHE_OBJECT_EV_ERROR:
285 new_state = FSCACHE_OBJECT_LC_DYING;
286 goto change_state;
287 case FSCACHE_OBJECT_EV_INVALIDATE:
288 new_state = FSCACHE_OBJECT_INVALIDATING;
289 goto change_state;
290 case FSCACHE_OBJECT_EV_REQUEUE:
291 goto done;
292 case -1:
293 goto done; /* sleep until event */
294 default:
295 goto unsupported_event;
298 /* determine the transition from an active state */
299 active_transit:
300 event = fls(object->events & object->event_mask) - 1;
301 switch (event) {
302 case FSCACHE_OBJECT_EV_WITHDRAW:
303 case FSCACHE_OBJECT_EV_RETIRE:
304 case FSCACHE_OBJECT_EV_RELEASE:
305 case FSCACHE_OBJECT_EV_ERROR:
306 new_state = FSCACHE_OBJECT_DYING;
307 goto change_state;
308 case FSCACHE_OBJECT_EV_INVALIDATE:
309 new_state = FSCACHE_OBJECT_INVALIDATING;
310 goto change_state;
311 case FSCACHE_OBJECT_EV_UPDATE:
312 new_state = FSCACHE_OBJECT_UPDATING;
313 goto change_state;
314 case -1:
315 new_state = FSCACHE_OBJECT_ACTIVE;
316 goto change_state; /* sleep until event */
317 default:
318 goto unsupported_event;
321 /* determine the transition from a terminal state */
322 terminal_transit:
323 event = fls(object->events & object->event_mask) - 1;
324 switch (event) {
325 case FSCACHE_OBJECT_EV_WITHDRAW:
326 new_state = FSCACHE_OBJECT_WITHDRAWING;
327 goto change_state;
328 case FSCACHE_OBJECT_EV_RETIRE:
329 new_state = FSCACHE_OBJECT_RECYCLING;
330 goto change_state;
331 case FSCACHE_OBJECT_EV_RELEASE:
332 new_state = FSCACHE_OBJECT_RELEASING;
333 goto change_state;
334 case FSCACHE_OBJECT_EV_ERROR:
335 new_state = FSCACHE_OBJECT_WITHDRAWING;
336 goto change_state;
337 case FSCACHE_OBJECT_EV_CLEARED:
338 new_state = FSCACHE_OBJECT_DYING;
339 goto change_state;
340 case -1:
341 goto done; /* sleep until event */
342 default:
343 goto unsupported_event;
346 change_state:
347 spin_lock(&object->lock);
348 object->state = new_state;
349 spin_unlock(&object->lock);
351 done:
352 _leave(" [->%s]", fscache_object_states[object->state]);
353 return;
355 unsupported_event:
356 printk(KERN_ERR "FS-Cache:"
357 " Unsupported event %d [%lx/%lx] in state %s\n",
358 event, object->events, object->event_mask,
359 fscache_object_states[object->state]);
360 BUG();
364 * execute an object
366 void fscache_object_work_func(struct work_struct *work)
368 struct fscache_object *object =
369 container_of(work, struct fscache_object, work);
370 unsigned long start;
372 _enter("{OBJ%x}", object->debug_id);
374 start = jiffies;
375 fscache_object_state_machine(object);
376 fscache_hist(fscache_objs_histogram, start);
377 if (object->events & object->event_mask)
378 fscache_enqueue_object(object);
379 clear_bit(FSCACHE_OBJECT_EV_REQUEUE, &object->events);
380 fscache_put_object(object);
382 EXPORT_SYMBOL(fscache_object_work_func);
385 * initialise an object
386 * - check the specified object's parent to see if we can make use of it
387 * immediately to do a creation
388 * - we may need to start the process of creating a parent and we need to wait
389 * for the parent's lookup and creation to complete if it's not there yet
390 * - an object's cookie is pinned until we clear FSCACHE_COOKIE_CREATING on the
391 * leaf-most cookies of the object and all its children
393 static void fscache_initialise_object(struct fscache_object *object)
395 struct fscache_object *parent;
397 _enter("");
398 ASSERT(object->cookie != NULL);
399 ASSERT(object->cookie->parent != NULL);
401 if (object->events & ((1 << FSCACHE_OBJECT_EV_ERROR) |
402 (1 << FSCACHE_OBJECT_EV_RELEASE) |
403 (1 << FSCACHE_OBJECT_EV_RETIRE) |
404 (1 << FSCACHE_OBJECT_EV_WITHDRAW))) {
405 _debug("abort init %lx", object->events);
406 spin_lock(&object->lock);
407 object->state = FSCACHE_OBJECT_ABORT_INIT;
408 spin_unlock(&object->lock);
409 return;
412 spin_lock(&object->cookie->lock);
413 spin_lock_nested(&object->cookie->parent->lock, 1);
415 parent = object->parent;
416 if (!parent) {
417 _debug("no parent");
418 set_bit(FSCACHE_OBJECT_EV_WITHDRAW, &object->events);
419 } else {
420 spin_lock(&object->lock);
421 spin_lock_nested(&parent->lock, 1);
422 _debug("parent %s", fscache_object_states[parent->state]);
424 if (parent->state >= FSCACHE_OBJECT_DYING) {
425 _debug("bad parent");
426 set_bit(FSCACHE_OBJECT_EV_WITHDRAW, &object->events);
427 } else if (parent->state < FSCACHE_OBJECT_AVAILABLE) {
428 _debug("wait");
430 /* we may get woken up in this state by child objects
431 * binding on to us, so we need to make sure we don't
432 * add ourself to the list multiple times */
433 if (list_empty(&object->dep_link)) {
434 fscache_stat(&fscache_n_cop_grab_object);
435 object->cache->ops->grab_object(object);
436 fscache_stat_d(&fscache_n_cop_grab_object);
437 list_add(&object->dep_link,
438 &parent->dependents);
440 /* fscache_acquire_non_index_cookie() uses this
441 * to wake the chain up */
442 if (parent->state == FSCACHE_OBJECT_INIT)
443 fscache_enqueue_object(parent);
445 } else {
446 _debug("go");
447 parent->n_ops++;
448 parent->n_obj_ops++;
449 object->lookup_jif = jiffies;
450 object->state = FSCACHE_OBJECT_LOOKING_UP;
451 set_bit(FSCACHE_OBJECT_EV_REQUEUE, &object->events);
454 spin_unlock(&parent->lock);
455 spin_unlock(&object->lock);
458 spin_unlock(&object->cookie->parent->lock);
459 spin_unlock(&object->cookie->lock);
460 _leave("");
464 * look an object up in the cache from which it was allocated
465 * - we hold an "access lock" on the parent object, so the parent object cannot
466 * be withdrawn by either party till we've finished
467 * - an object's cookie is pinned until we clear FSCACHE_COOKIE_CREATING on the
468 * leaf-most cookies of the object and all its children
470 static void fscache_lookup_object(struct fscache_object *object)
472 struct fscache_cookie *cookie = object->cookie;
473 struct fscache_object *parent;
474 int ret;
476 _enter("");
478 parent = object->parent;
479 ASSERT(parent != NULL);
480 ASSERTCMP(parent->n_ops, >, 0);
481 ASSERTCMP(parent->n_obj_ops, >, 0);
483 /* make sure the parent is still available */
484 ASSERTCMP(parent->state, >=, FSCACHE_OBJECT_AVAILABLE);
486 if (parent->state >= FSCACHE_OBJECT_DYING ||
487 test_bit(FSCACHE_IOERROR, &object->cache->flags)) {
488 _debug("unavailable");
489 set_bit(FSCACHE_OBJECT_EV_WITHDRAW, &object->events);
490 _leave("");
491 return;
494 _debug("LOOKUP \"%s/%s\" in \"%s\"",
495 parent->cookie->def->name, cookie->def->name,
496 object->cache->tag->name);
498 fscache_stat(&fscache_n_object_lookups);
499 fscache_stat(&fscache_n_cop_lookup_object);
500 ret = object->cache->ops->lookup_object(object);
501 fscache_stat_d(&fscache_n_cop_lookup_object);
503 if (test_bit(FSCACHE_OBJECT_EV_ERROR, &object->events))
504 set_bit(FSCACHE_COOKIE_UNAVAILABLE, &cookie->flags);
506 if (ret == -ETIMEDOUT) {
507 /* probably stuck behind another object, so move this one to
508 * the back of the queue */
509 fscache_stat(&fscache_n_object_lookups_timed_out);
510 set_bit(FSCACHE_OBJECT_EV_REQUEUE, &object->events);
513 _leave("");
517 * fscache_object_lookup_negative - Note negative cookie lookup
518 * @object: Object pointing to cookie to mark
520 * Note negative lookup, permitting those waiting to read data from an already
521 * existing backing object to continue as there's no data for them to read.
523 void fscache_object_lookup_negative(struct fscache_object *object)
525 struct fscache_cookie *cookie = object->cookie;
527 _enter("{OBJ%x,%s}",
528 object->debug_id, fscache_object_states[object->state]);
530 spin_lock(&object->lock);
531 if (object->state == FSCACHE_OBJECT_LOOKING_UP) {
532 fscache_stat(&fscache_n_object_lookups_negative);
534 /* transit here to allow write requests to begin stacking up
535 * and read requests to begin returning ENODATA */
536 object->state = FSCACHE_OBJECT_CREATING;
537 spin_unlock(&object->lock);
539 set_bit(FSCACHE_COOKIE_PENDING_FILL, &cookie->flags);
540 set_bit(FSCACHE_COOKIE_NO_DATA_YET, &cookie->flags);
542 _debug("wake up lookup %p", &cookie->flags);
543 smp_mb__before_clear_bit();
544 clear_bit(FSCACHE_COOKIE_LOOKING_UP, &cookie->flags);
545 smp_mb__after_clear_bit();
546 wake_up_bit(&cookie->flags, FSCACHE_COOKIE_LOOKING_UP);
547 set_bit(FSCACHE_OBJECT_EV_REQUEUE, &object->events);
548 } else {
549 ASSERTCMP(object->state, ==, FSCACHE_OBJECT_CREATING);
550 spin_unlock(&object->lock);
553 _leave("");
555 EXPORT_SYMBOL(fscache_object_lookup_negative);
558 * fscache_obtained_object - Note successful object lookup or creation
559 * @object: Object pointing to cookie to mark
561 * Note successful lookup and/or creation, permitting those waiting to write
562 * data to a backing object to continue.
564 * Note that after calling this, an object's cookie may be relinquished by the
565 * netfs, and so must be accessed with object lock held.
567 void fscache_obtained_object(struct fscache_object *object)
569 struct fscache_cookie *cookie = object->cookie;
571 _enter("{OBJ%x,%s}",
572 object->debug_id, fscache_object_states[object->state]);
574 /* if we were still looking up, then we must have a positive lookup
575 * result, in which case there may be data available */
576 spin_lock(&object->lock);
577 if (object->state == FSCACHE_OBJECT_LOOKING_UP) {
578 fscache_stat(&fscache_n_object_lookups_positive);
580 clear_bit(FSCACHE_COOKIE_NO_DATA_YET, &cookie->flags);
582 object->state = FSCACHE_OBJECT_AVAILABLE;
583 spin_unlock(&object->lock);
585 smp_mb__before_clear_bit();
586 clear_bit(FSCACHE_COOKIE_LOOKING_UP, &cookie->flags);
587 smp_mb__after_clear_bit();
588 wake_up_bit(&cookie->flags, FSCACHE_COOKIE_LOOKING_UP);
589 set_bit(FSCACHE_OBJECT_EV_REQUEUE, &object->events);
590 } else {
591 ASSERTCMP(object->state, ==, FSCACHE_OBJECT_CREATING);
592 fscache_stat(&fscache_n_object_created);
594 object->state = FSCACHE_OBJECT_AVAILABLE;
595 spin_unlock(&object->lock);
596 set_bit(FSCACHE_OBJECT_EV_REQUEUE, &object->events);
597 smp_wmb();
600 if (test_and_clear_bit(FSCACHE_COOKIE_CREATING, &cookie->flags))
601 wake_up_bit(&cookie->flags, FSCACHE_COOKIE_CREATING);
603 _leave("");
605 EXPORT_SYMBOL(fscache_obtained_object);
608 * handle an object that has just become available
610 static void fscache_object_available(struct fscache_object *object)
612 _enter("{OBJ%x}", object->debug_id);
614 spin_lock(&object->lock);
616 if (object->cookie &&
617 test_and_clear_bit(FSCACHE_COOKIE_CREATING, &object->cookie->flags))
618 wake_up_bit(&object->cookie->flags, FSCACHE_COOKIE_CREATING);
620 fscache_done_parent_op(object);
621 if (object->n_in_progress == 0) {
622 if (object->n_ops > 0) {
623 ASSERTCMP(object->n_ops, >=, object->n_obj_ops);
624 fscache_start_operations(object);
625 } else {
626 ASSERT(list_empty(&object->pending_ops));
629 spin_unlock(&object->lock);
631 fscache_stat(&fscache_n_cop_lookup_complete);
632 object->cache->ops->lookup_complete(object);
633 fscache_stat_d(&fscache_n_cop_lookup_complete);
634 fscache_enqueue_dependents(object);
636 fscache_hist(fscache_obj_instantiate_histogram, object->lookup_jif);
637 fscache_stat(&fscache_n_object_avail);
639 _leave("");
643 * drop an object's attachments
645 static void fscache_drop_object(struct fscache_object *object)
647 struct fscache_object *parent = object->parent;
648 struct fscache_cache *cache = object->cache;
650 _enter("{OBJ%x,%d}", object->debug_id, object->n_children);
652 ASSERTCMP(object->cookie, ==, NULL);
653 ASSERT(hlist_unhashed(&object->cookie_link));
655 spin_lock(&cache->object_list_lock);
656 list_del_init(&object->cache_link);
657 spin_unlock(&cache->object_list_lock);
659 fscache_stat(&fscache_n_cop_drop_object);
660 cache->ops->drop_object(object);
661 fscache_stat_d(&fscache_n_cop_drop_object);
663 if (parent) {
664 _debug("release parent OBJ%x {%d}",
665 parent->debug_id, parent->n_children);
667 spin_lock(&parent->lock);
668 parent->n_children--;
669 if (parent->n_children == 0)
670 fscache_raise_event(parent, FSCACHE_OBJECT_EV_CLEARED);
671 spin_unlock(&parent->lock);
672 object->parent = NULL;
675 /* this just shifts the object release to the work processor */
676 fscache_put_object(object);
678 _leave("");
682 * release or recycle an object that the netfs has discarded
684 static void fscache_release_object(struct fscache_object *object)
686 _enter("");
688 fscache_drop_object(object);
692 * withdraw an object from active service
694 static void fscache_withdraw_object(struct fscache_object *object)
696 struct fscache_cookie *cookie;
697 bool detached;
699 _enter("");
701 spin_lock(&object->lock);
702 cookie = object->cookie;
703 if (cookie) {
704 /* need to get the cookie lock before the object lock, starting
705 * from the object pointer */
706 atomic_inc(&cookie->usage);
707 spin_unlock(&object->lock);
709 detached = false;
710 spin_lock(&cookie->lock);
711 spin_lock(&object->lock);
713 if (object->cookie == cookie) {
714 hlist_del_init(&object->cookie_link);
715 object->cookie = NULL;
716 fscache_invalidation_complete(cookie);
717 detached = true;
719 spin_unlock(&cookie->lock);
720 fscache_cookie_put(cookie);
721 if (detached)
722 fscache_cookie_put(cookie);
725 spin_unlock(&object->lock);
727 fscache_drop_object(object);
731 * withdraw an object from active service at the behest of the cache
732 * - need break the links to a cached object cookie
733 * - called under two situations:
734 * (1) recycler decides to reclaim an in-use object
735 * (2) a cache is unmounted
736 * - have to take care as the cookie can be being relinquished by the netfs
737 * simultaneously
738 * - the object is pinned by the caller holding a refcount on it
740 void fscache_withdrawing_object(struct fscache_cache *cache,
741 struct fscache_object *object)
743 bool enqueue = false;
745 _enter(",OBJ%x", object->debug_id);
747 spin_lock(&object->lock);
748 if (object->state < FSCACHE_OBJECT_WITHDRAWING) {
749 object->state = FSCACHE_OBJECT_WITHDRAWING;
750 enqueue = true;
752 spin_unlock(&object->lock);
754 if (enqueue)
755 fscache_enqueue_object(object);
757 _leave("");
761 * get a ref on an object
763 static int fscache_get_object(struct fscache_object *object)
765 int ret;
767 fscache_stat(&fscache_n_cop_grab_object);
768 ret = object->cache->ops->grab_object(object) ? 0 : -EAGAIN;
769 fscache_stat_d(&fscache_n_cop_grab_object);
770 return ret;
774 * discard a ref on a work item
776 static void fscache_put_object(struct fscache_object *object)
778 fscache_stat(&fscache_n_cop_put_object);
779 object->cache->ops->put_object(object);
780 fscache_stat_d(&fscache_n_cop_put_object);
784 * enqueue an object for metadata-type processing
786 void fscache_enqueue_object(struct fscache_object *object)
788 _enter("{OBJ%x}", object->debug_id);
790 if (fscache_get_object(object) >= 0) {
791 wait_queue_head_t *cong_wq =
792 &get_cpu_var(fscache_object_cong_wait);
794 if (queue_work(fscache_object_wq, &object->work)) {
795 if (fscache_object_congested())
796 wake_up(cong_wq);
797 } else
798 fscache_put_object(object);
800 put_cpu_var(fscache_object_cong_wait);
805 * fscache_object_sleep_till_congested - Sleep until object wq is congested
806 * @timoutp: Scheduler sleep timeout
808 * Allow an object handler to sleep until the object workqueue is congested.
810 * The caller must set up a wake up event before calling this and must have set
811 * the appropriate sleep mode (such as TASK_UNINTERRUPTIBLE) and tested its own
812 * condition before calling this function as no test is made here.
814 * %true is returned if the object wq is congested, %false otherwise.
816 bool fscache_object_sleep_till_congested(signed long *timeoutp)
818 wait_queue_head_t *cong_wq = &__get_cpu_var(fscache_object_cong_wait);
819 DEFINE_WAIT(wait);
821 if (fscache_object_congested())
822 return true;
824 add_wait_queue_exclusive(cong_wq, &wait);
825 if (!fscache_object_congested())
826 *timeoutp = schedule_timeout(*timeoutp);
827 finish_wait(cong_wq, &wait);
829 return fscache_object_congested();
831 EXPORT_SYMBOL_GPL(fscache_object_sleep_till_congested);
834 * enqueue the dependents of an object for metadata-type processing
835 * - the caller must hold the object's lock
836 * - this may cause an already locked object to wind up being processed again
838 static void fscache_enqueue_dependents(struct fscache_object *object)
840 struct fscache_object *dep;
842 _enter("{OBJ%x}", object->debug_id);
844 if (list_empty(&object->dependents))
845 return;
847 spin_lock(&object->lock);
849 while (!list_empty(&object->dependents)) {
850 dep = list_entry(object->dependents.next,
851 struct fscache_object, dep_link);
852 list_del_init(&dep->dep_link);
855 /* sort onto appropriate lists */
856 fscache_enqueue_object(dep);
857 fscache_put_object(dep);
859 if (!list_empty(&object->dependents))
860 cond_resched_lock(&object->lock);
863 spin_unlock(&object->lock);
867 * remove an object from whatever queue it's waiting on
868 * - the caller must hold object->lock
870 void fscache_dequeue_object(struct fscache_object *object)
872 _enter("{OBJ%x}", object->debug_id);
874 if (!list_empty(&object->dep_link)) {
875 spin_lock(&object->parent->lock);
876 list_del_init(&object->dep_link);
877 spin_unlock(&object->parent->lock);
880 _leave("");
884 * fscache_check_aux - Ask the netfs whether an object on disk is still valid
885 * @object: The object to ask about
886 * @data: The auxiliary data for the object
887 * @datalen: The size of the auxiliary data
889 * This function consults the netfs about the coherency state of an object
891 enum fscache_checkaux fscache_check_aux(struct fscache_object *object,
892 const void *data, uint16_t datalen)
894 enum fscache_checkaux result;
896 if (!object->cookie->def->check_aux) {
897 fscache_stat(&fscache_n_checkaux_none);
898 return FSCACHE_CHECKAUX_OKAY;
901 result = object->cookie->def->check_aux(object->cookie->netfs_data,
902 data, datalen);
903 switch (result) {
904 /* entry okay as is */
905 case FSCACHE_CHECKAUX_OKAY:
906 fscache_stat(&fscache_n_checkaux_okay);
907 break;
909 /* entry requires update */
910 case FSCACHE_CHECKAUX_NEEDS_UPDATE:
911 fscache_stat(&fscache_n_checkaux_update);
912 break;
914 /* entry requires deletion */
915 case FSCACHE_CHECKAUX_OBSOLETE:
916 fscache_stat(&fscache_n_checkaux_obsolete);
917 break;
919 default:
920 BUG();
923 return result;
925 EXPORT_SYMBOL(fscache_check_aux);
928 * Asynchronously invalidate an object.
930 static void fscache_invalidate_object(struct fscache_object *object)
932 struct fscache_operation *op;
933 struct fscache_cookie *cookie = object->cookie;
935 _enter("{OBJ%x}", object->debug_id);
937 /* Reject any new read/write ops and abort any that are pending. */
938 fscache_invalidate_writes(cookie);
939 clear_bit(FSCACHE_OBJECT_PENDING_WRITE, &object->flags);
940 fscache_cancel_all_ops(object);
942 /* Now we have to wait for in-progress reads and writes */
943 op = kzalloc(sizeof(*op), GFP_KERNEL);
944 if (!op) {
945 fscache_raise_event(object, FSCACHE_OBJECT_EV_ERROR);
946 _leave(" [ENOMEM]");
947 return;
950 fscache_operation_init(op, object->cache->ops->invalidate_object, NULL);
951 op->flags = FSCACHE_OP_ASYNC | (1 << FSCACHE_OP_EXCLUSIVE);
953 spin_lock(&cookie->lock);
954 if (fscache_submit_exclusive_op(object, op) < 0)
955 goto submit_op_failed;
956 spin_unlock(&cookie->lock);
957 fscache_put_operation(op);
959 /* Once we've completed the invalidation, we know there will be no data
960 * stored in the cache and thus we can reinstate the data-check-skip
961 * optimisation.
963 set_bit(FSCACHE_COOKIE_NO_DATA_YET, &cookie->flags);
965 /* We can allow read and write requests to come in once again. They'll
966 * queue up behind our exclusive invalidation operation.
968 fscache_invalidation_complete(cookie);
969 _leave("");
970 return;
972 submit_op_failed:
973 spin_unlock(&cookie->lock);
974 kfree(op);
975 fscache_raise_event(object, FSCACHE_OBJECT_EV_ERROR);
976 _leave(" [EIO]");