Skip to content

Commit

Permalink
fat: propagate umode_t
Browse files Browse the repository at this point in the history
Signed-off-by: Al Viro <[email protected]>
  • Loading branch information
Al Viro committed Jan 4, 2012
1 parent d0c00d0 commit dacd0e7
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions fs/fat/fat.h
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ static inline struct msdos_inode_info *MSDOS_I(struct inode *inode)
static inline int fat_mode_can_hold_ro(struct inode *inode)
{
struct msdos_sb_info *sbi = MSDOS_SB(inode->i_sb);
mode_t mask;
umode_t mask;

if (S_ISDIR(inode->i_mode)) {
if (!sbi->options.rodir)
Expand All @@ -156,8 +156,8 @@ static inline int fat_mode_can_hold_ro(struct inode *inode)
}

/* Convert attribute bits and a mask to the UNIX mode. */
static inline mode_t fat_make_mode(struct msdos_sb_info *sbi,
u8 attrs, mode_t mode)
static inline umode_t fat_make_mode(struct msdos_sb_info *sbi,
u8 attrs, umode_t mode)
{
if (attrs & ATTR_RO && !((attrs & ATTR_DIR) && !sbi->options.rodir))
mode &= ~S_IWUGO;
Expand Down
4 changes: 2 additions & 2 deletions fs/fat/file.c
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@ EXPORT_SYMBOL_GPL(fat_getattr);
static int fat_sanitize_mode(const struct msdos_sb_info *sbi,
struct inode *inode, umode_t *mode_ptr)
{
mode_t mask, perm;
umode_t mask, perm;

/*
* Note, the basic check is already done by a caller of
Expand Down Expand Up @@ -351,7 +351,7 @@ static int fat_sanitize_mode(const struct msdos_sb_info *sbi,

static int fat_allow_set_time(struct msdos_sb_info *sbi, struct inode *inode)
{
mode_t allow_utime = sbi->options.allow_utime;
umode_t allow_utime = sbi->options.allow_utime;

if (current_fsuid() != inode->i_uid) {
if (in_group_p(inode->i_gid))
Expand Down

0 comments on commit dacd0e7

Please sign in to comment.