<!-- 
RSS generated by JIRA (9.4.14#940014-sha1:734e6822bbf0d45eff9af51f82432957f73aa32c) at Sat Feb 10 01:09:47 UTC 2024

It is possible to restrict the fields that are returned in this document by specifying the 'field' parameter in your request.
For example, to request only the issue key and summary append 'field=key&field=summary' to the URL of your request.
-->
<rss version="0.92" >
<channel>
    <title>Whamcloud Community JIRA</title>
    <link>https://jira.whamcloud.com</link>
    <description>This file is an XML representation of an issue</description>
    <language>en-us</language>    <build-info>
        <version>9.4.14</version>
        <build-number>940014</build-number>
        <build-date>05-12-2023</build-date>
    </build-info>


<item>
            <title>[LU-721] Parallel writes to same file results in a file of zeroes</title>
                <link>https://jira.whamcloud.com/browse/LU-721</link>
                <project id="10000" key="LU">Lustre</project>
                    <description>&lt;p&gt;this is in an MPI environment.&lt;/p&gt;


&lt;p&gt;Total (customer) is running MPI(SGI-MPT, actually) processes on different compute&lt;br/&gt;
nodes writing to the same file in pararallel would result in the file&lt;br/&gt;
contain zeros.  this doesn&apos;t happen all the time, but enough to be a severe&lt;br/&gt;
issue.&lt;/p&gt;</description>
                <environment>Compute node:&lt;br/&gt;
- SLES 11 kernel 2.6.32.29-0.3-default&lt;br/&gt;
- lustre 1.8.25 build 1.8.5-20110509165255-PRISTINE-2.6.32.29-0.3-default&lt;br/&gt;
OSS:&lt;br/&gt;
- SLES 10 SP2 kernerl 2.6.16.60-0.42.8_default&lt;br/&gt;
- lustre 1.8.4&lt;br/&gt;
</environment>
        <key id="11916">LU-721</key>
            <summary>Parallel writes to same file results in a file of zeroes</summary>
                <type id="1" iconUrl="https://jira.whamcloud.com/secure/viewavatar?size=xsmall&amp;avatarId=11303&amp;avatarType=issuetype">Bug</type>
                                            <priority id="1" iconUrl="https://jira.whamcloud.com/images/icons/priorities/blocker.svg">Blocker</priority>
                        <status id="5" iconUrl="https://jira.whamcloud.com/images/icons/statuses/resolved.png" description="A resolution has been taken, and it is awaiting verification by reporter. From here issues are either reopened, or are closed.">Resolved</status>
                    <statusCategory id="3" key="done" colorName="success"/>
                                    <resolution id="1">Fixed</resolution>
                                        <assignee username="bobijam">Zhenyu Xu</assignee>
                                    <reporter username="bobijam">Zhenyu Xu</reporter>
                        <labels>
                    </labels>
                <created>Sun, 25 Sep 2011 23:05:11 +0000</created>
                <updated>Tue, 10 Jan 2012 17:41:04 +0000</updated>
                            <resolved>Mon, 10 Oct 2011 09:59:23 +0000</resolved>
                                    <version>Lustre 1.8.6</version>
                                    <fixVersion>Lustre 2.2.0</fixVersion>
                    <fixVersion>Lustre 2.1.1</fixVersion>
                    <fixVersion>Lustre 1.8.7</fixVersion>
                                        <due></due>
                            <votes>0</votes>
                                    <watches>4</watches>
                                                                            <comments>
                            <comment id="20504" author="bobijam" created="Sun, 25 Sep 2011 23:07:30 +0000"  >&lt;p&gt;quote from &lt;a href=&quot;https://bugzilla.lustre.org/show_bug.cgi?id=24548#c23&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://bugzilla.lustre.org/show_bug.cgi?id=24548#c23&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;The following scenario seems to lead to wrong data in a  file:&lt;/p&gt;

&lt;p&gt;One client writes data under a lock, it completes the write and runs file closing.&lt;br/&gt;
Another client wants to write the file, requests a lock, server sees a conflict and sends blocking&lt;br/&gt;
AST to first client.&lt;br/&gt;
First client handles blocking AST (sending data protected by a lock to OST), the lock has&lt;br/&gt;
LDLM_FL_CANCELING flag set.&lt;/p&gt;

&lt;p&gt;In the meantime, file close runs concurrently and enters dcache.c:ll_ddelete(), which contains the&lt;br/&gt;
following lines:&lt;/p&gt;

&lt;p&gt;        /* if not ldlm lock for this inode, set i_nlink to 0 so that&lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;this inode can be recycled later b=20433 */&lt;br/&gt;
        LASSERT(atomic_read(&amp;amp;de-&amp;gt;d_count) == 0);&lt;br/&gt;
        if (de-&amp;gt;d_inode &amp;amp;&amp;amp; !find_cbdata(de-&amp;gt;d_inode))&lt;br/&gt;
                de-&amp;gt;d_inode-&amp;gt;i_nlink = 0;&lt;/li&gt;
&lt;/ul&gt;


&lt;p&gt;dcache.c:find_cbdata() checks if there are any locks associated with the file using&lt;br/&gt;
dcache.c:return_if_equal() which currently does not count lock with LDLM_FL_CANCELING as such&lt;br/&gt;
locks. So, inode gets nlink set to 0, and delete_inode invalidates pages which have not been sent&lt;br/&gt;
to OST yet.&lt;/p&gt;

&lt;p&gt;The proposed quick fix changes return_if_equal() to respect locks which are being canceled but&lt;br/&gt;
whose data are to be sent to servers.&lt;/p&gt;</comment>
                            <comment id="20505" author="bobijam" created="Sun, 25 Sep 2011 23:52:06 +0000"  >&lt;p&gt;b18 patch tracking at &lt;a href=&quot;http://review.whamcloud.com/1422&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://review.whamcloud.com/1422&lt;/a&gt;&lt;br/&gt;
master patch tracking at &lt;a href=&quot;http://review.whamcloud.com/1423&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://review.whamcloud.com/1423&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="20633" author="hudson" created="Mon, 3 Oct 2011 15:12:13 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=i686,build_type=client,distro=el6,ib_stack=inkernel/284/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,client,el6,inkernel #284&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-721&quot; title=&quot;Parallel writes to same file results in a file of zeroes&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-721&quot;&gt;&lt;del&gt;LU-721&lt;/del&gt;&lt;/a&gt; llite: Parallel writes to same file results in zero file&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=0356a2376375020abb861423ce557767dadf593e&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;0356a2376375020abb861423ce557767dadf593e&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/llite/dcache.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="20635" author="hudson" created="Mon, 3 Oct 2011 15:13:31 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=x86_64,build_type=server,distro=el6,ib_stack=inkernel/284/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,server,el6,inkernel #284&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-721&quot; title=&quot;Parallel writes to same file results in a file of zeroes&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-721&quot;&gt;&lt;del&gt;LU-721&lt;/del&gt;&lt;/a&gt; llite: Parallel writes to same file results in zero file&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=0356a2376375020abb861423ce557767dadf593e&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;0356a2376375020abb861423ce557767dadf593e&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/llite/dcache.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="20637" author="hudson" created="Mon, 3 Oct 2011 15:20:07 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=i686,build_type=client,distro=el5,ib_stack=ofa/284/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,client,el5,ofa #284&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-721&quot; title=&quot;Parallel writes to same file results in a file of zeroes&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-721&quot;&gt;&lt;del&gt;LU-721&lt;/del&gt;&lt;/a&gt; llite: Parallel writes to same file results in zero file&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=0356a2376375020abb861423ce557767dadf593e&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;0356a2376375020abb861423ce557767dadf593e&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/llite/dcache.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="20638" author="hudson" created="Mon, 3 Oct 2011 15:26:29 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=x86_64,build_type=client,distro=el5,ib_stack=inkernel/284/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,el5,inkernel #284&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-721&quot; title=&quot;Parallel writes to same file results in a file of zeroes&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-721&quot;&gt;&lt;del&gt;LU-721&lt;/del&gt;&lt;/a&gt; llite: Parallel writes to same file results in zero file&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=0356a2376375020abb861423ce557767dadf593e&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;0356a2376375020abb861423ce557767dadf593e&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/llite/dcache.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="20639" author="hudson" created="Mon, 3 Oct 2011 15:26:45 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=i686,build_type=server,distro=el5,ib_stack=inkernel/284/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,server,el5,inkernel #284&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-721&quot; title=&quot;Parallel writes to same file results in a file of zeroes&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-721&quot;&gt;&lt;del&gt;LU-721&lt;/del&gt;&lt;/a&gt; llite: Parallel writes to same file results in zero file&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=0356a2376375020abb861423ce557767dadf593e&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;0356a2376375020abb861423ce557767dadf593e&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/llite/dcache.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="20640" author="hudson" created="Mon, 3 Oct 2011 15:27:04 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=i686,build_type=server,distro=el6,ib_stack=inkernel/284/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,server,el6,inkernel #284&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-721&quot; title=&quot;Parallel writes to same file results in a file of zeroes&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-721&quot;&gt;&lt;del&gt;LU-721&lt;/del&gt;&lt;/a&gt; llite: Parallel writes to same file results in zero file&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=0356a2376375020abb861423ce557767dadf593e&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;0356a2376375020abb861423ce557767dadf593e&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/llite/dcache.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="20642" author="hudson" created="Mon, 3 Oct 2011 15:37:17 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=x86_64,build_type=client,distro=sles11,ib_stack=inkernel/284/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,sles11,inkernel #284&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-721&quot; title=&quot;Parallel writes to same file results in a file of zeroes&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-721&quot;&gt;&lt;del&gt;LU-721&lt;/del&gt;&lt;/a&gt; llite: Parallel writes to same file results in zero file&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=0356a2376375020abb861423ce557767dadf593e&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;0356a2376375020abb861423ce557767dadf593e&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/llite/dcache.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="20643" author="hudson" created="Mon, 3 Oct 2011 15:38:50 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=x86_64,build_type=client,distro=el6,ib_stack=inkernel/284/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,el6,inkernel #284&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-721&quot; title=&quot;Parallel writes to same file results in a file of zeroes&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-721&quot;&gt;&lt;del&gt;LU-721&lt;/del&gt;&lt;/a&gt; llite: Parallel writes to same file results in zero file&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=0356a2376375020abb861423ce557767dadf593e&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;0356a2376375020abb861423ce557767dadf593e&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/llite/dcache.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="20644" author="hudson" created="Mon, 3 Oct 2011 15:39:02 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=i686,build_type=client,distro=el5,ib_stack=inkernel/284/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,client,el5,inkernel #284&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-721&quot; title=&quot;Parallel writes to same file results in a file of zeroes&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-721&quot;&gt;&lt;del&gt;LU-721&lt;/del&gt;&lt;/a&gt; llite: Parallel writes to same file results in zero file&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=0356a2376375020abb861423ce557767dadf593e&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;0356a2376375020abb861423ce557767dadf593e&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/llite/dcache.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="20645" author="hudson" created="Mon, 3 Oct 2011 15:39:10 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=x86_64,build_type=server,distro=el5,ib_stack=inkernel/284/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,server,el5,inkernel #284&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-721&quot; title=&quot;Parallel writes to same file results in a file of zeroes&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-721&quot;&gt;&lt;del&gt;LU-721&lt;/del&gt;&lt;/a&gt; llite: Parallel writes to same file results in zero file&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=0356a2376375020abb861423ce557767dadf593e&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;0356a2376375020abb861423ce557767dadf593e&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/llite/dcache.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="20646" author="hudson" created="Mon, 3 Oct 2011 15:39:22 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=x86_64,build_type=client,distro=ubuntu1004,ib_stack=inkernel/284/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,ubuntu1004,inkernel #284&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-721&quot; title=&quot;Parallel writes to same file results in a file of zeroes&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-721&quot;&gt;&lt;del&gt;LU-721&lt;/del&gt;&lt;/a&gt; llite: Parallel writes to same file results in zero file&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=0356a2376375020abb861423ce557767dadf593e&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;0356a2376375020abb861423ce557767dadf593e&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/llite/dcache.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="20647" author="hudson" created="Mon, 3 Oct 2011 15:40:07 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=x86_64,build_type=server,distro=el5,ib_stack=ofa/284/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,server,el5,ofa #284&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-721&quot; title=&quot;Parallel writes to same file results in a file of zeroes&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-721&quot;&gt;&lt;del&gt;LU-721&lt;/del&gt;&lt;/a&gt; llite: Parallel writes to same file results in zero file&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=0356a2376375020abb861423ce557767dadf593e&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;0356a2376375020abb861423ce557767dadf593e&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/llite/dcache.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="20649" author="hudson" created="Mon, 3 Oct 2011 15:51:35 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=i686,build_type=server,distro=el5,ib_stack=ofa/284/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,server,el5,ofa #284&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-721&quot; title=&quot;Parallel writes to same file results in a file of zeroes&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-721&quot;&gt;&lt;del&gt;LU-721&lt;/del&gt;&lt;/a&gt; llite: Parallel writes to same file results in zero file&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=0356a2376375020abb861423ce557767dadf593e&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;0356a2376375020abb861423ce557767dadf593e&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/llite/dcache.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="20650" author="hudson" created="Mon, 3 Oct 2011 15:51:39 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=x86_64,build_type=client,distro=el5,ib_stack=ofa/284/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,el5,ofa #284&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-721&quot; title=&quot;Parallel writes to same file results in a file of zeroes&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-721&quot;&gt;&lt;del&gt;LU-721&lt;/del&gt;&lt;/a&gt; llite: Parallel writes to same file results in zero file&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=0356a2376375020abb861423ce557767dadf593e&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;0356a2376375020abb861423ce557767dadf593e&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/llite/dcache.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="20765" author="sarah" created="Tue, 4 Oct 2011 19:13:35 +0000"  >&lt;p&gt;got kernel panic when running conf-sanity test 22, 23a on build &lt;a href=&quot;http://build.whamcloud.com/job/lustre-reviews/2387/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://build.whamcloud.com/job/lustre-reviews/2387/&lt;/a&gt; rhel5-x86_64&lt;/p&gt;

&lt;p&gt;Lustre: DEBUG MARKER: == test 22: start a client before osts (should return errs) == 15:54:17&lt;br/&gt;
Lustre: DEBUG MARKER: ost now in FULL state&lt;br/&gt;
LustreError: 152-6: Ignoring deprecated mount option &apos;acl&apos;.&lt;br/&gt;
Lustre: MGC192.168.4.2@o2ib: Reactivating import&lt;br/&gt;
Lustre: Client lustre-client has started&lt;br/&gt;
Lustre: 25423:0:(client.c:1487:ptlrpc_expire_one_request()) @@@ Request x1381780714160180 sent from lustre-OST0000-osc-ffff810326f68800 to NID 192.168.4.131@o2ib 5s ago has timed out (5s prior to deadline).&lt;br/&gt;
  req@ffff810325487400 x1381780714160180/t0 o8-&amp;gt;lustre-OST0000_UUID@192.168.4.131@o2ib:28/4 lens 368/584 e 0 to 1 dl 1317768871 ref 1 fl Rpc:N/0/0 rc 0/0&lt;br/&gt;
LustreError: 30513:0:(ldlm_request.c:1039:ldlm_cli_cancel_req()) Got rc -108 from cancel RPC: canceling anyway&lt;br/&gt;
LustreError: 30513:0:(ldlm_request.c:1039:ldlm_cli_cancel_req()) Skipped 2 previous similar messages&lt;br/&gt;
LustreError: 30513:0:(ldlm_request.c:1597:ldlm_cli_cancel_list()) ldlm_cli_cancel_list: -108&lt;br/&gt;
LustreError: 30513:0:(ldlm_request.c:1597:ldlm_cli_cancel_list()) Skipped 2 previous similar messages&lt;br/&gt;
Lustre: client ffff810326f68800 umount complete&lt;br/&gt;
LustreError: 152-6: Ignoring deprecated mount option &apos;acl&apos;.&lt;br/&gt;
Lustre: MGC192.168.4.2@o2ib: Reactivating import&lt;br/&gt;
Lustre: Client lustre-client has started&lt;br/&gt;
LustreError: 30629:0:(ldlm_request.c:1039:ldlm_cli_cancel_req()) Got rc -108 from cancel RPC: canceling anyway&lt;br/&gt;
LustreError: 30629:0:(ldlm_request.c:1039:ldlm_cli_cancel_req()) Skipped 1 previous similar message&lt;br/&gt;
LustreError: 30629:0:(ldlm_request.c:1597:ldlm_cli_cancel_list()) ldlm_cli_cancel_list: -108&lt;br/&gt;
LustreError: 30629:0:(ldlm_request.c:1597:ldlm_cli_cancel_list()) Skipped 1 previous similar message&lt;br/&gt;
Lustre: client ffff81033eaf8c00 umount complete&lt;br/&gt;
LustreError: 152-6: Ignoring deprecated mount option &apos;acl&apos;.&lt;br/&gt;
Lustre: MGC192.168.4.2@o2ib: Reactivating import&lt;br/&gt;
LustreError: 11-0: an error occurred while communicating with 192.168.4.2@o2ib. The mds_connect operation failed with -11&lt;br/&gt;
Lustre: Client lustre-client has started&lt;br/&gt;
Lustre: setting import lustre-MDT0000_UUID INACTIVE by administrator request&lt;br/&gt;
Lustre: setting import lustre-OST0000_UUID INACTIVE by administrator request&lt;br/&gt;
LustreError: 31531:0:(ldlm_request.c:1039:ldlm_cli_cancel_req()) Got rc -108 from cancel RPC: canceling anyway&lt;br/&gt;
LustreError: 31531:0:(ldlm_request.c:1597:ldlm_cli_cancel_list()) ldlm_cli_cancel_list: -108&lt;br/&gt;
Lustre: 31531:0:(client.c:1487:ptlrpc_expire_one_request()) @@@ Request x1381780836843537 sent from MGC192.168.4.2@o2ib to NID 192.168.4.2@o2ib 6s ago has timed out (6s prior to deadline).&lt;br/&gt;
  req@ffff810326cbc800 x1381780836843537/t0 o251-&amp;gt;MGS@MGC192.168.4.2@o2ib_0:26/25 lens 192/384 e 0 to 1 dl 1317768914 ref 1 fl Rpc:N/0/0 rc 0/0&lt;br/&gt;
Lustre: client ffff8103263fb000 umount complete&lt;br/&gt;
LustreError: 152-6: Ignoring deprecated mount option &apos;acl&apos;.&lt;br/&gt;
Lustre: MGC192.168.4.2@o2ib: Reactivating import&lt;br/&gt;
LustreError: 11-0: an error occurred while communicating with 192.168.4.2@o2ib. The mds_connect operation failed with -16&lt;br/&gt;
LustreError: 31583:0:(lov_obd.c:1009:lov_cleanup()) lov tgt 0 not cleaned! deathrow=0, lovrc=1&lt;br/&gt;
LustreError: 31583:0:(ldlm_resource.c:636:ldlm_namespace_free_post()) ASSERTION(list_empty(&amp;amp;ns-&amp;gt;ns_list_chain)) failed&lt;br/&gt;
LustreError: 31583:0:(ldlm_resource.c:636:ldlm_namespace_free_post()) LBUG&lt;br/&gt;
Pid: 31583, comm: mount.lustre&lt;/p&gt;

&lt;p&gt;Call Trace:&lt;br/&gt;
 &lt;span class=&quot;error&quot;&gt;&amp;#91;&amp;lt;ffffffff8007725f&amp;gt;&amp;#93;&lt;/span&gt; do_flush_tlb_all+0x0/0x6a&lt;br/&gt;
 &lt;span class=&quot;error&quot;&gt;&amp;#91;&amp;lt;ffffffff887af6a1&amp;gt;&amp;#93;&lt;/span&gt; libcfs_debug_dumpstack+0x51/0x60 &lt;span class=&quot;error&quot;&gt;&amp;#91;libcfs&amp;#93;&lt;/span&gt;&lt;br/&gt;
 &lt;span class=&quot;error&quot;&gt;&amp;#91;&amp;lt;ffffffff887afbda&amp;gt;&amp;#93;&lt;/span&gt; lbug_with_loc+0x7a/0xd0 &lt;span class=&quot;error&quot;&gt;&amp;#91;libcfs&amp;#93;&lt;/span&gt;&lt;br/&gt;
 &lt;span class=&quot;error&quot;&gt;&amp;#91;&amp;lt;ffffffff887b7fc0&amp;gt;&amp;#93;&lt;/span&gt; tracefile_init+0x0/0x110 &lt;span class=&quot;error&quot;&gt;&amp;#91;libcfs&amp;#93;&lt;/span&gt;&lt;br/&gt;
 &lt;span class=&quot;error&quot;&gt;&amp;#91;&amp;lt;ffffffff888ddc08&amp;gt;&amp;#93;&lt;/span&gt; ldlm_namespace_free_post+0x2f8/0x3f0 &lt;span class=&quot;error&quot;&gt;&amp;#91;ptlrpc&amp;#93;&lt;/span&gt;&lt;br/&gt;
 &lt;span class=&quot;error&quot;&gt;&amp;#91;&amp;lt;ffffffff888e473c&amp;gt;&amp;#93;&lt;/span&gt; client_obd_cleanup+0x6c/0x100 &lt;span class=&quot;error&quot;&gt;&amp;#91;ptlrpc&amp;#93;&lt;/span&gt;&lt;br/&gt;
 &lt;span class=&quot;error&quot;&gt;&amp;#91;&amp;lt;ffffffff88a02bc5&amp;gt;&amp;#93;&lt;/span&gt; osc_cleanup+0x255/0x2d0 &lt;span class=&quot;error&quot;&gt;&amp;#91;osc&amp;#93;&lt;/span&gt;&lt;br/&gt;
 &lt;span class=&quot;error&quot;&gt;&amp;#91;&amp;lt;ffffffff8887157c&amp;gt;&amp;#93;&lt;/span&gt; class_decref+0x5dc/0x730 &lt;span class=&quot;error&quot;&gt;&amp;#91;obdclass&amp;#93;&lt;/span&gt;&lt;br/&gt;
 &lt;span class=&quot;error&quot;&gt;&amp;#91;&amp;lt;ffffffff88859962&amp;gt;&amp;#93;&lt;/span&gt; obd_zombie_impexp_cull+0x82/0xa0 &lt;span class=&quot;error&quot;&gt;&amp;#91;obdclass&amp;#93;&lt;/span&gt;&lt;br/&gt;
 &lt;span class=&quot;error&quot;&gt;&amp;#91;&amp;lt;ffffffff8887285d&amp;gt;&amp;#93;&lt;/span&gt; class_detach+0x2bd/0x350 &lt;span class=&quot;error&quot;&gt;&amp;#91;obdclass&amp;#93;&lt;/span&gt;&lt;br/&gt;
 &lt;span class=&quot;error&quot;&gt;&amp;#91;&amp;lt;ffffffff8885da89&amp;gt;&amp;#93;&lt;/span&gt; class_name2obd+0x9/0x30 &lt;span class=&quot;error&quot;&gt;&amp;#91;obdclass&amp;#93;&lt;/span&gt;&lt;br/&gt;
 &lt;span class=&quot;error&quot;&gt;&amp;#91;&amp;lt;ffffffff8887662e&amp;gt;&amp;#93;&lt;/span&gt; class_process_config+0x1dae/0x3180 &lt;span class=&quot;error&quot;&gt;&amp;#91;obdclass&amp;#93;&lt;/span&gt;&lt;br/&gt;
 &lt;span class=&quot;error&quot;&gt;&amp;#91;&amp;lt;ffffffff88878547&amp;gt;&amp;#93;&lt;/span&gt; class_manual_cleanup+0xb47/0xe10 &lt;span class=&quot;error&quot;&gt;&amp;#91;obdclass&amp;#93;&lt;/span&gt;&lt;br/&gt;
 &lt;span class=&quot;error&quot;&gt;&amp;#91;&amp;lt;ffffffff8885f66f&amp;gt;&amp;#93;&lt;/span&gt; class_devices_in_group+0x4f/0xa0 &lt;span class=&quot;error&quot;&gt;&amp;#91;obdclass&amp;#93;&lt;/span&gt;&lt;br/&gt;
 &lt;span class=&quot;error&quot;&gt;&amp;#91;&amp;lt;ffffffff88b1c06d&amp;gt;&amp;#93;&lt;/span&gt; ll_put_super+0x1bd/0x2f0 &lt;span class=&quot;error&quot;&gt;&amp;#91;lustre&amp;#93;&lt;/span&gt;&lt;br/&gt;
 &lt;span class=&quot;error&quot;&gt;&amp;#91;&amp;lt;ffffffff88b1e33a&amp;gt;&amp;#93;&lt;/span&gt; ll_fill_super+0x219a/0x2370 &lt;span class=&quot;error&quot;&gt;&amp;#91;lustre&amp;#93;&lt;/span&gt;&lt;br/&gt;
 &lt;span class=&quot;error&quot;&gt;&amp;#91;&amp;lt;ffffffff888e469e&amp;gt;&amp;#93;&lt;/span&gt; client_connect_import+0x4ee/0x520 &lt;span class=&quot;error&quot;&gt;&amp;#91;ptlrpc&amp;#93;&lt;/span&gt;&lt;br/&gt;
 &lt;span class=&quot;error&quot;&gt;&amp;#91;&amp;lt;ffffffff8888ab50&amp;gt;&amp;#93;&lt;/span&gt; lustre_fill_super+0x1770/0x1970 &lt;span class=&quot;error&quot;&gt;&amp;#91;obdclass&amp;#93;&lt;/span&gt;&lt;br/&gt;
 &lt;span class=&quot;error&quot;&gt;&amp;#91;&amp;lt;ffffffff800ef592&amp;gt;&amp;#93;&lt;/span&gt; get_filesystem+0x12/0x3b&lt;br/&gt;
 &lt;span class=&quot;error&quot;&gt;&amp;#91;&amp;lt;ffffffff800e6298&amp;gt;&amp;#93;&lt;/span&gt; sget+0x365/0x377&lt;br/&gt;
 &lt;span class=&quot;error&quot;&gt;&amp;#91;&amp;lt;ffffffff800e69fd&amp;gt;&amp;#93;&lt;/span&gt; set_anon_super+0x0/0xab&lt;br/&gt;
 &lt;span class=&quot;error&quot;&gt;&amp;#91;&amp;lt;ffffffff888893e0&amp;gt;&amp;#93;&lt;/span&gt; lustre_fill_super+0x0/0x1970 &lt;span class=&quot;error&quot;&gt;&amp;#91;obdclass&amp;#93;&lt;/span&gt;&lt;br/&gt;
 &lt;span class=&quot;error&quot;&gt;&amp;#91;&amp;lt;ffffffff800e6c77&amp;gt;&amp;#93;&lt;/span&gt; get_sb_nodev+0x4f/0x97&lt;br/&gt;
 &lt;span class=&quot;error&quot;&gt;&amp;#91;&amp;lt;ffffffff800e654f&amp;gt;&amp;#93;&lt;/span&gt; vfs_kern_mount+0x93/0x11a&lt;br/&gt;
 &lt;span class=&quot;error&quot;&gt;&amp;#91;&amp;lt;ffffffff800e6618&amp;gt;&amp;#93;&lt;/span&gt; do_kern_mount+0x36/0x4d&lt;br/&gt;
 &lt;span class=&quot;error&quot;&gt;&amp;#91;&amp;lt;ffffffff800f0ec1&amp;gt;&amp;#93;&lt;/span&gt; do_mount+0x6a9/0x719&lt;br/&gt;
 &lt;span class=&quot;error&quot;&gt;&amp;#91;&amp;lt;ffffffff8000d044&amp;gt;&amp;#93;&lt;/span&gt; do_lookup+0x65/0x1e6&lt;br/&gt;
 &lt;span class=&quot;error&quot;&gt;&amp;#91;&amp;lt;ffffffff8002cc16&amp;gt;&amp;#93;&lt;/span&gt; mntput_no_expire+0x19/0x89&lt;br/&gt;
 &lt;span class=&quot;error&quot;&gt;&amp;#91;&amp;lt;ffffffff8000a81a&amp;gt;&amp;#93;&lt;/span&gt; __link_path_walk+0xf79/0xfb9&lt;br/&gt;
 &lt;span class=&quot;error&quot;&gt;&amp;#91;&amp;lt;ffffffff8002cc16&amp;gt;&amp;#93;&lt;/span&gt; mntput_no_expire+0x19/0x89&lt;br/&gt;
 &lt;span class=&quot;error&quot;&gt;&amp;#91;&amp;lt;ffffffff8000eb94&amp;gt;&amp;#93;&lt;/span&gt; link_path_walk+0xa6/0xb2&lt;br/&gt;
 &lt;span class=&quot;error&quot;&gt;&amp;#91;&amp;lt;ffffffff800ce6ab&amp;gt;&amp;#93;&lt;/span&gt; zone_statistics+0x3e/0x6d&lt;br/&gt;
 &lt;span class=&quot;error&quot;&gt;&amp;#91;&amp;lt;ffffffff8000f41e&amp;gt;&amp;#93;&lt;/span&gt; __alloc_pages+0x78/0x308&lt;br/&gt;
 &lt;span class=&quot;error&quot;&gt;&amp;#91;&amp;lt;ffffffff8004c76c&amp;gt;&amp;#93;&lt;/span&gt; sys_mount+0x8a/0xcd&lt;br/&gt;
 &lt;span class=&quot;error&quot;&gt;&amp;#91;&amp;lt;ffffffff8005d28d&amp;gt;&amp;#93;&lt;/span&gt; tracesys+0xd5/0xe0&lt;/p&gt;


&lt;p&gt;Message fromLustreError: dumping log to /tmp/lustre-log.1317768920.31583&lt;br/&gt;
 syslogd@ at Tue Oct  4 15:55:20 2011 ...&lt;br/&gt;
client-15 kernel: LustreError: 31583:0:(ldlm_resource.c:636:ldlm_namespace_free_post()) ASSERTION(list_empty(&amp;amp;ns-&amp;gt;ns_list_chain)) failed&lt;/p&gt;

&lt;p&gt;Message from syslogd@ at Tue Oct  4 15:55:20 2011 ...&lt;br/&gt;
client-15 kernel: LustreError: 31583:0:(ldlm_resource.c:636:ldlm_namespace_free_post()) LBUG&lt;br/&gt;
general protection fault: 0000 &lt;span class=&quot;error&quot;&gt;&amp;#91;1&amp;#93;&lt;/span&gt; SMP &lt;br/&gt;
last sysfs file: /devices/pci0000:00/0000:00:00.0/irq&lt;br/&gt;
CPU 2 &lt;br/&gt;
Modules linked in: mgc(U) lustre(U) lov(U) mdc(U) lquota(U) osc(U) ksocklnd(U) ko2iblnd(U) ptlrpc(U) obdclass(U) lnet(U) lvfs(U) libcfs(U) autofs4 hidp rfcomm l2cap bluetooth lockd sunrpc cpufreq_ondemand acpi_cpufreq freq_table mperf be2iscsi iscsi_tcp bnx2i cnic uio cxgb3i iw_cxgb3 cxgb3 libiscsi_tcp ib_iser libiscsi2 scsi_transport_iscsi2 scsi_transport_iscsi ib_srp rds ib_sdp ib_ipoib ipoib_helper ipv6 xfrm_nalgo crypto_api rdma_ucm rdma_cm ib_ucm ib_uverbs ib_umad ib_cm iw_cm ib_addr ib_sa loop dm_mirror dm_multipath scsi_dh video backlight sbs power_meter hwmon i2c_ec dell_wmi wmi button battery asus_acpi acpi_memhotplug ac parport_pc lp parport mlx4_ib ib_mad ib_core mlx4_en joydev sg igb 8021q shpchp dca mlx4_core i2c_i801 i2c_core tpm_tis tpm i7core_edac edac_mc serio_raw tpm_bios pcspkr dm_raid45 dm_message dm_region_hash dm_log dm_mod dm_mem_cache ahci libata sd_mod scsi_mod ext3 jbd uhci_hcd ohci_hcd ehci_hcd&lt;br/&gt;
Pid: 31592, comm: ldlm_poold Tainted: G      2.6.18-238.12.1.el5 #1&lt;br/&gt;
RIP: 0010:&lt;span class=&quot;error&quot;&gt;&amp;#91;&amp;lt;ffffffff8890325f&amp;gt;&amp;#93;&lt;/span&gt;  &lt;span class=&quot;error&quot;&gt;&amp;#91;&amp;lt;ffffffff8890325f&amp;gt;&amp;#93;&lt;/span&gt; :ptlrpc:ldlm_pool_recalc+0xdf/0x130&lt;br/&gt;
RSP: 0000:ffff8103271a5e20  EFLAGS: 00010246&lt;br/&gt;
RAX: 5a5a5a5a5a5a5a5a RBX: 0000000000000000 RCX: ffff810336983e40&lt;br/&gt;
RDX: ffffffff8898c6f0 RSI: ffff810336983e40 RDI: ffff810325bb452c&lt;br/&gt;
RBP: ffff810325bb44c0 R08: ffff8103271a4000 R09: 000000000000003e&lt;br/&gt;
R10: ffff81010b7e4038 R11: 0000000000000246 R12: 0000000000000002&lt;br/&gt;
R13: ffffffff88998660 R14: 0000000000000002 R15: 0000000000000002&lt;br/&gt;
FS:  00002b798882e6e0(0000) GS:ffff81010b763ec0(0000) knlGS:0000000000000000&lt;br/&gt;
CS:  0010 DS: 0000 ES: 0000 CR0: 000000008005003b&lt;br/&gt;
CR2: 00002b7fcca2a500 CR3: 00000003283af000 CR4: 00000000000006e0&lt;br/&gt;
Process ldlm_poold (pid: 31592, threadinfo ffff8103271a4000, task ffff8103255b57e0)&lt;br/&gt;
Stack:  ffff810325bb4400 ffffffff88998660 0000000000000002 ffffffff88998660&lt;br/&gt;
 0000000000000002 ffffffff889040bf 000000010008d605 ffffffff8005bbcb&lt;br/&gt;
 000000010008d605 ffffffff80063893 0000000000000000 0000000000200200&lt;br/&gt;
Call Trace:&lt;br/&gt;
 &lt;span class=&quot;error&quot;&gt;&amp;#91;&amp;lt;ffffffff889040bf&amp;gt;&amp;#93;&lt;/span&gt; :ptlrpc:ldlm_pools_recalc+0x2bf/0x2f0&lt;br/&gt;
 &lt;span class=&quot;error&quot;&gt;&amp;#91;&amp;lt;ffffffff8005bbcb&amp;gt;&amp;#93;&lt;/span&gt; del_timer_sync+0xc/0x16&lt;br/&gt;
 &lt;span class=&quot;error&quot;&gt;&amp;#91;&amp;lt;ffffffff80063893&amp;gt;&amp;#93;&lt;/span&gt; schedule_timeout+0x92/0xad&lt;br/&gt;
 &lt;span class=&quot;error&quot;&gt;&amp;#91;&amp;lt;ffffffff88906226&amp;gt;&amp;#93;&lt;/span&gt; :ptlrpc:ldlm_pools_thread_main+0x106/0x2cf&lt;br/&gt;
 &lt;span class=&quot;error&quot;&gt;&amp;#91;&amp;lt;ffffffff8008e430&amp;gt;&amp;#93;&lt;/span&gt; default_wake_function+0x0/0xe&lt;br/&gt;
 &lt;span class=&quot;error&quot;&gt;&amp;#91;&amp;lt;ffffffff8005dfb1&amp;gt;&amp;#93;&lt;/span&gt; child_rip+0xa/0x11&lt;br/&gt;
 &lt;span class=&quot;error&quot;&gt;&amp;#91;&amp;lt;ffffffff88906120&amp;gt;&amp;#93;&lt;/span&gt; :ptlrpc:ldlm_pools_thread_main+0x0/0x2cf&lt;br/&gt;
 &lt;span class=&quot;error&quot;&gt;&amp;#91;&amp;lt;ffffffff8005dfa7&amp;gt;&amp;#93;&lt;/span&gt; child_rip+0x0/0x11&lt;/p&gt;


&lt;p&gt;Code: 48 8b 00 48 85 c0 74 1b 48 89 ef ff d0 48 8b bd c0 00 00 00 &lt;br/&gt;
RIP  &lt;span class=&quot;error&quot;&gt;&amp;#91;&amp;lt;ffffffff8890325f&amp;gt;&amp;#93;&lt;/span&gt; :ptlrpc:ldlm_pool_recalc+0xdf/0x130&lt;br/&gt;
 RSP &amp;lt;ffff8103271a5e20&amp;gt;&lt;br/&gt;
 &amp;lt;0&amp;gt;Kernel panic - not syncing: Fatal exception&lt;/p&gt;
</comment>
                            <comment id="20892" author="bobijam" created="Wed, 5 Oct 2011 22:02:02 +0000"  >&lt;p&gt;Sarah, this panic is due to &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-607&quot; title=&quot;port bz24419 (ldlm namespace lock contention during oom)&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-607&quot;&gt;&lt;del&gt;LU-607&lt;/del&gt;&lt;/a&gt;, while latest b1_8 codebase had reverted the wrong patch, which should solve the panic.&lt;/p&gt;</comment>
                            <comment id="21023" author="hudson" created="Mon, 10 Oct 2011 09:33:09 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/red.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-b1_8/./arch=i686,build_type=client,distro=el5,ib_stack=ofa/136/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-b1_8 &#187; i686,client,el5,ofa #136&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-721&quot; title=&quot;Parallel writes to same file results in a file of zeroes&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-721&quot;&gt;&lt;del&gt;LU-721&lt;/del&gt;&lt;/a&gt; Parallel writes to same file results in a file of zeroes&lt;/p&gt;

&lt;p&gt;Johann Lombardi : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/b1_8&amp;amp;a=commit&amp;amp;h=0f7efbe4dcc8c78fcf73660ded113bcaa6d5ae68&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;0f7efbe4dcc8c78fcf73660ded113bcaa6d5ae68&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/llite/dcache.c&lt;/li&gt;
	&lt;li&gt;lustre/tests/conf-sanity.sh&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="21025" author="hudson" created="Mon, 10 Oct 2011 09:34:44 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-b1_8/./arch=x86_64,build_type=client,distro=el5,ib_stack=inkernel/136/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-b1_8 &#187; x86_64,client,el5,inkernel #136&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-721&quot; title=&quot;Parallel writes to same file results in a file of zeroes&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-721&quot;&gt;&lt;del&gt;LU-721&lt;/del&gt;&lt;/a&gt; Parallel writes to same file results in a file of zeroes&lt;/p&gt;

&lt;p&gt;Johann Lombardi : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/b1_8&amp;amp;a=commit&amp;amp;h=0f7efbe4dcc8c78fcf73660ded113bcaa6d5ae68&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;0f7efbe4dcc8c78fcf73660ded113bcaa6d5ae68&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/tests/conf-sanity.sh&lt;/li&gt;
	&lt;li&gt;lustre/llite/dcache.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="21026" author="hudson" created="Mon, 10 Oct 2011 09:35:32 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/red.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-b1_8/./arch=x86_64,build_type=client,distro=el5,ib_stack=ofa/136/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-b1_8 &#187; x86_64,client,el5,ofa #136&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-721&quot; title=&quot;Parallel writes to same file results in a file of zeroes&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-721&quot;&gt;&lt;del&gt;LU-721&lt;/del&gt;&lt;/a&gt; Parallel writes to same file results in a file of zeroes&lt;/p&gt;

&lt;p&gt;Johann Lombardi : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/b1_8&amp;amp;a=commit&amp;amp;h=0f7efbe4dcc8c78fcf73660ded113bcaa6d5ae68&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;0f7efbe4dcc8c78fcf73660ded113bcaa6d5ae68&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/tests/conf-sanity.sh&lt;/li&gt;
	&lt;li&gt;lustre/llite/dcache.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="21027" author="hudson" created="Mon, 10 Oct 2011 09:36:21 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/red.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-b1_8/./arch=x86_64,build_type=server,distro=el5,ib_stack=ofa/136/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-b1_8 &#187; x86_64,server,el5,ofa #136&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-721&quot; title=&quot;Parallel writes to same file results in a file of zeroes&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-721&quot;&gt;&lt;del&gt;LU-721&lt;/del&gt;&lt;/a&gt; Parallel writes to same file results in a file of zeroes&lt;/p&gt;

&lt;p&gt;Johann Lombardi : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/b1_8&amp;amp;a=commit&amp;amp;h=0f7efbe4dcc8c78fcf73660ded113bcaa6d5ae68&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;0f7efbe4dcc8c78fcf73660ded113bcaa6d5ae68&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/tests/conf-sanity.sh&lt;/li&gt;
	&lt;li&gt;lustre/llite/dcache.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="21028" author="hudson" created="Mon, 10 Oct 2011 09:38:04 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-b1_8/./arch=x86_64,build_type=client,distro=el6,ib_stack=inkernel/136/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-b1_8 &#187; x86_64,client,el6,inkernel #136&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-721&quot; title=&quot;Parallel writes to same file results in a file of zeroes&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-721&quot;&gt;&lt;del&gt;LU-721&lt;/del&gt;&lt;/a&gt; Parallel writes to same file results in a file of zeroes&lt;/p&gt;

&lt;p&gt;Johann Lombardi : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/b1_8&amp;amp;a=commit&amp;amp;h=0f7efbe4dcc8c78fcf73660ded113bcaa6d5ae68&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;0f7efbe4dcc8c78fcf73660ded113bcaa6d5ae68&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/llite/dcache.c&lt;/li&gt;
	&lt;li&gt;lustre/tests/conf-sanity.sh&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="21029" author="hudson" created="Mon, 10 Oct 2011 09:39:02 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-b1_8/./arch=x86_64,build_type=server,distro=el5,ib_stack=inkernel/136/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-b1_8 &#187; x86_64,server,el5,inkernel #136&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-721&quot; title=&quot;Parallel writes to same file results in a file of zeroes&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-721&quot;&gt;&lt;del&gt;LU-721&lt;/del&gt;&lt;/a&gt; Parallel writes to same file results in a file of zeroes&lt;/p&gt;

&lt;p&gt;Johann Lombardi : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/b1_8&amp;amp;a=commit&amp;amp;h=0f7efbe4dcc8c78fcf73660ded113bcaa6d5ae68&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;0f7efbe4dcc8c78fcf73660ded113bcaa6d5ae68&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/llite/dcache.c&lt;/li&gt;
	&lt;li&gt;lustre/tests/conf-sanity.sh&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="21030" author="hudson" created="Mon, 10 Oct 2011 09:39:16 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-b1_8/./arch=i686,build_type=client,distro=el5,ib_stack=inkernel/136/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-b1_8 &#187; i686,client,el5,inkernel #136&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-721&quot; title=&quot;Parallel writes to same file results in a file of zeroes&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-721&quot;&gt;&lt;del&gt;LU-721&lt;/del&gt;&lt;/a&gt; Parallel writes to same file results in a file of zeroes&lt;/p&gt;

&lt;p&gt;Johann Lombardi : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/b1_8&amp;amp;a=commit&amp;amp;h=0f7efbe4dcc8c78fcf73660ded113bcaa6d5ae68&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;0f7efbe4dcc8c78fcf73660ded113bcaa6d5ae68&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/llite/dcache.c&lt;/li&gt;
	&lt;li&gt;lustre/tests/conf-sanity.sh&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="21031" author="hudson" created="Mon, 10 Oct 2011 09:39:37 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-b1_8/./arch=i686,build_type=client,distro=el6,ib_stack=inkernel/136/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-b1_8 &#187; i686,client,el6,inkernel #136&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-721&quot; title=&quot;Parallel writes to same file results in a file of zeroes&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-721&quot;&gt;&lt;del&gt;LU-721&lt;/del&gt;&lt;/a&gt; Parallel writes to same file results in a file of zeroes&lt;/p&gt;

&lt;p&gt;Johann Lombardi : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/b1_8&amp;amp;a=commit&amp;amp;h=0f7efbe4dcc8c78fcf73660ded113bcaa6d5ae68&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;0f7efbe4dcc8c78fcf73660ded113bcaa6d5ae68&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/llite/dcache.c&lt;/li&gt;
	&lt;li&gt;lustre/tests/conf-sanity.sh&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="21032" author="hudson" created="Mon, 10 Oct 2011 09:41:48 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/red.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-b1_8/./arch=i686,build_type=server,distro=el5,ib_stack=ofa/136/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-b1_8 &#187; i686,server,el5,ofa #136&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-721&quot; title=&quot;Parallel writes to same file results in a file of zeroes&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-721&quot;&gt;&lt;del&gt;LU-721&lt;/del&gt;&lt;/a&gt; Parallel writes to same file results in a file of zeroes&lt;/p&gt;

&lt;p&gt;Johann Lombardi : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/b1_8&amp;amp;a=commit&amp;amp;h=0f7efbe4dcc8c78fcf73660ded113bcaa6d5ae68&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;0f7efbe4dcc8c78fcf73660ded113bcaa6d5ae68&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/tests/conf-sanity.sh&lt;/li&gt;
	&lt;li&gt;lustre/llite/dcache.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="21033" author="hudson" created="Mon, 10 Oct 2011 09:45:27 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-b1_8/./arch=x86_64,build_type=client,distro=ubuntu1004,ib_stack=inkernel/136/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-b1_8 &#187; x86_64,client,ubuntu1004,inkernel #136&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-721&quot; title=&quot;Parallel writes to same file results in a file of zeroes&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-721&quot;&gt;&lt;del&gt;LU-721&lt;/del&gt;&lt;/a&gt; Parallel writes to same file results in a file of zeroes&lt;/p&gt;

&lt;p&gt;Johann Lombardi : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/b1_8&amp;amp;a=commit&amp;amp;h=0f7efbe4dcc8c78fcf73660ded113bcaa6d5ae68&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;0f7efbe4dcc8c78fcf73660ded113bcaa6d5ae68&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/tests/conf-sanity.sh&lt;/li&gt;
	&lt;li&gt;lustre/llite/dcache.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="21034" author="hudson" created="Mon, 10 Oct 2011 09:45:49 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-b1_8/./arch=i686,build_type=server,distro=el5,ib_stack=inkernel/136/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-b1_8 &#187; i686,server,el5,inkernel #136&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-721&quot; title=&quot;Parallel writes to same file results in a file of zeroes&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-721&quot;&gt;&lt;del&gt;LU-721&lt;/del&gt;&lt;/a&gt; Parallel writes to same file results in a file of zeroes&lt;/p&gt;

&lt;p&gt;Johann Lombardi : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/b1_8&amp;amp;a=commit&amp;amp;h=0f7efbe4dcc8c78fcf73660ded113bcaa6d5ae68&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;0f7efbe4dcc8c78fcf73660ded113bcaa6d5ae68&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/llite/dcache.c&lt;/li&gt;
	&lt;li&gt;lustre/tests/conf-sanity.sh&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="21039" author="pjones" created="Mon, 10 Oct 2011 09:59:23 +0000"  >&lt;p&gt;Fixed for 1.8.7 and 2.2&lt;/p&gt;</comment>
                    </comments>
                    <attachments>
                    </attachments>
                <subtasks>
                    </subtasks>
                <customfields>
                                                                                                                                    <customfield id="customfield_10020" key="com.atlassian.jira.plugin.system.customfieldtypes:float">
                        <customfieldname>Bugzilla ID</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>24548.0</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                                            <customfield id="customfield_10890" key="com.atlassian.jira.plugins.jira-development-integration-plugin:devsummary">
                        <customfieldname>Development</customfieldname>
                        <customfieldvalues>
                            
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                        <customfield id="customfield_10390" key="com.pyxis.greenhopper.jira:gh-lexo-rank">
                        <customfieldname>Rank</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>1|hzv8fr:</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_10090" key="com.pyxis.greenhopper.jira:gh-global-rank">
                        <customfieldname>Rank (Obsolete)</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>4901</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                                            <customfield id="customfield_10060" key="com.atlassian.jira.plugin.system.customfieldtypes:select">
                        <customfieldname>Severity</customfieldname>
                        <customfieldvalues>
                                <customfieldvalue key="10020"><![CDATA[1]]></customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                        </customfields>
    </item>
</channel>
</rss>