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