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()
24 if (!proc_create_seq("fs/fscache/cookies", S_IFREG | 0444, NULL, in fscache_proc_init()
29 if (!proc_create_single("fs/fscache/stats", S_IFREG | 0444, NULL, in fscache_proc_init()
35 if (!proc_create("fs/fscache/objects", S_IFREG | 0444, NULL, in fscache_proc_init()
47 remove_proc_entry("fs/fscache/stats", NULL); in fscache_proc_init()
50 remove_proc_entry("fs/fscache/cookies", NULL); in fscache_proc_init()
52 remove_proc_entry("fs/fscache", NULL); in fscache_proc_init()
59 * clean up the /proc/fs/fscache/ directory
64 remove_proc_entry("fs/fscache/objects", NULL); in fscache_proc_cleanup()
67 remove_proc_entry("fs/fscache/stats", NULL); in fscache_proc_cleanup()
69 remove_proc_entry("fs/fscache/cookies", NULL); in fscache_proc_cleanup()
70 remove_proc_entry("fs/fscache", NULL); in fscache_proc_cleanup()