<!-- 
RSS generated by JIRA (9.4.14#940014-sha1:734e6822bbf0d45eff9af51f82432957f73aa32c) at Sat Feb 10 01:05:45 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-307] Test failure on test suite parallel-scale ior</title>
                <link>https://jira.whamcloud.com/browse/LU-307</link>
                <project id="10000" key="LU">Lustre</project>
                    <description>&lt;p&gt;This issue was created by maloo for sarah &amp;lt;sarah@whamcloud.com&amp;gt;&lt;/p&gt;

&lt;p&gt;This issue relates to the following test suite run: &lt;a href=&quot;https://maloo.whamcloud.com/test_sets/64e9dc92-7c07-11e0-b5bf-52540025f9af&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://maloo.whamcloud.com/test_sets/64e9dc92-7c07-11e0-b5bf-52540025f9af&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;Here is more information of this failure:&lt;br/&gt;
&lt;a href=&quot;http://jira.whamcloud.com/browse/LU-163?focusedCommentId=13721&amp;amp;page=com.atlassian.jira.plugin.system.issuetabpanels%3Acomment-tabpanel#action_13721&quot; class=&quot;external-link&quot; rel=&quot;nofollow&quot;&gt;http://jira.whamcloud.com/browse/LU-163?focusedCommentId=13721&amp;amp;page=com.atlassian.jira.plugin.system.issuetabpanels%3Acomment-tabpanel#action_13721&lt;/a&gt;&lt;/p&gt;</description>
                <environment></environment>
        <key id="10784">LU-307</key>
            <summary>Test failure on test suite parallel-scale ior</summary>
                <type id="1" iconUrl="https://jira.whamcloud.com/secure/viewavatar?size=xsmall&amp;avatarId=11303&amp;avatarType=issuetype">Bug</type>
                                            <priority id="1" iconUrl="https://jira.whamcloud.com/images/icons/priorities/blocker.svg">Blocker</priority>
                        <status id="5" iconUrl="https://jira.whamcloud.com/images/icons/statuses/resolved.png" description="A resolution has been taken, and it is awaiting verification by reporter. From here issues are either reopened, or are closed.">Resolved</status>
                    <statusCategory id="3" key="done" colorName="success"/>
                                    <resolution id="1">Fixed</resolution>
                                        <assignee username="yong.fan">nasf</assignee>
                                    <reporter username="maloo">Maloo</reporter>
                        <labels>
                    </labels>
                <created>Wed, 11 May 2011 12:47:39 +0000</created>
                <updated>Tue, 14 Jun 2011 08:15:25 +0000</updated>
                            <resolved>Thu, 9 Jun 2011 00:36:54 +0000</resolved>
                                                    <fixVersion>Lustre 2.1.0</fixVersion>
                                        <due></due>
                            <votes>0</votes>
                                    <watches>6</watches>
                                                                            <comments>
                            <comment id="14439" author="yong.fan" created="Tue, 17 May 2011 04:29:10 +0000"  >&lt;p&gt;The failure of IOR on NFSv3 against Lustre is related with NFSv3 protocol. There are several means to create OST objects:&lt;/p&gt;

&lt;p&gt;1) Normal open_create with write mode, inherit stripe attribute from parent.&lt;br/&gt;
2) If the file created with &quot;OPEN_DELAY_CREATE&quot; flags, or open without write mode, then the OST objects will be created when next open with write mode, inherit stripe attribute from parent.&lt;br/&gt;
3) lfs setstripe directly.&lt;/p&gt;

&lt;p&gt;In our IOR test on NFSv3 against Lustre, the test program sets stripe information for parent directory firstly with stripe_count &quot;-1&quot;, means child files should be distributed to all OSTs. Then creates target file under such directory without write mode, so at that time its stripe information is NULL. After that, nfs_write triggers separate Lustre open RPC with write mode, then MDS tries to create related OST objects. Unfortunately, at such point, Lustre client does not tell MDS which is the parent, so MDS does not know how to get the stripe information to create related OST objects for the target file, it has to use default mode &amp;#8211; single stripe on some OST, so caused the target file only has one stripe, and then got ENOSPC error.&lt;/p&gt;

&lt;p&gt;As for touching file through NFSv3 client does not generate stripe information, I think it is normal, delay create is one of our policy for accelerating open_create. Lustre does not promise when the OST objects will be created. We just need to guarantee related OST objects are created when used.&lt;/p&gt;</comment>
                            <comment id="14440" author="yong.fan" created="Tue, 17 May 2011 04:44:56 +0000"  >&lt;p&gt;The patch is to be inspected:&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;http://review.whamcloud.com/#change,557&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://review.whamcloud.com/#change,557&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Sarah, it pass my local test, you can verify it.&lt;/p&gt;</comment>
                            <comment id="14481" author="yong.fan" created="Wed, 18 May 2011 03:44:44 +0000"  >&lt;p&gt;There are two possible solutions:&lt;/p&gt;

