diff options
author | Ingo Molnar <mingo@elte.hu> | 2011-03-18 09:38:53 (GMT) |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2011-03-18 09:39:00 (GMT) |
commit | 8dd8997d2c56c9f248294805e129e1fc69444380 (patch) | |
tree | 3b030a04295fc031db98746c4074c2df1ed6a19f /fs/internal.h | |
parent | 1eda75c131ea42ec173323b6c34aeed78ae637c1 (diff) | |
parent | 016aa2ed1cc9cf704cf76d8df07751b6daa9750f (diff) | |
download | linux-fsl-qoriq-8dd8997d2c56c9f248294805e129e1fc69444380.tar.xz |
Merge branch 'linus' into x86/urgent
Merge reason: Merge upstream commits to avoid conflicts in upcoming patches.
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'fs/internal.h')
-rw-r--r-- | fs/internal.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/fs/internal.h b/fs/internal.h index 9b976b5..f3d15de 100644 --- a/fs/internal.h +++ b/fs/internal.h @@ -106,6 +106,19 @@ extern void put_super(struct super_block *sb); struct nameidata; extern struct file *nameidata_to_filp(struct nameidata *); extern void release_open_intent(struct nameidata *); +struct open_flags { + int open_flag; + int mode; + int acc_mode; + int intent; +}; +extern struct file *do_filp_open(int dfd, const char *pathname, + const struct open_flags *op, int lookup_flags); +extern struct file *do_file_open_root(struct dentry *, struct vfsmount *, + const char *, const struct open_flags *, int lookup_flags); + +extern long do_handle_open(int mountdirfd, + struct file_handle __user *ufh, int open_flag); /* * inode.c |