<!-- 
RSS generated by JIRA (9.4.14#940014-sha1:734e6822bbf0d45eff9af51f82432957f73aa32c) at Sat Feb 10 01:04:26 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-170] OSCC_FLAG_LOW is always set and oscc_grow_count will never grow</title>
                <link>https://jira.whamcloud.com/browse/LU-170</link>
                <project id="10000" key="LU">Lustre</project>
                    <description>&lt;p&gt;I found osc_precreate is not working in the expected way, we always precreate 32 objects for some reason.&lt;/p&gt;

&lt;p&gt;After digging into code I found there is a bug:&lt;/p&gt;

&lt;p&gt;we are using req::rq_async_args.space&lt;span class=&quot;error&quot;&gt;&amp;#91;0&amp;#93;&lt;/span&gt; to store original value of oscc_grow_count, and using req::rq_async_args.pointer_arg&lt;span class=&quot;error&quot;&gt;&amp;#91;0&amp;#93;&lt;/span&gt; to store oscc, however, ptlrpc_async_args is a union, which means req::rq_async_args.space&lt;span class=&quot;error&quot;&gt;&amp;#91;0&amp;#93;&lt;/span&gt; will always be overwritten by a ossc (a pointer), and osc_interpret_create will always get true on this condition &quot;if (diff &amp;lt; (int) req-&amp;gt;rq_async_args.space&lt;span class=&quot;error&quot;&gt;&amp;#91;0&amp;#93;&lt;/span&gt;)&quot; and reset oscc_grow_count to OST_MIN_PRECREATE and set OSCC_FLAG_LOW.&lt;/p&gt;

&lt;p&gt;The fix will be very simple but it has big impact on performance of file creation so I set priority as &quot;major&quot;, I will post patch for it very soon.&lt;/p&gt;</description>
                <environment></environment>
        <key id="10515">LU-170</key>
            <summary>OSCC_FLAG_LOW is always set and oscc_grow_count will never grow</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="liang">Liang Zhen</assignee>
                                    <reporter username="liang">Liang Zhen</reporter>
                        <labels>
                    </labels>
                <created>Mon, 28 Mar 2011 07:42:28 +0000</created>
                <updated>Tue, 28 Jun 2011 15:01:43 +0000</updated>
                            <resolved>Tue, 24 May 2011 06:31:05 +0000</resolved>
                                    <version>Lustre 1.8.6</version>
                                    <fixVersion>Lustre 2.1.0</fixVersion>
                    <fixVersion>Lustre 1.8.6</fixVersion>
                                        <due></due>
                            <votes>0</votes>
                                    <watches>4</watches>
                                                                            <comments>
                            <comment id="11426" author="hudson" created="Mon, 28 Mar 2011 09:41: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/reviews-centos5/579/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;reviews-centos5 #579&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-170&quot; title=&quot;OSCC_FLAG_LOW is always set and oscc_grow_count will never grow&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-170&quot;&gt;&lt;del&gt;LU-170&lt;/del&gt;&lt;/a&gt; oscc_grow_count will never grow&lt;/p&gt;

&lt;p&gt;Liang Zhen : &lt;a href=&quot;http://git.whamcloud.com/gitweb/?p=fs/lustre-release.git&amp;amp;a=commit&amp;amp;h=72cd44851509863fc36597d75e3d1c7917b4d62c&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;72cd44851509863fc36597d75e3d1c7917b4d62c&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/osc/osc_create.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="11429" author="liang" created="Mon, 28 Mar 2011 09:49:41 +0000"  >&lt;p&gt;I&apos;ve posted the patch on &lt;a href=&quot;http://review.whamcloud.com/#change,371&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://review.whamcloud.com/#change,371&lt;/a&gt;&lt;br/&gt;
one concern is, do we really want to have so big OST_MAX_PRECREATE which is 20000&lt;br/&gt;
we have this bug on both 1.8.* and 2.*, and everybody is living with precreate 32 objects. I think 20000 is too big and it&apos;s easy to take seconds to create 20000 objects, this is dangerous for MDS because all threads could be waiting for these 20000 creating...&lt;/p&gt;</comment>
                            <comment id="11433" author="green" created="Mon, 28 Mar 2011 11:58:08 +0000"  >&lt;p&gt;Not to worry about the big create count, there is a time-based limit on the OST side that would prevent OST spending too much time in precreate.&lt;br/&gt;
Good catch otherwise!&lt;/p&gt;</comment>
                            <comment id="11442" author="green" created="Mon, 28 Mar 2011 17:36:46 +0000"  >&lt;p&gt;I did some research and I suspect I know how it was not initially caught.&lt;br/&gt;
On 32bit arch the cast of the oscc address to int would make a negative integer that would lead to always allowing the growth.&lt;br/&gt;
(this was introduced in bug 18577.)&lt;br/&gt;
I verified that on x86_64 the oscc address is split in such a way that it results in positive integer once casted to int.&lt;br/&gt;
I contacted Cray and they don&apos;t remember anymore if they were able to demonstrate performance improvements of the patch that introduced this issue (fighting the same cause too).&lt;br/&gt;
There is also hope that ORNL might be able to give a try to this patch during a dedicated testrun. They are interested because currently there is unexplained effect of too narrow of a gap between shared and uniq dir creates being observed.&lt;/p&gt;</comment>
                            <comment id="11479" author="hudson" created="Mon, 28 Mar 2011 21:52:20 +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/reviews-centos5/594/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;reviews-centos5 #594&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-170&quot; title=&quot;OSCC_FLAG_LOW is always set and oscc_grow_count will never grow&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-170&quot;&gt;&lt;del&gt;LU-170&lt;/del&gt;&lt;/a&gt; oscc_grow_count will never grow&lt;/p&gt;

&lt;p&gt;Liang Zhen : &lt;a href=&quot;http://git.whamcloud.com/gitweb/?p=fs/lustre-release.git&amp;amp;a=commit&amp;amp;h=eec7388d80a437fdf20ebf46ea42355cf45f8b77&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;eec7388d80a437fdf20ebf46ea42355cf45f8b77&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/osc/osc_create.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="11483" author="hudson" created="Mon, 28 Mar 2011 22:23:52 +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-reviews/./build_type=server,distro=el5/18/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-reviews &#187; server,el5 #18&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-170&quot; title=&quot;OSCC_FLAG_LOW is always set and oscc_grow_count will never grow&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-170&quot;&gt;&lt;del&gt;LU-170&lt;/del&gt;&lt;/a&gt; oscc_grow_count will never grow&lt;/p&gt;

&lt;p&gt;Liang Zhen : &lt;a href=&quot;http://git.whamcloud.com/gitweb/?p=fs/lustre-release.git&amp;amp;a=commit&amp;amp;h=eec7388d80a437fdf20ebf46ea42355cf45f8b77&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;eec7388d80a437fdf20ebf46ea42355cf45f8b77&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/osc/osc_create.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="11484" author="hudson" created="Mon, 28 Mar 2011 22:24:38 +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-reviews/./build_type=server,distro=el6/18/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-reviews &#187; server,el6 #18&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-170&quot; title=&quot;OSCC_FLAG_LOW is always set and oscc_grow_count will never grow&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-170&quot;&gt;&lt;del&gt;LU-170&lt;/del&gt;&lt;/a&gt; oscc_grow_count will never grow&lt;/p&gt;

&lt;p&gt;Liang Zhen : &lt;a href=&quot;http://git.whamcloud.com/gitweb/?p=fs/lustre-release.git&amp;amp;a=commit&amp;amp;h=eec7388d80a437fdf20ebf46ea42355cf45f8b77&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;eec7388d80a437fdf20ebf46ea42355cf45f8b77&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/osc/osc_create.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="11485" author="hudson" created="Mon, 28 Mar 2011 22:25:05 +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-reviews/./build_type=client,distro=el5/18/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-reviews &#187; client,el5 #18&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-170&quot; title=&quot;OSCC_FLAG_LOW is always set and oscc_grow_count will never grow&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-170&quot;&gt;&lt;del&gt;LU-170&lt;/del&gt;&lt;/a&gt; oscc_grow_count will never grow&lt;/p&gt;

&lt;p&gt;Liang Zhen : &lt;a href=&quot;http://git.whamcloud.com/gitweb/?p=fs/lustre-release.git&amp;amp;a=commit&amp;amp;h=eec7388d80a437fdf20ebf46ea42355cf45f8b77&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;eec7388d80a437fdf20ebf46ea42355cf45f8b77&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/osc/osc_create.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="11486" author="hudson" created="Mon, 28 Mar 2011 22:28: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/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-reviews/./build_type=client,distro=el6/18/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-reviews &#187; client,el6 #18&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-170&quot; title=&quot;OSCC_FLAG_LOW is always set and oscc_grow_count will never grow&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-170&quot;&gt;&lt;del&gt;LU-170&lt;/del&gt;&lt;/a&gt; oscc_grow_count will never grow&lt;/p&gt;

&lt;p&gt;Liang Zhen : &lt;a href=&quot;http://git.whamcloud.com/gitweb/?p=fs/lustre-release.git&amp;amp;a=commit&amp;amp;h=eec7388d80a437fdf20ebf46ea42355cf45f8b77&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;eec7388d80a437fdf20ebf46ea42355cf45f8b77&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/osc/osc_create.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="11487" author="hudson" created="Mon, 28 Mar 2011 22:39:24 +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-reviews/./build_type=client,distro=ubuntu/18/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-reviews &#187; client,ubuntu #18&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-170&quot; title=&quot;OSCC_FLAG_LOW is always set and oscc_grow_count will never grow&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-170&quot;&gt;&lt;del&gt;LU-170&lt;/del&gt;&lt;/a&gt; oscc_grow_count will never grow&lt;/p&gt;

&lt;p&gt;Liang Zhen : &lt;a href=&quot;http://git.whamcloud.com/gitweb/?p=fs/lustre-release.git&amp;amp;a=commit&amp;amp;h=eec7388d80a437fdf20ebf46ea42355cf45f8b77&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;eec7388d80a437fdf20ebf46ea42355cf45f8b77&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/osc/osc_create.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="11532" author="eeb" created="Tue, 29 Mar 2011 08:08:13 +0000"  >&lt;p&gt;This use of rq_async_args (i.e. dereferencing &apos;space[]&apos; and&lt;br/&gt;
the declaration of &apos;pointer_arg[]&apos; and use in ldlm_cb_interpret(),&lt;br/&gt;
mdc_intent_getattr_sync_interpret() etc) invites defects and is&lt;br/&gt;
&lt;em&gt;UNACCEPTABLE&lt;/em&gt;.  &lt;/p&gt;

