<!-- 
RSS generated by JIRA (9.4.14#940014-sha1:734e6822bbf0d45eff9af51f82432957f73aa32c) at Sat Feb 10 01:09:23 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-680] superblock &lt;-&gt; mount point mapping</title>
                <link>https://jira.whamcloud.com/browse/LU-680</link>
                <project id="10000" key="LU">Lustre</project>
                    <description>&lt;p&gt;A number of use cases exist where it would be helpful to be able to map between superblock and mount point on clients.&lt;/p&gt;</description>
                <environment></environment>
        <key id="11730">LU-680</key>
            <summary>superblock &lt;-&gt; mount point mapping</summary>
                <type id="4" iconUrl="https://jira.whamcloud.com/secure/viewavatar?size=xsmall&amp;avatarId=11310&amp;avatarType=issuetype">Improvement</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="rhenwood">Richard Henwood</assignee>
                                    <reporter username="rhenwood">Richard Henwood</reporter>
                        <labels>
                    </labels>
                <created>Mon, 12 Sep 2011 12:46:44 +0000</created>
                <updated>Sun, 8 Apr 2012 15:29:37 +0000</updated>
                            <resolved>Tue, 13 Dec 2011 10:27:14 +0000</resolved>
                                                    <fixVersion>Lustre 2.2.0</fixVersion>
                    <fixVersion>Lustre 2.1.2</fixVersion>
                                        <due></due>
                            <votes>0</votes>
                                    <watches>2</watches>
                                                                            <comments>
                            <comment id="20140" author="rhenwood" created="Mon, 12 Sep 2011 12:48:08 +0000"  >&lt;p&gt;Two approaches have been suggested:&lt;/p&gt;

&lt;ol&gt;
	&lt;li&gt;A symlink from the llite proc fs entry for the mounted file system to the mount point.&lt;/li&gt;
	&lt;li&gt;A additional call in lfs.&lt;/li&gt;
&lt;/ol&gt;

</comment>
                            <comment id="20146" author="rhenwood" created="Mon, 12 Sep 2011 16:03:35 +0000"  >&lt;p&gt;By adding an additional call to lfs (say &apos;lfs mount&apos;) it is possible to exploit already existing code (llapi_file_get_lov_uuid). This is my preferred approach. The symlink alternative is considered higher risk and is not considered to be consistent with the /procfs and mount abstractions.&lt;/p&gt;

&lt;p&gt;The proposed solution is to introduce a &apos;mount&apos; command to lfs. &lt;br/&gt;
This would work as follows:&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;[root@rhel6_21 lustre-release]# lfs mount
lustre-ffff88002738bc00 on /mnt/lustre
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;</comment>
                            <comment id="20155" author="rhenwood" created="Mon, 12 Sep 2011 17:52:26 +0000"  >&lt;p&gt;change for review at:&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;http://review.whamcloud.com/1373&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://review.whamcloud.com/1373&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="20171" author="jhammond" created="Tue, 13 Sep 2011 15:20:59 +0000"  >&lt;p&gt;First off &apos;mount&apos; is a terrible name for this command.  I suggest &apos;getname&apos; after the relevant ioctl(), although others have objected to that too.  Second I think the behavior could be better tailored to the use case (associating subdirectories of /proc/fs/lustre/&lt;/p&gt;
{llite,...}
&lt;p&gt;/ with mount points).  I propose the usage:&lt;/p&gt;

&lt;p&gt;lfs getname &lt;span class=&quot;error&quot;&gt;&amp;#91;PATH&amp;#93;&lt;/span&gt;...&lt;/p&gt;

&lt;p&gt;List llite directory names corresponding to the Lustre mount points containing each PATH.  If no PATH arguments are given then list llite directory names corresponding to all currently mounted Lustre filesystems.&lt;/p&gt;

&lt;p&gt;Examples:&lt;/p&gt;

&lt;p&gt;$ lfs getname /share/home/117/jhammond/foo /scratch/117/jhammond/bar&lt;br/&gt;
/share/home/117/jhammond/foo share-ffff8102118ccc00&lt;br/&gt;
/scratch/117/jhammond/bar scratch-ffff81042f2c8800&lt;/p&gt;

