<!-- 
RSS generated by JIRA (9.4.14#940014-sha1:734e6822bbf0d45eff9af51f82432957f73aa32c) at Sat Feb 10 01:10:34 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-805] lfs quota should show quota allocation rather than used</title>
                <link>https://jira.whamcloud.com/browse/LU-805</link>
                <project id="10000" key="LU">Lustre</project>
                    <description>&lt;p&gt;lfs quota give actual used rather than what has been allocated. But what is allocated what really effects the user. Here is an example&lt;/p&gt;

&lt;p&gt;sh-3.2# lfs quota -u treddy /nobackupp30&lt;br/&gt;
Disk quotas for user treddy (uid 10787):&lt;br/&gt;
      Filesystem  kbytes   quota   limit   grace   files   quota limit   grace&lt;br/&gt;
     /nobackupp30 208932428  210000000 420000000       -   14641   75000  100000       -&lt;/p&gt;



&lt;p&gt;This shows that he is under his soft quota. But if we look at what he is allocated&lt;/p&gt;

&lt;p&gt;pbspl1 ~ # lfs quota &lt;del&gt;v -u treddy /nobackupp30 | awk &apos;$2 == &quot;&lt;/del&gt;&quot; &lt;/p&gt;
{ sumu = sumu + $1; suma = suma + $3 }
&lt;p&gt; END &lt;/p&gt;
{ print sumu, suma, &quot;\n&quot; }
&lt;p&gt;&apos;&lt;br/&gt;
&amp;gt; 208932428 220463104&lt;/p&gt;




&lt;p&gt;We see that his allocation (220,463,104) is over the softlimit (210,000,000). Therefore his grace time has been accumulating and in fact it is expired.&lt;/p&gt;

&lt;p&gt;I have a modified version of lfs tool that  does a better job of providing the quota info.&lt;/p&gt;

&lt;p&gt;bash-3.2# /usr/local/bin/lfs.nas  quota -v -u treddy /nobackupp30&lt;br/&gt;
Disk quotas for user treddy (uid 10787):&lt;br/&gt;
     Filesystem  kbytes   quota   limit   grace   files   quota   limit   grace&lt;br/&gt;
   /nobackupp30 208932428* 210000000 420000000    None   14641   75000  100000       -&lt;br/&gt;
nbp30-MDT0000_UUID&lt;br/&gt;
                   6844       -  131072       -   14641       -   20480       -&lt;br/&gt;
nbp30-OST0000_UUID&lt;br/&gt;
                2352640       - 2490368       -       -       -       -       -&lt;br/&gt;
nbp30-OST0001_UUID&lt;br/&gt;
                1963180       - 2097152       -       -       -       -       -&lt;br/&gt;
...&lt;/p&gt;

&lt;p&gt;nbp30-OST0076_UUID&lt;br/&gt;
                2860332       - 3014656       -       -       -       -       -&lt;br/&gt;
nbp30-OST0077_UUID&lt;br/&gt;
                1344680       - 1441792       -       -       -       -       -&lt;br/&gt;
                -------       -------&lt;br/&gt;
Total           208932428       220463104&lt;/p&gt;


&lt;p&gt;We see here that he has no grace time left and the softlimit has turn into a hardlimit. In order to reset his grace time he must delete enough data to drop his allocation below his softlimit. In this case it would be  ~10,217 MB. &lt;/p&gt;

&lt;p&gt;So it would be better to show total allocated in the lfs quota output. Example in this case should be&lt;/p&gt;

&lt;p&gt;Disk quotas for user treddy (uid 10787):&lt;br/&gt;
      Filesystem  kbytes   quota   limit   grace   files   quota limit   grace&lt;br/&gt;
     /nobackupp30 220463104*  210000000 420000000   None    -   14641   75000  100000       -&lt;/p&gt;
</description>
                <environment>Lustre 1.8.6 clients </environment>
        <key id="12280">LU-805</key>
            <summary>lfs quota should show quota allocation rather than used</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="niu">Niu Yawei</assignee>
                                    <reporter username="mhanafi">Mahmoud Hanafi</reporter>
                        <labels>
                    </labels>
                <created>Fri, 28 Oct 2011 14:28:12 +0000</created>
                <updated>Wed, 9 May 2012 12:24:26 +0000</updated>
                            <resolved>Mon, 16 Jan 2012 09:16:45 +0000</resolved>
                                    <version>Lustre 1.8.6</version>
                                    <fixVersion>Lustre 2.2.0</fixVersion>
                    <fixVersion>Lustre 2.1.2</fixVersion>
                    <fixVersion>Lustre 1.8.8</fixVersion>
                                        <due></due>
                            <votes>0</votes>
                                    <watches>4</watches>
                                                                            <comments>
                            <comment id="22156" author="pjones" created="Fri, 28 Oct 2011 14:56:48 +0000"  >&lt;p&gt;Niu&lt;/p&gt;

&lt;p&gt;Could you please advise on this ticket?&lt;/p&gt;

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

&lt;p&gt;Peter&lt;/p&gt;</comment>
                            <comment id="22196" author="niu" created="Sat, 29 Oct 2011 22:51:25 +0000"  >&lt;p&gt;Hi, Mahmoud&lt;/p&gt;

&lt;p&gt;I&apos;m not quite sure what does your &quot;quota allocation&quot; exactly mean, if it&apos;s quota units that quota slaves (one for each OSTs and MDT) acquired from quota master (on MDT), then it should not affect user&apos;s space usage, user should care only if the &quot;total used&quot; is exceeding &quot;total soft limit&quot; or &quot;total hard limit&quot;.&lt;/p&gt;

&lt;p&gt;The quota units allocated for each node is displayed in the &apos;limit&apos; column of &quot;lfs quoa -v&quot; output.&lt;/p&gt;

&lt;p&gt;Thanks&lt;/p&gt;
&lt;ul class=&quot;alternate&quot; type=&quot;square&quot;&gt;
	&lt;li&gt;Niu&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="22263" author="mhanafi" created="Tue, 1 Nov 2011 13:15:29 +0000"  >&lt;p&gt;The issue is that the quota units that the slave acquire effects the user usage. As in the example I gave the users usage is less then the softlimit. But his total quota units is more than softlimit. Under this scenario the softlimit grace timer doesn&apos;t get reset. And in this case it expired. But using lsf quota you have no way on know that. &lt;/p&gt;


</comment>
                            <comment id="22270" author="niu" created="Wed, 2 Nov 2011 02:25:20 +0000"  >&lt;p&gt;I see your point now, thank you, Mahmoud. &lt;/p&gt;

&lt;p&gt;However, I think we can&apos;t replace the &apos;total used&apos; with &apos;total allocated qunit&apos; in the output of &apos;lfs quota&apos;, since the &apos;total used&apos; is also important to users, and replacing it with &apos;total allocated qunit&apos; could confuse user even more. Maybe just print an additional &apos;total allocated qunit&apos; will be helpful?&lt;/p&gt;

&lt;p&gt;Hi, Johann &amp;amp; Fanyong&lt;/p&gt;

&lt;p&gt;When I look close into the code, I found that we doesn&apos;t apply same qunit shrink logic to soft limit: see dqacq_handler(), when usage + acquired &amp;gt; softlimit, we just trigger the grace time immediately, but not return a shrinked value. Is this our design or a defect? Thanks.&lt;/p&gt;</comment>
                            <comment id="22670" author="niu" created="Tue, 8 Nov 2011 06:17:17 +0000"  >&lt;p&gt;patch for b1_8: &lt;a href=&quot;http://review.whamcloud.com/#change,1667&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://review.whamcloud.com/#change,1667&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="22716" author="niu" created="Tue, 8 Nov 2011 21:16:54 +0000"  >&lt;p&gt;patch for master: &lt;a href=&quot;http://review.whamcloud.com/1674&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://review.whamcloud.com/1674&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="25541" author="hudson" created="Wed, 4 Jan 2012 11:53: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/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/402/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,server,el5,ofa #402&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-805&quot; title=&quot;lfs quota should show quota allocation rather than used&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-805&quot;&gt;&lt;del&gt;LU-805&lt;/del&gt;&lt;/a&gt; quota: lfs quota doesn&apos;t print grace time correctly (Revision a9b5457bc7168393803d692a016909528dc07725)&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=a9b5457bc7168393803d692a016909528dc07725&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;a9b5457bc7168393803d692a016909528dc07725&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/utils/lfs.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="25547" author="hudson" created="Wed, 4 Jan 2012 11:55: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/402/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,el6,inkernel #402&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-805&quot; title=&quot;lfs quota should show quota allocation rather than used&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-805&quot;&gt;&lt;del&gt;LU-805&lt;/del&gt;&lt;/a&gt; quota: lfs quota doesn&apos;t print grace time correctly (Revision a9b5457bc7168393803d692a016909528dc07725)&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=a9b5457bc7168393803d692a016909528dc07725&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;a9b5457bc7168393803d692a016909528dc07725&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/utils/lfs.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="25553" author="hudson" created="Wed, 4 Jan 2012 11:58: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-master/./arch=i686,build_type=server,distro=el6,ib_stack=inkernel/402/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,server,el6,inkernel #402&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-805&quot; title=&quot;lfs quota should show quota allocation rather than used&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-805&quot;&gt;&lt;del&gt;LU-805&lt;/del&gt;&lt;/a&gt; quota: lfs quota doesn&apos;t print grace time correctly (Revision a9b5457bc7168393803d692a016909528dc07725)&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=a9b5457bc7168393803d692a016909528dc07725&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;a9b5457bc7168393803d692a016909528dc07725&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/utils/lfs.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="25559" author="hudson" created="Wed, 4 Jan 2012 11:58: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/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/402/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,el5,inkernel #402&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-805&quot; title=&quot;lfs quota should show quota allocation rather than used&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-805&quot;&gt;&lt;del&gt;LU-805&lt;/del&gt;&lt;/a&gt; quota: lfs quota doesn&apos;t print grace time correctly (Revision a9b5457bc7168393803d692a016909528dc07725)&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=a9b5457bc7168393803d692a016909528dc07725&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;a9b5457bc7168393803d692a016909528dc07725&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/utils/lfs.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="25565" author="hudson" created="Wed, 4 Jan 2012 12:02: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/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/402/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,sles11,inkernel #402&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-805&quot; title=&quot;lfs quota should show quota allocation rather than used&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-805&quot;&gt;&lt;del&gt;LU-805&lt;/del&gt;&lt;/a&gt; quota: lfs quota doesn&apos;t print grace time correctly (Revision a9b5457bc7168393803d692a016909528dc07725)&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=a9b5457bc7168393803d692a016909528dc07725&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;a9b5457bc7168393803d692a016909528dc07725&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/utils/lfs.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="25571" author="hudson" created="Wed, 4 Jan 2012 12:05:01 +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/402/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,el5,ofa #402&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-805&quot; title=&quot;lfs quota should show quota allocation rather than used&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-805&quot;&gt;&lt;del&gt;LU-805&lt;/del&gt;&lt;/a&gt; quota: lfs quota doesn&apos;t print grace time correctly (Revision a9b5457bc7168393803d692a016909528dc07725)&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=a9b5457bc7168393803d692a016909528dc07725&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;a9b5457bc7168393803d692a016909528dc07725&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/utils/lfs.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="25577" author="hudson" created="Wed, 4 Jan 2012 12:05: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=el5,ib_stack=inkernel/402/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,server,el5,inkernel #402&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-805&quot; title=&quot;lfs quota should show quota allocation rather than used&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-805&quot;&gt;&lt;del&gt;LU-805&lt;/del&gt;&lt;/a&gt; quota: lfs quota doesn&apos;t print grace time correctly (Revision a9b5457bc7168393803d692a016909528dc07725)&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=a9b5457bc7168393803d692a016909528dc07725&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;a9b5457bc7168393803d692a016909528dc07725&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/utils/lfs.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="25583" author="hudson" created="Wed, 4 Jan 2012 12:05: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=x86_64,build_type=client,distro=ubuntu1004,ib_stack=inkernel/402/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,ubuntu1004,inkernel #402&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-805&quot; title=&quot;lfs quota should show quota allocation rather than used&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-805&quot;&gt;&lt;del&gt;LU-805&lt;/del&gt;&lt;/a&gt; quota: lfs quota doesn&apos;t print grace time correctly (Revision a9b5457bc7168393803d692a016909528dc07725)&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=a9b5457bc7168393803d692a016909528dc07725&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;a9b5457bc7168393803d692a016909528dc07725&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/utils/lfs.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="25591" author="hudson" created="Wed, 4 Jan 2012 12:10: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=server,distro=el6,ib_stack=inkernel/402/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,server,el6,inkernel #402&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-805&quot; title=&quot;lfs quota should show quota allocation rather than used&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-805&quot;&gt;&lt;del&gt;LU-805&lt;/del&gt;&lt;/a&gt; quota: lfs quota doesn&apos;t print grace time correctly (Revision a9b5457bc7168393803d692a016909528dc07725)&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=a9b5457bc7168393803d692a016909528dc07725&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;a9b5457bc7168393803d692a016909528dc07725&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/utils/lfs.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="25597" author="hudson" created="Wed, 4 Jan 2012 12:10:47 +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/402/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,client,el6,inkernel #402&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-805&quot; title=&quot;lfs quota should show quota allocation rather than used&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-805&quot;&gt;&lt;del&gt;LU-805&lt;/del&gt;&lt;/a&gt; quota: lfs quota doesn&apos;t print grace time correctly (Revision a9b5457bc7168393803d692a016909528dc07725)&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=a9b5457bc7168393803d692a016909528dc07725&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;a9b5457bc7168393803d692a016909528dc07725&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/utils/lfs.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="25606" author="hudson" created="Wed, 4 Jan 2012 12:20: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/402/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,server,el5,ofa #402&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-805&quot; title=&quot;lfs quota should show quota allocation rather than used&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-805&quot;&gt;&lt;del&gt;LU-805&lt;/del&gt;&lt;/a&gt; quota: lfs quota doesn&apos;t print grace time correctly (Revision a9b5457bc7168393803d692a016909528dc07725)&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=a9b5457bc7168393803d692a016909528dc07725&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;a9b5457bc7168393803d692a016909528dc07725&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/utils/lfs.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="25622" author="hudson" created="Wed, 4 Jan 2012 12:30: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=i686,build_type=server,distro=el5,ib_stack=inkernel/402/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,server,el5,inkernel #402&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-805&quot; title=&quot;lfs quota should show quota allocation rather than used&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-805&quot;&gt;&lt;del&gt;LU-805&lt;/del&gt;&lt;/a&gt; quota: lfs quota doesn&apos;t print grace time correctly (Revision a9b5457bc7168393803d692a016909528dc07725)&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=a9b5457bc7168393803d692a016909528dc07725&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;a9b5457bc7168393803d692a016909528dc07725&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/utils/lfs.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="25630" author="hudson" created="Wed, 4 Jan 2012 12:36: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=i686,build_type=client,distro=el5,ib_stack=inkernel/402/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,client,el5,inkernel #402&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-805&quot; title=&quot;lfs quota should show quota allocation rather than used&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-805&quot;&gt;&lt;del&gt;LU-805&lt;/del&gt;&lt;/a&gt; quota: lfs quota doesn&apos;t print grace time correctly (Revision a9b5457bc7168393803d692a016909528dc07725)&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=a9b5457bc7168393803d692a016909528dc07725&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;a9b5457bc7168393803d692a016909528dc07725&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/utils/lfs.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="25636" author="hudson" created="Wed, 4 Jan 2012 12:47:54 +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/402/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,client,el5,ofa #402&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-805&quot; title=&quot;lfs quota should show quota allocation rather than used&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-805&quot;&gt;&lt;del&gt;LU-805&lt;/del&gt;&lt;/a&gt; quota: lfs quota doesn&apos;t print grace time correctly (Revision a9b5457bc7168393803d692a016909528dc07725)&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=a9b5457bc7168393803d692a016909528dc07725&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;a9b5457bc7168393803d692a016909528dc07725&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/utils/lfs.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="25936" author="hudson" created="Thu, 5 Jan 2012 17:50: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-b1_8/./arch=x86_64,build_type=client,distro=el5,ib_stack=ofa/164/&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 #164&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-805&quot; title=&quot;lfs quota should show quota allocation rather than used&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-805&quot;&gt;&lt;del&gt;LU-805&lt;/del&gt;&lt;/a&gt; quota: lfs quota doesn&apos;t print grace time correctly (Revision dca979f888a054d186f7be679cb4ffefcd4d9692)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&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=dca979f888a054d186f7be679cb4ffefcd4d9692&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;dca979f888a054d186f7be679cb4ffefcd4d9692&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/utils/lfs.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="25937" author="hudson" created="Thu, 5 Jan 2012 17:54: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/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/164/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-b1_8 &#187; i686,client,el6,inkernel #164&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-805&quot; title=&quot;lfs quota should show quota allocation rather than used&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-805&quot;&gt;&lt;del&gt;LU-805&lt;/del&gt;&lt;/a&gt; quota: lfs quota doesn&apos;t print grace time correctly (Revision dca979f888a054d186f7be679cb4ffefcd4d9692)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&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=dca979f888a054d186f7be679cb4ffefcd4d9692&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;dca979f888a054d186f7be679cb4ffefcd4d9692&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/utils/lfs.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="25938" author="hudson" created="Thu, 5 Jan 2012 17:55:47 +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/164/&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 #164&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-805&quot; title=&quot;lfs quota should show quota allocation rather than used&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-805&quot;&gt;&lt;del&gt;LU-805&lt;/del&gt;&lt;/a&gt; quota: lfs quota doesn&apos;t print grace time correctly (Revision dca979f888a054d186f7be679cb4ffefcd4d9692)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&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=dca979f888a054d186f7be679cb4ffefcd4d9692&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;dca979f888a054d186f7be679cb4ffefcd4d9692&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/utils/lfs.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="25939" author="hudson" created="Thu, 5 Jan 2012 17:56: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-b1_8/./arch=x86_64,build_type=client,distro=el5,ib_stack=inkernel/164/&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 #164&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-805&quot; title=&quot;lfs quota should show quota allocation rather than used&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-805&quot;&gt;&lt;del&gt;LU-805&lt;/del&gt;&lt;/a&gt; quota: lfs quota doesn&apos;t print grace time correctly (Revision dca979f888a054d186f7be679cb4ffefcd4d9692)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&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=dca979f888a054d186f7be679cb4ffefcd4d9692&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;dca979f888a054d186f7be679cb4ffefcd4d9692&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/utils/lfs.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="25940" author="hudson" created="Thu, 5 Jan 2012 17:59: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-b1_8/./arch=i686,build_type=client,distro=el5,ib_stack=inkernel/164/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-b1_8 &#187; i686,client,el5,inkernel #164&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-805&quot; title=&quot;lfs quota should show quota allocation rather than used&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-805&quot;&gt;&lt;del&gt;LU-805&lt;/del&gt;&lt;/a&gt; quota: lfs quota doesn&apos;t print grace time correctly (Revision dca979f888a054d186f7be679cb4ffefcd4d9692)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&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=dca979f888a054d186f7be679cb4ffefcd4d9692&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;dca979f888a054d186f7be679cb4ffefcd4d9692&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/utils/lfs.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="25941" author="hudson" created="Thu, 5 Jan 2012 18:00:01 +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/164/&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 #164&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-805&quot; title=&quot;lfs quota should show quota allocation rather than used&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-805&quot;&gt;&lt;del&gt;LU-805&lt;/del&gt;&lt;/a&gt; quota: lfs quota doesn&apos;t print grace time correctly (Revision dca979f888a054d186f7be679cb4ffefcd4d9692)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&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=dca979f888a054d186f7be679cb4ffefcd4d9692&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;dca979f888a054d186f7be679cb4ffefcd4d9692&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/utils/lfs.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="25942" author="hudson" created="Thu, 5 Jan 2012 18:01: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-b1_8/./arch=x86_64,build_type=server,distro=el5,ib_stack=ofa/164/&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 #164&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-805&quot; title=&quot;lfs quota should show quota allocation rather than used&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-805&quot;&gt;&lt;del&gt;LU-805&lt;/del&gt;&lt;/a&gt; quota: lfs quota doesn&apos;t print grace time correctly (Revision dca979f888a054d186f7be679cb4ffefcd4d9692)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&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=dca979f888a054d186f7be679cb4ffefcd4d9692&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;dca979f888a054d186f7be679cb4ffefcd4d9692&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/utils/lfs.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="25943" author="hudson" created="Thu, 5 Jan 2012 18:01:18 +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/164/&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 #164&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-805&quot; title=&quot;lfs quota should show quota allocation rather than used&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-805&quot;&gt;&lt;del&gt;LU-805&lt;/del&gt;&lt;/a&gt; quota: lfs quota doesn&apos;t print grace time correctly (Revision dca979f888a054d186f7be679cb4ffefcd4d9692)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&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=dca979f888a054d186f7be679cb4ffefcd4d9692&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;dca979f888a054d186f7be679cb4ffefcd4d9692&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/utils/lfs.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="25944" author="hudson" created="Thu, 5 Jan 2012 18:01: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/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=ofa/164/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-b1_8 &#187; i686,client,el5,ofa #164&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-805&quot; title=&quot;lfs quota should show quota allocation rather than used&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-805&quot;&gt;&lt;del&gt;LU-805&lt;/del&gt;&lt;/a&gt; quota: lfs quota doesn&apos;t print grace time correctly (Revision dca979f888a054d186f7be679cb4ffefcd4d9692)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&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=dca979f888a054d186f7be679cb4ffefcd4d9692&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;dca979f888a054d186f7be679cb4ffefcd4d9692&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/utils/lfs.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="25945" author="hudson" created="Thu, 5 Jan 2012 18:16: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=i686,build_type=server,distro=el5,ib_stack=inkernel/164/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-b1_8 &#187; i686,server,el5,inkernel #164&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-805&quot; title=&quot;lfs quota should show quota allocation rather than used&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-805&quot;&gt;&lt;del&gt;LU-805&lt;/del&gt;&lt;/a&gt; quota: lfs quota doesn&apos;t print grace time correctly (Revision dca979f888a054d186f7be679cb4ffefcd4d9692)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&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=dca979f888a054d186f7be679cb4ffefcd4d9692&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;dca979f888a054d186f7be679cb4ffefcd4d9692&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/utils/lfs.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="25946" author="hudson" created="Thu, 5 Jan 2012 18:19: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=i686,build_type=server,distro=el5,ib_stack=ofa/164/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-b1_8 &#187; i686,server,el5,ofa #164&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-805&quot; title=&quot;lfs quota should show quota allocation rather than used&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-805&quot;&gt;&lt;del&gt;LU-805&lt;/del&gt;&lt;/a&gt; quota: lfs quota doesn&apos;t print grace time correctly (Revision dca979f888a054d186f7be679cb4ffefcd4d9692)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&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=dca979f888a054d186f7be679cb4ffefcd4d9692&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;dca979f888a054d186f7be679cb4ffefcd4d9692&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/utils/lfs.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="26620" author="pjones" created="Mon, 16 Jan 2012 09:16:45 +0000"  >&lt;p&gt;Landed for 2.2&lt;/p&gt;</comment>
                            <comment id="33992" author="hudson" created="Sun, 8 Apr 2012 13:40: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/lustre-b2_1/./arch=x86_64,build_type=client,distro=sles11,ib_stack=inkernel/41/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-b2_1 &#187; x86_64,client,sles11,inkernel #41&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-805&quot; title=&quot;lfs quota should show quota allocation rather than used&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-805&quot;&gt;&lt;del&gt;LU-805&lt;/del&gt;&lt;/a&gt; quota: lfs quota doesn&apos;t print grace time correctly (Revision fb46538ed943f8d9612ec05d6e97a8ed10e248fe)&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/b2_1&amp;amp;a=commit&amp;amp;h=fb46538ed943f8d9612ec05d6e97a8ed10e248fe&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;fb46538ed943f8d9612ec05d6e97a8ed10e248fe&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/utils/lfs.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="34015" author="hudson" created="Sun, 8 Apr 2012 13:42: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-b2_1/./arch=i686,build_type=client,distro=el6,ib_stack=inkernel/41/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-b2_1 &#187; i686,client,el6,inkernel #41&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-805&quot; title=&quot;lfs quota should show quota allocation rather than used&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-805&quot;&gt;&lt;del&gt;LU-805&lt;/del&gt;&lt;/a&gt; quota: lfs quota doesn&apos;t print grace time correctly (Revision fb46538ed943f8d9612ec05d6e97a8ed10e248fe)&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/b2_1&amp;amp;a=commit&amp;amp;h=fb46538ed943f8d9612ec05d6e97a8ed10e248fe&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;fb46538ed943f8d9612ec05d6e97a8ed10e248fe&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/utils/lfs.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="34038" author="hudson" created="Sun, 8 Apr 2012 13:44: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-b2_1/./arch=x86_64,build_type=server,distro=el6,ib_stack=inkernel/41/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-b2_1 &#187; x86_64,server,el6,inkernel #41&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-805&quot; title=&quot;lfs quota should show quota allocation rather than used&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-805&quot;&gt;&lt;del&gt;LU-805&lt;/del&gt;&lt;/a&gt; quota: lfs quota doesn&apos;t print grace time correctly (Revision fb46538ed943f8d9612ec05d6e97a8ed10e248fe)&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/b2_1&amp;amp;a=commit&amp;amp;h=fb46538ed943f8d9612ec05d6e97a8ed10e248fe&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;fb46538ed943f8d9612ec05d6e97a8ed10e248fe&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/utils/lfs.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="34061" author="hudson" created="Sun, 8 Apr 2012 13:44:12 +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-b2_1/./arch=i686,build_type=client,distro=el5,ib_stack=ofa/41/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-b2_1 &#187; i686,client,el5,ofa #41&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-805&quot; title=&quot;lfs quota should show quota allocation rather than used&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-805&quot;&gt;&lt;del&gt;LU-805&lt;/del&gt;&lt;/a&gt; quota: lfs quota doesn&apos;t print grace time correctly (Revision fb46538ed943f8d9612ec05d6e97a8ed10e248fe)&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/b2_1&amp;amp;a=commit&amp;amp;h=fb46538ed943f8d9612ec05d6e97a8ed10e248fe&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;fb46538ed943f8d9612ec05d6e97a8ed10e248fe&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/utils/lfs.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="34084" author="hudson" created="Sun, 8 Apr 2012 13:44: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/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-b2_1/./arch=x86_64,build_type=server,distro=el5,ib_stack=ofa/41/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-b2_1 &#187; x86_64,server,el5,ofa #41&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-805&quot; title=&quot;lfs quota should show quota allocation rather than used&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-805&quot;&gt;&lt;del&gt;LU-805&lt;/del&gt;&lt;/a&gt; quota: lfs quota doesn&apos;t print grace time correctly (Revision fb46538ed943f8d9612ec05d6e97a8ed10e248fe)&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/b2_1&amp;amp;a=commit&amp;amp;h=fb46538ed943f8d9612ec05d6e97a8ed10e248fe&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;fb46538ed943f8d9612ec05d6e97a8ed10e248fe&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/utils/lfs.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="34107" author="hudson" created="Sun, 8 Apr 2012 13:53: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-b2_1/./arch=x86_64,build_type=client,distro=el6,ib_stack=inkernel/41/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-b2_1 &#187; x86_64,client,el6,inkernel #41&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-805&quot; title=&quot;lfs quota should show quota allocation rather than used&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-805&quot;&gt;&lt;del&gt;LU-805&lt;/del&gt;&lt;/a&gt; quota: lfs quota doesn&apos;t print grace time correctly (Revision fb46538ed943f8d9612ec05d6e97a8ed10e248fe)&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/b2_1&amp;amp;a=commit&amp;amp;h=fb46538ed943f8d9612ec05d6e97a8ed10e248fe&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;fb46538ed943f8d9612ec05d6e97a8ed10e248fe&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/utils/lfs.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="34130" author="hudson" created="Sun, 8 Apr 2012 13:54:41 +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-b2_1/./arch=i686,build_type=server,distro=el6,ib_stack=inkernel/41/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-b2_1 &#187; i686,server,el6,inkernel #41&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-805&quot; title=&quot;lfs quota should show quota allocation rather than used&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-805&quot;&gt;&lt;del&gt;LU-805&lt;/del&gt;&lt;/a&gt; quota: lfs quota doesn&apos;t print grace time correctly (Revision fb46538ed943f8d9612ec05d6e97a8ed10e248fe)&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/b2_1&amp;amp;a=commit&amp;amp;h=fb46538ed943f8d9612ec05d6e97a8ed10e248fe&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;fb46538ed943f8d9612ec05d6e97a8ed10e248fe&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/utils/lfs.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="34153" author="hudson" created="Sun, 8 Apr 2012 13:55: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-b2_1/./arch=x86_64,build_type=client,distro=el5,ib_stack=inkernel/41/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-b2_1 &#187; x86_64,client,el5,inkernel #41&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-805&quot; title=&quot;lfs quota should show quota allocation rather than used&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-805&quot;&gt;&lt;del&gt;LU-805&lt;/del&gt;&lt;/a&gt; quota: lfs quota doesn&apos;t print grace time correctly (Revision fb46538ed943f8d9612ec05d6e97a8ed10e248fe)&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/b2_1&amp;amp;a=commit&amp;amp;h=fb46538ed943f8d9612ec05d6e97a8ed10e248fe&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;fb46538ed943f8d9612ec05d6e97a8ed10e248fe&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/utils/lfs.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="34176" author="hudson" created="Sun, 8 Apr 2012 13:57:59 +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-b2_1/./arch=i686,build_type=server,distro=el5,ib_stack=inkernel/41/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-b2_1 &#187; i686,server,el5,inkernel #41&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-805&quot; title=&quot;lfs quota should show quota allocation rather than used&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-805&quot;&gt;&lt;del&gt;LU-805&lt;/del&gt;&lt;/a&gt; quota: lfs quota doesn&apos;t print grace time correctly (Revision fb46538ed943f8d9612ec05d6e97a8ed10e248fe)&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/b2_1&amp;amp;a=commit&amp;amp;h=fb46538ed943f8d9612ec05d6e97a8ed10e248fe&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;fb46538ed943f8d9612ec05d6e97a8ed10e248fe&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/utils/lfs.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="34199" author="hudson" created="Sun, 8 Apr 2012 14:07:53 +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-b2_1/./arch=x86_64,build_type=server,distro=el5,ib_stack=inkernel/41/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-b2_1 &#187; x86_64,server,el5,inkernel #41&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-805&quot; title=&quot;lfs quota should show quota allocation rather than used&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-805&quot;&gt;&lt;del&gt;LU-805&lt;/del&gt;&lt;/a&gt; quota: lfs quota doesn&apos;t print grace time correctly (Revision fb46538ed943f8d9612ec05d6e97a8ed10e248fe)&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/b2_1&amp;amp;a=commit&amp;amp;h=fb46538ed943f8d9612ec05d6e97a8ed10e248fe&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;fb46538ed943f8d9612ec05d6e97a8ed10e248fe&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/utils/lfs.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="34222" author="hudson" created="Sun, 8 Apr 2012 14:13: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-b2_1/./arch=i686,build_type=server,distro=el5,ib_stack=ofa/41/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-b2_1 &#187; i686,server,el5,ofa #41&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-805&quot; title=&quot;lfs quota should show quota allocation rather than used&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-805&quot;&gt;&lt;del&gt;LU-805&lt;/del&gt;&lt;/a&gt; quota: lfs quota doesn&apos;t print grace time correctly (Revision fb46538ed943f8d9612ec05d6e97a8ed10e248fe)&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/b2_1&amp;amp;a=commit&amp;amp;h=fb46538ed943f8d9612ec05d6e97a8ed10e248fe&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;fb46538ed943f8d9612ec05d6e97a8ed10e248fe&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/utils/lfs.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="34245" author="hudson" created="Sun, 8 Apr 2012 14:17: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-b2_1/./arch=x86_64,build_type=client,distro=el5,ib_stack=ofa/41/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-b2_1 &#187; x86_64,client,el5,ofa #41&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-805&quot; title=&quot;lfs quota should show quota allocation rather than used&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-805&quot;&gt;&lt;del&gt;LU-805&lt;/del&gt;&lt;/a&gt; quota: lfs quota doesn&apos;t print grace time correctly (Revision fb46538ed943f8d9612ec05d6e97a8ed10e248fe)&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/b2_1&amp;amp;a=commit&amp;amp;h=fb46538ed943f8d9612ec05d6e97a8ed10e248fe&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;fb46538ed943f8d9612ec05d6e97a8ed10e248fe&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/utils/lfs.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="34268" author="hudson" created="Sun, 8 Apr 2012 14:24: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-b2_1/./arch=i686,build_type=client,distro=el5,ib_stack=inkernel/41/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-b2_1 &#187; i686,client,el5,inkernel #41&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-805&quot; title=&quot;lfs quota should show quota allocation rather than used&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-805&quot;&gt;&lt;del&gt;LU-805&lt;/del&gt;&lt;/a&gt; quota: lfs quota doesn&apos;t print grace time correctly (Revision fb46538ed943f8d9612ec05d6e97a8ed10e248fe)&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/b2_1&amp;amp;a=commit&amp;amp;h=fb46538ed943f8d9612ec05d6e97a8ed10e248fe&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;fb46538ed943f8d9612ec05d6e97a8ed10e248fe&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/utils/lfs.c&lt;/li&gt;
&lt;/ul&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_10040" key="com.atlassian.jira.plugin.system.customfieldtypes:labels">
                        <customfieldname>Epic</customfieldname>
                        <customfieldvalues>
                                        <label>quota</label>
    
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                <customfield id="customfield_10390" key="com.pyxis.greenhopper.jira:gh-lexo-rank">
                        <customfieldname>Rank</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>1|hzv7qf:</customfieldvalue>

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