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
DAOS-18779 client: reset per-thread based variable after fork - b28
DAOS maintains some per-thread based variables on client. They
are usually used to distinguish current process from the others.
If application creates new process (such as via fork()), these
per-thread variables will inherit the values from parents, and
if without reset, we cannot distinguish the children processes
from the parents via these per-thread based variables. That is
not only confused but also may cause correctness issues.
The patch offers related reset interfaces, and application can
trigger them via after_fork() callback.
Allow-unstable-test: true
Signed-off-by: Fan Yong <fan.yong@hpe.com>
0 commit comments