diff options
author | Matthew Wilcox <willy@infradead.org> | 2018-07-03 11:08:35 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2018-07-03 16:44:45 -0400 |
commit | b7d3f17fa7a93250daec8c679bf8069715dbeb25 (patch) | |
tree | a28466c53c882ee7e492768551834acc37709ce1 | |
parent | 3fae17468a96f3a397dff633be82a42d89fb1b91 (diff) |
fs: Add more kernel-doc to the produced documentation
People have gone to all the effort of writing kernel-doc for these
functions; the least we can do is put them in the "Other functions"
part of the VFS documentation.
Signed-off-by: Matthew Wilcox <willy@infradead.org>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
-rw-r--r-- | Documentation/filesystems/index.rst | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/Documentation/filesystems/index.rst b/Documentation/filesystems/index.rst index 53b89d0edc15..46d1b1be3a51 100644 --- a/Documentation/filesystems/index.rst +++ b/Documentation/filesystems/index.rst | |||
@@ -71,6 +71,39 @@ Other Functions | |||
71 | .. kernel-doc:: fs/block_dev.c | 71 | .. kernel-doc:: fs/block_dev.c |
72 | :export: | 72 | :export: |
73 | 73 | ||
74 | .. kernel-doc:: fs/anon_inodes.c | ||
75 | :export: | ||
76 | |||
77 | .. kernel-doc:: fs/attr.c | ||
78 | :export: | ||
79 | |||
80 | .. kernel-doc:: fs/d_path.c | ||
81 | :export: | ||
82 | |||
83 | .. kernel-doc:: fs/dax.c | ||
84 | :export: | ||
85 | |||
86 | .. kernel-doc:: fs/direct-io.c | ||
87 | :export: | ||
88 | |||
89 | .. kernel-doc:: fs/file_table.c | ||
90 | :export: | ||
91 | |||
92 | .. kernel-doc:: fs/libfs.c | ||
93 | :export: | ||
94 | |||
95 | .. kernel-doc:: fs/posix_acl.c | ||
96 | :export: | ||
97 | |||
98 | .. kernel-doc:: fs/stat.c | ||
99 | :export: | ||
100 | |||
101 | .. kernel-doc:: fs/sync.c | ||
102 | :export: | ||
103 | |||
104 | .. kernel-doc:: fs/xattr.c | ||
105 | :export: | ||
106 | |||
74 | The proc filesystem | 107 | The proc filesystem |
75 | =================== | 108 | =================== |
76 | 109 | ||