nilfs: propagate umode_t
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
This commit is contained in:
parent
64f1426f3c
commit
c6e49e3f26
|
@ -251,7 +251,7 @@ nilfs_type_by_mode[S_IFMT >> S_SHIFT] = {
|
|||
|
||||
static void nilfs_set_de_type(struct nilfs_dir_entry *de, struct inode *inode)
|
||||
{
|
||||
mode_t mode = inode->i_mode;
|
||||
umode_t mode = inode->i_mode;
|
||||
|
||||
de->file_type = nilfs_type_by_mode[(mode & S_IFMT)>>S_SHIFT];
|
||||
}
|
||||
|
|
|
@ -291,7 +291,7 @@ const struct address_space_operations nilfs_aops = {
|
|||
.is_partially_uptodate = block_is_partially_uptodate,
|
||||
};
|
||||
|
||||
struct inode *nilfs_new_inode(struct inode *dir, int mode)
|
||||
struct inode *nilfs_new_inode(struct inode *dir, umode_t mode)
|
||||
{
|
||||
struct super_block *sb = dir->i_sb;
|
||||
struct the_nilfs *nilfs = sb->s_fs_info;
|
||||
|
|
|
@ -246,7 +246,7 @@ int nilfs_ioctl_prepare_clean_segments(struct the_nilfs *, struct nilfs_argv *,
|
|||
/* inode.c */
|
||||
void nilfs_inode_add_blocks(struct inode *inode, int n);
|
||||
void nilfs_inode_sub_blocks(struct inode *inode, int n);
|
||||
extern struct inode *nilfs_new_inode(struct inode *, int);
|
||||
extern struct inode *nilfs_new_inode(struct inode *, umode_t);
|
||||
extern void nilfs_free_inode(struct inode *);
|
||||
extern int nilfs_get_block(struct inode *, sector_t, struct buffer_head *, int);
|
||||
extern void nilfs_set_inode_flags(struct inode *);
|
||||
|
|
Loading…
Reference in New Issue