&lt;p&gt;Each new or different use of this scratchpad must have its&lt;br/&gt;
own structure definition - see how it&apos;s done with osc_brw_async_args,&lt;br/&gt;
osc_create_args etc.&lt;/p&gt;

&lt;p&gt;Ideally, rq_async_args should be declared as the union of all these&lt;br/&gt;
structs, but since that would require subsystem-specific structs&lt;br/&gt;
to be declared too globally, it&apos;s acceptable to simply reserve space&lt;br/&gt;
(that&apos;s the &lt;em&gt;ONLY&lt;/em&gt; permissable use of &apos;space&apos; here) AND CLASSERT that&lt;br/&gt;
enough space has been reserved.&lt;/p&gt;

&lt;p&gt;These issues must either be fixed in this bug, or a new bug created&lt;br/&gt;
with this as its first comment.&lt;/p&gt;</comment>
                            <comment id="11554" author="hudson" created="Tue, 29 Mar 2011 11:49:00 +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/reviews-centos5/608/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;reviews-centos5 #608&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-170&quot; title=&quot;OSCC_FLAG_LOW is always set and oscc_grow_count will never grow&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-170&quot;&gt;&lt;del&gt;LU-170&lt;/del&gt;&lt;/a&gt; oscc_grow_count will never grow&lt;/p&gt;

