NFS: Store the file system "fsid" value in the NFS super block.
[deliverable/linux.git] / fs / nfs / nfs2xdr.c
index f0015fa876e14ab9fa5228d24d6252837283ddcc..a7ed88f97a11e01b9ab4d813be2c1c21de2db2a5 100644 (file)
@@ -131,7 +131,8 @@ xdr_decode_fattr(u32 *p, struct nfs_fattr *fattr)
        fattr->du.nfs2.blocksize = ntohl(*p++);
        rdev = ntohl(*p++);
        fattr->du.nfs2.blocks = ntohl(*p++);
-       fattr->fsid_u.nfs3 = ntohl(*p++);
+       fattr->fsid.major = ntohl(*p++);
+       fattr->fsid.minor = 0;
        fattr->fileid = ntohl(*p++);
        p = xdr_decode_time(p, &fattr->atime);
        p = xdr_decode_time(p, &fattr->mtime);
This page took 0.031282 seconds and 5 git commands to generate.