remove wmb() call from x86 cpu_reset()

The rationale is pretty much the same as in r353747.
There is no subsequent dependent store.
The store is to the regular (TSO) memory anyway.

MFC after:	23 days
This commit is contained in:
Andriy Gapon 2019-10-19 07:13:15 +00:00
parent 869dbab7ba
commit 3aa8a8ed2d
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=353748

View File

@ -390,7 +390,6 @@ cpu_reset(void)
mb = &pcpu_find(0)->pc_monitorbuf;
atomic_store_int(&mb->stop_state,
MONITOR_STOPSTATE_RUNNING);
wmb();
cnt = 0;
while (cpu_reset_proxy_active == 0 && cnt < 10000000) {