aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/fs.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux/fs.h')
-rw-r--r--include/linux/fs.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/include/linux/fs.h b/include/linux/fs.h
index 17ee20dba86c..7a71709b7fa7 100644
--- a/include/linux/fs.h
+++ b/include/linux/fs.h
@@ -1666,7 +1666,7 @@ struct file_operations {
1666}; 1666};
1667 1667
1668struct inode_operations { 1668struct inode_operations {
1669 struct dentry * (*lookup) (struct inode *,struct dentry *, struct nameidata *); 1669 struct dentry * (*lookup) (struct inode *,struct dentry *, unsigned int);
1670 void * (*follow_link) (struct dentry *, struct nameidata *); 1670 void * (*follow_link) (struct dentry *, struct nameidata *);
1671 int (*permission) (struct inode *, int); 1671 int (*permission) (struct inode *, int);
1672 struct posix_acl * (*get_acl)(struct inode *, int); 1672 struct posix_acl * (*get_acl)(struct inode *, int);
@@ -2571,7 +2571,7 @@ extern int simple_write_end(struct file *file, struct address_space *mapping,
2571 loff_t pos, unsigned len, unsigned copied, 2571 loff_t pos, unsigned len, unsigned copied,
2572 struct page *page, void *fsdata); 2572 struct page *page, void *fsdata);
2573 2573
2574extern struct dentry *simple_lookup(struct inode *, struct dentry *, struct nameidata *); 2574extern struct dentry *simple_lookup(struct inode *, struct dentry *, unsigned int flags);
2575extern ssize_t generic_read_dir(struct file *, char __user *, size_t, loff_t *); 2575extern ssize_t generic_read_dir(struct file *, char __user *, size_t, loff_t *);
2576extern const struct file_operations simple_dir_operations; 2576extern const struct file_operations simple_dir_operations;
2577extern const struct inode_operations simple_dir_inode_operations; 2577extern const struct inode_operations simple_dir_inode_operations;