mirror of
https://github.com/lkl/linux.git
synced 2025-12-19 16:13:19 +09:00
fscache: Provide read/write stat counters for the cache
Provide read/write stat counters for the cache backend to use. Signed-off-by: David Howells <dhowells@redhat.com> Reviewed-by: Jeff Layton <jlayton@kernel.org> cc: linux-cachefs@redhat.com Link: https://lore.kernel.org/r/163819609532.215744.10821082637727410554.stgit@warthog.procyon.org.uk/ # v1 Link: https://lore.kernel.org/r/163906912598.143852.12960327989649429069.stgit@warthog.procyon.org.uk/ # v2 Link: https://lore.kernel.org/r/163967113830.1823006.3222957649202368162.stgit@warthog.procyon.org.uk/ # v3 Link: https://lore.kernel.org/r/164021517502.640689.6077928311710357342.stgit@warthog.procyon.org.uk/ # v4
This commit is contained in:
@@ -179,4 +179,14 @@ static inline void fscache_wait_for_objects(struct fscache_cache *cache)
|
||||
atomic_read(&cache->object_count) == 0);
|
||||
}
|
||||
|
||||
#ifdef CONFIG_FSCACHE_STATS
|
||||
extern atomic_t fscache_n_read;
|
||||
extern atomic_t fscache_n_write;
|
||||
#define fscache_count_read() atomic_inc(&fscache_n_read)
|
||||
#define fscache_count_write() atomic_inc(&fscache_n_write)
|
||||
#else
|
||||
#define fscache_count_read() do {} while(0)
|
||||
#define fscache_count_write() do {} while(0)
|
||||
#endif
|
||||
|
||||
#endif /* _LINUX_FSCACHE_CACHE_H */
|
||||
|
||||
Reference in New Issue
Block a user