hc
2023-12-09 b22da3d8526a935aa31e086e63f60ff3246cb61c
kernel/include/linux/exportfs.h
....@@ -105,6 +105,11 @@
105105 FILEID_LUSTRE = 0x97,
106106
107107 /*
108
+ * 64 bit unique kernfs id
109
+ */
110
+ FILEID_KERNFS = 0xfe,
111
+
112
+ /*
108113 * Filesystems must not use 0xff file ID.
109114 */
110115 FILEID_INVALID = 0xff,
....@@ -139,7 +144,7 @@
139144 * @get_parent: find the parent of a given directory
140145 * @commit_metadata: commit metadata changes to stable storage
141146 *
142
- * See Documentation/filesystems/nfs/Exporting for details on how to use
147
+ * See Documentation/filesystems/nfs/exporting.rst for details on how to use
143148 * this interface correctly.
144149 *
145150 * encode_fh:
....@@ -173,7 +178,7 @@
173178 * get_name:
174179 * @get_name should find a name for the given @child in the given @parent
175180 * directory. The name should be stored in the @name (with the
176
- * understanding that it is already pointing to a a %NAME_MAX+1 sized
181
+ * understanding that it is already pointing to a %NAME_MAX+1 sized
177182 * buffer. get_name() should return %0 on success, a negative error code
178183 * or error. @get_name will be called without @parent->i_mutex held.
179184 *