[PATCH] reduce boilerplate in fsid handling
Get rid of boilerplate in most of ->statfs() instances... Signed-off-by: Al Viro <viro@zeniv.linux.org.uk>
This commit is contained in:
@@ -2643,8 +2643,7 @@ static int ntfs_statfs(struct dentry *dentry, struct kstatfs *sfs)
|
||||
* the least significant 32-bits in f_fsid[0] and the most significant
|
||||
* 32-bits in f_fsid[1].
|
||||
*/
|
||||
sfs->f_fsid.val[0] = vol->serial_no & 0xffffffff;
|
||||
sfs->f_fsid.val[1] = (vol->serial_no >> 32) & 0xffffffff;
|
||||
sfs->f_fsid = u64_to_fsid(vol->serial_no);
|
||||
/* Maximum length of filenames. */
|
||||
sfs->f_namelen = NTFS_MAX_NAME_LEN;
|
||||
return 0;
|
||||
|
Reference in New Issue
Block a user