diff options
author | Jason Uhlenkott <juhlenko@akamai.com> | 2007-10-19 21:16:18 -0400 |
---|---|---|
committer | Adrian Bunk <bunk@kernel.org> | 2007-10-19 21:16:18 -0400 |
commit | 8e8a1407ac23b43cec0412338c1b4f5e1c664550 (patch) | |
tree | 0efed870d299e7f031df4bd75788c13ab00ac246 | |
parent | 3932bf60590064dbd1d5bc6f19faf4469e964082 (diff) |
fix do_sys_open() prototype
Fix an argument name in do_sys_open()'s prototype.
Signed-off-by: Jason Uhlenkott <juhlenko@akamai.com>
Signed-off-by: Adrian Bunk <bunk@kernel.org>
-rw-r--r-- | include/linux/fs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/fs.h b/include/linux/fs.h index 1657e995f72c..1bcce660cf03 100644 --- a/include/linux/fs.h +++ b/include/linux/fs.h | |||
@@ -1536,7 +1536,7 @@ static inline int break_lease(struct inode *inode, unsigned int mode) | |||
1536 | 1536 | ||
1537 | extern int do_truncate(struct dentry *, loff_t start, unsigned int time_attrs, | 1537 | extern int do_truncate(struct dentry *, loff_t start, unsigned int time_attrs, |
1538 | struct file *filp); | 1538 | struct file *filp); |
1539 | extern long do_sys_open(int fdf, const char __user *filename, int flags, | 1539 | extern long do_sys_open(int dfd, const char __user *filename, int flags, |
1540 | int mode); | 1540 | int mode); |
1541 | extern struct file *filp_open(const char *, int, int); | 1541 | extern struct file *filp_open(const char *, int, int); |
1542 | extern struct file * dentry_open(struct dentry *, struct vfsmount *, int); | 1542 | extern struct file * dentry_open(struct dentry *, struct vfsmount *, int); |