&lt;p&gt;$ lfs getname&lt;br/&gt;
/share share-ffff8102118ccc00&lt;br/&gt;
/work work-ffff810427d94c00&lt;br/&gt;
/scratch scratch-ffff81042f2c8800&lt;br/&gt;
/corral corral-ffff810202036400&lt;/p&gt;

&lt;p&gt;Since finding the relevant osc and mdc directories require splitting up fsname and sb address, it may be nicer just to print them separately.&lt;/p&gt;</comment>
                            <comment id="20172" author="rhenwood" created="Tue, 13 Sep 2011 16:01:02 +0000"  >&lt;p&gt;Ok, this makes sense to me. I&apos;m modifying my change to this effect.&lt;/p&gt;</comment>
                            <comment id="24576" author="hudson" created="Tue, 13 Dec 2011 04:47: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/red.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/381/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,server,el5,ofa #381&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-680&quot; title=&quot;superblock &amp;lt;-&amp;gt; mount point mapping&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-680&quot;&gt;&lt;del&gt;LU-680&lt;/del&gt;&lt;/a&gt; lfs: instance &amp;lt;-&amp;gt; mount point mapping from lfs (Revision 8d935e6d3137bc4678ca2f22c1a30d34474cf677)&lt;/p&gt;

&lt;p&gt;     Result = FAILURE&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=8d935e6d3137bc4678ca2f22c1a30d34474cf677&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;8d935e6d3137bc4678ca2f22c1a30d34474cf677&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/doc/lfs.1&lt;/li&gt;
	&lt;li&gt;lustre/utils/lfs.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/file.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/liblustreapi.h&lt;/li&gt;
	&lt;li&gt;lustre/utils/liblustreapi.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="24578" author="hudson" created="Tue, 13 Dec 2011 04:47: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=ofa/381/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,el5,ofa #381&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-680&quot; title=&quot;superblock &amp;lt;-&amp;gt; mount point mapping&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-680&quot;&gt;&lt;del&gt;LU-680&lt;/del&gt;&lt;/a&gt; lfs: instance &amp;lt;-&amp;gt; mount point mapping from lfs (Revision 8d935e6d3137bc4678ca2f22c1a30d34474cf677)&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=8d935e6d3137bc4678ca2f22c1a30d34474cf677&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;8d935e6d3137bc4678ca2f22c1a30d34474cf677&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/include/lustre/liblustreapi.h&lt;/li&gt;
	&lt;li&gt;lustre/doc/lfs.1&lt;/li&gt;
	&lt;li&gt;lustre/utils/liblustreapi.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/file.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/lfs.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="24580" author="hudson" created="Tue, 13 Dec 2011 04:50:20 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/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/381/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,client,el6,inkernel #381&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-680&quot; title=&quot;superblock &amp;lt;-&amp;gt; mount point mapping&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-680&quot;&gt;&lt;del&gt;LU-680&lt;/del&gt;&lt;/a&gt; lfs: instance &amp;lt;-&amp;gt; mount point mapping from lfs (Revision 8d935e6d3137bc4678ca2f22c1a30d34474cf677)&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=8d935e6d3137bc4678ca2f22c1a30d34474cf677&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;8d935e6d3137bc4678ca2f22c1a30d34474cf677&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/llite/file.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/liblustreapi.h&lt;/li&gt;
	&lt;li&gt;lustre/utils/liblustreapi.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/lfs.c&lt;/li&gt;
	&lt;li&gt;lustre/doc/lfs.1&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="24582" author="hudson" created="Tue, 13 Dec 2011 04:51:19 +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/381/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,el6,inkernel #381&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-680&quot; title=&quot;superblock &amp;lt;-&amp;gt; mount point mapping&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-680&quot;&gt;&lt;del&gt;LU-680&lt;/del&gt;&lt;/a&gt; lfs: instance &amp;lt;-&amp;gt; mount point mapping from lfs (Revision 8d935e6d3137bc4678ca2f22c1a30d34474cf677)&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=8d935e6d3137bc4678ca2f22c1a30d34474cf677&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;8d935e6d3137bc4678ca2f22c1a30d34474cf677&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/llite/file.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/liblustreapi.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/lfs.c&lt;/li&gt;
	&lt;li&gt;lustre/doc/lfs.1&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/liblustreapi.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="24584" author="hudson" created="Tue, 13 Dec 2011 04:51:35 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=x86_64,build_type=server,distro=el6,ib_stack=inkernel/381/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,server,el6,inkernel #381&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-680&quot; title=&quot;superblock &amp;lt;-&amp;gt; mount point mapping&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-680&quot;&gt;&lt;del&gt;LU-680&lt;/del&gt;&lt;/a&gt; lfs: instance &amp;lt;-&amp;gt; mount point mapping from lfs (Revision 8d935e6d3137bc4678ca2f22c1a30d34474cf677)&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=8d935e6d3137bc4678ca2f22c1a30d34474cf677&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;8d935e6d3137bc4678ca2f22c1a30d34474cf677&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/utils/liblustreapi.c&lt;/li&gt;
	&lt;li&gt;lustre/doc/lfs.1&lt;/li&gt;
	&lt;li&gt;lustre/utils/lfs.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/file.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/liblustreapi.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="24586" author="hudson" created="Tue, 13 Dec 2011 04:54: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=server,distro=el5,ib_stack=inkernel/381/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,server,el5,inkernel #381&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-680&quot; title=&quot;superblock &amp;lt;-&amp;gt; mount point mapping&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-680&quot;&gt;&lt;del&gt;LU-680&lt;/del&gt;&lt;/a&gt; lfs: instance &amp;lt;-&amp;gt; mount point mapping from lfs (Revision 8d935e6d3137bc4678ca2f22c1a30d34474cf677)&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=8d935e6d3137bc4678ca2f22c1a30d34474cf677&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;8d935e6d3137bc4678ca2f22c1a30d34474cf677&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/utils/lfs.c&lt;/li&gt;
	&lt;li&gt;lustre/doc/lfs.1&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/liblustreapi.h&lt;/li&gt;
	&lt;li&gt;lustre/llite/file.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/liblustreapi.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="24588" author="hudson" created="Tue, 13 Dec 2011 04:56:14 +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/381/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,server,el6,inkernel #381&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-680&quot; title=&quot;superblock &amp;lt;-&amp;gt; mount point mapping&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-680&quot;&gt;&lt;del&gt;LU-680&lt;/del&gt;&lt;/a&gt; lfs: instance &amp;lt;-&amp;gt; mount point mapping from lfs (Revision 8d935e6d3137bc4678ca2f22c1a30d34474cf677)&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=8d935e6d3137bc4678ca2f22c1a30d34474cf677&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;8d935e6d3137bc4678ca2f22c1a30d34474cf677&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/llite/file.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/liblustreapi.h&lt;/li&gt;
	&lt;li&gt;lustre/utils/liblustreapi.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/lfs.c&lt;/li&gt;
	&lt;li&gt;lustre/doc/lfs.1&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="24590" author="hudson" created="Tue, 13 Dec 2011 04:59: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=client,distro=sles11,ib_stack=inkernel/381/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,sles11,inkernel #381&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-680&quot; title=&quot;superblock &amp;lt;-&amp;gt; mount point mapping&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-680&quot;&gt;&lt;del&gt;LU-680&lt;/del&gt;&lt;/a&gt; lfs: instance &amp;lt;-&amp;gt; mount point mapping from lfs (Revision 8d935e6d3137bc4678ca2f22c1a30d34474cf677)&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=8d935e6d3137bc4678ca2f22c1a30d34474cf677&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;8d935e6d3137bc4678ca2f22c1a30d34474cf677&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/llite/file.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/lfs.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/liblustreapi.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/liblustreapi.h&lt;/li&gt;
	&lt;li&gt;lustre/doc/lfs.1&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="24592" author="hudson" created="Tue, 13 Dec 2011 05:00: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=x86_64,build_type=client,distro=ubuntu1004,ib_stack=inkernel/381/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,ubuntu1004,inkernel #381&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-680&quot; title=&quot;superblock &amp;lt;-&amp;gt; mount point mapping&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-680&quot;&gt;&lt;del&gt;LU-680&lt;/del&gt;&lt;/a&gt; lfs: instance &amp;lt;-&amp;gt; mount point mapping from lfs (Revision 8d935e6d3137bc4678ca2f22c1a30d34474cf677)&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=8d935e6d3137bc4678ca2f22c1a30d34474cf677&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;8d935e6d3137bc4678ca2f22c1a30d34474cf677&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/utils/lfs.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/liblustreapi.h&lt;/li&gt;
	&lt;li&gt;lustre/llite/file.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/liblustreapi.c&lt;/li&gt;
	&lt;li&gt;lustre/doc/lfs.1&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="24594" author="hudson" created="Tue, 13 Dec 2011 05:01:02 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=x86_64,build_type=client,distro=el5,ib_stack=inkernel/381/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,el5,inkernel #381&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-680&quot; title=&quot;superblock &amp;lt;-&amp;gt; mount point mapping&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-680&quot;&gt;&lt;del&gt;LU-680&lt;/del&gt;&lt;/a&gt; lfs: instance &amp;lt;-&amp;gt; mount point mapping from lfs (Revision 8d935e6d3137bc4678ca2f22c1a30d34474cf677)&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=8d935e6d3137bc4678ca2f22c1a30d34474cf677&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;8d935e6d3137bc4678ca2f22c1a30d34474cf677&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/include/lustre/liblustreapi.h&lt;/li&gt;
	&lt;li&gt;lustre/doc/lfs.1&lt;/li&gt;
	&lt;li&gt;lustre/llite/file.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/liblustreapi.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/lfs.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="24596" author="hudson" created="Tue, 13 Dec 2011 05:37:15 +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/381/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,client,el5,ofa #381&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-680&quot; title=&quot;superblock &amp;lt;-&amp;gt; mount point mapping&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-680&quot;&gt;&lt;del&gt;LU-680&lt;/del&gt;&lt;/a&gt; lfs: instance &amp;lt;-&amp;gt; mount point mapping from lfs (Revision 8d935e6d3137bc4678ca2f22c1a30d34474cf677)&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=8d935e6d3137bc4678ca2f22c1a30d34474cf677&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;8d935e6d3137bc4678ca2f22c1a30d34474cf677&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/utils/lfs.c&lt;/li&gt;
	&lt;li&gt;lustre/doc/lfs.1&lt;/li&gt;
	&lt;li&gt;lustre/llite/file.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/liblustreapi.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/liblustreapi.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="24598" author="hudson" created="Tue, 13 Dec 2011 05:48: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=i686,build_type=client,distro=el5,ib_stack=inkernel/381/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,client,el5,inkernel #381&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-680&quot; title=&quot;superblock &amp;lt;-&amp;gt; mount point mapping&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-680&quot;&gt;&lt;del&gt;LU-680&lt;/del&gt;&lt;/a&gt; lfs: instance &amp;lt;-&amp;gt; mount point mapping from lfs (Revision 8d935e6d3137bc4678ca2f22c1a30d34474cf677)&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=8d935e6d3137bc4678ca2f22c1a30d34474cf677&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;8d935e6d3137bc4678ca2f22c1a30d34474cf677&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/utils/lfs.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/file.c&lt;/li&gt;
	&lt;li&gt;lustre/doc/lfs.1&lt;/li&gt;
	&lt;li&gt;lustre/utils/liblustreapi.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/liblustreapi.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="24600" author="hudson" created="Tue, 13 Dec 2011 06:01:43 +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/381/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,server,el5,inkernel #381&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-680&quot; title=&quot;superblock &amp;lt;-&amp;gt; mount point mapping&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-680&quot;&gt;&lt;del&gt;LU-680&lt;/del&gt;&lt;/a&gt; lfs: instance &amp;lt;-&amp;gt; mount point mapping from lfs (Revision 8d935e6d3137bc4678ca2f22c1a30d34474cf677)&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=8d935e6d3137bc4678ca2f22c1a30d34474cf677&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;8d935e6d3137bc4678ca2f22c1a30d34474cf677&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/utils/liblustreapi.c&lt;/li&gt;
	&lt;li&gt;lustre/doc/lfs.1&lt;/li&gt;
	&lt;li&gt;lustre/llite/file.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/lfs.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/liblustreapi.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="24602" author="hudson" created="Tue, 13 Dec 2011 06:15: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=server,distro=el5,ib_stack=ofa/381/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,server,el5,ofa #381&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-680&quot; title=&quot;superblock &amp;lt;-&amp;gt; mount point mapping&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-680&quot;&gt;&lt;del&gt;LU-680&lt;/del&gt;&lt;/a&gt; lfs: instance &amp;lt;-&amp;gt; mount point mapping from lfs (Revision 8d935e6d3137bc4678ca2f22c1a30d34474cf677)&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=8d935e6d3137bc4678ca2f22c1a30d34474cf677&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;8d935e6d3137bc4678ca2f22c1a30d34474cf677&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/utils/lfs.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/liblustreapi.h&lt;/li&gt;
	&lt;li&gt;lustre/llite/file.c&lt;/li&gt;
	&lt;li&gt;lustre/doc/lfs.1&lt;/li&gt;
	&lt;li&gt;lustre/utils/liblustreapi.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="24609" author="pjones" created="Tue, 13 Dec 2011 10:27:14 +0000"  >&lt;p&gt;Landed for 2.2&lt;/p&gt;</comment>
                            <comment id="33983" author="hudson" created="Sun, 8 Apr 2012 13:40: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=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-680&quot; title=&quot;superblock &amp;lt;-&amp;gt; mount point mapping&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-680&quot;&gt;&lt;del&gt;LU-680&lt;/del&gt;&lt;/a&gt; lfs: instance &amp;lt;-&amp;gt; mount point mapping from lfs (Revision 3cfc250aef8b02b6536233ca009ebabf57b070b3)&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=3cfc250aef8b02b6536233ca009ebabf57b070b3&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;3cfc250aef8b02b6536233ca009ebabf57b070b3&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/utils/liblustreapi.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/lfs.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/liblustreapi.h&lt;/li&gt;
	&lt;li&gt;lustre/doc/lfs.1&lt;/li&gt;
	&lt;li&gt;lustre/llite/file.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="34006" 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-680&quot; title=&quot;superblock &amp;lt;-&amp;gt; mount point mapping&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-680&quot;&gt;&lt;del&gt;LU-680&lt;/del&gt;&lt;/a&gt; lfs: instance &amp;lt;-&amp;gt; mount point mapping from lfs (Revision 3cfc250aef8b02b6536233ca009ebabf57b070b3)&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=3cfc250aef8b02b6536233ca009ebabf57b070b3&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;3cfc250aef8b02b6536233ca009ebabf57b070b3&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/include/lustre/liblustreapi.h&lt;/li&gt;
	&lt;li&gt;lustre/llite/file.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/liblustreapi.c&lt;/li&gt;
	&lt;li&gt;lustre/doc/lfs.1&lt;/li&gt;
	&lt;li&gt;lustre/utils/lfs.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="34029" author="hudson" created="Sun, 8 Apr 2012 13:44:09 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/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-680&quot; title=&quot;superblock &amp;lt;-&amp;gt; mount point mapping&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-680&quot;&gt;&lt;del&gt;LU-680&lt;/del&gt;&lt;/a&gt; lfs: instance &amp;lt;-&amp;gt; mount point mapping from lfs (Revision 3cfc250aef8b02b6536233ca009ebabf57b070b3)&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=3cfc250aef8b02b6536233ca009ebabf57b070b3&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;3cfc250aef8b02b6536233ca009ebabf57b070b3&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/llite/file.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/lfs.c&lt;/li&gt;
	&lt;li&gt;lustre/doc/lfs.1&lt;/li&gt;
	&lt;li&gt;lustre/utils/liblustreapi.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/liblustreapi.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="34052" 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-680&quot; title=&quot;superblock &amp;lt;-&amp;gt; mount point mapping&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-680&quot;&gt;&lt;del&gt;LU-680&lt;/del&gt;&lt;/a&gt; lfs: instance &amp;lt;-&amp;gt; mount point mapping from lfs (Revision 3cfc250aef8b02b6536233ca009ebabf57b070b3)&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=3cfc250aef8b02b6536233ca009ebabf57b070b3&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;3cfc250aef8b02b6536233ca009ebabf57b070b3&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/utils/liblustreapi.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/liblustreapi.h&lt;/li&gt;
	&lt;li&gt;lustre/doc/lfs.1&lt;/li&gt;
	&lt;li&gt;lustre/llite/file.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/lfs.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="34075" author="hudson" created="Sun, 8 Apr 2012 13:44:51 +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-680&quot; title=&quot;superblock &amp;lt;-&amp;gt; mount point mapping&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-680&quot;&gt;&lt;del&gt;LU-680&lt;/del&gt;&lt;/a&gt; lfs: instance &amp;lt;-&amp;gt; mount point mapping from lfs (Revision 3cfc250aef8b02b6536233ca009ebabf57b070b3)&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=3cfc250aef8b02b6536233ca009ebabf57b070b3&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;3cfc250aef8b02b6536233ca009ebabf57b070b3&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/include/lustre/liblustreapi.h&lt;/li&gt;
	&lt;li&gt;lustre/llite/file.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/liblustreapi.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/lfs.c&lt;/li&gt;
	&lt;li&gt;lustre/doc/lfs.1&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="34098" author="hudson" created="Sun, 8 Apr 2012 13:53: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-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-680&quot; title=&quot;superblock &amp;lt;-&amp;gt; mount point mapping&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-680&quot;&gt;&lt;del&gt;LU-680&lt;/del&gt;&lt;/a&gt; lfs: instance &amp;lt;-&amp;gt; mount point mapping from lfs (Revision 3cfc250aef8b02b6536233ca009ebabf57b070b3)&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=3cfc250aef8b02b6536233ca009ebabf57b070b3&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;3cfc250aef8b02b6536233ca009ebabf57b070b3&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/utils/liblustreapi.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/lfs.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/file.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/liblustreapi.h&lt;/li&gt;
	&lt;li&gt;lustre/doc/lfs.1&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="34121" author="hudson" created="Sun, 8 Apr 2012 13:54:40 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/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-680&quot; title=&quot;superblock &amp;lt;-&amp;gt; mount point mapping&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-680&quot;&gt;&lt;del&gt;LU-680&lt;/del&gt;&lt;/a&gt; lfs: instance &amp;lt;-&amp;gt; mount point mapping from lfs (Revision 3cfc250aef8b02b6536233ca009ebabf57b070b3)&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=3cfc250aef8b02b6536233ca009ebabf57b070b3&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;3cfc250aef8b02b6536233ca009ebabf57b070b3&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/llite/file.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/liblustreapi.h&lt;/li&gt;
	&lt;li&gt;lustre/utils/lfs.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/liblustreapi.c&lt;/li&gt;
	&lt;li&gt;lustre/doc/lfs.1&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="34144" 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-680&quot; title=&quot;superblock &amp;lt;-&amp;gt; mount point mapping&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-680&quot;&gt;&lt;del&gt;LU-680&lt;/del&gt;&lt;/a&gt; lfs: instance &amp;lt;-&amp;gt; mount point mapping from lfs (Revision 3cfc250aef8b02b6536233ca009ebabf57b070b3)&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=3cfc250aef8b02b6536233ca009ebabf57b070b3&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;3cfc250aef8b02b6536233ca009ebabf57b070b3&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/doc/lfs.1&lt;/li&gt;
	&lt;li&gt;lustre/utils/lfs.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/file.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/liblustreapi.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/liblustreapi.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="34167" 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-680&quot; title=&quot;superblock &amp;lt;-&amp;gt; mount point mapping&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-680&quot;&gt;&lt;del&gt;LU-680&lt;/del&gt;&lt;/a&gt; lfs: instance &amp;lt;-&amp;gt; mount point mapping from lfs (Revision 3cfc250aef8b02b6536233ca009ebabf57b070b3)&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=3cfc250aef8b02b6536233ca009ebabf57b070b3&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;3cfc250aef8b02b6536233ca009ebabf57b070b3&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/utils/liblustreapi.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/file.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/lfs.c&lt;/li&gt;
	&lt;li&gt;lustre/doc/lfs.1&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/liblustreapi.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="34190" author="hudson" created="Sun, 8 Apr 2012 14:07: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=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-680&quot; title=&quot;superblock &amp;lt;-&amp;gt; mount point mapping&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-680&quot;&gt;&lt;del&gt;LU-680&lt;/del&gt;&lt;/a&gt; lfs: instance &amp;lt;-&amp;gt; mount point mapping from lfs (Revision 3cfc250aef8b02b6536233ca009ebabf57b070b3)&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=3cfc250aef8b02b6536233ca009ebabf57b070b3&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;3cfc250aef8b02b6536233ca009ebabf57b070b3&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/llite/file.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/liblustreapi.h&lt;/li&gt;
	&lt;li&gt;lustre/doc/lfs.1&lt;/li&gt;
	&lt;li&gt;lustre/utils/lfs.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/liblustreapi.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="34213" author="hudson" created="Sun, 8 Apr 2012 14:13:09 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/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-680&quot; title=&quot;superblock &amp;lt;-&amp;gt; mount point mapping&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-680&quot;&gt;&lt;del&gt;LU-680&lt;/del&gt;&lt;/a&gt; lfs: instance &amp;lt;-&amp;gt; mount point mapping from lfs (Revision 3cfc250aef8b02b6536233ca009ebabf57b070b3)&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=3cfc250aef8b02b6536233ca009ebabf57b070b3&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;3cfc250aef8b02b6536233ca009ebabf57b070b3&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/utils/liblustreapi.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/file.c&lt;/li&gt;
	&lt;li&gt;lustre/doc/lfs.1&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/liblustreapi.h&lt;/li&gt;
	&lt;li&gt;lustre/utils/lfs.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="34236" author="hudson" created="Sun, 8 Apr 2012 14:17:57 +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-680&quot; title=&quot;superblock &amp;lt;-&amp;gt; mount point mapping&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-680&quot;&gt;&lt;del&gt;LU-680&lt;/del&gt;&lt;/a&gt; lfs: instance &amp;lt;-&amp;gt; mount point mapping from lfs (Revision 3cfc250aef8b02b6536233ca009ebabf57b070b3)&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=3cfc250aef8b02b6536233ca009ebabf57b070b3&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;3cfc250aef8b02b6536233ca009ebabf57b070b3&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/doc/lfs.1&lt;/li&gt;
	&lt;li&gt;lustre/llite/file.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/liblustreapi.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/liblustreapi.h&lt;/li&gt;
	&lt;li&gt;lustre/utils/lfs.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="34259" 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-680&quot; title=&quot;superblock &amp;lt;-&amp;gt; mount point mapping&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-680&quot;&gt;&lt;del&gt;LU-680&lt;/del&gt;&lt;/a&gt; lfs: instance &amp;lt;-&amp;gt; mount point mapping from lfs (Revision 3cfc250aef8b02b6536233ca009ebabf57b070b3)&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=3cfc250aef8b02b6536233ca009ebabf57b070b3&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;3cfc250aef8b02b6536233ca009ebabf57b070b3&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/utils/liblustreapi.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/file.c&lt;/li&gt;
	&lt;li&gt;lustre/doc/lfs.1&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/liblustreapi.h&lt;/li&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_10390" key="com.pyxis.greenhopper.jira:gh-lexo-rank">
                        <customfieldname>Rank</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>1|hzv7v3:</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_10090" key="com.pyxis.greenhopper.jira:gh-global-rank">
                        <customfieldname>Rank (Obsolete)</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>4808</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                                                </customfields>
    </item>
</channel>
</rss>