diff options
author | Coly Li <coly.li@suse.de> | 2009-04-02 19:59:32 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-04-02 22:05:08 -0400 |
commit | 8587246a004d6ac10aa12c10e3474cfd9dafa44a (patch) | |
tree | 326cc82deb2cc02a8d729c9b2b6f56c12e01c91a /fs/befs | |
parent | a6a2a73c4dc6babba2cfa366305cb936fc469640 (diff) |
fs/befs: return f_fsid for statfs(2)
Make befs return f_fsid info for statfs(2).
Signed-off-by: Coly Li <coly.li@suse.de>
Cc: Sergey S. Kostyliov <rathamahata@php4.ru>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/befs')
-rw-r--r-- | fs/befs/linuxvfs.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/fs/befs/linuxvfs.c b/fs/befs/linuxvfs.c index d06cb023ad02..76afd0d6b86c 100644 --- a/fs/befs/linuxvfs.c +++ b/fs/befs/linuxvfs.c | |||
@@ -900,6 +900,7 @@ static int | |||
900 | befs_statfs(struct dentry *dentry, struct kstatfs *buf) | 900 | befs_statfs(struct dentry *dentry, struct kstatfs *buf) |
901 | { | 901 | { |
902 | struct super_block *sb = dentry->d_sb; | 902 | struct super_block *sb = dentry->d_sb; |
903 | u64 id = huge_encode_dev(sb->s_bdev->bd_dev); | ||
903 | 904 | ||
904 | befs_debug(sb, "---> befs_statfs()"); | 905 | befs_debug(sb, "---> befs_statfs()"); |
905 | 906 | ||
@@ -910,6 +911,8 @@ befs_statfs(struct dentry *dentry, struct kstatfs *buf) | |||
910 | buf->f_bavail = buf->f_bfree; | 911 | buf->f_bavail = buf->f_bfree; |
911 | buf->f_files = 0; /* UNKNOWN */ | 912 | buf->f_files = 0; /* UNKNOWN */ |
912 | buf->f_ffree = 0; /* UNKNOWN */ | 913 | buf->f_ffree = 0; /* UNKNOWN */ |
914 | buf->f_fsid.val[0] = (u32)id; | ||
915 | buf->f_fsid.val[1] = (u32)(id >> 32); | ||
913 | buf->f_namelen = BEFS_NAME_LEN; | 916 | buf->f_namelen = BEFS_NAME_LEN; |
914 | 917 | ||
915 | befs_debug(sb, "<--- befs_statfs()"); | 918 | befs_debug(sb, "<--- befs_statfs()"); |