<!-- 
RSS generated by JIRA (9.4.14#940014-sha1:734e6822bbf0d45eff9af51f82432957f73aa32c) at Sat Feb 10 01:13:19 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-1081] LUSTRE_BFL_FID has a conflicting namespace</title>
                <link>https://jira.whamcloud.com/browse/LU-1081</link>
                <project id="10000" key="LU">Lustre</project>
                    <description>&lt;p&gt;The LUSTRE_BFL_FID is being used as a global filesystem rename lock, but the FID sequence is not using a well-defined FID_SEQ_* value.  The current value &quot;3&quot; is in conflict with the FID_SEQ_OST_MDT1 range, but it should more properly be controlled by MDT0.&lt;/p&gt;

&lt;p&gt;Is this value currently (2.1/2.2) used outside of MDT0?  If not, then it should be trivial to change before DNE is released.  Otherwise, this needs to be handled in some manner that does not cause problems in the future.&lt;/p&gt;

&lt;div class=&quot;preformatted panel&quot; style=&quot;border-width: 1px;&quot;&gt;&lt;div class=&quot;preformattedContent panelContent&quot;&gt;
&lt;pre&gt;/* Lustre Big Fs Lock fid. */
const struct lu_fid LUSTRE_BFL_FID = { .f_seq = 0x0000000000000003,
                                       .f_oid = 0x0000000000000001,
                                       .f_ver = 0x0000000000000000 };
EXPORT_SYMBOL(LUSTRE_BFL_FID);

static int mdt_rename_lock(struct mdt_thread_info *info,
                           struct lustre_handle *lh)
{
        ms = mdt_md_site(info-&amp;gt;mti_mdt);
        fid_build_reg_res_name(&amp;amp;LUSTRE_BFL_FID, res_id);
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;Part of the problem is that these FID constants are being declared in a &quot;local&quot; header lustre_fid.h, rather than a global public header like &quot;lustre_idl.h&quot;.  I don&apos;t mind having a separate &quot;public&quot; lustre_fid.h header, as long as it is installed into /usr/include/lustre/lustre_fid.h so that it is accessible to external programs.  That would allow moving all of the FID-related constants out to this header, such as FID_SEQ_* enum, the fid_seq_*() helper functions (which are useful in some user tools like lfsck), etc.&lt;/p&gt;
</description>
                <environment></environment>
        <key id="13133">LU-1081</key>
            <summary>LUSTRE_BFL_FID has a conflicting namespace</summary>
                <type id="1" iconUrl="https://jira.whamcloud.com/secure/viewavatar?size=xsmall&amp;avatarId=11303&amp;avatarType=issuetype">Bug</type>
                                            <priority id="3" iconUrl="https://jira.whamcloud.com/images/icons/priorities/major.svg">Major</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="di.wang">Di Wang</assignee>
                                    <reporter username="adilger">Andreas Dilger</reporter>
                        <labels>
                    </labels>
                <created>Wed, 8 Feb 2012 16:40:46 +0000</created>
                <updated>Thu, 27 Sep 2012 16:33:23 +0000</updated>
                            <resolved>Thu, 5 Apr 2012 15:16:01 +0000</resolved>
                                    <version>Lustre 2.2.0</version>
                                    <fixVersion>Lustre 2.2.0</fixVersion>
                    <fixVersion>Lustre 2.3.0</fixVersion>
                                        <due></due>
                            <votes>0</votes>
                                    <watches>1</watches>
                                                                            <comments>
                            <comment id="29508" author="adilger" created="Tue, 21 Feb 2012 12:51:31 +0000"  >&lt;p&gt;Di can you please comment on whether this constant is used over the network, or only internal to the MDS?&lt;/p&gt;</comment>
                            <comment id="29513" author="di.wang" created="Tue, 21 Feb 2012 13:04:01 +0000"  >&lt;p&gt;Andreas, sorry for late response for this bug. It is only internal to the MDS for current single MDT. Btw: since we will have FID on OST for DNE, it seems the seq between FID_SEQ_OST_MDT1 and FID_SEQ_RSVD should be reserved for other purpose? &lt;/p&gt;</comment>
                            <comment id="29536" author="adilger" created="Wed, 22 Feb 2012 06:24:03 +0000"  >&lt;p&gt;Di, this LUSTRE_BFL_FID FID should be changed before it is made externally visible for DNE.&lt;/p&gt;

&lt;p&gt;I agree it should be possible to reassign FID_SEQ_OST_MDT1.. but I don&apos;t think there is an urgent need to do so, unless you think it is better to keep LUSTRE_BFL_FID as-is?  In any case, this FID definition needs to move into lustre_idl.h where all of the other well-known SEQ/FID values are declared.&lt;/p&gt;</comment>
                            <comment id="29565" author="di.wang" created="Wed, 22 Feb 2012 14:16:10 +0000"  >&lt;blockquote&gt;
&lt;p&gt;Di, this LUSTRE_BFL_FID FID should be changed before it is made externally visible for DNE.&lt;/p&gt;&lt;/blockquote&gt;

&lt;p&gt;Sure, I just created a patch, &lt;a href=&quot;http://review.whamcloud.com/2180&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://review.whamcloud.com/2180&lt;/a&gt;  Please have a look.&lt;/p&gt;</comment>
                            <comment id="31423" author="hudson" created="Sat, 17 Mar 2012 12:52: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=el6,ib_stack=ofa/522/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,el6,ofa #522&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1081&quot; title=&quot;LUSTRE_BFL_FID has a conflicting namespace&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1081&quot;&gt;&lt;del&gt;LU-1081&lt;/del&gt;&lt;/a&gt; fid: define special FID for BFL (Revision 91dbd0b99e4d3fb6fe6a870cbf7297b5a362f05f)&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=91dbd0b99e4d3fb6fe6a870cbf7297b5a362f05f&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;91dbd0b99e4d3fb6fe6a870cbf7297b5a362f05f&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/ptlrpc/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/fid/fid_lib.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/wirecheck.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/lustre_idl.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="31424" author="hudson" created="Sat, 17 Mar 2012 12:52: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-master/./arch=x86_64,build_type=server,distro=el5,ib_stack=inkernel/522/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,server,el5,inkernel #522&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1081&quot; title=&quot;LUSTRE_BFL_FID has a conflicting namespace&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1081&quot;&gt;&lt;del&gt;LU-1081&lt;/del&gt;&lt;/a&gt; fid: define special FID for BFL (Revision 91dbd0b99e4d3fb6fe6a870cbf7297b5a362f05f)&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=91dbd0b99e4d3fb6fe6a870cbf7297b5a362f05f&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;91dbd0b99e4d3fb6fe6a870cbf7297b5a362f05f&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/utils/wirecheck.c&lt;/li&gt;
	&lt;li&gt;lustre/fid/fid_lib.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/lustre_idl.h&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/wiretest.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="31425" author="hudson" created="Sat, 17 Mar 2012 12: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-master/./arch=i686,build_type=client,distro=el6,ib_stack=inkernel/522/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,client,el6,inkernel #522&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1081&quot; title=&quot;LUSTRE_BFL_FID has a conflicting namespace&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1081&quot;&gt;&lt;del&gt;LU-1081&lt;/del&gt;&lt;/a&gt; fid: define special FID for BFL (Revision 91dbd0b99e4d3fb6fe6a870cbf7297b5a362f05f)&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=91dbd0b99e4d3fb6fe6a870cbf7297b5a362f05f&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;91dbd0b99e4d3fb6fe6a870cbf7297b5a362f05f&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/utils/wirecheck.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/lustre_idl.h&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/fid/fid_lib.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/wiretest.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="31426" author="hudson" created="Sat, 17 Mar 2012 12:54: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-master/./arch=x86_64,build_type=server,distro=el6,ib_stack=ofa/522/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,server,el6,ofa #522&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1081&quot; title=&quot;LUSTRE_BFL_FID has a conflicting namespace&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1081&quot;&gt;&lt;del&gt;LU-1081&lt;/del&gt;&lt;/a&gt; fid: define special FID for BFL (Revision 91dbd0b99e4d3fb6fe6a870cbf7297b5a362f05f)&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=91dbd0b99e4d3fb6fe6a870cbf7297b5a362f05f&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;91dbd0b99e4d3fb6fe6a870cbf7297b5a362f05f&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/utils/wirecheck.c&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/lustre_idl.h&lt;/li&gt;
	&lt;li&gt;lustre/fid/fid_lib.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/wiretest.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="31427" author="hudson" created="Sat, 17 Mar 2012 12:56:46 +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/522/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,server,el6,inkernel #522&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1081&quot; title=&quot;LUSTRE_BFL_FID has a conflicting namespace&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1081&quot;&gt;&lt;del&gt;LU-1081&lt;/del&gt;&lt;/a&gt; fid: define special FID for BFL (Revision 91dbd0b99e4d3fb6fe6a870cbf7297b5a362f05f)&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=91dbd0b99e4d3fb6fe6a870cbf7297b5a362f05f&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;91dbd0b99e4d3fb6fe6a870cbf7297b5a362f05f&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/utils/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/fid/fid_lib.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/wirecheck.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/lustre_idl.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="31428" author="hudson" created="Sat, 17 Mar 2012 12:58:29 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=x86_64,build_type=client,distro=el5,ib_stack=inkernel/522/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,el5,inkernel #522&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1081&quot; title=&quot;LUSTRE_BFL_FID has a conflicting namespace&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1081&quot;&gt;&lt;del&gt;LU-1081&lt;/del&gt;&lt;/a&gt; fid: define special FID for BFL (Revision 91dbd0b99e4d3fb6fe6a870cbf7297b5a362f05f)&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=91dbd0b99e4d3fb6fe6a870cbf7297b5a362f05f&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;91dbd0b99e4d3fb6fe6a870cbf7297b5a362f05f&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/utils/wirecheck.c&lt;/li&gt;
	&lt;li&gt;lustre/fid/fid_lib.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/lustre_idl.h&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/wiretest.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="31429" author="hudson" created="Sat, 17 Mar 2012 13:01:22 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=x86_64,build_type=server,distro=el6,ib_stack=inkernel/522/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,server,el6,inkernel #522&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1081&quot; title=&quot;LUSTRE_BFL_FID has a conflicting namespace&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1081&quot;&gt;&lt;del&gt;LU-1081&lt;/del&gt;&lt;/a&gt; fid: define special FID for BFL (Revision 91dbd0b99e4d3fb6fe6a870cbf7297b5a362f05f)&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=91dbd0b99e4d3fb6fe6a870cbf7297b5a362f05f&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;91dbd0b99e4d3fb6fe6a870cbf7297b5a362f05f&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/utils/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/wirecheck.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/lustre_idl.h&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/fid/fid_lib.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="31430" author="hudson" created="Sat, 17 Mar 2012 13:01: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-master/./arch=x86_64,build_type=client,distro=el6,ib_stack=inkernel/522/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,el6,inkernel #522&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1081&quot; title=&quot;LUSTRE_BFL_FID has a conflicting namespace&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1081&quot;&gt;&lt;del&gt;LU-1081&lt;/del&gt;&lt;/a&gt; fid: define special FID for BFL (Revision 91dbd0b99e4d3fb6fe6a870cbf7297b5a362f05f)&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=91dbd0b99e4d3fb6fe6a870cbf7297b5a362f05f&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;91dbd0b99e4d3fb6fe6a870cbf7297b5a362f05f&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/include/lustre/lustre_idl.h&lt;/li&gt;
	&lt;li&gt;lustre/fid/fid_lib.c&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/wirecheck.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="31431" author="hudson" created="Sat, 17 Mar 2012 13:04:10 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=x86_64,build_type=client,distro=el5,ib_stack=ofa/522/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,el5,ofa #522&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1081&quot; title=&quot;LUSTRE_BFL_FID has a conflicting namespace&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1081&quot;&gt;&lt;del&gt;LU-1081&lt;/del&gt;&lt;/a&gt; fid: define special FID for BFL (Revision 91dbd0b99e4d3fb6fe6a870cbf7297b5a362f05f)&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=91dbd0b99e4d3fb6fe6a870cbf7297b5a362f05f&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;91dbd0b99e4d3fb6fe6a870cbf7297b5a362f05f&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/ptlrpc/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/wirecheck.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/lustre_idl.h&lt;/li&gt;
	&lt;li&gt;lustre/fid/fid_lib.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/wiretest.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="31432" author="hudson" created="Sat, 17 Mar 2012 13:04: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=el6,ib_stack=ofa/522/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,server,el6,ofa #522&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1081&quot; title=&quot;LUSTRE_BFL_FID has a conflicting namespace&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1081&quot;&gt;&lt;del&gt;LU-1081&lt;/del&gt;&lt;/a&gt; fid: define special FID for BFL (Revision 91dbd0b99e4d3fb6fe6a870cbf7297b5a362f05f)&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=91dbd0b99e4d3fb6fe6a870cbf7297b5a362f05f&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;91dbd0b99e4d3fb6fe6a870cbf7297b5a362f05f&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/utils/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/fid/fid_lib.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/lustre_idl.h&lt;/li&gt;
	&lt;li&gt;lustre/utils/wirecheck.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="31433" author="hudson" created="Sat, 17 Mar 2012 13:05: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-master/./arch=i686,build_type=client,distro=el6,ib_stack=ofa/522/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,client,el6,ofa #522&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1081&quot; title=&quot;LUSTRE_BFL_FID has a conflicting namespace&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1081&quot;&gt;&lt;del&gt;LU-1081&lt;/del&gt;&lt;/a&gt; fid: define special FID for BFL (Revision 91dbd0b99e4d3fb6fe6a870cbf7297b5a362f05f)&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=91dbd0b99e4d3fb6fe6a870cbf7297b5a362f05f&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;91dbd0b99e4d3fb6fe6a870cbf7297b5a362f05f&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/include/lustre/lustre_idl.h&lt;/li&gt;
	&lt;li&gt;lustre/fid/fid_lib.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/wirecheck.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="31434" author="hudson" created="Sat, 17 Mar 2012 13:05: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-master/./arch=x86_64,build_type=client,distro=ubuntu1004,ib_stack=inkernel/522/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,ubuntu1004,inkernel #522&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1081&quot; title=&quot;LUSTRE_BFL_FID has a conflicting namespace&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1081&quot;&gt;&lt;del&gt;LU-1081&lt;/del&gt;&lt;/a&gt; fid: define special FID for BFL (Revision 91dbd0b99e4d3fb6fe6a870cbf7297b5a362f05f)&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=91dbd0b99e4d3fb6fe6a870cbf7297b5a362f05f&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;91dbd0b99e4d3fb6fe6a870cbf7297b5a362f05f&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/utils/wirecheck.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/fid/fid_lib.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/lustre_idl.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="31435" author="hudson" created="Sat, 17 Mar 2012 13:07:42 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=x86_64,build_type=client,distro=sles11,ib_stack=inkernel/522/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,sles11,inkernel #522&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1081&quot; title=&quot;LUSTRE_BFL_FID has a conflicting namespace&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1081&quot;&gt;&lt;del&gt;LU-1081&lt;/del&gt;&lt;/a&gt; fid: define special FID for BFL (Revision 91dbd0b99e4d3fb6fe6a870cbf7297b5a362f05f)&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=91dbd0b99e4d3fb6fe6a870cbf7297b5a362f05f&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;91dbd0b99e4d3fb6fe6a870cbf7297b5a362f05f&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/fid/fid_lib.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/lustre_idl.h&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/wirecheck.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="31436" author="hudson" created="Sat, 17 Mar 2012 13:08:04 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-b2_2/./arch=x86_64,build_type=client,distro=el6,ib_stack=inkernel/12/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-b2_2 &#187; x86_64,client,el6,inkernel #12&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1081&quot; title=&quot;LUSTRE_BFL_FID has a conflicting namespace&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1081&quot;&gt;&lt;del&gt;LU-1081&lt;/del&gt;&lt;/a&gt; fid: define special FID for BFL (Revision 9ba34cb4fd666ffabd070e50540f09dd5412e85e)&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_2&amp;amp;a=commit&amp;amp;h=9ba34cb4fd666ffabd070e50540f09dd5412e85e&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;9ba34cb4fd666ffabd070e50540f09dd5412e85e&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/utils/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/fid/fid_lib.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/lustre_idl.h&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/wirecheck.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="31437" author="hudson" created="Sat, 17 Mar 2012 13:09: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=i686,build_type=server,distro=el5,ib_stack=ofa/522/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,server,el5,ofa #522&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1081&quot; title=&quot;LUSTRE_BFL_FID has a conflicting namespace&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1081&quot;&gt;&lt;del&gt;LU-1081&lt;/del&gt;&lt;/a&gt; fid: define special FID for BFL (Revision 91dbd0b99e4d3fb6fe6a870cbf7297b5a362f05f)&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=91dbd0b99e4d3fb6fe6a870cbf7297b5a362f05f&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;91dbd0b99e4d3fb6fe6a870cbf7297b5a362f05f&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/utils/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/fid/fid_lib.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/wirecheck.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/lustre_idl.h&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/wiretest.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="31438" author="hudson" created="Sat, 17 Mar 2012 13:09:58 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=x86_64,build_type=server,distro=el5,ib_stack=ofa/522/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,server,el5,ofa #522&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1081&quot; title=&quot;LUSTRE_BFL_FID has a conflicting namespace&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1081&quot;&gt;&lt;del&gt;LU-1081&lt;/del&gt;&lt;/a&gt; fid: define special FID for BFL (Revision 91dbd0b99e4d3fb6fe6a870cbf7297b5a362f05f)&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=91dbd0b99e4d3fb6fe6a870cbf7297b5a362f05f&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;91dbd0b99e4d3fb6fe6a870cbf7297b5a362f05f&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/utils/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/fid/fid_lib.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/lustre_idl.h&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/wirecheck.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="31439" author="hudson" created="Sat, 17 Mar 2012 13:10: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=client,distro=el5,ib_stack=ofa/522/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,client,el5,ofa #522&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1081&quot; title=&quot;LUSTRE_BFL_FID has a conflicting namespace&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1081&quot;&gt;&lt;del&gt;LU-1081&lt;/del&gt;&lt;/a&gt; fid: define special FID for BFL (Revision 91dbd0b99e4d3fb6fe6a870cbf7297b5a362f05f)&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=91dbd0b99e4d3fb6fe6a870cbf7297b5a362f05f&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;91dbd0b99e4d3fb6fe6a870cbf7297b5a362f05f&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/include/lustre/lustre_idl.h&lt;/li&gt;
	&lt;li&gt;lustre/utils/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/wirecheck.c&lt;/li&gt;
	&lt;li&gt;lustre/fid/fid_lib.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="31440" author="hudson" created="Sat, 17 Mar 2012 13:11:06 +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_2/./arch=x86_64,build_type=server,distro=el6,ib_stack=inkernel/12/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-b2_2 &#187; x86_64,server,el6,inkernel #12&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1081&quot; title=&quot;LUSTRE_BFL_FID has a conflicting namespace&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1081&quot;&gt;&lt;del&gt;LU-1081&lt;/del&gt;&lt;/a&gt; fid: define special FID for BFL (Revision 9ba34cb4fd666ffabd070e50540f09dd5412e85e)&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_2&amp;amp;a=commit&amp;amp;h=9ba34cb4fd666ffabd070e50540f09dd5412e85e&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;9ba34cb4fd666ffabd070e50540f09dd5412e85e&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/utils/wirecheck.c&lt;/li&gt;
	&lt;li&gt;lustre/fid/fid_lib.c&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/lustre_idl.h&lt;/li&gt;
	&lt;li&gt;lustre/utils/wiretest.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="31441" author="hudson" created="Sat, 17 Mar 2012 13:12:34 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-b2_2/./arch=x86_64,build_type=server,distro=el5,ib_stack=ofa/12/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-b2_2 &#187; x86_64,server,el5,ofa #12&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1081&quot; title=&quot;LUSTRE_BFL_FID has a conflicting namespace&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1081&quot;&gt;&lt;del&gt;LU-1081&lt;/del&gt;&lt;/a&gt; fid: define special FID for BFL (Revision 9ba34cb4fd666ffabd070e50540f09dd5412e85e)&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_2&amp;amp;a=commit&amp;amp;h=9ba34cb4fd666ffabd070e50540f09dd5412e85e&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;9ba34cb4fd666ffabd070e50540f09dd5412e85e&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/utils/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/wirecheck.c&lt;/li&gt;
	&lt;li&gt;lustre/fid/fid_lib.c&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/lustre_idl.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="31442" author="hudson" created="Sat, 17 Mar 2012 13:13:46 +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_2/./arch=i686,build_type=client,distro=el6,ib_stack=ofa/12/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-b2_2 &#187; i686,client,el6,ofa #12&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1081&quot; title=&quot;LUSTRE_BFL_FID has a conflicting namespace&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1081&quot;&gt;&lt;del&gt;LU-1081&lt;/del&gt;&lt;/a&gt; fid: define special FID for BFL (Revision 9ba34cb4fd666ffabd070e50540f09dd5412e85e)&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_2&amp;amp;a=commit&amp;amp;h=9ba34cb4fd666ffabd070e50540f09dd5412e85e&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;9ba34cb4fd666ffabd070e50540f09dd5412e85e&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/ptlrpc/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/fid/fid_lib.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/lustre_idl.h&lt;/li&gt;
	&lt;li&gt;lustre/utils/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/wirecheck.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="31443" author="hudson" created="Sat, 17 Mar 2012 13:14: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-b2_2/./arch=x86_64,build_type=client,distro=el6,ib_stack=ofa/12/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-b2_2 &#187; x86_64,client,el6,ofa #12&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1081&quot; title=&quot;LUSTRE_BFL_FID has a conflicting namespace&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1081&quot;&gt;&lt;del&gt;LU-1081&lt;/del&gt;&lt;/a&gt; fid: define special FID for BFL (Revision 9ba34cb4fd666ffabd070e50540f09dd5412e85e)&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_2&amp;amp;a=commit&amp;amp;h=9ba34cb4fd666ffabd070e50540f09dd5412e85e&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;9ba34cb4fd666ffabd070e50540f09dd5412e85e&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/utils/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/lustre_idl.h&lt;/li&gt;
	&lt;li&gt;lustre/fid/fid_lib.c&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/wirecheck.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="31444" author="hudson" created="Sat, 17 Mar 2012 13:14:56 +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_2/./arch=i686,build_type=server,distro=el6,ib_stack=ofa/12/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-b2_2 &#187; i686,server,el6,ofa #12&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1081&quot; title=&quot;LUSTRE_BFL_FID has a conflicting namespace&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1081&quot;&gt;&lt;del&gt;LU-1081&lt;/del&gt;&lt;/a&gt; fid: define special FID for BFL (Revision 9ba34cb4fd666ffabd070e50540f09dd5412e85e)&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_2&amp;amp;a=commit&amp;amp;h=9ba34cb4fd666ffabd070e50540f09dd5412e85e&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;9ba34cb4fd666ffabd070e50540f09dd5412e85e&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/ptlrpc/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/lustre_idl.h&lt;/li&gt;
	&lt;li&gt;lustre/utils/wirecheck.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/fid/fid_lib.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="31445" author="hudson" created="Sat, 17 Mar 2012 13:19: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-b2_2/./arch=x86_64,build_type=server,distro=el5,ib_stack=inkernel/12/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-b2_2 &#187; x86_64,server,el5,inkernel #12&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1081&quot; title=&quot;LUSTRE_BFL_FID has a conflicting namespace&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1081&quot;&gt;&lt;del&gt;LU-1081&lt;/del&gt;&lt;/a&gt; fid: define special FID for BFL (Revision 9ba34cb4fd666ffabd070e50540f09dd5412e85e)&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_2&amp;amp;a=commit&amp;amp;h=9ba34cb4fd666ffabd070e50540f09dd5412e85e&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;9ba34cb4fd666ffabd070e50540f09dd5412e85e&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/include/lustre/lustre_idl.h&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/wirecheck.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/fid/fid_lib.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="31446" author="hudson" created="Sat, 17 Mar 2012 13:22: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-b2_2/./arch=i686,build_type=client,distro=el6,ib_stack=inkernel/12/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-b2_2 &#187; i686,client,el6,inkernel #12&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1081&quot; title=&quot;LUSTRE_BFL_FID has a conflicting namespace&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1081&quot;&gt;&lt;del&gt;LU-1081&lt;/del&gt;&lt;/a&gt; fid: define special FID for BFL (Revision 9ba34cb4fd666ffabd070e50540f09dd5412e85e)&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_2&amp;amp;a=commit&amp;amp;h=9ba34cb4fd666ffabd070e50540f09dd5412e85e&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;9ba34cb4fd666ffabd070e50540f09dd5412e85e&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/utils/wirecheck.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/lustre_idl.h&lt;/li&gt;
	&lt;li&gt;lustre/utils/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/fid/fid_lib.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="31447" author="hudson" created="Sat, 17 Mar 2012 13:24: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-b2_2/./arch=x86_64,build_type=client,distro=sles11,ib_stack=inkernel/12/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-b2_2 &#187; x86_64,client,sles11,inkernel #12&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1081&quot; title=&quot;LUSTRE_BFL_FID has a conflicting namespace&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1081&quot;&gt;&lt;del&gt;LU-1081&lt;/del&gt;&lt;/a&gt; fid: define special FID for BFL (Revision 9ba34cb4fd666ffabd070e50540f09dd5412e85e)&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_2&amp;amp;a=commit&amp;amp;h=9ba34cb4fd666ffabd070e50540f09dd5412e85e&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;9ba34cb4fd666ffabd070e50540f09dd5412e85e&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/include/lustre/lustre_idl.h&lt;/li&gt;
	&lt;li&gt;lustre/utils/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/fid/fid_lib.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/wirecheck.c&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/wiretest.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="31448" author="hudson" created="Sat, 17 Mar 2012 13:24:33 +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_2/./arch=x86_64,build_type=server,distro=el6,ib_stack=ofa/12/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-b2_2 &#187; x86_64,server,el6,ofa #12&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1081&quot; title=&quot;LUSTRE_BFL_FID has a conflicting namespace&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1081&quot;&gt;&lt;del&gt;LU-1081&lt;/del&gt;&lt;/a&gt; fid: define special FID for BFL (Revision 9ba34cb4fd666ffabd070e50540f09dd5412e85e)&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_2&amp;amp;a=commit&amp;amp;h=9ba34cb4fd666ffabd070e50540f09dd5412e85e&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;9ba34cb4fd666ffabd070e50540f09dd5412e85e&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/include/lustre/lustre_idl.h&lt;/li&gt;
	&lt;li&gt;lustre/utils/wirecheck.c&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/fid/fid_lib.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/wiretest.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="31449" author="hudson" created="Sat, 17 Mar 2012 13:24: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-b2_2/./arch=x86_64,build_type=client,distro=ubuntu1004,ib_stack=inkernel/12/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-b2_2 &#187; x86_64,client,ubuntu1004,inkernel #12&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1081&quot; title=&quot;LUSTRE_BFL_FID has a conflicting namespace&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1081&quot;&gt;&lt;del&gt;LU-1081&lt;/del&gt;&lt;/a&gt; fid: define special FID for BFL (Revision 9ba34cb4fd666ffabd070e50540f09dd5412e85e)&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_2&amp;amp;a=commit&amp;amp;h=9ba34cb4fd666ffabd070e50540f09dd5412e85e&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;9ba34cb4fd666ffabd070e50540f09dd5412e85e&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/include/lustre/lustre_idl.h&lt;/li&gt;
	&lt;li&gt;lustre/fid/fid_lib.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/wirecheck.c&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/wiretest.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="31450" author="hudson" created="Sat, 17 Mar 2012 13:25: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-b2_2/./arch=i686,build_type=server,distro=el6,ib_stack=inkernel/12/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-b2_2 &#187; i686,server,el6,inkernel #12&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1081&quot; title=&quot;LUSTRE_BFL_FID has a conflicting namespace&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1081&quot;&gt;&lt;del&gt;LU-1081&lt;/del&gt;&lt;/a&gt; fid: define special FID for BFL (Revision 9ba34cb4fd666ffabd070e50540f09dd5412e85e)&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_2&amp;amp;a=commit&amp;amp;h=9ba34cb4fd666ffabd070e50540f09dd5412e85e&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;9ba34cb4fd666ffabd070e50540f09dd5412e85e&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/include/lustre/lustre_idl.h&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/wirecheck.c&lt;/li&gt;
	&lt;li&gt;lustre/fid/fid_lib.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/wiretest.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="31452" author="hudson" created="Sat, 17 Mar 2012 13:25:49 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-b2_2/./arch=x86_64,build_type=client,distro=el5,ib_stack=ofa/12/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-b2_2 &#187; x86_64,client,el5,ofa #12&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1081&quot; title=&quot;LUSTRE_BFL_FID has a conflicting namespace&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1081&quot;&gt;&lt;del&gt;LU-1081&lt;/del&gt;&lt;/a&gt; fid: define special FID for BFL (Revision 9ba34cb4fd666ffabd070e50540f09dd5412e85e)&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_2&amp;amp;a=commit&amp;amp;h=9ba34cb4fd666ffabd070e50540f09dd5412e85e&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;9ba34cb4fd666ffabd070e50540f09dd5412e85e&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/include/lustre/lustre_idl.h&lt;/li&gt;
	&lt;li&gt;lustre/fid/fid_lib.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/wirecheck.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="31453" author="hudson" created="Sat, 17 Mar 2012 13:26:33 +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_2/./arch=x86_64,build_type=client,distro=el5,ib_stack=inkernel/12/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-b2_2 &#187; x86_64,client,el5,inkernel #12&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1081&quot; title=&quot;LUSTRE_BFL_FID has a conflicting namespace&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1081&quot;&gt;&lt;del&gt;LU-1081&lt;/del&gt;&lt;/a&gt; fid: define special FID for BFL (Revision 9ba34cb4fd666ffabd070e50540f09dd5412e85e)&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_2&amp;amp;a=commit&amp;amp;h=9ba34cb4fd666ffabd070e50540f09dd5412e85e&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;9ba34cb4fd666ffabd070e50540f09dd5412e85e&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/ptlrpc/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/lustre_idl.h&lt;/li&gt;
	&lt;li&gt;lustre/utils/wirecheck.c&lt;/li&gt;
	&lt;li&gt;lustre/fid/fid_lib.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="31454" author="hudson" created="Sat, 17 Mar 2012 13:28: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=i686,build_type=client,distro=el5,ib_stack=inkernel/522/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,client,el5,inkernel #522&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1081&quot; title=&quot;LUSTRE_BFL_FID has a conflicting namespace&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1081&quot;&gt;&lt;del&gt;LU-1081&lt;/del&gt;&lt;/a&gt; fid: define special FID for BFL (Revision 91dbd0b99e4d3fb6fe6a870cbf7297b5a362f05f)&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=91dbd0b99e4d3fb6fe6a870cbf7297b5a362f05f&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;91dbd0b99e4d3fb6fe6a870cbf7297b5a362f05f&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/utils/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/wirecheck.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/lustre_idl.h&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/fid/fid_lib.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="31455" author="hudson" created="Sat, 17 Mar 2012 13:36:28 +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/522/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,server,el5,inkernel #522&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1081&quot; title=&quot;LUSTRE_BFL_FID has a conflicting namespace&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1081&quot;&gt;&lt;del&gt;LU-1081&lt;/del&gt;&lt;/a&gt; fid: define special FID for BFL (Revision 91dbd0b99e4d3fb6fe6a870cbf7297b5a362f05f)&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=91dbd0b99e4d3fb6fe6a870cbf7297b5a362f05f&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;91dbd0b99e4d3fb6fe6a870cbf7297b5a362f05f&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/utils/wirecheck.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/lustre_idl.h&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/fid/fid_lib.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="31456" author="hudson" created="Sat, 17 Mar 2012 13:47: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-b2_2/./arch=i686,build_type=client,distro=el5,ib_stack=inkernel/12/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-b2_2 &#187; i686,client,el5,inkernel #12&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1081&quot; title=&quot;LUSTRE_BFL_FID has a conflicting namespace&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1081&quot;&gt;&lt;del&gt;LU-1081&lt;/del&gt;&lt;/a&gt; fid: define special FID for BFL (Revision 9ba34cb4fd666ffabd070e50540f09dd5412e85e)&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_2&amp;amp;a=commit&amp;amp;h=9ba34cb4fd666ffabd070e50540f09dd5412e85e&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;9ba34cb4fd666ffabd070e50540f09dd5412e85e&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/utils/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/wirecheck.c&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/fid/fid_lib.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/lustre_idl.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="31461" author="hudson" created="Sat, 17 Mar 2012 17:20: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-b2_2/./arch=i686,build_type=server,distro=el5,ib_stack=inkernel/13/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-b2_2 &#187; i686,server,el5,inkernel #13&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1081&quot; title=&quot;LUSTRE_BFL_FID has a conflicting namespace&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1081&quot;&gt;&lt;del&gt;LU-1081&lt;/del&gt;&lt;/a&gt; fid: define special FID for BFL (Revision 9ba34cb4fd666ffabd070e50540f09dd5412e85e)&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_2&amp;amp;a=commit&amp;amp;h=9ba34cb4fd666ffabd070e50540f09dd5412e85e&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;9ba34cb4fd666ffabd070e50540f09dd5412e85e&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/ptlrpc/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/wirecheck.c&lt;/li&gt;
	&lt;li&gt;lustre/fid/fid_lib.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/lustre_idl.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="33560" author="adilger" created="Thu, 5 Apr 2012 15:16:01 +0000"  >&lt;p&gt;This landed for 2.2.0, I think nothing left to be done here.&lt;/p&gt;</comment>
                            <comment id="36068" author="hudson" created="Wed, 2 May 2012 14:53:00 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-dev/./arch=x86_64,build_type=client,distro=el5,ib_stack=inkernel/340/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-dev &#187; x86_64,client,el5,inkernel #340&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1081&quot; title=&quot;LUSTRE_BFL_FID has a conflicting namespace&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1081&quot;&gt;&lt;del&gt;LU-1081&lt;/del&gt;&lt;/a&gt; fid: define special FID for BFL (Revision 91dbd0b99e4d3fb6fe6a870cbf7297b5a362f05f)&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-dev.git;a=shortlog;h=refs/heads/$GIT_BRANCH&amp;amp;a=commit&amp;amp;h=91dbd0b99e4d3fb6fe6a870cbf7297b5a362f05f&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;91dbd0b99e4d3fb6fe6a870cbf7297b5a362f05f&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/utils/wirecheck.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/lustre_idl.h&lt;/li&gt;
	&lt;li&gt;lustre/fid/fid_lib.c&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/wiretest.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="36365" author="hudson" created="Wed, 2 May 2012 14:54: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-dev/./arch=i686,build_type=client,distro=el6,ib_stack=inkernel/340/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-dev &#187; i686,client,el6,inkernel #340&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1081&quot; title=&quot;LUSTRE_BFL_FID has a conflicting namespace&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1081&quot;&gt;&lt;del&gt;LU-1081&lt;/del&gt;&lt;/a&gt; fid: define special FID for BFL (Revision 91dbd0b99e4d3fb6fe6a870cbf7297b5a362f05f)&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-dev.git;a=shortlog;h=refs/heads/$GIT_BRANCH&amp;amp;a=commit&amp;amp;h=91dbd0b99e4d3fb6fe6a870cbf7297b5a362f05f&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;91dbd0b99e4d3fb6fe6a870cbf7297b5a362f05f&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/ptlrpc/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/lustre_idl.h&lt;/li&gt;
	&lt;li&gt;lustre/fid/fid_lib.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/wirecheck.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="36662" author="hudson" created="Wed, 2 May 2012 14:58:11 +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-dev/./arch=i686,build_type=server,distro=el5,ib_stack=inkernel/340/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-dev &#187; i686,server,el5,inkernel #340&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1081&quot; title=&quot;LUSTRE_BFL_FID has a conflicting namespace&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1081&quot;&gt;&lt;del&gt;LU-1081&lt;/del&gt;&lt;/a&gt; fid: define special FID for BFL (Revision 91dbd0b99e4d3fb6fe6a870cbf7297b5a362f05f)&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-dev.git;a=shortlog;h=refs/heads/$GIT_BRANCH&amp;amp;a=commit&amp;amp;h=91dbd0b99e4d3fb6fe6a870cbf7297b5a362f05f&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;91dbd0b99e4d3fb6fe6a870cbf7297b5a362f05f&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/include/lustre/lustre_idl.h&lt;/li&gt;
	&lt;li&gt;lustre/utils/wirecheck.c&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/fid/fid_lib.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="36960" author="hudson" created="Wed, 2 May 2012 15:13: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-dev/./arch=x86_64,build_type=server,distro=el6,ib_stack=inkernel/340/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-dev &#187; x86_64,server,el6,inkernel #340&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1081&quot; title=&quot;LUSTRE_BFL_FID has a conflicting namespace&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1081&quot;&gt;&lt;del&gt;LU-1081&lt;/del&gt;&lt;/a&gt; fid: define special FID for BFL (Revision 91dbd0b99e4d3fb6fe6a870cbf7297b5a362f05f)&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-dev.git;a=shortlog;h=refs/heads/$GIT_BRANCH&amp;amp;a=commit&amp;amp;h=91dbd0b99e4d3fb6fe6a870cbf7297b5a362f05f&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;91dbd0b99e4d3fb6fe6a870cbf7297b5a362f05f&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/utils/wirecheck.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/lustre_idl.h&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/fid/fid_lib.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="37257" author="hudson" created="Wed, 2 May 2012 15:14: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-dev/./arch=i686,build_type=client,distro=el5,ib_stack=inkernel/340/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-dev &#187; i686,client,el5,inkernel #340&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1081&quot; title=&quot;LUSTRE_BFL_FID has a conflicting namespace&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1081&quot;&gt;&lt;del&gt;LU-1081&lt;/del&gt;&lt;/a&gt; fid: define special FID for BFL (Revision 91dbd0b99e4d3fb6fe6a870cbf7297b5a362f05f)&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-dev.git;a=shortlog;h=refs/heads/$GIT_BRANCH&amp;amp;a=commit&amp;amp;h=91dbd0b99e4d3fb6fe6a870cbf7297b5a362f05f&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;91dbd0b99e4d3fb6fe6a870cbf7297b5a362f05f&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/utils/wirecheck.c&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/lustre_idl.h&lt;/li&gt;
	&lt;li&gt;lustre/utils/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/fid/fid_lib.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="37555" author="hudson" created="Wed, 2 May 2012 15:19:37 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-dev/./arch=x86_64,build_type=server,distro=el5,ib_stack=inkernel/340/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-dev &#187; x86_64,server,el5,inkernel #340&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1081&quot; title=&quot;LUSTRE_BFL_FID has a conflicting namespace&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1081&quot;&gt;&lt;del&gt;LU-1081&lt;/del&gt;&lt;/a&gt; fid: define special FID for BFL (Revision 91dbd0b99e4d3fb6fe6a870cbf7297b5a362f05f)&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-dev.git;a=shortlog;h=refs/heads/$GIT_BRANCH&amp;amp;a=commit&amp;amp;h=91dbd0b99e4d3fb6fe6a870cbf7297b5a362f05f&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;91dbd0b99e4d3fb6fe6a870cbf7297b5a362f05f&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/utils/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/lustre_idl.h&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/fid/fid_lib.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/wirecheck.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="37852" author="hudson" created="Wed, 2 May 2012 15:37:24 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-dev/./arch=x86_64,build_type=client,distro=el6,ib_stack=inkernel/340/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-dev &#187; x86_64,client,el6,inkernel #340&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1081&quot; title=&quot;LUSTRE_BFL_FID has a conflicting namespace&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1081&quot;&gt;&lt;del&gt;LU-1081&lt;/del&gt;&lt;/a&gt; fid: define special FID for BFL (Revision 91dbd0b99e4d3fb6fe6a870cbf7297b5a362f05f)&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-dev.git;a=shortlog;h=refs/heads/$GIT_BRANCH&amp;amp;a=commit&amp;amp;h=91dbd0b99e4d3fb6fe6a870cbf7297b5a362f05f&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;91dbd0b99e4d3fb6fe6a870cbf7297b5a362f05f&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/include/lustre/lustre_idl.h&lt;/li&gt;
	&lt;li&gt;lustre/utils/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/fid/fid_lib.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/wirecheck.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|hzv73r:</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_10090" key="com.pyxis.greenhopper.jira:gh-global-rank">
                        <customfieldname>Rank (Obsolete)</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>4685</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                            <customfield id="customfield_10002" key="com.atlassian.jira.plugin.system.customfieldtypes:float">
                        <customfieldname>Story Points</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>2.0</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                        </customfields>
    </item>
</channel>
</rss>