summaryrefslogtreecommitdiffstats
path: root/fs/internal.h
diff options
context:
space:
mode:
authorAl Viro2011-11-21 20:59:34 +0100
committerAl Viro2012-01-04 04:55:19 +0100
commita218d0fdc5f9004164ff151d274487f6799907d0 (patch)
tree24ea22ffb4aadb1fedff50c4a7fcb17af1981459 /fs/internal.h
parentswitch ->path_mknod() to umode_t (diff)
downloadkernel-qcow2-linux-a218d0fdc5f9004164ff151d274487f6799907d0.tar.gz
kernel-qcow2-linux-a218d0fdc5f9004164ff151d274487f6799907d0.tar.xz
kernel-qcow2-linux-a218d0fdc5f9004164ff151d274487f6799907d0.zip
switch open and mkdir syscalls to umode_t
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/internal.h')
-rw-r--r--fs/internal.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/internal.h b/fs/internal.h
index 7b1cb1528ac2..23599f88d1a5 100644
--- a/fs/internal.h
+++ b/fs/internal.h
@@ -88,7 +88,7 @@ extern struct file *nameidata_to_filp(struct nameidata *);
extern void release_open_intent(struct nameidata *);
struct open_flags {
int open_flag;
- int mode;
+ umode_t mode;
int acc_mode;
int intent;
};