isofs: propagate umode_t
authorAl Viro <viro@zeniv.linux.org.uk>
Tue, 26 Jul 2011 07:19:52 +0000 (03:19 -0400)
committerAl Viro <viro@zeniv.linux.org.uk>
Wed, 4 Jan 2012 03:55:08 +0000 (22:55 -0500)
situation with mount options is the same as for udf

Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
fs/isofs/inode.c
fs/isofs/isofs.h

index b71f6311a337a8b264ed15e15e726f5edd328b6c..7b99f5f460be1bfeab87c80e01bec6cb2870f7ee 100644 (file)
@@ -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;
index 7d33de84f52adec9b647bfc23f883f811f939ca9..0e73f63d92745d244a7007b3d1b367784d467c58 100644 (file)
@@ -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)
 {