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
On LC's power9 and x86_64 systems, starting at commit 60f17a7, we introduced or uncovered an exiting issue with how we're using Argobots.
The UnifyFS server starts fine, but upon running a client application, it consistently hangs while trying to mount, somewhere inside of invoke_client_attach_rpc().
The following message shows up in the unifyfsd.err log:
This is potentially related to pmodels/argobots#333 (we do initialize Argobots outside of Mochi-Margo), but initial attempts of recommended solutions therein still result in the same assert.
Describe how to reproduce the problem
Use our dependency of mochi-margo, ensuring it depends on argobots@1.1 or argobots@main.
E.g.,
The text was updated successfully, but these errors were encountered:
CamStan
changed the title
Client mount triggers Argobots assert with latest develop branch default Argobots
Client mount triggers Argobots assert with latest develop branch and default Argobots
Aug 2, 2021
System information
Describe the problem you're observing
On LC's power9 and x86_64 systems, starting at commit 60f17a7, we introduced or uncovered an exiting issue with how we're using Argobots.
The UnifyFS server starts fine, but upon running a client application, it consistently hangs while trying to mount, somewhere inside of
invoke_client_attach_rpc()
.The following message shows up in the unifyfsd.err log:
Potentially Related Issue
This is potentially related to pmodels/argobots#333 (we do initialize Argobots outside of Mochi-Margo), but initial attempts of recommended solutions therein still result in the same assert.
Describe how to reproduce the problem
mochi-margo
, ensuring it depends onargobots@1.1
orargobots@main
.E.g.,
write
orwriteread
example program with a single process.Include any warning or errors or releveant debugging data
unifyfsd.err
log contains:The server log,
unifyfsd.log
appears normal up until it hangs:The client log (
writeread-gotcha
in this case) appears normal until it hangs as well:Current Workaround
Using Argobots with
stackguard=mprotect
orstackguard=mprotect-strict
(both requireargobots@main
) so far have prevented the assert from happening.The text was updated successfully, but these errors were encountered: