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

Commit 0dab3e0e authored by Michael S. Tsirkin's avatar Michael S. Tsirkin Committed by Martin Schwidefsky
Browse files

s390: drop smp_mb in vdso_init



The initial s390 vdso code is heavily influenced by the powerpc version
which does have a smp_wmb in vdso_init right before the vdso_ready=1
assignment. s390 has no need for that.

Signed-off-by: default avatarMichael S. Tsirkin <mst@redhat.com>
Message-Id: <1452010645-25380-1-git-send-email-mst@redhat.com>
Signed-off-by: default avatarChristian Borntraeger <borntraeger@de.ibm.com>
Signed-off-by: default avatarMartin Schwidefsky <schwidefsky@de.ibm.com>
parent c667aeac
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -299,8 +299,6 @@ static int __init vdso_init(void)

	get_page(virt_to_page(vdso_data));

	smp_mb();

	return 0;
}
early_initcall(vdso_init);