diff options
author | David Howells <dhowells@redhat.com> | 2009-04-03 11:42:37 -0400 |
---|---|---|
committer | David Howells <dhowells@redhat.com> | 2009-04-03 11:42:37 -0400 |
commit | 7394daa8c61dfda4baa687f133748fa0b599b017 (patch) | |
tree | 32d2c55ed60596918ec62ce6ecca186337bf4660 /fs/fscache/Makefile | |
parent | 06b3db1b9bccdc8c2c743122a89745279e5ecc46 (diff) |
FS-Cache: Add use of /proc and presentation of statistics
Make FS-Cache create its /proc interface and present various statistical
information through it. Also provide the functions for updating this
information.
These features are enabled by:
CONFIG_FSCACHE_PROC
CONFIG_FSCACHE_STATS
CONFIG_FSCACHE_HISTOGRAM
The /proc directory for FS-Cache is also exported so that caching modules can
add their own statistics there too.
The FS-Cache module is loadable at this point, and the statistics files can be
examined by userspace:
cat /proc/fs/fscache/stats
cat /proc/fs/fscache/histogram
Signed-off-by: David Howells <dhowells@redhat.com>
Acked-by: Steve Dickson <steved@redhat.com>
Acked-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Acked-by: Al Viro <viro@zeniv.linux.org.uk>
Tested-by: Daire Byrne <Daire.Byrne@framestore.com>
Diffstat (limited to 'fs/fscache/Makefile')
-rw-r--r-- | fs/fscache/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/fs/fscache/Makefile b/fs/fscache/Makefile index f8038b83e0ef..1384823a160c 100644 --- a/fs/fscache/Makefile +++ b/fs/fscache/Makefile | |||
@@ -5,4 +5,8 @@ | |||
5 | fscache-y := \ | 5 | fscache-y := \ |
6 | main.o | 6 | main.o |
7 | 7 | ||
8 | fscache-$(CONFIG_PROC_FS) += proc.o | ||
9 | fscache-$(CONFIG_FSCACHE_STATS) += stats.o | ||
10 | fscache-$(CONFIG_FSCACHE_HISTOGRAM) += histogram.o | ||
11 | |||
8 | obj-$(CONFIG_FSCACHE) := fscache.o | 12 | obj-$(CONFIG_FSCACHE) := fscache.o |