David Howells | 0dfc41d | 2009-04-03 16:42:36 +0100 | [diff] [blame] | 1 | /* General filesystem caching backing cache interface |
| 2 | * |
| 3 | * Copyright (C) 2004-2007 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 | * NOTE!!! See: |
| 12 | * |
| 13 | * Documentation/filesystems/caching/backend-api.txt |
| 14 | * |
| 15 | * for a description of the cache backend interface declared here. |
| 16 | */ |
| 17 | |
| 18 | #ifndef _LINUX_FSCACHE_CACHE_H |
| 19 | #define _LINUX_FSCACHE_CACHE_H |
| 20 | |
| 21 | #include <linux/fscache.h> |
| 22 | #include <linux/sched.h> |
Tejun Heo | 8b8edef | 2010-07-20 22:09:01 +0200 | [diff] [blame] | 23 | #include <linux/workqueue.h> |
David Howells | 0dfc41d | 2009-04-03 16:42:36 +0100 | [diff] [blame] | 24 | |
| 25 | #define NR_MAXCACHES BITS_PER_LONG |
| 26 | |
| 27 | struct fscache_cache; |
| 28 | struct fscache_cache_ops; |
| 29 | struct fscache_object; |
| 30 | struct fscache_operation; |
| 31 | |
David Howells | 0dfc41d | 2009-04-03 16:42:36 +0100 | [diff] [blame] | 32 | /* |
| 33 | * cache tag definition |
| 34 | */ |
| 35 | struct fscache_cache_tag { |
| 36 | struct list_head link; |
| 37 | struct fscache_cache *cache; /* cache referred to by this tag */ |
| 38 | unsigned long flags; |
| 39 | #define FSCACHE_TAG_RESERVED 0 /* T if tag is reserved for a cache */ |
| 40 | atomic_t usage; |
| 41 | char name[0]; /* tag name */ |
| 42 | }; |
| 43 | |
| 44 | /* |
| 45 | * cache definition |
| 46 | */ |
| 47 | struct fscache_cache { |
| 48 | const struct fscache_cache_ops *ops; |
| 49 | struct fscache_cache_tag *tag; /* tag representing this cache */ |
| 50 | struct kobject *kobj; /* system representation of this cache */ |
| 51 | struct list_head link; /* link in list of caches */ |
| 52 | size_t max_index_size; /* maximum size of index data */ |
| 53 | char identifier[36]; /* cache label */ |
| 54 | |
| 55 | /* node management */ |
| 56 | struct work_struct op_gc; /* operation garbage collector */ |
| 57 | struct list_head object_list; /* list of data/index objects */ |
| 58 | struct list_head op_gc_list; /* list of ops to be deleted */ |
| 59 | spinlock_t object_list_lock; |
| 60 | spinlock_t op_gc_list_lock; |
| 61 | atomic_t object_count; /* no. of live objects in this cache */ |
| 62 | struct fscache_object *fsdef; /* object for the fsdef index */ |
| 63 | unsigned long flags; |
| 64 | #define FSCACHE_IOERROR 0 /* cache stopped on I/O error */ |
| 65 | #define FSCACHE_CACHE_WITHDRAWN 1 /* cache has been withdrawn */ |
| 66 | }; |
| 67 | |
| 68 | extern wait_queue_head_t fscache_cache_cleared_wq; |
| 69 | |
| 70 | /* |
| 71 | * operation to be applied to a cache object |
| 72 | * - retrieval initiation operations are done in the context of the process |
| 73 | * that issued them, and not in an async thread pool |
| 74 | */ |
| 75 | typedef void (*fscache_operation_release_t)(struct fscache_operation *op); |
| 76 | typedef void (*fscache_operation_processor_t)(struct fscache_operation *op); |
| 77 | |
David Howells | 9f10523 | 2012-12-20 21:52:35 +0000 | [diff] [blame] | 78 | enum fscache_operation_state { |
| 79 | FSCACHE_OP_ST_BLANK, /* Op is not yet submitted */ |
| 80 | FSCACHE_OP_ST_INITIALISED, /* Op is initialised */ |
| 81 | FSCACHE_OP_ST_PENDING, /* Op is blocked from running */ |
| 82 | FSCACHE_OP_ST_IN_PROGRESS, /* Op is in progress */ |
| 83 | FSCACHE_OP_ST_COMPLETE, /* Op is complete */ |
| 84 | FSCACHE_OP_ST_CANCELLED, /* Op has been cancelled */ |
| 85 | FSCACHE_OP_ST_DEAD /* Op is now dead */ |
| 86 | }; |
| 87 | |
David Howells | 0dfc41d | 2009-04-03 16:42:36 +0100 | [diff] [blame] | 88 | struct fscache_operation { |
Tejun Heo | 8af7c12 | 2010-07-20 22:09:01 +0200 | [diff] [blame] | 89 | struct work_struct work; /* record for async ops */ |
David Howells | 0dfc41d | 2009-04-03 16:42:36 +0100 | [diff] [blame] | 90 | struct list_head pend_link; /* link in object->pending_ops */ |
| 91 | struct fscache_object *object; /* object to be operated upon */ |
| 92 | |
| 93 | unsigned long flags; |
| 94 | #define FSCACHE_OP_TYPE 0x000f /* operation type */ |
Tejun Heo | 8af7c12 | 2010-07-20 22:09:01 +0200 | [diff] [blame] | 95 | #define FSCACHE_OP_ASYNC 0x0001 /* - async op, processor may sleep for disk */ |
| 96 | #define FSCACHE_OP_MYTHREAD 0x0002 /* - processing is done be issuing thread, not pool */ |
David Howells | 0dfc41d | 2009-04-03 16:42:36 +0100 | [diff] [blame] | 97 | #define FSCACHE_OP_WAITING 4 /* cleared when op is woken */ |
| 98 | #define FSCACHE_OP_EXCLUSIVE 5 /* exclusive op, other ops must wait */ |
David Howells | 9f10523 | 2012-12-20 21:52:35 +0000 | [diff] [blame] | 99 | #define FSCACHE_OP_DEC_READ_CNT 6 /* decrement object->n_reads on destruction */ |
| 100 | #define FSCACHE_OP_KEEP_FLAGS 0x0070 /* flags to keep when repurposing an op */ |
David Howells | 0dfc41d | 2009-04-03 16:42:36 +0100 | [diff] [blame] | 101 | |
David Howells | 9f10523 | 2012-12-20 21:52:35 +0000 | [diff] [blame] | 102 | enum fscache_operation_state state; |
David Howells | 0dfc41d | 2009-04-03 16:42:36 +0100 | [diff] [blame] | 103 | atomic_t usage; |
| 104 | unsigned debug_id; /* debugging ID */ |
| 105 | |
| 106 | /* operation processor callback |
| 107 | * - can be NULL if FSCACHE_OP_WAITING is going to be used to perform |
| 108 | * the op in a non-pool thread */ |
| 109 | fscache_operation_processor_t processor; |
| 110 | |
| 111 | /* operation releaser */ |
| 112 | fscache_operation_release_t release; |
| 113 | }; |
| 114 | |
| 115 | extern atomic_t fscache_op_debug_id; |
Tejun Heo | 8af7c12 | 2010-07-20 22:09:01 +0200 | [diff] [blame] | 116 | extern void fscache_op_work_func(struct work_struct *work); |
David Howells | 0dfc41d | 2009-04-03 16:42:36 +0100 | [diff] [blame] | 117 | |
| 118 | extern void fscache_enqueue_operation(struct fscache_operation *); |
David Howells | 1f372df | 2012-12-13 20:03:13 +0000 | [diff] [blame] | 119 | extern void fscache_op_complete(struct fscache_operation *, bool); |
David Howells | 0dfc41d | 2009-04-03 16:42:36 +0100 | [diff] [blame] | 120 | extern void fscache_put_operation(struct fscache_operation *); |
| 121 | |
| 122 | /** |
| 123 | * fscache_operation_init - Do basic initialisation of an operation |
| 124 | * @op: The operation to initialise |
| 125 | * @release: The release function to assign |
| 126 | * |
| 127 | * Do basic initialisation of an operation. The caller must still set flags, |
Tejun Heo | 8af7c12 | 2010-07-20 22:09:01 +0200 | [diff] [blame] | 128 | * object and processor if needed. |
David Howells | 0dfc41d | 2009-04-03 16:42:36 +0100 | [diff] [blame] | 129 | */ |
| 130 | static inline void fscache_operation_init(struct fscache_operation *op, |
Tejun Heo | 8af7c12 | 2010-07-20 22:09:01 +0200 | [diff] [blame] | 131 | fscache_operation_processor_t processor, |
| 132 | fscache_operation_release_t release) |
David Howells | 0dfc41d | 2009-04-03 16:42:36 +0100 | [diff] [blame] | 133 | { |
Tejun Heo | 8af7c12 | 2010-07-20 22:09:01 +0200 | [diff] [blame] | 134 | INIT_WORK(&op->work, fscache_op_work_func); |
David Howells | 0dfc41d | 2009-04-03 16:42:36 +0100 | [diff] [blame] | 135 | atomic_set(&op->usage, 1); |
David Howells | 9f10523 | 2012-12-20 21:52:35 +0000 | [diff] [blame] | 136 | op->state = FSCACHE_OP_ST_INITIALISED; |
David Howells | 0dfc41d | 2009-04-03 16:42:36 +0100 | [diff] [blame] | 137 | op->debug_id = atomic_inc_return(&fscache_op_debug_id); |
Tejun Heo | 8af7c12 | 2010-07-20 22:09:01 +0200 | [diff] [blame] | 138 | op->processor = processor; |
David Howells | 0dfc41d | 2009-04-03 16:42:36 +0100 | [diff] [blame] | 139 | op->release = release; |
| 140 | INIT_LIST_HEAD(&op->pend_link); |
| 141 | } |
| 142 | |
David Howells | 0dfc41d | 2009-04-03 16:42:36 +0100 | [diff] [blame] | 143 | /* |
| 144 | * data read operation |
| 145 | */ |
| 146 | struct fscache_retrieval { |
| 147 | struct fscache_operation op; |
| 148 | struct address_space *mapping; /* netfs pages */ |
| 149 | fscache_rw_complete_t end_io_func; /* function to call on I/O completion */ |
| 150 | void *context; /* netfs read context (pinned) */ |
| 151 | struct list_head to_do; /* list of things to be done by the backend */ |
| 152 | unsigned long start_time; /* time at which retrieval started */ |
David Howells | 9f10523 | 2012-12-20 21:52:35 +0000 | [diff] [blame] | 153 | unsigned n_pages; /* number of pages to be retrieved */ |
David Howells | 0dfc41d | 2009-04-03 16:42:36 +0100 | [diff] [blame] | 154 | }; |
| 155 | |
| 156 | typedef int (*fscache_page_retrieval_func_t)(struct fscache_retrieval *op, |
| 157 | struct page *page, |
| 158 | gfp_t gfp); |
| 159 | |
| 160 | typedef int (*fscache_pages_retrieval_func_t)(struct fscache_retrieval *op, |
| 161 | struct list_head *pages, |
| 162 | unsigned *nr_pages, |
| 163 | gfp_t gfp); |
| 164 | |
| 165 | /** |
| 166 | * fscache_get_retrieval - Get an extra reference on a retrieval operation |
| 167 | * @op: The retrieval operation to get a reference on |
| 168 | * |
| 169 | * Get an extra reference on a retrieval operation. |
| 170 | */ |
| 171 | static inline |
| 172 | struct fscache_retrieval *fscache_get_retrieval(struct fscache_retrieval *op) |
| 173 | { |
| 174 | atomic_inc(&op->op.usage); |
| 175 | return op; |
| 176 | } |
| 177 | |
| 178 | /** |
| 179 | * fscache_enqueue_retrieval - Enqueue a retrieval operation for processing |
| 180 | * @op: The retrieval operation affected |
| 181 | * |
| 182 | * Enqueue a retrieval operation for processing by the FS-Cache thread pool. |
| 183 | */ |
| 184 | static inline void fscache_enqueue_retrieval(struct fscache_retrieval *op) |
| 185 | { |
| 186 | fscache_enqueue_operation(&op->op); |
| 187 | } |
| 188 | |
| 189 | /** |
David Howells | 9f10523 | 2012-12-20 21:52:35 +0000 | [diff] [blame] | 190 | * fscache_retrieval_complete - Record (partial) completion of a retrieval |
| 191 | * @op: The retrieval operation affected |
| 192 | * @n_pages: The number of pages to account for |
| 193 | */ |
| 194 | static inline void fscache_retrieval_complete(struct fscache_retrieval *op, |
| 195 | int n_pages) |
| 196 | { |
| 197 | op->n_pages -= n_pages; |
| 198 | if (op->n_pages <= 0) |
David Howells | 1f372df | 2012-12-13 20:03:13 +0000 | [diff] [blame] | 199 | fscache_op_complete(&op->op, true); |
David Howells | 9f10523 | 2012-12-20 21:52:35 +0000 | [diff] [blame] | 200 | } |
| 201 | |
| 202 | /** |
David Howells | 0dfc41d | 2009-04-03 16:42:36 +0100 | [diff] [blame] | 203 | * fscache_put_retrieval - Drop a reference to a retrieval operation |
| 204 | * @op: The retrieval operation affected |
David Howells | 9f10523 | 2012-12-20 21:52:35 +0000 | [diff] [blame] | 205 | * @n_pages: The number of pages to account for |
David Howells | 0dfc41d | 2009-04-03 16:42:36 +0100 | [diff] [blame] | 206 | * |
| 207 | * Drop a reference to a retrieval operation. |
| 208 | */ |
| 209 | static inline void fscache_put_retrieval(struct fscache_retrieval *op) |
| 210 | { |
| 211 | fscache_put_operation(&op->op); |
| 212 | } |
| 213 | |
| 214 | /* |
| 215 | * cached page storage work item |
| 216 | * - used to do three things: |
| 217 | * - batch writes to the cache |
| 218 | * - do cache writes asynchronously |
| 219 | * - defer writes until cache object lookup completion |
| 220 | */ |
| 221 | struct fscache_storage { |
| 222 | struct fscache_operation op; |
| 223 | pgoff_t store_limit; /* don't write more than this */ |
| 224 | }; |
| 225 | |
| 226 | /* |
| 227 | * cache operations |
| 228 | */ |
| 229 | struct fscache_cache_ops { |
| 230 | /* name of cache provider */ |
| 231 | const char *name; |
| 232 | |
| 233 | /* allocate an object record for a cookie */ |
| 234 | struct fscache_object *(*alloc_object)(struct fscache_cache *cache, |
| 235 | struct fscache_cookie *cookie); |
| 236 | |
David Howells | fee096d | 2009-11-19 18:12:05 +0000 | [diff] [blame] | 237 | /* look up the object for a cookie |
| 238 | * - return -ETIMEDOUT to be requeued |
| 239 | */ |
| 240 | int (*lookup_object)(struct fscache_object *object); |
David Howells | 0dfc41d | 2009-04-03 16:42:36 +0100 | [diff] [blame] | 241 | |
| 242 | /* finished looking up */ |
| 243 | void (*lookup_complete)(struct fscache_object *object); |
| 244 | |
| 245 | /* increment the usage count on this object (may fail if unmounting) */ |
| 246 | struct fscache_object *(*grab_object)(struct fscache_object *object); |
| 247 | |
| 248 | /* pin an object in the cache */ |
| 249 | int (*pin_object)(struct fscache_object *object); |
| 250 | |
| 251 | /* unpin an object in the cache */ |
| 252 | void (*unpin_object)(struct fscache_object *object); |
| 253 | |
Lucas De Marchi | 25985ed | 2011-03-30 22:57:33 -0300 | [diff] [blame] | 254 | /* store the updated auxiliary data on an object */ |
David Howells | 0dfc41d | 2009-04-03 16:42:36 +0100 | [diff] [blame] | 255 | void (*update_object)(struct fscache_object *object); |
| 256 | |
David Howells | ef778e7 | 2012-12-20 21:52:36 +0000 | [diff] [blame] | 257 | /* Invalidate an object */ |
| 258 | void (*invalidate_object)(struct fscache_operation *op); |
| 259 | |
David Howells | 0dfc41d | 2009-04-03 16:42:36 +0100 | [diff] [blame] | 260 | /* discard the resources pinned by an object and effect retirement if |
| 261 | * necessary */ |
| 262 | void (*drop_object)(struct fscache_object *object); |
| 263 | |
| 264 | /* dispose of a reference to an object */ |
| 265 | void (*put_object)(struct fscache_object *object); |
| 266 | |
| 267 | /* sync a cache */ |
| 268 | void (*sync_cache)(struct fscache_cache *cache); |
| 269 | |
| 270 | /* notification that the attributes of a non-index object (such as |
| 271 | * i_size) have changed */ |
| 272 | int (*attr_changed)(struct fscache_object *object); |
| 273 | |
| 274 | /* reserve space for an object's data and associated metadata */ |
| 275 | int (*reserve_space)(struct fscache_object *object, loff_t i_size); |
| 276 | |
| 277 | /* request a backing block for a page be read or allocated in the |
| 278 | * cache */ |
| 279 | fscache_page_retrieval_func_t read_or_alloc_page; |
| 280 | |
| 281 | /* request backing blocks for a list of pages be read or allocated in |
| 282 | * the cache */ |
| 283 | fscache_pages_retrieval_func_t read_or_alloc_pages; |
| 284 | |
| 285 | /* request a backing block for a page be allocated in the cache so that |
| 286 | * it can be written directly */ |
| 287 | fscache_page_retrieval_func_t allocate_page; |
| 288 | |
| 289 | /* request backing blocks for pages be allocated in the cache so that |
| 290 | * they can be written directly */ |
| 291 | fscache_pages_retrieval_func_t allocate_pages; |
| 292 | |
| 293 | /* write a page to its backing block in the cache */ |
| 294 | int (*write_page)(struct fscache_storage *op, struct page *page); |
| 295 | |
| 296 | /* detach backing block from a page (optional) |
| 297 | * - must release the cookie lock before returning |
| 298 | * - may sleep |
| 299 | */ |
| 300 | void (*uncache_page)(struct fscache_object *object, |
| 301 | struct page *page); |
| 302 | |
| 303 | /* dissociate a cache from all the pages it was backing */ |
| 304 | void (*dissociate_pages)(struct fscache_cache *cache); |
| 305 | }; |
| 306 | |
| 307 | /* |
| 308 | * data file or index object cookie |
| 309 | * - a file will only appear in one cache |
| 310 | * - a request to cache a file may or may not be honoured, subject to |
| 311 | * constraints such as disk space |
| 312 | * - indices are created on disk just-in-time |
| 313 | */ |
| 314 | struct fscache_cookie { |
| 315 | atomic_t usage; /* number of users of this cookie */ |
| 316 | atomic_t n_children; /* number of children of this cookie */ |
| 317 | spinlock_t lock; |
David Howells | 1bccf51 | 2009-11-19 18:11:25 +0000 | [diff] [blame] | 318 | spinlock_t stores_lock; /* lock on page store tree */ |
David Howells | 0dfc41d | 2009-04-03 16:42:36 +0100 | [diff] [blame] | 319 | struct hlist_head backing_objects; /* object(s) backing this file/index */ |
| 320 | const struct fscache_cookie_def *def; /* definition */ |
| 321 | struct fscache_cookie *parent; /* parent of this entry */ |
| 322 | void *netfs_data; /* back pointer to netfs */ |
| 323 | struct radix_tree_root stores; /* pages to be stored on this cookie */ |
| 324 | #define FSCACHE_COOKIE_PENDING_TAG 0 /* pages tag: pending write to cache */ |
David Howells | 201a154 | 2009-11-19 18:11:35 +0000 | [diff] [blame] | 325 | #define FSCACHE_COOKIE_STORING_TAG 1 /* pages tag: writing to cache */ |
David Howells | 0dfc41d | 2009-04-03 16:42:36 +0100 | [diff] [blame] | 326 | |
| 327 | unsigned long flags; |
| 328 | #define FSCACHE_COOKIE_LOOKING_UP 0 /* T if non-index cookie being looked up still */ |
| 329 | #define FSCACHE_COOKIE_CREATING 1 /* T if non-index object being created still */ |
| 330 | #define FSCACHE_COOKIE_NO_DATA_YET 2 /* T if new object with no cached data yet */ |
| 331 | #define FSCACHE_COOKIE_PENDING_FILL 3 /* T if pending initial fill on object */ |
| 332 | #define FSCACHE_COOKIE_FILLING 4 /* T if filling object incrementally */ |
| 333 | #define FSCACHE_COOKIE_UNAVAILABLE 5 /* T if cookie is unavailable (error, etc) */ |
David Howells | ef46ed8 | 2012-12-20 21:52:35 +0000 | [diff] [blame] | 334 | #define FSCACHE_COOKIE_WAITING_ON_READS 6 /* T if cookie is waiting on reads */ |
David Howells | ef778e7 | 2012-12-20 21:52:36 +0000 | [diff] [blame] | 335 | #define FSCACHE_COOKIE_INVALIDATING 7 /* T if cookie is being invalidated */ |
David Howells | 0dfc41d | 2009-04-03 16:42:36 +0100 | [diff] [blame] | 336 | }; |
| 337 | |
| 338 | extern struct fscache_cookie fscache_fsdef_index; |
| 339 | |
| 340 | /* |
David Howells | 36a02de | 2012-12-05 13:34:46 +0000 | [diff] [blame] | 341 | * Event list for fscache_object::{event_mask,events} |
| 342 | */ |
| 343 | enum { |
| 344 | FSCACHE_OBJECT_EV_REQUEUE, /* T if object should be requeued */ |
| 345 | FSCACHE_OBJECT_EV_UPDATE, /* T if object should be updated */ |
| 346 | FSCACHE_OBJECT_EV_INVALIDATE, /* T if cache requested object invalidation */ |
| 347 | FSCACHE_OBJECT_EV_CLEARED, /* T if accessors all gone */ |
| 348 | FSCACHE_OBJECT_EV_ERROR, /* T if fatal error occurred during processing */ |
| 349 | FSCACHE_OBJECT_EV_RELEASE, /* T if netfs requested object release */ |
| 350 | FSCACHE_OBJECT_EV_RETIRE, /* T if netfs requested object retirement */ |
| 351 | FSCACHE_OBJECT_EV_WITHDRAW, /* T if cache requested object withdrawal */ |
| 352 | NR_FSCACHE_OBJECT_EVENTS |
| 353 | }; |
| 354 | |
| 355 | #define FSCACHE_OBJECT_EVENTS_MASK ((1UL << NR_FSCACHE_OBJECT_EVENTS) - 1) |
| 356 | |
| 357 | /* |
David Howells | 0dfc41d | 2009-04-03 16:42:36 +0100 | [diff] [blame] | 358 | * on-disk cache file or index handle |
| 359 | */ |
| 360 | struct fscache_object { |
| 361 | enum fscache_object_state { |
| 362 | FSCACHE_OBJECT_INIT, /* object in initial unbound state */ |
| 363 | FSCACHE_OBJECT_LOOKING_UP, /* looking up object */ |
| 364 | FSCACHE_OBJECT_CREATING, /* creating object */ |
| 365 | |
| 366 | /* active states */ |
| 367 | FSCACHE_OBJECT_AVAILABLE, /* cleaning up object after creation */ |
| 368 | FSCACHE_OBJECT_ACTIVE, /* object is usable */ |
David Howells | ef778e7 | 2012-12-20 21:52:36 +0000 | [diff] [blame] | 369 | FSCACHE_OBJECT_INVALIDATING, /* object is invalidating */ |
David Howells | 0dfc41d | 2009-04-03 16:42:36 +0100 | [diff] [blame] | 370 | FSCACHE_OBJECT_UPDATING, /* object is updating */ |
| 371 | |
| 372 | /* terminal states */ |
| 373 | FSCACHE_OBJECT_DYING, /* object waiting for accessors to finish */ |
| 374 | FSCACHE_OBJECT_LC_DYING, /* object cleaning up after lookup/create */ |
| 375 | FSCACHE_OBJECT_ABORT_INIT, /* abort the init state */ |
| 376 | FSCACHE_OBJECT_RELEASING, /* releasing object */ |
| 377 | FSCACHE_OBJECT_RECYCLING, /* retiring object */ |
| 378 | FSCACHE_OBJECT_WITHDRAWING, /* withdrawing object */ |
| 379 | FSCACHE_OBJECT_DEAD, /* object is now dead */ |
David Howells | 440f0af | 2009-11-19 18:11:01 +0000 | [diff] [blame] | 380 | FSCACHE_OBJECT__NSTATES |
David Howells | 0dfc41d | 2009-04-03 16:42:36 +0100 | [diff] [blame] | 381 | } state; |
| 382 | |
| 383 | int debug_id; /* debugging ID */ |
| 384 | int n_children; /* number of child objects */ |
David Howells | 9f10523 | 2012-12-20 21:52:35 +0000 | [diff] [blame] | 385 | int n_ops; /* number of extant ops on object */ |
David Howells | 0dfc41d | 2009-04-03 16:42:36 +0100 | [diff] [blame] | 386 | int n_obj_ops; /* number of object ops outstanding on object */ |
| 387 | int n_in_progress; /* number of ops in progress */ |
David Howells | 9f10523 | 2012-12-20 21:52:35 +0000 | [diff] [blame] | 388 | int n_exclusive; /* number of exclusive ops queued or in progress */ |
David Howells | 4fbf429 | 2009-11-19 18:11:04 +0000 | [diff] [blame] | 389 | atomic_t n_reads; /* number of read ops in progress */ |
David Howells | 0dfc41d | 2009-04-03 16:42:36 +0100 | [diff] [blame] | 390 | spinlock_t lock; /* state and operations lock */ |
| 391 | |
| 392 | unsigned long lookup_jif; /* time at which lookup started */ |
| 393 | unsigned long event_mask; /* events this object is interested in */ |
| 394 | unsigned long events; /* events to be processed by this object |
| 395 | * (order is important - using fls) */ |
David Howells | 0dfc41d | 2009-04-03 16:42:36 +0100 | [diff] [blame] | 396 | |
| 397 | unsigned long flags; |
| 398 | #define FSCACHE_OBJECT_LOCK 0 /* T if object is busy being processed */ |
| 399 | #define FSCACHE_OBJECT_PENDING_WRITE 1 /* T if object has pending write */ |
| 400 | #define FSCACHE_OBJECT_WAITING 2 /* T if object is waiting on its parent */ |
| 401 | |
| 402 | struct list_head cache_link; /* link in cache->object_list */ |
| 403 | struct hlist_node cookie_link; /* link in cookie->backing_objects */ |
| 404 | struct fscache_cache *cache; /* cache that supplied this object */ |
| 405 | struct fscache_cookie *cookie; /* netfs's file/index object */ |
| 406 | struct fscache_object *parent; /* parent object */ |
Tejun Heo | 8b8edef | 2010-07-20 22:09:01 +0200 | [diff] [blame] | 407 | struct work_struct work; /* attention scheduling record */ |
David Howells | 0dfc41d | 2009-04-03 16:42:36 +0100 | [diff] [blame] | 408 | struct list_head dependents; /* FIFO of dependent objects */ |
| 409 | struct list_head dep_link; /* link in parent's dependents list */ |
| 410 | struct list_head pending_ops; /* unstarted operations on this object */ |
David Howells | 4fbf429 | 2009-11-19 18:11:04 +0000 | [diff] [blame] | 411 | #ifdef CONFIG_FSCACHE_OBJECT_LIST |
| 412 | struct rb_node objlist_link; /* link in global object list */ |
| 413 | #endif |
David Howells | 0dfc41d | 2009-04-03 16:42:36 +0100 | [diff] [blame] | 414 | pgoff_t store_limit; /* current storage limit */ |
David Howells | a17754f | 2009-11-19 18:11:52 +0000 | [diff] [blame] | 415 | loff_t store_limit_l; /* current storage limit */ |
David Howells | 0dfc41d | 2009-04-03 16:42:36 +0100 | [diff] [blame] | 416 | }; |
| 417 | |
| 418 | extern const char *fscache_object_states[]; |
| 419 | |
David Howells | 610be24 | 2013-05-10 19:50:25 +0100 | [diff] [blame] | 420 | extern void fscache_object_init(struct fscache_object *, struct fscache_cookie *, |
| 421 | struct fscache_cache *); |
David Howells | 0dfc41d | 2009-04-03 16:42:36 +0100 | [diff] [blame] | 422 | |
| 423 | extern void fscache_object_lookup_negative(struct fscache_object *object); |
| 424 | extern void fscache_obtained_object(struct fscache_object *object); |
| 425 | |
David Howells | 4fbf429 | 2009-11-19 18:11:04 +0000 | [diff] [blame] | 426 | #ifdef CONFIG_FSCACHE_OBJECT_LIST |
| 427 | extern void fscache_object_destroy(struct fscache_object *object); |
| 428 | #else |
| 429 | #define fscache_object_destroy(object) do {} while(0) |
| 430 | #endif |
| 431 | |
David Howells | 493f7bc | 2013-05-10 19:50:26 +0100 | [diff] [blame^] | 432 | static inline bool fscache_object_is_live(struct fscache_object *object) |
| 433 | { |
| 434 | return object->state < FSCACHE_OBJECT_DYING; |
| 435 | } |
| 436 | |
| 437 | static inline bool fscache_object_is_dying(struct fscache_object *object) |
| 438 | { |
| 439 | return !fscache_object_is_live(object); |
| 440 | } |
| 441 | |
| 442 | static inline bool fscache_object_is_available(struct fscache_object *object) |
| 443 | { |
| 444 | return object->state >= FSCACHE_OBJECT_AVAILABLE; |
| 445 | } |
| 446 | |
| 447 | static inline bool fscache_object_is_active(struct fscache_object *object) |
| 448 | { |
| 449 | return fscache_object_is_available(object) && |
| 450 | fscache_object_is_live(object) && |
| 451 | !test_bit(FSCACHE_IOERROR, &object->cache->flags); |
| 452 | } |
| 453 | |
| 454 | static inline bool fscache_object_is_dead(struct fscache_object *object) |
| 455 | { |
| 456 | return fscache_object_is_dying(object) && |
| 457 | test_bit(FSCACHE_IOERROR, &object->cache->flags); |
| 458 | } |
| 459 | |
David Howells | 0dfc41d | 2009-04-03 16:42:36 +0100 | [diff] [blame] | 460 | /** |
| 461 | * fscache_object_destroyed - Note destruction of an object in a cache |
| 462 | * @cache: The cache from which the object came |
| 463 | * |
| 464 | * Note the destruction and deallocation of an object record in a cache. |
| 465 | */ |
| 466 | static inline void fscache_object_destroyed(struct fscache_cache *cache) |
| 467 | { |
| 468 | if (atomic_dec_and_test(&cache->object_count)) |
| 469 | wake_up_all(&fscache_cache_cleared_wq); |
| 470 | } |
| 471 | |
| 472 | /** |
| 473 | * fscache_object_lookup_error - Note an object encountered an error |
| 474 | * @object: The object on which the error was encountered |
| 475 | * |
| 476 | * Note that an object encountered a fatal error (usually an I/O error) and |
| 477 | * that it should be withdrawn as soon as possible. |
| 478 | */ |
| 479 | static inline void fscache_object_lookup_error(struct fscache_object *object) |
| 480 | { |
| 481 | set_bit(FSCACHE_OBJECT_EV_ERROR, &object->events); |
| 482 | } |
| 483 | |
| 484 | /** |
| 485 | * fscache_set_store_limit - Set the maximum size to be stored in an object |
| 486 | * @object: The object to set the maximum on |
| 487 | * @i_size: The limit to set in bytes |
| 488 | * |
| 489 | * Set the maximum size an object is permitted to reach, implying the highest |
| 490 | * byte that may be written. Intended to be called by the attr_changed() op. |
| 491 | * |
| 492 | * See Documentation/filesystems/caching/backend-api.txt for a complete |
| 493 | * description. |
| 494 | */ |
| 495 | static inline |
| 496 | void fscache_set_store_limit(struct fscache_object *object, loff_t i_size) |
| 497 | { |
David Howells | a17754f | 2009-11-19 18:11:52 +0000 | [diff] [blame] | 498 | object->store_limit_l = i_size; |
David Howells | 0dfc41d | 2009-04-03 16:42:36 +0100 | [diff] [blame] | 499 | object->store_limit = i_size >> PAGE_SHIFT; |
| 500 | if (i_size & ~PAGE_MASK) |
| 501 | object->store_limit++; |
| 502 | } |
| 503 | |
| 504 | /** |
| 505 | * fscache_end_io - End a retrieval operation on a page |
| 506 | * @op: The FS-Cache operation covering the retrieval |
| 507 | * @page: The page that was to be fetched |
| 508 | * @error: The error code (0 if successful) |
| 509 | * |
| 510 | * Note the end of an operation to retrieve a page, as covered by a particular |
| 511 | * operation record. |
| 512 | */ |
| 513 | static inline void fscache_end_io(struct fscache_retrieval *op, |
| 514 | struct page *page, int error) |
| 515 | { |
| 516 | op->end_io_func(page, op->context, error); |
| 517 | } |
| 518 | |
| 519 | /* |
| 520 | * out-of-line cache backend functions |
| 521 | */ |
Joe Perches | b9075fa | 2011-10-31 17:11:33 -0700 | [diff] [blame] | 522 | extern __printf(3, 4) |
| 523 | void fscache_init_cache(struct fscache_cache *cache, |
| 524 | const struct fscache_cache_ops *ops, |
| 525 | const char *idfmt, ...); |
David Howells | 0dfc41d | 2009-04-03 16:42:36 +0100 | [diff] [blame] | 526 | |
| 527 | extern int fscache_add_cache(struct fscache_cache *cache, |
| 528 | struct fscache_object *fsdef, |
| 529 | const char *tagname); |
| 530 | extern void fscache_withdraw_cache(struct fscache_cache *cache); |
| 531 | |
| 532 | extern void fscache_io_error(struct fscache_cache *cache); |
| 533 | |
David Howells | c4d6d8d | 2012-12-20 21:52:32 +0000 | [diff] [blame] | 534 | extern void fscache_mark_page_cached(struct fscache_retrieval *op, |
| 535 | struct page *page); |
| 536 | |
David Howells | 0dfc41d | 2009-04-03 16:42:36 +0100 | [diff] [blame] | 537 | extern void fscache_mark_pages_cached(struct fscache_retrieval *op, |
| 538 | struct pagevec *pagevec); |
| 539 | |
Tejun Heo | 8b8edef | 2010-07-20 22:09:01 +0200 | [diff] [blame] | 540 | extern bool fscache_object_sleep_till_congested(signed long *timeoutp); |
| 541 | |
David Howells | 0dfc41d | 2009-04-03 16:42:36 +0100 | [diff] [blame] | 542 | extern enum fscache_checkaux fscache_check_aux(struct fscache_object *object, |
| 543 | const void *data, |
| 544 | uint16_t datalen); |
| 545 | |
| 546 | #endif /* _LINUX_FSCACHE_CACHE_H */ |