On 06/26, Chris Snook wrote:Oleg Nesterov wrote:on top of sys_time-speedup.patchWithout the smp_rmb, you can potentially have a situation where one CPU is still reading an old value from cache while another has the new value.
Ingo Molnar wrote:asmlinkage long sys_time(time_t __user * tloc)Why do we need this barrier? My guess it is needed to prevent
{
- time_t i;
- struct timeval tv;
+ /*
+ * We read xtime.tv_sec atomically - it's updated
+ * atomically by update_wall_time(), so no need to
+ * even read-lock the xtime seqlock:
+ */
+ time_t i = xtime.tv_sec;
- do_gettimeofday(&tv);
- i = tv.tv_sec;
+ smp_rmb(); /* sys_time() results are coherent */
the reading of xtime.tv_sec twice, yes? In that case a simple
barrier() should be enough.
I can't understand this.
Fisrt, smp_rmb() can't help in this case. It can't influence the preceeding
LOAD if it was from cache.
Even if it could, another CPU can alter the value just after the reading
completes, and we have the same situation.
Could you please clarify if I am wrong?
Oleg.