From: Al Viro Date: Tue, 26 Jul 2011 07:19:52 +0000 (-0400) Subject: isofs: propagate umode_t X-Git-Tag: v3.3-rc1~170^2~11^2~32 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=7328bdd6cf5e032a2c54e4b1cf555ff769af08e7;p=profile%2Fivi%2Fkernel-adaptation-intel-automotive.git isofs: propagate umode_t situation with mount options is the same as for udf Signed-off-by: Al Viro --- diff --git a/fs/isofs/inode.c b/fs/isofs/inode.c index b71f631..7b99f5f 100644 --- a/fs/isofs/inode.c +++ b/fs/isofs/inode.c @@ -169,8 +169,8 @@ struct iso9660_options{ unsigned char map; unsigned char check; unsigned int blocksize; - mode_t fmode; - mode_t dmode; + umode_t fmode; + umode_t dmode; gid_t gid; uid_t uid; char *iocharset; diff --git a/fs/isofs/isofs.h b/fs/isofs/isofs.h index 7d33de8..0e73f63 100644 --- a/fs/isofs/isofs.h +++ b/fs/isofs/isofs.h @@ -50,14 +50,14 @@ struct isofs_sb_info { unsigned int s_uid_set:1; unsigned int s_gid_set:1; - mode_t s_fmode; - mode_t s_dmode; + umode_t s_fmode; + umode_t s_dmode; gid_t s_gid; uid_t s_uid; struct nls_table *s_nls_iocharset; /* Native language support table */ }; -#define ISOFS_INVALID_MODE ((mode_t) -1) +#define ISOFS_INVALID_MODE ((umode_t) -1) static inline struct isofs_sb_info *ISOFS_SB(struct super_block *sb) {