]> bbs.cooldavid.org Git - net-next-2.6.git/blame - fs/fscache/page.c
fscache: add missing unlock
[net-next-2.6.git] / fs / fscache / page.c
CommitLineData
b5108822
DH
1/* Cache page management and data I/O routines
2 *
3 * Copyright (C) 2004-2008 Red Hat, Inc. All Rights Reserved.
4 * Written by David Howells (dhowells@redhat.com)
5 *
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.
10 */
11
12#define FSCACHE_DEBUG_LEVEL PAGE
13#include <linux/module.h>
14#include <linux/fscache-cache.h>
15#include <linux/buffer_head.h>
16#include <linux/pagevec.h>
17#include "internal.h"
18
19/*
20 * check to see if a page is being written to the cache
21 */
22bool __fscache_check_page_write(struct fscache_cookie *cookie, struct page *page)
23{
24 void *val;
25
26 rcu_read_lock();
27 val = radix_tree_lookup(&cookie->stores, page->index);
28 rcu_read_unlock();
29
30 return val != NULL;
31}
32EXPORT_SYMBOL(__fscache_check_page_write);
33
34/*
35 * wait for a page to finish being written to the cache
36 */
37void __fscache_wait_on_page_write(struct fscache_cookie *cookie, struct page *page)
38{
39 wait_queue_head_t *wq = bit_waitqueue(&cookie->flags, 0);
40
41 wait_event(*wq, !__fscache_check_page_write(cookie, page));
42}
43EXPORT_SYMBOL(__fscache_wait_on_page_write);
44
201a1542
DH
45/*
46 * decide whether a page can be released, possibly by cancelling a store to it
47 * - we're allowed to sleep if __GFP_WAIT is flagged
48 */
49bool __fscache_maybe_release_page(struct fscache_cookie *cookie,
50 struct page *page,
51 gfp_t gfp)
52{
53 struct page *xpage;
54 void *val;
55
56 _enter("%p,%p,%x", cookie, page, gfp);
57
58 rcu_read_lock();
59 val = radix_tree_lookup(&cookie->stores, page->index);
60 if (!val) {
61 rcu_read_unlock();
62 fscache_stat(&fscache_n_store_vmscan_not_storing);
63 __fscache_uncache_page(cookie, page);
64 return true;
65 }
66
67 /* see if the page is actually undergoing storage - if so we can't get
68 * rid of it till the cache has finished with it */
69 if (radix_tree_tag_get(&cookie->stores, page->index,
70 FSCACHE_COOKIE_STORING_TAG)) {
71 rcu_read_unlock();
72 goto page_busy;
73 }
74
75 /* the page is pending storage, so we attempt to cancel the store and
76 * discard the store request so that the page can be reclaimed */
77 spin_lock(&cookie->stores_lock);
78 rcu_read_unlock();
79
80 if (radix_tree_tag_get(&cookie->stores, page->index,
81 FSCACHE_COOKIE_STORING_TAG)) {
82 /* the page started to undergo storage whilst we were looking,
83 * so now we can only wait or return */
84 spin_unlock(&cookie->stores_lock);
85 goto page_busy;
86 }
87
88 xpage = radix_tree_delete(&cookie->stores, page->index);
89 spin_unlock(&cookie->stores_lock);
90
91 if (xpage) {
92 fscache_stat(&fscache_n_store_vmscan_cancelled);
93 fscache_stat(&fscache_n_store_radix_deletes);
94 ASSERTCMP(xpage, ==, page);
95 } else {
96 fscache_stat(&fscache_n_store_vmscan_gone);
97 }
98
99 wake_up_bit(&cookie->flags, 0);
100 if (xpage)
101 page_cache_release(xpage);
102 __fscache_uncache_page(cookie, page);
103 return true;
104
105page_busy:
106 /* we might want to wait here, but that could deadlock the allocator as
107 * the slow-work threads writing to the cache may all end up sleeping
108 * on memory allocation */
109 fscache_stat(&fscache_n_store_vmscan_busy);
110 return false;
111}
112EXPORT_SYMBOL(__fscache_maybe_release_page);
113
b5108822
DH
114/*
115 * note that a page has finished being written to the cache
116 */
1bccf513
DH
117static void fscache_end_page_write(struct fscache_object *object,
118 struct page *page)
b5108822 119{
1bccf513
DH
120 struct fscache_cookie *cookie;
121 struct page *xpage = NULL;
b5108822 122
1bccf513
DH
123 spin_lock(&object->lock);
124 cookie = object->cookie;
125 if (cookie) {
126 /* delete the page from the tree if it is now no longer
127 * pending */
128 spin_lock(&cookie->stores_lock);
201a1542
DH
129 radix_tree_tag_clear(&cookie->stores, page->index,
130 FSCACHE_COOKIE_STORING_TAG);
285e728b
DH
131 if (!radix_tree_tag_get(&cookie->stores, page->index,
132 FSCACHE_COOKIE_PENDING_TAG)) {
133 fscache_stat(&fscache_n_store_radix_deletes);
134 xpage = radix_tree_delete(&cookie->stores, page->index);
135 }
1bccf513
DH
136 spin_unlock(&cookie->stores_lock);
137 wake_up_bit(&cookie->flags, 0);
138 }
139 spin_unlock(&object->lock);
140 if (xpage)
141 page_cache_release(xpage);
b5108822
DH
142}
143
144/*
145 * actually apply the changed attributes to a cache object
146 */
147static void fscache_attr_changed_op(struct fscache_operation *op)
148{
149 struct fscache_object *object = op->object;
440f0aff 150 int ret;
b5108822
DH
151
152 _enter("{OBJ%x OP%x}", object->debug_id, op->debug_id);
153
154 fscache_stat(&fscache_n_attr_changed_calls);
155
440f0aff
DH
156 if (fscache_object_is_active(object)) {
157 fscache_set_op_state(op, "CallFS");
52bd75fd 158 fscache_stat(&fscache_n_cop_attr_changed);
440f0aff 159 ret = object->cache->ops->attr_changed(object);
52bd75fd 160 fscache_stat_d(&fscache_n_cop_attr_changed);
440f0aff
DH
161 fscache_set_op_state(op, "Done");
162 if (ret < 0)
163 fscache_abort_object(object);
164 }
b5108822
DH
165
166 _leave("");
167}
168
169/*
170 * notification that the attributes on an object have changed
171 */
172int __fscache_attr_changed(struct fscache_cookie *cookie)
173{
174 struct fscache_operation *op;
175 struct fscache_object *object;
176
177 _enter("%p", cookie);
178
179 ASSERTCMP(cookie->def->type, !=, FSCACHE_COOKIE_TYPE_INDEX);
180
181 fscache_stat(&fscache_n_attr_changed);
182
183 op = kzalloc(sizeof(*op), GFP_KERNEL);
184 if (!op) {
185 fscache_stat(&fscache_n_attr_changed_nomem);
186 _leave(" = -ENOMEM");
187 return -ENOMEM;
188 }
189
190 fscache_operation_init(op, NULL);
191 fscache_operation_init_slow(op, fscache_attr_changed_op);
192 op->flags = FSCACHE_OP_SLOW | (1 << FSCACHE_OP_EXCLUSIVE);
440f0aff 193 fscache_set_op_name(op, "Attr");
b5108822
DH
194
195 spin_lock(&cookie->lock);
196
197 if (hlist_empty(&cookie->backing_objects))
198 goto nobufs;
199 object = hlist_entry(cookie->backing_objects.first,
200 struct fscache_object, cookie_link);
201
202 if (fscache_submit_exclusive_op(object, op) < 0)
203 goto nobufs;
204 spin_unlock(&cookie->lock);
205 fscache_stat(&fscache_n_attr_changed_ok);
206 fscache_put_operation(op);
207 _leave(" = 0");
208 return 0;
209
210nobufs:
211 spin_unlock(&cookie->lock);
212 kfree(op);
213 fscache_stat(&fscache_n_attr_changed_nobufs);
214 _leave(" = %d", -ENOBUFS);
215 return -ENOBUFS;
216}
217EXPORT_SYMBOL(__fscache_attr_changed);
218
219/*
220 * handle secondary execution given to a retrieval op on behalf of the
221 * cache
222 */
223static void fscache_retrieval_work(struct work_struct *work)
224{
225 struct fscache_retrieval *op =
226 container_of(work, struct fscache_retrieval, op.fast_work);
227 unsigned long start;
228
229 _enter("{OP%x}", op->op.debug_id);
230
231 start = jiffies;
232 op->op.processor(&op->op);
233 fscache_hist(fscache_ops_histogram, start);
234 fscache_put_operation(&op->op);
235}
236
237/*
238 * release a retrieval op reference
239 */
240static void fscache_release_retrieval_op(struct fscache_operation *_op)
241{
242 struct fscache_retrieval *op =
243 container_of(_op, struct fscache_retrieval, op);
244
245 _enter("{OP%x}", op->op.debug_id);
246
247 fscache_hist(fscache_retrieval_histogram, op->start_time);
248 if (op->context)
249 fscache_put_context(op->op.object->cookie, op->context);
250
251 _leave("");
252}
253
254/*
255 * allocate a retrieval op
256 */
257static struct fscache_retrieval *fscache_alloc_retrieval(
258 struct address_space *mapping,
259 fscache_rw_complete_t end_io_func,
260 void *context)
261{
262 struct fscache_retrieval *op;
263
264 /* allocate a retrieval operation and attempt to submit it */
265 op = kzalloc(sizeof(*op), GFP_NOIO);
266 if (!op) {
267 fscache_stat(&fscache_n_retrievals_nomem);
268 return NULL;
269 }
270
271 fscache_operation_init(&op->op, fscache_release_retrieval_op);
272 op->op.flags = FSCACHE_OP_MYTHREAD | (1 << FSCACHE_OP_WAITING);
273 op->mapping = mapping;
274 op->end_io_func = end_io_func;
275 op->context = context;
276 op->start_time = jiffies;
277 INIT_WORK(&op->op.fast_work, fscache_retrieval_work);
278 INIT_LIST_HEAD(&op->to_do);
440f0aff 279 fscache_set_op_name(&op->op, "Retr");
b5108822
DH
280 return op;
281}
282
283/*
284 * wait for a deferred lookup to complete
285 */
286static int fscache_wait_for_deferred_lookup(struct fscache_cookie *cookie)
287{
288 unsigned long jif;
289
290 _enter("");
291
292 if (!test_bit(FSCACHE_COOKIE_LOOKING_UP, &cookie->flags)) {
293 _leave(" = 0 [imm]");
294 return 0;
295 }
296
297 fscache_stat(&fscache_n_retrievals_wait);
298
299 jif = jiffies;
300 if (wait_on_bit(&cookie->flags, FSCACHE_COOKIE_LOOKING_UP,
301 fscache_wait_bit_interruptible,
302 TASK_INTERRUPTIBLE) != 0) {
303 fscache_stat(&fscache_n_retrievals_intr);
304 _leave(" = -ERESTARTSYS");
305 return -ERESTARTSYS;
306 }
307
308 ASSERT(!test_bit(FSCACHE_COOKIE_LOOKING_UP, &cookie->flags));
309
310 smp_rmb();
311 fscache_hist(fscache_retrieval_delay_histogram, jif);
312 _leave(" = 0 [dly]");
313 return 0;
314}
315
60d543ca
DH
316/*
317 * wait for an object to become active (or dead)
318 */
319static int fscache_wait_for_retrieval_activation(struct fscache_object *object,
320 struct fscache_retrieval *op,
321 atomic_t *stat_op_waits,
322 atomic_t *stat_object_dead)
323{
324 int ret;
325
326 if (!test_bit(FSCACHE_OP_WAITING, &op->op.flags))
327 goto check_if_dead;
328
329 _debug(">>> WT");
330 fscache_stat(stat_op_waits);
331 if (wait_on_bit(&op->op.flags, FSCACHE_OP_WAITING,
332 fscache_wait_bit_interruptible,
333 TASK_INTERRUPTIBLE) < 0) {
334 ret = fscache_cancel_op(&op->op);
335 if (ret == 0)
336 return -ERESTARTSYS;
337
338 /* it's been removed from the pending queue by another party,
339 * so we should get to run shortly */
340 wait_on_bit(&op->op.flags, FSCACHE_OP_WAITING,
341 fscache_wait_bit, TASK_UNINTERRUPTIBLE);
342 }
343 _debug("<<< GO");
344
345check_if_dead:
346 if (unlikely(fscache_object_is_dead(object))) {
347 fscache_stat(stat_object_dead);
348 return -ENOBUFS;
349 }
350 return 0;
351}
352
b5108822
DH
353/*
354 * read a page from the cache or allocate a block in which to store it
355 * - we return:
356 * -ENOMEM - out of memory, nothing done
357 * -ERESTARTSYS - interrupted
358 * -ENOBUFS - no backing object available in which to cache the block
359 * -ENODATA - no data available in the backing object for this block
360 * 0 - dispatched a read - it'll call end_io_func() when finished
361 */
362int __fscache_read_or_alloc_page(struct fscache_cookie *cookie,
363 struct page *page,
364 fscache_rw_complete_t end_io_func,
365 void *context,
366 gfp_t gfp)
367{
368 struct fscache_retrieval *op;
369 struct fscache_object *object;
370 int ret;
371
372 _enter("%p,%p,,,", cookie, page);
373
374 fscache_stat(&fscache_n_retrievals);
375
376 if (hlist_empty(&cookie->backing_objects))
377 goto nobufs;
378
379 ASSERTCMP(cookie->def->type, !=, FSCACHE_COOKIE_TYPE_INDEX);
380 ASSERTCMP(page, !=, NULL);
381
382 if (fscache_wait_for_deferred_lookup(cookie) < 0)
383 return -ERESTARTSYS;
384
385 op = fscache_alloc_retrieval(page->mapping, end_io_func, context);
386 if (!op) {
387 _leave(" = -ENOMEM");
388 return -ENOMEM;
389 }
440f0aff 390 fscache_set_op_name(&op->op, "RetrRA1");
b5108822
DH
391
392 spin_lock(&cookie->lock);
393
394 if (hlist_empty(&cookie->backing_objects))
395 goto nobufs_unlock;
396 object = hlist_entry(cookie->backing_objects.first,
397 struct fscache_object, cookie_link);
398
399 ASSERTCMP(object->state, >, FSCACHE_OBJECT_LOOKING_UP);
400
4fbf4291
DH
401 atomic_inc(&object->n_reads);
402 set_bit(FSCACHE_OP_DEC_READ_CNT, &op->op.flags);
403
b5108822
DH
404 if (fscache_submit_op(object, &op->op) < 0)
405 goto nobufs_unlock;
406 spin_unlock(&cookie->lock);
407
408 fscache_stat(&fscache_n_retrieval_ops);
409
410 /* pin the netfs read context in case we need to do the actual netfs
411 * read because we've encountered a cache read failure */
412 fscache_get_context(object->cookie, op->context);
413
414 /* we wait for the operation to become active, and then process it
415 * *here*, in this thread, and not in the thread pool */
60d543ca
DH
416 ret = fscache_wait_for_retrieval_activation(
417 object, op,
418 __fscache_stat(&fscache_n_retrieval_op_waits),
419 __fscache_stat(&fscache_n_retrievals_object_dead));
420 if (ret < 0)
421 goto error;
b5108822
DH
422
423 /* ask the cache to honour the operation */
424 if (test_bit(FSCACHE_COOKIE_NO_DATA_YET, &object->cookie->flags)) {
52bd75fd 425 fscache_stat(&fscache_n_cop_allocate_page);
b5108822 426 ret = object->cache->ops->allocate_page(op, page, gfp);
52bd75fd 427 fscache_stat_d(&fscache_n_cop_allocate_page);
b5108822
DH
428 if (ret == 0)
429 ret = -ENODATA;
430 } else {
52bd75fd 431 fscache_stat(&fscache_n_cop_read_or_alloc_page);
b5108822 432 ret = object->cache->ops->read_or_alloc_page(op, page, gfp);
52bd75fd 433 fscache_stat_d(&fscache_n_cop_read_or_alloc_page);
b5108822
DH
434 }
435
5753c441 436error:
b5108822
DH
437 if (ret == -ENOMEM)
438 fscache_stat(&fscache_n_retrievals_nomem);
439 else if (ret == -ERESTARTSYS)
440 fscache_stat(&fscache_n_retrievals_intr);
441 else if (ret == -ENODATA)
442 fscache_stat(&fscache_n_retrievals_nodata);
443 else if (ret < 0)
444 fscache_stat(&fscache_n_retrievals_nobufs);
445 else
446 fscache_stat(&fscache_n_retrievals_ok);
447
448 fscache_put_retrieval(op);
449 _leave(" = %d", ret);
450 return ret;
451
452nobufs_unlock:
453 spin_unlock(&cookie->lock);
454 kfree(op);
455nobufs:
456 fscache_stat(&fscache_n_retrievals_nobufs);
457 _leave(" = -ENOBUFS");
458 return -ENOBUFS;
459}
460EXPORT_SYMBOL(__fscache_read_or_alloc_page);
461
462/*
463 * read a list of page from the cache or allocate a block in which to store
464 * them
465 * - we return:
466 * -ENOMEM - out of memory, some pages may be being read
467 * -ERESTARTSYS - interrupted, some pages may be being read
468 * -ENOBUFS - no backing object or space available in which to cache any
469 * pages not being read
470 * -ENODATA - no data available in the backing object for some or all of
471 * the pages
472 * 0 - dispatched a read on all pages
473 *
474 * end_io_func() will be called for each page read from the cache as it is
475 * finishes being read
476 *
477 * any pages for which a read is dispatched will be removed from pages and
478 * nr_pages
479 */
480int __fscache_read_or_alloc_pages(struct fscache_cookie *cookie,
481 struct address_space *mapping,
482 struct list_head *pages,
483 unsigned *nr_pages,
484 fscache_rw_complete_t end_io_func,
485 void *context,
486 gfp_t gfp)
487{
b5108822
DH
488 struct fscache_retrieval *op;
489 struct fscache_object *object;
490 int ret;
491
492 _enter("%p,,%d,,,", cookie, *nr_pages);
493
494 fscache_stat(&fscache_n_retrievals);
495
496 if (hlist_empty(&cookie->backing_objects))
497 goto nobufs;
498
499 ASSERTCMP(cookie->def->type, !=, FSCACHE_COOKIE_TYPE_INDEX);
500 ASSERTCMP(*nr_pages, >, 0);
501 ASSERT(!list_empty(pages));
502
503 if (fscache_wait_for_deferred_lookup(cookie) < 0)
504 return -ERESTARTSYS;
505
506 op = fscache_alloc_retrieval(mapping, end_io_func, context);
507 if (!op)
508 return -ENOMEM;
440f0aff 509 fscache_set_op_name(&op->op, "RetrRAN");
b5108822
DH
510
511 spin_lock(&cookie->lock);
512
513 if (hlist_empty(&cookie->backing_objects))
514 goto nobufs_unlock;
515 object = hlist_entry(cookie->backing_objects.first,
516 struct fscache_object, cookie_link);
517
4fbf4291
DH
518 atomic_inc(&object->n_reads);
519 set_bit(FSCACHE_OP_DEC_READ_CNT, &op->op.flags);
520
b5108822
DH
521 if (fscache_submit_op(object, &op->op) < 0)
522 goto nobufs_unlock;
523 spin_unlock(&cookie->lock);
524
525 fscache_stat(&fscache_n_retrieval_ops);
526
527 /* pin the netfs read context in case we need to do the actual netfs
528 * read because we've encountered a cache read failure */
529 fscache_get_context(object->cookie, op->context);
530
531 /* we wait for the operation to become active, and then process it
532 * *here*, in this thread, and not in the thread pool */
60d543ca
DH
533 ret = fscache_wait_for_retrieval_activation(
534 object, op,
535 __fscache_stat(&fscache_n_retrieval_op_waits),
536 __fscache_stat(&fscache_n_retrievals_object_dead));
537 if (ret < 0)
538 goto error;
b5108822
DH
539
540 /* ask the cache to honour the operation */
52bd75fd
DH
541 if (test_bit(FSCACHE_COOKIE_NO_DATA_YET, &object->cookie->flags)) {
542 fscache_stat(&fscache_n_cop_allocate_pages);
543 ret = object->cache->ops->allocate_pages(
544 op, pages, nr_pages, gfp);
545 fscache_stat_d(&fscache_n_cop_allocate_pages);
546 } else {
547 fscache_stat(&fscache_n_cop_read_or_alloc_pages);
548 ret = object->cache->ops->read_or_alloc_pages(
549 op, pages, nr_pages, gfp);
550 fscache_stat_d(&fscache_n_cop_read_or_alloc_pages);
551 }
b5108822 552
5753c441 553error:
b5108822
DH
554 if (ret == -ENOMEM)
555 fscache_stat(&fscache_n_retrievals_nomem);
556 else if (ret == -ERESTARTSYS)
557 fscache_stat(&fscache_n_retrievals_intr);
558 else if (ret == -ENODATA)
559 fscache_stat(&fscache_n_retrievals_nodata);
560 else if (ret < 0)
561 fscache_stat(&fscache_n_retrievals_nobufs);
562 else
563 fscache_stat(&fscache_n_retrievals_ok);
564
565 fscache_put_retrieval(op);
566 _leave(" = %d", ret);
567 return ret;
568
569nobufs_unlock:
570 spin_unlock(&cookie->lock);
571 kfree(op);
572nobufs:
573 fscache_stat(&fscache_n_retrievals_nobufs);
574 _leave(" = -ENOBUFS");
575 return -ENOBUFS;
576}
577EXPORT_SYMBOL(__fscache_read_or_alloc_pages);
578
579/*
580 * allocate a block in the cache on which to store a page
581 * - we return:
582 * -ENOMEM - out of memory, nothing done
583 * -ERESTARTSYS - interrupted
584 * -ENOBUFS - no backing object available in which to cache the block
585 * 0 - block allocated
586 */
587int __fscache_alloc_page(struct fscache_cookie *cookie,
588 struct page *page,
589 gfp_t gfp)
590{
591 struct fscache_retrieval *op;
592 struct fscache_object *object;
593 int ret;
594
595 _enter("%p,%p,,,", cookie, page);
596
597 fscache_stat(&fscache_n_allocs);
598
599 if (hlist_empty(&cookie->backing_objects))
600 goto nobufs;
601
602 ASSERTCMP(cookie->def->type, !=, FSCACHE_COOKIE_TYPE_INDEX);
603 ASSERTCMP(page, !=, NULL);
604
605 if (fscache_wait_for_deferred_lookup(cookie) < 0)
606 return -ERESTARTSYS;
607
608 op = fscache_alloc_retrieval(page->mapping, NULL, NULL);
609 if (!op)
610 return -ENOMEM;
440f0aff 611 fscache_set_op_name(&op->op, "RetrAL1");
b5108822
DH
612
613 spin_lock(&cookie->lock);
614
615 if (hlist_empty(&cookie->backing_objects))
616 goto nobufs_unlock;
617 object = hlist_entry(cookie->backing_objects.first,
618 struct fscache_object, cookie_link);
619
620 if (fscache_submit_op(object, &op->op) < 0)
621 goto nobufs_unlock;
622 spin_unlock(&cookie->lock);
623
624 fscache_stat(&fscache_n_alloc_ops);
625
60d543ca
DH
626 ret = fscache_wait_for_retrieval_activation(
627 object, op,
628 __fscache_stat(&fscache_n_alloc_op_waits),
629 __fscache_stat(&fscache_n_allocs_object_dead));
630 if (ret < 0)
631 goto error;
b5108822
DH
632
633 /* ask the cache to honour the operation */
52bd75fd 634 fscache_stat(&fscache_n_cop_allocate_page);
b5108822 635 ret = object->cache->ops->allocate_page(op, page, gfp);
52bd75fd 636 fscache_stat_d(&fscache_n_cop_allocate_page);
b5108822 637
5753c441
DH
638error:
639 if (ret == -ERESTARTSYS)
640 fscache_stat(&fscache_n_allocs_intr);
641 else if (ret < 0)
b5108822
DH
642 fscache_stat(&fscache_n_allocs_nobufs);
643 else
644 fscache_stat(&fscache_n_allocs_ok);
645
646 fscache_put_retrieval(op);
647 _leave(" = %d", ret);
648 return ret;
649
650nobufs_unlock:
651 spin_unlock(&cookie->lock);
652 kfree(op);
653nobufs:
654 fscache_stat(&fscache_n_allocs_nobufs);
655 _leave(" = -ENOBUFS");
656 return -ENOBUFS;
657}
658EXPORT_SYMBOL(__fscache_alloc_page);
659
660/*
661 * release a write op reference
662 */
663static void fscache_release_write_op(struct fscache_operation *_op)
664{
665 _enter("{OP%x}", _op->debug_id);
666}
667
668/*
669 * perform the background storage of a page into the cache
670 */
671static void fscache_write_op(struct fscache_operation *_op)
672{
673 struct fscache_storage *op =
674 container_of(_op, struct fscache_storage, op);
675 struct fscache_object *object = op->op.object;
1bccf513 676 struct fscache_cookie *cookie;
b5108822
DH
677 struct page *page;
678 unsigned n;
679 void *results[1];
680 int ret;
681
682 _enter("{OP%x,%d}", op->op.debug_id, atomic_read(&op->op.usage));
683
440f0aff
DH
684 fscache_set_op_state(&op->op, "GetPage");
685
b5108822 686 spin_lock(&object->lock);
1bccf513 687 cookie = object->cookie;
b5108822 688
1bccf513 689 if (!fscache_object_is_active(object) || !cookie) {
b5108822 690 spin_unlock(&object->lock);
b5108822
DH
691 _leave("");
692 return;
693 }
694
1bccf513
DH
695 spin_lock(&cookie->stores_lock);
696
b5108822
DH
697 fscache_stat(&fscache_n_store_calls);
698
699 /* find a page to store */
700 page = NULL;
701 n = radix_tree_gang_lookup_tag(&cookie->stores, results, 0, 1,
702 FSCACHE_COOKIE_PENDING_TAG);
703 if (n != 1)
704 goto superseded;
705 page = results[0];
706 _debug("gang %d [%lx]", n, page->index);
1bccf513
DH
707 if (page->index > op->store_limit) {
708 fscache_stat(&fscache_n_store_pages_over_limit);
b5108822 709 goto superseded;
1bccf513 710 }
b5108822 711
201a1542
DH
712 if (page) {
713 radix_tree_tag_set(&cookie->stores, page->index,
714 FSCACHE_COOKIE_STORING_TAG);
715 radix_tree_tag_clear(&cookie->stores, page->index,
716 FSCACHE_COOKIE_PENDING_TAG);
717 }
b5108822 718
1bccf513 719 spin_unlock(&cookie->stores_lock);
b5108822 720 spin_unlock(&object->lock);
b5108822
DH
721
722 if (page) {
440f0aff 723 fscache_set_op_state(&op->op, "Store");
1bccf513 724 fscache_stat(&fscache_n_store_pages);
52bd75fd 725 fscache_stat(&fscache_n_cop_write_page);
b5108822 726 ret = object->cache->ops->write_page(op, page);
52bd75fd 727 fscache_stat_d(&fscache_n_cop_write_page);
440f0aff 728 fscache_set_op_state(&op->op, "EndWrite");
1bccf513 729 fscache_end_page_write(object, page);
440f0aff
DH
730 if (ret < 0) {
731 fscache_set_op_state(&op->op, "Abort");
b5108822 732 fscache_abort_object(object);
440f0aff 733 } else {
b5108822 734 fscache_enqueue_operation(&op->op);
440f0aff 735 }
b5108822
DH
736 }
737
738 _leave("");
739 return;
740
741superseded:
742 /* this writer is going away and there aren't any more things to
743 * write */
744 _debug("cease");
1bccf513 745 spin_unlock(&cookie->stores_lock);
b5108822
DH
746 clear_bit(FSCACHE_OBJECT_PENDING_WRITE, &object->flags);
747 spin_unlock(&object->lock);
b5108822
DH
748 _leave("");
749}
750
751/*
752 * request a page be stored in the cache
753 * - returns:
754 * -ENOMEM - out of memory, nothing done
755 * -ENOBUFS - no backing object available in which to cache the page
756 * 0 - dispatched a write - it'll call end_io_func() when finished
757 *
758 * if the cookie still has a backing object at this point, that object can be
759 * in one of a few states with respect to storage processing:
760 *
761 * (1) negative lookup, object not yet created (FSCACHE_COOKIE_CREATING is
762 * set)
763 *
764 * (a) no writes yet (set FSCACHE_COOKIE_PENDING_FILL and queue deferred
765 * fill op)
766 *
767 * (b) writes deferred till post-creation (mark page for writing and
768 * return immediately)
769 *
770 * (2) negative lookup, object created, initial fill being made from netfs
771 * (FSCACHE_COOKIE_INITIAL_FILL is set)
772 *
773 * (a) fill point not yet reached this page (mark page for writing and
774 * return)
775 *
776 * (b) fill point passed this page (queue op to store this page)
777 *
778 * (3) object extant (queue op to store this page)
779 *
780 * any other state is invalid
781 */
782int __fscache_write_page(struct fscache_cookie *cookie,
783 struct page *page,
784 gfp_t gfp)
785{
786 struct fscache_storage *op;
787 struct fscache_object *object;
788 int ret;
789
790 _enter("%p,%x,", cookie, (u32) page->flags);
791
792 ASSERTCMP(cookie->def->type, !=, FSCACHE_COOKIE_TYPE_INDEX);
793 ASSERT(PageFsCache(page));
794
795 fscache_stat(&fscache_n_stores);
796
797 op = kzalloc(sizeof(*op), GFP_NOIO);
798 if (!op)
799 goto nomem;
800
801 fscache_operation_init(&op->op, fscache_release_write_op);
802 fscache_operation_init_slow(&op->op, fscache_write_op);
803 op->op.flags = FSCACHE_OP_SLOW | (1 << FSCACHE_OP_WAITING);
440f0aff 804 fscache_set_op_name(&op->op, "Write1");
b5108822
DH
805
806 ret = radix_tree_preload(gfp & ~__GFP_HIGHMEM);
807 if (ret < 0)
808 goto nomem_free;
809
810 ret = -ENOBUFS;
811 spin_lock(&cookie->lock);
812
813 if (hlist_empty(&cookie->backing_objects))
814 goto nobufs;
815 object = hlist_entry(cookie->backing_objects.first,
816 struct fscache_object, cookie_link);
817 if (test_bit(FSCACHE_IOERROR, &object->cache->flags))
818 goto nobufs;
819
820 /* add the page to the pending-storage radix tree on the backing
821 * object */
822 spin_lock(&object->lock);
1bccf513 823 spin_lock(&cookie->stores_lock);
b5108822
DH
824
825 _debug("store limit %llx", (unsigned long long) object->store_limit);
826
827 ret = radix_tree_insert(&cookie->stores, page->index, page);
828 if (ret < 0) {
829 if (ret == -EEXIST)
830 goto already_queued;
831 _debug("insert failed %d", ret);
832 goto nobufs_unlock_obj;
833 }
834
835 radix_tree_tag_set(&cookie->stores, page->index,
836 FSCACHE_COOKIE_PENDING_TAG);
837 page_cache_get(page);
838
839 /* we only want one writer at a time, but we do need to queue new
840 * writers after exclusive ops */
841 if (test_and_set_bit(FSCACHE_OBJECT_PENDING_WRITE, &object->flags))
842 goto already_pending;
843
1bccf513 844 spin_unlock(&cookie->stores_lock);
b5108822
DH
845 spin_unlock(&object->lock);
846
847 op->op.debug_id = atomic_inc_return(&fscache_op_debug_id);
848 op->store_limit = object->store_limit;
849
850 if (fscache_submit_op(object, &op->op) < 0)
851 goto submit_failed;
852
853 spin_unlock(&cookie->lock);
854 radix_tree_preload_end();
855 fscache_stat(&fscache_n_store_ops);
856 fscache_stat(&fscache_n_stores_ok);
857
858 /* the slow work queue now carries its own ref on the object */
859 fscache_put_operation(&op->op);
860 _leave(" = 0");
861 return 0;
862
863already_queued:
864 fscache_stat(&fscache_n_stores_again);
865already_pending:
1bccf513 866 spin_unlock(&cookie->stores_lock);
b5108822
DH
867 spin_unlock(&object->lock);
868 spin_unlock(&cookie->lock);
869 radix_tree_preload_end();
870 kfree(op);
871 fscache_stat(&fscache_n_stores_ok);
872 _leave(" = 0");
873 return 0;
874
875submit_failed:
1bccf513 876 spin_lock(&cookie->stores_lock);
b5108822 877 radix_tree_delete(&cookie->stores, page->index);
1bccf513 878 spin_unlock(&cookie->stores_lock);
b5108822
DH
879 page_cache_release(page);
880 ret = -ENOBUFS;
881 goto nobufs;
882
883nobufs_unlock_obj:
1147d0f9 884 spin_unlock(&cookie->stores_lock);
b5108822
DH
885 spin_unlock(&object->lock);
886nobufs:
887 spin_unlock(&cookie->lock);
888 radix_tree_preload_end();
889 kfree(op);
890 fscache_stat(&fscache_n_stores_nobufs);
891 _leave(" = -ENOBUFS");
892 return -ENOBUFS;
893
894nomem_free:
895 kfree(op);
896nomem:
897 fscache_stat(&fscache_n_stores_oom);
898 _leave(" = -ENOMEM");
899 return -ENOMEM;
900}
901EXPORT_SYMBOL(__fscache_write_page);
902
903/*
904 * remove a page from the cache
905 */
906void __fscache_uncache_page(struct fscache_cookie *cookie, struct page *page)
907{
908 struct fscache_object *object;
909
910 _enter(",%p", page);
911
912 ASSERTCMP(cookie->def->type, !=, FSCACHE_COOKIE_TYPE_INDEX);
913 ASSERTCMP(page, !=, NULL);
914
915 fscache_stat(&fscache_n_uncaches);
916
917 /* cache withdrawal may beat us to it */
918 if (!PageFsCache(page))
919 goto done;
920
921 /* get the object */
922 spin_lock(&cookie->lock);
923
924 if (hlist_empty(&cookie->backing_objects)) {
925 ClearPageFsCache(page);
926 goto done_unlock;
927 }
928
929 object = hlist_entry(cookie->backing_objects.first,
930 struct fscache_object, cookie_link);
931
932 /* there might now be stuff on disk we could read */
933 clear_bit(FSCACHE_COOKIE_NO_DATA_YET, &cookie->flags);
934
935 /* only invoke the cache backend if we managed to mark the page
936 * uncached here; this deals with synchronisation vs withdrawal */
937 if (TestClearPageFsCache(page) &&
938 object->cache->ops->uncache_page) {
939 /* the cache backend releases the cookie lock */
52bd75fd 940 fscache_stat(&fscache_n_cop_uncache_page);
b5108822 941 object->cache->ops->uncache_page(object, page);
52bd75fd 942 fscache_stat_d(&fscache_n_cop_uncache_page);
b5108822
DH
943 goto done;
944 }
945
946done_unlock:
947 spin_unlock(&cookie->lock);
948done:
949 _leave("");
950}
951EXPORT_SYMBOL(__fscache_uncache_page);
952
953/**
954 * fscache_mark_pages_cached - Mark pages as being cached
955 * @op: The retrieval op pages are being marked for
956 * @pagevec: The pages to be marked
957 *
958 * Mark a bunch of netfs pages as being cached. After this is called,
959 * the netfs must call fscache_uncache_page() to remove the mark.
960 */
961void fscache_mark_pages_cached(struct fscache_retrieval *op,
962 struct pagevec *pagevec)
963{
964 struct fscache_cookie *cookie = op->op.object->cookie;
965 unsigned long loop;
966
967#ifdef CONFIG_FSCACHE_STATS
968 atomic_add(pagevec->nr, &fscache_n_marks);
969#endif
970
971 for (loop = 0; loop < pagevec->nr; loop++) {
972 struct page *page = pagevec->pages[loop];
973
974 _debug("- mark %p{%lx}", page, page->index);
975 if (TestSetPageFsCache(page)) {
976 static bool once_only;
977 if (!once_only) {
978 once_only = true;
979 printk(KERN_WARNING "FS-Cache:"
980 " Cookie type %s marked page %lx"
981 " multiple times\n",
982 cookie->def->name, page->index);
983 }
984 }
985 }
986
987 if (cookie->def->mark_pages_cached)
988 cookie->def->mark_pages_cached(cookie->netfs_data,
989 op->mapping, pagevec);
990 pagevec_reinit(pagevec);
991}
992EXPORT_SYMBOL(fscache_mark_pages_cached);