1 /* SPDX-License-Identifier: GPL-2.0-or-later */
2 /* Internal definitions for FS-Cache
4 * Copyright (C) 2021 Red Hat, Inc. All Rights Reserved.
5 * Written by David Howells (dhowells@redhat.com)
12 #define pr_fmt(fmt) "FS-Cache: " fmt
14 #include <linux/slab.h>
15 #include <linux/fscache-cache.h>
16 #include <trace/events/fscache.h>
17 #include <linux/sched.h>
18 #include <linux/seq_file.h>
24 extern const struct seq_operations fscache_caches_seq_ops;
26 bool fscache_begin_cache_access(struct fscache_cache *cache, enum fscache_access_trace why);
27 void fscache_end_cache_access(struct fscache_cache *cache, enum fscache_access_trace why);
28 struct fscache_cache *fscache_lookup_cache(const char *name, bool is_cache);
29 void fscache_put_cache(struct fscache_cache *cache, enum fscache_cache_trace where);
31 static inline enum fscache_cache_state fscache_cache_state(const struct fscache_cache *cache)
33 return smp_load_acquire(&cache->state);
36 static inline bool fscache_cache_is_live(const struct fscache_cache *cache)
38 return fscache_cache_state(cache) == FSCACHE_CACHE_IS_ACTIVE;
41 static inline void fscache_set_cache_state(struct fscache_cache *cache,
42 enum fscache_cache_state new_state)
44 smp_store_release(&cache->state, new_state);
48 static inline bool fscache_set_cache_state_maybe(struct fscache_cache *cache,
49 enum fscache_cache_state old_state,
50 enum fscache_cache_state new_state)
52 return try_cmpxchg_release(&cache->state, &old_state, new_state);
58 extern struct kmem_cache *fscache_cookie_jar;
59 extern const struct seq_operations fscache_cookies_seq_ops;
60 extern struct timer_list fscache_cookie_lru_timer;
62 extern void fscache_print_cookie(struct fscache_cookie *cookie, char prefix);
63 extern bool fscache_begin_cookie_access(struct fscache_cookie *cookie,
64 enum fscache_access_trace why);
66 static inline void fscache_see_cookie(struct fscache_cookie *cookie,
67 enum fscache_cookie_trace where)
69 trace_fscache_cookie(cookie->debug_id, refcount_read(&cookie->ref),
76 extern unsigned fscache_debug;
78 extern unsigned int fscache_hash(unsigned int salt, const void *data, size_t len);
84 extern int __init fscache_proc_init(void);
85 extern void fscache_proc_cleanup(void);
87 #define fscache_proc_init() (0)
88 #define fscache_proc_cleanup() do {} while (0)
94 #ifdef CONFIG_FSCACHE_STATS
95 extern atomic_t fscache_n_volumes;
96 extern atomic_t fscache_n_volumes_collision;
97 extern atomic_t fscache_n_volumes_nomem;
98 extern atomic_t fscache_n_cookies;
99 extern atomic_t fscache_n_cookies_lru;
100 extern atomic_t fscache_n_cookies_lru_expired;
101 extern atomic_t fscache_n_cookies_lru_removed;
102 extern atomic_t fscache_n_cookies_lru_dropped;
104 extern atomic_t fscache_n_acquires;
105 extern atomic_t fscache_n_acquires_ok;
106 extern atomic_t fscache_n_acquires_oom;
108 extern atomic_t fscache_n_invalidates;
110 extern atomic_t fscache_n_relinquishes;
111 extern atomic_t fscache_n_relinquishes_retire;
112 extern atomic_t fscache_n_relinquishes_dropped;
114 extern atomic_t fscache_n_resizes;
115 extern atomic_t fscache_n_resizes_null;
117 static inline void fscache_stat(atomic_t *stat)
122 static inline void fscache_stat_d(atomic_t *stat)
127 #define __fscache_stat(stat) (stat)
129 int fscache_stats_show(struct seq_file *m, void *v);
132 #define __fscache_stat(stat) (NULL)
133 #define fscache_stat(stat) do {} while (0)
134 #define fscache_stat_d(stat) do {} while (0)
140 extern const struct seq_operations fscache_volumes_seq_ops;
142 struct fscache_volume *fscache_get_volume(struct fscache_volume *volume,
143 enum fscache_volume_trace where);
144 void fscache_put_volume(struct fscache_volume *volume,
145 enum fscache_volume_trace where);
146 bool fscache_begin_volume_access(struct fscache_volume *volume,
147 struct fscache_cookie *cookie,
148 enum fscache_access_trace why);
149 void fscache_create_volume(struct fscache_volume *volume, bool wait);
152 /*****************************************************************************/
156 #define dbgprintk(FMT, ...) \
157 printk("[%-6.6s] "FMT"\n", current->comm, ##__VA_ARGS__)
159 #define kenter(FMT, ...) dbgprintk("==> %s("FMT")", __func__, ##__VA_ARGS__)
160 #define kleave(FMT, ...) dbgprintk("<== %s()"FMT"", __func__, ##__VA_ARGS__)
161 #define kdebug(FMT, ...) dbgprintk(FMT, ##__VA_ARGS__)
163 #define kjournal(FMT, ...) no_printk(FMT, ##__VA_ARGS__)
166 #define _enter(FMT, ...) kenter(FMT, ##__VA_ARGS__)
167 #define _leave(FMT, ...) kleave(FMT, ##__VA_ARGS__)
168 #define _debug(FMT, ...) kdebug(FMT, ##__VA_ARGS__)
170 #elif defined(CONFIG_FSCACHE_DEBUG)
171 #define _enter(FMT, ...) \
173 if (__do_kdebug(ENTER)) \
174 kenter(FMT, ##__VA_ARGS__); \
177 #define _leave(FMT, ...) \
179 if (__do_kdebug(LEAVE)) \
180 kleave(FMT, ##__VA_ARGS__); \
183 #define _debug(FMT, ...) \
185 if (__do_kdebug(DEBUG)) \
186 kdebug(FMT, ##__VA_ARGS__); \
190 #define _enter(FMT, ...) no_printk("==> %s("FMT")", __func__, ##__VA_ARGS__)
191 #define _leave(FMT, ...) no_printk("<== %s()"FMT"", __func__, ##__VA_ARGS__)
192 #define _debug(FMT, ...) no_printk(FMT, ##__VA_ARGS__)
196 * determine whether a particular optional debugging point should be logged
197 * - we need to go through three steps to persuade cpp to correctly join the
198 * shorthand in FSCACHE_DEBUG_LEVEL with its prefix
200 #define ____do_kdebug(LEVEL, POINT) \
201 unlikely((fscache_debug & \
202 (FSCACHE_POINT_##POINT << (FSCACHE_DEBUG_ ## LEVEL * 3))))
203 #define ___do_kdebug(LEVEL, POINT) \
204 ____do_kdebug(LEVEL, POINT)
205 #define __do_kdebug(POINT) \
206 ___do_kdebug(FSCACHE_DEBUG_LEVEL, POINT)
208 #define FSCACHE_DEBUG_CACHE 0
209 #define FSCACHE_DEBUG_COOKIE 1
210 #define FSCACHE_DEBUG_OBJECT 2
211 #define FSCACHE_DEBUG_OPERATION 3
213 #define FSCACHE_POINT_ENTER 1
214 #define FSCACHE_POINT_LEAVE 2
215 #define FSCACHE_POINT_DEBUG 4
217 #ifndef FSCACHE_DEBUG_LEVEL
218 #define FSCACHE_DEBUG_LEVEL CACHE
224 #if 1 /* defined(__KDEBUGALL) */
228 if (unlikely(!(X))) { \
230 pr_err("Assertion failed\n"); \
235 #define ASSERTCMP(X, OP, Y) \
237 if (unlikely(!((X) OP (Y)))) { \
239 pr_err("Assertion failed\n"); \
240 pr_err("%lx " #OP " %lx is false\n", \
241 (unsigned long)(X), (unsigned long)(Y)); \
246 #define ASSERTIF(C, X) \
248 if (unlikely((C) && !(X))) { \
250 pr_err("Assertion failed\n"); \
255 #define ASSERTIFCMP(C, X, OP, Y) \
257 if (unlikely((C) && !((X) OP (Y)))) { \
259 pr_err("Assertion failed\n"); \
260 pr_err("%lx " #OP " %lx is false\n", \
261 (unsigned long)(X), (unsigned long)(Y)); \
268 #define ASSERT(X) do {} while (0)
269 #define ASSERTCMP(X, OP, Y) do {} while (0)
270 #define ASSERTIF(C, X) do {} while (0)
271 #define ASSERTIFCMP(C, X, OP, Y) do {} while (0)
273 #endif /* assert or not */