<!-- 
RSS generated by JIRA (9.4.14#940014-sha1:734e6822bbf0d45eff9af51f82432957f73aa32c) at Sat Feb 10 01:12:08 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-960] Bad stripe count reported by lfs getstripe when default stripe count set to -1</title>
                <link>https://jira.whamcloud.com/browse/LU-960</link>
                <project id="10000" key="LU">Lustre</project>
                    <description>&lt;p&gt;When using a default stripe count of -1, the stripe count reported for newly created directory is bogus. Here is how to reproduce:&lt;/p&gt;
&lt;div class=&quot;preformatted panel&quot; style=&quot;border-width: 1px;&quot;&gt;&lt;div class=&quot;preformattedContent panelContent&quot;&gt;
&lt;pre&gt;[root@client-4 tests]# export STRIPES_PER_OBJ=-1
[root@client-4 tests]# sh ./llmount.sh
[...]
[root@client-4 tests]# lfs getstripe -d /mnt/lustre
stripe_count:   -1 stripe_size:    1048576 stripe_offset:  -1
[root@client-4 tests]# mkdir /mnt/lustre/foo
[root@client-4 tests]# lfs getstripe -d /mnt/lustre/foo
stripe_count:   4294967295 stripe_size:    1048576 stripe_offset:  -1
                ^^^^^^^^^^
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;</description>
                <environment></environment>
        <key id="12786">LU-960</key>
            <summary>Bad stripe count reported by lfs getstripe when default stripe count set to -1</summary>
                <type id="1" iconUrl="https://jira.whamcloud.com/secure/viewavatar?size=xsmall&amp;avatarId=11303&amp;avatarType=issuetype">Bug</type>
                                            <priority id="4" iconUrl="https://jira.whamcloud.com/images/icons/priorities/minor.svg">Minor</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="mdiep">Minh Diep</assignee>
                                    <reporter username="johann">Johann Lombardi</reporter>
                        <labels>
                    </labels>
                <created>Wed, 4 Jan 2012 08:09:16 +0000</created>
                <updated>Tue, 27 Mar 2012 13:28:55 +0000</updated>
                            <resolved>Tue, 27 Mar 2012 13:28:55 +0000</resolved>
                                    <version>Lustre 2.2.0</version>
                                    <fixVersion>Lustre 2.2.0</fixVersion>
                    <fixVersion>Lustre 2.1.2</fixVersion>
                                        <due></due>
                            <votes>0</votes>
                                    <watches>1</watches>
                                                                            <comments>
                            <comment id="25448" author="johann" created="Wed, 4 Jan 2012 08:12:31 +0000"  >&lt;p&gt;In fact the problem lies in lov_dump_user_lmm_header():&lt;/p&gt;

&lt;div class=&quot;code panel&quot; style=&quot;border-width: 1px;&quot;&gt;&lt;div class=&quot;codeContent panelContent&quot;&gt;
&lt;pre class=&quot;code-java&quot;&gt;&lt;span class=&quot;code-keyword&quot;&gt;static&lt;/span&gt; void lov_dump_user_lmm_header(...)
[...]
        &lt;span class=&quot;code-keyword&quot;&gt;if&lt;/span&gt; (verbose &amp;amp; VERBOSE_COUNT) {
                &lt;span class=&quot;code-keyword&quot;&gt;if&lt;/span&gt; (verbose &amp;amp; ~VERBOSE_COUNT)
                        llapi_printf(LLAPI_MSG_NORMAL, &lt;span class=&quot;code-quote&quot;&gt;&quot;%sstripe_count:   &quot;&lt;/span&gt;,
                                     prefix);
                &lt;span class=&quot;code-keyword&quot;&gt;if&lt;/span&gt; (is_dir) {
                        &lt;span class=&quot;code-keyword&quot;&gt;if&lt;/span&gt; (!raw &amp;amp;&amp;amp; lum-&amp;gt;lmm_stripe_count == 0) {
                                unsigned &lt;span class=&quot;code-object&quot;&gt;int&lt;/span&gt; scount;
                                rc = sattr_cache_get_defaults(NULL, path,
                                                              &amp;amp;scount, NULL,
                                                              NULL);
                                &lt;span class=&quot;code-keyword&quot;&gt;if&lt;/span&gt; (rc == 0)
                                        llapi_printf(LLAPI_MSG_NORMAL, &lt;span class=&quot;code-quote&quot;&gt;&quot;%u%c&quot;&lt;/span&gt;,
!!!!!!                                                                  ^^ This must be %d here
                                                     scount, nl);
                                &lt;span class=&quot;code-keyword&quot;&gt;else&lt;/span&gt;
                                        llapi_error(LLAPI_MSG_ERROR, rc,
                                                    &lt;span class=&quot;code-quote&quot;&gt;&quot;Cannot determine &lt;span class=&quot;code-keyword&quot;&gt;default&lt;/span&gt;&quot;&lt;/span&gt;
                                                    &lt;span class=&quot;code-quote&quot;&gt;&quot; stripe count.&quot;&lt;/span&gt;);
                        } &lt;span class=&quot;code-keyword&quot;&gt;else&lt;/span&gt; {
                                llapi_printf(LLAPI_MSG_NORMAL, &lt;span class=&quot;code-quote&quot;&gt;&quot;%d%c&quot;&lt;/span&gt;,
                                             lum-&amp;gt;lmm_stripe_count ==
                                             (typeof(lum-&amp;gt;lmm_stripe_count))(-1)
                                             ? -1 : lum-&amp;gt;lmm_stripe_count, nl);
                        }
                } &lt;span class=&quot;code-keyword&quot;&gt;else&lt;/span&gt; {
                        llapi_printf(LLAPI_MSG_NORMAL, &lt;span class=&quot;code-quote&quot;&gt;&quot;%hd%c&quot;&lt;/span&gt;,
                                     (__s16)lum-&amp;gt;lmm_stripe_count, nl);
                }
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;</comment>
                            <comment id="25481" author="pjones" created="Wed, 4 Jan 2012 09:20:44 +0000"  >&lt;p&gt;Minh&lt;/p&gt;

&lt;p&gt;YangSheng is busy atm so could you please look into this one?&lt;/p&gt;

&lt;p&gt;Thanks&lt;/p&gt;

&lt;p&gt;Peter&lt;/p&gt;</comment>
                            <comment id="25933" author="mdiep" created="Thu, 5 Jan 2012 17:36:10 +0000"  >&lt;p&gt;indeed, that fixed the problem. &lt;/p&gt;


&lt;p&gt;&lt;span class=&quot;error&quot;&gt;&amp;#91;root@client-6 tests&amp;#93;&lt;/span&gt;# export STRIPES_PER_OBJ=-1&lt;br/&gt;
&lt;span class=&quot;error&quot;&gt;&amp;#91;root@client-6 tests&amp;#93;&lt;/span&gt;# sh ./llmount.sh &lt;br/&gt;
...&lt;/p&gt;

&lt;p&gt;&lt;span class=&quot;error&quot;&gt;&amp;#91;root@client-6 utils&amp;#93;&lt;/span&gt;# ./lfs getstripe -d /mnt/lustre&lt;br/&gt;
stripe_count:   -1 stripe_size:    1048576 stripe_offset:  -1 &lt;br/&gt;
&lt;span class=&quot;error&quot;&gt;&amp;#91;root@client-6 utils&amp;#93;&lt;/span&gt;# mkdir /mnt/lustre/foo&lt;br/&gt;
&lt;span class=&quot;error&quot;&gt;&amp;#91;root@client-6 utils&amp;#93;&lt;/span&gt;# ./lfs getstripe -d /mnt/lustre/foo&lt;br/&gt;
stripe_count:   -1 stripe_size:    1048576 stripe_offset:  -1 &lt;/p&gt;


&lt;p&gt;I&apos;ll post a patch soon&lt;/p&gt;</comment>
                            <comment id="25953" author="mdiep" created="Thu, 5 Jan 2012 20:47:50 +0000"  >&lt;p&gt;patch &lt;a href=&quot;http://review.whamcloud.com/#change,1922&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://review.whamcloud.com/#change,1922&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;I also fixed the case where lfs setstripe -s -1&lt;/p&gt;


&lt;p&gt;&lt;span class=&quot;error&quot;&gt;&amp;#91;root@client-6 utils&amp;#93;&lt;/span&gt;# lfs setstripe -s -1 /mnt/lustre/foo&lt;br/&gt;
error: bad stripe_size 18446744073709551615, must be an even multiple of 65536 bytes: Invalid argument (22)&lt;br/&gt;
error: setstripe: create stripe file &apos;/mnt/lustre/foo&apos; failed&lt;/p&gt;

&lt;p&gt;after fix&lt;/p&gt;


&lt;p&gt;&lt;span class=&quot;error&quot;&gt;&amp;#91;root@client-6 utils&amp;#93;&lt;/span&gt;# ./lfs setstripe -s -1 /mnt/lustre/foo&lt;br/&gt;
error: setstripe: bad size &apos;-1&apos;&lt;br/&gt;
&lt;span class=&quot;error&quot;&gt;&amp;#91;root@client-6 utils&amp;#93;&lt;/span&gt;# &lt;/p&gt;</comment>
                            <comment id="26963" author="hudson" created="Thu, 19 Jan 2012 14:14: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=el6,ib_stack=inkernel/432/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,el6,inkernel #432&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-960&quot; title=&quot;Bad stripe count reported by lfs getstripe when default stripe count set to -1&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-960&quot;&gt;&lt;del&gt;LU-960&lt;/del&gt;&lt;/a&gt; utils: bad stripe count report, and validate stripe size (Revision c42ad03831f4c564c8125f42a18ae7d700d6a3f5)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&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=c42ad03831f4c564c8125f42a18ae7d700d6a3f5&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;c42ad03831f4c564c8125f42a18ae7d700d6a3f5&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/utils/liblustreapi.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="26964" author="hudson" created="Thu, 19 Jan 2012 14:15:34 +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/432/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,server,el5,ofa #432&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-960&quot; title=&quot;Bad stripe count reported by lfs getstripe when default stripe count set to -1&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-960&quot;&gt;&lt;del&gt;LU-960&lt;/del&gt;&lt;/a&gt; utils: bad stripe count report, and validate stripe size (Revision c42ad03831f4c564c8125f42a18ae7d700d6a3f5)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&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=c42ad03831f4c564c8125f42a18ae7d700d6a3f5&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;c42ad03831f4c564c8125f42a18ae7d700d6a3f5&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/utils/liblustreapi.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="26965" author="hudson" created="Thu, 19 Jan 2012 14:15: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=i686,build_type=server,distro=el6,ib_stack=inkernel/432/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,server,el6,inkernel #432&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-960&quot; title=&quot;Bad stripe count reported by lfs getstripe when default stripe count set to -1&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-960&quot;&gt;&lt;del&gt;LU-960&lt;/del&gt;&lt;/a&gt; utils: bad stripe count report, and validate stripe size (Revision c42ad03831f4c564c8125f42a18ae7d700d6a3f5)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&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=c42ad03831f4c564c8125f42a18ae7d700d6a3f5&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;c42ad03831f4c564c8125f42a18ae7d700d6a3f5&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/utils/liblustreapi.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="26966" author="hudson" created="Thu, 19 Jan 2012 14:20:55 +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/432/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,el5,inkernel #432&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-960&quot; title=&quot;Bad stripe count reported by lfs getstripe when default stripe count set to -1&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-960&quot;&gt;&lt;del&gt;LU-960&lt;/del&gt;&lt;/a&gt; utils: bad stripe count report, and validate stripe size (Revision c42ad03831f4c564c8125f42a18ae7d700d6a3f5)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&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=c42ad03831f4c564c8125f42a18ae7d700d6a3f5&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;c42ad03831f4c564c8125f42a18ae7d700d6a3f5&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/utils/liblustreapi.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="26968" author="hudson" created="Thu, 19 Jan 2012 14:21:42 +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/432/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,el5,ofa #432&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-960&quot; title=&quot;Bad stripe count reported by lfs getstripe when default stripe count set to -1&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-960&quot;&gt;&lt;del&gt;LU-960&lt;/del&gt;&lt;/a&gt; utils: bad stripe count report, and validate stripe size (Revision c42ad03831f4c564c8125f42a18ae7d700d6a3f5)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&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=c42ad03831f4c564c8125f42a18ae7d700d6a3f5&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;c42ad03831f4c564c8125f42a18ae7d700d6a3f5&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/utils/liblustreapi.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="26969" author="hudson" created="Thu, 19 Jan 2012 14:24:30 +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/432/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,sles11,inkernel #432&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-960&quot; title=&quot;Bad stripe count reported by lfs getstripe when default stripe count set to -1&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-960&quot;&gt;&lt;del&gt;LU-960&lt;/del&gt;&lt;/a&gt; utils: bad stripe count report, and validate stripe size (Revision c42ad03831f4c564c8125f42a18ae7d700d6a3f5)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&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=c42ad03831f4c564c8125f42a18ae7d700d6a3f5&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;c42ad03831f4c564c8125f42a18ae7d700d6a3f5&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/utils/liblustreapi.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="26970" author="hudson" created="Thu, 19 Jan 2012 14:24: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=server,distro=el6,ib_stack=inkernel/432/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,server,el6,inkernel #432&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-960&quot; title=&quot;Bad stripe count reported by lfs getstripe when default stripe count set to -1&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-960&quot;&gt;&lt;del&gt;LU-960&lt;/del&gt;&lt;/a&gt; utils: bad stripe count report, and validate stripe size (Revision c42ad03831f4c564c8125f42a18ae7d700d6a3f5)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&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=c42ad03831f4c564c8125f42a18ae7d700d6a3f5&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;c42ad03831f4c564c8125f42a18ae7d700d6a3f5&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/utils/liblustreapi.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="26971" author="hudson" created="Thu, 19 Jan 2012 14:24: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/./arch=i686,build_type=client,distro=el6,ib_stack=inkernel/432/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,client,el6,inkernel #432&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-960&quot; title=&quot;Bad stripe count reported by lfs getstripe when default stripe count set to -1&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-960&quot;&gt;&lt;del&gt;LU-960&lt;/del&gt;&lt;/a&gt; utils: bad stripe count report, and validate stripe size (Revision c42ad03831f4c564c8125f42a18ae7d700d6a3f5)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&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=c42ad03831f4c564c8125f42a18ae7d700d6a3f5&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;c42ad03831f4c564c8125f42a18ae7d700d6a3f5&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/utils/liblustreapi.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="26972" author="hudson" created="Thu, 19 Jan 2012 14:27: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-master/./arch=x86_64,build_type=server,distro=el5,ib_stack=inkernel/432/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,server,el5,inkernel #432&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-960&quot; title=&quot;Bad stripe count reported by lfs getstripe when default stripe count set to -1&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-960&quot;&gt;&lt;del&gt;LU-960&lt;/del&gt;&lt;/a&gt; utils: bad stripe count report, and validate stripe size (Revision c42ad03831f4c564c8125f42a18ae7d700d6a3f5)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&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=c42ad03831f4c564c8125f42a18ae7d700d6a3f5&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;c42ad03831f4c564c8125f42a18ae7d700d6a3f5&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/utils/liblustreapi.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="26973" author="hudson" created="Thu, 19 Jan 2012 14:27: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=ubuntu1004,ib_stack=inkernel/432/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,ubuntu1004,inkernel #432&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-960&quot; title=&quot;Bad stripe count reported by lfs getstripe when default stripe count set to -1&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-960&quot;&gt;&lt;del&gt;LU-960&lt;/del&gt;&lt;/a&gt; utils: bad stripe count report, and validate stripe size (Revision c42ad03831f4c564c8125f42a18ae7d700d6a3f5)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&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=c42ad03831f4c564c8125f42a18ae7d700d6a3f5&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;c42ad03831f4c564c8125f42a18ae7d700d6a3f5&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/utils/liblustreapi.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="26974" author="hudson" created="Thu, 19 Jan 2012 14:34: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=i686,build_type=server,distro=el5,ib_stack=ofa/432/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,server,el5,ofa #432&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-960&quot; title=&quot;Bad stripe count reported by lfs getstripe when default stripe count set to -1&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-960&quot;&gt;&lt;del&gt;LU-960&lt;/del&gt;&lt;/a&gt; utils: bad stripe count report, and validate stripe size (Revision c42ad03831f4c564c8125f42a18ae7d700d6a3f5)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&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=c42ad03831f4c564c8125f42a18ae7d700d6a3f5&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;c42ad03831f4c564c8125f42a18ae7d700d6a3f5&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/utils/liblustreapi.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="26975" author="hudson" created="Thu, 19 Jan 2012 14:38: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=inkernel/432/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,server,el5,inkernel #432&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-960&quot; title=&quot;Bad stripe count reported by lfs getstripe when default stripe count set to -1&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-960&quot;&gt;&lt;del&gt;LU-960&lt;/del&gt;&lt;/a&gt; utils: bad stripe count report, and validate stripe size (Revision c42ad03831f4c564c8125f42a18ae7d700d6a3f5)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&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=c42ad03831f4c564c8125f42a18ae7d700d6a3f5&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;c42ad03831f4c564c8125f42a18ae7d700d6a3f5&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/utils/liblustreapi.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="26976" author="hudson" created="Thu, 19 Jan 2012 14:53: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/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/432/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,client,el5,inkernel #432&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-960&quot; title=&quot;Bad stripe count reported by lfs getstripe when default stripe count set to -1&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-960&quot;&gt;&lt;del&gt;LU-960&lt;/del&gt;&lt;/a&gt; utils: bad stripe count report, and validate stripe size (Revision c42ad03831f4c564c8125f42a18ae7d700d6a3f5)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&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=c42ad03831f4c564c8125f42a18ae7d700d6a3f5&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;c42ad03831f4c564c8125f42a18ae7d700d6a3f5&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/utils/liblustreapi.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="26977" author="hudson" created="Thu, 19 Jan 2012 14:54: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=i686,build_type=client,distro=el5,ib_stack=ofa/432/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,client,el5,ofa #432&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-960&quot; title=&quot;Bad stripe count reported by lfs getstripe when default stripe count set to -1&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-960&quot;&gt;&lt;del&gt;LU-960&lt;/del&gt;&lt;/a&gt; utils: bad stripe count report, and validate stripe size (Revision c42ad03831f4c564c8125f42a18ae7d700d6a3f5)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&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=c42ad03831f4c564c8125f42a18ae7d700d6a3f5&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;c42ad03831f4c564c8125f42a18ae7d700d6a3f5&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/utils/liblustreapi.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="28052" author="mdiep" created="Tue, 7 Feb 2012 12:16:33 +0000"  >&lt;p&gt;patch for b2_1 &lt;a href=&quot;http://review.whamcloud.com/#change,2112&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://review.whamcloud.com/#change,2112&lt;/a&gt;&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|hzv7kv:</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_10090" key="com.pyxis.greenhopper.jira:gh-global-rank">
                        <customfieldname>Rank (Obsolete)</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>4762</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>