From a1278a73b1108d22e2719f87c05015356d8d3b92 Mon Sep 17 00:00:00 2001 From: Al Viro Date: Tue, 26 Jul 2011 03:21:30 -0400 Subject: [PATCH] --- yaml --- r: 280257 b: refs/heads/master c: dacd0e7b392dfaf888461741dbcaccf8b6a15bac h: refs/heads/master i: 280255: 3a6cde21084aaefd57960a22b60480cc00e8cf32 v: v3 --- [refs] | 2 +- trunk/fs/fat/fat.h | 6 +++--- trunk/fs/fat/file.c | 4 ++-- 3 files changed, 6 insertions(+), 6 deletions(-) diff --git a/[refs] b/[refs] index 7cf45bb06d9e..867197b47edd 100644 --- a/[refs] +++ b/[refs] @@ -1,2 +1,2 @@ --- -refs/heads/master: d0c00d0671fbbaf6c5e192544de551a6ea5c8833 +refs/heads/master: dacd0e7b392dfaf888461741dbcaccf8b6a15bac diff --git a/trunk/fs/fat/fat.h b/trunk/fs/fat/fat.h index 1510a4d51990..66994f316e18 100644 --- a/trunk/fs/fat/fat.h +++ b/trunk/fs/fat/fat.h @@ -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) @@ -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; diff --git a/trunk/fs/fat/file.c b/trunk/fs/fat/file.c index d81d01a99b2c..a71fe3715ee8 100644 --- a/trunk/fs/fat/file.c +++ b/trunk/fs/fat/file.c @@ -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 @@ -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))