<!-- 
RSS generated by JIRA (9.4.14#940014-sha1:734e6822bbf0d45eff9af51f82432957f73aa32c) at Sat Feb 10 01:12:16 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-974] Lustre does not ignore umask when default ACL with mask is set</title>
                <link>https://jira.whamcloud.com/browse/LU-974</link>
                <project id="10000" key="LU">Lustre</project>
                    <description>&lt;p&gt;One of our users recently requested us to turn on ACLs on a new Lustre filesystem.&lt;br/&gt;
After doing so, we discovered that one of the features this user group needs,&lt;br/&gt;
does not seem to be supported by Lustre: setting a mask in the ACL that&lt;br/&gt;
overrides the umask of the user creating files/directories.&lt;/p&gt;

&lt;p&gt;We thinks this is the same as &lt;a href=&quot;https://bugzilla.lustre.org/show_bug.cgi?id=23194&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://bugzilla.lustre.org/show_bug.cgi?id=23194&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;We include logs showing behavious with Lustre, and for comparison NFS (backed by XFS)&lt;br/&gt;
and a local ext4 filesystem.&lt;/p&gt;

&lt;p&gt;LUSTRE&lt;br/&gt;
======&lt;/p&gt;

&lt;p&gt;Client: lustre-1.8.7.80-2.6.18_274.12.1.el5_g27e7ce7&lt;br/&gt;
(patchless build a few commits beyond 1.8.7-wc1 in order&lt;br/&gt;
to get the fix for &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-645&quot; title=&quot;getcwd fails&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-645&quot;&gt;&lt;del&gt;LU-645&lt;/del&gt;&lt;/a&gt;).&lt;/p&gt;

&lt;p&gt;Server: lustre-1.8.5-2.6.18_194.17.1.el5_lustre.1.8.5.nsc1_201105161812&lt;br/&gt;
(1.8.5 with a single patch for &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-274&quot; title=&quot;Client delayed file status (cache meta-data) causing job failures&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-274&quot;&gt;&lt;del&gt;LU-274&lt;/del&gt;&lt;/a&gt;)&lt;/p&gt;


&lt;p&gt;&lt;span class=&quot;error&quot;&gt;&amp;#91;kent@server ~&amp;#93;&lt;/span&gt;$ umask&lt;br/&gt;
0022&lt;/p&gt;

&lt;p&gt;&lt;span class=&quot;error&quot;&gt;&amp;#91;kent@server ~&amp;#93;&lt;/span&gt;$ cd /nobackup/rossby16/kent&lt;/p&gt;

&lt;p&gt;&lt;span class=&quot;error&quot;&gt;&amp;#91;kent@server kent&amp;#93;&lt;/span&gt;$ mkdir subdir&lt;/p&gt;

&lt;p&gt;&lt;span class=&quot;error&quot;&gt;&amp;#91;kent@server kent&amp;#93;&lt;/span&gt;$ setfacl -R -d -m mask:007 subdir&lt;/p&gt;

&lt;p&gt;&lt;span class=&quot;error&quot;&gt;&amp;#91;kent@server kent&amp;#93;&lt;/span&gt;$ getfacl subdir&lt;/p&gt;
&lt;ol&gt;
	&lt;li&gt;file: subdir&lt;/li&gt;
	&lt;li&gt;owner: kent&lt;/li&gt;
	&lt;li&gt;group: nsc&lt;br/&gt;
user::rwx&lt;br/&gt;
group::r-x&lt;br/&gt;
other::r-x&lt;br/&gt;
default:user::rwx&lt;br/&gt;
default:group::r-x&lt;br/&gt;
default:mask::rwx&lt;br/&gt;
default:other::r-x&lt;/li&gt;
&lt;/ol&gt;


&lt;p&gt;&lt;span class=&quot;error&quot;&gt;&amp;#91;kent@server kent&amp;#93;&lt;/span&gt;$ mkdir subdir/dir&lt;/p&gt;

&lt;p&gt;&lt;span class=&quot;error&quot;&gt;&amp;#91;kent@server kent&amp;#93;&lt;/span&gt;$ touch subdir/file&lt;/p&gt;

&lt;p&gt;&lt;span class=&quot;error&quot;&gt;&amp;#91;kent@server kent&amp;#93;&lt;/span&gt;$ ls -lrt subdir/&lt;br/&gt;
total 4&lt;br/&gt;
drwxr-xr-x+ 2 kent nsc 4096 Jan  9 14:45 dir&lt;br/&gt;
&lt;del&gt;rw-r&lt;/del&gt;&lt;del&gt;r&lt;/del&gt;-+ 1 kent nsc    0 Jan  9 14:45 file&lt;/p&gt;

&lt;p&gt;&lt;span class=&quot;error&quot;&gt;&amp;#91;kent@server kent&amp;#93;&lt;/span&gt;$ ls -lrtd subdir&lt;br/&gt;
drwxr-xr-x+ 3 kent nsc 4096 Jan  9 14:45 subdir&lt;/p&gt;


&lt;p&gt;COMPARISON: NFS BACKED BY XFS&lt;br/&gt;
=============================&lt;/p&gt;

&lt;p&gt;Client/server: CentOS 5 kernel 2.6.18-274.12.1.el5&lt;/p&gt;


&lt;p&gt;&lt;span class=&quot;error&quot;&gt;&amp;#91;kent@server ~&amp;#93;&lt;/span&gt;$ umask&lt;br/&gt;
0022&lt;/p&gt;

&lt;p&gt;&lt;span class=&quot;error&quot;&gt;&amp;#91;kent@server ~&amp;#93;&lt;/span&gt;$ mkdir subdir&lt;/p&gt;

&lt;p&gt;&lt;span class=&quot;error&quot;&gt;&amp;#91;kent@server ~&amp;#93;&lt;/span&gt;$ setfacl -R -d -m mask:007 subdir&lt;/p&gt;

&lt;p&gt;&lt;span class=&quot;error&quot;&gt;&amp;#91;kent@server ~&amp;#93;&lt;/span&gt;$ getfacl subdir&lt;/p&gt;
&lt;ol&gt;
	&lt;li&gt;file: subdir&lt;/li&gt;
	&lt;li&gt;owner: kent&lt;/li&gt;
	&lt;li&gt;group: nsc&lt;br/&gt;
user::rwx&lt;br/&gt;
group::r-x&lt;br/&gt;
other::r-x&lt;br/&gt;
default:user::rwx&lt;br/&gt;
default:group::r-x&lt;br/&gt;
default:mask::rwx&lt;br/&gt;
default:other::r-x&lt;/li&gt;
&lt;/ol&gt;


&lt;p&gt;&lt;span class=&quot;error&quot;&gt;&amp;#91;kent@server ~&amp;#93;&lt;/span&gt;$ mkdir subdir/dir&lt;/p&gt;

&lt;p&gt;&lt;span class=&quot;error&quot;&gt;&amp;#91;kent@server ~&amp;#93;&lt;/span&gt;$ touch subdir/file&lt;/p&gt;

&lt;p&gt;&lt;span class=&quot;error&quot;&gt;&amp;#91;kent@server ~&amp;#93;&lt;/span&gt;$ ls -lrt subdir/&lt;br/&gt;
total 8&lt;br/&gt;
drwxrwxr-x+ 2 kent nsc 6 Jan  9 14:48 dir&lt;br/&gt;
&lt;del&gt;rw-rw-r&lt;/del&gt;-+ 1 kent nsc 0 Jan  9 14:48 file&lt;/p&gt;

&lt;p&gt;&lt;span class=&quot;error&quot;&gt;&amp;#91;kent@server ~&amp;#93;&lt;/span&gt;$ ls -lrtd subdir&lt;br/&gt;
drwxr-xr-x+ 3 kent nsc 27 Jan  9 14:48 subdir&lt;/p&gt;


&lt;p&gt;COMPARISION: FEDORA 16&lt;br/&gt;
======================&lt;/p&gt;

&lt;p&gt;Local ext4 filesystem on kernel 3.1.6-1.fc16.x86_64&lt;/p&gt;

&lt;p&gt;&lt;span class=&quot;error&quot;&gt;&amp;#91;kent@workstation&amp;#93;&lt;/span&gt;~% umask&lt;br/&gt;
022&lt;/p&gt;

&lt;p&gt;&lt;span class=&quot;error&quot;&gt;&amp;#91;kent@workstation&amp;#93;&lt;/span&gt;~% mkdir subdir&lt;/p&gt;

&lt;p&gt;&lt;span class=&quot;error&quot;&gt;&amp;#91;kent@workstation&amp;#93;&lt;/span&gt;~% setfacl -R -d -m mask:007 subdir&lt;/p&gt;

&lt;p&gt;&lt;span class=&quot;error&quot;&gt;&amp;#91;kent@workstation&amp;#93;&lt;/span&gt;~% getfacl subdir&lt;/p&gt;
&lt;ol&gt;
	&lt;li&gt;file: subdir&lt;/li&gt;
	&lt;li&gt;owner: kent&lt;/li&gt;
	&lt;li&gt;group: kent&lt;br/&gt;
user::rwx&lt;br/&gt;
group::r-x&lt;br/&gt;
other::r-x&lt;br/&gt;
default:user::rwx&lt;br/&gt;
default:group::r-x&lt;br/&gt;
default:mask::rwx&lt;br/&gt;
default:other::r-x&lt;/li&gt;
&lt;/ol&gt;


&lt;p&gt;&lt;span class=&quot;error&quot;&gt;&amp;#91;kent@workstation&amp;#93;&lt;/span&gt;~% mkdir subdir/dir&lt;/p&gt;

&lt;p&gt;&lt;span class=&quot;error&quot;&gt;&amp;#91;kent@workstation&amp;#93;&lt;/span&gt;~% touch subdir/file&lt;/p&gt;

&lt;p&gt;&lt;span class=&quot;error&quot;&gt;&amp;#91;kent@workstation&amp;#93;&lt;/span&gt;~% ls -lrt subdir/&lt;br/&gt;
total 12&lt;br/&gt;
drwxrwxr-x+ 2 kent kent 4096 Jan  9 14:50 dir&lt;br/&gt;
&lt;del&gt;rw-rw-r&lt;/del&gt;-+ 1 kent kent    0 Jan  9 14:50 file&lt;/p&gt;

&lt;p&gt;&lt;span class=&quot;error&quot;&gt;&amp;#91;kent@workstation&amp;#93;&lt;/span&gt;~% ls -lrtd subdir&lt;br/&gt;
drwxr-xr-x+ 3 kent kent 4096 Jan  9 14:50 subdir&lt;/p&gt;</description>
                <environment>Lustre 1.8.7 on CentOS 5</environment>
        <key id="12839">LU-974</key>
            <summary>Lustre does not ignore umask when default ACL with mask is set</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="laisiyao">Lai Siyao</assignee>
                                    <reporter username="kent">Kent Engstr&#246;m</reporter>
                        <labels>
                    </labels>
                <created>Mon, 9 Jan 2012 09:05:45 +0000</created>
                <updated>Tue, 12 Mar 2019 19:20:47 +0000</updated>
                            <resolved>Sat, 22 Dec 2012 11:17:13 +0000</resolved>
                                    <version>Lustre 2.3.0</version>
                    <version>Lustre 2.1.3</version>
                    <version>Lustre 1.8.8</version>
                    <version>Lustre 1.8.7</version>
                                    <fixVersion>Lustre 2.4.0</fixVersion>
                    <fixVersion>Lustre 2.1.4</fixVersion>
                                        <due></due>
                            <votes>0</votes>
                                    <watches>9</watches>
                                                                            <comments>
                            <comment id="26244" author="pjones" created="Tue, 10 Jan 2012 10:02:05 +0000"  >&lt;p&gt;Lai&lt;/p&gt;

&lt;p&gt;Could you please look into this one?&lt;/p&gt;

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

&lt;p&gt;Peter&lt;/p&gt;</comment>
                            <comment id="26576" author="laisiyao" created="Sun, 15 Jan 2012 21:28:36 +0000"  >&lt;p&gt;You&apos;re correct, lustre client doesn&apos;t ignore umask when default ACL is set, but unfortunately MDS doesn&apos;t respect default ACL, so it needs change on MDS too. I&apos;ll provide a fix when local test passes.&lt;/p&gt;</comment>
                            <comment id="26604" author="laisiyao" created="Mon, 16 Jan 2012 05:07:56 +0000"  >&lt;p&gt;fix for 1.8 is on &lt;a href=&quot;http://review.whamcloud.com/#change,1976&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://review.whamcloud.com/#change,1976&lt;/a&gt;&lt;br/&gt;
fix for 2.x is on &lt;a href=&quot;http://review.whamcloud.com/#change,1972&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://review.whamcloud.com/#change,1972&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Kent, would you verify the fix for 1.8?&lt;/p&gt;</comment>
                            <comment id="26610" author="kent" created="Mon, 16 Jan 2012 05:14:46 +0000"  >&lt;p&gt;Just to be sure: do we need to update the servers to in order to test/deploy this,&lt;br/&gt;
or does it suffice to update the client side?&lt;/p&gt;</comment>
                            <comment id="26612" author="laisiyao" created="Mon, 16 Jan 2012 05:24:44 +0000"  >&lt;p&gt;The fix is made on both client and mds code, so you need to update both. Since the code is still on review phase, you don&apos;t need to deploy it now, if all is okay, the fix will be landed to latest b1_8 and master branch, after that you can really deploy it, currently you can test it on a test system.&lt;/p&gt;</comment>
                            <comment id="26703" author="kent" created="Tue, 17 Jan 2012 07:24:18 +0000"  >&lt;p&gt;I tried to get a test server by building the code in &lt;a href=&quot;http://review.whamcloud.com/#change,1976&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://review.whamcloud.com/#change,1976&lt;/a&gt;&lt;br/&gt;
(commit 4c2b70f664fe286f335f76395a0b165919c75a1d) on top of an up-to-date CentOS 5.7&lt;br/&gt;
retrofitted with kernel-2.6.18-274.3.1.el5 and related RPMs, following the instructions at&lt;br/&gt;
&lt;a href=&quot;http://wiki.whamcloud.com/display/PUB/Walk-thru-+Build+Lustre+1.8+on+CentOS+5.5+or+5.6+from+Whamcloud+git&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://wiki.whamcloud.com/display/PUB/Walk-thru-+Build+Lustre+1.8+on+CentOS+5.5+or+5.6+from+Whamcloud+git&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;The build seems OK, but I get no lustre-ldiskfs*.rpm built.&lt;/p&gt;

&lt;p&gt;Do you have any recommendations on how to proceed? Will I have to downgrade to CentOS 5.6 to build the&lt;br/&gt;
test server (not just downgrading the kernel and related RPMs)?&lt;/p&gt;</comment>
                            <comment id="26711" author="kent" created="Tue, 17 Jan 2012 09:39:50 +0000"  >&lt;p&gt;Now I found &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-987&quot; title=&quot;Fail to create ldisk rpms RHEL5&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-987&quot;&gt;&lt;del&gt;LU-987&lt;/del&gt;&lt;/a&gt;. Applying the one-line fix from &lt;a href=&quot;http://review.whamcloud.com/#change,1964&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://review.whamcloud.com/#change,1964&lt;/a&gt;&lt;br/&gt;
seems to solve this.&lt;/p&gt;</comment>
                            <comment id="26713" author="pjones" created="Tue, 17 Jan 2012 09:51:36 +0000"  >&lt;p&gt;Thanks Kent. We had not had lu-987 reported on 1.8.x yet. Please let us know how you get on with your testing of this issue.&lt;/p&gt;</comment>
                            <comment id="26728" author="kent" created="Tue, 17 Jan 2012 11:04:38 +0000"  >&lt;p&gt;The fix is not correct. The umask should be ignored only when creating files/directories in a directory with a default ACL.&lt;br/&gt;
The current code seems to ignore the umask for all directories with ACLs even if they are only access ACLs with&lt;br/&gt;
no default part.&lt;/p&gt;

&lt;p&gt;I am by far no export on POSIX ACL semantics. I&apos;m trying to understand the expected behaviour by comparing&lt;br/&gt;
with other filesystems and reading &lt;a href=&quot;http://www.suse.de/~agruen/acl/linux-acls/online/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://www.suse.de/~agruen/acl/linux-acls/online/&lt;/a&gt;&lt;/p&gt;
</comment>
                            <comment id="26733" author="kent" created="Tue, 17 Jan 2012 11:13:55 +0000"  >&lt;p&gt;It seems even more wrong when I test a bit more:&lt;/p&gt;

&lt;p&gt;Creating a subdir in a directory without any ACLs set (ext4 on Fedora 16):&lt;/p&gt;

&lt;p&gt;&lt;span class=&quot;error&quot;&gt;&amp;#91;kent@ceres&amp;#93;&lt;/span&gt;~% umask; getfacl .; mkdir subdir; getfacl subdir&lt;br/&gt;
077&lt;/p&gt;
&lt;ol&gt;
	&lt;li&gt;file: .&lt;/li&gt;
	&lt;li&gt;owner: kent&lt;/li&gt;
	&lt;li&gt;group: kent&lt;br/&gt;
user::rwx&lt;br/&gt;
group::r-x&lt;br/&gt;
other::r-x&lt;/li&gt;
&lt;/ol&gt;


&lt;ol&gt;
	&lt;li&gt;file: subdir&lt;/li&gt;
	&lt;li&gt;owner: kent&lt;/li&gt;
	&lt;li&gt;group: kent&lt;br/&gt;
user::rwx&lt;br/&gt;
group::---&lt;br/&gt;
other::---&lt;/li&gt;
&lt;/ol&gt;


&lt;p&gt;Creating a subdir in a directory without any ACLs set (patched Lustre client against patched Lustre server):&lt;/p&gt;

&lt;p&gt;&lt;span class=&quot;error&quot;&gt;&amp;#91;kent@n319 kent&amp;#93;&lt;/span&gt;$ umask; getfacl .; mkdir subdir; getfacl subdir&lt;br/&gt;
0077&lt;/p&gt;
&lt;ol&gt;
	&lt;li&gt;file: .&lt;/li&gt;
	&lt;li&gt;owner: kent&lt;/li&gt;
	&lt;li&gt;group: nsc&lt;br/&gt;
user::rwx&lt;br/&gt;
group::r-x&lt;br/&gt;
other::r-x&lt;/li&gt;
&lt;/ol&gt;


&lt;ol&gt;
	&lt;li&gt;file: subdir&lt;/li&gt;
	&lt;li&gt;owner: kent&lt;/li&gt;
	&lt;li&gt;group: nsc&lt;br/&gt;
user::rwx&lt;br/&gt;
group::r-x&lt;br/&gt;
other::r-x&lt;/li&gt;
&lt;/ol&gt;


&lt;p&gt;As the directory I was in did not have any default ACL, the umask should have been in effect. The question is why I got&lt;br/&gt;
r-x for group and other. I the umask was totally ignored, shouldn&apos;t I have got rwx? &lt;/p&gt;</comment>
                            <comment id="26775" author="laisiyao" created="Tue, 17 Jan 2012 20:24:28 +0000"  >&lt;p&gt;Hi Kent, currently lustre client doesn&apos;t enforce its umask to server, that means, the umask MDS uses is the one it gets when it&apos;s started (it&apos;s often 022 by default), I suspect you changed it to 077 on client in this test. I checked NFS, it looks to be the same, could you verify the result for it? And I am not quite sure what&apos;s the proper way for this, if server should use the umask client sets, the code needs some fundamental changes.&lt;/p&gt;</comment>
                            <comment id="26789" author="kent" created="Wed, 18 Jan 2012 03:36:46 +0000"  >&lt;p&gt;Let&apos;s show the regession I&apos;m talking about in my 17/Jan/12 11:13 AM comment, without setfacl/getfacl:&lt;/p&gt;

&lt;p&gt;$ umask 0022; mkdir subdir; ls -ld . subdir; rmdir subdir&lt;br/&gt;
drwxr-xr-x 14 kent nsc 4096 Jan 18 09:33 .&lt;br/&gt;
drwxr-xr-x  2 kent nsc 4096 Jan 18 09:33 subdir&lt;/p&gt;

&lt;p&gt;$ umask 0077; mkdir subdir; ls -ld . subdir; rmdir subdir&lt;br/&gt;
drwxr-xr-x 14 kent nsc 4096 Jan 18 09:33 .&lt;br/&gt;
drwx------  2 kent nsc 4096 Jan 18 09:33 subdir&lt;/p&gt;

&lt;p&gt;This is what I get on local ext4, NFS backed by XFS, and all our production Lustre file systems&lt;br/&gt;
(with or without ACLs enabled).&lt;/p&gt;

&lt;p&gt;Now, on my test Lustre filesystem, with client/server using the patchset for &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-974&quot; title=&quot;Lustre does not ignore umask when default ACL with mask is set&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-974&quot;&gt;&lt;del&gt;LU-974&lt;/del&gt;&lt;/a&gt;, I get:&lt;/p&gt;

&lt;p&gt;&lt;span class=&quot;error&quot;&gt;&amp;#91;kent@ossspare kent&amp;#93;&lt;/span&gt;$ umask 0022; mkdir subdir; ls -ld . subdir; rmdir subdir&lt;br/&gt;
drwxr-xr-x 4 kent build 4096 Jan 18 10:35 .&lt;br/&gt;
drwxr-xr-x 2 kent kent  4096 Jan 18 10:35 subdir&lt;/p&gt;

&lt;p&gt;&lt;span class=&quot;error&quot;&gt;&amp;#91;kent@ossspare kent&amp;#93;&lt;/span&gt;$ umask 0077; mkdir subdir; ls -ld . subdir; rmdir subdir&lt;br/&gt;
drwxr-xr-x 4 kent build 4096 Jan 18 10:36 .&lt;br/&gt;
drwxr-xr-x 2 kent kent  4096 Jan 18 10:36 subdir&lt;/p&gt;</comment>
                            <comment id="26803" author="laisiyao" created="Wed, 18 Jan 2012 11:29:40 +0000"  >&lt;p&gt;Ahh, I see what&apos;s going on now:&lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;VFS ignores umask if acl enabled, and the disk filesystem (eg. ext4) will enforce umask if default acl doesn&apos;t exist.&lt;/li&gt;
	&lt;li&gt;nfs always enforece umask, but if default acl exists, it will update acl, and the final result is correct.&lt;/li&gt;
	&lt;li&gt;Lustre follows VFS&apos; way, and it leaves it to ldiskfs to enforce umask if default acl doesn&apos;t exist, but unfortunately lustre client and server doesn&apos;t share umask for requests, so if client changes its umask, it will not reflect on server, and the result is incorrect.&lt;/li&gt;
&lt;/ul&gt;


&lt;p&gt;I need think it over again on how to implement it correctly, because the way nfs does may cause extra RPCs, and if we follow the VFS way, client and server need to share umask, which will cause in-wire data change.&lt;/p&gt;</comment>
                            <comment id="27163" author="laisiyao" created="Sat, 21 Jan 2012 02:47:14 +0000"  >&lt;p&gt;Hi Kent, I&apos;ve chosen to follow VFS&apos;s way, and updated the patches, would you verify it again?&lt;/p&gt;</comment>
                            <comment id="27173" author="kent" created="Mon, 23 Jan 2012 04:41:18 +0000"  >&lt;p&gt;Where do I get your updated patches? I looked at &lt;a href=&quot;http://review.whamcloud.com/#change,1964&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://review.whamcloud.com/#change,1964&lt;/a&gt; but see no update there.&lt;/p&gt;

&lt;p&gt;A question: if this changes both client and server, how will it work when one uses combinations like&lt;br/&gt;
unfixed client -&amp;gt; fixed server, fixed client -&amp;gt; unfixed server etc?&lt;/p&gt;</comment>
                            <comment id="27291" author="kent" created="Wed, 25 Jan 2012 09:10:35 +0000"  >&lt;p&gt;&lt;b&gt;ping&lt;/b&gt; See my 23/Jan/12 4:41 AM comment.&lt;/p&gt;</comment>
                            <comment id="27292" author="pjones" created="Wed, 25 Jan 2012 09:18:25 +0000"  >&lt;p&gt;hi Kent&lt;/p&gt;

&lt;p&gt;Lai is out of the office on vacation. I will see whether another engineer can answer in his absence&lt;/p&gt;

&lt;p&gt;Peter&lt;/p&gt;</comment>
                            <comment id="27293" author="pjones" created="Wed, 25 Jan 2012 09:20:46 +0000"  >&lt;p&gt;The b1_8 version of the patch is &lt;a href=&quot;http://review.whamcloud.com/#change,1976&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://review.whamcloud.com/#change,1976&lt;/a&gt;&lt;br/&gt;
The master version of the patch is &lt;a href=&quot;http://review.whamcloud.com/#change,1972&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://review.whamcloud.com/#change,1972&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="27294" author="kent" created="Wed, 25 Jan 2012 09:23:30 +0000"  >&lt;p&gt;Peter, thanks for the code links. My other question can wait until Lai is back.&lt;/p&gt;</comment>
                            <comment id="27303" author="pjones" created="Wed, 25 Jan 2012 09:42:37 +0000"  >&lt;p&gt;ok Kent - that will be on Monday&lt;/p&gt;</comment>
                            <comment id="27556" author="laisiyao" created="Sat, 28 Jan 2012 22:18:42 +0000"  >&lt;p&gt;Hi Kent, the fix changes both client and server, the result of different deployment is as below:&lt;/p&gt;

&lt;ul&gt;
	&lt;li&gt;fixed client   &amp;lt;-&amp;gt; fixed server:   Okay!&lt;/li&gt;
	&lt;li&gt;fixed client   &amp;lt;-&amp;gt; unfixed server: server always uses umask 022 in inode creation normally no matter default ACL with mask is set. The umask on client will be ignored.&lt;/li&gt;
	&lt;li&gt;unfixed client &amp;lt;&lt;del&gt;&amp;gt; fixed server:   umask always enforced, same as unfixed client &amp;lt;&lt;/del&gt;&amp;gt; unfixed server.&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="28038" author="kent" created="Tue, 7 Feb 2012 07:57:33 +0000"  >&lt;p&gt;I&apos;ve now tested your patch on a test server and it seems OK as far as our rather limit ACL testing is concerned.&lt;/p&gt;

&lt;p&gt;If I understand your fixed-vs-unfixed list above, unfixed client towards fixed server should be no problem,&lt;br/&gt;
but I am not sure about the consequences of fixed client towards unfixed server above. When will the&lt;br/&gt;
behaviour differ from the case with unfixed-unfixed and how? We should be careful not to introduce security issues&lt;br/&gt;
(like setting too permissive rights on files and directories).&lt;/p&gt;</comment>
                            <comment id="28458" author="laisiyao" created="Sun, 12 Feb 2012 20:40:49 +0000"  >&lt;p&gt;Hi Kent, I updated the patch after my last comment, now for the fixed-vs-unfixed cases, only when both server and client get fixed, it will act correctly; while for other cases, it behaves the old way (umask always enforced no matter default ACL with mask set or not), so no new security issues introduced. &lt;/p&gt;</comment>
                            <comment id="28480" author="kent" created="Mon, 13 Feb 2012 03:10:00 +0000"  >&lt;p&gt;Would that updated patch be Patch Set 3 of &lt;a href=&quot;http://review.whamcloud.com/#change,1976&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://review.whamcloud.com/#change,1976&lt;/a&gt; ?&lt;/p&gt;</comment>
                            <comment id="28488" author="laisiyao" created="Mon, 13 Feb 2012 07:56:23 +0000"  >&lt;p&gt;Yes.&lt;/p&gt;</comment>
                            <comment id="28867" author="kent" created="Thu, 16 Feb 2012 07:41:28 +0000"  >&lt;p&gt;So, what will happen to this patch now? Will it be landed to b1_8 and master? When?&lt;/p&gt;</comment>
                            <comment id="28873" author="pjones" created="Thu, 16 Feb 2012 08:39:53 +0000"  >&lt;p&gt;Kent&lt;/p&gt;

&lt;p&gt;Yes, the patches should land for both b1_8 and master once the respective changesets have two positive inspections and have passed autotest.&lt;/p&gt;

&lt;p&gt;Peter&lt;/p&gt;</comment>
                            <comment id="31060" author="adilger" created="Tue, 13 Mar 2012 17:03:16 +0000"  >&lt;p&gt;The value assigned to OBD_CONNECT_UMASK in this patch has a potential conflict with OBD_CONNECT_GRANT_PARAM, which was just reserved on master and orion for a separate feature.&lt;/p&gt;

&lt;p&gt;Fortunately, it is possible to change OBD_CONNECT_GRANT_PARAM because it is not currently in use on these branches, but it is lucky that there was not a more serious fallout from using OBD_CONNECT flags without reserving them on the other branches first.  Patches are:&lt;/p&gt;

&lt;p&gt;orion: &lt;a href=&quot;http://review.whamcloud.com/2296&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://review.whamcloud.com/2296&lt;/a&gt;&lt;br/&gt;
master: &lt;a href=&quot;http://review.whamcloud.com/2297&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://review.whamcloud.com/2297&lt;/a&gt;&lt;br/&gt;
b1_8: &lt;a href=&quot;http://review.whamcloud.com/2298&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://review.whamcloud.com/2298&lt;/a&gt;&lt;br/&gt;
b2_1: &lt;a href=&quot;http://review.whamcloud.com/2299&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://review.whamcloud.com/2299&lt;/a&gt;&lt;br/&gt;
b2_2: &lt;a href=&quot;http://review.whamcloud.com/2301&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://review.whamcloud.com/2301&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="32357" author="hudson" created="Wed, 28 Mar 2012 23:54: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-b2_2/./arch=i686,build_type=client,distro=el6,ib_stack=ofa/18/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-b2_2 &#187; i686,client,el6,ofa #18&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-974&quot; title=&quot;Lustre does not ignore umask when default ACL with mask is set&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-974&quot;&gt;&lt;del&gt;LU-974&lt;/del&gt;&lt;/a&gt; protocol: change OBD_CONNECT_GRANT_PARAM (Revision 0aea0520956beb402c75cafe621b67fadff42d43)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&gt;
Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/b2_2&amp;amp;a=commit&amp;amp;h=0aea0520956beb402c75cafe621b67fadff42d43&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;0aea0520956beb402c75cafe621b67fadff42d43&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/ptlrpc/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/lustre_idl.h&lt;/li&gt;
	&lt;li&gt;lustre/obdclass/lprocfs_status.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/wirecheck.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="32358" author="hudson" created="Wed, 28 Mar 2012 23:56: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-b2_2/./arch=i686,build_type=server,distro=el6,ib_stack=ofa/18/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-b2_2 &#187; i686,server,el6,ofa #18&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-974&quot; title=&quot;Lustre does not ignore umask when default ACL with mask is set&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-974&quot;&gt;&lt;del&gt;LU-974&lt;/del&gt;&lt;/a&gt; protocol: change OBD_CONNECT_GRANT_PARAM (Revision 0aea0520956beb402c75cafe621b67fadff42d43)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&gt;
Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/b2_2&amp;amp;a=commit&amp;amp;h=0aea0520956beb402c75cafe621b67fadff42d43&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;0aea0520956beb402c75cafe621b67fadff42d43&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/utils/wirecheck.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/obdclass/lprocfs_status.c&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/lustre_idl.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="32359" author="hudson" created="Thu, 29 Mar 2012 00:01:26 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-b2_2/./arch=x86_64,build_type=client,distro=el6,ib_stack=inkernel/18/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-b2_2 &#187; x86_64,client,el6,inkernel #18&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-974&quot; title=&quot;Lustre does not ignore umask when default ACL with mask is set&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-974&quot;&gt;&lt;del&gt;LU-974&lt;/del&gt;&lt;/a&gt; protocol: change OBD_CONNECT_GRANT_PARAM (Revision 0aea0520956beb402c75cafe621b67fadff42d43)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&gt;
Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/b2_2&amp;amp;a=commit&amp;amp;h=0aea0520956beb402c75cafe621b67fadff42d43&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;0aea0520956beb402c75cafe621b67fadff42d43&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/utils/wirecheck.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/lustre_idl.h&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/obdclass/lprocfs_status.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="32360" author="hudson" created="Thu, 29 Mar 2012 00:02:47 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-b2_2/./arch=i686,build_type=client,distro=el6,ib_stack=inkernel/18/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-b2_2 &#187; i686,client,el6,inkernel #18&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-974&quot; title=&quot;Lustre does not ignore umask when default ACL with mask is set&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-974&quot;&gt;&lt;del&gt;LU-974&lt;/del&gt;&lt;/a&gt; protocol: change OBD_CONNECT_GRANT_PARAM (Revision 0aea0520956beb402c75cafe621b67fadff42d43)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&gt;
Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/b2_2&amp;amp;a=commit&amp;amp;h=0aea0520956beb402c75cafe621b67fadff42d43&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;0aea0520956beb402c75cafe621b67fadff42d43&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/ptlrpc/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/wirecheck.c&lt;/li&gt;
	&lt;li&gt;lustre/obdclass/lprocfs_status.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/lustre_idl.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="32361" author="hudson" created="Thu, 29 Mar 2012 00:05: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-b2_2/./arch=x86_64,build_type=client,distro=sles11,ib_stack=inkernel/18/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-b2_2 &#187; x86_64,client,sles11,inkernel #18&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-974&quot; title=&quot;Lustre does not ignore umask when default ACL with mask is set&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-974&quot;&gt;&lt;del&gt;LU-974&lt;/del&gt;&lt;/a&gt; protocol: change OBD_CONNECT_GRANT_PARAM (Revision 0aea0520956beb402c75cafe621b67fadff42d43)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&gt;
Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/b2_2&amp;amp;a=commit&amp;amp;h=0aea0520956beb402c75cafe621b67fadff42d43&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;0aea0520956beb402c75cafe621b67fadff42d43&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/utils/wirecheck.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/lustre_idl.h&lt;/li&gt;
	&lt;li&gt;lustre/obdclass/lprocfs_status.c&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/wiretest.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="32362" author="hudson" created="Thu, 29 Mar 2012 00:05: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-b2_2/./arch=x86_64,build_type=client,distro=ubuntu1004,ib_stack=inkernel/18/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-b2_2 &#187; x86_64,client,ubuntu1004,inkernel #18&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-974&quot; title=&quot;Lustre does not ignore umask when default ACL with mask is set&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-974&quot;&gt;&lt;del&gt;LU-974&lt;/del&gt;&lt;/a&gt; protocol: change OBD_CONNECT_GRANT_PARAM (Revision 0aea0520956beb402c75cafe621b67fadff42d43)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&gt;
Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/b2_2&amp;amp;a=commit&amp;amp;h=0aea0520956beb402c75cafe621b67fadff42d43&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;0aea0520956beb402c75cafe621b67fadff42d43&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/include/lustre/lustre_idl.h&lt;/li&gt;
	&lt;li&gt;lustre/utils/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/wirecheck.c&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/obdclass/lprocfs_status.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="32363" author="hudson" created="Thu, 29 Mar 2012 00:07: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-b2_2/./arch=i686,build_type=server,distro=el6,ib_stack=inkernel/18/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-b2_2 &#187; i686,server,el6,inkernel #18&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-974&quot; title=&quot;Lustre does not ignore umask when default ACL with mask is set&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-974&quot;&gt;&lt;del&gt;LU-974&lt;/del&gt;&lt;/a&gt; protocol: change OBD_CONNECT_GRANT_PARAM (Revision 0aea0520956beb402c75cafe621b67fadff42d43)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&gt;
Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/b2_2&amp;amp;a=commit&amp;amp;h=0aea0520956beb402c75cafe621b67fadff42d43&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;0aea0520956beb402c75cafe621b67fadff42d43&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/obdclass/lprocfs_status.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/lustre_idl.h&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/wirecheck.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="32365" author="hudson" created="Thu, 29 Mar 2012 00:12:06 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-b2_2/./arch=i686,build_type=client,distro=el5,ib_stack=inkernel/18/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-b2_2 &#187; i686,client,el5,inkernel #18&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-974&quot; title=&quot;Lustre does not ignore umask when default ACL with mask is set&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-974&quot;&gt;&lt;del&gt;LU-974&lt;/del&gt;&lt;/a&gt; protocol: change OBD_CONNECT_GRANT_PARAM (Revision 0aea0520956beb402c75cafe621b67fadff42d43)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&gt;
Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/b2_2&amp;amp;a=commit&amp;amp;h=0aea0520956beb402c75cafe621b67fadff42d43&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;0aea0520956beb402c75cafe621b67fadff42d43&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/utils/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/wirecheck.c&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/obdclass/lprocfs_status.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/lustre_idl.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="32388" author="hudson" created="Thu, 29 Mar 2012 00:24:04 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-b2_2/./arch=x86_64,build_type=client,distro=el6,ib_stack=ofa/18/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-b2_2 &#187; x86_64,client,el6,ofa #18&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-974&quot; title=&quot;Lustre does not ignore umask when default ACL with mask is set&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-974&quot;&gt;&lt;del&gt;LU-974&lt;/del&gt;&lt;/a&gt; protocol: change OBD_CONNECT_GRANT_PARAM (Revision 0aea0520956beb402c75cafe621b67fadff42d43)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&gt;
Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/b2_2&amp;amp;a=commit&amp;amp;h=0aea0520956beb402c75cafe621b67fadff42d43&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;0aea0520956beb402c75cafe621b67fadff42d43&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/utils/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/wirecheck.c&lt;/li&gt;
	&lt;li&gt;lustre/obdclass/lprocfs_status.c&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/lustre_idl.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="32400" author="hudson" created="Thu, 29 Mar 2012 00:27: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-b2_2/./arch=i686,build_type=server,distro=el5,ib_stack=ofa/18/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-b2_2 &#187; i686,server,el5,ofa #18&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-974&quot; title=&quot;Lustre does not ignore umask when default ACL with mask is set&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-974&quot;&gt;&lt;del&gt;LU-974&lt;/del&gt;&lt;/a&gt; protocol: change OBD_CONNECT_GRANT_PARAM (Revision 0aea0520956beb402c75cafe621b67fadff42d43)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&gt;
Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/b2_2&amp;amp;a=commit&amp;amp;h=0aea0520956beb402c75cafe621b67fadff42d43&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;0aea0520956beb402c75cafe621b67fadff42d43&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/obdclass/lprocfs_status.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/lustre_idl.h&lt;/li&gt;
	&lt;li&gt;lustre/utils/wirecheck.c&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/wiretest.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="32434" author="hudson" created="Thu, 29 Mar 2012 00:32:24 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-b2_2/./arch=i686,build_type=client,distro=el5,ib_stack=ofa/18/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-b2_2 &#187; i686,client,el5,ofa #18&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-974&quot; title=&quot;Lustre does not ignore umask when default ACL with mask is set&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-974&quot;&gt;&lt;del&gt;LU-974&lt;/del&gt;&lt;/a&gt; protocol: change OBD_CONNECT_GRANT_PARAM (Revision 0aea0520956beb402c75cafe621b67fadff42d43)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&gt;
Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/b2_2&amp;amp;a=commit&amp;amp;h=0aea0520956beb402c75cafe621b67fadff42d43&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;0aea0520956beb402c75cafe621b67fadff42d43&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/utils/wirecheck.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/lustre_idl.h&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/obdclass/lprocfs_status.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="32435" author="hudson" created="Thu, 29 Mar 2012 00:53: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-b2_2/./arch=x86_64,build_type=server,distro=el6,ib_stack=inkernel/18/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-b2_2 &#187; x86_64,server,el6,inkernel #18&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-974&quot; title=&quot;Lustre does not ignore umask when default ACL with mask is set&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-974&quot;&gt;&lt;del&gt;LU-974&lt;/del&gt;&lt;/a&gt; protocol: change OBD_CONNECT_GRANT_PARAM (Revision 0aea0520956beb402c75cafe621b67fadff42d43)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&gt;
Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/b2_2&amp;amp;a=commit&amp;amp;h=0aea0520956beb402c75cafe621b67fadff42d43&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;0aea0520956beb402c75cafe621b67fadff42d43&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/utils/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/obdclass/lprocfs_status.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/wirecheck.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/lustre_idl.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="32436" author="hudson" created="Thu, 29 Mar 2012 00:53: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-b2_2/./arch=i686,build_type=server,distro=el5,ib_stack=inkernel/18/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-b2_2 &#187; i686,server,el5,inkernel #18&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-974&quot; title=&quot;Lustre does not ignore umask when default ACL with mask is set&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-974&quot;&gt;&lt;del&gt;LU-974&lt;/del&gt;&lt;/a&gt; protocol: change OBD_CONNECT_GRANT_PARAM (Revision 0aea0520956beb402c75cafe621b67fadff42d43)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&gt;
Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/b2_2&amp;amp;a=commit&amp;amp;h=0aea0520956beb402c75cafe621b67fadff42d43&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;0aea0520956beb402c75cafe621b67fadff42d43&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/ptlrpc/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/lustre_idl.h&lt;/li&gt;
	&lt;li&gt;lustre/utils/wirecheck.c&lt;/li&gt;
	&lt;li&gt;lustre/obdclass/lprocfs_status.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/wiretest.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="32492" author="hudson" created="Thu, 29 Mar 2012 01:22:06 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-b2_2/./arch=x86_64,build_type=client,distro=el5,ib_stack=inkernel/18/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-b2_2 &#187; x86_64,client,el5,inkernel #18&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-974&quot; title=&quot;Lustre does not ignore umask when default ACL with mask is set&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-974&quot;&gt;&lt;del&gt;LU-974&lt;/del&gt;&lt;/a&gt; protocol: change OBD_CONNECT_GRANT_PARAM (Revision 0aea0520956beb402c75cafe621b67fadff42d43)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&gt;
Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/b2_2&amp;amp;a=commit&amp;amp;h=0aea0520956beb402c75cafe621b67fadff42d43&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;0aea0520956beb402c75cafe621b67fadff42d43&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/obdclass/lprocfs_status.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/lustre_idl.h&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/wirecheck.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="32504" author="hudson" created="Thu, 29 Mar 2012 01:35:13 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-b2_2/./arch=x86_64,build_type=server,distro=el6,ib_stack=ofa/18/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-b2_2 &#187; x86_64,server,el6,ofa #18&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-974&quot; title=&quot;Lustre does not ignore umask when default ACL with mask is set&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-974&quot;&gt;&lt;del&gt;LU-974&lt;/del&gt;&lt;/a&gt; protocol: change OBD_CONNECT_GRANT_PARAM (Revision 0aea0520956beb402c75cafe621b67fadff42d43)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&gt;
Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/b2_2&amp;amp;a=commit&amp;amp;h=0aea0520956beb402c75cafe621b67fadff42d43&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;0aea0520956beb402c75cafe621b67fadff42d43&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/obdclass/lprocfs_status.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/lustre_idl.h&lt;/li&gt;
	&lt;li&gt;lustre/utils/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/wirecheck.c&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/wiretest.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="32527" author="hudson" created="Thu, 29 Mar 2012 01:42: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-b2_2/./arch=x86_64,build_type=server,distro=el5,ib_stack=inkernel/18/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-b2_2 &#187; x86_64,server,el5,inkernel #18&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-974&quot; title=&quot;Lustre does not ignore umask when default ACL with mask is set&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-974&quot;&gt;&lt;del&gt;LU-974&lt;/del&gt;&lt;/a&gt; protocol: change OBD_CONNECT_GRANT_PARAM (Revision 0aea0520956beb402c75cafe621b67fadff42d43)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&gt;
Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/b2_2&amp;amp;a=commit&amp;amp;h=0aea0520956beb402c75cafe621b67fadff42d43&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;0aea0520956beb402c75cafe621b67fadff42d43&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/ptlrpc/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/wirecheck.c&lt;/li&gt;
	&lt;li&gt;lustre/obdclass/lprocfs_status.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/lustre_idl.h&lt;/li&gt;
	&lt;li&gt;lustre/utils/wiretest.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="32528" author="hudson" created="Thu, 29 Mar 2012 01:58:16 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-b2_2/./arch=x86_64,build_type=client,distro=el5,ib_stack=ofa/18/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-b2_2 &#187; x86_64,client,el5,ofa #18&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-974&quot; title=&quot;Lustre does not ignore umask when default ACL with mask is set&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-974&quot;&gt;&lt;del&gt;LU-974&lt;/del&gt;&lt;/a&gt; protocol: change OBD_CONNECT_GRANT_PARAM (Revision 0aea0520956beb402c75cafe621b67fadff42d43)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&gt;
Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/b2_2&amp;amp;a=commit&amp;amp;h=0aea0520956beb402c75cafe621b67fadff42d43&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;0aea0520956beb402c75cafe621b67fadff42d43&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/include/lustre/lustre_idl.h&lt;/li&gt;
	&lt;li&gt;lustre/utils/wirecheck.c&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/obdclass/lprocfs_status.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="32589" author="hudson" created="Thu, 29 Mar 2012 03:22: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/red.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=i686,build_type=client,distro=el5,ib_stack=ofa/531/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,client,el5,ofa #531&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-974&quot; title=&quot;Lustre does not ignore umask when default ACL with mask is set&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-974&quot;&gt;&lt;del&gt;LU-974&lt;/del&gt;&lt;/a&gt; protocol: change OBD_CONNECT_GRANT_PARAM (Revision 25c24649c49a6feea5f75a80125d08892f6b1657)&lt;/p&gt;

&lt;p&gt;     Result = FAILURE&lt;br/&gt;
Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=25c24649c49a6feea5f75a80125d08892f6b1657&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;25c24649c49a6feea5f75a80125d08892f6b1657&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/utils/wirecheck.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/obdclass/lprocfs_status.c&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/lustre_idl.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="32602" author="hudson" created="Thu, 29 Mar 2012 03:29: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=server,distro=el6,ib_stack=inkernel/531/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,server,el6,inkernel #531&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-974&quot; title=&quot;Lustre does not ignore umask when default ACL with mask is set&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-974&quot;&gt;&lt;del&gt;LU-974&lt;/del&gt;&lt;/a&gt; protocol: change OBD_CONNECT_GRANT_PARAM (Revision 25c24649c49a6feea5f75a80125d08892f6b1657)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&gt;
Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=25c24649c49a6feea5f75a80125d08892f6b1657&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;25c24649c49a6feea5f75a80125d08892f6b1657&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/utils/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/obdclass/lprocfs_status.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/lustre_idl.h&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/wirecheck.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="32614" author="hudson" created="Thu, 29 Mar 2012 03:29: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/red.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=x86_64,build_type=client,distro=el6,ib_stack=ofa/531/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,el6,ofa #531&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-974&quot; title=&quot;Lustre does not ignore umask when default ACL with mask is set&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-974&quot;&gt;&lt;del&gt;LU-974&lt;/del&gt;&lt;/a&gt; protocol: change OBD_CONNECT_GRANT_PARAM (Revision 25c24649c49a6feea5f75a80125d08892f6b1657)&lt;/p&gt;

&lt;p&gt;     Result = FAILURE&lt;br/&gt;
Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=25c24649c49a6feea5f75a80125d08892f6b1657&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;25c24649c49a6feea5f75a80125d08892f6b1657&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/ptlrpc/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/lustre_idl.h&lt;/li&gt;
	&lt;li&gt;lustre/utils/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/wirecheck.c&lt;/li&gt;
	&lt;li&gt;lustre/obdclass/lprocfs_status.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="32626" author="hudson" created="Thu, 29 Mar 2012 03:30: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=client,distro=el6,ib_stack=inkernel/531/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,client,el6,inkernel #531&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-974&quot; title=&quot;Lustre does not ignore umask when default ACL with mask is set&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-974&quot;&gt;&lt;del&gt;LU-974&lt;/del&gt;&lt;/a&gt; protocol: change OBD_CONNECT_GRANT_PARAM (Revision 25c24649c49a6feea5f75a80125d08892f6b1657)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&gt;
Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=25c24649c49a6feea5f75a80125d08892f6b1657&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;25c24649c49a6feea5f75a80125d08892f6b1657&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/utils/wirecheck.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/obdclass/lprocfs_status.c&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/lustre_idl.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="32639" author="hudson" created="Thu, 29 Mar 2012 03:31:51 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/red.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=i686,build_type=server,distro=el5,ib_stack=ofa/531/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,server,el5,ofa #531&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-974&quot; title=&quot;Lustre does not ignore umask when default ACL with mask is set&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-974&quot;&gt;&lt;del&gt;LU-974&lt;/del&gt;&lt;/a&gt; protocol: change OBD_CONNECT_GRANT_PARAM (Revision 25c24649c49a6feea5f75a80125d08892f6b1657)&lt;/p&gt;

&lt;p&gt;     Result = FAILURE&lt;br/&gt;
Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=25c24649c49a6feea5f75a80125d08892f6b1657&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;25c24649c49a6feea5f75a80125d08892f6b1657&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/utils/wirecheck.c&lt;/li&gt;
	&lt;li&gt;lustre/obdclass/lprocfs_status.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/lustre_idl.h&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/wiretest.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="32651" author="hudson" created="Thu, 29 Mar 2012 03:32:31 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/red.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=i686,build_type=client,distro=el6,ib_stack=ofa/531/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,client,el6,ofa #531&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-974&quot; title=&quot;Lustre does not ignore umask when default ACL with mask is set&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-974&quot;&gt;&lt;del&gt;LU-974&lt;/del&gt;&lt;/a&gt; protocol: change OBD_CONNECT_GRANT_PARAM (Revision 25c24649c49a6feea5f75a80125d08892f6b1657)&lt;/p&gt;

&lt;p&gt;     Result = FAILURE&lt;br/&gt;
Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=25c24649c49a6feea5f75a80125d08892f6b1657&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;25c24649c49a6feea5f75a80125d08892f6b1657&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/obdclass/lprocfs_status.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/wirecheck.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/lustre_idl.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="32663" author="hudson" created="Thu, 29 Mar 2012 03:34: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/red.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=i686,build_type=server,distro=el6,ib_stack=ofa/531/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,server,el6,ofa #531&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-974&quot; title=&quot;Lustre does not ignore umask when default ACL with mask is set&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-974&quot;&gt;&lt;del&gt;LU-974&lt;/del&gt;&lt;/a&gt; protocol: change OBD_CONNECT_GRANT_PARAM (Revision 25c24649c49a6feea5f75a80125d08892f6b1657)&lt;/p&gt;

&lt;p&gt;     Result = FAILURE&lt;br/&gt;
Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=25c24649c49a6feea5f75a80125d08892f6b1657&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;25c24649c49a6feea5f75a80125d08892f6b1657&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/include/lustre/lustre_idl.h&lt;/li&gt;
	&lt;li&gt;lustre/utils/wirecheck.c&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/obdclass/lprocfs_status.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="32675" author="hudson" created="Thu, 29 Mar 2012 03:38: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=client,distro=sles11,ib_stack=inkernel/531/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,sles11,inkernel #531&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-974&quot; title=&quot;Lustre does not ignore umask when default ACL with mask is set&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-974&quot;&gt;&lt;del&gt;LU-974&lt;/del&gt;&lt;/a&gt; protocol: change OBD_CONNECT_GRANT_PARAM (Revision 25c24649c49a6feea5f75a80125d08892f6b1657)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&gt;
Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=25c24649c49a6feea5f75a80125d08892f6b1657&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;25c24649c49a6feea5f75a80125d08892f6b1657&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/utils/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/wirecheck.c&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/obdclass/lprocfs_status.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/lustre_idl.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="32687" author="hudson" created="Thu, 29 Mar 2012 03:38: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/531/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,ubuntu1004,inkernel #531&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-974&quot; title=&quot;Lustre does not ignore umask when default ACL with mask is set&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-974&quot;&gt;&lt;del&gt;LU-974&lt;/del&gt;&lt;/a&gt; protocol: change OBD_CONNECT_GRANT_PARAM (Revision 25c24649c49a6feea5f75a80125d08892f6b1657)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&gt;
Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=25c24649c49a6feea5f75a80125d08892f6b1657&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;25c24649c49a6feea5f75a80125d08892f6b1657&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/include/lustre/lustre_idl.h&lt;/li&gt;
	&lt;li&gt;lustre/obdclass/lprocfs_status.c&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/wirecheck.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="32689" author="hudson" created="Thu, 29 Mar 2012 03:41:26 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-b1_8/./arch=i686,build_type=client,distro=el6,ib_stack=inkernel/185/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-b1_8 &#187; i686,client,el6,inkernel #185&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-974&quot; title=&quot;Lustre does not ignore umask when default ACL with mask is set&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-974&quot;&gt;&lt;del&gt;LU-974&lt;/del&gt;&lt;/a&gt; protocol: change OBD_CONNECT_GRANT_PARAM (Revision d1399bd1c1e7523721518079836e4e0fe1b07316)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&gt;
Johann Lombardi : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/b1_8&amp;amp;a=commit&amp;amp;h=d1399bd1c1e7523721518079836e4e0fe1b07316&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;d1399bd1c1e7523721518079836e4e0fe1b07316&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/utils/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/lustre_idl.h&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/wirecheck.c&lt;/li&gt;
	&lt;li&gt;lustre/obdclass/lprocfs_status.c&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/pack_generic.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="32700" author="hudson" created="Thu, 29 Mar 2012 03:43:31 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=i686,build_type=client,distro=el5,ib_stack=inkernel/531/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,client,el5,inkernel #531&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-974&quot; title=&quot;Lustre does not ignore umask when default ACL with mask is set&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-974&quot;&gt;&lt;del&gt;LU-974&lt;/del&gt;&lt;/a&gt; protocol: change OBD_CONNECT_GRANT_PARAM (Revision 25c24649c49a6feea5f75a80125d08892f6b1657)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&gt;
Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=25c24649c49a6feea5f75a80125d08892f6b1657&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;25c24649c49a6feea5f75a80125d08892f6b1657&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/obdclass/lprocfs_status.c&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/lustre_idl.h&lt;/li&gt;
	&lt;li&gt;lustre/utils/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/wirecheck.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="32712" author="hudson" created="Thu, 29 Mar 2012 03:56: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=server,distro=el5,ib_stack=inkernel/531/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,server,el5,inkernel #531&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-974&quot; title=&quot;Lustre does not ignore umask when default ACL with mask is set&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-974&quot;&gt;&lt;del&gt;LU-974&lt;/del&gt;&lt;/a&gt; protocol: change OBD_CONNECT_GRANT_PARAM (Revision 25c24649c49a6feea5f75a80125d08892f6b1657)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&gt;
Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=25c24649c49a6feea5f75a80125d08892f6b1657&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;25c24649c49a6feea5f75a80125d08892f6b1657&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/obdclass/lprocfs_status.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/wirecheck.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/lustre_idl.h&lt;/li&gt;
	&lt;li&gt;lustre/utils/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/wiretest.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="32716" author="hudson" created="Thu, 29 Mar 2012 04:12: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-b1_8/./arch=x86_64,build_type=client,distro=ubuntu1004,ib_stack=inkernel/185/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-b1_8 &#187; x86_64,client,ubuntu1004,inkernel #185&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-974&quot; title=&quot;Lustre does not ignore umask when default ACL with mask is set&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-974&quot;&gt;&lt;del&gt;LU-974&lt;/del&gt;&lt;/a&gt; protocol: change OBD_CONNECT_GRANT_PARAM (Revision d1399bd1c1e7523721518079836e4e0fe1b07316)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&gt;
Johann Lombardi : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/b1_8&amp;amp;a=commit&amp;amp;h=d1399bd1c1e7523721518079836e4e0fe1b07316&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;d1399bd1c1e7523721518079836e4e0fe1b07316&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/utils/wirecheck.c&lt;/li&gt;
	&lt;li&gt;lustre/obdclass/lprocfs_status.c&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/pack_generic.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/lustre_idl.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="32727" author="hudson" created="Thu, 29 Mar 2012 04:12:34 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/red.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=x86_64,build_type=server,distro=el6,ib_stack=ofa/531/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,server,el6,ofa #531&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-974&quot; title=&quot;Lustre does not ignore umask when default ACL with mask is set&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-974&quot;&gt;&lt;del&gt;LU-974&lt;/del&gt;&lt;/a&gt; protocol: change OBD_CONNECT_GRANT_PARAM (Revision 25c24649c49a6feea5f75a80125d08892f6b1657)&lt;/p&gt;

&lt;p&gt;     Result = FAILURE&lt;br/&gt;
Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=25c24649c49a6feea5f75a80125d08892f6b1657&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;25c24649c49a6feea5f75a80125d08892f6b1657&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/obdclass/lprocfs_status.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/lustre_idl.h&lt;/li&gt;
	&lt;li&gt;lustre/utils/wirecheck.c&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/wiretest.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="32739" author="hudson" created="Thu, 29 Mar 2012 04:18:56 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=x86_64,build_type=client,distro=el6,ib_stack=inkernel/531/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,el6,inkernel #531&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-974&quot; title=&quot;Lustre does not ignore umask when default ACL with mask is set&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-974&quot;&gt;&lt;del&gt;LU-974&lt;/del&gt;&lt;/a&gt; protocol: change OBD_CONNECT_GRANT_PARAM (Revision 25c24649c49a6feea5f75a80125d08892f6b1657)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&gt;
Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=25c24649c49a6feea5f75a80125d08892f6b1657&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;25c24649c49a6feea5f75a80125d08892f6b1657&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/utils/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/lustre_idl.h&lt;/li&gt;
	&lt;li&gt;lustre/obdclass/lprocfs_status.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/wirecheck.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="32741" author="hudson" created="Thu, 29 Mar 2012 04:20: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-b1_8/./arch=i686,build_type=client,distro=el5,ib_stack=inkernel/185/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-b1_8 &#187; i686,client,el5,inkernel #185&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-974&quot; title=&quot;Lustre does not ignore umask when default ACL with mask is set&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-974&quot;&gt;&lt;del&gt;LU-974&lt;/del&gt;&lt;/a&gt; protocol: change OBD_CONNECT_GRANT_PARAM (Revision d1399bd1c1e7523721518079836e4e0fe1b07316)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&gt;
Johann Lombardi : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/b1_8&amp;amp;a=commit&amp;amp;h=d1399bd1c1e7523721518079836e4e0fe1b07316&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;d1399bd1c1e7523721518079836e4e0fe1b07316&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/include/lustre/lustre_idl.h&lt;/li&gt;
	&lt;li&gt;lustre/utils/wirecheck.c&lt;/li&gt;
	&lt;li&gt;lustre/obdclass/lprocfs_status.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/pack_generic.c&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/wiretest.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="32748" author="hudson" created="Thu, 29 Mar 2012 04:30:21 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-b1_8/./arch=i686,build_type=client,distro=el5,ib_stack=ofa/185/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-b1_8 &#187; i686,client,el5,ofa #185&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-974&quot; title=&quot;Lustre does not ignore umask when default ACL with mask is set&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-974&quot;&gt;&lt;del&gt;LU-974&lt;/del&gt;&lt;/a&gt; protocol: change OBD_CONNECT_GRANT_PARAM (Revision d1399bd1c1e7523721518079836e4e0fe1b07316)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&gt;
Johann Lombardi : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/b1_8&amp;amp;a=commit&amp;amp;h=d1399bd1c1e7523721518079836e4e0fe1b07316&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;d1399bd1c1e7523721518079836e4e0fe1b07316&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/include/lustre/lustre_idl.h&lt;/li&gt;
	&lt;li&gt;lustre/utils/wirecheck.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/pack_generic.c&lt;/li&gt;
	&lt;li&gt;lustre/obdclass/lprocfs_status.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="32749" author="hudson" created="Thu, 29 Mar 2012 04:37:24 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-b1_8/./arch=i686,build_type=server,distro=el5,ib_stack=ofa/185/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-b1_8 &#187; i686,server,el5,ofa #185&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-974&quot; title=&quot;Lustre does not ignore umask when default ACL with mask is set&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-974&quot;&gt;&lt;del&gt;LU-974&lt;/del&gt;&lt;/a&gt; protocol: change OBD_CONNECT_GRANT_PARAM (Revision d1399bd1c1e7523721518079836e4e0fe1b07316)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&gt;
Johann Lombardi : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/b1_8&amp;amp;a=commit&amp;amp;h=d1399bd1c1e7523721518079836e4e0fe1b07316&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;d1399bd1c1e7523721518079836e4e0fe1b07316&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/ptlrpc/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/pack_generic.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/wirecheck.c&lt;/li&gt;
	&lt;li&gt;lustre/obdclass/lprocfs_status.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/lustre_idl.h&lt;/li&gt;
	&lt;li&gt;lustre/utils/wiretest.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="32760" author="hudson" created="Thu, 29 Mar 2012 04:49:30 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=x86_64,build_type=server,distro=el6,ib_stack=inkernel/531/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,server,el6,inkernel #531&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-974&quot; title=&quot;Lustre does not ignore umask when default ACL with mask is set&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-974&quot;&gt;&lt;del&gt;LU-974&lt;/del&gt;&lt;/a&gt; protocol: change OBD_CONNECT_GRANT_PARAM (Revision 25c24649c49a6feea5f75a80125d08892f6b1657)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&gt;
Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=25c24649c49a6feea5f75a80125d08892f6b1657&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;25c24649c49a6feea5f75a80125d08892f6b1657&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/utils/wirecheck.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/obdclass/lprocfs_status.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/lustre_idl.h&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/wiretest.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="32762" author="hudson" created="Thu, 29 Mar 2012 04:53:19 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-b1_8/./arch=i686,build_type=server,distro=el5,ib_stack=inkernel/185/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-b1_8 &#187; i686,server,el5,inkernel #185&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-974&quot; title=&quot;Lustre does not ignore umask when default ACL with mask is set&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-974&quot;&gt;&lt;del&gt;LU-974&lt;/del&gt;&lt;/a&gt; protocol: change OBD_CONNECT_GRANT_PARAM (Revision d1399bd1c1e7523721518079836e4e0fe1b07316)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&gt;
Johann Lombardi : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/b1_8&amp;amp;a=commit&amp;amp;h=d1399bd1c1e7523721518079836e4e0fe1b07316&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;d1399bd1c1e7523721518079836e4e0fe1b07316&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/ptlrpc/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/obdclass/lprocfs_status.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/lustre_idl.h&lt;/li&gt;
	&lt;li&gt;lustre/utils/wirecheck.c&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/pack_generic.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="32763" author="hudson" created="Thu, 29 Mar 2012 04:55: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-b1_8/./arch=x86_64,build_type=client,distro=el6,ib_stack=inkernel/185/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-b1_8 &#187; x86_64,client,el6,inkernel #185&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-974&quot; title=&quot;Lustre does not ignore umask when default ACL with mask is set&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-974&quot;&gt;&lt;del&gt;LU-974&lt;/del&gt;&lt;/a&gt; protocol: change OBD_CONNECT_GRANT_PARAM (Revision d1399bd1c1e7523721518079836e4e0fe1b07316)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&gt;
Johann Lombardi : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/b1_8&amp;amp;a=commit&amp;amp;h=d1399bd1c1e7523721518079836e4e0fe1b07316&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;d1399bd1c1e7523721518079836e4e0fe1b07316&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/utils/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/pack_generic.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/lustre_idl.h&lt;/li&gt;
	&lt;li&gt;lustre/obdclass/lprocfs_status.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/wirecheck.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="32775" author="hudson" created="Thu, 29 Mar 2012 05:09: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/red.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=x86_64,build_type=server,distro=el5,ib_stack=ofa/531/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,server,el5,ofa #531&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-974&quot; title=&quot;Lustre does not ignore umask when default ACL with mask is set&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-974&quot;&gt;&lt;del&gt;LU-974&lt;/del&gt;&lt;/a&gt; protocol: change OBD_CONNECT_GRANT_PARAM (Revision 25c24649c49a6feea5f75a80125d08892f6b1657)&lt;/p&gt;

&lt;p&gt;     Result = FAILURE&lt;br/&gt;
Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=25c24649c49a6feea5f75a80125d08892f6b1657&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;25c24649c49a6feea5f75a80125d08892f6b1657&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/ptlrpc/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/wirecheck.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/lustre_idl.h&lt;/li&gt;
	&lt;li&gt;lustre/utils/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/obdclass/lprocfs_status.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="32787" author="hudson" created="Thu, 29 Mar 2012 05:29: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=server,distro=el5,ib_stack=inkernel/531/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,server,el5,inkernel #531&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-974&quot; title=&quot;Lustre does not ignore umask when default ACL with mask is set&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-974&quot;&gt;&lt;del&gt;LU-974&lt;/del&gt;&lt;/a&gt; protocol: change OBD_CONNECT_GRANT_PARAM (Revision 25c24649c49a6feea5f75a80125d08892f6b1657)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&gt;
Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=25c24649c49a6feea5f75a80125d08892f6b1657&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;25c24649c49a6feea5f75a80125d08892f6b1657&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/utils/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/obdclass/lprocfs_status.c&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/lustre_idl.h&lt;/li&gt;
	&lt;li&gt;lustre/utils/wirecheck.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="32799" author="hudson" created="Thu, 29 Mar 2012 05:44: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=client,distro=el5,ib_stack=inkernel/531/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,el5,inkernel #531&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-974&quot; title=&quot;Lustre does not ignore umask when default ACL with mask is set&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-974&quot;&gt;&lt;del&gt;LU-974&lt;/del&gt;&lt;/a&gt; protocol: change OBD_CONNECT_GRANT_PARAM (Revision 25c24649c49a6feea5f75a80125d08892f6b1657)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&gt;
Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=25c24649c49a6feea5f75a80125d08892f6b1657&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;25c24649c49a6feea5f75a80125d08892f6b1657&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/obdclass/lprocfs_status.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/wirecheck.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/lustre_idl.h&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/wiretest.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="32811" author="hudson" created="Thu, 29 Mar 2012 05:47: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/red.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=x86_64,build_type=client,distro=el5,ib_stack=ofa/531/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,el5,ofa #531&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-974&quot; title=&quot;Lustre does not ignore umask when default ACL with mask is set&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-974&quot;&gt;&lt;del&gt;LU-974&lt;/del&gt;&lt;/a&gt; protocol: change OBD_CONNECT_GRANT_PARAM (Revision 25c24649c49a6feea5f75a80125d08892f6b1657)&lt;/p&gt;

&lt;p&gt;     Result = FAILURE&lt;br/&gt;
Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=25c24649c49a6feea5f75a80125d08892f6b1657&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;25c24649c49a6feea5f75a80125d08892f6b1657&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/utils/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/wirecheck.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/lustre_idl.h&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/obdclass/lprocfs_status.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="32814" author="hudson" created="Thu, 29 Mar 2012 06:40: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-b1_8/./arch=x86_64,build_type=server,distro=el5,ib_stack=ofa/185/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-b1_8 &#187; x86_64,server,el5,ofa #185&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-974&quot; title=&quot;Lustre does not ignore umask when default ACL with mask is set&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-974&quot;&gt;&lt;del&gt;LU-974&lt;/del&gt;&lt;/a&gt; protocol: change OBD_CONNECT_GRANT_PARAM (Revision d1399bd1c1e7523721518079836e4e0fe1b07316)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&gt;
Johann Lombardi : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/b1_8&amp;amp;a=commit&amp;amp;h=d1399bd1c1e7523721518079836e4e0fe1b07316&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;d1399bd1c1e7523721518079836e4e0fe1b07316&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/ptlrpc/pack_generic.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/wirecheck.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/lustre_idl.h&lt;/li&gt;
	&lt;li&gt;lustre/obdclass/lprocfs_status.c&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/wiretest.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="32815" author="hudson" created="Thu, 29 Mar 2012 06:50:56 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-b1_8/./arch=x86_64,build_type=client,distro=el5,ib_stack=inkernel/185/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-b1_8 &#187; x86_64,client,el5,inkernel #185&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-974&quot; title=&quot;Lustre does not ignore umask when default ACL with mask is set&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-974&quot;&gt;&lt;del&gt;LU-974&lt;/del&gt;&lt;/a&gt; protocol: change OBD_CONNECT_GRANT_PARAM (Revision d1399bd1c1e7523721518079836e4e0fe1b07316)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&gt;
Johann Lombardi : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/b1_8&amp;amp;a=commit&amp;amp;h=d1399bd1c1e7523721518079836e4e0fe1b07316&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;d1399bd1c1e7523721518079836e4e0fe1b07316&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/ptlrpc/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/pack_generic.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/wirecheck.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/lustre_idl.h&lt;/li&gt;
	&lt;li&gt;lustre/obdclass/lprocfs_status.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/wiretest.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="32816" author="hudson" created="Thu, 29 Mar 2012 07:02: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-b1_8/./arch=x86_64,build_type=client,distro=el5,ib_stack=ofa/185/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-b1_8 &#187; x86_64,client,el5,ofa #185&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-974&quot; title=&quot;Lustre does not ignore umask when default ACL with mask is set&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-974&quot;&gt;&lt;del&gt;LU-974&lt;/del&gt;&lt;/a&gt; protocol: change OBD_CONNECT_GRANT_PARAM (Revision d1399bd1c1e7523721518079836e4e0fe1b07316)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&gt;
Johann Lombardi : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/b1_8&amp;amp;a=commit&amp;amp;h=d1399bd1c1e7523721518079836e4e0fe1b07316&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;d1399bd1c1e7523721518079836e4e0fe1b07316&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/include/lustre/lustre_idl.h&lt;/li&gt;
	&lt;li&gt;lustre/utils/wirecheck.c&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/pack_generic.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/obdclass/lprocfs_status.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="32818" author="hudson" created="Thu, 29 Mar 2012 07:17: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-b1_8/./arch=x86_64,build_type=server,distro=el5,ib_stack=inkernel/185/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-b1_8 &#187; x86_64,server,el5,inkernel #185&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-974&quot; title=&quot;Lustre does not ignore umask when default ACL with mask is set&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-974&quot;&gt;&lt;del&gt;LU-974&lt;/del&gt;&lt;/a&gt; protocol: change OBD_CONNECT_GRANT_PARAM (Revision d1399bd1c1e7523721518079836e4e0fe1b07316)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&gt;
Johann Lombardi : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/b1_8&amp;amp;a=commit&amp;amp;h=d1399bd1c1e7523721518079836e4e0fe1b07316&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;d1399bd1c1e7523721518079836e4e0fe1b07316&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/ptlrpc/pack_generic.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/lustre_idl.h&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/wirecheck.c&lt;/li&gt;
	&lt;li&gt;lustre/obdclass/lprocfs_status.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/wiretest.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="34319" author="hudson" created="Mon, 9 Apr 2012 18:53:40 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-b2_1/./arch=x86_64,build_type=client,distro=sles11,ib_stack=inkernel/42/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-b2_1 &#187; x86_64,client,sles11,inkernel #42&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-974&quot; title=&quot;Lustre does not ignore umask when default ACL with mask is set&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-974&quot;&gt;&lt;del&gt;LU-974&lt;/del&gt;&lt;/a&gt; protocol: change OBD_CONNECT_GRANT_PARAM (Revision 7ca464a65709e141b73ae6f22a930a2a8a799f15)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&gt;
Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/b2_1&amp;amp;a=commit&amp;amp;h=7ca464a65709e141b73ae6f22a930a2a8a799f15&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;7ca464a65709e141b73ae6f22a930a2a8a799f15&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/utils/wirecheck.c&lt;/li&gt;
	&lt;li&gt;lustre/obdclass/lprocfs_status.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/lustre_idl.h&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/pack_generic.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/wiretest.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="34331" author="hudson" created="Mon, 9 Apr 2012 19:41:06 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-b2_1/./arch=x86_64,build_type=server,distro=el5,ib_stack=ofa/42/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-b2_1 &#187; x86_64,server,el5,ofa #42&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-974&quot; title=&quot;Lustre does not ignore umask when default ACL with mask is set&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-974&quot;&gt;&lt;del&gt;LU-974&lt;/del&gt;&lt;/a&gt; protocol: change OBD_CONNECT_GRANT_PARAM (Revision 7ca464a65709e141b73ae6f22a930a2a8a799f15)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&gt;
Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/b2_1&amp;amp;a=commit&amp;amp;h=7ca464a65709e141b73ae6f22a930a2a8a799f15&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;7ca464a65709e141b73ae6f22a930a2a8a799f15&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/ptlrpc/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/pack_generic.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/obdclass/lprocfs_status.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/wirecheck.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/lustre_idl.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="34333" author="hudson" created="Mon, 9 Apr 2012 19:51: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-b2_1/./arch=x86_64,build_type=client,distro=el5,ib_stack=inkernel/42/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-b2_1 &#187; x86_64,client,el5,inkernel #42&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-974&quot; title=&quot;Lustre does not ignore umask when default ACL with mask is set&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-974&quot;&gt;&lt;del&gt;LU-974&lt;/del&gt;&lt;/a&gt; protocol: change OBD_CONNECT_GRANT_PARAM (Revision 7ca464a65709e141b73ae6f22a930a2a8a799f15)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&gt;
Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/b2_1&amp;amp;a=commit&amp;amp;h=7ca464a65709e141b73ae6f22a930a2a8a799f15&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;7ca464a65709e141b73ae6f22a930a2a8a799f15&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/include/lustre/lustre_idl.h&lt;/li&gt;
	&lt;li&gt;lustre/utils/wirecheck.c&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/obdclass/lprocfs_status.c&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/pack_generic.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/wiretest.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="34334" author="hudson" created="Mon, 9 Apr 2012 19:51:56 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-b2_1/./arch=i686,build_type=client,distro=el5,ib_stack=ofa/42/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-b2_1 &#187; i686,client,el5,ofa #42&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-974&quot; title=&quot;Lustre does not ignore umask when default ACL with mask is set&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-974&quot;&gt;&lt;del&gt;LU-974&lt;/del&gt;&lt;/a&gt; protocol: change OBD_CONNECT_GRANT_PARAM (Revision 7ca464a65709e141b73ae6f22a930a2a8a799f15)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&gt;
Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/b2_1&amp;amp;a=commit&amp;amp;h=7ca464a65709e141b73ae6f22a930a2a8a799f15&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;7ca464a65709e141b73ae6f22a930a2a8a799f15&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/include/lustre/lustre_idl.h&lt;/li&gt;
	&lt;li&gt;lustre/obdclass/lprocfs_status.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/wirecheck.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/pack_generic.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="34335" author="hudson" created="Mon, 9 Apr 2012 20:04: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-b2_1/./arch=x86_64,build_type=server,distro=el5,ib_stack=inkernel/42/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-b2_1 &#187; x86_64,server,el5,inkernel #42&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-974&quot; title=&quot;Lustre does not ignore umask when default ACL with mask is set&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-974&quot;&gt;&lt;del&gt;LU-974&lt;/del&gt;&lt;/a&gt; protocol: change OBD_CONNECT_GRANT_PARAM (Revision 7ca464a65709e141b73ae6f22a930a2a8a799f15)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&gt;
Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/b2_1&amp;amp;a=commit&amp;amp;h=7ca464a65709e141b73ae6f22a930a2a8a799f15&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;7ca464a65709e141b73ae6f22a930a2a8a799f15&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/include/lustre/lustre_idl.h&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/pack_generic.c&lt;/li&gt;
	&lt;li&gt;lustre/obdclass/lprocfs_status.c&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/wirecheck.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/wiretest.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="34336" author="hudson" created="Mon, 9 Apr 2012 20:06: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-b2_1/./arch=i686,build_type=server,distro=el5,ib_stack=inkernel/42/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-b2_1 &#187; i686,server,el5,inkernel #42&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-974&quot; title=&quot;Lustre does not ignore umask when default ACL with mask is set&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-974&quot;&gt;&lt;del&gt;LU-974&lt;/del&gt;&lt;/a&gt; protocol: change OBD_CONNECT_GRANT_PARAM (Revision 7ca464a65709e141b73ae6f22a930a2a8a799f15)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&gt;
Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/b2_1&amp;amp;a=commit&amp;amp;h=7ca464a65709e141b73ae6f22a930a2a8a799f15&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;7ca464a65709e141b73ae6f22a930a2a8a799f15&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/utils/wirecheck.c&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/pack_generic.c&lt;/li&gt;
	&lt;li&gt;lustre/obdclass/lprocfs_status.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/lustre_idl.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="34337" author="hudson" created="Mon, 9 Apr 2012 20:14:03 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-b2_1/./arch=x86_64,build_type=client,distro=el5,ib_stack=ofa/42/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-b2_1 &#187; x86_64,client,el5,ofa #42&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-974&quot; title=&quot;Lustre does not ignore umask when default ACL with mask is set&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-974&quot;&gt;&lt;del&gt;LU-974&lt;/del&gt;&lt;/a&gt; protocol: change OBD_CONNECT_GRANT_PARAM (Revision 7ca464a65709e141b73ae6f22a930a2a8a799f15)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&gt;
Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/b2_1&amp;amp;a=commit&amp;amp;h=7ca464a65709e141b73ae6f22a930a2a8a799f15&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;7ca464a65709e141b73ae6f22a930a2a8a799f15&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/ptlrpc/pack_generic.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/wirecheck.c&lt;/li&gt;
	&lt;li&gt;lustre/obdclass/lprocfs_status.c&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/lustre_idl.h&lt;/li&gt;
	&lt;li&gt;lustre/utils/wiretest.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="34338" author="hudson" created="Mon, 9 Apr 2012 20:22:03 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-b2_1/./arch=i686,build_type=server,distro=el5,ib_stack=ofa/42/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-b2_1 &#187; i686,server,el5,ofa #42&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-974&quot; title=&quot;Lustre does not ignore umask when default ACL with mask is set&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-974&quot;&gt;&lt;del&gt;LU-974&lt;/del&gt;&lt;/a&gt; protocol: change OBD_CONNECT_GRANT_PARAM (Revision 7ca464a65709e141b73ae6f22a930a2a8a799f15)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&gt;
Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/b2_1&amp;amp;a=commit&amp;amp;h=7ca464a65709e141b73ae6f22a930a2a8a799f15&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;7ca464a65709e141b73ae6f22a930a2a8a799f15&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/utils/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/obdclass/lprocfs_status.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/wirecheck.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/lustre_idl.h&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/pack_generic.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="34339" author="hudson" created="Mon, 9 Apr 2012 20:23:47 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-b2_1/./arch=x86_64,build_type=server,distro=el6,ib_stack=inkernel/42/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-b2_1 &#187; x86_64,server,el6,inkernel #42&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-974&quot; title=&quot;Lustre does not ignore umask when default ACL with mask is set&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-974&quot;&gt;&lt;del&gt;LU-974&lt;/del&gt;&lt;/a&gt; protocol: change OBD_CONNECT_GRANT_PARAM (Revision 7ca464a65709e141b73ae6f22a930a2a8a799f15)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&gt;
Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/b2_1&amp;amp;a=commit&amp;amp;h=7ca464a65709e141b73ae6f22a930a2a8a799f15&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;7ca464a65709e141b73ae6f22a930a2a8a799f15&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/utils/wirecheck.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/lustre_idl.h&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/pack_generic.c&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/obdclass/lprocfs_status.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/wiretest.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="34340" author="hudson" created="Mon, 9 Apr 2012 20:30:41 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-b2_1/./arch=i686,build_type=client,distro=el6,ib_stack=inkernel/42/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-b2_1 &#187; i686,client,el6,inkernel #42&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-974&quot; title=&quot;Lustre does not ignore umask when default ACL with mask is set&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-974&quot;&gt;&lt;del&gt;LU-974&lt;/del&gt;&lt;/a&gt; protocol: change OBD_CONNECT_GRANT_PARAM (Revision 7ca464a65709e141b73ae6f22a930a2a8a799f15)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&gt;
Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/b2_1&amp;amp;a=commit&amp;amp;h=7ca464a65709e141b73ae6f22a930a2a8a799f15&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;7ca464a65709e141b73ae6f22a930a2a8a799f15&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/ptlrpc/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/pack_generic.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/lustre_idl.h&lt;/li&gt;
	&lt;li&gt;lustre/utils/wirecheck.c&lt;/li&gt;
	&lt;li&gt;lustre/obdclass/lprocfs_status.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/wiretest.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="34341" author="hudson" created="Mon, 9 Apr 2012 20:33: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-b2_1/./arch=i686,build_type=client,distro=el5,ib_stack=inkernel/42/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-b2_1 &#187; i686,client,el5,inkernel #42&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-974&quot; title=&quot;Lustre does not ignore umask when default ACL with mask is set&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-974&quot;&gt;&lt;del&gt;LU-974&lt;/del&gt;&lt;/a&gt; protocol: change OBD_CONNECT_GRANT_PARAM (Revision 7ca464a65709e141b73ae6f22a930a2a8a799f15)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&gt;
Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/b2_1&amp;amp;a=commit&amp;amp;h=7ca464a65709e141b73ae6f22a930a2a8a799f15&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;7ca464a65709e141b73ae6f22a930a2a8a799f15&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/utils/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/lustre_idl.h&lt;/li&gt;
	&lt;li&gt;lustre/obdclass/lprocfs_status.c&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/pack_generic.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/wirecheck.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="34342" author="hudson" created="Mon, 9 Apr 2012 20:35:49 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-b2_1/./arch=x86_64,build_type=client,distro=el6,ib_stack=inkernel/42/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-b2_1 &#187; x86_64,client,el6,inkernel #42&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-974&quot; title=&quot;Lustre does not ignore umask when default ACL with mask is set&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-974&quot;&gt;&lt;del&gt;LU-974&lt;/del&gt;&lt;/a&gt; protocol: change OBD_CONNECT_GRANT_PARAM (Revision 7ca464a65709e141b73ae6f22a930a2a8a799f15)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&gt;
Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/b2_1&amp;amp;a=commit&amp;amp;h=7ca464a65709e141b73ae6f22a930a2a8a799f15&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;7ca464a65709e141b73ae6f22a930a2a8a799f15&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/obdclass/lprocfs_status.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/wirecheck.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/lustre_idl.h&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/pack_generic.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="34343" author="hudson" created="Mon, 9 Apr 2012 20:46: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-b2_1/./arch=i686,build_type=server,distro=el6,ib_stack=inkernel/42/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-b2_1 &#187; i686,server,el6,inkernel #42&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-974&quot; title=&quot;Lustre does not ignore umask when default ACL with mask is set&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-974&quot;&gt;&lt;del&gt;LU-974&lt;/del&gt;&lt;/a&gt; protocol: change OBD_CONNECT_GRANT_PARAM (Revision 7ca464a65709e141b73ae6f22a930a2a8a799f15)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&gt;
Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/b2_1&amp;amp;a=commit&amp;amp;h=7ca464a65709e141b73ae6f22a930a2a8a799f15&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;7ca464a65709e141b73ae6f22a930a2a8a799f15&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/obdclass/lprocfs_status.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/lustre_idl.h&lt;/li&gt;
	&lt;li&gt;lustre/utils/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/wirecheck.c&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/pack_generic.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="36250" author="hudson" created="Wed, 2 May 2012 14:53: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-dev/./arch=x86_64,build_type=client,distro=el5,ib_stack=inkernel/340/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-dev &#187; x86_64,client,el5,inkernel #340&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-974&quot; title=&quot;Lustre does not ignore umask when default ACL with mask is set&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-974&quot;&gt;&lt;del&gt;LU-974&lt;/del&gt;&lt;/a&gt; protocol: change OBD_CONNECT_GRANT_PARAM (Revision 25c24649c49a6feea5f75a80125d08892f6b1657)&lt;br/&gt;
&lt;a href=&quot;https://jira.whamcloud.com/browse/LU-974&quot; title=&quot;Lustre does not ignore umask when default ACL with mask is set&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-974&quot;&gt;&lt;del&gt;LU-974&lt;/del&gt;&lt;/a&gt; protocol: change OBD_CONNECT_GRANT_PARAM (Revision 3fb7e590e5304252f7a8cb609ca08ef652fd6f97)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&gt;
Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-dev.git;a=shortlog;h=refs/heads/$GIT_BRANCH&amp;amp;a=commit&amp;amp;h=25c24649c49a6feea5f75a80125d08892f6b1657&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;25c24649c49a6feea5f75a80125d08892f6b1657&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/obdclass/lprocfs_status.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/wirecheck.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/lustre_idl.h&lt;/li&gt;
&lt;/ul&gt;


&lt;p&gt;Mikhail Pershin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-dev.git;a=shortlog;h=refs/heads/$GIT_BRANCH&amp;amp;a=commit&amp;amp;h=3fb7e590e5304252f7a8cb609ca08ef652fd6f97&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;3fb7e590e5304252f7a8cb609ca08ef652fd6f97&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/ptlrpc/pack_generic.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="36547" author="hudson" created="Wed, 2 May 2012 14:55: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-dev/./arch=i686,build_type=client,distro=el6,ib_stack=inkernel/340/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-dev &#187; i686,client,el6,inkernel #340&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-974&quot; title=&quot;Lustre does not ignore umask when default ACL with mask is set&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-974&quot;&gt;&lt;del&gt;LU-974&lt;/del&gt;&lt;/a&gt; protocol: change OBD_CONNECT_GRANT_PARAM (Revision 25c24649c49a6feea5f75a80125d08892f6b1657)&lt;br/&gt;
&lt;a href=&quot;https://jira.whamcloud.com/browse/LU-974&quot; title=&quot;Lustre does not ignore umask when default ACL with mask is set&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-974&quot;&gt;&lt;del&gt;LU-974&lt;/del&gt;&lt;/a&gt; protocol: change OBD_CONNECT_GRANT_PARAM (Revision 3fb7e590e5304252f7a8cb609ca08ef652fd6f97)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&gt;
Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-dev.git;a=shortlog;h=refs/heads/$GIT_BRANCH&amp;amp;a=commit&amp;amp;h=25c24649c49a6feea5f75a80125d08892f6b1657&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;25c24649c49a6feea5f75a80125d08892f6b1657&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/include/lustre/lustre_idl.h&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/wirecheck.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/obdclass/lprocfs_status.c&lt;/li&gt;
&lt;/ul&gt;


&lt;p&gt;Mikhail Pershin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-dev.git;a=shortlog;h=refs/heads/$GIT_BRANCH&amp;amp;a=commit&amp;amp;h=3fb7e590e5304252f7a8cb609ca08ef652fd6f97&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;3fb7e590e5304252f7a8cb609ca08ef652fd6f97&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/ptlrpc/pack_generic.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="36844" author="hudson" created="Wed, 2 May 2012 14:58: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-dev/./arch=i686,build_type=server,distro=el5,ib_stack=inkernel/340/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-dev &#187; i686,server,el5,inkernel #340&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-974&quot; title=&quot;Lustre does not ignore umask when default ACL with mask is set&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-974&quot;&gt;&lt;del&gt;LU-974&lt;/del&gt;&lt;/a&gt; protocol: change OBD_CONNECT_GRANT_PARAM (Revision 25c24649c49a6feea5f75a80125d08892f6b1657)&lt;br/&gt;
&lt;a href=&quot;https://jira.whamcloud.com/browse/LU-974&quot; title=&quot;Lustre does not ignore umask when default ACL with mask is set&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-974&quot;&gt;&lt;del&gt;LU-974&lt;/del&gt;&lt;/a&gt; protocol: change OBD_CONNECT_GRANT_PARAM (Revision 3fb7e590e5304252f7a8cb609ca08ef652fd6f97)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&gt;
Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-dev.git;a=shortlog;h=refs/heads/$GIT_BRANCH&amp;amp;a=commit&amp;amp;h=25c24649c49a6feea5f75a80125d08892f6b1657&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;25c24649c49a6feea5f75a80125d08892f6b1657&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/utils/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/lustre_idl.h&lt;/li&gt;
	&lt;li&gt;lustre/obdclass/lprocfs_status.c&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/wirecheck.c&lt;/li&gt;
&lt;/ul&gt;


&lt;p&gt;Mikhail Pershin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-dev.git;a=shortlog;h=refs/heads/$GIT_BRANCH&amp;amp;a=commit&amp;amp;h=3fb7e590e5304252f7a8cb609ca08ef652fd6f97&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;3fb7e590e5304252f7a8cb609ca08ef652fd6f97&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/ptlrpc/pack_generic.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="37142" author="hudson" created="Wed, 2 May 2012 15:13:59 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-dev/./arch=x86_64,build_type=server,distro=el6,ib_stack=inkernel/340/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-dev &#187; x86_64,server,el6,inkernel #340&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-974&quot; title=&quot;Lustre does not ignore umask when default ACL with mask is set&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-974&quot;&gt;&lt;del&gt;LU-974&lt;/del&gt;&lt;/a&gt; protocol: change OBD_CONNECT_GRANT_PARAM (Revision 25c24649c49a6feea5f75a80125d08892f6b1657)&lt;br/&gt;
&lt;a href=&quot;https://jira.whamcloud.com/browse/LU-974&quot; title=&quot;Lustre does not ignore umask when default ACL with mask is set&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-974&quot;&gt;&lt;del&gt;LU-974&lt;/del&gt;&lt;/a&gt; protocol: change OBD_CONNECT_GRANT_PARAM (Revision 3fb7e590e5304252f7a8cb609ca08ef652fd6f97)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&gt;
Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-dev.git;a=shortlog;h=refs/heads/$GIT_BRANCH&amp;amp;a=commit&amp;amp;h=25c24649c49a6feea5f75a80125d08892f6b1657&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;25c24649c49a6feea5f75a80125d08892f6b1657&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/obdclass/lprocfs_status.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/lustre_idl.h&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/wirecheck.c&lt;/li&gt;
&lt;/ul&gt;


&lt;p&gt;Mikhail Pershin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-dev.git;a=shortlog;h=refs/heads/$GIT_BRANCH&amp;amp;a=commit&amp;amp;h=3fb7e590e5304252f7a8cb609ca08ef652fd6f97&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;3fb7e590e5304252f7a8cb609ca08ef652fd6f97&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/ptlrpc/pack_generic.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="37439" author="hudson" created="Wed, 2 May 2012 15:14:50 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-dev/./arch=i686,build_type=client,distro=el5,ib_stack=inkernel/340/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-dev &#187; i686,client,el5,inkernel #340&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-974&quot; title=&quot;Lustre does not ignore umask when default ACL with mask is set&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-974&quot;&gt;&lt;del&gt;LU-974&lt;/del&gt;&lt;/a&gt; protocol: change OBD_CONNECT_GRANT_PARAM (Revision 25c24649c49a6feea5f75a80125d08892f6b1657)&lt;br/&gt;
&lt;a href=&quot;https://jira.whamcloud.com/browse/LU-974&quot; title=&quot;Lustre does not ignore umask when default ACL with mask is set&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-974&quot;&gt;&lt;del&gt;LU-974&lt;/del&gt;&lt;/a&gt; protocol: change OBD_CONNECT_GRANT_PARAM (Revision 3fb7e590e5304252f7a8cb609ca08ef652fd6f97)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&gt;
Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-dev.git;a=shortlog;h=refs/heads/$GIT_BRANCH&amp;amp;a=commit&amp;amp;h=25c24649c49a6feea5f75a80125d08892f6b1657&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;25c24649c49a6feea5f75a80125d08892f6b1657&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/obdclass/lprocfs_status.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/wirecheck.c&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/lustre_idl.h&lt;/li&gt;
	&lt;li&gt;lustre/utils/wiretest.c&lt;/li&gt;
&lt;/ul&gt;


&lt;p&gt;Mikhail Pershin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-dev.git;a=shortlog;h=refs/heads/$GIT_BRANCH&amp;amp;a=commit&amp;amp;h=3fb7e590e5304252f7a8cb609ca08ef652fd6f97&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;3fb7e590e5304252f7a8cb609ca08ef652fd6f97&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/ptlrpc/pack_generic.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="37737" author="hudson" created="Wed, 2 May 2012 15:19: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-dev/./arch=x86_64,build_type=server,distro=el5,ib_stack=inkernel/340/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-dev &#187; x86_64,server,el5,inkernel #340&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-974&quot; title=&quot;Lustre does not ignore umask when default ACL with mask is set&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-974&quot;&gt;&lt;del&gt;LU-974&lt;/del&gt;&lt;/a&gt; protocol: change OBD_CONNECT_GRANT_PARAM (Revision 25c24649c49a6feea5f75a80125d08892f6b1657)&lt;br/&gt;
&lt;a href=&quot;https://jira.whamcloud.com/browse/LU-974&quot; title=&quot;Lustre does not ignore umask when default ACL with mask is set&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-974&quot;&gt;&lt;del&gt;LU-974&lt;/del&gt;&lt;/a&gt; protocol: change OBD_CONNECT_GRANT_PARAM (Revision 3fb7e590e5304252f7a8cb609ca08ef652fd6f97)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&gt;
Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-dev.git;a=shortlog;h=refs/heads/$GIT_BRANCH&amp;amp;a=commit&amp;amp;h=25c24649c49a6feea5f75a80125d08892f6b1657&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;25c24649c49a6feea5f75a80125d08892f6b1657&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/obdclass/lprocfs_status.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/lustre_idl.h&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/wirecheck.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/wiretest.c&lt;/li&gt;
&lt;/ul&gt;


&lt;p&gt;Mikhail Pershin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-dev.git;a=shortlog;h=refs/heads/$GIT_BRANCH&amp;amp;a=commit&amp;amp;h=3fb7e590e5304252f7a8cb609ca08ef652fd6f97&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;3fb7e590e5304252f7a8cb609ca08ef652fd6f97&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/ptlrpc/pack_generic.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="38034" author="hudson" created="Wed, 2 May 2012 15:37:33 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-dev/./arch=x86_64,build_type=client,distro=el6,ib_stack=inkernel/340/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-dev &#187; x86_64,client,el6,inkernel #340&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-974&quot; title=&quot;Lustre does not ignore umask when default ACL with mask is set&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-974&quot;&gt;&lt;del&gt;LU-974&lt;/del&gt;&lt;/a&gt; protocol: change OBD_CONNECT_GRANT_PARAM (Revision 25c24649c49a6feea5f75a80125d08892f6b1657)&lt;br/&gt;
&lt;a href=&quot;https://jira.whamcloud.com/browse/LU-974&quot; title=&quot;Lustre does not ignore umask when default ACL with mask is set&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-974&quot;&gt;&lt;del&gt;LU-974&lt;/del&gt;&lt;/a&gt; protocol: change OBD_CONNECT_GRANT_PARAM (Revision 3fb7e590e5304252f7a8cb609ca08ef652fd6f97)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&gt;
Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-dev.git;a=shortlog;h=refs/heads/$GIT_BRANCH&amp;amp;a=commit&amp;amp;h=25c24649c49a6feea5f75a80125d08892f6b1657&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;25c24649c49a6feea5f75a80125d08892f6b1657&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/obdclass/lprocfs_status.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre/lustre_idl.h&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/wiretest.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/wirecheck.c&lt;/li&gt;
	&lt;li&gt;lustre/utils/wiretest.c&lt;/li&gt;
&lt;/ul&gt;


&lt;p&gt;Mikhail Pershin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-dev.git;a=shortlog;h=refs/heads/$GIT_BRANCH&amp;amp;a=commit&amp;amp;h=3fb7e590e5304252f7a8cb609ca08ef652fd6f97&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;3fb7e590e5304252f7a8cb609ca08ef652fd6f97&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/ptlrpc/pack_generic.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="40195" author="pjones" created="Thu, 7 Jun 2012 12:07:29 +0000"  >&lt;p&gt;Appears to be landed for 1.8.8, 2.1.2 and 2.3&lt;/p&gt;</comment>
                            <comment id="47241" author="yujian" created="Thu, 1 Nov 2012 07:57:29 +0000"  >&lt;p&gt;The patches in &lt;a href=&quot;http://review.whamcloud.com/#change,1976&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://review.whamcloud.com/#change,1976&lt;/a&gt; and &lt;a href=&quot;http://review.whamcloud.com/#change,1972&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://review.whamcloud.com/#change,1972&lt;/a&gt; to fix the issue in this ticket have not been landed yet. So, let&apos;s reopen this ticket.&lt;/p&gt;</comment>
                            <comment id="48053" author="yujian" created="Tue, 20 Nov 2012 02:07:41 +0000"  >&lt;p&gt;The fix is also needed on b2_1 branch.&lt;/p&gt;</comment>
                            <comment id="49608" author="pjones" created="Sat, 22 Dec 2012 11:17:13 +0000"  >&lt;p&gt;Landed for 2.1.4 and 2.4&lt;/p&gt;</comment>
                            <comment id="50331" author="bzzz" created="Fri, 11 Jan 2013 04:56:28 +0000"  >&lt;p&gt;I think the implementation is not quite good, especially the change in mdo_create_obj().&lt;br/&gt;
instead of hacking around current() in MDD, it should be done in OSD that attributes are set as passed by MDD.&lt;/p&gt;</comment>
                            <comment id="50337" author="laisiyao" created="Fri, 11 Jan 2013 11:03:52 +0000"  >&lt;p&gt;Hmm, you&apos;re correct. At the time of implementation, I wanted the code to be simple, because only MDT create needs enforce client umask, while all places dt_create() is called don&apos;t. Do you think it&apos;s okay to fix this in DNE code since DNE needs add support for this?&lt;/p&gt;</comment>
                            <comment id="50346" author="bzzz" created="Fri, 11 Jan 2013 13:00:13 +0000"  >&lt;p&gt;well, I&apos;m fine to fix it a bit later, but it&apos;d be good to have a ticket for this: either we keep this one or create another.&lt;/p&gt;</comment>
                            <comment id="52266" author="bzzz" created="Wed, 13 Feb 2013 07:56:08 +0000"  >&lt;p&gt;please clarify why do we needed to change the protocol ? why the client can&apos;t supply with the correct mode ?&lt;/p&gt;</comment>
                            <comment id="52507" author="laisiyao" created="Fri, 15 Feb 2013 19:42:04 +0000"  >&lt;p&gt;When parent dir has default ACL, umask should be ignored. It&apos;s inefficient to check parent default ACL for each create, and it&apos;s not atomic either. So umask is sent to MDS and let server do this check.&lt;/p&gt;

&lt;p&gt;And this should be handled in MDD layer (because it belongs to ACL initialisation for new inode), however for ldiskfs osd_object_create() calls ldiskfs_new_inode() which initialised acl internally, it looks redundant to do it again in MDD layer, so that in the implementation I just enforce umask from client and let ldiskfs do the left. However for ZFS, ACL initialization is done in ZPL, but OSD calls DMU directly, so that &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-2610&quot; title=&quot;sanity test_103: ACL copy failed zfs - umask ignored&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-2610&quot;&gt;&lt;del&gt;LU-2610&lt;/del&gt;&lt;/a&gt; fails. Now I do think it will be better to handle this in MDD layer (though for ldiskfs it&apos;s redundant).&lt;/p&gt;</comment>
                            <comment id="161710" author="adilger" created="Fri, 12 Aug 2016 05:22:36 +0000"  >&lt;p&gt;Patch for b2_3 is &lt;a href=&quot;http://review.whamcloud.com/4661&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://review.whamcloud.com/4661&lt;/a&gt;&lt;/p&gt;</comment>
                    </comments>
                <issuelinks>
                            <issuelinktype id="10010">
                    <name>Duplicate</name>
                                                                <inwardlinks description="is duplicated by">
                                        <issuelink>
            <issuekey id="16370">LU-2185</issuekey>
        </issuelink>
                            </inwardlinks>
                                    </issuelinktype>
                    </issuelinks>
                <attachments>
                    </attachments>
                <subtasks>
                    </subtasks>
                <customfields>
                                                                                                                                    <customfield id="customfield_10020" key="com.atlassian.jira.plugin.system.customfieldtypes:float">
                        <customfieldname>Bugzilla ID</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>23194.0</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                                            <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|hzv6zr:</customfieldvalue>

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

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