Commit 94ea77ac696d76522ad32a51e84a969f83284eda
Committed by
Linus Torvalds
1 parent
8587246a00
Exists in
master
and in
7 other branches
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>
Showing 1 changed file with 3 additions and 0 deletions Side-by-side Diff
fs/cramfs/inode.c
... | ... | @@ -318,6 +318,7 @@ |
318 | 318 | static int cramfs_statfs(struct dentry *dentry, struct kstatfs *buf) |
319 | 319 | { |
320 | 320 | struct super_block *sb = dentry->d_sb; |
321 | + u64 id = huge_encode_dev(sb->s_bdev->bd_dev); | |
321 | 322 | |
322 | 323 | buf->f_type = CRAMFS_MAGIC; |
323 | 324 | buf->f_bsize = PAGE_CACHE_SIZE; |
... | ... | @@ -326,6 +327,8 @@ |
326 | 327 | buf->f_bavail = 0; |
327 | 328 | buf->f_files = CRAMFS_SB(sb)->files; |
328 | 329 | buf->f_ffree = 0; |
330 | + buf->f_fsid.val[0] = (u32)id; | |
331 | + buf->f_fsid.val[1] = (u32)(id >> 32); | |
329 | 332 | buf->f_namelen = CRAMFS_MAXPATHLEN; |
330 | 333 | return 0; |
331 | 334 | } |