Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a75a6e4c authored by Mark Fasheh's avatar Mark Fasheh
Browse files

ocfs2: fix init of uuid_net_key



ocfs2_initialize_super() should be copying from the beginning of the uuid.

Signed-off-by: default avatarMark Fasheh <mark.fasheh@oracle.com>
parent e7607ab3
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -1417,7 +1417,7 @@ static int ocfs2_initialize_super(struct super_block *sb,
		goto bail;
	}

	memcpy(&uuid_net_key, &osb->uuid[i], sizeof(osb->net_key));
	memcpy(&uuid_net_key, osb->uuid, sizeof(uuid_net_key));
	osb->net_key = le32_to_cpu(uuid_net_key);

	strncpy(osb->vol_label, di->id2.i_super.s_label, 63);