internal.h 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454
  1. /* 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. * Lock order, in the order in which multiple locks should be obtained:
  13. * - fscache_addremove_sem
  14. * - cookie->lock
  15. * - cookie->parent->lock
  16. * - cache->object_list_lock
  17. * - object->lock
  18. * - object->parent->lock
  19. * - cookie->stores_lock
  20. * - fscache_thread_lock
  21. *
  22. */
  23. #include <linux/fscache-cache.h>
  24. #include <linux/sched.h>
  25. #define FSCACHE_MIN_THREADS 4
  26. #define FSCACHE_MAX_THREADS 32
  27. /*
  28. * cache.c
  29. */
  30. extern struct list_head fscache_cache_list;
  31. extern struct rw_semaphore fscache_addremove_sem;
  32. extern struct fscache_cache *fscache_select_cache_for_object(
  33. struct fscache_cookie *);
  34. /*
  35. * cookie.c
  36. */
  37. extern struct kmem_cache *fscache_cookie_jar;
  38. extern void fscache_cookie_init_once(void *);
  39. extern void __fscache_cookie_put(struct fscache_cookie *);
  40. /*
  41. * fsdef.c
  42. */
  43. extern struct fscache_cookie fscache_fsdef_index;
  44. extern struct fscache_cookie_def fscache_fsdef_netfs_def;
  45. /*
  46. * histogram.c
  47. */
  48. #ifdef CONFIG_FSCACHE_HISTOGRAM
  49. extern atomic_t fscache_obj_instantiate_histogram[HZ];
  50. extern atomic_t fscache_objs_histogram[HZ];
  51. extern atomic_t fscache_ops_histogram[HZ];
  52. extern atomic_t fscache_retrieval_delay_histogram[HZ];
  53. extern atomic_t fscache_retrieval_histogram[HZ];
  54. static inline void fscache_hist(atomic_t histogram[], unsigned long start_jif)
  55. {
  56. unsigned long jif = jiffies - start_jif;
  57. if (jif >= HZ)
  58. jif = HZ - 1;
  59. atomic_inc(&histogram[jif]);
  60. }
  61. extern const struct file_operations fscache_histogram_fops;
  62. #else
  63. #define fscache_hist(hist, start_jif) do {} while (0)
  64. #endif
  65. /*
  66. * main.c
  67. */
  68. extern unsigned fscache_defer_lookup;
  69. extern unsigned fscache_defer_create;
  70. extern unsigned fscache_debug;
  71. extern struct kobject *fscache_root;
  72. extern struct workqueue_struct *fscache_object_wq;
  73. extern struct workqueue_struct *fscache_op_wq;
  74. DECLARE_PER_CPU(wait_queue_head_t, fscache_object_cong_wait);
  75. static inline bool fscache_object_congested(void)
  76. {
  77. return workqueue_congested(WORK_CPU_UNBOUND, fscache_object_wq);
  78. }
  79. extern int fscache_wait_bit(void *);
  80. extern int fscache_wait_bit_interruptible(void *);
  81. extern int fscache_wait_atomic_t(atomic_t *);
  82. /*
  83. * object.c
  84. */
  85. extern void fscache_enqueue_object(struct fscache_object *);
  86. /*
  87. * object-list.c
  88. */
  89. #ifdef CONFIG_FSCACHE_OBJECT_LIST
  90. extern const struct file_operations fscache_objlist_fops;
  91. extern void fscache_objlist_add(struct fscache_object *);
  92. extern void fscache_objlist_remove(struct fscache_object *);
  93. #else
  94. #define fscache_objlist_add(object) do {} while(0)
  95. #define fscache_objlist_remove(object) do {} while(0)
  96. #endif
  97. /*
  98. * operation.c
  99. */
  100. extern int fscache_submit_exclusive_op(struct fscache_object *,
  101. struct fscache_operation *);
  102. extern int fscache_submit_op(struct fscache_object *,
  103. struct fscache_operation *);
  104. extern int fscache_cancel_op(struct fscache_operation *,
  105. void (*)(struct fscache_operation *));
  106. extern void fscache_cancel_all_ops(struct fscache_object *);
  107. extern void fscache_abort_object(struct fscache_object *);
  108. extern void fscache_start_operations(struct fscache_object *);
  109. extern void fscache_operation_gc(struct work_struct *);
  110. /*
  111. * page.c
  112. */
  113. extern void fscache_invalidate_writes(struct fscache_cookie *);
  114. /*
  115. * proc.c
  116. */
  117. #ifdef CONFIG_PROC_FS
  118. extern int __init fscache_proc_init(void);
  119. extern void fscache_proc_cleanup(void);
  120. #else
  121. #define fscache_proc_init() (0)
  122. #define fscache_proc_cleanup() do {} while (0)
  123. #endif
  124. /*
  125. * stats.c
  126. */
  127. #ifdef CONFIG_FSCACHE_STATS
  128. extern atomic_t fscache_n_ops_processed[FSCACHE_MAX_THREADS];
  129. extern atomic_t fscache_n_objs_processed[FSCACHE_MAX_THREADS];
  130. extern atomic_t fscache_n_op_pend;
  131. extern atomic_t fscache_n_op_run;
  132. extern atomic_t fscache_n_op_enqueue;
  133. extern atomic_t fscache_n_op_deferred_release;
  134. extern atomic_t fscache_n_op_release;
  135. extern atomic_t fscache_n_op_gc;
  136. extern atomic_t fscache_n_op_cancelled;
  137. extern atomic_t fscache_n_op_rejected;
  138. extern atomic_t fscache_n_attr_changed;
  139. extern atomic_t fscache_n_attr_changed_ok;
  140. extern atomic_t fscache_n_attr_changed_nobufs;
  141. extern atomic_t fscache_n_attr_changed_nomem;
  142. extern atomic_t fscache_n_attr_changed_calls;
  143. extern atomic_t fscache_n_allocs;
  144. extern atomic_t fscache_n_allocs_ok;
  145. extern atomic_t fscache_n_allocs_wait;
  146. extern atomic_t fscache_n_allocs_nobufs;
  147. extern atomic_t fscache_n_allocs_intr;
  148. extern atomic_t fscache_n_allocs_object_dead;
  149. extern atomic_t fscache_n_alloc_ops;
  150. extern atomic_t fscache_n_alloc_op_waits;
  151. extern atomic_t fscache_n_retrievals;
  152. extern atomic_t fscache_n_retrievals_ok;
  153. extern atomic_t fscache_n_retrievals_wait;
  154. extern atomic_t fscache_n_retrievals_nodata;
  155. extern atomic_t fscache_n_retrievals_nobufs;
  156. extern atomic_t fscache_n_retrievals_intr;
  157. extern atomic_t fscache_n_retrievals_nomem;
  158. extern atomic_t fscache_n_retrievals_object_dead;
  159. extern atomic_t fscache_n_retrieval_ops;
  160. extern atomic_t fscache_n_retrieval_op_waits;
  161. extern atomic_t fscache_n_stores;
  162. extern atomic_t fscache_n_stores_ok;
  163. extern atomic_t fscache_n_stores_again;
  164. extern atomic_t fscache_n_stores_nobufs;
  165. extern atomic_t fscache_n_stores_oom;
  166. extern atomic_t fscache_n_store_ops;
  167. extern atomic_t fscache_n_store_calls;
  168. extern atomic_t fscache_n_store_pages;
  169. extern atomic_t fscache_n_store_radix_deletes;
  170. extern atomic_t fscache_n_store_pages_over_limit;
  171. extern atomic_t fscache_n_store_vmscan_not_storing;
  172. extern atomic_t fscache_n_store_vmscan_gone;
  173. extern atomic_t fscache_n_store_vmscan_busy;
  174. extern atomic_t fscache_n_store_vmscan_cancelled;
  175. extern atomic_t fscache_n_store_vmscan_wait;
  176. extern atomic_t fscache_n_marks;
  177. extern atomic_t fscache_n_uncaches;
  178. extern atomic_t fscache_n_acquires;
  179. extern atomic_t fscache_n_acquires_null;
  180. extern atomic_t fscache_n_acquires_no_cache;
  181. extern atomic_t fscache_n_acquires_ok;
  182. extern atomic_t fscache_n_acquires_nobufs;
  183. extern atomic_t fscache_n_acquires_oom;
  184. extern atomic_t fscache_n_invalidates;
  185. extern atomic_t fscache_n_invalidates_run;
  186. extern atomic_t fscache_n_updates;
  187. extern atomic_t fscache_n_updates_null;
  188. extern atomic_t fscache_n_updates_run;
  189. extern atomic_t fscache_n_relinquishes;
  190. extern atomic_t fscache_n_relinquishes_null;
  191. extern atomic_t fscache_n_relinquishes_waitcrt;
  192. extern atomic_t fscache_n_relinquishes_retire;
  193. extern atomic_t fscache_n_cookie_index;
  194. extern atomic_t fscache_n_cookie_data;
  195. extern atomic_t fscache_n_cookie_special;
  196. extern atomic_t fscache_n_object_alloc;
  197. extern atomic_t fscache_n_object_no_alloc;
  198. extern atomic_t fscache_n_object_lookups;
  199. extern atomic_t fscache_n_object_lookups_negative;
  200. extern atomic_t fscache_n_object_lookups_positive;
  201. extern atomic_t fscache_n_object_lookups_timed_out;
  202. extern atomic_t fscache_n_object_created;
  203. extern atomic_t fscache_n_object_avail;
  204. extern atomic_t fscache_n_object_dead;
  205. extern atomic_t fscache_n_checkaux_none;
  206. extern atomic_t fscache_n_checkaux_okay;
  207. extern atomic_t fscache_n_checkaux_update;
  208. extern atomic_t fscache_n_checkaux_obsolete;
  209. extern atomic_t fscache_n_cop_alloc_object;
  210. extern atomic_t fscache_n_cop_lookup_object;
  211. extern atomic_t fscache_n_cop_lookup_complete;
  212. extern atomic_t fscache_n_cop_grab_object;
  213. extern atomic_t fscache_n_cop_invalidate_object;
  214. extern atomic_t fscache_n_cop_update_object;
  215. extern atomic_t fscache_n_cop_drop_object;
  216. extern atomic_t fscache_n_cop_put_object;
  217. extern atomic_t fscache_n_cop_sync_cache;
  218. extern atomic_t fscache_n_cop_attr_changed;
  219. extern atomic_t fscache_n_cop_read_or_alloc_page;
  220. extern atomic_t fscache_n_cop_read_or_alloc_pages;
  221. extern atomic_t fscache_n_cop_allocate_page;
  222. extern atomic_t fscache_n_cop_allocate_pages;
  223. extern atomic_t fscache_n_cop_write_page;
  224. extern atomic_t fscache_n_cop_uncache_page;
  225. extern atomic_t fscache_n_cop_dissociate_pages;
  226. static inline void fscache_stat(atomic_t *stat)
  227. {
  228. atomic_inc(stat);
  229. }
  230. static inline void fscache_stat_d(atomic_t *stat)
  231. {
  232. atomic_dec(stat);
  233. }
  234. #define __fscache_stat(stat) (stat)
  235. extern const struct file_operations fscache_stats_fops;
  236. #else
  237. #define __fscache_stat(stat) (NULL)
  238. #define fscache_stat(stat) do {} while (0)
  239. #define fscache_stat_d(stat) do {} while (0)
  240. #endif
  241. /*
  242. * raise an event on an object
  243. * - if the event is not masked for that object, then the object is
  244. * queued for attention by the thread pool.
  245. */
  246. static inline void fscache_raise_event(struct fscache_object *object,
  247. unsigned event)
  248. {
  249. BUG_ON(event >= NR_FSCACHE_OBJECT_EVENTS);
  250. #if 0
  251. printk("*** fscache_raise_event(OBJ%d{%lx},%x)\n",
  252. object->debug_id, object->event_mask, (1 << event));
  253. #endif
  254. if (!test_and_set_bit(event, &object->events) &&
  255. test_bit(event, &object->event_mask))
  256. fscache_enqueue_object(object);
  257. }
  258. /*
  259. * drop a reference to a cookie
  260. */
  261. static inline void fscache_cookie_put(struct fscache_cookie *cookie)
  262. {
  263. BUG_ON(atomic_read(&cookie->usage) <= 0);
  264. if (atomic_dec_and_test(&cookie->usage))
  265. __fscache_cookie_put(cookie);
  266. }
  267. /*
  268. * get an extra reference to a netfs retrieval context
  269. */
  270. static inline
  271. void *fscache_get_context(struct fscache_cookie *cookie, void *context)
  272. {
  273. if (cookie->def->get_context)
  274. cookie->def->get_context(cookie->netfs_data, context);
  275. return context;
  276. }
  277. /*
  278. * release a reference to a netfs retrieval context
  279. */
  280. static inline
  281. void fscache_put_context(struct fscache_cookie *cookie, void *context)
  282. {
  283. if (cookie->def->put_context)
  284. cookie->def->put_context(cookie->netfs_data, context);
  285. }
  286. /*****************************************************************************/
  287. /*
  288. * debug tracing
  289. */
  290. #define dbgprintk(FMT, ...) \
  291. printk(KERN_DEBUG "[%-6.6s] "FMT"\n", current->comm, ##__VA_ARGS__)
  292. #define kenter(FMT, ...) dbgprintk("==> %s("FMT")", __func__, ##__VA_ARGS__)
  293. #define kleave(FMT, ...) dbgprintk("<== %s()"FMT"", __func__, ##__VA_ARGS__)
  294. #define kdebug(FMT, ...) dbgprintk(FMT, ##__VA_ARGS__)
  295. #define kjournal(FMT, ...) no_printk(FMT, ##__VA_ARGS__)
  296. #ifdef __KDEBUG
  297. #define _enter(FMT, ...) kenter(FMT, ##__VA_ARGS__)
  298. #define _leave(FMT, ...) kleave(FMT, ##__VA_ARGS__)
  299. #define _debug(FMT, ...) kdebug(FMT, ##__VA_ARGS__)
  300. #elif defined(CONFIG_FSCACHE_DEBUG)
  301. #define _enter(FMT, ...) \
  302. do { \
  303. if (__do_kdebug(ENTER)) \
  304. kenter(FMT, ##__VA_ARGS__); \
  305. } while (0)
  306. #define _leave(FMT, ...) \
  307. do { \
  308. if (__do_kdebug(LEAVE)) \
  309. kleave(FMT, ##__VA_ARGS__); \
  310. } while (0)
  311. #define _debug(FMT, ...) \
  312. do { \
  313. if (__do_kdebug(DEBUG)) \
  314. kdebug(FMT, ##__VA_ARGS__); \
  315. } while (0)
  316. #else
  317. #define _enter(FMT, ...) no_printk("==> %s("FMT")", __func__, ##__VA_ARGS__)
  318. #define _leave(FMT, ...) no_printk("<== %s()"FMT"", __func__, ##__VA_ARGS__)
  319. #define _debug(FMT, ...) no_printk(FMT, ##__VA_ARGS__)
  320. #endif
  321. /*
  322. * determine whether a particular optional debugging point should be logged
  323. * - we need to go through three steps to persuade cpp to correctly join the
  324. * shorthand in FSCACHE_DEBUG_LEVEL with its prefix
  325. */
  326. #define ____do_kdebug(LEVEL, POINT) \
  327. unlikely((fscache_debug & \
  328. (FSCACHE_POINT_##POINT << (FSCACHE_DEBUG_ ## LEVEL * 3))))
  329. #define ___do_kdebug(LEVEL, POINT) \
  330. ____do_kdebug(LEVEL, POINT)
  331. #define __do_kdebug(POINT) \
  332. ___do_kdebug(FSCACHE_DEBUG_LEVEL, POINT)
  333. #define FSCACHE_DEBUG_CACHE 0
  334. #define FSCACHE_DEBUG_COOKIE 1
  335. #define FSCACHE_DEBUG_PAGE 2
  336. #define FSCACHE_DEBUG_OPERATION 3
  337. #define FSCACHE_POINT_ENTER 1
  338. #define FSCACHE_POINT_LEAVE 2
  339. #define FSCACHE_POINT_DEBUG 4
  340. #ifndef FSCACHE_DEBUG_LEVEL
  341. #define FSCACHE_DEBUG_LEVEL CACHE
  342. #endif
  343. /*
  344. * assertions
  345. */
  346. #if 1 /* defined(__KDEBUGALL) */
  347. #define ASSERT(X) \
  348. do { \
  349. if (unlikely(!(X))) { \
  350. printk(KERN_ERR "\n"); \
  351. printk(KERN_ERR "FS-Cache: Assertion failed\n"); \
  352. BUG(); \
  353. } \
  354. } while (0)
  355. #define ASSERTCMP(X, OP, Y) \
  356. do { \
  357. if (unlikely(!((X) OP (Y)))) { \
  358. printk(KERN_ERR "\n"); \
  359. printk(KERN_ERR "FS-Cache: Assertion failed\n"); \
  360. printk(KERN_ERR "%lx " #OP " %lx is false\n", \
  361. (unsigned long)(X), (unsigned long)(Y)); \
  362. BUG(); \
  363. } \
  364. } while (0)
  365. #define ASSERTIF(C, X) \
  366. do { \
  367. if (unlikely((C) && !(X))) { \
  368. printk(KERN_ERR "\n"); \
  369. printk(KERN_ERR "FS-Cache: Assertion failed\n"); \
  370. BUG(); \
  371. } \
  372. } while (0)
  373. #define ASSERTIFCMP(C, X, OP, Y) \
  374. do { \
  375. if (unlikely((C) && !((X) OP (Y)))) { \
  376. printk(KERN_ERR "\n"); \
  377. printk(KERN_ERR "FS-Cache: Assertion failed\n"); \
  378. printk(KERN_ERR "%lx " #OP " %lx is false\n", \
  379. (unsigned long)(X), (unsigned long)(Y)); \
  380. BUG(); \
  381. } \
  382. } while (0)
  383. #else
  384. #define ASSERT(X) do {} while (0)
  385. #define ASSERTCMP(X, OP, Y) do {} while (0)
  386. #define ASSERTIF(C, X) do {} while (0)
  387. #define ASSERTIFCMP(C, X, OP, Y) do {} while (0)
  388. #endif /* assert or not */