]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blame - fs/fscache/page.c
FS-Cache: Reduce cookie ref count if submit fails.
[mirror_ubuntu-zesty-kernel.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>
5a0e3ad6 17#include <linux/slab.h>
b5108822
DH
18#include "internal.h"
19
20/*
21 * check to see if a page is being written to the cache
22 */
23bool __fscache_check_page_write(struct fscache_cookie *cookie, struct page *page)
24{
25 void *val;
26
27 rcu_read_lock();
28 val = radix_tree_lookup(&cookie->stores, page->index);
29 rcu_read_unlock();
30
31 return val != NULL;
32}
33EXPORT_SYMBOL(__fscache_check_page_write);
34
35/*
36 * wait for a page to finish being written to the cache
37 */
38void __fscache_wait_on_page_write(struct fscache_cookie *cookie, struct page *page)
39{
40 wait_queue_head_t *wq = bit_waitqueue(&cookie->flags, 0);
41
42 wait_event(*wq, !__fscache_check_page_write(cookie, page));
43}
44EXPORT_SYMBOL(__fscache_wait_on_page_write);
45
9776de96
MT
46/*
47 * wait for a page to finish being written to the cache. Put a timeout here
48 * since we might be called recursively via parent fs.
49 */
50static
51bool release_page_wait_timeout(struct fscache_cookie *cookie, struct page *page)
52{
53 wait_queue_head_t *wq = bit_waitqueue(&cookie->flags, 0);
54
55 return wait_event_timeout(*wq, !__fscache_check_page_write(cookie, page),
56 HZ);
57}
58
201a1542
DH
59/*
60 * decide whether a page can be released, possibly by cancelling a store to it
61 * - we're allowed to sleep if __GFP_WAIT is flagged
62 */
63bool __fscache_maybe_release_page(struct fscache_cookie *cookie,
64 struct page *page,
65 gfp_t gfp)
66{
67 struct page *xpage;
68 void *val;
69
70 _enter("%p,%p,%x", cookie, page, gfp);
71
8c209ce7 72try_again:
201a1542
DH
73 rcu_read_lock();
74 val = radix_tree_lookup(&cookie->stores, page->index);
75 if (!val) {
76 rcu_read_unlock();
77 fscache_stat(&fscache_n_store_vmscan_not_storing);
78 __fscache_uncache_page(cookie, page);
79 return true;
80 }
81
82 /* see if the page is actually undergoing storage - if so we can't get
83 * rid of it till the cache has finished with it */
84 if (radix_tree_tag_get(&cookie->stores, page->index,
85 FSCACHE_COOKIE_STORING_TAG)) {
86 rcu_read_unlock();
87 goto page_busy;
88 }
89
90 /* the page is pending storage, so we attempt to cancel the store and
91 * discard the store request so that the page can be reclaimed */
92 spin_lock(&cookie->stores_lock);
93 rcu_read_unlock();
94
95 if (radix_tree_tag_get(&cookie->stores, page->index,
96 FSCACHE_COOKIE_STORING_TAG)) {
97 /* the page started to undergo storage whilst we were looking,
98 * so now we can only wait or return */
99 spin_unlock(&cookie->stores_lock);
100 goto page_busy;
101 }
102
103 xpage = radix_tree_delete(&cookie->stores, page->index);
104 spin_unlock(&cookie->stores_lock);
105
106 if (xpage) {
107 fscache_stat(&fscache_n_store_vmscan_cancelled);
108 fscache_stat(&fscache_n_store_radix_deletes);
109 ASSERTCMP(xpage, ==, page);
110 } else {
111 fscache_stat(&fscache_n_store_vmscan_gone);
112 }
113
114 wake_up_bit(&cookie->flags, 0);
115 if (xpage)
116 page_cache_release(xpage);
117 __fscache_uncache_page(cookie, page);
118 return true;
119
120page_busy:
8c209ce7
DH
121 /* We will wait here if we're allowed to, but that could deadlock the
122 * allocator as the work threads writing to the cache may all end up
123 * sleeping on memory allocation, so we may need to impose a timeout
124 * too. */
0c59a95d 125 if (!(gfp & __GFP_WAIT) || !(gfp & __GFP_FS)) {
8c209ce7
DH
126 fscache_stat(&fscache_n_store_vmscan_busy);
127 return false;
128 }
129
130 fscache_stat(&fscache_n_store_vmscan_wait);
9776de96
MT
131 if (!release_page_wait_timeout(cookie, page))
132 _debug("fscache writeout timeout page: %p{%lx}",
133 page, page->index);
134
8c209ce7
DH
135 gfp &= ~__GFP_WAIT;
136 goto try_again;
201a1542
DH
137}
138EXPORT_SYMBOL(__fscache_maybe_release_page);
139
b5108822
DH
140/*
141 * note that a page has finished being written to the cache
142 */
1bccf513
DH
143static void fscache_end_page_write(struct fscache_object *object,
144 struct page *page)
b5108822 145{
1bccf513
DH
146 struct fscache_cookie *cookie;
147 struct page *xpage = NULL;
b5108822 148
1bccf513
DH
149 spin_lock(&object->lock);
150 cookie = object->cookie;
151 if (cookie) {
152 /* delete the page from the tree if it is now no longer
153 * pending */
154 spin_lock(&cookie->stores_lock);
201a1542
DH
155 radix_tree_tag_clear(&cookie->stores, page->index,
156 FSCACHE_COOKIE_STORING_TAG);
285e728b
DH
157 if (!radix_tree_tag_get(&cookie->stores, page->index,
158 FSCACHE_COOKIE_PENDING_TAG)) {
159 fscache_stat(&fscache_n_store_radix_deletes);
160 xpage = radix_tree_delete(&cookie->stores, page->index);
161 }
1bccf513
DH
162 spin_unlock(&cookie->stores_lock);
163 wake_up_bit(&cookie->flags, 0);
164 }
165 spin_unlock(&object->lock);
166 if (xpage)
167 page_cache_release(xpage);
b5108822
DH
168}
169
170/*
171 * actually apply the changed attributes to a cache object
172 */
173static void fscache_attr_changed_op(struct fscache_operation *op)
174{
175 struct fscache_object *object = op->object;
440f0aff 176 int ret;
b5108822
DH
177
178 _enter("{OBJ%x OP%x}", object->debug_id, op->debug_id);
179
180 fscache_stat(&fscache_n_attr_changed_calls);
181
8fb883f3 182 if (fscache_object_is_active(object)) {
52bd75fd 183 fscache_stat(&fscache_n_cop_attr_changed);
440f0aff 184 ret = object->cache->ops->attr_changed(object);
52bd75fd 185 fscache_stat_d(&fscache_n_cop_attr_changed);
440f0aff
DH
186 if (ret < 0)
187 fscache_abort_object(object);
188 }
b5108822 189
1f372dff 190 fscache_op_complete(op, true);
b5108822
DH
191 _leave("");
192}
193
194/*
195 * notification that the attributes on an object have changed
196 */
197int __fscache_attr_changed(struct fscache_cookie *cookie)
198{
199 struct fscache_operation *op;
200 struct fscache_object *object;
8fb883f3 201 bool wake_cookie;
b5108822
DH
202
203 _enter("%p", cookie);
204
205 ASSERTCMP(cookie->def->type, !=, FSCACHE_COOKIE_TYPE_INDEX);
206
207 fscache_stat(&fscache_n_attr_changed);
208
209 op = kzalloc(sizeof(*op), GFP_KERNEL);
210 if (!op) {
211 fscache_stat(&fscache_n_attr_changed_nomem);
212 _leave(" = -ENOMEM");
213 return -ENOMEM;
214 }
215
8af7c124 216 fscache_operation_init(op, fscache_attr_changed_op, NULL);
8fb883f3
DH
217 op->flags = FSCACHE_OP_ASYNC |
218 (1 << FSCACHE_OP_EXCLUSIVE) |
219 (1 << FSCACHE_OP_UNUSE_COOKIE);
b5108822
DH
220
221 spin_lock(&cookie->lock);
222
94d30ae9
DH
223 if (!fscache_cookie_enabled(cookie) ||
224 hlist_empty(&cookie->backing_objects))
b5108822
DH
225 goto nobufs;
226 object = hlist_entry(cookie->backing_objects.first,
227 struct fscache_object, cookie_link);
228
8fb883f3 229 __fscache_use_cookie(cookie);
b5108822
DH
230 if (fscache_submit_exclusive_op(object, op) < 0)
231 goto nobufs;
232 spin_unlock(&cookie->lock);
233 fscache_stat(&fscache_n_attr_changed_ok);
234 fscache_put_operation(op);
235 _leave(" = 0");
236 return 0;
237
238nobufs:
8fb883f3 239 wake_cookie = __fscache_unuse_cookie(cookie);
b5108822
DH
240 spin_unlock(&cookie->lock);
241 kfree(op);
8fb883f3
DH
242 if (wake_cookie)
243 __fscache_wake_unused_cookie(cookie);
b5108822
DH
244 fscache_stat(&fscache_n_attr_changed_nobufs);
245 _leave(" = %d", -ENOBUFS);
246 return -ENOBUFS;
247}
248EXPORT_SYMBOL(__fscache_attr_changed);
249
b5108822
DH
250/*
251 * release a retrieval op reference
252 */
253static void fscache_release_retrieval_op(struct fscache_operation *_op)
254{
255 struct fscache_retrieval *op =
256 container_of(_op, struct fscache_retrieval, op);
257
258 _enter("{OP%x}", op->op.debug_id);
259
1bb4b7f9 260 ASSERTCMP(atomic_read(&op->n_pages), ==, 0);
9f10523f 261
b5108822
DH
262 fscache_hist(fscache_retrieval_histogram, op->start_time);
263 if (op->context)
264 fscache_put_context(op->op.object->cookie, op->context);
265
266 _leave("");
267}
268
269/*
270 * allocate a retrieval op
271 */
272static struct fscache_retrieval *fscache_alloc_retrieval(
1362729b 273 struct fscache_cookie *cookie,
b5108822
DH
274 struct address_space *mapping,
275 fscache_rw_complete_t end_io_func,
276 void *context)
277{
278 struct fscache_retrieval *op;
279
280 /* allocate a retrieval operation and attempt to submit it */
281 op = kzalloc(sizeof(*op), GFP_NOIO);
282 if (!op) {
283 fscache_stat(&fscache_n_retrievals_nomem);
284 return NULL;
285 }
286
8af7c124 287 fscache_operation_init(&op->op, NULL, fscache_release_retrieval_op);
1362729b
DH
288 op->op.flags = FSCACHE_OP_MYTHREAD |
289 (1UL << FSCACHE_OP_WAITING) |
290 (1UL << FSCACHE_OP_UNUSE_COOKIE);
b5108822
DH
291 op->mapping = mapping;
292 op->end_io_func = end_io_func;
293 op->context = context;
294 op->start_time = jiffies;
b5108822
DH
295 INIT_LIST_HEAD(&op->to_do);
296 return op;
297}
298
299/*
300 * wait for a deferred lookup to complete
301 */
da9803bc 302int fscache_wait_for_deferred_lookup(struct fscache_cookie *cookie)
b5108822
DH
303{
304 unsigned long jif;
305
306 _enter("");
307
308 if (!test_bit(FSCACHE_COOKIE_LOOKING_UP, &cookie->flags)) {
309 _leave(" = 0 [imm]");
310 return 0;
311 }
312
313 fscache_stat(&fscache_n_retrievals_wait);
314
315 jif = jiffies;
316 if (wait_on_bit(&cookie->flags, FSCACHE_COOKIE_LOOKING_UP,
b5108822
DH
317 TASK_INTERRUPTIBLE) != 0) {
318 fscache_stat(&fscache_n_retrievals_intr);
319 _leave(" = -ERESTARTSYS");
320 return -ERESTARTSYS;
321 }
322
323 ASSERT(!test_bit(FSCACHE_COOKIE_LOOKING_UP, &cookie->flags));
324
325 smp_rmb();
326 fscache_hist(fscache_retrieval_delay_histogram, jif);
327 _leave(" = 0 [dly]");
328 return 0;
329}
330
91c7fbbf
DH
331/*
332 * Handle cancellation of a pending retrieval op
333 */
334static void fscache_do_cancel_retrieval(struct fscache_operation *_op)
335{
336 struct fscache_retrieval *op =
337 container_of(_op, struct fscache_retrieval, op);
338
1bb4b7f9 339 atomic_set(&op->n_pages, 0);
91c7fbbf
DH
340}
341
60d543ca
DH
342/*
343 * wait for an object to become active (or dead)
344 */
da9803bc
DH
345int fscache_wait_for_operation_activation(struct fscache_object *object,
346 struct fscache_operation *op,
347 atomic_t *stat_op_waits,
348 atomic_t *stat_object_dead,
349 void (*do_cancel)(struct fscache_operation *))
60d543ca
DH
350{
351 int ret;
352
da9803bc 353 if (!test_bit(FSCACHE_OP_WAITING, &op->flags))
60d543ca
DH
354 goto check_if_dead;
355
356 _debug(">>> WT");
da9803bc
DH
357 if (stat_op_waits)
358 fscache_stat(stat_op_waits);
359 if (wait_on_bit(&op->flags, FSCACHE_OP_WAITING,
9c04caa8 360 TASK_INTERRUPTIBLE) != 0) {
da9803bc 361 ret = fscache_cancel_op(op, do_cancel);
60d543ca
DH
362 if (ret == 0)
363 return -ERESTARTSYS;
364
365 /* it's been removed from the pending queue by another party,
366 * so we should get to run shortly */
da9803bc 367 wait_on_bit(&op->flags, FSCACHE_OP_WAITING,
74316201 368 TASK_UNINTERRUPTIBLE);
60d543ca
DH
369 }
370 _debug("<<< GO");
371
372check_if_dead:
da9803bc
DH
373 if (op->state == FSCACHE_OP_ST_CANCELLED) {
374 if (stat_object_dead)
375 fscache_stat(stat_object_dead);
9f10523f
DH
376 _leave(" = -ENOBUFS [cancelled]");
377 return -ENOBUFS;
378 }
60d543ca 379 if (unlikely(fscache_object_is_dead(object))) {
da9803bc
DH
380 pr_err("%s() = -ENOBUFS [obj dead %d]\n", __func__, op->state);
381 fscache_cancel_op(op, do_cancel);
382 if (stat_object_dead)
383 fscache_stat(stat_object_dead);
60d543ca
DH
384 return -ENOBUFS;
385 }
386 return 0;
387}
388
b5108822
DH
389/*
390 * read a page from the cache or allocate a block in which to store it
391 * - we return:
392 * -ENOMEM - out of memory, nothing done
393 * -ERESTARTSYS - interrupted
394 * -ENOBUFS - no backing object available in which to cache the block
395 * -ENODATA - no data available in the backing object for this block
396 * 0 - dispatched a read - it'll call end_io_func() when finished
397 */
398int __fscache_read_or_alloc_page(struct fscache_cookie *cookie,
399 struct page *page,
400 fscache_rw_complete_t end_io_func,
401 void *context,
402 gfp_t gfp)
403{
404 struct fscache_retrieval *op;
405 struct fscache_object *object;
8fb883f3 406 bool wake_cookie = false;
b5108822
DH
407 int ret;
408
409 _enter("%p,%p,,,", cookie, page);
410
411 fscache_stat(&fscache_n_retrievals);
412
413 if (hlist_empty(&cookie->backing_objects))
414 goto nobufs;
415
ef778e7a
DH
416 if (test_bit(FSCACHE_COOKIE_INVALIDATING, &cookie->flags)) {
417 _leave(" = -ENOBUFS [invalidating]");
418 return -ENOBUFS;
419 }
420
b5108822
DH
421 ASSERTCMP(cookie->def->type, !=, FSCACHE_COOKIE_TYPE_INDEX);
422 ASSERTCMP(page, !=, NULL);
423
424 if (fscache_wait_for_deferred_lookup(cookie) < 0)
425 return -ERESTARTSYS;
426
1362729b 427 op = fscache_alloc_retrieval(cookie, page->mapping,
94d30ae9 428 end_io_func, context);
b5108822
DH
429 if (!op) {
430 _leave(" = -ENOMEM");
431 return -ENOMEM;
432 }
1bb4b7f9 433 atomic_set(&op->n_pages, 1);
b5108822
DH
434
435 spin_lock(&cookie->lock);
436
94d30ae9
DH
437 if (!fscache_cookie_enabled(cookie) ||
438 hlist_empty(&cookie->backing_objects))
b5108822
DH
439 goto nobufs_unlock;
440 object = hlist_entry(cookie->backing_objects.first,
441 struct fscache_object, cookie_link);
442
caaef690 443 ASSERT(test_bit(FSCACHE_OBJECT_IS_LOOKED_UP, &object->flags));
b5108822 444
8fb883f3 445 __fscache_use_cookie(cookie);
4fbf4291 446 atomic_inc(&object->n_reads);
9f10523f 447 __set_bit(FSCACHE_OP_DEC_READ_CNT, &op->op.flags);
4fbf4291 448
b5108822 449 if (fscache_submit_op(object, &op->op) < 0)
9f10523f 450 goto nobufs_unlock_dec;
b5108822
DH
451 spin_unlock(&cookie->lock);
452
453 fscache_stat(&fscache_n_retrieval_ops);
454
455 /* pin the netfs read context in case we need to do the actual netfs
456 * read because we've encountered a cache read failure */
457 fscache_get_context(object->cookie, op->context);
458
459 /* we wait for the operation to become active, and then process it
460 * *here*, in this thread, and not in the thread pool */
da9803bc
DH
461 ret = fscache_wait_for_operation_activation(
462 object, &op->op,
60d543ca 463 __fscache_stat(&fscache_n_retrieval_op_waits),
da9803bc
DH
464 __fscache_stat(&fscache_n_retrievals_object_dead),
465 fscache_do_cancel_retrieval);
60d543ca
DH
466 if (ret < 0)
467 goto error;
b5108822
DH
468
469 /* ask the cache to honour the operation */
470 if (test_bit(FSCACHE_COOKIE_NO_DATA_YET, &object->cookie->flags)) {
52bd75fd 471 fscache_stat(&fscache_n_cop_allocate_page);
b5108822 472 ret = object->cache->ops->allocate_page(op, page, gfp);
52bd75fd 473 fscache_stat_d(&fscache_n_cop_allocate_page);
b5108822
DH
474 if (ret == 0)
475 ret = -ENODATA;
476 } else {
52bd75fd 477 fscache_stat(&fscache_n_cop_read_or_alloc_page);
b5108822 478 ret = object->cache->ops->read_or_alloc_page(op, page, gfp);
52bd75fd 479 fscache_stat_d(&fscache_n_cop_read_or_alloc_page);
b5108822
DH
480 }
481
5753c441 482error:
b5108822
DH
483 if (ret == -ENOMEM)
484 fscache_stat(&fscache_n_retrievals_nomem);
485 else if (ret == -ERESTARTSYS)
486 fscache_stat(&fscache_n_retrievals_intr);
487 else if (ret == -ENODATA)
488 fscache_stat(&fscache_n_retrievals_nodata);
489 else if (ret < 0)
490 fscache_stat(&fscache_n_retrievals_nobufs);
491 else
492 fscache_stat(&fscache_n_retrievals_ok);
493
494 fscache_put_retrieval(op);
495 _leave(" = %d", ret);
496 return ret;
497
9f10523f
DH
498nobufs_unlock_dec:
499 atomic_dec(&object->n_reads);
8fb883f3 500 wake_cookie = __fscache_unuse_cookie(cookie);
b5108822
DH
501nobufs_unlock:
502 spin_unlock(&cookie->lock);
8fb883f3
DH
503 if (wake_cookie)
504 __fscache_wake_unused_cookie(cookie);
b5108822
DH
505 kfree(op);
506nobufs:
507 fscache_stat(&fscache_n_retrievals_nobufs);
508 _leave(" = -ENOBUFS");
509 return -ENOBUFS;
510}
511EXPORT_SYMBOL(__fscache_read_or_alloc_page);
512
513/*
514 * read a list of page from the cache or allocate a block in which to store
515 * them
516 * - we return:
517 * -ENOMEM - out of memory, some pages may be being read
518 * -ERESTARTSYS - interrupted, some pages may be being read
519 * -ENOBUFS - no backing object or space available in which to cache any
520 * pages not being read
521 * -ENODATA - no data available in the backing object for some or all of
522 * the pages
523 * 0 - dispatched a read on all pages
524 *
525 * end_io_func() will be called for each page read from the cache as it is
526 * finishes being read
527 *
528 * any pages for which a read is dispatched will be removed from pages and
529 * nr_pages
530 */
531int __fscache_read_or_alloc_pages(struct fscache_cookie *cookie,
532 struct address_space *mapping,
533 struct list_head *pages,
534 unsigned *nr_pages,
535 fscache_rw_complete_t end_io_func,
536 void *context,
537 gfp_t gfp)
538{
b5108822
DH
539 struct fscache_retrieval *op;
540 struct fscache_object *object;
8fb883f3 541 bool wake_cookie = false;
b5108822
DH
542 int ret;
543
544 _enter("%p,,%d,,,", cookie, *nr_pages);
545
546 fscache_stat(&fscache_n_retrievals);
547
548 if (hlist_empty(&cookie->backing_objects))
549 goto nobufs;
550
ef778e7a
DH
551 if (test_bit(FSCACHE_COOKIE_INVALIDATING, &cookie->flags)) {
552 _leave(" = -ENOBUFS [invalidating]");
553 return -ENOBUFS;
554 }
555
b5108822
DH
556 ASSERTCMP(cookie->def->type, !=, FSCACHE_COOKIE_TYPE_INDEX);
557 ASSERTCMP(*nr_pages, >, 0);
558 ASSERT(!list_empty(pages));
559
560 if (fscache_wait_for_deferred_lookup(cookie) < 0)
561 return -ERESTARTSYS;
562
1362729b 563 op = fscache_alloc_retrieval(cookie, mapping, end_io_func, context);
b5108822
DH
564 if (!op)
565 return -ENOMEM;
1bb4b7f9 566 atomic_set(&op->n_pages, *nr_pages);
b5108822
DH
567
568 spin_lock(&cookie->lock);
569
94d30ae9
DH
570 if (!fscache_cookie_enabled(cookie) ||
571 hlist_empty(&cookie->backing_objects))
b5108822
DH
572 goto nobufs_unlock;
573 object = hlist_entry(cookie->backing_objects.first,
574 struct fscache_object, cookie_link);
575
8fb883f3 576 __fscache_use_cookie(cookie);
4fbf4291 577 atomic_inc(&object->n_reads);
9f10523f 578 __set_bit(FSCACHE_OP_DEC_READ_CNT, &op->op.flags);
4fbf4291 579
b5108822 580 if (fscache_submit_op(object, &op->op) < 0)
9f10523f 581 goto nobufs_unlock_dec;
b5108822
DH
582 spin_unlock(&cookie->lock);
583
584 fscache_stat(&fscache_n_retrieval_ops);
585
586 /* pin the netfs read context in case we need to do the actual netfs
587 * read because we've encountered a cache read failure */
588 fscache_get_context(object->cookie, op->context);
589
590 /* we wait for the operation to become active, and then process it
591 * *here*, in this thread, and not in the thread pool */
da9803bc
DH
592 ret = fscache_wait_for_operation_activation(
593 object, &op->op,
60d543ca 594 __fscache_stat(&fscache_n_retrieval_op_waits),
da9803bc
DH
595 __fscache_stat(&fscache_n_retrievals_object_dead),
596 fscache_do_cancel_retrieval);
60d543ca
DH
597 if (ret < 0)
598 goto error;
b5108822
DH
599
600 /* ask the cache to honour the operation */
52bd75fd
DH
601 if (test_bit(FSCACHE_COOKIE_NO_DATA_YET, &object->cookie->flags)) {
602 fscache_stat(&fscache_n_cop_allocate_pages);
603 ret = object->cache->ops->allocate_pages(
604 op, pages, nr_pages, gfp);
605 fscache_stat_d(&fscache_n_cop_allocate_pages);
606 } else {
607 fscache_stat(&fscache_n_cop_read_or_alloc_pages);
608 ret = object->cache->ops->read_or_alloc_pages(
609 op, pages, nr_pages, gfp);
610 fscache_stat_d(&fscache_n_cop_read_or_alloc_pages);
611 }
b5108822 612
5753c441 613error:
b5108822
DH
614 if (ret == -ENOMEM)
615 fscache_stat(&fscache_n_retrievals_nomem);
616 else if (ret == -ERESTARTSYS)
617 fscache_stat(&fscache_n_retrievals_intr);
618 else if (ret == -ENODATA)
619 fscache_stat(&fscache_n_retrievals_nodata);
620 else if (ret < 0)
621 fscache_stat(&fscache_n_retrievals_nobufs);
622 else
623 fscache_stat(&fscache_n_retrievals_ok);
624
625 fscache_put_retrieval(op);
626 _leave(" = %d", ret);
627 return ret;
628
9f10523f
DH
629nobufs_unlock_dec:
630 atomic_dec(&object->n_reads);
8fb883f3 631 wake_cookie = __fscache_unuse_cookie(cookie);
b5108822
DH
632nobufs_unlock:
633 spin_unlock(&cookie->lock);
634 kfree(op);
8fb883f3
DH
635 if (wake_cookie)
636 __fscache_wake_unused_cookie(cookie);
b5108822
DH
637nobufs:
638 fscache_stat(&fscache_n_retrievals_nobufs);
639 _leave(" = -ENOBUFS");
640 return -ENOBUFS;
641}
642EXPORT_SYMBOL(__fscache_read_or_alloc_pages);
643
644/*
645 * allocate a block in the cache on which to store a page
646 * - we return:
647 * -ENOMEM - out of memory, nothing done
648 * -ERESTARTSYS - interrupted
649 * -ENOBUFS - no backing object available in which to cache the block
650 * 0 - block allocated
651 */
652int __fscache_alloc_page(struct fscache_cookie *cookie,
653 struct page *page,
654 gfp_t gfp)
655{
656 struct fscache_retrieval *op;
657 struct fscache_object *object;
8fb883f3 658 bool wake_cookie = false;
b5108822
DH
659 int ret;
660
661 _enter("%p,%p,,,", cookie, page);
662
663 fscache_stat(&fscache_n_allocs);
664
665 if (hlist_empty(&cookie->backing_objects))
666 goto nobufs;
667
668 ASSERTCMP(cookie->def->type, !=, FSCACHE_COOKIE_TYPE_INDEX);
669 ASSERTCMP(page, !=, NULL);
670
ef778e7a
DH
671 if (test_bit(FSCACHE_COOKIE_INVALIDATING, &cookie->flags)) {
672 _leave(" = -ENOBUFS [invalidating]");
673 return -ENOBUFS;
674 }
675
b5108822
DH
676 if (fscache_wait_for_deferred_lookup(cookie) < 0)
677 return -ERESTARTSYS;
678
1362729b 679 op = fscache_alloc_retrieval(cookie, page->mapping, NULL, NULL);
b5108822
DH
680 if (!op)
681 return -ENOMEM;
1bb4b7f9 682 atomic_set(&op->n_pages, 1);
b5108822
DH
683
684 spin_lock(&cookie->lock);
685
94d30ae9
DH
686 if (!fscache_cookie_enabled(cookie) ||
687 hlist_empty(&cookie->backing_objects))
b5108822
DH
688 goto nobufs_unlock;
689 object = hlist_entry(cookie->backing_objects.first,
690 struct fscache_object, cookie_link);
691
8fb883f3 692 __fscache_use_cookie(cookie);
b5108822 693 if (fscache_submit_op(object, &op->op) < 0)
8fb883f3 694 goto nobufs_unlock_dec;
b5108822
DH
695 spin_unlock(&cookie->lock);
696
697 fscache_stat(&fscache_n_alloc_ops);
698
da9803bc
DH
699 ret = fscache_wait_for_operation_activation(
700 object, &op->op,
60d543ca 701 __fscache_stat(&fscache_n_alloc_op_waits),
da9803bc
DH
702 __fscache_stat(&fscache_n_allocs_object_dead),
703 fscache_do_cancel_retrieval);
60d543ca
DH
704 if (ret < 0)
705 goto error;
b5108822
DH
706
707 /* ask the cache to honour the operation */
52bd75fd 708 fscache_stat(&fscache_n_cop_allocate_page);
b5108822 709 ret = object->cache->ops->allocate_page(op, page, gfp);
52bd75fd 710 fscache_stat_d(&fscache_n_cop_allocate_page);
b5108822 711
5753c441
DH
712error:
713 if (ret == -ERESTARTSYS)
714 fscache_stat(&fscache_n_allocs_intr);
715 else if (ret < 0)
b5108822
DH
716 fscache_stat(&fscache_n_allocs_nobufs);
717 else
718 fscache_stat(&fscache_n_allocs_ok);
719
720 fscache_put_retrieval(op);
721 _leave(" = %d", ret);
722 return ret;
723
8fb883f3
DH
724nobufs_unlock_dec:
725 wake_cookie = __fscache_unuse_cookie(cookie);
b5108822
DH
726nobufs_unlock:
727 spin_unlock(&cookie->lock);
728 kfree(op);
8fb883f3
DH
729 if (wake_cookie)
730 __fscache_wake_unused_cookie(cookie);
b5108822
DH
731nobufs:
732 fscache_stat(&fscache_n_allocs_nobufs);
733 _leave(" = -ENOBUFS");
734 return -ENOBUFS;
735}
736EXPORT_SYMBOL(__fscache_alloc_page);
737
5a6f282a
MT
738/*
739 * Unmark pages allocate in the readahead code path (via:
740 * fscache_readpages_or_alloc) after delegating to the base filesystem
741 */
742void __fscache_readpages_cancel(struct fscache_cookie *cookie,
743 struct list_head *pages)
744{
745 struct page *page;
746
747 list_for_each_entry(page, pages, lru) {
748 if (PageFsCache(page))
749 __fscache_uncache_page(cookie, page);
750 }
751}
752EXPORT_SYMBOL(__fscache_readpages_cancel);
753
b5108822
DH
754/*
755 * release a write op reference
756 */
757static void fscache_release_write_op(struct fscache_operation *_op)
758{
759 _enter("{OP%x}", _op->debug_id);
760}
761
762/*
763 * perform the background storage of a page into the cache
764 */
765static void fscache_write_op(struct fscache_operation *_op)
766{
767 struct fscache_storage *op =
768 container_of(_op, struct fscache_storage, op);
769 struct fscache_object *object = op->op.object;
1bccf513 770 struct fscache_cookie *cookie;
b5108822
DH
771 struct page *page;
772 unsigned n;
773 void *results[1];
774 int ret;
775
776 _enter("{OP%x,%d}", op->op.debug_id, atomic_read(&op->op.usage));
777
b5108822 778 spin_lock(&object->lock);
1bccf513 779 cookie = object->cookie;
b5108822 780
7ef001e9
DH
781 if (!fscache_object_is_active(object)) {
782 /* If we get here, then the on-disk cache object likely longer
783 * exists, so we should just cancel this write operation.
784 */
b5108822 785 spin_unlock(&object->lock);
1f372dff 786 fscache_op_complete(&op->op, false);
7ef001e9
DH
787 _leave(" [inactive]");
788 return;
789 }
790
791 if (!cookie) {
792 /* If we get here, then the cookie belonging to the object was
793 * detached, probably by the cookie being withdrawn due to
794 * memory pressure, which means that the pages we might write
795 * to the cache from no longer exist - therefore, we can just
796 * cancel this write operation.
797 */
798 spin_unlock(&object->lock);
1f372dff 799 fscache_op_complete(&op->op, false);
caaef690
DH
800 _leave(" [cancel] op{f=%lx s=%u} obj{s=%s f=%lx}",
801 _op->flags, _op->state, object->state->short_name,
802 object->flags);
b5108822
DH
803 return;
804 }
805
1bccf513
DH
806 spin_lock(&cookie->stores_lock);
807
b5108822
DH
808 fscache_stat(&fscache_n_store_calls);
809
810 /* find a page to store */
811 page = NULL;
812 n = radix_tree_gang_lookup_tag(&cookie->stores, results, 0, 1,
813 FSCACHE_COOKIE_PENDING_TAG);
814 if (n != 1)
815 goto superseded;
816 page = results[0];
817 _debug("gang %d [%lx]", n, page->index);
1bccf513
DH
818 if (page->index > op->store_limit) {
819 fscache_stat(&fscache_n_store_pages_over_limit);
b5108822 820 goto superseded;
1bccf513 821 }
b5108822 822
08a66859
DC
823 radix_tree_tag_set(&cookie->stores, page->index,
824 FSCACHE_COOKIE_STORING_TAG);
825 radix_tree_tag_clear(&cookie->stores, page->index,
826 FSCACHE_COOKIE_PENDING_TAG);
b5108822 827
1bccf513 828 spin_unlock(&cookie->stores_lock);
b5108822 829 spin_unlock(&object->lock);
b5108822 830
08a66859
DC
831 fscache_stat(&fscache_n_store_pages);
832 fscache_stat(&fscache_n_cop_write_page);
833 ret = object->cache->ops->write_page(op, page);
834 fscache_stat_d(&fscache_n_cop_write_page);
08a66859
DC
835 fscache_end_page_write(object, page);
836 if (ret < 0) {
08a66859 837 fscache_abort_object(object);
1f372dff 838 fscache_op_complete(&op->op, true);
08a66859
DC
839 } else {
840 fscache_enqueue_operation(&op->op);
b5108822
DH
841 }
842
843 _leave("");
844 return;
845
846superseded:
847 /* this writer is going away and there aren't any more things to
848 * write */
849 _debug("cease");
1bccf513 850 spin_unlock(&cookie->stores_lock);
b5108822
DH
851 clear_bit(FSCACHE_OBJECT_PENDING_WRITE, &object->flags);
852 spin_unlock(&object->lock);
1f372dff 853 fscache_op_complete(&op->op, true);
b5108822
DH
854 _leave("");
855}
856
ef778e7a
DH
857/*
858 * Clear the pages pending writing for invalidation
859 */
860void fscache_invalidate_writes(struct fscache_cookie *cookie)
861{
862 struct page *page;
863 void *results[16];
864 int n, i;
865
866 _enter("");
867
ee8be57b
SAS
868 for (;;) {
869 spin_lock(&cookie->stores_lock);
870 n = radix_tree_gang_lookup_tag(&cookie->stores, results, 0,
871 ARRAY_SIZE(results),
872 FSCACHE_COOKIE_PENDING_TAG);
873 if (n == 0) {
874 spin_unlock(&cookie->stores_lock);
875 break;
876 }
877
ef778e7a
DH
878 for (i = n - 1; i >= 0; i--) {
879 page = results[i];
880 radix_tree_delete(&cookie->stores, page->index);
881 }
882
883 spin_unlock(&cookie->stores_lock);
884
885 for (i = n - 1; i >= 0; i--)
886 page_cache_release(results[i]);
887 }
888
ef778e7a
DH
889 _leave("");
890}
891
b5108822
DH
892/*
893 * request a page be stored in the cache
894 * - returns:
895 * -ENOMEM - out of memory, nothing done
896 * -ENOBUFS - no backing object available in which to cache the page
897 * 0 - dispatched a write - it'll call end_io_func() when finished
898 *
899 * if the cookie still has a backing object at this point, that object can be
900 * in one of a few states with respect to storage processing:
901 *
902 * (1) negative lookup, object not yet created (FSCACHE_COOKIE_CREATING is
903 * set)
904 *
caaef690 905 * (a) no writes yet
b5108822
DH
906 *
907 * (b) writes deferred till post-creation (mark page for writing and
908 * return immediately)
909 *
910 * (2) negative lookup, object created, initial fill being made from netfs
b5108822
DH
911 *
912 * (a) fill point not yet reached this page (mark page for writing and
913 * return)
914 *
915 * (b) fill point passed this page (queue op to store this page)
916 *
917 * (3) object extant (queue op to store this page)
918 *
919 * any other state is invalid
920 */
921int __fscache_write_page(struct fscache_cookie *cookie,
922 struct page *page,
923 gfp_t gfp)
924{
925 struct fscache_storage *op;
926 struct fscache_object *object;
8fb883f3 927 bool wake_cookie = false;
b5108822
DH
928 int ret;
929
930 _enter("%p,%x,", cookie, (u32) page->flags);
931
932 ASSERTCMP(cookie->def->type, !=, FSCACHE_COOKIE_TYPE_INDEX);
933 ASSERT(PageFsCache(page));
934
935 fscache_stat(&fscache_n_stores);
936
ef778e7a
DH
937 if (test_bit(FSCACHE_COOKIE_INVALIDATING, &cookie->flags)) {
938 _leave(" = -ENOBUFS [invalidating]");
939 return -ENOBUFS;
940 }
941
5f4f9f4a 942 op = kzalloc(sizeof(*op), GFP_NOIO | __GFP_NOMEMALLOC | __GFP_NORETRY);
b5108822
DH
943 if (!op)
944 goto nomem;
945
8af7c124
TH
946 fscache_operation_init(&op->op, fscache_write_op,
947 fscache_release_write_op);
1362729b
DH
948 op->op.flags = FSCACHE_OP_ASYNC |
949 (1 << FSCACHE_OP_WAITING) |
950 (1 << FSCACHE_OP_UNUSE_COOKIE);
b5108822 951
5e4c0d97 952 ret = radix_tree_maybe_preload(gfp & ~__GFP_HIGHMEM);
b5108822
DH
953 if (ret < 0)
954 goto nomem_free;
955
956 ret = -ENOBUFS;
957 spin_lock(&cookie->lock);
958
94d30ae9
DH
959 if (!fscache_cookie_enabled(cookie) ||
960 hlist_empty(&cookie->backing_objects))
b5108822
DH
961 goto nobufs;
962 object = hlist_entry(cookie->backing_objects.first,
963 struct fscache_object, cookie_link);
964 if (test_bit(FSCACHE_IOERROR, &object->cache->flags))
965 goto nobufs;
966
967 /* add the page to the pending-storage radix tree on the backing
968 * object */
969 spin_lock(&object->lock);
1bccf513 970 spin_lock(&cookie->stores_lock);
b5108822
DH
971
972 _debug("store limit %llx", (unsigned long long) object->store_limit);
973
974 ret = radix_tree_insert(&cookie->stores, page->index, page);
975 if (ret < 0) {
976 if (ret == -EEXIST)
977 goto already_queued;
978 _debug("insert failed %d", ret);
979 goto nobufs_unlock_obj;
980 }
981
982 radix_tree_tag_set(&cookie->stores, page->index,
983 FSCACHE_COOKIE_PENDING_TAG);
984 page_cache_get(page);
985
986 /* we only want one writer at a time, but we do need to queue new
987 * writers after exclusive ops */
988 if (test_and_set_bit(FSCACHE_OBJECT_PENDING_WRITE, &object->flags))
989 goto already_pending;
990
1bccf513 991 spin_unlock(&cookie->stores_lock);
b5108822
DH
992 spin_unlock(&object->lock);
993
994 op->op.debug_id = atomic_inc_return(&fscache_op_debug_id);
995 op->store_limit = object->store_limit;
996
8fb883f3 997 __fscache_use_cookie(cookie);
b5108822
DH
998 if (fscache_submit_op(object, &op->op) < 0)
999 goto submit_failed;
1000
1001 spin_unlock(&cookie->lock);
1002 radix_tree_preload_end();
1003 fscache_stat(&fscache_n_store_ops);
1004 fscache_stat(&fscache_n_stores_ok);
1005
8af7c124 1006 /* the work queue now carries its own ref on the object */
b5108822
DH
1007 fscache_put_operation(&op->op);
1008 _leave(" = 0");
1009 return 0;
1010
1011already_queued:
1012 fscache_stat(&fscache_n_stores_again);
1013already_pending:
1bccf513 1014 spin_unlock(&cookie->stores_lock);
b5108822
DH
1015 spin_unlock(&object->lock);
1016 spin_unlock(&cookie->lock);
1017 radix_tree_preload_end();
1018 kfree(op);
1019 fscache_stat(&fscache_n_stores_ok);
1020 _leave(" = 0");
1021 return 0;
1022
1023submit_failed:
1bccf513 1024 spin_lock(&cookie->stores_lock);
b5108822 1025 radix_tree_delete(&cookie->stores, page->index);
1bccf513 1026 spin_unlock(&cookie->stores_lock);
8fb883f3 1027 wake_cookie = __fscache_unuse_cookie(cookie);
b5108822
DH
1028 page_cache_release(page);
1029 ret = -ENOBUFS;
1030 goto nobufs;
1031
1032nobufs_unlock_obj:
1147d0f9 1033 spin_unlock(&cookie->stores_lock);
b5108822
DH
1034 spin_unlock(&object->lock);
1035nobufs:
1036 spin_unlock(&cookie->lock);
1037 radix_tree_preload_end();
1038 kfree(op);
8fb883f3
DH
1039 if (wake_cookie)
1040 __fscache_wake_unused_cookie(cookie);
b5108822
DH
1041 fscache_stat(&fscache_n_stores_nobufs);
1042 _leave(" = -ENOBUFS");
1043 return -ENOBUFS;
1044
1045nomem_free:
1046 kfree(op);
1047nomem:
1048 fscache_stat(&fscache_n_stores_oom);
1049 _leave(" = -ENOMEM");
1050 return -ENOMEM;
1051}
1052EXPORT_SYMBOL(__fscache_write_page);
1053
1054/*
1055 * remove a page from the cache
1056 */
1057void __fscache_uncache_page(struct fscache_cookie *cookie, struct page *page)
1058{
1059 struct fscache_object *object;
1060
1061 _enter(",%p", page);
1062
1063 ASSERTCMP(cookie->def->type, !=, FSCACHE_COOKIE_TYPE_INDEX);
1064 ASSERTCMP(page, !=, NULL);
1065
1066 fscache_stat(&fscache_n_uncaches);
1067
1068 /* cache withdrawal may beat us to it */
1069 if (!PageFsCache(page))
1070 goto done;
1071
1072 /* get the object */
1073 spin_lock(&cookie->lock);
1074
1075 if (hlist_empty(&cookie->backing_objects)) {
1076 ClearPageFsCache(page);
1077 goto done_unlock;
1078 }
1079
1080 object = hlist_entry(cookie->backing_objects.first,
1081 struct fscache_object, cookie_link);
1082
1083 /* there might now be stuff on disk we could read */
1084 clear_bit(FSCACHE_COOKIE_NO_DATA_YET, &cookie->flags);
1085
1086 /* only invoke the cache backend if we managed to mark the page
1087 * uncached here; this deals with synchronisation vs withdrawal */
1088 if (TestClearPageFsCache(page) &&
1089 object->cache->ops->uncache_page) {
1090 /* the cache backend releases the cookie lock */
52bd75fd 1091 fscache_stat(&fscache_n_cop_uncache_page);
b5108822 1092 object->cache->ops->uncache_page(object, page);
52bd75fd 1093 fscache_stat_d(&fscache_n_cop_uncache_page);
b5108822
DH
1094 goto done;
1095 }
1096
1097done_unlock:
1098 spin_unlock(&cookie->lock);
1099done:
1100 _leave("");
1101}
1102EXPORT_SYMBOL(__fscache_uncache_page);
1103
c4d6d8db
DH
1104/**
1105 * fscache_mark_page_cached - Mark a page as being cached
1106 * @op: The retrieval op pages are being marked for
1107 * @page: The page to be marked
1108 *
1109 * Mark a netfs page as being cached. After this is called, the netfs
1110 * must call fscache_uncache_page() to remove the mark.
1111 */
1112void fscache_mark_page_cached(struct fscache_retrieval *op, struct page *page)
1113{
1114 struct fscache_cookie *cookie = op->op.object->cookie;
1115
1116#ifdef CONFIG_FSCACHE_STATS
1117 atomic_inc(&fscache_n_marks);
1118#endif
1119
1120 _debug("- mark %p{%lx}", page, page->index);
1121 if (TestSetPageFsCache(page)) {
1122 static bool once_only;
1123 if (!once_only) {
1124 once_only = true;
36dfd116
FF
1125 pr_warn("Cookie type %s marked page %lx multiple times\n",
1126 cookie->def->name, page->index);
c4d6d8db
DH
1127 }
1128 }
1129
1130 if (cookie->def->mark_page_cached)
1131 cookie->def->mark_page_cached(cookie->netfs_data,
1132 op->mapping, page);
1133}
1134EXPORT_SYMBOL(fscache_mark_page_cached);
1135
b5108822
DH
1136/**
1137 * fscache_mark_pages_cached - Mark pages as being cached
1138 * @op: The retrieval op pages are being marked for
1139 * @pagevec: The pages to be marked
1140 *
1141 * Mark a bunch of netfs pages as being cached. After this is called,
1142 * the netfs must call fscache_uncache_page() to remove the mark.
1143 */
1144void fscache_mark_pages_cached(struct fscache_retrieval *op,
1145 struct pagevec *pagevec)
1146{
b5108822
DH
1147 unsigned long loop;
1148
c4d6d8db
DH
1149 for (loop = 0; loop < pagevec->nr; loop++)
1150 fscache_mark_page_cached(op, pagevec->pages[loop]);
b5108822 1151
b5108822
DH
1152 pagevec_reinit(pagevec);
1153}
1154EXPORT_SYMBOL(fscache_mark_pages_cached);
c902ce1b
DH
1155
1156/*
1157 * Uncache all the pages in an inode that are marked PG_fscache, assuming them
1158 * to be associated with the given cookie.
1159 */
1160void __fscache_uncache_all_inode_pages(struct fscache_cookie *cookie,
1161 struct inode *inode)
1162{
1163 struct address_space *mapping = inode->i_mapping;
1164 struct pagevec pvec;
1165 pgoff_t next;
1166 int i;
1167
1168 _enter("%p,%p", cookie, inode);
1169
1170 if (!mapping || mapping->nrpages == 0) {
1171 _leave(" [no pages]");
1172 return;
1173 }
1174
1175 pagevec_init(&pvec, 0);
1176 next = 0;
b307d465
JB
1177 do {
1178 if (!pagevec_lookup(&pvec, mapping, next, PAGEVEC_SIZE))
1179 break;
c902ce1b
DH
1180 for (i = 0; i < pagevec_count(&pvec); i++) {
1181 struct page *page = pvec.pages[i];
b307d465 1182 next = page->index;
c902ce1b
DH
1183 if (PageFsCache(page)) {
1184 __fscache_wait_on_page_write(cookie, page);
1185 __fscache_uncache_page(cookie, page);
1186 }
1187 }
1188 pagevec_release(&pvec);
1189 cond_resched();
b307d465 1190 } while (++next);
c902ce1b
DH
1191
1192 _leave("");
1193}
1194EXPORT_SYMBOL(__fscache_uncache_all_inode_pages);