Lines Matching full:fs
2 /* FS-Cache statistics viewing interface
15 * initialise the /proc/fs/fscache/ directory
21 if (!proc_mkdir("fs/fscache", NULL)) in fscache_proc_init()
25 if (!proc_create_single("fs/fscache/stats", S_IFREG | 0444, NULL, in fscache_proc_init()
31 if (!proc_create_seq("fs/fscache/histogram", S_IFREG | 0444, NULL, in fscache_proc_init()
37 if (!proc_create("fs/fscache/objects", S_IFREG | 0444, NULL, in fscache_proc_init()
49 remove_proc_entry("fs/fscache/histogram", NULL); in fscache_proc_init()
53 remove_proc_entry("fs/fscache/stats", NULL); in fscache_proc_init()
56 remove_proc_entry("fs/fscache", NULL); in fscache_proc_init()
63 * clean up the /proc/fs/fscache/ directory
68 remove_proc_entry("fs/fscache/objects", NULL); in fscache_proc_cleanup()
71 remove_proc_entry("fs/fscache/histogram", NULL); in fscache_proc_cleanup()
74 remove_proc_entry("fs/fscache/stats", NULL); in fscache_proc_cleanup()
76 remove_proc_entry("fs/fscache", NULL); in fscache_proc_cleanup()