diff options
author | Chris Zankel <chris@zankel.net> | 2009-04-03 05:29:05 -0400 |
---|---|---|
committer | Chris Zankel <chris@zankel.net> | 2009-04-03 05:29:05 -0400 |
commit | 65127d28e312bb6b38ce84a7bb71d762ef63ad4c (patch) | |
tree | d5fdf52a2d0731f7fab0ce0ed394faac50b04fbc /fs/hfsplus | |
parent | b8bb76713ec50df2f11efee386e16f93d51e1076 (diff) | |
parent | 8fe74cf053de7ad2124a894996f84fa890a81093 (diff) |
Merge branch 'master' of git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6 into merge
Diffstat (limited to 'fs/hfsplus')
-rw-r--r-- | fs/hfsplus/options.c | 2 | ||||
-rw-r--r-- | fs/hfsplus/super.c | 3 |
2 files changed, 4 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) | |||
48 | 48 | ||
49 | opts->creator = HFSPLUS_DEF_CR_TYPE; | 49 | opts->creator = HFSPLUS_DEF_CR_TYPE; |
50 | opts->type = HFSPLUS_DEF_CR_TYPE; | 50 | opts->type = HFSPLUS_DEF_CR_TYPE; |
51 | opts->umask = current->fs->umask; | 51 | opts->umask = current_umask(); |
52 | opts->uid = current_uid(); | 52 | opts->uid = current_uid(); |
53 | opts->gid = current_gid(); | 53 | opts->gid = current_gid(); |
54 | opts->part = -1; | 54 | opts->part = -1; |
diff --git a/fs/hfsplus/super.c b/fs/hfsplus/super.c index eb74531a0a8e..f2a64020f42e 100644 --- a/fs/hfsplus/super.c +++ b/fs/hfsplus/super.c | |||
@@ -223,6 +223,7 @@ static void hfsplus_put_super(struct super_block *sb) | |||
223 | static int hfsplus_statfs(struct dentry *dentry, struct kstatfs *buf) | 223 | static int hfsplus_statfs(struct dentry *dentry, struct kstatfs *buf) |
224 | { | 224 | { |
225 | struct super_block *sb = dentry->d_sb; | 225 | struct super_block *sb = dentry->d_sb; |
226 | u64 id = huge_encode_dev(sb->s_bdev->bd_dev); | ||
226 | 227 | ||
227 | buf->f_type = HFSPLUS_SUPER_MAGIC; | 228 | buf->f_type = HFSPLUS_SUPER_MAGIC; |
228 | buf->f_bsize = sb->s_blocksize; | 229 | buf->f_bsize = sb->s_blocksize; |
@@ -231,6 +232,8 @@ static int hfsplus_statfs(struct dentry *dentry, struct kstatfs *buf) | |||
231 | buf->f_bavail = buf->f_bfree; | 232 | buf->f_bavail = buf->f_bfree; |
232 | buf->f_files = 0xFFFFFFFF; | 233 | buf->f_files = 0xFFFFFFFF; |
233 | buf->f_ffree = 0xFFFFFFFF - HFSPLUS_SB(sb).next_cnid; | 234 | buf->f_ffree = 0xFFFFFFFF - HFSPLUS_SB(sb).next_cnid; |
235 | buf->f_fsid.val[0] = (u32)id; | ||
236 | buf->f_fsid.val[1] = (u32)(id >> 32); | ||
234 | buf->f_namelen = HFSPLUS_MAX_STRLEN; | 237 | buf->f_namelen = HFSPLUS_MAX_STRLEN; |
235 | 238 | ||
236 | return 0; | 239 | return 0; |