Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 280257
b: refs/heads/master
c: dacd0e7
h: refs/heads/master
i:
  280255: 3a6cde2
v: v3
  • Loading branch information
Al Viro committed Jan 4, 2012
1 parent 8cfd033 commit a1278a7
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: d0c00d0671fbbaf6c5e192544de551a6ea5c8833
refs/heads/master: dacd0e7b392dfaf888461741dbcaccf8b6a15bac
6 changes: 3 additions & 3 deletions trunk/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 trunk/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 a1278a7

Please sign in to comment.