&lt;p&gt;Liang Zhen : &lt;a href=&quot;http://git.whamcloud.com/gitweb/?p=fs/lustre-release.git&amp;amp;a=commit&amp;amp;h=eec7388d80a437fdf20ebf46ea42355cf45f8b77&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;eec7388d80a437fdf20ebf46ea42355cf45f8b77&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/osc/osc_create.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="11565" author="hudson" created="Wed, 30 Mar 2011 08:04:03 +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/reviews-centos5/610/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;reviews-centos5 #610&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-170&quot; title=&quot;OSCC_FLAG_LOW is always set and oscc_grow_count will never grow&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-170&quot;&gt;&lt;del&gt;LU-170&lt;/del&gt;&lt;/a&gt; oscc_grow_count will never grow&lt;/p&gt;

&lt;p&gt;Liang Zhen : &lt;a href=&quot;http://git.whamcloud.com/gitweb/?p=fs/lustre-release.git&amp;amp;a=commit&amp;amp;h=515135a06055dd5047877786998ff400a5f12ba1&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;515135a06055dd5047877786998ff400a5f12ba1&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mdc/mdc_locks.c&lt;/li&gt;
	&lt;li&gt;lustre/ldlm/ldlm_request.c&lt;/li&gt;
	&lt;li&gt;lustre/ldlm/ldlm_internal.h&lt;/li&gt;
	&lt;li&gt;lustre/mdc/mdc_request.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre_net.h&lt;/li&gt;
	&lt;li&gt;lustre/osc/osc_create.c&lt;/li&gt;
	&lt;li&gt;lustre/mdc/mdc_internal.h&lt;/li&gt;
	&lt;li&gt;lustre/ldlm/ldlm_lockd.c&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/recov_thread.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="11722" author="hudson" created="Thu, 31 Mar 2011 20:38:40 +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/reviews-centos5/630/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;reviews-centos5 #630&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-170&quot; title=&quot;OSCC_FLAG_LOW is always set and oscc_grow_count will never grow&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-170&quot;&gt;&lt;del&gt;LU-170&lt;/del&gt;&lt;/a&gt; oscc_grow_count will never grow&lt;/p&gt;

