diff options
| author | Al Viro <viro@zeniv.linux.org.uk> | 2009-03-29 19:08:22 -0400 | 
|---|---|---|
| committer | Al Viro <viro@zeniv.linux.org.uk> | 2009-03-31 23:00:26 -0400 | 
| commit | ce3b0f8d5c2203301fc87f3aaaed73e5819e2a48 (patch) | |
| tree | ab952affafe18e604f6aaf6b13315b9435588e60 /fs/hfsplus | |
| parent | f1191b50ec11c8e2ca766d6d99eb5bb9d2c084a3 (diff) | |
| download | linux-ce3b0f8d5c2203301fc87f3aaaed73e5819e2a48.tar.bz2 | |
New helper - current_umask()
current->fs->umask is what most of fs_struct users are doing.
Put that into a helper function.
Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
Diffstat (limited to 'fs/hfsplus')
| -rw-r--r-- | fs/hfsplus/options.c | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/fs/hfsplus/options.c b/fs/hfsplus/options.c index bab7f8d1bdfa..3fcbb0e1f6fc 100644 --- a/fs/hfsplus/options.c +++ b/fs/hfsplus/options.c @@ -48,7 +48,7 @@ void hfsplus_fill_defaults(struct hfsplus_sb_info *opts)  	opts->creator = HFSPLUS_DEF_CR_TYPE;  	opts->type = HFSPLUS_DEF_CR_TYPE; -	opts->umask = current->fs->umask; +	opts->umask = current_umask();  	opts->uid = current_uid();  	opts->gid = current_gid();  	opts->part = -1; |