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