&lt;p&gt;Liang Zhen : &lt;a href=&quot;http://git.whamcloud.com/gitweb/?p=fs/lustre-release.git&amp;amp;a=commit&amp;amp;h=3e44a66438ece2da0e2467a8dd1f00c0933e87f4&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;3e44a66438ece2da0e2467a8dd1f00c0933e87f4&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/include/lustre_net.h&lt;/li&gt;
	&lt;li&gt;lustre/mdc/mdc_request.c&lt;/li&gt;
	&lt;li&gt;lustre/ldlm/ldlm_lockd.c&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/recov_thread.c&lt;/li&gt;
	&lt;li&gt;lustre/osc/osc_create.c&lt;/li&gt;
	&lt;li&gt;lustre/mdc/mdc_locks.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="12393" author="hudson" created="Wed, 6 Apr 2011 11:44:18 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://newbuild.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://newbuild.whamcloud.com/job/lustre-master/./build_type=client,platform=el5-x86_64/17/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; client,el5-x86_64 #17&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-170&quot; title=&quot;OSCC_FLAG_LOW is always set and oscc_grow_count will never grow&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-170&quot;&gt;&lt;del&gt;LU-170&lt;/del&gt;&lt;/a&gt; oscc_grow_count will never grow&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=b9ab6348153fd8d236871f75e5bd3793a49c9a45&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;b9ab6348153fd8d236871f75e5bd3793a49c9a45&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mdc/mdc_locks.c&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/recov_thread.c&lt;/li&gt;
	&lt;li&gt;lustre/mdc/mdc_request.c&lt;/li&gt;
	&lt;li&gt;lustre/osc/osc_create.c&lt;/li&gt;
	&lt;li&gt;lustre/ldlm/ldlm_lockd.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre_net.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="12395" author="hudson" created="Wed, 6 Apr 2011 11:46:39 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://newbuild.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://newbuild.whamcloud.com/job/lustre-master/./build_type=client,platform=el6-x86_64/17/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; client,el6-x86_64 #17&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-170&quot; title=&quot;OSCC_FLAG_LOW is always set and oscc_grow_count will never grow&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-170&quot;&gt;&lt;del&gt;LU-170&lt;/del&gt;&lt;/a&gt; oscc_grow_count will never grow&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=b9ab6348153fd8d236871f75e5bd3793a49c9a45&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;b9ab6348153fd8d236871f75e5bd3793a49c9a45&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mdc/mdc_locks.c&lt;/li&gt;
	&lt;li&gt;lustre/ldlm/ldlm_lockd.c&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/recov_thread.c&lt;/li&gt;
	&lt;li&gt;lustre/osc/osc_create.c&lt;/li&gt;
	&lt;li&gt;lustre/mdc/mdc_request.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre_net.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="12397" author="hudson" created="Wed, 6 Apr 2011 11:47:58 +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-centos5/183/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master-centos5 #183&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-170&quot; title=&quot;OSCC_FLAG_LOW is always set and oscc_grow_count will never grow&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-170&quot;&gt;&lt;del&gt;LU-170&lt;/del&gt;&lt;/a&gt; oscc_grow_count will never grow&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb/?p=fs/lustre-release.git&amp;amp;a=commit&amp;amp;h=b9ab6348153fd8d236871f75e5bd3793a49c9a45&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;b9ab6348153fd8d236871f75e5bd3793a49c9a45&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mdc/mdc_request.c&lt;/li&gt;
	&lt;li&gt;lustre/mdc/mdc_locks.c&lt;/li&gt;
	&lt;li&gt;lustre/ldlm/ldlm_lockd.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre_net.h&lt;/li&gt;
	&lt;li&gt;lustre/osc/osc_create.c&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/recov_thread.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="12399" author="hudson" created="Wed, 6 Apr 2011 11:49:48 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://newbuild.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://newbuild.whamcloud.com/job/lustre-master/./build_type=client,platform=ubuntu-x86_64/17/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; client,ubuntu-x86_64 #17&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-170&quot; title=&quot;OSCC_FLAG_LOW is always set and oscc_grow_count will never grow&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-170&quot;&gt;&lt;del&gt;LU-170&lt;/del&gt;&lt;/a&gt; oscc_grow_count will never grow&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=b9ab6348153fd8d236871f75e5bd3793a49c9a45&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;b9ab6348153fd8d236871f75e5bd3793a49c9a45&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/include/lustre_net.h&lt;/li&gt;
	&lt;li&gt;lustre/osc/osc_create.c&lt;/li&gt;
	&lt;li&gt;lustre/ldlm/ldlm_lockd.c&lt;/li&gt;
	&lt;li&gt;lustre/mdc/mdc_request.c&lt;/li&gt;
	&lt;li&gt;lustre/mdc/mdc_locks.c&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/recov_thread.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="12401" author="hudson" created="Wed, 6 Apr 2011 11:50:16 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://newbuild.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://newbuild.whamcloud.com/job/lustre-master/./build_type=client,platform=el6-i686/17/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; client,el6-i686 #17&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-170&quot; title=&quot;OSCC_FLAG_LOW is always set and oscc_grow_count will never grow&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-170&quot;&gt;&lt;del&gt;LU-170&lt;/del&gt;&lt;/a&gt; oscc_grow_count will never grow&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=b9ab6348153fd8d236871f75e5bd3793a49c9a45&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;b9ab6348153fd8d236871f75e5bd3793a49c9a45&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/ptlrpc/recov_thread.c&lt;/li&gt;
	&lt;li&gt;lustre/ldlm/ldlm_lockd.c&lt;/li&gt;
	&lt;li&gt;lustre/osc/osc_create.c&lt;/li&gt;
	&lt;li&gt;lustre/mdc/mdc_request.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre_net.h&lt;/li&gt;
	&lt;li&gt;lustre/mdc/mdc_locks.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="12403" author="hudson" created="Wed, 6 Apr 2011 11:51:47 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://newbuild.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://newbuild.whamcloud.com/job/lustre-master/./build_type=server,platform=el5-i686/17/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; server,el5-i686 #17&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-170&quot; title=&quot;OSCC_FLAG_LOW is always set and oscc_grow_count will never grow&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-170&quot;&gt;&lt;del&gt;LU-170&lt;/del&gt;&lt;/a&gt; oscc_grow_count will never grow&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=b9ab6348153fd8d236871f75e5bd3793a49c9a45&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;b9ab6348153fd8d236871f75e5bd3793a49c9a45&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mdc/mdc_locks.c&lt;/li&gt;
	&lt;li&gt;lustre/mdc/mdc_request.c&lt;/li&gt;
	&lt;li&gt;lustre/ldlm/ldlm_lockd.c&lt;/li&gt;
	&lt;li&gt;lustre/osc/osc_create.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre_net.h&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/recov_thread.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="12407" author="hudson" created="Wed, 6 Apr 2011 11:59:46 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://newbuild.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://newbuild.whamcloud.com/job/lustre-master/./build_type=server,platform=el5-x86_64/17/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; server,el5-x86_64 #17&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-170&quot; title=&quot;OSCC_FLAG_LOW is always set and oscc_grow_count will never grow&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-170&quot;&gt;&lt;del&gt;LU-170&lt;/del&gt;&lt;/a&gt; oscc_grow_count will never grow&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=b9ab6348153fd8d236871f75e5bd3793a49c9a45&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;b9ab6348153fd8d236871f75e5bd3793a49c9a45&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/ldlm/ldlm_lockd.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre_net.h&lt;/li&gt;
	&lt;li&gt;lustre/osc/osc_create.c&lt;/li&gt;
	&lt;li&gt;lustre/mdc/mdc_locks.c&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/recov_thread.c&lt;/li&gt;
	&lt;li&gt;lustre/mdc/mdc_request.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="12409" author="hudson" created="Wed, 6 Apr 2011 12:07:18 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://newbuild.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://newbuild.whamcloud.com/job/lustre-master/./build_type=client,platform=el5-i686/17/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; client,el5-i686 #17&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-170&quot; title=&quot;OSCC_FLAG_LOW is always set and oscc_grow_count will never grow&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-170&quot;&gt;&lt;del&gt;LU-170&lt;/del&gt;&lt;/a&gt; oscc_grow_count will never grow&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=b9ab6348153fd8d236871f75e5bd3793a49c9a45&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;b9ab6348153fd8d236871f75e5bd3793a49c9a45&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/osc/osc_create.c&lt;/li&gt;
	&lt;li&gt;lustre/mdc/mdc_locks.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre_net.h&lt;/li&gt;
	&lt;li&gt;lustre/ldlm/ldlm_lockd.c&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/recov_thread.c&lt;/li&gt;
	&lt;li&gt;lustre/mdc/mdc_request.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="12411" author="hudson" created="Wed, 6 Apr 2011 13:17:29 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://newbuild.whamcloud.com/images/16x16/red.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://newbuild.whamcloud.com/job/lustre-master/./build_type=server,platform=el6-x86_64/17/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; server,el6-x86_64 #17&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-170&quot; title=&quot;OSCC_FLAG_LOW is always set and oscc_grow_count will never grow&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-170&quot;&gt;&lt;del&gt;LU-170&lt;/del&gt;&lt;/a&gt; oscc_grow_count will never grow&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=b9ab6348153fd8d236871f75e5bd3793a49c9a45&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;b9ab6348153fd8d236871f75e5bd3793a49c9a45&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mdc/mdc_locks.c&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/recov_thread.c&lt;/li&gt;
	&lt;li&gt;lustre/osc/osc_create.c&lt;/li&gt;
	&lt;li&gt;lustre/mdc/mdc_request.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre_net.h&lt;/li&gt;
	&lt;li&gt;lustre/ldlm/ldlm_lockd.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="12436" author="pjones" created="Wed, 6 Apr 2011 15:55:58 +0000"  >&lt;p&gt;Fix landed to master. Please reopen if more work required.&lt;/p&gt;</comment>
                            <comment id="12630" author="hudson" created="Thu, 7 Apr 2011 17:33:44 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://newbuild.whamcloud.com/images/16x16/red.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://newbuild.whamcloud.com/job/lustre-master/./build_type=server,platform=el6-i686/20/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; server,el6-i686 #20&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-170&quot; title=&quot;OSCC_FLAG_LOW is always set and oscc_grow_count will never grow&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-170&quot;&gt;&lt;del&gt;LU-170&lt;/del&gt;&lt;/a&gt; oscc_grow_count will never grow&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=b9ab6348153fd8d236871f75e5bd3793a49c9a45&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;b9ab6348153fd8d236871f75e5bd3793a49c9a45&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mdc/mdc_request.c&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/recov_thread.c&lt;/li&gt;
	&lt;li&gt;lustre/osc/osc_create.c&lt;/li&gt;
	&lt;li&gt;lustre/ldlm/ldlm_lockd.c&lt;/li&gt;
	&lt;li&gt;lustre/mdc/mdc_locks.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre_net.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="12845" author="liang" created="Thu, 14 Apr 2011 02:08:13 +0000"  >&lt;p&gt;it&apos;s still on b1_8, I will workout a patch for b1_8&lt;/p&gt;</comment>
                            <comment id="12846" author="liang" created="Thu, 14 Apr 2011 02:08:32 +0000"  >&lt;p&gt;reopen it for b1_8&lt;/p&gt;</comment>
                            <comment id="14906" author="hudson" created="Sun, 22 May 2011 23:28:45 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://newbuild.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://newbuild.whamcloud.com/job/lustre-b1_8/./arch=x86_64,build_type=client,distro=el5,ib_stack=ofa/60/&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 #60&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-170&quot; title=&quot;OSCC_FLAG_LOW is always set and oscc_grow_count will never grow&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-170&quot;&gt;&lt;del&gt;LU-170&lt;/del&gt;&lt;/a&gt; oscc_grow_count will never grow&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=d70807c400978c3ae1119d7d9fa22f160eece35a&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;d70807c400978c3ae1119d7d9fa22f160eece35a&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/ptlrpc/recov_thread.c&lt;/li&gt;
	&lt;li&gt;lustre/ldlm/ldlm_lockd.c&lt;/li&gt;
	&lt;li&gt;lustre/osc/osc_create.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre_net.h&lt;/li&gt;
	&lt;li&gt;lustre/mdc/mdc_locks.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="14907" author="hudson" created="Sun, 22 May 2011 23:28:52 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://newbuild.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://newbuild.whamcloud.com/job/lustre-b1_8/./arch=x86_64,build_type=server,distro=el5,ib_stack=ofa/60/&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 #60&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-170&quot; title=&quot;OSCC_FLAG_LOW is always set and oscc_grow_count will never grow&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-170&quot;&gt;&lt;del&gt;LU-170&lt;/del&gt;&lt;/a&gt; oscc_grow_count will never grow&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=d70807c400978c3ae1119d7d9fa22f160eece35a&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;d70807c400978c3ae1119d7d9fa22f160eece35a&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/include/lustre_net.h&lt;/li&gt;
	&lt;li&gt;lustre/mdc/mdc_locks.c&lt;/li&gt;
	&lt;li&gt;lustre/ldlm/ldlm_lockd.c&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/recov_thread.c&lt;/li&gt;
	&lt;li&gt;lustre/osc/osc_create.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="14908" author="hudson" created="Sun, 22 May 2011 23:28:57 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://newbuild.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://newbuild.whamcloud.com/job/lustre-b1_8/./arch=x86_64,build_type=client,distro=el6,ib_stack=inkernel/60/&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 #60&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-170&quot; title=&quot;OSCC_FLAG_LOW is always set and oscc_grow_count will never grow&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-170&quot;&gt;&lt;del&gt;LU-170&lt;/del&gt;&lt;/a&gt; oscc_grow_count will never grow&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=d70807c400978c3ae1119d7d9fa22f160eece35a&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;d70807c400978c3ae1119d7d9fa22f160eece35a&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mdc/mdc_locks.c&lt;/li&gt;
	&lt;li&gt;lustre/osc/osc_create.c&lt;/li&gt;
	&lt;li&gt;lustre/ldlm/ldlm_lockd.c&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/recov_thread.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre_net.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="14909" author="hudson" created="Sun, 22 May 2011 23:29:14 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://newbuild.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://newbuild.whamcloud.com/job/lustre-b1_8/./arch=x86_64,build_type=client,distro=ubuntu1004,ib_stack=inkernel/60/&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 #60&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-170&quot; title=&quot;OSCC_FLAG_LOW is always set and oscc_grow_count will never grow&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-170&quot;&gt;&lt;del&gt;LU-170&lt;/del&gt;&lt;/a&gt; oscc_grow_count will never grow&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=d70807c400978c3ae1119d7d9fa22f160eece35a&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;d70807c400978c3ae1119d7d9fa22f160eece35a&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/ldlm/ldlm_lockd.c&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/recov_thread.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre_net.h&lt;/li&gt;
	&lt;li&gt;lustre/mdc/mdc_locks.c&lt;/li&gt;
	&lt;li&gt;lustre/osc/osc_create.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="14910" author="hudson" created="Sun, 22 May 2011 23:29:46 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://newbuild.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://newbuild.whamcloud.com/job/lustre-b1_8/./arch=i686,build_type=client,distro=el5,ib_stack=inkernel/60/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-b1_8 &#187; i686,client,el5,inkernel #60&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-170&quot; title=&quot;OSCC_FLAG_LOW is always set and oscc_grow_count will never grow&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-170&quot;&gt;&lt;del&gt;LU-170&lt;/del&gt;&lt;/a&gt; oscc_grow_count will never grow&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=d70807c400978c3ae1119d7d9fa22f160eece35a&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;d70807c400978c3ae1119d7d9fa22f160eece35a&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/ldlm/ldlm_lockd.c&lt;/li&gt;
	&lt;li&gt;lustre/mdc/mdc_locks.c&lt;/li&gt;
	&lt;li&gt;lustre/osc/osc_create.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre_net.h&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/recov_thread.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="14911" author="hudson" created="Sun, 22 May 2011 23:30:21 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://newbuild.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://newbuild.whamcloud.com/job/lustre-b1_8/./arch=i686,build_type=client,distro=el5,ib_stack=ofa/60/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-b1_8 &#187; i686,client,el5,ofa #60&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-170&quot; title=&quot;OSCC_FLAG_LOW is always set and oscc_grow_count will never grow&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-170&quot;&gt;&lt;del&gt;LU-170&lt;/del&gt;&lt;/a&gt; oscc_grow_count will never grow&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=d70807c400978c3ae1119d7d9fa22f160eece35a&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;d70807c400978c3ae1119d7d9fa22f160eece35a&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mdc/mdc_locks.c&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/recov_thread.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre_net.h&lt;/li&gt;
	&lt;li&gt;lustre/osc/osc_create.c&lt;/li&gt;
	&lt;li&gt;lustre/ldlm/ldlm_lockd.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="14912" author="hudson" created="Sun, 22 May 2011 23:34:27 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://newbuild.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://newbuild.whamcloud.com/job/lustre-b1_8/./arch=i686,build_type=client,distro=el6,ib_stack=inkernel/60/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-b1_8 &#187; i686,client,el6,inkernel #60&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-170&quot; title=&quot;OSCC_FLAG_LOW is always set and oscc_grow_count will never grow&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-170&quot;&gt;&lt;del&gt;LU-170&lt;/del&gt;&lt;/a&gt; oscc_grow_count will never grow&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=d70807c400978c3ae1119d7d9fa22f160eece35a&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;d70807c400978c3ae1119d7d9fa22f160eece35a&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/ldlm/ldlm_lockd.c&lt;/li&gt;
	&lt;li&gt;lustre/osc/osc_create.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre_net.h&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/recov_thread.c&lt;/li&gt;
	&lt;li&gt;lustre/mdc/mdc_locks.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="14913" author="hudson" created="Sun, 22 May 2011 23:39:34 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://newbuild.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://newbuild.whamcloud.com/job/lustre-b1_8/./arch=x86_64,build_type=client,distro=el5,ib_stack=inkernel/60/&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 #60&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-170&quot; title=&quot;OSCC_FLAG_LOW is always set and oscc_grow_count will never grow&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-170&quot;&gt;&lt;del&gt;LU-170&lt;/del&gt;&lt;/a&gt; oscc_grow_count will never grow&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=d70807c400978c3ae1119d7d9fa22f160eece35a&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;d70807c400978c3ae1119d7d9fa22f160eece35a&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mdc/mdc_locks.c&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/recov_thread.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre_net.h&lt;/li&gt;
	&lt;li&gt;lustre/osc/osc_create.c&lt;/li&gt;
	&lt;li&gt;lustre/ldlm/ldlm_lockd.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="14914" author="hudson" created="Sun, 22 May 2011 23:47:47 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://newbuild.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://newbuild.whamcloud.com/job/lustre-b1_8/./arch=i686,build_type=server,distro=el5,ib_stack=inkernel/60/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-b1_8 &#187; i686,server,el5,inkernel #60&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-170&quot; title=&quot;OSCC_FLAG_LOW is always set and oscc_grow_count will never grow&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-170&quot;&gt;&lt;del&gt;LU-170&lt;/del&gt;&lt;/a&gt; oscc_grow_count will never grow&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=d70807c400978c3ae1119d7d9fa22f160eece35a&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;d70807c400978c3ae1119d7d9fa22f160eece35a&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/ptlrpc/recov_thread.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre_net.h&lt;/li&gt;
	&lt;li&gt;lustre/ldlm/ldlm_lockd.c&lt;/li&gt;
	&lt;li&gt;lustre/mdc/mdc_locks.c&lt;/li&gt;
	&lt;li&gt;lustre/osc/osc_create.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="14915" author="hudson" created="Sun, 22 May 2011 23:48:32 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://newbuild.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://newbuild.whamcloud.com/job/lustre-b1_8/./arch=i686,build_type=server,distro=el5,ib_stack=ofa/60/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-b1_8 &#187; i686,server,el5,ofa #60&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-170&quot; title=&quot;OSCC_FLAG_LOW is always set and oscc_grow_count will never grow&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-170&quot;&gt;&lt;del&gt;LU-170&lt;/del&gt;&lt;/a&gt; oscc_grow_count will never grow&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=d70807c400978c3ae1119d7d9fa22f160eece35a&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;d70807c400978c3ae1119d7d9fa22f160eece35a&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/osc/osc_create.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre_net.h&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/recov_thread.c&lt;/li&gt;
	&lt;li&gt;lustre/ldlm/ldlm_lockd.c&lt;/li&gt;
	&lt;li&gt;lustre/mdc/mdc_locks.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="14916" author="hudson" created="Sun, 22 May 2011 23:57:23 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://newbuild.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://newbuild.whamcloud.com/job/lustre-b1_8/./arch=x86_64,build_type=server,distro=el5,ib_stack=inkernel/60/&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 #60&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-170&quot; title=&quot;OSCC_FLAG_LOW is always set and oscc_grow_count will never grow&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-170&quot;&gt;&lt;del&gt;LU-170&lt;/del&gt;&lt;/a&gt; oscc_grow_count will never grow&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=d70807c400978c3ae1119d7d9fa22f160eece35a&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;d70807c400978c3ae1119d7d9fa22f160eece35a&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mdc/mdc_locks.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre_net.h&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/recov_thread.c&lt;/li&gt;
	&lt;li&gt;lustre/osc/osc_create.c&lt;/li&gt;
	&lt;li&gt;lustre/ldlm/ldlm_lockd.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="14938" author="pjones" created="Tue, 24 May 2011 06:31:05 +0000"  >&lt;p&gt;Landed for both 1.8.6 and 2.1 so I think that this can be marked RESOLVED. Please reopen if there is still any further work to complete&lt;/p&gt;</comment>
                    </comments>
                    <attachments>
                    </attachments>
                <subtasks>
                    </subtasks>
                <customfields>
                                                                                                                                                                                            <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|hzv9jj:</customfieldvalue>

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

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