diff options
author | Coly Li <coly.li@suse.de> | 2009-04-02 19:59:33 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-04-02 22:05:08 -0400 |
commit | 94ea77ac696d76522ad32a51e84a969f83284eda (patch) | |
tree | 093e7553289e1a7f10b960f808cb86136757dbe9 /fs | |
parent | 8587246a004d6ac10aa12c10e3474cfd9dafa44a (diff) |
fs/cramfs: return f_fsid for statfs(2)
Make cramfs return f_fsid info for statfs(2).
Signed-off-by: Coly Li <coly.li@suse.de>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/cramfs/inode.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/fs/cramfs/inode.c b/fs/cramfs/inode.c index 46e52980b98a..dd3634e4c967 100644 --- a/fs/cramfs/inode.c +++ b/fs/cramfs/inode.c | |||
@@ -318,6 +318,7 @@ out: | |||
318 | static int cramfs_statfs(struct dentry *dentry, struct kstatfs *buf) | 318 | static int cramfs_statfs(struct dentry *dentry, struct kstatfs *buf) |
319 | { | 319 | { |
320 | struct super_block *sb = dentry->d_sb; | 320 | struct super_block *sb = dentry->d_sb; |
321 | u64 id = huge_encode_dev(sb->s_bdev->bd_dev); | ||
321 | 322 | ||
322 | buf->f_type = CRAMFS_MAGIC; | 323 | buf->f_type = CRAMFS_MAGIC; |
323 | buf->f_bsize = PAGE_CACHE_SIZE; | 324 | buf->f_bsize = PAGE_CACHE_SIZE; |
@@ -326,6 +327,8 @@ static int cramfs_statfs(struct dentry *dentry, struct kstatfs *buf) | |||
326 | buf->f_bavail = 0; | 327 | buf->f_bavail = 0; |
327 | buf->f_files = CRAMFS_SB(sb)->files; | 328 | buf->f_files = CRAMFS_SB(sb)->files; |
328 | buf->f_ffree = 0; | 329 | buf->f_ffree = 0; |
330 | buf->f_fsid.val[0] = (u32)id; | ||
331 | buf->f_fsid.val[1] = (u32)(id >> 32); | ||
329 | buf->f_namelen = CRAMFS_MAXPATHLEN; | 332 | buf->f_namelen = CRAMFS_MAXPATHLEN; |
330 | return 0; | 333 | return 0; |
331 | } | 334 | } |