blob: 6e0b5fb252314b0f92b51336a8f25b542e8701b4 [file] [log] [blame]
David Howells06b3db12009-04-03 16:42:36 +01001/* Internal definitions for FS-Cache
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
12/*
13 * Lock order, in the order in which multiple locks should be obtained:
14 * - fscache_addremove_sem
15 * - cookie->lock
16 * - cookie->parent->lock
17 * - cache->object_list_lock
18 * - object->lock
19 * - object->parent->lock
David Howells1bccf512009-11-19 18:11:25 +000020 * - cookie->stores_lock
David Howells06b3db12009-04-03 16:42:36 +010021 * - fscache_thread_lock
22 *
23 */
24
25#include <linux/fscache-cache.h>
26#include <linux/sched.h>
27
28#define FSCACHE_MIN_THREADS 4
29#define FSCACHE_MAX_THREADS 32
30
31/*
David Howells348ca102009-05-27 15:46:50 +010032 * cache.c
David Howells0e04d4c2009-04-03 16:42:37 +010033 */
34extern struct list_head fscache_cache_list;
35extern struct rw_semaphore fscache_addremove_sem;
36
37extern struct fscache_cache *fscache_select_cache_for_object(
38 struct fscache_cookie *);
39
40/*
David Howells348ca102009-05-27 15:46:50 +010041 * cookie.c
David Howells955d0092009-04-03 16:42:38 +010042 */
43extern struct kmem_cache *fscache_cookie_jar;
44
45extern void fscache_cookie_init_once(void *);
46extern void __fscache_cookie_put(struct fscache_cookie *);
47
48/*
David Howells348ca102009-05-27 15:46:50 +010049 * fsdef.c
David Howellsa6891642009-04-03 16:42:37 +010050 */
51extern struct fscache_cookie fscache_fsdef_index;
52extern struct fscache_cookie_def fscache_fsdef_netfs_def;
53
54/*
David Howells348ca102009-05-27 15:46:50 +010055 * histogram.c
David Howells7394daa2009-04-03 16:42:37 +010056 */
57#ifdef CONFIG_FSCACHE_HISTOGRAM
58extern atomic_t fscache_obj_instantiate_histogram[HZ];
59extern atomic_t fscache_objs_histogram[HZ];
60extern atomic_t fscache_ops_histogram[HZ];
61extern atomic_t fscache_retrieval_delay_histogram[HZ];
62extern atomic_t fscache_retrieval_histogram[HZ];
63
64static inline void fscache_hist(atomic_t histogram[], unsigned long start_jif)
65{
66 unsigned long jif = jiffies - start_jif;
67 if (jif >= HZ)
68 jif = HZ - 1;
69 atomic_inc(&histogram[jif]);
70}
71
72extern const struct file_operations fscache_histogram_fops;
73
74#else
75#define fscache_hist(hist, start_jif) do {} while (0)
76#endif
77
78/*
David Howells348ca102009-05-27 15:46:50 +010079 * main.c
David Howells06b3db12009-04-03 16:42:36 +010080 */
81extern unsigned fscache_defer_lookup;
82extern unsigned fscache_defer_create;
83extern unsigned fscache_debug;
84extern struct kobject *fscache_root;
Tejun Heo8b8edef2010-07-20 22:09:01 +020085extern struct workqueue_struct *fscache_object_wq;
86DECLARE_PER_CPU(wait_queue_head_t, fscache_object_cong_wait);
87
88static inline bool fscache_object_congested(void)
89{
90 return workqueue_congested(WORK_CPU_UNBOUND, fscache_object_wq);
91}
David Howells06b3db12009-04-03 16:42:36 +010092
David Howells2868cbe2009-04-03 16:42:38 +010093extern int fscache_wait_bit(void *);
94extern int fscache_wait_bit_interruptible(void *);
95
David Howells7394daa2009-04-03 16:42:37 +010096/*
David Howells348ca102009-05-27 15:46:50 +010097 * object.c
David Howells36c95592009-04-03 16:42:38 +010098 */
David Howells4fbf4292009-11-19 18:11:04 +000099extern const char fscache_object_states_short[FSCACHE_OBJECT__NSTATES][5];
100
David Howells36c95592009-04-03 16:42:38 +0100101extern void fscache_withdrawing_object(struct fscache_cache *,
102 struct fscache_object *);
103extern void fscache_enqueue_object(struct fscache_object *);
104
105/*
David Howells4fbf4292009-11-19 18:11:04 +0000106 * object-list.c
107 */
108#ifdef CONFIG_FSCACHE_OBJECT_LIST
109extern const struct file_operations fscache_objlist_fops;
110
111extern void fscache_objlist_add(struct fscache_object *);
112#else
113#define fscache_objlist_add(object) do {} while(0)
114#endif
115
116/*
David Howells348ca102009-05-27 15:46:50 +0100117 * operation.c
David Howells36c95592009-04-03 16:42:38 +0100118 */
David Howells952efe72009-04-03 16:42:39 +0100119extern int fscache_submit_exclusive_op(struct fscache_object *,
120 struct fscache_operation *);
121extern int fscache_submit_op(struct fscache_object *,
122 struct fscache_operation *);
David Howells5753c442009-11-19 18:11:19 +0000123extern int fscache_cancel_op(struct fscache_operation *);
David Howells952efe72009-04-03 16:42:39 +0100124extern void fscache_abort_object(struct fscache_object *);
125extern void fscache_start_operations(struct fscache_object *);
126extern void fscache_operation_gc(struct work_struct *);
David Howells36c95592009-04-03 16:42:38 +0100127
128/*
David Howells348ca102009-05-27 15:46:50 +0100129 * proc.c
David Howells7394daa2009-04-03 16:42:37 +0100130 */
131#ifdef CONFIG_PROC_FS
132extern int __init fscache_proc_init(void);
133extern void fscache_proc_cleanup(void);
134#else
135#define fscache_proc_init() (0)
136#define fscache_proc_cleanup() do {} while (0)
137#endif
138
139/*
David Howells348ca102009-05-27 15:46:50 +0100140 * stats.c
David Howells7394daa2009-04-03 16:42:37 +0100141 */
142#ifdef CONFIG_FSCACHE_STATS
143extern atomic_t fscache_n_ops_processed[FSCACHE_MAX_THREADS];
144extern atomic_t fscache_n_objs_processed[FSCACHE_MAX_THREADS];
145
146extern atomic_t fscache_n_op_pend;
147extern atomic_t fscache_n_op_run;
148extern atomic_t fscache_n_op_enqueue;
149extern atomic_t fscache_n_op_deferred_release;
150extern atomic_t fscache_n_op_release;
151extern atomic_t fscache_n_op_gc;
David Howells5753c442009-11-19 18:11:19 +0000152extern atomic_t fscache_n_op_cancelled;
David Howellse3d4d282009-11-19 18:11:32 +0000153extern atomic_t fscache_n_op_rejected;
David Howells7394daa2009-04-03 16:42:37 +0100154
155extern atomic_t fscache_n_attr_changed;
156extern atomic_t fscache_n_attr_changed_ok;
157extern atomic_t fscache_n_attr_changed_nobufs;
158extern atomic_t fscache_n_attr_changed_nomem;
159extern atomic_t fscache_n_attr_changed_calls;
160
161extern atomic_t fscache_n_allocs;
162extern atomic_t fscache_n_allocs_ok;
163extern atomic_t fscache_n_allocs_wait;
164extern atomic_t fscache_n_allocs_nobufs;
David Howells5753c442009-11-19 18:11:19 +0000165extern atomic_t fscache_n_allocs_intr;
David Howells60d543c2009-11-19 18:11:45 +0000166extern atomic_t fscache_n_allocs_object_dead;
David Howells7394daa2009-04-03 16:42:37 +0100167extern atomic_t fscache_n_alloc_ops;
168extern atomic_t fscache_n_alloc_op_waits;
169
170extern atomic_t fscache_n_retrievals;
171extern atomic_t fscache_n_retrievals_ok;
172extern atomic_t fscache_n_retrievals_wait;
173extern atomic_t fscache_n_retrievals_nodata;
174extern atomic_t fscache_n_retrievals_nobufs;
175extern atomic_t fscache_n_retrievals_intr;
176extern atomic_t fscache_n_retrievals_nomem;
David Howells60d543c2009-11-19 18:11:45 +0000177extern atomic_t fscache_n_retrievals_object_dead;
David Howells7394daa2009-04-03 16:42:37 +0100178extern atomic_t fscache_n_retrieval_ops;
179extern atomic_t fscache_n_retrieval_op_waits;
180
181extern atomic_t fscache_n_stores;
182extern atomic_t fscache_n_stores_ok;
183extern atomic_t fscache_n_stores_again;
184extern atomic_t fscache_n_stores_nobufs;
185extern atomic_t fscache_n_stores_oom;
186extern atomic_t fscache_n_store_ops;
187extern atomic_t fscache_n_store_calls;
David Howells1bccf512009-11-19 18:11:25 +0000188extern atomic_t fscache_n_store_pages;
189extern atomic_t fscache_n_store_radix_deletes;
190extern atomic_t fscache_n_store_pages_over_limit;
David Howells7394daa2009-04-03 16:42:37 +0100191
David Howells201a1542009-11-19 18:11:35 +0000192extern atomic_t fscache_n_store_vmscan_not_storing;
193extern atomic_t fscache_n_store_vmscan_gone;
194extern atomic_t fscache_n_store_vmscan_busy;
195extern atomic_t fscache_n_store_vmscan_cancelled;
196
David Howells7394daa2009-04-03 16:42:37 +0100197extern atomic_t fscache_n_marks;
198extern atomic_t fscache_n_uncaches;
199
200extern atomic_t fscache_n_acquires;
201extern atomic_t fscache_n_acquires_null;
202extern atomic_t fscache_n_acquires_no_cache;
203extern atomic_t fscache_n_acquires_ok;
204extern atomic_t fscache_n_acquires_nobufs;
205extern atomic_t fscache_n_acquires_oom;
206
207extern atomic_t fscache_n_updates;
208extern atomic_t fscache_n_updates_null;
209extern atomic_t fscache_n_updates_run;
210
211extern atomic_t fscache_n_relinquishes;
212extern atomic_t fscache_n_relinquishes_null;
213extern atomic_t fscache_n_relinquishes_waitcrt;
David Howells2175bb02009-11-19 18:11:38 +0000214extern atomic_t fscache_n_relinquishes_retire;
David Howells7394daa2009-04-03 16:42:37 +0100215
216extern atomic_t fscache_n_cookie_index;
217extern atomic_t fscache_n_cookie_data;
218extern atomic_t fscache_n_cookie_special;
219
220extern atomic_t fscache_n_object_alloc;
221extern atomic_t fscache_n_object_no_alloc;
222extern atomic_t fscache_n_object_lookups;
223extern atomic_t fscache_n_object_lookups_negative;
224extern atomic_t fscache_n_object_lookups_positive;
David Howellsfee096d2009-11-19 18:12:05 +0000225extern atomic_t fscache_n_object_lookups_timed_out;
David Howells7394daa2009-04-03 16:42:37 +0100226extern atomic_t fscache_n_object_created;
227extern atomic_t fscache_n_object_avail;
228extern atomic_t fscache_n_object_dead;
229
230extern atomic_t fscache_n_checkaux_none;
231extern atomic_t fscache_n_checkaux_okay;
232extern atomic_t fscache_n_checkaux_update;
233extern atomic_t fscache_n_checkaux_obsolete;
234
David Howells52bd75f2009-11-19 18:11:08 +0000235extern atomic_t fscache_n_cop_alloc_object;
236extern atomic_t fscache_n_cop_lookup_object;
237extern atomic_t fscache_n_cop_lookup_complete;
238extern atomic_t fscache_n_cop_grab_object;
239extern atomic_t fscache_n_cop_update_object;
240extern atomic_t fscache_n_cop_drop_object;
241extern atomic_t fscache_n_cop_put_object;
242extern atomic_t fscache_n_cop_sync_cache;
243extern atomic_t fscache_n_cop_attr_changed;
244extern atomic_t fscache_n_cop_read_or_alloc_page;
245extern atomic_t fscache_n_cop_read_or_alloc_pages;
246extern atomic_t fscache_n_cop_allocate_page;
247extern atomic_t fscache_n_cop_allocate_pages;
248extern atomic_t fscache_n_cop_write_page;
249extern atomic_t fscache_n_cop_uncache_page;
250extern atomic_t fscache_n_cop_dissociate_pages;
251
David Howells7394daa2009-04-03 16:42:37 +0100252static inline void fscache_stat(atomic_t *stat)
253{
254 atomic_inc(stat);
255}
256
David Howells52bd75f2009-11-19 18:11:08 +0000257static inline void fscache_stat_d(atomic_t *stat)
258{
259 atomic_dec(stat);
260}
261
David Howells60d543c2009-11-19 18:11:45 +0000262#define __fscache_stat(stat) (stat)
263
David Howells7394daa2009-04-03 16:42:37 +0100264extern const struct file_operations fscache_stats_fops;
265#else
266
David Howells60d543c2009-11-19 18:11:45 +0000267#define __fscache_stat(stat) (NULL)
David Howells7394daa2009-04-03 16:42:37 +0100268#define fscache_stat(stat) do {} while (0)
David Howells4fa9f4e2009-11-20 21:50:44 +0000269#define fscache_stat_d(stat) do {} while (0)
David Howells7394daa2009-04-03 16:42:37 +0100270#endif
271
David Howells0e04d4c2009-04-03 16:42:37 +0100272/*
273 * raise an event on an object
274 * - if the event is not masked for that object, then the object is
275 * queued for attention by the thread pool.
276 */
277static inline void fscache_raise_event(struct fscache_object *object,
278 unsigned event)
279{
David Howells36c95592009-04-03 16:42:38 +0100280 if (!test_and_set_bit(event, &object->events) &&
281 test_bit(event, &object->event_mask))
282 fscache_enqueue_object(object);
283}
284
285/*
286 * drop a reference to a cookie
287 */
288static inline void fscache_cookie_put(struct fscache_cookie *cookie)
289{
290 BUG_ON(atomic_read(&cookie->usage) <= 0);
291 if (atomic_dec_and_test(&cookie->usage))
292 __fscache_cookie_put(cookie);
David Howells0e04d4c2009-04-03 16:42:37 +0100293}
294
David Howellsb5108822009-04-03 16:42:39 +0100295/*
296 * get an extra reference to a netfs retrieval context
297 */
298static inline
299void *fscache_get_context(struct fscache_cookie *cookie, void *context)
300{
301 if (cookie->def->get_context)
302 cookie->def->get_context(cookie->netfs_data, context);
303 return context;
304}
305
306/*
307 * release a reference to a netfs retrieval context
308 */
309static inline
310void fscache_put_context(struct fscache_cookie *cookie, void *context)
311{
312 if (cookie->def->put_context)
313 cookie->def->put_context(cookie->netfs_data, context);
314}
315
David Howells06b3db12009-04-03 16:42:36 +0100316/*****************************************************************************/
317/*
318 * debug tracing
319 */
320#define dbgprintk(FMT, ...) \
321 printk(KERN_DEBUG "[%-6.6s] "FMT"\n", current->comm, ##__VA_ARGS__)
322
323/* make sure we maintain the format strings, even when debugging is disabled */
324static inline __attribute__((format(printf, 1, 2)))
325void _dbprintk(const char *fmt, ...)
326{
327}
328
329#define kenter(FMT, ...) dbgprintk("==> %s("FMT")", __func__, ##__VA_ARGS__)
330#define kleave(FMT, ...) dbgprintk("<== %s()"FMT"", __func__, ##__VA_ARGS__)
331#define kdebug(FMT, ...) dbgprintk(FMT, ##__VA_ARGS__)
332
333#define kjournal(FMT, ...) _dbprintk(FMT, ##__VA_ARGS__)
334
335#ifdef __KDEBUG
336#define _enter(FMT, ...) kenter(FMT, ##__VA_ARGS__)
337#define _leave(FMT, ...) kleave(FMT, ##__VA_ARGS__)
338#define _debug(FMT, ...) kdebug(FMT, ##__VA_ARGS__)
339
340#elif defined(CONFIG_FSCACHE_DEBUG)
341#define _enter(FMT, ...) \
342do { \
343 if (__do_kdebug(ENTER)) \
344 kenter(FMT, ##__VA_ARGS__); \
345} while (0)
346
347#define _leave(FMT, ...) \
348do { \
349 if (__do_kdebug(LEAVE)) \
350 kleave(FMT, ##__VA_ARGS__); \
351} while (0)
352
353#define _debug(FMT, ...) \
354do { \
355 if (__do_kdebug(DEBUG)) \
356 kdebug(FMT, ##__VA_ARGS__); \
357} while (0)
358
359#else
360#define _enter(FMT, ...) _dbprintk("==> %s("FMT")", __func__, ##__VA_ARGS__)
361#define _leave(FMT, ...) _dbprintk("<== %s()"FMT"", __func__, ##__VA_ARGS__)
362#define _debug(FMT, ...) _dbprintk(FMT, ##__VA_ARGS__)
363#endif
364
365/*
366 * determine whether a particular optional debugging point should be logged
367 * - we need to go through three steps to persuade cpp to correctly join the
368 * shorthand in FSCACHE_DEBUG_LEVEL with its prefix
369 */
370#define ____do_kdebug(LEVEL, POINT) \
371 unlikely((fscache_debug & \
372 (FSCACHE_POINT_##POINT << (FSCACHE_DEBUG_ ## LEVEL * 3))))
373#define ___do_kdebug(LEVEL, POINT) \
374 ____do_kdebug(LEVEL, POINT)
375#define __do_kdebug(POINT) \
376 ___do_kdebug(FSCACHE_DEBUG_LEVEL, POINT)
377
378#define FSCACHE_DEBUG_CACHE 0
379#define FSCACHE_DEBUG_COOKIE 1
380#define FSCACHE_DEBUG_PAGE 2
381#define FSCACHE_DEBUG_OPERATION 3
382
383#define FSCACHE_POINT_ENTER 1
384#define FSCACHE_POINT_LEAVE 2
385#define FSCACHE_POINT_DEBUG 4
386
387#ifndef FSCACHE_DEBUG_LEVEL
388#define FSCACHE_DEBUG_LEVEL CACHE
389#endif
390
391/*
392 * assertions
393 */
394#if 1 /* defined(__KDEBUGALL) */
395
396#define ASSERT(X) \
397do { \
398 if (unlikely(!(X))) { \
399 printk(KERN_ERR "\n"); \
400 printk(KERN_ERR "FS-Cache: Assertion failed\n"); \
401 BUG(); \
402 } \
403} while (0)
404
405#define ASSERTCMP(X, OP, Y) \
406do { \
407 if (unlikely(!((X) OP (Y)))) { \
408 printk(KERN_ERR "\n"); \
409 printk(KERN_ERR "FS-Cache: Assertion failed\n"); \
410 printk(KERN_ERR "%lx " #OP " %lx is false\n", \
411 (unsigned long)(X), (unsigned long)(Y)); \
412 BUG(); \
413 } \
414} while (0)
415
416#define ASSERTIF(C, X) \
417do { \
418 if (unlikely((C) && !(X))) { \
419 printk(KERN_ERR "\n"); \
420 printk(KERN_ERR "FS-Cache: Assertion failed\n"); \
421 BUG(); \
422 } \
423} while (0)
424
425#define ASSERTIFCMP(C, X, OP, Y) \
426do { \
427 if (unlikely((C) && !((X) OP (Y)))) { \
428 printk(KERN_ERR "\n"); \
429 printk(KERN_ERR "FS-Cache: Assertion failed\n"); \
430 printk(KERN_ERR "%lx " #OP " %lx is false\n", \
431 (unsigned long)(X), (unsigned long)(Y)); \
432 BUG(); \
433 } \
434} while (0)
435
436#else
437
438#define ASSERT(X) do {} while (0)
439#define ASSERTCMP(X, OP, Y) do {} while (0)
440#define ASSERTIF(C, X) do {} while (0)
441#define ASSERTIFCMP(C, X, OP, Y) do {} while (0)
442
443#endif /* assert or not */