diff options
author | Jan Kara <jack@suse.cz> | 2008-02-08 07:21:09 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2008-02-08 12:22:38 -0500 |
commit | 9b7880e7bb30e641037550888b5c22d94c77f254 (patch) | |
tree | 4e2ef4fa7a5fc63059fcd928a300169e41aa207c /fs/isofs/isofs.h | |
parent | 6d141c3ff6d74cc30cdbf26155842756ac16cf7f (diff) |
isofs: implement dmode option
Implement dmode option for iso9660 filesystem to allow setting of access
rights for directories on the filesystem.
Signed-off-by: Jan Kara <jack@suse.cz>
Cc: "Ilya N. Golubev" <gin@mo.msk.ru>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/isofs/isofs.h')
-rw-r--r-- | fs/isofs/isofs.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/fs/isofs/isofs.h b/fs/isofs/isofs.h index f3213f9f89af..d1bdf8adb351 100644 --- a/fs/isofs/isofs.h +++ b/fs/isofs/isofs.h | |||
@@ -51,7 +51,8 @@ struct isofs_sb_info { | |||
51 | unsigned char s_hide; | 51 | unsigned char s_hide; |
52 | unsigned char s_showassoc; | 52 | unsigned char s_showassoc; |
53 | 53 | ||
54 | mode_t s_mode; | 54 | mode_t s_fmode; |
55 | mode_t s_dmode; | ||
55 | gid_t s_gid; | 56 | gid_t s_gid; |
56 | uid_t s_uid; | 57 | uid_t s_uid; |
57 | struct nls_table *s_nls_iocharset; /* Native language support table */ | 58 | struct nls_table *s_nls_iocharset; /* Native language support table */ |