<!-- 
RSS generated by JIRA (9.4.14#940014-sha1:734e6822bbf0d45eff9af51f82432957f73aa32c) at Sat Feb 10 01:08:02 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-540] fix interop issues with lustre_user.h</title>
                <link>https://jira.whamcloud.com/browse/LU-540</link>
                <project id="10000" key="LU">Lustre</project>
                    <description>&lt;blockquote&gt;
&lt;p&gt;While looking at the Lustre public headers for &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-533&quot; title=&quot;lustre_types.h is missing, and replacement posix-types.h not included in user-space&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-533&quot;&gt;&lt;del&gt;LU-533&lt;/del&gt;&lt;/a&gt; I noticed several&lt;br/&gt;
disturbing/sad incompatibilities in the headers between b1_8 and master.&lt;br/&gt;
Some of them are non-critical:&lt;/p&gt;

&lt;ul class=&quot;alternate&quot; type=&quot;square&quot;&gt;
	&lt;li&gt;ioctl numbers for lloop devices changed (LL_IOC_LLOOP_ATTACH,&lt;br/&gt;
  LL_IOC_LLOOP_DETACH, LL_IOC_LLOOP_INFO, LL_IOC_LLOOP_DETACH_BYDEV&lt;/li&gt;
&lt;/ul&gt;


&lt;p&gt;Since lloop isn&apos;t supported and usually ships with matching lctl anyway,&lt;br/&gt;
there isn&apos;t a critical interop issue to be fixed, though the LLOOP_INFO&lt;br/&gt;
ioctl should be fixed to report FIDs instead of inode numbers.&lt;/p&gt;

&lt;p&gt;Several potentially more difficult problems exist, that I believe some&lt;br/&gt;
users may be impacted by:&lt;/p&gt;

&lt;ul class=&quot;alternate&quot; type=&quot;square&quot;&gt;
	&lt;li&gt;struct if_quotactl has changed in size, with fields added in the middle&lt;br/&gt;
  of the structure instead of at the end.  Some users (at least NERSC)&lt;br/&gt;
  are using the llapi_quotactl() interface to access quota data from&lt;br/&gt;
  userspace, but the userspace will break due to the change in the ioctl&lt;br/&gt;
  interface and llapi_quotactl() parameter.  The ioctl number (correctly)&lt;br/&gt;
  depends on the size of struct if_quotactl, so it would be possible to&lt;br/&gt;
  define two slightly different ioctls at the same time (one for the old&lt;br/&gt;
  struct and one for the new struct). Since liblustreapi.a is a static&lt;br/&gt;
  library, it will continue to call the kernel with the old ioctl number&lt;br/&gt;
  until it is recompiled.  It would be possible to define the old ioctl&lt;br/&gt;
  number and copy the struct data, if we wanted to maintain compatibility.&lt;/li&gt;
&lt;/ul&gt;
&lt;/blockquote&gt;

&lt;p&gt;It is not easy to resolve interoperability issues between 1.x user space&lt;br/&gt;
tools and 2.x client kernel, even if the new added fields for &quot;if_quotactl&quot;&lt;br/&gt;
are at the end of the structure. If without considering released lustre-2.0,&lt;br/&gt;
we can adjust current lustre-2.1 to make it be compatible with 1.x userspace&lt;br/&gt;
tools. But I do not sure whether lustre-2.0 client can be ignored or not.&lt;/p&gt;

&lt;blockquote&gt;
&lt;ul class=&quot;alternate&quot; type=&quot;square&quot;&gt;
	&lt;li&gt;the supplementary group downcall structure has changed in 2.0, but very&lt;br/&gt;
  sadly the magic number in the struct wasn&apos;t also changed, so the kernel&lt;br/&gt;
  can&apos;t distinguish between the old and new downcall structs.  I recall&lt;br/&gt;
  at least Sandia had written their own 1.x group upcall, and while we&lt;br/&gt;
  may not need to keep compatibility, at least changing the magic number&lt;br/&gt;
  would afford us the option to do so.  An open question is whether this&lt;br/&gt;
  would negatively affect Kerberos users?&lt;/li&gt;
&lt;/ul&gt;
&lt;/blockquote&gt;

&lt;p&gt;Since the downcall structure sizes for 1.x and 2.x are different, it can&lt;br/&gt;
be used by MDT to distinguish whether the downcall from user space is 2.x&lt;br/&gt;
based or 1.x based. We can process that in current lustre-2.1 candidate.&lt;/p&gt;

&lt;blockquote&gt;
&lt;ul class=&quot;alternate&quot; type=&quot;square&quot;&gt;
	&lt;li&gt;llite file flags are defined with conflicting values for b1_8 and master&lt;br/&gt;
  since 1.8.2:&lt;/li&gt;
&lt;/ul&gt;


&lt;p&gt;b1_8:&lt;br/&gt;
#define LL_FILE_LOCKED_DIRECTIO     0x00000008 /* client-side locks with dio */&lt;br/&gt;
#define LL_FILE_LOCKLESS_IO         0x00000010 /* server-side locks with cio */&lt;/p&gt;

&lt;p&gt;master:&lt;br/&gt;
#define LL_FILE_RMTACL                  0x00000008&lt;/p&gt;

&lt;p&gt;  I have no idea what LL_FILE_RMTACL does, or if anybody uses it.  The&lt;br/&gt;
  LL_FILE_LOCK* flags are (AFAIK) used by LLNL BG/P IO daemons to force&lt;br/&gt;
  lockless IO on files.  I&apos;m not sure if apps are using this also.&lt;/p&gt;&lt;/blockquote&gt;

&lt;p&gt;&quot;LL_FILE_RMTACL&quot; is used for remote client ACL processing. Since no released&lt;br/&gt;
versions support remote client, we can redefine it in lustre-2.1 candidate.&lt;/p&gt;</description>
                <environment></environment>
        <key id="11403">LU-540</key>
            <summary>fix interop issues with lustre_user.h</summary>
                <type id="1" iconUrl="https://jira.whamcloud.com/secure/viewavatar?size=xsmall&amp;avatarId=11303&amp;avatarType=issuetype">Bug</type>
                                            <priority id="4" iconUrl="https://jira.whamcloud.com/images/icons/priorities/minor.svg">Minor</priority>
                        <status id="5" iconUrl="https://jira.whamcloud.com/images/icons/statuses/resolved.png" description="A resolution has been taken, and it is awaiting verification by reporter. From here issues are either reopened, or are closed.">Resolved</status>
                    <statusCategory id="3" key="done" colorName="success"/>
                                    <resolution id="1">Fixed</resolution>
                                        <assignee username="yong.fan">nasf</assignee>
                                    <reporter username="adilger">Andreas Dilger</reporter>
                        <labels>
                    </labels>
                <created>Wed, 27 Jul 2011 01:20:03 +0000</created>
                <updated>Wed, 3 Dec 2014 23:24:24 +0000</updated>
                            <resolved>Fri, 30 Sep 2011 07:47:05 +0000</resolved>
                                    <version>Lustre 2.0.0</version>
                    <version>Lustre 2.1.0</version>
                                    <fixVersion>Lustre 2.1.0</fixVersion>
                                        <due></due>
                            <votes>0</votes>
                                    <watches>5</watches>
                                                                            <comments>
                            <comment id="18317" author="adilger" created="Wed, 27 Jul 2011 04:43:14 +0000"  >&lt;p&gt;For the lloop ioctl issue I&apos;ve submitted &lt;a href=&quot;http://review.whamcloud.com/1149&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://review.whamcloud.com/1149&lt;/a&gt;, and for the struct if_quotactl change a pair of patches (&lt;a href=&quot;http://review.whamcloud.com/1151&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://review.whamcloud.com/1151&lt;/a&gt; and &lt;a href=&quot;http://review.whamcloud.com/1152&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://review.whamcloud.com/1152&lt;/a&gt;) for ease of review.  The first patch only moves some code around, and the second one implements the compatibility bits.&lt;/p&gt;</comment>
                            <comment id="18377" author="yong.fan" created="Thu, 28 Jul 2011 12:23:14 +0000"  >&lt;p&gt;Patch for &quot;LL_FILE_RMTACL&quot; conflict:&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;http://review.whamcloud.com/#change,1159&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://review.whamcloud.com/#change,1159&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="18378" author="yong.fan" created="Thu, 28 Jul 2011 12:24:18 +0000"  >&lt;p&gt;Patch for supplementary group downcall interoperability:&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;http://review.whamcloud.com/#change,1160&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://review.whamcloud.com/#change,1160&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="18505" author="hudson" created="Fri, 29 Jul 2011 11:06:47 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=x86_64,build_type=client,distro=el5,ib_stack=ofa/234/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,el5,ofa #234&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-540&quot; title=&quot;fix interop issues with lustre_user.h&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-540&quot;&gt;&lt;del&gt;LU-540&lt;/del&gt;&lt;/a&gt; quota: move quota ioctl handling to helper&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=770f9c0e7e8eb3dc3a9e531210cbf29008e9a27d&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;770f9c0e7e8eb3dc3a9e531210cbf29008e9a27d&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/include/lustre/lustre_user.h&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre_lib.h&lt;/li&gt;
	&lt;li&gt;lustre/llite/dir.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="18507" author="hudson" created="Fri, 29 Jul 2011 11:11: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/234/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,client,el6,inkernel #234&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-540&quot; title=&quot;fix interop issues with lustre_user.h&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-540&quot;&gt;&lt;del&gt;LU-540&lt;/del&gt;&lt;/a&gt; quota: move quota ioctl handling to helper&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=770f9c0e7e8eb3dc3a9e531210cbf29008e9a27d&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;770f9c0e7e8eb3dc3a9e531210cbf29008e9a27d&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/include/lustre_lib.h&lt;/li&gt;
	&lt;li&gt;lustre/llite/dir.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/lustre_user.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="18508" author="hudson" created="Fri, 29 Jul 2011 11:14:07 +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/234/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,server,el6,inkernel #234&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-540&quot; title=&quot;fix interop issues with lustre_user.h&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-540&quot;&gt;&lt;del&gt;LU-540&lt;/del&gt;&lt;/a&gt; quota: move quota ioctl handling to helper&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=770f9c0e7e8eb3dc3a9e531210cbf29008e9a27d&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;770f9c0e7e8eb3dc3a9e531210cbf29008e9a27d&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/llite/dir.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre_lib.h&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/lustre_user.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="18509" author="hudson" created="Fri, 29 Jul 2011 11:16: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-master/./arch=x86_64,build_type=client,distro=el5,ib_stack=inkernel/234/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,el5,inkernel #234&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-540&quot; title=&quot;fix interop issues with lustre_user.h&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-540&quot;&gt;&lt;del&gt;LU-540&lt;/del&gt;&lt;/a&gt; quota: move quota ioctl handling to helper&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=770f9c0e7e8eb3dc3a9e531210cbf29008e9a27d&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;770f9c0e7e8eb3dc3a9e531210cbf29008e9a27d&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/include/lustre_lib.h&lt;/li&gt;
	&lt;li&gt;lustre/llite/dir.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/lustre_user.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="18510" author="hudson" created="Fri, 29 Jul 2011 11:17: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-master/./arch=x86_64,build_type=client,distro=sles11,ib_stack=inkernel/234/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,sles11,inkernel #234&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-540&quot; title=&quot;fix interop issues with lustre_user.h&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-540&quot;&gt;&lt;del&gt;LU-540&lt;/del&gt;&lt;/a&gt; quota: move quota ioctl handling to helper&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=770f9c0e7e8eb3dc3a9e531210cbf29008e9a27d&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;770f9c0e7e8eb3dc3a9e531210cbf29008e9a27d&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/include/lustre/lustre_user.h&lt;/li&gt;
	&lt;li&gt;lustre/llite/dir.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre_lib.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="18511" author="hudson" created="Fri, 29 Jul 2011 11:19: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=x86_64,build_type=client,distro=el6,ib_stack=inkernel/234/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,el6,inkernel #234&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-540&quot; title=&quot;fix interop issues with lustre_user.h&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-540&quot;&gt;&lt;del&gt;LU-540&lt;/del&gt;&lt;/a&gt; quota: move quota ioctl handling to helper&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=770f9c0e7e8eb3dc3a9e531210cbf29008e9a27d&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;770f9c0e7e8eb3dc3a9e531210cbf29008e9a27d&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/include/lustre/lustre_user.h&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre_lib.h&lt;/li&gt;
	&lt;li&gt;lustre/llite/dir.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="18512" author="hudson" created="Fri, 29 Jul 2011 11:20:22 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=i686,build_type=client,distro=el5,ib_stack=ofa/234/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,client,el5,ofa #234&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-540&quot; title=&quot;fix interop issues with lustre_user.h&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-540&quot;&gt;&lt;del&gt;LU-540&lt;/del&gt;&lt;/a&gt; quota: move quota ioctl handling to helper&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=770f9c0e7e8eb3dc3a9e531210cbf29008e9a27d&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;770f9c0e7e8eb3dc3a9e531210cbf29008e9a27d&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/include/lustre/lustre_user.h&lt;/li&gt;
	&lt;li&gt;lustre/llite/dir.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre_lib.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="18513" author="hudson" created="Fri, 29 Jul 2011 11:20:35 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=x86_64,build_type=client,distro=ubuntu1004,ib_stack=inkernel/234/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,ubuntu1004,inkernel #234&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-540&quot; title=&quot;fix interop issues with lustre_user.h&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-540&quot;&gt;&lt;del&gt;LU-540&lt;/del&gt;&lt;/a&gt; quota: move quota ioctl handling to helper&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=770f9c0e7e8eb3dc3a9e531210cbf29008e9a27d&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;770f9c0e7e8eb3dc3a9e531210cbf29008e9a27d&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/include/lustre/lustre_user.h&lt;/li&gt;
	&lt;li&gt;lustre/llite/dir.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre_lib.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="18515" author="hudson" created="Fri, 29 Jul 2011 11:25:21 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=x86_64,build_type=server,distro=el5,ib_stack=ofa/234/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,server,el5,ofa #234&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-540&quot; title=&quot;fix interop issues with lustre_user.h&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-540&quot;&gt;&lt;del&gt;LU-540&lt;/del&gt;&lt;/a&gt; quota: move quota ioctl handling to helper&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=770f9c0e7e8eb3dc3a9e531210cbf29008e9a27d&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;770f9c0e7e8eb3dc3a9e531210cbf29008e9a27d&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/llite/dir.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre_lib.h&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/lustre_user.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="18516" author="hudson" created="Fri, 29 Jul 2011 11:26:27 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=i686,build_type=server,distro=el5,ib_stack=inkernel/234/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,server,el5,inkernel #234&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-540&quot; title=&quot;fix interop issues with lustre_user.h&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-540&quot;&gt;&lt;del&gt;LU-540&lt;/del&gt;&lt;/a&gt; quota: move quota ioctl handling to helper&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=770f9c0e7e8eb3dc3a9e531210cbf29008e9a27d&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;770f9c0e7e8eb3dc3a9e531210cbf29008e9a27d&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/include/lustre_lib.h&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/lustre_user.h&lt;/li&gt;
	&lt;li&gt;lustre/llite/dir.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="18517" author="hudson" created="Fri, 29 Jul 2011 11:27: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=i686,build_type=server,distro=el6,ib_stack=inkernel/234/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,server,el6,inkernel #234&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-540&quot; title=&quot;fix interop issues with lustre_user.h&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-540&quot;&gt;&lt;del&gt;LU-540&lt;/del&gt;&lt;/a&gt; quota: move quota ioctl handling to helper&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=770f9c0e7e8eb3dc3a9e531210cbf29008e9a27d&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;770f9c0e7e8eb3dc3a9e531210cbf29008e9a27d&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/include/lustre/lustre_user.h&lt;/li&gt;
	&lt;li&gt;lustre/llite/dir.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre_lib.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="18518" author="hudson" created="Fri, 29 Jul 2011 11:34: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=x86_64,build_type=server,distro=el5,ib_stack=inkernel/234/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,server,el5,inkernel #234&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-540&quot; title=&quot;fix interop issues with lustre_user.h&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-540&quot;&gt;&lt;del&gt;LU-540&lt;/del&gt;&lt;/a&gt; quota: move quota ioctl handling to helper&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=770f9c0e7e8eb3dc3a9e531210cbf29008e9a27d&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;770f9c0e7e8eb3dc3a9e531210cbf29008e9a27d&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/include/lustre_lib.h&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/lustre_user.h&lt;/li&gt;
	&lt;li&gt;lustre/llite/dir.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="18520" author="hudson" created="Fri, 29 Jul 2011 11:37: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=i686,build_type=client,distro=el5,ib_stack=inkernel/234/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,client,el5,inkernel #234&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-540&quot; title=&quot;fix interop issues with lustre_user.h&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-540&quot;&gt;&lt;del&gt;LU-540&lt;/del&gt;&lt;/a&gt; quota: move quota ioctl handling to helper&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=770f9c0e7e8eb3dc3a9e531210cbf29008e9a27d&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;770f9c0e7e8eb3dc3a9e531210cbf29008e9a27d&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/llite/dir.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/lustre_user.h&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre_lib.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="18521" author="hudson" created="Fri, 29 Jul 2011 11:53: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=server,distro=el5,ib_stack=ofa/234/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,server,el5,ofa #234&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-540&quot; title=&quot;fix interop issues with lustre_user.h&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-540&quot;&gt;&lt;del&gt;LU-540&lt;/del&gt;&lt;/a&gt; quota: move quota ioctl handling to helper&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=770f9c0e7e8eb3dc3a9e531210cbf29008e9a27d&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;770f9c0e7e8eb3dc3a9e531210cbf29008e9a27d&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/llite/dir.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/lustre_user.h&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre_lib.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="18522" author="hudson" created="Fri, 29 Jul 2011 11:58: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/235/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,el5,ofa #235&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-540&quot; title=&quot;fix interop issues with lustre_user.h&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-540&quot;&gt;&lt;del&gt;LU-540&lt;/del&gt;&lt;/a&gt; lloop: fix LLOOP_INFO to return FID&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=90bde110350493b1d07b12f692a829b4d2cab617&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;90bde110350493b1d07b12f692a829b4d2cab617&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/llite/lloop.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/lustre_user.h&lt;/li&gt;
	&lt;li&gt;lustre/utils/obd.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="18523" author="hudson" created="Fri, 29 Jul 2011 11:59:50 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=i686,build_type=client,distro=el6,ib_stack=inkernel/235/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,client,el6,inkernel #235&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-540&quot; title=&quot;fix interop issues with lustre_user.h&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-540&quot;&gt;&lt;del&gt;LU-540&lt;/del&gt;&lt;/a&gt; lloop: fix LLOOP_INFO to return FID&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=90bde110350493b1d07b12f692a829b4d2cab617&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;90bde110350493b1d07b12f692a829b4d2cab617&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/llite/lloop.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/lustre_user.h&lt;/li&gt;
	&lt;li&gt;lustre/utils/obd.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="18524" author="hudson" created="Fri, 29 Jul 2011 12:01:21 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=x86_64,build_type=server,distro=el6,ib_stack=inkernel/235/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,server,el6,inkernel #235&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-540&quot; title=&quot;fix interop issues with lustre_user.h&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-540&quot;&gt;&lt;del&gt;LU-540&lt;/del&gt;&lt;/a&gt; lloop: fix LLOOP_INFO to return FID&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=90bde110350493b1d07b12f692a829b4d2cab617&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;90bde110350493b1d07b12f692a829b4d2cab617&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/utils/obd.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/lloop.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/lustre_user.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="18525" author="hudson" created="Fri, 29 Jul 2011 12:03:05 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/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/235/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,el6,inkernel #235&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-540&quot; title=&quot;fix interop issues with lustre_user.h&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-540&quot;&gt;&lt;del&gt;LU-540&lt;/del&gt;&lt;/a&gt; lloop: fix LLOOP_INFO to return FID&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=90bde110350493b1d07b12f692a829b4d2cab617&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;90bde110350493b1d07b12f692a829b4d2cab617&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/utils/obd.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/lustre_user.h&lt;/li&gt;
	&lt;li&gt;lustre/llite/lloop.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="18526" author="hudson" created="Fri, 29 Jul 2011 12:04: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-master/./arch=i686,build_type=client,distro=el5,ib_stack=ofa/235/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,client,el5,ofa #235&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-540&quot; title=&quot;fix interop issues with lustre_user.h&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-540&quot;&gt;&lt;del&gt;LU-540&lt;/del&gt;&lt;/a&gt; lloop: fix LLOOP_INFO to return FID&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=90bde110350493b1d07b12f692a829b4d2cab617&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;90bde110350493b1d07b12f692a829b4d2cab617&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/utils/obd.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/lustre_user.h&lt;/li&gt;
	&lt;li&gt;lustre/llite/lloop.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="18527" author="hudson" created="Fri, 29 Jul 2011 12:05: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-master/./arch=x86_64,build_type=server,distro=el5,ib_stack=ofa/235/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,server,el5,ofa #235&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-540&quot; title=&quot;fix interop issues with lustre_user.h&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-540&quot;&gt;&lt;del&gt;LU-540&lt;/del&gt;&lt;/a&gt; lloop: fix LLOOP_INFO to return FID&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=90bde110350493b1d07b12f692a829b4d2cab617&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;90bde110350493b1d07b12f692a829b4d2cab617&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/llite/lloop.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/lustre_user.h&lt;/li&gt;
	&lt;li&gt;lustre/utils/obd.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="18528" author="hudson" created="Fri, 29 Jul 2011 12:06: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/235/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,el5,inkernel #235&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-540&quot; title=&quot;fix interop issues with lustre_user.h&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-540&quot;&gt;&lt;del&gt;LU-540&lt;/del&gt;&lt;/a&gt; lloop: fix LLOOP_INFO to return FID&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=90bde110350493b1d07b12f692a829b4d2cab617&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;90bde110350493b1d07b12f692a829b4d2cab617&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/utils/obd.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/lloop.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/lustre_user.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="18529" author="hudson" created="Fri, 29 Jul 2011 12:08:27 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=x86_64,build_type=client,distro=sles11,ib_stack=inkernel/235/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,sles11,inkernel #235&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-540&quot; title=&quot;fix interop issues with lustre_user.h&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-540&quot;&gt;&lt;del&gt;LU-540&lt;/del&gt;&lt;/a&gt; lloop: fix LLOOP_INFO to return FID&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=90bde110350493b1d07b12f692a829b4d2cab617&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;90bde110350493b1d07b12f692a829b4d2cab617&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/include/lustre/lustre_user.h&lt;/li&gt;
	&lt;li&gt;lustre/utils/obd.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/lloop.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="18530" author="hudson" created="Fri, 29 Jul 2011 12:08: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=inkernel/235/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,server,el5,inkernel #235&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-540&quot; title=&quot;fix interop issues with lustre_user.h&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-540&quot;&gt;&lt;del&gt;LU-540&lt;/del&gt;&lt;/a&gt; lloop: fix LLOOP_INFO to return FID&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=90bde110350493b1d07b12f692a829b4d2cab617&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;90bde110350493b1d07b12f692a829b4d2cab617&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/include/lustre/lustre_user.h&lt;/li&gt;
	&lt;li&gt;lustre/utils/obd.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/lloop.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="18531" author="hudson" created="Fri, 29 Jul 2011 12:08: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=i686,build_type=server,distro=el6,ib_stack=inkernel/235/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,server,el6,inkernel #235&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-540&quot; title=&quot;fix interop issues with lustre_user.h&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-540&quot;&gt;&lt;del&gt;LU-540&lt;/del&gt;&lt;/a&gt; lloop: fix LLOOP_INFO to return FID&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=90bde110350493b1d07b12f692a829b4d2cab617&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;90bde110350493b1d07b12f692a829b4d2cab617&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/include/lustre/lustre_user.h&lt;/li&gt;
	&lt;li&gt;lustre/utils/obd.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/lloop.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="18532" author="hudson" created="Fri, 29 Jul 2011 12:11:54 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=x86_64,build_type=client,distro=ubuntu1004,ib_stack=inkernel/235/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,ubuntu1004,inkernel #235&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-540&quot; title=&quot;fix interop issues with lustre_user.h&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-540&quot;&gt;&lt;del&gt;LU-540&lt;/del&gt;&lt;/a&gt; lloop: fix LLOOP_INFO to return FID&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=90bde110350493b1d07b12f692a829b4d2cab617&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;90bde110350493b1d07b12f692a829b4d2cab617&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/utils/obd.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/lloop.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/lustre_user.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="18533" author="hudson" created="Fri, 29 Jul 2011 12:12: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=server,distro=el5,ib_stack=inkernel/235/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,server,el5,inkernel #235&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-540&quot; title=&quot;fix interop issues with lustre_user.h&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-540&quot;&gt;&lt;del&gt;LU-540&lt;/del&gt;&lt;/a&gt; lloop: fix LLOOP_INFO to return FID&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=90bde110350493b1d07b12f692a829b4d2cab617&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;90bde110350493b1d07b12f692a829b4d2cab617&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/utils/obd.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/lloop.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/lustre_user.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="18534" author="hudson" created="Fri, 29 Jul 2011 12: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-master/./arch=i686,build_type=client,distro=el5,ib_stack=inkernel/235/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,client,el5,inkernel #235&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-540&quot; title=&quot;fix interop issues with lustre_user.h&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-540&quot;&gt;&lt;del&gt;LU-540&lt;/del&gt;&lt;/a&gt; lloop: fix LLOOP_INFO to return FID&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=90bde110350493b1d07b12f692a829b4d2cab617&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;90bde110350493b1d07b12f692a829b4d2cab617&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/utils/obd.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/lustre_user.h&lt;/li&gt;
	&lt;li&gt;lustre/llite/lloop.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="18536" author="hudson" created="Fri, 29 Jul 2011 12:21:07 +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/235/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,server,el5,ofa #235&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-540&quot; title=&quot;fix interop issues with lustre_user.h&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-540&quot;&gt;&lt;del&gt;LU-540&lt;/del&gt;&lt;/a&gt; lloop: fix LLOOP_INFO to return FID&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=90bde110350493b1d07b12f692a829b4d2cab617&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;90bde110350493b1d07b12f692a829b4d2cab617&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/utils/obd.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/lloop.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/lustre_user.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="18608" author="yong.fan" created="Mon, 1 Aug 2011 11:59:17 +0000"  >&lt;p&gt;About supplementary group downcall interoperability issues, it is almost impossible to support 1.8 user space downcall utils to run against 2.x kernel stack. Because downcall proc interfaces have been renamed, and moved from MDS to MDT. That means even if without supplementary group downcall changed, the 1.8 user space supplementary group downcall utils still cannot communicate with 2.x kernel stack properly.&lt;/p&gt;

&lt;p&gt;So I am not sure whether it is worth to fix 2.x proc interfaces to support 1.8 user space supplementary group downcall utils.&lt;/p&gt;

&lt;p&gt;On the other hand, there are some other issues for current 2.x user space supplementary group downcall utils. I will make patch to fix those issues.&lt;/p&gt;</comment>
                            <comment id="18617" author="adilger" created="Mon, 1 Aug 2011 22:01:24 +0000"  >&lt;p&gt;Fan Yong, I didn&apos;t realize that the user interface path also changed for 2.x. In that case I agree there cannot be any confusion.  We can ignore this upcall/downcall compatibilty for 2.1.&lt;/p&gt;</comment>
                            <comment id="18629" author="yong.fan" created="Tue, 2 Aug 2011 13:11:05 +0000"  >&lt;p&gt;misc patch for user identity upcall/downcall&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;http://review.whamcloud.com/#change,1160&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://review.whamcloud.com/#change,1160&lt;/a&gt; set 4&lt;/p&gt;</comment>
                            <comment id="18765" author="hudson" created="Fri, 5 Aug 2011 13:19: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-master/./arch=x86_64,build_type=client,distro=el5,ib_stack=ofa/243/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,el5,ofa #243&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-540&quot; title=&quot;fix interop issues with lustre_user.h&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-540&quot;&gt;&lt;del&gt;LU-540&lt;/del&gt;&lt;/a&gt; remove file flags definition conflict between 1.8 and 2.x&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=56c3ba38463d428340475130a1f5ce0daf3713fa&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;56c3ba38463d428340475130a1f5ce0daf3713fa&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/include/lustre/lustre_user.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="18766" author="hudson" created="Fri, 5 Aug 2011 13:23:23 +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/243/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,client,el6,inkernel #243&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-540&quot; title=&quot;fix interop issues with lustre_user.h&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-540&quot;&gt;&lt;del&gt;LU-540&lt;/del&gt;&lt;/a&gt; remove file flags definition conflict between 1.8 and 2.x&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=56c3ba38463d428340475130a1f5ce0daf3713fa&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;56c3ba38463d428340475130a1f5ce0daf3713fa&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/include/lustre/lustre_user.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="18767" author="hudson" created="Fri, 5 Aug 2011 13:26:38 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=x86_64,build_type=server,distro=el5,ib_stack=inkernel/243/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,server,el5,inkernel #243&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-540&quot; title=&quot;fix interop issues with lustre_user.h&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-540&quot;&gt;&lt;del&gt;LU-540&lt;/del&gt;&lt;/a&gt; remove file flags definition conflict between 1.8 and 2.x&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=56c3ba38463d428340475130a1f5ce0daf3713fa&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;56c3ba38463d428340475130a1f5ce0daf3713fa&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/include/lustre/lustre_user.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="18769" author="hudson" created="Fri, 5 Aug 2011 13:28: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=el6,ib_stack=inkernel/243/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,el6,inkernel #243&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-540&quot; title=&quot;fix interop issues with lustre_user.h&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-540&quot;&gt;&lt;del&gt;LU-540&lt;/del&gt;&lt;/a&gt; remove file flags definition conflict between 1.8 and 2.x&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=56c3ba38463d428340475130a1f5ce0daf3713fa&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;56c3ba38463d428340475130a1f5ce0daf3713fa&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/include/lustre/lustre_user.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="18770" author="hudson" created="Fri, 5 Aug 2011 13:29: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=x86_64,build_type=client,distro=sles11,ib_stack=inkernel/243/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,sles11,inkernel #243&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-540&quot; title=&quot;fix interop issues with lustre_user.h&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-540&quot;&gt;&lt;del&gt;LU-540&lt;/del&gt;&lt;/a&gt; remove file flags definition conflict between 1.8 and 2.x&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=56c3ba38463d428340475130a1f5ce0daf3713fa&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;56c3ba38463d428340475130a1f5ce0daf3713fa&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/include/lustre/lustre_user.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="18772" author="hudson" created="Fri, 5 Aug 2011 13:32:38 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=x86_64,build_type=client,distro=ubuntu1004,ib_stack=inkernel/243/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,ubuntu1004,inkernel #243&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-540&quot; title=&quot;fix interop issues with lustre_user.h&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-540&quot;&gt;&lt;del&gt;LU-540&lt;/del&gt;&lt;/a&gt; remove file flags definition conflict between 1.8 and 2.x&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=56c3ba38463d428340475130a1f5ce0daf3713fa&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;56c3ba38463d428340475130a1f5ce0daf3713fa&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/include/lustre/lustre_user.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="18773" author="hudson" created="Fri, 5 Aug 2011 13:32: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=i686,build_type=client,distro=el5,ib_stack=inkernel/243/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,client,el5,inkernel #243&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-540&quot; title=&quot;fix interop issues with lustre_user.h&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-540&quot;&gt;&lt;del&gt;LU-540&lt;/del&gt;&lt;/a&gt; remove file flags definition conflict between 1.8 and 2.x&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=56c3ba38463d428340475130a1f5ce0daf3713fa&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;56c3ba38463d428340475130a1f5ce0daf3713fa&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/include/lustre/lustre_user.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="18774" author="hudson" created="Fri, 5 Aug 2011 13:33: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=x86_64,build_type=server,distro=el5,ib_stack=ofa/243/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,server,el5,ofa #243&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-540&quot; title=&quot;fix interop issues with lustre_user.h&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-540&quot;&gt;&lt;del&gt;LU-540&lt;/del&gt;&lt;/a&gt; remove file flags definition conflict between 1.8 and 2.x&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=56c3ba38463d428340475130a1f5ce0daf3713fa&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;56c3ba38463d428340475130a1f5ce0daf3713fa&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/include/lustre/lustre_user.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="18775" author="hudson" created="Fri, 5 Aug 2011 13:33: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=el5,ib_stack=inkernel/243/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,el5,inkernel #243&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-540&quot; title=&quot;fix interop issues with lustre_user.h&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-540&quot;&gt;&lt;del&gt;LU-540&lt;/del&gt;&lt;/a&gt; remove file flags definition conflict between 1.8 and 2.x&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=56c3ba38463d428340475130a1f5ce0daf3713fa&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;56c3ba38463d428340475130a1f5ce0daf3713fa&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/include/lustre/lustre_user.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="18776" author="hudson" created="Fri, 5 Aug 2011 13:36:25 +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/243/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,server,el6,inkernel #243&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-540&quot; title=&quot;fix interop issues with lustre_user.h&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-540&quot;&gt;&lt;del&gt;LU-540&lt;/del&gt;&lt;/a&gt; remove file flags definition conflict between 1.8 and 2.x&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=56c3ba38463d428340475130a1f5ce0daf3713fa&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;56c3ba38463d428340475130a1f5ce0daf3713fa&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/include/lustre/lustre_user.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="18777" author="hudson" created="Fri, 5 Aug 2011 13:38:48 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=i686,build_type=server,distro=el5,ib_stack=ofa/243/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,server,el5,ofa #243&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-540&quot; title=&quot;fix interop issues with lustre_user.h&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-540&quot;&gt;&lt;del&gt;LU-540&lt;/del&gt;&lt;/a&gt; remove file flags definition conflict between 1.8 and 2.x&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=56c3ba38463d428340475130a1f5ce0daf3713fa&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;56c3ba38463d428340475130a1f5ce0daf3713fa&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/include/lustre/lustre_user.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="18778" author="hudson" created="Fri, 5 Aug 2011 13:40: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-master/./arch=i686,build_type=server,distro=el6,ib_stack=inkernel/243/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,server,el6,inkernel #243&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-540&quot; title=&quot;fix interop issues with lustre_user.h&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-540&quot;&gt;&lt;del&gt;LU-540&lt;/del&gt;&lt;/a&gt; remove file flags definition conflict between 1.8 and 2.x&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=56c3ba38463d428340475130a1f5ce0daf3713fa&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;56c3ba38463d428340475130a1f5ce0daf3713fa&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/include/lustre/lustre_user.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="18779" author="hudson" created="Fri, 5 Aug 2011 13:55: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-master/./arch=i686,build_type=server,distro=el5,ib_stack=inkernel/243/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,server,el5,inkernel #243&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-540&quot; title=&quot;fix interop issues with lustre_user.h&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-540&quot;&gt;&lt;del&gt;LU-540&lt;/del&gt;&lt;/a&gt; remove file flags definition conflict between 1.8 and 2.x&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=56c3ba38463d428340475130a1f5ce0daf3713fa&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;56c3ba38463d428340475130a1f5ce0daf3713fa&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/include/lustre/lustre_user.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="18780" author="hudson" created="Fri, 5 Aug 2011 13:56: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=ofa/243/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,client,el5,ofa #243&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-540&quot; title=&quot;fix interop issues with lustre_user.h&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-540&quot;&gt;&lt;del&gt;LU-540&lt;/del&gt;&lt;/a&gt; remove file flags definition conflict between 1.8 and 2.x&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=56c3ba38463d428340475130a1f5ce0daf3713fa&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;56c3ba38463d428340475130a1f5ce0daf3713fa&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/include/lustre/lustre_user.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="18931" author="hudson" created="Tue, 9 Aug 2011 10:51:25 +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/247/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,el5,ofa #247&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-540&quot; title=&quot;fix interop issues with lustre_user.h&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-540&quot;&gt;&lt;del&gt;LU-540&lt;/del&gt;&lt;/a&gt; quota: add compatibility for 1.8 userspace&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=0c051fd0e737e03ac6cadb7699c93bcde959b4fd&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;0c051fd0e737e03ac6cadb7699c93bcde959b4fd&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/include/lustre/lustre_user.h&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre_lib.h&lt;/li&gt;
	&lt;li&gt;lustre/llite/llite_internal.h&lt;/li&gt;
	&lt;li&gt;lustre/llite/dir.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="18933" author="hudson" created="Tue, 9 Aug 2011 10:56: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-master/./arch=x86_64,build_type=client,distro=el5,ib_stack=inkernel/247/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,el5,inkernel #247&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-540&quot; title=&quot;fix interop issues with lustre_user.h&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-540&quot;&gt;&lt;del&gt;LU-540&lt;/del&gt;&lt;/a&gt; quota: add compatibility for 1.8 userspace&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=0c051fd0e737e03ac6cadb7699c93bcde959b4fd&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;0c051fd0e737e03ac6cadb7699c93bcde959b4fd&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/include/lustre/lustre_user.h&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre_lib.h&lt;/li&gt;
	&lt;li&gt;lustre/llite/dir.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/llite_internal.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="18935" author="hudson" created="Tue, 9 Aug 2011 10:56: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=client,distro=el6,ib_stack=inkernel/247/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,client,el6,inkernel #247&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-540&quot; title=&quot;fix interop issues with lustre_user.h&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-540&quot;&gt;&lt;del&gt;LU-540&lt;/del&gt;&lt;/a&gt; quota: add compatibility for 1.8 userspace&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=0c051fd0e737e03ac6cadb7699c93bcde959b4fd&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;0c051fd0e737e03ac6cadb7699c93bcde959b4fd&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/llite/llite_internal.h&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre_lib.h&lt;/li&gt;
	&lt;li&gt;lustre/llite/dir.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/lustre_user.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="18937" author="hudson" created="Tue, 9 Aug 2011 10:59:01 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=x86_64,build_type=server,distro=el6,ib_stack=inkernel/247/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,server,el6,inkernel #247&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-540&quot; title=&quot;fix interop issues with lustre_user.h&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-540&quot;&gt;&lt;del&gt;LU-540&lt;/del&gt;&lt;/a&gt; quota: add compatibility for 1.8 userspace&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=0c051fd0e737e03ac6cadb7699c93bcde959b4fd&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;0c051fd0e737e03ac6cadb7699c93bcde959b4fd&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/llite/llite_internal.h&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/lustre_user.h&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre_lib.h&lt;/li&gt;
	&lt;li&gt;lustre/llite/dir.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="18939" author="hudson" created="Tue, 9 Aug 2011 11:01: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=x86_64,build_type=client,distro=sles11,ib_stack=inkernel/247/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,sles11,inkernel #247&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-540&quot; title=&quot;fix interop issues with lustre_user.h&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-540&quot;&gt;&lt;del&gt;LU-540&lt;/del&gt;&lt;/a&gt; quota: add compatibility for 1.8 userspace&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=0c051fd0e737e03ac6cadb7699c93bcde959b4fd&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;0c051fd0e737e03ac6cadb7699c93bcde959b4fd&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/llite/dir.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/llite_internal.h&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/lustre_user.h&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre_lib.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="18941" author="hudson" created="Tue, 9 Aug 2011 11:03: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-master/./arch=x86_64,build_type=server,distro=el5,ib_stack=ofa/247/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,server,el5,ofa #247&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-540&quot; title=&quot;fix interop issues with lustre_user.h&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-540&quot;&gt;&lt;del&gt;LU-540&lt;/del&gt;&lt;/a&gt; quota: add compatibility for 1.8 userspace&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=0c051fd0e737e03ac6cadb7699c93bcde959b4fd&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;0c051fd0e737e03ac6cadb7699c93bcde959b4fd&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/llite/llite_internal.h&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/lustre_user.h&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre_lib.h&lt;/li&gt;
	&lt;li&gt;lustre/llite/dir.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="18943" author="hudson" created="Tue, 9 Aug 2011 11:03:38 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=x86_64,build_type=client,distro=el6,ib_stack=inkernel/247/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,el6,inkernel #247&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-540&quot; title=&quot;fix interop issues with lustre_user.h&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-540&quot;&gt;&lt;del&gt;LU-540&lt;/del&gt;&lt;/a&gt; quota: add compatibility for 1.8 userspace&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=0c051fd0e737e03ac6cadb7699c93bcde959b4fd&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;0c051fd0e737e03ac6cadb7699c93bcde959b4fd&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/llite/dir.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre_lib.h&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/lustre_user.h&lt;/li&gt;
	&lt;li&gt;lustre/llite/llite_internal.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="18945" author="hudson" created="Tue, 9 Aug 2011 11:04: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=ubuntu1004,ib_stack=inkernel/247/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,ubuntu1004,inkernel #247&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-540&quot; title=&quot;fix interop issues with lustre_user.h&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-540&quot;&gt;&lt;del&gt;LU-540&lt;/del&gt;&lt;/a&gt; quota: add compatibility for 1.8 userspace&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=0c051fd0e737e03ac6cadb7699c93bcde959b4fd&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;0c051fd0e737e03ac6cadb7699c93bcde959b4fd&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/include/lustre/lustre_user.h&lt;/li&gt;
	&lt;li&gt;lustre/llite/llite_internal.h&lt;/li&gt;
	&lt;li&gt;lustre/llite/dir.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre_lib.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="18947" author="hudson" created="Tue, 9 Aug 2011 11: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=client,distro=el5,ib_stack=inkernel/247/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,client,el5,inkernel #247&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-540&quot; title=&quot;fix interop issues with lustre_user.h&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-540&quot;&gt;&lt;del&gt;LU-540&lt;/del&gt;&lt;/a&gt; quota: add compatibility for 1.8 userspace&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=0c051fd0e737e03ac6cadb7699c93bcde959b4fd&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;0c051fd0e737e03ac6cadb7699c93bcde959b4fd&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/llite/dir.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/lustre_user.h&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre_lib.h&lt;/li&gt;
	&lt;li&gt;lustre/llite/llite_internal.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="18949" author="hudson" created="Tue, 9 Aug 2011 11:04: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-master/./arch=x86_64,build_type=server,distro=el5,ib_stack=inkernel/247/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,server,el5,inkernel #247&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-540&quot; title=&quot;fix interop issues with lustre_user.h&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-540&quot;&gt;&lt;del&gt;LU-540&lt;/del&gt;&lt;/a&gt; quota: add compatibility for 1.8 userspace&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=0c051fd0e737e03ac6cadb7699c93bcde959b4fd&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;0c051fd0e737e03ac6cadb7699c93bcde959b4fd&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/include/lustre_lib.h&lt;/li&gt;
	&lt;li&gt;lustre/llite/llite_internal.h&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/lustre_user.h&lt;/li&gt;
	&lt;li&gt;lustre/llite/dir.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="18951" author="hudson" created="Tue, 9 Aug 2011 11:10:18 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=i686,build_type=server,distro=el5,ib_stack=ofa/247/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,server,el5,ofa #247&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-540&quot; title=&quot;fix interop issues with lustre_user.h&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-540&quot;&gt;&lt;del&gt;LU-540&lt;/del&gt;&lt;/a&gt; quota: add compatibility for 1.8 userspace&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=0c051fd0e737e03ac6cadb7699c93bcde959b4fd&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;0c051fd0e737e03ac6cadb7699c93bcde959b4fd&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/llite/dir.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/lustre_user.h&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre_lib.h&lt;/li&gt;
	&lt;li&gt;lustre/llite/llite_internal.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="18953" author="hudson" created="Tue, 9 Aug 2011 11:13: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=i686,build_type=server,distro=el6,ib_stack=inkernel/247/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,server,el6,inkernel #247&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-540&quot; title=&quot;fix interop issues with lustre_user.h&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-540&quot;&gt;&lt;del&gt;LU-540&lt;/del&gt;&lt;/a&gt; quota: add compatibility for 1.8 userspace&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=0c051fd0e737e03ac6cadb7699c93bcde959b4fd&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;0c051fd0e737e03ac6cadb7699c93bcde959b4fd&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/include/lustre/lustre_user.h&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre_lib.h&lt;/li&gt;
	&lt;li&gt;lustre/llite/llite_internal.h&lt;/li&gt;
	&lt;li&gt;lustre/llite/dir.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="18955" author="hudson" created="Tue, 9 Aug 2011 11:28:45 +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/247/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,client,el5,ofa #247&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-540&quot; title=&quot;fix interop issues with lustre_user.h&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-540&quot;&gt;&lt;del&gt;LU-540&lt;/del&gt;&lt;/a&gt; quota: add compatibility for 1.8 userspace&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=0c051fd0e737e03ac6cadb7699c93bcde959b4fd&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;0c051fd0e737e03ac6cadb7699c93bcde959b4fd&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/include/lustre_lib.h&lt;/li&gt;
	&lt;li&gt;lustre/llite/llite_internal.h&lt;/li&gt;
	&lt;li&gt;lustre/llite/dir.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/lustre_user.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="18957" author="hudson" created="Tue, 9 Aug 2011 11:29: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=i686,build_type=server,distro=el5,ib_stack=inkernel/247/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,server,el5,inkernel #247&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-540&quot; title=&quot;fix interop issues with lustre_user.h&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-540&quot;&gt;&lt;del&gt;LU-540&lt;/del&gt;&lt;/a&gt; quota: add compatibility for 1.8 userspace&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=0c051fd0e737e03ac6cadb7699c93bcde959b4fd&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;0c051fd0e737e03ac6cadb7699c93bcde959b4fd&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/llite/dir.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/lustre_user.h&lt;/li&gt;
	&lt;li&gt;lustre/llite/llite_internal.h&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre_lib.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="18959" author="hudson" created="Tue, 9 Aug 2011 11:35: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=x86_64,build_type=client,distro=el5,ib_stack=ofa/248/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,el5,ofa #248&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-540&quot; title=&quot;fix interop issues with lustre_user.h&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-540&quot;&gt;&lt;del&gt;LU-540&lt;/del&gt;&lt;/a&gt; misc patch for user identity upcall/downcall&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=4b7cbec396fcd7afb81d601a2facb70ee8c7ad28&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;4b7cbec396fcd7afb81d601a2facb70ee8c7ad28&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/include/lustre/lustre_user.h&lt;/li&gt;
	&lt;li&gt;lustre/utils/l_getidentity.c&lt;/li&gt;
	&lt;li&gt;lustre/mdt/mdt_lproc.c&lt;/li&gt;
	&lt;li&gt;lustre/mdt/mdt_identity.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="18962" author="hudson" created="Tue, 9 Aug 2011 11:38:30 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=i686,build_type=client,distro=el6,ib_stack=inkernel/248/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,client,el6,inkernel #248&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-540&quot; title=&quot;fix interop issues with lustre_user.h&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-540&quot;&gt;&lt;del&gt;LU-540&lt;/del&gt;&lt;/a&gt; misc patch for user identity upcall/downcall&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=4b7cbec396fcd7afb81d601a2facb70ee8c7ad28&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;4b7cbec396fcd7afb81d601a2facb70ee8c7ad28&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/utils/l_getidentity.c&lt;/li&gt;
	&lt;li&gt;lustre/mdt/mdt_identity.c&lt;/li&gt;
	&lt;li&gt;lustre/mdt/mdt_lproc.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/lustre_user.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="18964" author="hudson" created="Tue, 9 Aug 2011 11:42: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-master/./arch=x86_64,build_type=server,distro=el5,ib_stack=inkernel/248/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,server,el5,inkernel #248&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-540&quot; title=&quot;fix interop issues with lustre_user.h&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-540&quot;&gt;&lt;del&gt;LU-540&lt;/del&gt;&lt;/a&gt; misc patch for user identity upcall/downcall&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=4b7cbec396fcd7afb81d601a2facb70ee8c7ad28&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;4b7cbec396fcd7afb81d601a2facb70ee8c7ad28&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mdt/mdt_lproc.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/l_getidentity.c&lt;/li&gt;
	&lt;li&gt;lustre/mdt/mdt_identity.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/lustre_user.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="18966" author="hudson" created="Tue, 9 Aug 2011 11:43:03 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=x86_64,build_type=client,distro=el6,ib_stack=inkernel/248/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,el6,inkernel #248&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-540&quot; title=&quot;fix interop issues with lustre_user.h&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-540&quot;&gt;&lt;del&gt;LU-540&lt;/del&gt;&lt;/a&gt; misc patch for user identity upcall/downcall&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=4b7cbec396fcd7afb81d601a2facb70ee8c7ad28&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;4b7cbec396fcd7afb81d601a2facb70ee8c7ad28&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mdt/mdt_identity.c&lt;/li&gt;
	&lt;li&gt;lustre/mdt/mdt_lproc.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/lustre_user.h&lt;/li&gt;
	&lt;li&gt;lustre/utils/l_getidentity.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="18968" author="hudson" created="Tue, 9 Aug 2011 11:45:08 +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/248/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,sles11,inkernel #248&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-540&quot; title=&quot;fix interop issues with lustre_user.h&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-540&quot;&gt;&lt;del&gt;LU-540&lt;/del&gt;&lt;/a&gt; misc patch for user identity upcall/downcall&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=4b7cbec396fcd7afb81d601a2facb70ee8c7ad28&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;4b7cbec396fcd7afb81d601a2facb70ee8c7ad28&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/include/lustre/lustre_user.h&lt;/li&gt;
	&lt;li&gt;lustre/mdt/mdt_lproc.c&lt;/li&gt;
	&lt;li&gt;lustre/mdt/mdt_identity.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/l_getidentity.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="18971" author="hudson" created="Tue, 9 Aug 2011 11:46: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=client,distro=el5,ib_stack=inkernel/248/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,client,el5,inkernel #248&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-540&quot; title=&quot;fix interop issues with lustre_user.h&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-540&quot;&gt;&lt;del&gt;LU-540&lt;/del&gt;&lt;/a&gt; misc patch for user identity upcall/downcall&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=4b7cbec396fcd7afb81d601a2facb70ee8c7ad28&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;4b7cbec396fcd7afb81d601a2facb70ee8c7ad28&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/include/lustre/lustre_user.h&lt;/li&gt;
	&lt;li&gt;lustre/mdt/mdt_lproc.c&lt;/li&gt;
	&lt;li&gt;lustre/mdt/mdt_identity.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/l_getidentity.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="18973" author="hudson" created="Tue, 9 Aug 2011 11:48: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=x86_64,build_type=client,distro=ubuntu1004,ib_stack=inkernel/248/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,ubuntu1004,inkernel #248&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-540&quot; title=&quot;fix interop issues with lustre_user.h&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-540&quot;&gt;&lt;del&gt;LU-540&lt;/del&gt;&lt;/a&gt; misc patch for user identity upcall/downcall&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=4b7cbec396fcd7afb81d601a2facb70ee8c7ad28&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;4b7cbec396fcd7afb81d601a2facb70ee8c7ad28&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mdt/mdt_identity.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/l_getidentity.c&lt;/li&gt;
	&lt;li&gt;lustre/mdt/mdt_lproc.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/lustre_user.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="18975" author="hudson" created="Tue, 9 Aug 2011 11:49:18 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=x86_64,build_type=server,distro=el5,ib_stack=ofa/248/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,server,el5,ofa #248&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-540&quot; title=&quot;fix interop issues with lustre_user.h&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-540&quot;&gt;&lt;del&gt;LU-540&lt;/del&gt;&lt;/a&gt; misc patch for user identity upcall/downcall&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=4b7cbec396fcd7afb81d601a2facb70ee8c7ad28&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;4b7cbec396fcd7afb81d601a2facb70ee8c7ad28&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/utils/l_getidentity.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/lustre_user.h&lt;/li&gt;
	&lt;li&gt;lustre/mdt/mdt_lproc.c&lt;/li&gt;
	&lt;li&gt;lustre/mdt/mdt_identity.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="18977" author="hudson" created="Tue, 9 Aug 2011 11:49:50 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=x86_64,build_type=client,distro=el5,ib_stack=inkernel/248/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,el5,inkernel #248&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-540&quot; title=&quot;fix interop issues with lustre_user.h&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-540&quot;&gt;&lt;del&gt;LU-540&lt;/del&gt;&lt;/a&gt; misc patch for user identity upcall/downcall&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=4b7cbec396fcd7afb81d601a2facb70ee8c7ad28&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;4b7cbec396fcd7afb81d601a2facb70ee8c7ad28&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mdt/mdt_lproc.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/lustre_user.h&lt;/li&gt;
	&lt;li&gt;lustre/utils/l_getidentity.c&lt;/li&gt;
	&lt;li&gt;lustre/mdt/mdt_identity.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="18979" author="hudson" created="Tue, 9 Aug 2011 11:51: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=server,distro=el5,ib_stack=ofa/248/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,server,el5,ofa #248&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-540&quot; title=&quot;fix interop issues with lustre_user.h&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-540&quot;&gt;&lt;del&gt;LU-540&lt;/del&gt;&lt;/a&gt; misc patch for user identity upcall/downcall&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=4b7cbec396fcd7afb81d601a2facb70ee8c7ad28&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;4b7cbec396fcd7afb81d601a2facb70ee8c7ad28&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mdt/mdt_identity.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/l_getidentity.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/lustre_user.h&lt;/li&gt;
	&lt;li&gt;lustre/mdt/mdt_lproc.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="18981" author="hudson" created="Tue, 9 Aug 2011 11:51:39 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=x86_64,build_type=server,distro=el6,ib_stack=inkernel/248/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,server,el6,inkernel #248&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-540&quot; title=&quot;fix interop issues with lustre_user.h&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-540&quot;&gt;&lt;del&gt;LU-540&lt;/del&gt;&lt;/a&gt; misc patch for user identity upcall/downcall&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=4b7cbec396fcd7afb81d601a2facb70ee8c7ad28&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;4b7cbec396fcd7afb81d601a2facb70ee8c7ad28&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mdt/mdt_lproc.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/lustre_user.h&lt;/li&gt;
	&lt;li&gt;lustre/utils/l_getidentity.c&lt;/li&gt;
	&lt;li&gt;lustre/mdt/mdt_identity.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="18983" author="hudson" created="Tue, 9 Aug 2011 11:53:36 +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/248/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,server,el6,inkernel #248&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-540&quot; title=&quot;fix interop issues with lustre_user.h&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-540&quot;&gt;&lt;del&gt;LU-540&lt;/del&gt;&lt;/a&gt; misc patch for user identity upcall/downcall&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=4b7cbec396fcd7afb81d601a2facb70ee8c7ad28&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;4b7cbec396fcd7afb81d601a2facb70ee8c7ad28&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/include/lustre/lustre_user.h&lt;/li&gt;
	&lt;li&gt;lustre/utils/l_getidentity.c&lt;/li&gt;
	&lt;li&gt;lustre/mdt/mdt_lproc.c&lt;/li&gt;
	&lt;li&gt;lustre/mdt/mdt_identity.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="18985" author="hudson" created="Tue, 9 Aug 2011 12:07: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/248/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,client,el5,ofa #248&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-540&quot; title=&quot;fix interop issues with lustre_user.h&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-540&quot;&gt;&lt;del&gt;LU-540&lt;/del&gt;&lt;/a&gt; misc patch for user identity upcall/downcall&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=4b7cbec396fcd7afb81d601a2facb70ee8c7ad28&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;4b7cbec396fcd7afb81d601a2facb70ee8c7ad28&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mdt/mdt_lproc.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/lustre_user.h&lt;/li&gt;
	&lt;li&gt;lustre/utils/l_getidentity.c&lt;/li&gt;
	&lt;li&gt;lustre/mdt/mdt_identity.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="18987" author="hudson" created="Tue, 9 Aug 2011 12:07: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/248/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,server,el5,inkernel #248&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-540&quot; title=&quot;fix interop issues with lustre_user.h&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-540&quot;&gt;&lt;del&gt;LU-540&lt;/del&gt;&lt;/a&gt; misc patch for user identity upcall/downcall&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=4b7cbec396fcd7afb81d601a2facb70ee8c7ad28&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;4b7cbec396fcd7afb81d601a2facb70ee8c7ad28&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/include/lustre/lustre_user.h&lt;/li&gt;
	&lt;li&gt;lustre/mdt/mdt_identity.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/l_getidentity.c&lt;/li&gt;
	&lt;li&gt;lustre/mdt/mdt_lproc.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="19073" author="simmonsja" created="Thu, 11 Aug 2011 11:31:02 +0000"  >&lt;p&gt;Just test the lastest code drop on our test bed at the lab. The file system mounted but couldn&apos;t access it. I did a git bisect and reverted this patch and it worked again.&lt;/p&gt;</comment>
                            <comment id="19074" author="yong.fan" created="Thu, 11 Aug 2011 11:44:43 +0000"  >&lt;p&gt;&amp;gt; Just test the lastest code drop on our test bed at the lab. The file system mounted but couldn&apos;t access it. I did a git bisect and reverted this patch and it worked again.&lt;/p&gt;

&lt;p&gt;Which patch you revert? the &quot;misc patch for user identity upcall/downcall&quot;? If so, please update the MDS-side user space utils &quot;l_getidentity&quot; with latest version, usually it is under /usr/sbin/l_getidentity.&lt;/p&gt;

&lt;p&gt;On the other hand, please show me the dmesg on MDS side if possible. Thanks!&lt;/p&gt;</comment>
                            <comment id="19091" author="simmonsja" created="Thu, 11 Aug 2011 12:15:38 +0000"  >&lt;p&gt;Yes that is the one and yes I did update the l_getidenttity. We don&apos;t need a special utiltiy for upcall so we use what is built by lustre. What is different is that we supply a /etc/lustre/perm file&lt;/p&gt;
</comment>
                            <comment id="19137" author="yong.fan" created="Thu, 11 Aug 2011 21:50:12 +0000"  >&lt;p&gt;The old l_getidentity and new one process /etc/lustre/perm with the same behavior. So I do not think such file can cause the failure.&lt;/p&gt;

&lt;p&gt;What is error reported/message when you use new version Lustre?&lt;/p&gt;</comment>
                            <comment id="19259" author="green" created="Mon, 15 Aug 2011 23:24:46 +0000"  >&lt;p&gt;James shared the perms file with me, but unfortunately it seems to be 1.8 based or otherwise invalid.&lt;/p&gt;

&lt;p&gt;Anyway I was inspecting updated l_getidentity code and I think I see the problem in perms handling:&lt;/p&gt;

&lt;p&gt;+        size = offsetof(struct identity_downcall_data,&lt;br/&gt;
+                        idd_groups&lt;span class=&quot;error&quot;&gt;&amp;#91;data-&amp;gt;idd_ngroups&amp;#93;&lt;/span&gt;);&lt;br/&gt;
         /* read permission database */&lt;/p&gt;
&lt;ul class=&quot;alternate&quot; type=&quot;square&quot;&gt;
	&lt;li&gt;perms_fp = fopen(PERM_PATHNAME, &quot;r&quot;);&lt;/li&gt;
	&lt;li&gt;if (perms_fp) 
{
-                get_perms(perms_fp, data);
-                fclose(perms_fp);
-        }
&lt;p&gt; else if (errno != ENOENT) &lt;/p&gt;
{
-                errlog(&quot;open %s failed: %s\n&quot;,
-                       PERM_PATHNAME, strerror(errno));
-        }
&lt;p&gt;+        rc = get_perms(data);&lt;/p&gt;&lt;/li&gt;
&lt;/ul&gt;


&lt;p&gt;later on we proceed to write size bytes to kernel.&lt;/p&gt;

&lt;p&gt;Now the problem is if get_perms() call added any more group entries and increased the data-&amp;gt;idd_ngroups value, the size won&apos;t be updated and we would never pass these extra entries to the kernel.&lt;br/&gt;
As such I propose to move the size calculation to after the get_perms() call, that should fix the issue.&lt;/p&gt;</comment>
                            <comment id="19260" author="green" created="Mon, 15 Aug 2011 23:48:50 +0000"  >&lt;p&gt;Ok, it turns out I spoke too soon &lt;img class=&quot;emoticon&quot; src=&quot;https://jira.whamcloud.com/images/icons/emoticons/wink.png&quot; height=&quot;16&quot; width=&quot;16&quot; align=&quot;absmiddle&quot; alt=&quot;&quot; border=&quot;0&quot;/&gt;&lt;/p&gt;

&lt;p&gt;Teh perms file cannot add any more groups. And it is invalid.&lt;br/&gt;
And that&apos;s the problem.&lt;/p&gt;

&lt;p&gt;Where the old l_getidentity just ignored invalid perms file and fed the group data to the kernel,&lt;br/&gt;
the new one just bails out on wrong perms file and exits without trying to pass any data to the kernel whatsoever.&lt;/p&gt;</comment>
                            <comment id="20558" author="adilger" created="Thu, 29 Sep 2011 19:50:23 +0000"  >&lt;p&gt;Is there still unfinished work with this bug, or did it all get landed?&lt;/p&gt;</comment>
                            <comment id="20566" author="yong.fan" created="Fri, 30 Sep 2011 04:59:49 +0000"  >&lt;p&gt;I think we have done what we want.&lt;/p&gt;</comment>
                            <comment id="20570" author="adilger" created="Fri, 30 Sep 2011 07:47:05 +0000"  >&lt;p&gt;Patches were landed for 2.1.0.&lt;/p&gt;</comment>
                    </comments>
                <issuelinks>
                            <issuelinktype id="10011">
                    <name>Related</name>
                                                                <inwardlinks description="is related to">
                                        <issuelink>
            <issuekey id="27783">LU-5976</issuekey>
        </issuelink>
                            </inwardlinks>
                                    </issuelinktype>
                    </issuelinks>
                <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|hzv8kv:</customfieldvalue>

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

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