diff options
author | Eric Biggers <ebiggers@google.com> | 2019-04-12 02:16:29 +0300 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2019-05-01 06:59:25 +0300 |
commit | 1a6a31655071106a34ae06353390891a80c54371 (patch) | |
tree | 966fd309909a7b4b734d3e03da6f45816e8c5578 /Documentation/filesystems/Locking | |
parent | dcb2cb1f26f91df486492e2f2c2d62fe751fd21a (diff) | |
download | linux-1a6a31655071106a34ae06353390891a80c54371.tar.xz |
Documentation/filesystems/Locking: fix ->get_link() prototype
Signed-off-by: Eric Biggers <ebiggers@google.com>
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'Documentation/filesystems/Locking')
-rw-r--r-- | Documentation/filesystems/Locking | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/filesystems/Locking b/Documentation/filesystems/Locking index efea228ccd8a..428455bf9c97 100644 --- a/Documentation/filesystems/Locking +++ b/Documentation/filesystems/Locking @@ -52,7 +52,7 @@ prototypes: int (*rename) (struct inode *, struct dentry *, struct inode *, struct dentry *, unsigned int); int (*readlink) (struct dentry *, char __user *,int); - const char *(*get_link) (struct dentry *, struct inode *, void **); + const char *(*get_link) (struct dentry *, struct inode *, struct delayed_call *); void (*truncate) (struct inode *); int (*permission) (struct inode *, int, unsigned int); int (*get_acl)(struct inode *, int); |