You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Does your kernel have support for membarrier with torvalds/linux@2a36ab7 (5.10 or later)?
It should be fairly rare to need to use SlowFence (the procedure where the assertion is failing), but at the point it is needed, it's important for correctness that it complete successfully.
It assumes that /proc/self/cpuset exists here,
tcmalloc/tcmalloc/internal/percpu.cc
Line 238 in 537629b
but actually this file doesn't exist if kernel has been built with CONFIG_PROC_PID_CPUSET=n.
when /proc/self/cpuset doesn't exist, open() must be failed and variable fd become negative, then it will crash here.
tcmalloc/tcmalloc/internal/percpu.cc
Line 239 in 537629b
The text was updated successfully, but these errors were encountered: