Loading Documentation/filesystems/Locking +1 −1 Original line number Diff line number Diff line Loading @@ -51,7 +51,7 @@ prototypes: struct inode *, struct dentry *, unsigned int); int (*readlink) (struct dentry *, char __user *,int); const char *(*follow_link) (struct dentry *, void **); void (*put_link) (struct dentry *, void *); void (*put_link) (struct inode *, void *); void (*truncate) (struct inode *); int (*permission) (struct inode *, int, unsigned int); int (*get_acl)(struct inode *, int); Loading Documentation/filesystems/vfs.txt +1 −1 Original line number Diff line number Diff line Loading @@ -351,7 +351,7 @@ struct inode_operations { struct inode *, struct dentry *, unsigned int); int (*readlink) (struct dentry *, char __user *,int); const char *(*follow_link) (struct dentry *, void **); void (*put_link) (struct dentry *, void *); void (*put_link) (struct inode *, void *); int (*permission) (struct inode *, int); int (*get_acl)(struct inode *, int); int (*setattr) (struct dentry *, struct iattr *); Loading drivers/staging/lustre/lustre/llite/symlink.c +1 −1 Original line number Diff line number Diff line Loading @@ -141,7 +141,7 @@ static const char *ll_follow_link(struct dentry *dentry, void **cookie) return symname; } static void ll_put_link(struct dentry *dentry, void *cookie) static void ll_put_link(struct inode *unused, void *cookie) { ptlrpc_req_finished(cookie); } Loading fs/configfs/symlink.c +1 −1 Original line number Diff line number Diff line Loading @@ -296,7 +296,7 @@ static const char *configfs_follow_link(struct dentry *dentry, void **cookie) return ERR_PTR(error); } static void configfs_put_link(struct dentry *dentry, void *cookie) static void configfs_put_link(struct inode *unused, void *cookie) { free_page((unsigned long)cookie); } Loading fs/f2fs/namei.c +1 −1 Original line number Diff line number Diff line Loading @@ -301,7 +301,7 @@ static const char *f2fs_follow_link(struct dentry *dentry, void **cookie) const char *link = page_follow_link_light(dentry, cookie); if (!IS_ERR(link) && !*link) { /* this is broken symlink case */ page_put_link(dentry, *cookie); page_put_link(NULL, *cookie); link = ERR_PTR(-ENOENT); } return link; Loading Loading
Documentation/filesystems/Locking +1 −1 Original line number Diff line number Diff line Loading @@ -51,7 +51,7 @@ prototypes: struct inode *, struct dentry *, unsigned int); int (*readlink) (struct dentry *, char __user *,int); const char *(*follow_link) (struct dentry *, void **); void (*put_link) (struct dentry *, void *); void (*put_link) (struct inode *, void *); void (*truncate) (struct inode *); int (*permission) (struct inode *, int, unsigned int); int (*get_acl)(struct inode *, int); Loading
Documentation/filesystems/vfs.txt +1 −1 Original line number Diff line number Diff line Loading @@ -351,7 +351,7 @@ struct inode_operations { struct inode *, struct dentry *, unsigned int); int (*readlink) (struct dentry *, char __user *,int); const char *(*follow_link) (struct dentry *, void **); void (*put_link) (struct dentry *, void *); void (*put_link) (struct inode *, void *); int (*permission) (struct inode *, int); int (*get_acl)(struct inode *, int); int (*setattr) (struct dentry *, struct iattr *); Loading
drivers/staging/lustre/lustre/llite/symlink.c +1 −1 Original line number Diff line number Diff line Loading @@ -141,7 +141,7 @@ static const char *ll_follow_link(struct dentry *dentry, void **cookie) return symname; } static void ll_put_link(struct dentry *dentry, void *cookie) static void ll_put_link(struct inode *unused, void *cookie) { ptlrpc_req_finished(cookie); } Loading
fs/configfs/symlink.c +1 −1 Original line number Diff line number Diff line Loading @@ -296,7 +296,7 @@ static const char *configfs_follow_link(struct dentry *dentry, void **cookie) return ERR_PTR(error); } static void configfs_put_link(struct dentry *dentry, void *cookie) static void configfs_put_link(struct inode *unused, void *cookie) { free_page((unsigned long)cookie); } Loading
fs/f2fs/namei.c +1 −1 Original line number Diff line number Diff line Loading @@ -301,7 +301,7 @@ static const char *f2fs_follow_link(struct dentry *dentry, void **cookie) const char *link = page_follow_link_light(dentry, cookie); if (!IS_ERR(link) && !*link) { /* this is broken symlink case */ page_put_link(dentry, *cookie); page_put_link(NULL, *cookie); link = ERR_PTR(-ENOENT); } return link; Loading