diff options
author | Al Viro <viro@zeniv.linux.org.uk> | 2011-07-26 03:07:49 -0400 |
---|---|---|
committer | Al Viro <viro@zeniv.linux.org.uk> | 2012-01-03 22:55:05 -0500 |
commit | bef41c267e2b903f411c0f56236027f68553b721 (patch) | |
tree | ebbf53837c19c3dd55081b770f76e9a4aec9b001 /fs/exofs | |
parent | c6e49e3f266dbe62773941dca8afa65f53b5415f (diff) |
exofs: propagate umode_t
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/exofs')
-rw-r--r-- | fs/exofs/dir.c | 2 | ||||
-rw-r--r-- | fs/exofs/exofs.h | 2 | ||||
-rw-r--r-- | fs/exofs/inode.c | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/fs/exofs/dir.c b/fs/exofs/dir.c index d0941c6a1f72..80405836ba6e 100644 --- a/fs/exofs/dir.c +++ b/fs/exofs/dir.c | |||
@@ -234,7 +234,7 @@ static unsigned char exofs_type_by_mode[S_IFMT >> S_SHIFT] = { | |||
234 | static inline | 234 | static inline |
235 | void exofs_set_de_type(struct exofs_dir_entry *de, struct inode *inode) | 235 | void exofs_set_de_type(struct exofs_dir_entry *de, struct inode *inode) |
236 | { | 236 | { |
237 | mode_t mode = inode->i_mode; | 237 | umode_t mode = inode->i_mode; |
238 | de->file_type = exofs_type_by_mode[(mode & S_IFMT) >> S_SHIFT]; | 238 | de->file_type = exofs_type_by_mode[(mode & S_IFMT) >> S_SHIFT]; |
239 | } | 239 | } |
240 | 240 | ||
diff --git a/fs/exofs/exofs.h b/fs/exofs/exofs.h index 51f4b4c40f09..ca9d49665ef6 100644 --- a/fs/exofs/exofs.h +++ b/fs/exofs/exofs.h | |||
@@ -154,7 +154,7 @@ int exofs_write_begin(struct file *file, struct address_space *mapping, | |||
154 | loff_t pos, unsigned len, unsigned flags, | 154 | loff_t pos, unsigned len, unsigned flags, |
155 | struct page **pagep, void **fsdata); | 155 | struct page **pagep, void **fsdata); |
156 | extern struct inode *exofs_iget(struct super_block *, unsigned long); | 156 | extern struct inode *exofs_iget(struct super_block *, unsigned long); |
157 | struct inode *exofs_new_inode(struct inode *, int); | 157 | struct inode *exofs_new_inode(struct inode *, umode_t); |
158 | extern int exofs_write_inode(struct inode *, struct writeback_control *wbc); | 158 | extern int exofs_write_inode(struct inode *, struct writeback_control *wbc); |
159 | extern void exofs_evict_inode(struct inode *); | 159 | extern void exofs_evict_inode(struct inode *); |
160 | 160 | ||
diff --git a/fs/exofs/inode.c b/fs/exofs/inode.c index f6dbf7768ce6..ea5e1f97806a 100644 --- a/fs/exofs/inode.c +++ b/fs/exofs/inode.c | |||
@@ -1276,7 +1276,7 @@ static void create_done(struct ore_io_state *ios, void *p) | |||
1276 | /* | 1276 | /* |
1277 | * Set up a new inode and create an object for it on the OSD | 1277 | * Set up a new inode and create an object for it on the OSD |
1278 | */ | 1278 | */ |
1279 | struct inode *exofs_new_inode(struct inode *dir, int mode) | 1279 | struct inode *exofs_new_inode(struct inode *dir, umode_t mode) |
1280 | { | 1280 | { |
1281 | struct super_block *sb = dir->i_sb; | 1281 | struct super_block *sb = dir->i_sb; |
1282 | struct exofs_sb_info *sbi = sb->s_fs_info; | 1282 | struct exofs_sb_info *sbi = sb->s_fs_info; |