|
@@ -793,7 +793,10 @@ xfs_mountfs(
|
|
|
* Copies the low order bits of the timestamp and the randomly
|
|
* Copies the low order bits of the timestamp and the randomly
|
|
|
* set "sequence" number out of a UUID.
|
|
* set "sequence" number out of a UUID.
|
|
|
*/
|
|
*/
|
|
|
- uuid_getnodeuniq(&sbp->sb_uuid, mp->m_fixedfsid);
|
|
|
|
|
|
|
+ mp->m_fixedfsid[0] =
|
|
|
|
|
+ (get_unaligned_be16(&sbp->sb_uuid.b[8]) << 16) |
|
|
|
|
|
+ get_unaligned_be16(&sbp->sb_uuid.b[4]);
|
|
|
|
|
+ mp->m_fixedfsid[1] = get_unaligned_be32(&sbp->sb_uuid.b[0]);
|
|
|
|
|
|
|
|
mp->m_dmevmask = 0; /* not persistent; set after each mount */
|
|
mp->m_dmevmask = 0; /* not persistent; set after each mount */
|
|
|
|
|
|