diff options
author | Len Brown <len.brown@intel.com> | 2009-04-05 02:14:15 -0400 |
---|---|---|
committer | Len Brown <len.brown@intel.com> | 2009-04-05 02:14:15 -0400 |
commit | 478c6a43fcbc6c11609f8cee7c7b57223907754f (patch) | |
tree | a7f7952099da60d33032aed6de9c0c56c9f8779e /fs/minix | |
parent | 8a3f257c704e02aee9869decd069a806b45be3f1 (diff) | |
parent | 6bb597507f9839b13498781e481f5458aea33620 (diff) |
Merge branch 'linus' into release
Conflicts:
arch/x86/kernel/cpu/cpufreq/longhaul.c
Signed-off-by: Len Brown <len.brown@intel.com>
Diffstat (limited to 'fs/minix')
-rw-r--r-- | fs/minix/inode.c | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/fs/minix/inode.c b/fs/minix/inode.c index 618865b3128b..daad3c2740db 100644 --- a/fs/minix/inode.c +++ b/fs/minix/inode.c | |||
@@ -321,15 +321,20 @@ out: | |||
321 | 321 | ||
322 | static int minix_statfs(struct dentry *dentry, struct kstatfs *buf) | 322 | static int minix_statfs(struct dentry *dentry, struct kstatfs *buf) |
323 | { | 323 | { |
324 | struct minix_sb_info *sbi = minix_sb(dentry->d_sb); | 324 | struct super_block *sb = dentry->d_sb; |
325 | buf->f_type = dentry->d_sb->s_magic; | 325 | struct minix_sb_info *sbi = minix_sb(sb); |
326 | buf->f_bsize = dentry->d_sb->s_blocksize; | 326 | u64 id = huge_encode_dev(sb->s_bdev->bd_dev); |
327 | buf->f_type = sb->s_magic; | ||
328 | buf->f_bsize = sb->s_blocksize; | ||
327 | buf->f_blocks = (sbi->s_nzones - sbi->s_firstdatazone) << sbi->s_log_zone_size; | 329 | buf->f_blocks = (sbi->s_nzones - sbi->s_firstdatazone) << sbi->s_log_zone_size; |
328 | buf->f_bfree = minix_count_free_blocks(sbi); | 330 | buf->f_bfree = minix_count_free_blocks(sbi); |
329 | buf->f_bavail = buf->f_bfree; | 331 | buf->f_bavail = buf->f_bfree; |
330 | buf->f_files = sbi->s_ninodes; | 332 | buf->f_files = sbi->s_ninodes; |
331 | buf->f_ffree = minix_count_free_inodes(sbi); | 333 | buf->f_ffree = minix_count_free_inodes(sbi); |
332 | buf->f_namelen = sbi->s_namelen; | 334 | buf->f_namelen = sbi->s_namelen; |
335 | buf->f_fsid.val[0] = (u32)id; | ||
336 | buf->f_fsid.val[1] = (u32)(id >> 32); | ||
337 | |||
333 | return 0; | 338 | return 0; |
334 | } | 339 | } |
335 | 340 | ||