&lt;p&gt;1) Lustre client parses out parent&apos;s fid from NFS_FH, and transfers such fid to MDS when open (will create OST objects), then MDS can get related default stripe attributes from the parent to create related OST objects. The shortcomings are:&lt;br/&gt;
1.1) We cannot guarantee the parent&apos;s fid transferred to MDS is valid, because others maybe rename the file and unlink the parent. But I think it is acceptable for NFS use cases, we can tell NFS client with ESTALE or similar.&lt;br/&gt;
1.2) Before NFS client triggers open (for create), related file maybe renamed/linked, so the parent maybe changed or have several patents, those parents maybe have different default stripe attributes. It is common issue for both NFS use cases, and normal Lustre client.&lt;/p&gt;

&lt;p&gt;2) When MDS creates an regular file with OST objects delay created, then stores parent&apos;s default stripe attributes as file&apos;s extend attributes. Then when needs to create OST objects later, MDS can get related stripe attributes from the file&apos;s extent attributed without to know which is its parent. And it also resolves the issues related with link/rename before creating OST objects. The shortcomings are:&lt;br/&gt;
2.1) it introduces new extend attributes, which decreases the performance of some create (mknod or with O_LOV_DELAY_CREATE flags) operations.&lt;br/&gt;
2.2) it changes on-disk format, so works on old format disk, related OST objects delay creating operations will meet &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-307&quot; title=&quot;Test failure on test suite parallel-scale ior&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-307&quot;&gt;&lt;del&gt;LU-307&lt;/del&gt;&lt;/a&gt;.&lt;/p&gt;

&lt;p&gt;Compare about two solutions, 1) is easier, I have made patch for that.&lt;br/&gt;
&lt;a href=&quot;http://review.whamcloud.com/#change,557&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://review.whamcloud.com/#change,557&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;What are your options?&lt;/p&gt;</comment>
                            <comment id="14502" author="di.wang" created="Wed, 18 May 2011 13:15:42 +0000"  >&lt;p&gt;Just checked the code, if you open a file with DELAY_CREATE, it assumes the user will setstripe before real writing, otherwise, it will return Error (EBADF actually). &lt;/p&gt;

&lt;p&gt;But if it does mknod for regular file, then open with write(like nfs3+lustre does), it indeed does not take into account default stripe of parent. I would prefer goes to 2, i.e. MDS set default stripe into the EA of the &quot;empty&quot; regular file, then in later write, it will create the object according to this default stripe, since it is the more &quot;correct&quot; way to go, compared with 1. &lt;/p&gt;

&lt;p&gt;Another option might be just create the objects for mknod of regular file? does it break any rule? &lt;/p&gt;</comment>
                            <comment id="14636" author="yong.fan" created="Wed, 18 May 2011 22:18:53 +0000"  >&lt;p&gt;I also think 2) is more &quot;correct&quot; solution, but I am not sure whether we need to resolve 2.1) &amp;amp; 2.2).&lt;/p&gt;

&lt;p&gt;As for create OST objects when mknod, I do not think it is good idea, although it is quite easy. Because Lustre never create OST objects when mknod for former releases, which is known to customer already. I am not sure whether some customers have build their system according to such assumption. If so, our fixes will cause trouble for them.&lt;/p&gt;

&lt;p&gt;Andreas, what&apos;s your suggestion for that?  &lt;/p&gt;</comment>
                            <comment id="14642" author="adilger" created="Wed, 18 May 2011 23:07:16 +0000"  >&lt;p&gt;The only reason that we didn&apos;t create objects at mknod time is to allow the file to be created, then allow it to be opened with O_LOV_DELAY_CREATE so that ioctl(LL_IOC_LOV_SETSTRIPE) can be called on it.  With the lustre-patched tar it also depends on files created with mknod() to not have objects, so that setxattr() can restore the original file striping.&lt;/p&gt;

&lt;p&gt;When the &quot;layout lock&quot; patch lands (hopefully one of the first major features to be landed for 2.2) it includes the ability to change the file striping after the file is initially created, as long as it is 0 bytes in size.  That, in turn, would allow Lustre to allocate objects on a new file at mknod() time instead of open() time without preventing the layout from being changed, and without having to add further complexity and incompatibility to the protocol.&lt;/p&gt;

