switch vfs_mkdir() and ->mkdir() to umode_t
[deliverable/linux.git] / Documentation / filesystems / vfs.txt
index 52d8fb81cffffdffe3cb8f4ddb1cd65d586855fb..0c147c79cdd89fbb111f142d764c6734158d5c3d 100644 (file)
@@ -346,7 +346,7 @@ struct inode_operations {
        int (*link) (struct dentry *,struct inode *,struct dentry *);
        int (*unlink) (struct inode *,struct dentry *);
        int (*symlink) (struct inode *,struct dentry *,const char *);
        int (*link) (struct dentry *,struct inode *,struct dentry *);
        int (*unlink) (struct inode *,struct dentry *);
        int (*symlink) (struct inode *,struct dentry *,const char *);
-       int (*mkdir) (struct inode *,struct dentry *,int);
+       int (*mkdir) (struct inode *,struct dentry *,umode_t);
        int (*rmdir) (struct inode *,struct dentry *);
        int (*mknod) (struct inode *,struct dentry *,int,dev_t);
        int (*rename) (struct inode *, struct dentry *,
        int (*rmdir) (struct inode *,struct dentry *);
        int (*mknod) (struct inode *,struct dentry *,int,dev_t);
        int (*rename) (struct inode *, struct dentry *,
@@ -1053,9 +1053,6 @@ manipulate dentries:
        and the dentry is returned. The caller must use dput()
        to free the dentry when it finishes using it.
 
        and the dentry is returned. The caller must use dput()
        to free the dentry when it finishes using it.
 
-For further information on dentry locking, please refer to the document
-Documentation/filesystems/dentry-locking.txt.
-
 Mount Options
 =============
 
 Mount Options
 =============
 
This page took 0.025573 seconds and 5 git commands to generate.