Hi Guys,<br><br>How does lustre handle locking? One of our users is complaining that a perl module (Sotrable) has trouble with its lock_nstore method when it tries to use flock. The following is a hwo they are reporducing this issue:<br>
<br>--<br>&gt; perl -d -e &#39;&#39;<br>
<br>
Loading DB routines from <a href="http://perl5db.pl/" target="_blank">perl5db.pl</a> version 1.3<br>
Editor support available.<br>
<br>
Enter h or `h h&#39; for help, or `man perldebug&#39; for more help.<br>
<br>
Debugged program terminated. Use q to quit or R to restart,<br>
use o inhibit_exit to avoid stopping after program termination,<br>
h q, h R or h o to get additional info.<br>
DB&lt;1&gt; use Fcntl &#39;:flock&#39;<br>
<br>
DB&lt;2&gt; open(FOO, &quot;&gt;&gt;/tmp/gh&quot;) or die &quot;darn&quot;<br>
<br>
DB&lt;3&gt; flock(FOO, LOCK_EX) || die &quot;SHIE: $!&quot;<br>
<br>
DB&lt;4&gt; close FOO<br>
<br>
DB&lt;5&gt; open(FOO, &quot;&gt;&gt;gh&quot;) or die &quot;darn&quot;<br>
<br>
DB&lt;6&gt; flock(FOO, LOCK_EX) || die &quot;SHIE: $!&quot;<br>
SHIE: Function not implemented at (eval<br>
10)[/usr/lib/perl5/5.10.0/<a href="http://perl5db.pl:638/" target="_blank">perl5db.pl:638</a>] line 2.<br>
<br>
DB&lt;7&gt;<br>--<br><br>Thanks in advance for your assistance.<br><br>Regards,<br>-J<br>