&lt;p&gt;In the meantime, this is definitely NOT a new bug (it has existed as long as Lustre has been able to re-export via NFS, though I didn&apos;t know about it until now, and nobody has ever complained) so I definitely do not think it is a blocker for the 2.1 release.  I think a temporary workaround for this test might be to use the &quot;lustrestripecount&quot; parameter to IOR (available if IOR is compiled with &quot;-D_USE_LUSTRE&quot;) to have IOR set the new file striping itself.&lt;/p&gt;</comment>
                            <comment id="14653" author="yong.fan" created="Thu, 19 May 2011 04:51:32 +0000"  >&lt;p&gt;Thanks Andreas. It is clear now, we will not fix mknod logic. As for how to make lustre re-export via NFS to work as a temporary solution, I think my current patch (&lt;a href=&quot;http://review.whamcloud.com/#change,557&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://review.whamcloud.com/#change,557&lt;/a&gt;) is better than recompiling IOR. Because such patch can make most NFS applications to work, not only IOR. On the other hand, it does not change protocol (neither on-wire nor on-disk), and not too complex, since parent&apos;s fid is part of NFS_FH already.&lt;/p&gt;

&lt;p&gt;Would you please to give an inspection for such patch, and then decide whether it can be used or not?&lt;/p&gt;</comment>
                            <comment id="15214" author="yong.fan" created="Sun, 29 May 2011 21:58:48 +0000"  >&lt;p&gt;The latest patch to be verified:&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;http://review.whamcloud.com/#change,557&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://review.whamcloud.com/#change,557&lt;/a&gt; set 4&lt;/p&gt;</comment>
                            <comment id="15335" author="sarah" created="Tue, 31 May 2011 16:23:17 +0000"  >&lt;p&gt;I tried this patch, but the problem is still there with nfs v3. Or am I miss something of this patch?&lt;/p&gt;

&lt;p&gt;cat /etc/exports&lt;br/&gt;
/mnt/lustre     *(rw,all_squash,anonuid=500,anongid=500)&lt;/p&gt;

&lt;p&gt;#client-15 is lustre client/nfs server&lt;br/&gt;
&lt;span class=&quot;error&quot;&gt;&amp;#91;root@client-15 ~&amp;#93;&lt;/span&gt;# lfs getstripe /mnt/lustre/test1&lt;br/&gt;
/mnt/lustre/test1&lt;br/&gt;
stripe_count:   2 stripe_size:    0 stripe_offset:  -1 &lt;br/&gt;
#client-18 is nfs client&lt;/p&gt;

&lt;p&gt;&lt;span class=&quot;error&quot;&gt;&amp;#91;root@client-18 ~&amp;#93;&lt;/span&gt;# touch /mnt/lustre/test1/f&lt;br/&gt;
&lt;span class=&quot;error&quot;&gt;&amp;#91;root@client-15 ~&amp;#93;&lt;/span&gt;# lfs getstripe /mnt/lustre/test1/f&lt;br/&gt;
/mnt/lustre/test1/f has no stripe info&lt;/p&gt;


</comment>
                            <comment id="15339" author="yong.fan" created="Tue, 31 May 2011 20:26:56 +0000"  >&lt;p&gt;Currently, touch file through nfs3 client (re-exported by lustre) will not create OST objects at once, they will be created when open for write next time. So above situations are expected. Please verify IOR through nfs client.&lt;/p&gt;</comment>
                            <comment id="15340" author="sarah" created="Tue, 31 May 2011 20:39:20 +0000"  >&lt;p&gt;IOR passed on RHEL5/NFSv3 but failed on RHEL5/NFSv4 &lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;https://maloo.whamcloud.com/test_sets/90ebfc00-8bd2-11e0-aab9-52540025f9af&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://maloo.whamcloud.com/test_sets/90ebfc00-8bd2-11e0-aab9-52540025f9af&lt;/a&gt;&lt;br/&gt;
&lt;a href=&quot;https://maloo.whamcloud.com/test_sets/657f4cda-8bd6-11e0-aab9-52540025f9af&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://maloo.whamcloud.com/test_sets/657f4cda-8bd6-11e0-aab9-52540025f9af&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="15589" author="yong.fan" created="Mon, 6 Jun 2011 01:43:45 +0000"  >&lt;p&gt;With the following patches applied, most of the test cases in parallel_scale against lustre re-export through NFS work well, including NFSv3/4 against RHEL5/6, except for lock related test (test7) for connectathon.&lt;/p&gt;

&lt;p&gt;&lt;a href=&quot;http://review.whamcloud.com/#change,557&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://review.whamcloud.com/#change,557&lt;/a&gt;&lt;br/&gt;
&lt;a href=&quot;http://review.whamcloud.com/#change,886&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://review.whamcloud.com/#change,886&lt;/a&gt;&lt;br/&gt;
&lt;a href=&quot;http://review.whamcloud.com/#change,892&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://review.whamcloud.com/#change,892&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;Oleg, I think the patch you made for &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-104&quot; title=&quot;Lustre grants flock exclusive locks on two file descriptors for the same  file&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-104&quot;&gt;&lt;del&gt;LU-104&lt;/del&gt;&lt;/a&gt; (&lt;a href=&quot;http://jira.whamcloud.com/browse/LU-104&quot; class=&quot;external-link&quot; rel=&quot;nofollow&quot;&gt;http://jira.whamcloud.com/browse/LU-104&lt;/a&gt;) should fix all lock related issues in parallel_scale connectathon test. But it is broken again, maybe you have more ideas about the failure.&lt;/p&gt;</comment>
                            <comment id="15930" author="adilger" created="Wed, 8 Jun 2011 22:58:51 +0000"  >&lt;p&gt;Should we land a version of this onto b1_8, so that there are no compatibility issues with 1.8 clients on 2.x servers, or is it enough that we tell users to do NFS file serving from 2.x clients when they upgrade to 2.x servers?&lt;/p&gt;</comment>
                            <comment id="15931" author="hudson" created="Wed, 8 Jun 2011 23:15:08 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://newbuild.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://newbuild.whamcloud.com/job/lustre-master/./arch=x86_64,build_type=client,distro=el5,ib_stack=ofa/159/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,el5,ofa #159&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-307&quot; title=&quot;Test failure on test suite parallel-scale ior&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-307&quot;&gt;&lt;del&gt;LU-307&lt;/del&gt;&lt;/a&gt; Send parent FID from client to MDS on NFS open for striping info&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=255e37f1639fa4edec5b929228afe7c0e8b56724&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;255e37f1639fa4edec5b929228afe7c0e8b56724&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/llite/file.c&lt;/li&gt;
	&lt;li&gt;lustre/include/linux/lustre_compat25.h&lt;/li&gt;
	&lt;li&gt;lustre/mdt/mdt_handler.c&lt;/li&gt;
	&lt;li&gt;lustre/mdd/mdd_object.c&lt;/li&gt;
	&lt;li&gt;lustre/mdd/mdd_lov.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/llite_internal.h&lt;/li&gt;
	&lt;li&gt;lustre/mdt/mdt_open.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/llite_nfs.c&lt;/li&gt;
	&lt;li&gt;lustre/include/md_object.h&lt;/li&gt;
	&lt;li&gt;lustre/mdt/mdt_internal.h&lt;/li&gt;
	&lt;li&gt;lustre/llite/llite_lib.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre_mds.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="15932" author="hudson" created="Wed, 8 Jun 2011 23:15:49 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://newbuild.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://newbuild.whamcloud.com/job/lustre-master/./arch=x86_64,build_type=client,distro=sles11,ib_stack=inkernel/159/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,sles11,inkernel #159&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-307&quot; title=&quot;Test failure on test suite parallel-scale ior&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-307&quot;&gt;&lt;del&gt;LU-307&lt;/del&gt;&lt;/a&gt; Send parent FID from client to MDS on NFS open for striping info&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=255e37f1639fa4edec5b929228afe7c0e8b56724&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;255e37f1639fa4edec5b929228afe7c0e8b56724&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mdt/mdt_open.c&lt;/li&gt;
	&lt;li&gt;lustre/mdt/mdt_internal.h&lt;/li&gt;
	&lt;li&gt;lustre/mdd/mdd_object.c&lt;/li&gt;
	&lt;li&gt;lustre/include/md_object.h&lt;/li&gt;
	&lt;li&gt;lustre/mdt/mdt_handler.c&lt;/li&gt;
	&lt;li&gt;lustre/include/linux/lustre_compat25.h&lt;/li&gt;
	&lt;li&gt;lustre/mdd/mdd_lov.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/llite_internal.h&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre_mds.h&lt;/li&gt;
	&lt;li&gt;lustre/llite/llite_nfs.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/llite_lib.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/file.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="15933" author="hudson" created="Wed, 8 Jun 2011 23:15:55 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://newbuild.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://newbuild.whamcloud.com/job/lustre-master/./arch=x86_64,build_type=client,distro=el6,ib_stack=inkernel/159/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,el6,inkernel #159&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-307&quot; title=&quot;Test failure on test suite parallel-scale ior&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-307&quot;&gt;&lt;del&gt;LU-307&lt;/del&gt;&lt;/a&gt; Send parent FID from client to MDS on NFS open for striping info&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=255e37f1639fa4edec5b929228afe7c0e8b56724&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;255e37f1639fa4edec5b929228afe7c0e8b56724&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mdt/mdt_internal.h&lt;/li&gt;
	&lt;li&gt;lustre/llite/file.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/llite_nfs.c&lt;/li&gt;
	&lt;li&gt;lustre/mdd/mdd_object.c&lt;/li&gt;
	&lt;li&gt;lustre/mdd/mdd_lov.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/llite_lib.c&lt;/li&gt;
	&lt;li&gt;lustre/mdt/mdt_handler.c&lt;/li&gt;
	&lt;li&gt;lustre/include/linux/lustre_compat25.h&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre_mds.h&lt;/li&gt;
	&lt;li&gt;lustre/llite/llite_internal.h&lt;/li&gt;
	&lt;li&gt;lustre/include/md_object.h&lt;/li&gt;
	&lt;li&gt;lustre/mdt/mdt_open.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="15934" author="hudson" created="Wed, 8 Jun 2011 23:18:34 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://newbuild.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://newbuild.whamcloud.com/job/lustre-master/./arch=i686,build_type=client,distro=el5,ib_stack=inkernel/159/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,client,el5,inkernel #159&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-307&quot; title=&quot;Test failure on test suite parallel-scale ior&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-307&quot;&gt;&lt;del&gt;LU-307&lt;/del&gt;&lt;/a&gt; Send parent FID from client to MDS on NFS open for striping info&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=255e37f1639fa4edec5b929228afe7c0e8b56724&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;255e37f1639fa4edec5b929228afe7c0e8b56724&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/include/md_object.h&lt;/li&gt;
	&lt;li&gt;lustre/llite/llite_internal.h&lt;/li&gt;
	&lt;li&gt;lustre/mdt/mdt_open.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre_mds.h&lt;/li&gt;
	&lt;li&gt;lustre/include/linux/lustre_compat25.h&lt;/li&gt;
	&lt;li&gt;lustre/mdd/mdd_object.c&lt;/li&gt;
	&lt;li&gt;lustre/mdt/mdt_handler.c&lt;/li&gt;
	&lt;li&gt;lustre/mdt/mdt_internal.h&lt;/li&gt;
	&lt;li&gt;lustre/llite/llite_lib.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/file.c&lt;/li&gt;
	&lt;li&gt;lustre/mdd/mdd_lov.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/llite_nfs.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="15935" author="hudson" created="Wed, 8 Jun 2011 23:19:03 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://newbuild.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://newbuild.whamcloud.com/job/lustre-master/./arch=x86_64,build_type=client,distro=ubuntu1004,ib_stack=inkernel/159/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,ubuntu1004,inkernel #159&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-307&quot; title=&quot;Test failure on test suite parallel-scale ior&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-307&quot;&gt;&lt;del&gt;LU-307&lt;/del&gt;&lt;/a&gt; Send parent FID from client to MDS on NFS open for striping info&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=255e37f1639fa4edec5b929228afe7c0e8b56724&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;255e37f1639fa4edec5b929228afe7c0e8b56724&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/llite/llite_lib.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/file.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/llite_internal.h&lt;/li&gt;
	&lt;li&gt;lustre/include/md_object.h&lt;/li&gt;
	&lt;li&gt;lustre/mdd/mdd_object.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre_mds.h&lt;/li&gt;
	&lt;li&gt;lustre/mdt/mdt_open.c&lt;/li&gt;
	&lt;li&gt;lustre/mdd/mdd_lov.c&lt;/li&gt;
	&lt;li&gt;lustre/include/linux/lustre_compat25.h&lt;/li&gt;
	&lt;li&gt;lustre/mdt/mdt_handler.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/llite_nfs.c&lt;/li&gt;
	&lt;li&gt;lustre/mdt/mdt_internal.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="15936" author="hudson" created="Wed, 8 Jun 2011 23:20:03 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://newbuild.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://newbuild.whamcloud.com/job/lustre-master/./arch=i686,build_type=client,distro=el6,ib_stack=inkernel/159/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,client,el6,inkernel #159&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-307&quot; title=&quot;Test failure on test suite parallel-scale ior&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-307&quot;&gt;&lt;del&gt;LU-307&lt;/del&gt;&lt;/a&gt; Send parent FID from client to MDS on NFS open for striping info&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=255e37f1639fa4edec5b929228afe7c0e8b56724&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;255e37f1639fa4edec5b929228afe7c0e8b56724&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/llite/llite_nfs.c&lt;/li&gt;
	&lt;li&gt;lustre/include/linux/lustre_compat25.h&lt;/li&gt;
	&lt;li&gt;lustre/llite/llite_lib.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/llite_internal.h&lt;/li&gt;
	&lt;li&gt;lustre/mdd/mdd_object.c&lt;/li&gt;
	&lt;li&gt;lustre/mdt/mdt_handler.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/file.c&lt;/li&gt;
	&lt;li&gt;lustre/mdd/mdd_lov.c&lt;/li&gt;
	&lt;li&gt;lustre/include/md_object.h&lt;/li&gt;
	&lt;li&gt;lustre/mdt/mdt_internal.h&lt;/li&gt;
	&lt;li&gt;lustre/mdt/mdt_open.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre_mds.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="15937" author="hudson" created="Wed, 8 Jun 2011 23:22:57 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://newbuild.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://newbuild.whamcloud.com/job/lustre-master/./arch=i686,build_type=client,distro=el5,ib_stack=ofa/159/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,client,el5,ofa #159&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-307&quot; title=&quot;Test failure on test suite parallel-scale ior&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-307&quot;&gt;&lt;del&gt;LU-307&lt;/del&gt;&lt;/a&gt; Send parent FID from client to MDS on NFS open for striping info&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=255e37f1639fa4edec5b929228afe7c0e8b56724&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;255e37f1639fa4edec5b929228afe7c0e8b56724&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/llite/file.c&lt;/li&gt;
	&lt;li&gt;lustre/mdt/mdt_internal.h&lt;/li&gt;
	&lt;li&gt;lustre/mdd/mdd_object.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre_mds.h&lt;/li&gt;
	&lt;li&gt;lustre/include/linux/lustre_compat25.h&lt;/li&gt;
	&lt;li&gt;lustre/include/md_object.h&lt;/li&gt;
	&lt;li&gt;lustre/llite/llite_internal.h&lt;/li&gt;
	&lt;li&gt;lustre/llite/llite_nfs.c&lt;/li&gt;
	&lt;li&gt;lustre/mdd/mdd_lov.c&lt;/li&gt;
	&lt;li&gt;lustre/mdt/mdt_open.c&lt;/li&gt;
	&lt;li&gt;lustre/mdt/mdt_handler.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/llite_lib.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="15938" author="hudson" created="Wed, 8 Jun 2011 23:32:01 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://newbuild.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://newbuild.whamcloud.com/job/lustre-master/./arch=x86_64,build_type=server,distro=el5,ib_stack=ofa/159/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,server,el5,ofa #159&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-307&quot; title=&quot;Test failure on test suite parallel-scale ior&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-307&quot;&gt;&lt;del&gt;LU-307&lt;/del&gt;&lt;/a&gt; Send parent FID from client to MDS on NFS open for striping info&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=255e37f1639fa4edec5b929228afe7c0e8b56724&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;255e37f1639fa4edec5b929228afe7c0e8b56724&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mdd/mdd_lov.c&lt;/li&gt;
	&lt;li&gt;lustre/include/linux/lustre_compat25.h&lt;/li&gt;
	&lt;li&gt;lustre/mdd/mdd_object.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre_mds.h&lt;/li&gt;
	&lt;li&gt;lustre/llite/llite_nfs.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/llite_internal.h&lt;/li&gt;
	&lt;li&gt;lustre/mdt/mdt_open.c&lt;/li&gt;
	&lt;li&gt;lustre/mdt/mdt_handler.c&lt;/li&gt;
	&lt;li&gt;lustre/mdt/mdt_internal.h&lt;/li&gt;
	&lt;li&gt;lustre/include/md_object.h&lt;/li&gt;
	&lt;li&gt;lustre/llite/llite_lib.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/file.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="15939" author="hudson" created="Wed, 8 Jun 2011 23:35:36 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://newbuild.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://newbuild.whamcloud.com/job/lustre-master/./arch=x86_64,build_type=server,distro=el6,ib_stack=inkernel/159/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,server,el6,inkernel #159&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-307&quot; title=&quot;Test failure on test suite parallel-scale ior&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-307&quot;&gt;&lt;del&gt;LU-307&lt;/del&gt;&lt;/a&gt; Send parent FID from client to MDS on NFS open for striping info&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=255e37f1639fa4edec5b929228afe7c0e8b56724&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;255e37f1639fa4edec5b929228afe7c0e8b56724&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/llite/llite_lib.c&lt;/li&gt;
	&lt;li&gt;lustre/mdt/mdt_internal.h&lt;/li&gt;
	&lt;li&gt;lustre/include/md_object.h&lt;/li&gt;
	&lt;li&gt;lustre/llite/llite_nfs.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre_mds.h&lt;/li&gt;
	&lt;li&gt;lustre/mdd/mdd_lov.c&lt;/li&gt;
	&lt;li&gt;lustre/mdt/mdt_open.c&lt;/li&gt;
	&lt;li&gt;lustre/mdt/mdt_handler.c&lt;/li&gt;
	&lt;li&gt;lustre/mdd/mdd_object.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/llite_internal.h&lt;/li&gt;
	&lt;li&gt;lustre/include/linux/lustre_compat25.h&lt;/li&gt;
	&lt;li&gt;lustre/llite/file.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="15940" author="hudson" created="Wed, 8 Jun 2011 23:37:44 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://newbuild.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://newbuild.whamcloud.com/job/lustre-master/./arch=x86_64,build_type=client,distro=ubuntu1004,ib_stack=ofa/159/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,ubuntu1004,ofa #159&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-307&quot; title=&quot;Test failure on test suite parallel-scale ior&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-307&quot;&gt;&lt;del&gt;LU-307&lt;/del&gt;&lt;/a&gt; Send parent FID from client to MDS on NFS open for striping info&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=255e37f1639fa4edec5b929228afe7c0e8b56724&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;255e37f1639fa4edec5b929228afe7c0e8b56724&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/llite/llite_nfs.c&lt;/li&gt;
	&lt;li&gt;lustre/include/md_object.h&lt;/li&gt;
	&lt;li&gt;lustre/mdt/mdt_open.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/llite_lib.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/llite_internal.h&lt;/li&gt;
	&lt;li&gt;lustre/mdd/mdd_lov.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre_mds.h&lt;/li&gt;
	&lt;li&gt;lustre/mdt/mdt_handler.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/file.c&lt;/li&gt;
	&lt;li&gt;lustre/include/linux/lustre_compat25.h&lt;/li&gt;
	&lt;li&gt;lustre/mdt/mdt_internal.h&lt;/li&gt;
	&lt;li&gt;lustre/mdd/mdd_object.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="15941" author="hudson" created="Wed, 8 Jun 2011 23:42:08 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://newbuild.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://newbuild.whamcloud.com/job/lustre-master/./arch=i686,build_type=server,distro=el5,ib_stack=inkernel/159/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,server,el5,inkernel #159&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-307&quot; title=&quot;Test failure on test suite parallel-scale ior&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-307&quot;&gt;&lt;del&gt;LU-307&lt;/del&gt;&lt;/a&gt; Send parent FID from client to MDS on NFS open for striping info&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=255e37f1639fa4edec5b929228afe7c0e8b56724&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;255e37f1639fa4edec5b929228afe7c0e8b56724&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/llite/llite_internal.h&lt;/li&gt;
	&lt;li&gt;lustre/include/linux/lustre_compat25.h&lt;/li&gt;
	&lt;li&gt;lustre/mdt/mdt_open.c&lt;/li&gt;
	&lt;li&gt;lustre/mdt/mdt_internal.h&lt;/li&gt;
	&lt;li&gt;lustre/mdt/mdt_handler.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre_mds.h&lt;/li&gt;
	&lt;li&gt;lustre/llite/llite_lib.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/file.c&lt;/li&gt;
	&lt;li&gt;lustre/mdd/mdd_lov.c&lt;/li&gt;
	&lt;li&gt;lustre/include/md_object.h&lt;/li&gt;
	&lt;li&gt;lustre/mdd/mdd_object.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/llite_nfs.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="15942" author="hudson" created="Wed, 8 Jun 2011 23:43:39 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://newbuild.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://newbuild.whamcloud.com/job/lustre-master/./arch=i686,build_type=server,distro=el6,ib_stack=inkernel/159/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,server,el6,inkernel #159&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-307&quot; title=&quot;Test failure on test suite parallel-scale ior&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-307&quot;&gt;&lt;del&gt;LU-307&lt;/del&gt;&lt;/a&gt; Send parent FID from client to MDS on NFS open for striping info&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=255e37f1639fa4edec5b929228afe7c0e8b56724&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;255e37f1639fa4edec5b929228afe7c0e8b56724&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mdt/mdt_internal.h&lt;/li&gt;
	&lt;li&gt;lustre/include/linux/lustre_compat25.h&lt;/li&gt;
	&lt;li&gt;lustre/mdd/mdd_lov.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/file.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/llite_lib.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/llite_nfs.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre_mds.h&lt;/li&gt;
	&lt;li&gt;lustre/mdt/mdt_handler.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/llite_internal.h&lt;/li&gt;
	&lt;li&gt;lustre/mdt/mdt_open.c&lt;/li&gt;
	&lt;li&gt;lustre/include/md_object.h&lt;/li&gt;
	&lt;li&gt;lustre/mdd/mdd_object.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="15943" author="hudson" created="Wed, 8 Jun 2011 23:55:45 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://newbuild.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://newbuild.whamcloud.com/job/lustre-master/./arch=i686,build_type=server,distro=el5,ib_stack=ofa/159/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,server,el5,ofa #159&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-307&quot; title=&quot;Test failure on test suite parallel-scale ior&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-307&quot;&gt;&lt;del&gt;LU-307&lt;/del&gt;&lt;/a&gt; Send parent FID from client to MDS on NFS open for striping info&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=255e37f1639fa4edec5b929228afe7c0e8b56724&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;255e37f1639fa4edec5b929228afe7c0e8b56724&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mdt/mdt_handler.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/llite_nfs.c&lt;/li&gt;
	&lt;li&gt;lustre/include/md_object.h&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre_mds.h&lt;/li&gt;
	&lt;li&gt;lustre/llite/llite_lib.c&lt;/li&gt;
	&lt;li&gt;lustre/mdt/mdt_internal.h&lt;/li&gt;
	&lt;li&gt;lustre/include/linux/lustre_compat25.h&lt;/li&gt;
	&lt;li&gt;lustre/mdt/mdt_open.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/llite_internal.h&lt;/li&gt;
	&lt;li&gt;lustre/mdd/mdd_object.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/file.c&lt;/li&gt;
	&lt;li&gt;lustre/mdd/mdd_lov.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="15944" author="pjones" created="Thu, 9 Jun 2011 00:36:54 +0000"  >&lt;p&gt;Andreas&lt;/p&gt;

&lt;p&gt;I chatted directly with FanYong about this. At this stage I think that we will not land an equivalent 1.8.x patch but we could revisit this for a future 1.8.x maintenance release if we find that there is sufficient demand for running 1.8.x clients with 2.x servers in conjunction with NFS re-esxports.&lt;/p&gt;

&lt;p&gt;Thanks for being vigilant and posing questions such as this&lt;/p&gt;

&lt;p&gt;Peter&lt;/p&gt;</comment>
                            <comment id="15945" author="hudson" created="Thu, 9 Jun 2011 00:39:41 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://newbuild.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://newbuild.whamcloud.com/job/lustre-master/./arch=x86_64,build_type=server,distro=el5,ib_stack=inkernel/159/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,server,el5,inkernel #159&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-307&quot; title=&quot;Test failure on test suite parallel-scale ior&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-307&quot;&gt;&lt;del&gt;LU-307&lt;/del&gt;&lt;/a&gt; Send parent FID from client to MDS on NFS open for striping info&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=255e37f1639fa4edec5b929228afe7c0e8b56724&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;255e37f1639fa4edec5b929228afe7c0e8b56724&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/include/md_object.h&lt;/li&gt;
	&lt;li&gt;lustre/mdt/mdt_open.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/llite_internal.h&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre_mds.h&lt;/li&gt;
	&lt;li&gt;lustre/llite/llite_nfs.c&lt;/li&gt;
	&lt;li&gt;lustre/mdt/mdt_internal.h&lt;/li&gt;
	&lt;li&gt;lustre/include/linux/lustre_compat25.h&lt;/li&gt;
	&lt;li&gt;lustre/llite/llite_lib.c&lt;/li&gt;
	&lt;li&gt;lustre/mdd/mdd_object.c&lt;/li&gt;
	&lt;li&gt;lustre/mdd/mdd_lov.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/file.c&lt;/li&gt;
	&lt;li&gt;lustre/mdt/mdt_handler.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="15954" author="green" created="Thu, 9 Jun 2011 12:04:52 +0000"  >&lt;p&gt;After applying &lt;a href=&quot;http://review.whamcloud.com/923&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://review.whamcloud.com/923&lt;/a&gt; (&lt;a href=&quot;https://jira.whamcloud.com/browse/LU-405&quot; title=&quot;NFS4 reexport fails with ll_find_alias()) ASSERTION(last_discon == NULL)&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-405&quot;&gt;&lt;del&gt;LU-405&lt;/del&gt;&lt;/a&gt;) on top of the previously mentioned 3 patches I cannot reproduce any NFS problems in my local testing)&lt;/p&gt;</comment>
                            <comment id="16278" author="hudson" created="Tue, 14 Jun 2011 08:15:25 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://newbuild.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://newbuild.whamcloud.com/job/lustre-master/./arch=x86_64,build_type=client,distro=el5,ib_stack=inkernel/170/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,el5,inkernel #170&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-307&quot; title=&quot;Test failure on test suite parallel-scale ior&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-307&quot;&gt;&lt;del&gt;LU-307&lt;/del&gt;&lt;/a&gt; Send parent FID from client to MDS on NFS open for striping info&lt;/p&gt;

&lt;p&gt;Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=255e37f1639fa4edec5b929228afe7c0e8b56724&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;255e37f1639fa4edec5b929228afe7c0e8b56724&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mdt/mdt_internal.h&lt;/li&gt;
	&lt;li&gt;lustre/llite/llite_lib.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/llite_internal.h&lt;/li&gt;
	&lt;li&gt;lustre/include/md_object.h&lt;/li&gt;
	&lt;li&gt;lustre/include/linux/lustre_compat25.h&lt;/li&gt;
	&lt;li&gt;lustre/mdt/mdt_handler.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/file.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre_mds.h&lt;/li&gt;
	&lt;li&gt;lustre/mdt/mdt_open.c&lt;/li&gt;
	&lt;li&gt;lustre/mdd/mdd_lov.c&lt;/li&gt;
	&lt;li&gt;lustre/mdd/mdd_object.c&lt;/li&gt;
	&lt;li&gt;lustre/llite/llite_nfs.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                    </comments>
                    <attachments>
                    </attachments>
                <subtasks>
                    </subtasks>
                <customfields>
                                                                                                                                                                                            <customfield id="customfield_10890" key="com.atlassian.jira.plugins.jira-development-integration-plugin:devsummary">
                        <customfieldname>Development</customfieldname>
                        <customfieldvalues>
                            
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                        <customfield id="customfield_10390" key="com.pyxis.greenhopper.jira:gh-lexo-rank">
                        <customfieldname>Rank</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>1|hzv90n:</customfieldvalue>

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

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