]> pilppa.org Git - linux-2.6-omap-h63xx.git/blobdiff - include/linux/exportfs.h
smb.h: uses struct timespec but didn't include linux/time.h
[linux-2.6-omap-h63xx.git] / include / linux / exportfs.h
index 51d214138814a509803e22db093c8a9f91108227..de8387b7ceb6cd85ab872c3fe5e5f62c366af260 100644 (file)
@@ -43,17 +43,17 @@ struct fid {
                        u32 parent_ino;
                        u32 parent_gen;
                } i32;
-               __u32 raw[6];
+               __u32 raw[0];
        };
 };
 
 /**
  * struct export_operations - for nfsd to communicate with file systems
- * @decode_fh:      decode a file handle fragment and return a &struct dentry
  * @encode_fh:      encode a file handle fragment from a dentry
+ * @fh_to_dentry:   find the implied object and get a dentry for it
+ * @fh_to_parent:   find the implied object's parent and get a dentry for it
  * @get_name:       find the name for a given inode in a given directory
  * @get_parent:     find the parent of a given directory
- * @get_dentry:     find a dentry for the inode given a file handle sub-fragment
  *
  * See Documentation/filesystems/Exporting for details on how to use
  * this interface correctly.