<!-- 
RSS generated by JIRA (9.4.14#940014-sha1:734e6822bbf0d45eff9af51f82432957f73aa32c) at Sat Feb 10 01:08:04 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-543] Missing UNLINK record on overwritting rename</title>
                <link>https://jira.whamcloud.com/browse/LU-543</link>
                <project id="10000" key="LU">Lustre</project>
                    <description>&lt;p&gt;If there are 2 files A and B, and if B is removed this way: rename(A,B)&lt;br/&gt;
there is no information in MDT changelog to indicate that B was unlinked.&lt;br/&gt;
I think an UNLINK record about B would be appropriate in this case.&lt;/p&gt;</description>
                <environment></environment>
        <key id="11406">LU-543</key>
            <summary>Missing UNLINK record on overwritting rename</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="niu">Niu Yawei</assignee>
                                    <reporter username="leibovici-cea">Thomas LEIBOVICI - CEA</reporter>
                        <labels>
                    </labels>
                <created>Wed, 27 Jul 2011 11:03:49 +0000</created>
                <updated>Sun, 8 Apr 2012 15:21:06 +0000</updated>
                            <resolved>Wed, 14 Dec 2011 10:18:21 +0000</resolved>
                                    <version>Lustre 2.0.0</version>
                    <version>Lustre 2.1.0</version>
                                    <fixVersion>Lustre 2.2.0</fixVersion>
                    <fixVersion>Lustre 2.1.2</fixVersion>
                                        <due></due>
                            <votes>0</votes>
                                    <watches>7</watches>
                                                                            <comments>
                            <comment id="18392" author="pjones" created="Thu, 28 Jul 2011 20:13:16 +0000"  >&lt;p&gt;Niu&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="18468" author="niu" created="Thu, 28 Jul 2011 23:47:06 +0000"  >&lt;p&gt;Hi, Thomas&lt;/p&gt;

&lt;p&gt;I don&apos;t quite see why you want a UNLINK record for the rename, the rename changelog isn&apos;t enough for lustre_rsync to replay the changes? Could you explain it a little bit more? Thanks.&lt;/p&gt;</comment>
                            <comment id="18475" author="leibovici-cea" created="Fri, 29 Jul 2011 05:09:28 +0000"  >&lt;p&gt;Hi Niu,&lt;/p&gt;

&lt;p&gt;Initially, if you have 2 existing files dir1/A (fid1) and dir2/B (fid2),&lt;br/&gt;
rename(A,B) as 2 consequences:&lt;/p&gt;
&lt;ul class=&quot;alternate&quot; type=&quot;square&quot;&gt;
	&lt;li&gt;deleting the object with fid2 (whose name was dir2/B)&lt;/li&gt;
	&lt;li&gt;renaming entry with fid1, from dir1/A to dir2/B&lt;/li&gt;
&lt;/ul&gt;


&lt;p&gt;In the changelog, you only see that entry with fid1 is moved (RNMFROM and RNMTO records)&lt;br/&gt;
but there is absolutely no reference to the fact that entry with fid2 has been deleted from filesystem.&lt;br/&gt;
This can cause troubles when using changelogs for tracking UNLINK events to make some cleaning of file-related resources.&lt;br/&gt;
eg. in HSM, UNLINK are tracked to clean copies in storage backend after the file was removed from Lustre.&lt;/p&gt;</comment>
                            <comment id="18476" author="niu" created="Fri, 29 Jul 2011 05:51:44 +0000"  >&lt;p&gt;Hi, Thomas&lt;/p&gt;

&lt;p&gt;Thanks a lot for your clarification, as far as I know, the changelog is used for lustre_rsync to replicate a filesystem, and current rename changelog entry is sufficient for lustre_rsync to replicate the rename operation on target fs.(and the fid2 on target fs will be deleted when the rename is replicated).&lt;/p&gt;

&lt;p&gt;For your use case (tracking UNLINK events to make some cleaning work), I think the proper solution might be fixing the tool itself. I&apos;m not the changelog &amp;amp; HSM expert, maybe Andreas is the best person we refer to.&lt;/p&gt;

&lt;p&gt;Hi, Andreas&lt;br/&gt;
Could you take a look at this problem? Thank you.&lt;/p&gt;</comment>
                            <comment id="21126" author="niu" created="Tue, 11 Oct 2011 22:14:08 +0000"  >&lt;p&gt;Hi, Thomas&lt;/p&gt;

&lt;p&gt;After discussing with Andreas, I realized that the unlink record has a CLF_UNLINK_LAST flag indicating whether it&apos;s the last nlink, which is different from the rename record.&lt;/p&gt;

&lt;p&gt;My question is how do your application use the changelog? Will it check the CLF_UNLINK_LAST flag or it just replicate all unlink operations? You know, just simply adding an extra unlink record for rename will confuse the replcating applications (such as lustre_rsync), so I want to make certain how your application use the changelog first, then try to figure out a thorough solution.&lt;/p&gt;

&lt;p&gt;Thanks&lt;br/&gt;
Niu&lt;/p&gt;</comment>
                            <comment id="21138" author="jcl" created="Wed, 12 Oct 2011 07:14:12 +0000"  >&lt;p&gt;hello&lt;/p&gt;

&lt;p&gt;In this case renaming a file does 2 things:&lt;/p&gt;
&lt;ul class=&quot;alternate&quot; type=&quot;square&quot;&gt;
	&lt;li&gt;unlink old file (remove file)&lt;/li&gt;
	&lt;li&gt;rename file&lt;br/&gt;
so this is 2 independent events but done atomically. Today we have a silent unlink, we lose the information : old FID is no more used.&lt;br/&gt;
lustre_rsync works only if the replicate FS has the same behaviour (rename do unlink)&lt;br/&gt;
if lustre triggers 2 events : UNLINK + RENAME, lustre_rsync should also works, it will first remove the old one and after replace it with the new one&lt;/li&gt;
&lt;/ul&gt;


&lt;p&gt;I think the discussion is more on : what should do Lustre than how applications are using changelog today&lt;/p&gt;
</comment>
                            <comment id="21169" author="niu" created="Wed, 12 Oct 2011 22:41:01 +0000"  >&lt;blockquote&gt;
&lt;p&gt;so this is 2 independent events but done atomically&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;hmm, from the fs perspective, rename is one syscall, unlink + rename are two syscalls, they are different.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;Today we have a silent unlink, we lose the information : old FID is no more used.&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;Could we scan the rename records as well? If there is any important information missed in rename record, I think we can fix it up.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;I think the discussion is more on : what should do Lustre than how applications are using changelog today&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;I think the purpose of changelog is to record the performed fs operations on source fs and replicate them on target fs, if we record rename as UNLINK + RENAME, then an atomic rename syscall will be translated into two syscalls (unlink + rename) on target fs, that&apos;s why I hesitate to make this chanage.&lt;/p&gt;</comment>
                            <comment id="21180" author="leibovici-cea" created="Thu, 13 Oct 2011 05:08:02 +0000"  >&lt;blockquote&gt;
&lt;p&gt;If there is any important information missed in rename record, I think we can fix it up.&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;This is the point: when a rename results in removing an entry from the filesystem, the rename record should report the fid of the removed entry.&lt;/p&gt;

&lt;blockquote&gt;
&lt;p&gt;from the fs perspective, rename is one syscall, unlink + rename are two syscalls, they are different.&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;Even if it is an atomic operation for the filesystem, rename is already reported as 2 different records (RNMFRM and RNMTO).&lt;br/&gt;
I guess this is because current log record structure cannot contain all info about the rename operation (both source and target).&lt;br/&gt;
In case of an overwritting rename, this could be completed with a third event: UNLINK record with a special flag. If this flag is set, llreplicate can ignore the record, but if another tool is interested in deleted entries, the information is not lost.&lt;/p&gt;

&lt;p&gt;Also, using UNLINK record sementics would make it possible to use existing flags of UNLINK record like CLF_UNLINK_LAST.&lt;/p&gt;</comment>
                            <comment id="21194" author="niu" created="Thu, 13 Oct 2011 09:07:34 +0000"  >&lt;blockquote&gt;
&lt;p&gt;This is the point: when a rename results in removing an entry from the filesystem, the rename record should report the fid of the removed entry.&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;Ok, if the target fid is necessary, I think we should put it in the second record of rename. Source fid is stored in the second record currently, looks it should be replaced with the target fid. Will provide a patch later. Thanks.&lt;/p&gt;</comment>
                            <comment id="21196" author="jcl" created="Thu, 13 Oct 2011 09:28:54 +0000"  >&lt;blockquote&gt;
&lt;p&gt;I think the purpose of changelog is to record the performed fs operations on source fs and replicate them on target fs, if we record rename as UNLINK + RENAME, then an atomic rename syscall will be translated into two syscalls (unlink + rename) on target fs, that&apos;s why I hesitate to make this chanage.&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;Changelog is a generic mechanism used to track what happen in a Lustre FS in an event based mode.&lt;br/&gt;
It can be used for many more things than FS replication (statistics, traces, audit, ....)&lt;/p&gt;</comment>
                            <comment id="21198" author="niu" created="Thu, 13 Oct 2011 10:11:11 +0000"  >&lt;blockquote&gt;
&lt;p&gt;Changelog is a generic mechanism used to track what happen in a Lustre FS in an event based mode.&lt;br/&gt;
It can be used for many more things than FS replication (statistics, traces, audit, ....)&lt;/p&gt;&lt;/blockquote&gt;
&lt;p&gt;Totally agree. Thanks, jacques-charles.&lt;/p&gt;</comment>
                            <comment id="22540" author="niu" created="Sat, 5 Nov 2011 01:29:39 +0000"  >&lt;p&gt;&lt;a href=&quot;http://review.whamcloud.com/1652&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://review.whamcloud.com/1652&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="24660" author="hudson" created="Wed, 14 Dec 2011 08:10:09 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=x86_64,build_type=server,distro=el5,ib_stack=ofa/382/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,server,el5,ofa #382&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-543&quot; title=&quot;Missing UNLINK record on overwritting rename&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-543&quot;&gt;&lt;del&gt;LU-543&lt;/del&gt;&lt;/a&gt; mdd: fix rename changelog (Revision 348de4763c9322282d446d65677b52bcd6e8e8be)&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=348de4763c9322282d446d65677b52bcd6e8e8be&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;348de4763c9322282d446d65677b52bcd6e8e8be&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mdd/mdd_dir.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="24663" author="hudson" created="Wed, 14 Dec 2011 08:15:42 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=x86_64,build_type=client,distro=el5,ib_stack=inkernel/382/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,el5,inkernel #382&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-543&quot; title=&quot;Missing UNLINK record on overwritting rename&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-543&quot;&gt;&lt;del&gt;LU-543&lt;/del&gt;&lt;/a&gt; mdd: fix rename changelog (Revision 348de4763c9322282d446d65677b52bcd6e8e8be)&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=348de4763c9322282d446d65677b52bcd6e8e8be&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;348de4763c9322282d446d65677b52bcd6e8e8be&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mdd/mdd_dir.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="24666" author="hudson" created="Wed, 14 Dec 2011 08:16:39 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=x86_64,build_type=client,distro=el6,ib_stack=inkernel/382/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,el6,inkernel #382&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-543&quot; title=&quot;Missing UNLINK record on overwritting rename&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-543&quot;&gt;&lt;del&gt;LU-543&lt;/del&gt;&lt;/a&gt; mdd: fix rename changelog (Revision 348de4763c9322282d446d65677b52bcd6e8e8be)&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=348de4763c9322282d446d65677b52bcd6e8e8be&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;348de4763c9322282d446d65677b52bcd6e8e8be&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mdd/mdd_dir.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="24669" author="hudson" created="Wed, 14 Dec 2011 08:22:32 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=x86_64,build_type=server,distro=el5,ib_stack=inkernel/382/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,server,el5,inkernel #382&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-543&quot; title=&quot;Missing UNLINK record on overwritting rename&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-543&quot;&gt;&lt;del&gt;LU-543&lt;/del&gt;&lt;/a&gt; mdd: fix rename changelog (Revision 348de4763c9322282d446d65677b52bcd6e8e8be)&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=348de4763c9322282d446d65677b52bcd6e8e8be&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;348de4763c9322282d446d65677b52bcd6e8e8be&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mdd/mdd_dir.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="24672" author="hudson" created="Wed, 14 Dec 2011 08:23:05 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=i686,build_type=server,distro=el6,ib_stack=inkernel/382/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,server,el6,inkernel #382&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-543&quot; title=&quot;Missing UNLINK record on overwritting rename&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-543&quot;&gt;&lt;del&gt;LU-543&lt;/del&gt;&lt;/a&gt; mdd: fix rename changelog (Revision 348de4763c9322282d446d65677b52bcd6e8e8be)&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=348de4763c9322282d446d65677b52bcd6e8e8be&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;348de4763c9322282d446d65677b52bcd6e8e8be&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mdd/mdd_dir.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="24675" author="hudson" created="Wed, 14 Dec 2011 08:23: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=el5,ib_stack=ofa/382/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,el5,ofa #382&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-543&quot; title=&quot;Missing UNLINK record on overwritting rename&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-543&quot;&gt;&lt;del&gt;LU-543&lt;/del&gt;&lt;/a&gt; mdd: fix rename changelog (Revision 348de4763c9322282d446d65677b52bcd6e8e8be)&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=348de4763c9322282d446d65677b52bcd6e8e8be&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;348de4763c9322282d446d65677b52bcd6e8e8be&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mdd/mdd_dir.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="24678" author="hudson" created="Wed, 14 Dec 2011 08:24: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-master/./arch=x86_64,build_type=client,distro=ubuntu1004,ib_stack=inkernel/382/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,ubuntu1004,inkernel #382&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-543&quot; title=&quot;Missing UNLINK record on overwritting rename&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-543&quot;&gt;&lt;del&gt;LU-543&lt;/del&gt;&lt;/a&gt; mdd: fix rename changelog (Revision 348de4763c9322282d446d65677b52bcd6e8e8be)&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=348de4763c9322282d446d65677b52bcd6e8e8be&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;348de4763c9322282d446d65677b52bcd6e8e8be&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mdd/mdd_dir.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="24681" author="hudson" created="Wed, 14 Dec 2011 08:27:01 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=x86_64,build_type=client,distro=sles11,ib_stack=inkernel/382/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,sles11,inkernel #382&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-543&quot; title=&quot;Missing UNLINK record on overwritting rename&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-543&quot;&gt;&lt;del&gt;LU-543&lt;/del&gt;&lt;/a&gt; mdd: fix rename changelog (Revision 348de4763c9322282d446d65677b52bcd6e8e8be)&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=348de4763c9322282d446d65677b52bcd6e8e8be&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;348de4763c9322282d446d65677b52bcd6e8e8be&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mdd/mdd_dir.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="24684" author="hudson" created="Wed, 14 Dec 2011 08:30:23 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=i686,build_type=server,distro=el5,ib_stack=ofa/382/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,server,el5,ofa #382&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-543&quot; title=&quot;Missing UNLINK record on overwritting rename&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-543&quot;&gt;&lt;del&gt;LU-543&lt;/del&gt;&lt;/a&gt; mdd: fix rename changelog (Revision 348de4763c9322282d446d65677b52bcd6e8e8be)&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=348de4763c9322282d446d65677b52bcd6e8e8be&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;348de4763c9322282d446d65677b52bcd6e8e8be&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mdd/mdd_dir.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="24687" author="hudson" created="Wed, 14 Dec 2011 08:32:27 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=x86_64,build_type=server,distro=el6,ib_stack=inkernel/382/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,server,el6,inkernel #382&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-543&quot; title=&quot;Missing UNLINK record on overwritting rename&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-543&quot;&gt;&lt;del&gt;LU-543&lt;/del&gt;&lt;/a&gt; mdd: fix rename changelog (Revision 348de4763c9322282d446d65677b52bcd6e8e8be)&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=348de4763c9322282d446d65677b52bcd6e8e8be&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;348de4763c9322282d446d65677b52bcd6e8e8be&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mdd/mdd_dir.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="24691" author="hudson" created="Wed, 14 Dec 2011 08:40: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-master/./arch=i686,build_type=client,distro=el6,ib_stack=inkernel/382/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,client,el6,inkernel #382&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-543&quot; title=&quot;Missing UNLINK record on overwritting rename&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-543&quot;&gt;&lt;del&gt;LU-543&lt;/del&gt;&lt;/a&gt; mdd: fix rename changelog (Revision 348de4763c9322282d446d65677b52bcd6e8e8be)&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=348de4763c9322282d446d65677b52bcd6e8e8be&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;348de4763c9322282d446d65677b52bcd6e8e8be&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mdd/mdd_dir.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="24694" author="hudson" created="Wed, 14 Dec 2011 08:42:30 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=i686,build_type=server,distro=el5,ib_stack=inkernel/382/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,server,el5,inkernel #382&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-543&quot; title=&quot;Missing UNLINK record on overwritting rename&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-543&quot;&gt;&lt;del&gt;LU-543&lt;/del&gt;&lt;/a&gt; mdd: fix rename changelog (Revision 348de4763c9322282d446d65677b52bcd6e8e8be)&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=348de4763c9322282d446d65677b52bcd6e8e8be&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;348de4763c9322282d446d65677b52bcd6e8e8be&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mdd/mdd_dir.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="24697" author="hudson" created="Wed, 14 Dec 2011 08:48:46 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=i686,build_type=client,distro=el5,ib_stack=inkernel/382/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,client,el5,inkernel #382&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-543&quot; title=&quot;Missing UNLINK record on overwritting rename&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-543&quot;&gt;&lt;del&gt;LU-543&lt;/del&gt;&lt;/a&gt; mdd: fix rename changelog (Revision 348de4763c9322282d446d65677b52bcd6e8e8be)&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=348de4763c9322282d446d65677b52bcd6e8e8be&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;348de4763c9322282d446d65677b52bcd6e8e8be&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mdd/mdd_dir.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="24701" author="hudson" created="Wed, 14 Dec 2011 09:05:58 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=i686,build_type=client,distro=el5,ib_stack=ofa/382/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,client,el5,ofa #382&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-543&quot; title=&quot;Missing UNLINK record on overwritting rename&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-543&quot;&gt;&lt;del&gt;LU-543&lt;/del&gt;&lt;/a&gt; mdd: fix rename changelog (Revision 348de4763c9322282d446d65677b52bcd6e8e8be)&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=348de4763c9322282d446d65677b52bcd6e8e8be&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;348de4763c9322282d446d65677b52bcd6e8e8be&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mdd/mdd_dir.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="24712" author="pjones" created="Wed, 14 Dec 2011 10:18:21 +0000"  >&lt;p&gt;Landed for 2.2&lt;/p&gt;</comment>
                            <comment id="33985" author="hudson" created="Sun, 8 Apr 2012 13:40:02 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-b2_1/./arch=x86_64,build_type=client,distro=sles11,ib_stack=inkernel/41/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-b2_1 &#187; x86_64,client,sles11,inkernel #41&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-543&quot; title=&quot;Missing UNLINK record on overwritting rename&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-543&quot;&gt;&lt;del&gt;LU-543&lt;/del&gt;&lt;/a&gt; mdd: fix rename changelog (Revision 8fdd606d8f9b885afa21320095a023728ba3fceb)&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=8fdd606d8f9b885afa21320095a023728ba3fceb&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;8fdd606d8f9b885afa21320095a023728ba3fceb&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mdd/mdd_dir.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="34008" author="hudson" created="Sun, 8 Apr 2012 13:42:30 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-b2_1/./arch=i686,build_type=client,distro=el6,ib_stack=inkernel/41/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-b2_1 &#187; i686,client,el6,inkernel #41&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-543&quot; title=&quot;Missing UNLINK record on overwritting rename&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-543&quot;&gt;&lt;del&gt;LU-543&lt;/del&gt;&lt;/a&gt; mdd: fix rename changelog (Revision 8fdd606d8f9b885afa21320095a023728ba3fceb)&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=8fdd606d8f9b885afa21320095a023728ba3fceb&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;8fdd606d8f9b885afa21320095a023728ba3fceb&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mdd/mdd_dir.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="34031" author="hudson" created="Sun, 8 Apr 2012 13:44:10 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-b2_1/./arch=x86_64,build_type=server,distro=el6,ib_stack=inkernel/41/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-b2_1 &#187; x86_64,server,el6,inkernel #41&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-543&quot; title=&quot;Missing UNLINK record on overwritting rename&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-543&quot;&gt;&lt;del&gt;LU-543&lt;/del&gt;&lt;/a&gt; mdd: fix rename changelog (Revision 8fdd606d8f9b885afa21320095a023728ba3fceb)&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=8fdd606d8f9b885afa21320095a023728ba3fceb&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;8fdd606d8f9b885afa21320095a023728ba3fceb&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mdd/mdd_dir.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="34054" author="hudson" created="Sun, 8 Apr 2012 13:44:12 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-b2_1/./arch=i686,build_type=client,distro=el5,ib_stack=ofa/41/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-b2_1 &#187; i686,client,el5,ofa #41&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-543&quot; title=&quot;Missing UNLINK record on overwritting rename&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-543&quot;&gt;&lt;del&gt;LU-543&lt;/del&gt;&lt;/a&gt; mdd: fix rename changelog (Revision 8fdd606d8f9b885afa21320095a023728ba3fceb)&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=8fdd606d8f9b885afa21320095a023728ba3fceb&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;8fdd606d8f9b885afa21320095a023728ba3fceb&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mdd/mdd_dir.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="34077" author="hudson" created="Sun, 8 Apr 2012 13:44:52 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-b2_1/./arch=x86_64,build_type=server,distro=el5,ib_stack=ofa/41/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-b2_1 &#187; x86_64,server,el5,ofa #41&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-543&quot; title=&quot;Missing UNLINK record on overwritting rename&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-543&quot;&gt;&lt;del&gt;LU-543&lt;/del&gt;&lt;/a&gt; mdd: fix rename changelog (Revision 8fdd606d8f9b885afa21320095a023728ba3fceb)&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=8fdd606d8f9b885afa21320095a023728ba3fceb&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;8fdd606d8f9b885afa21320095a023728ba3fceb&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mdd/mdd_dir.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="34100" author="hudson" created="Sun, 8 Apr 2012 13:53:01 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-b2_1/./arch=x86_64,build_type=client,distro=el6,ib_stack=inkernel/41/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-b2_1 &#187; x86_64,client,el6,inkernel #41&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-543&quot; title=&quot;Missing UNLINK record on overwritting rename&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-543&quot;&gt;&lt;del&gt;LU-543&lt;/del&gt;&lt;/a&gt; mdd: fix rename changelog (Revision 8fdd606d8f9b885afa21320095a023728ba3fceb)&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=8fdd606d8f9b885afa21320095a023728ba3fceb&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;8fdd606d8f9b885afa21320095a023728ba3fceb&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mdd/mdd_dir.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="34123" author="hudson" created="Sun, 8 Apr 2012 13:54:40 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-b2_1/./arch=i686,build_type=server,distro=el6,ib_stack=inkernel/41/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-b2_1 &#187; i686,server,el6,inkernel #41&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-543&quot; title=&quot;Missing UNLINK record on overwritting rename&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-543&quot;&gt;&lt;del&gt;LU-543&lt;/del&gt;&lt;/a&gt; mdd: fix rename changelog (Revision 8fdd606d8f9b885afa21320095a023728ba3fceb)&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=8fdd606d8f9b885afa21320095a023728ba3fceb&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;8fdd606d8f9b885afa21320095a023728ba3fceb&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mdd/mdd_dir.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="34146" author="hudson" created="Sun, 8 Apr 2012 13:55:35 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-b2_1/./arch=x86_64,build_type=client,distro=el5,ib_stack=inkernel/41/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-b2_1 &#187; x86_64,client,el5,inkernel #41&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-543&quot; title=&quot;Missing UNLINK record on overwritting rename&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-543&quot;&gt;&lt;del&gt;LU-543&lt;/del&gt;&lt;/a&gt; mdd: fix rename changelog (Revision 8fdd606d8f9b885afa21320095a023728ba3fceb)&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=8fdd606d8f9b885afa21320095a023728ba3fceb&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;8fdd606d8f9b885afa21320095a023728ba3fceb&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mdd/mdd_dir.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="34169" author="hudson" created="Sun, 8 Apr 2012 13:57:59 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-b2_1/./arch=i686,build_type=server,distro=el5,ib_stack=inkernel/41/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-b2_1 &#187; i686,server,el5,inkernel #41&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-543&quot; title=&quot;Missing UNLINK record on overwritting rename&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-543&quot;&gt;&lt;del&gt;LU-543&lt;/del&gt;&lt;/a&gt; mdd: fix rename changelog (Revision 8fdd606d8f9b885afa21320095a023728ba3fceb)&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=8fdd606d8f9b885afa21320095a023728ba3fceb&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;8fdd606d8f9b885afa21320095a023728ba3fceb&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mdd/mdd_dir.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="34192" author="hudson" created="Sun, 8 Apr 2012 14:07:52 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-b2_1/./arch=x86_64,build_type=server,distro=el5,ib_stack=inkernel/41/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-b2_1 &#187; x86_64,server,el5,inkernel #41&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-543&quot; title=&quot;Missing UNLINK record on overwritting rename&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-543&quot;&gt;&lt;del&gt;LU-543&lt;/del&gt;&lt;/a&gt; mdd: fix rename changelog (Revision 8fdd606d8f9b885afa21320095a023728ba3fceb)&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=8fdd606d8f9b885afa21320095a023728ba3fceb&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;8fdd606d8f9b885afa21320095a023728ba3fceb&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mdd/mdd_dir.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="34215" author="hudson" created="Sun, 8 Apr 2012 14:13:09 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-b2_1/./arch=i686,build_type=server,distro=el5,ib_stack=ofa/41/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-b2_1 &#187; i686,server,el5,ofa #41&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-543&quot; title=&quot;Missing UNLINK record on overwritting rename&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-543&quot;&gt;&lt;del&gt;LU-543&lt;/del&gt;&lt;/a&gt; mdd: fix rename changelog (Revision 8fdd606d8f9b885afa21320095a023728ba3fceb)&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=8fdd606d8f9b885afa21320095a023728ba3fceb&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;8fdd606d8f9b885afa21320095a023728ba3fceb&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mdd/mdd_dir.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="34238" author="hudson" created="Sun, 8 Apr 2012 14:17:57 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-b2_1/./arch=x86_64,build_type=client,distro=el5,ib_stack=ofa/41/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-b2_1 &#187; x86_64,client,el5,ofa #41&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-543&quot; title=&quot;Missing UNLINK record on overwritting rename&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-543&quot;&gt;&lt;del&gt;LU-543&lt;/del&gt;&lt;/a&gt; mdd: fix rename changelog (Revision 8fdd606d8f9b885afa21320095a023728ba3fceb)&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=8fdd606d8f9b885afa21320095a023728ba3fceb&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;8fdd606d8f9b885afa21320095a023728ba3fceb&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mdd/mdd_dir.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="34261" author="hudson" created="Sun, 8 Apr 2012 14:24:32 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-b2_1/./arch=i686,build_type=client,distro=el5,ib_stack=inkernel/41/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-b2_1 &#187; i686,client,el5,inkernel #41&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-543&quot; title=&quot;Missing UNLINK record on overwritting rename&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-543&quot;&gt;&lt;del&gt;LU-543&lt;/del&gt;&lt;/a&gt; mdd: fix rename changelog (Revision 8fdd606d8f9b885afa21320095a023728ba3fceb)&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=8fdd606d8f9b885afa21320095a023728ba3fceb&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;8fdd606d8f9b885afa21320095a023728ba3fceb&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mdd/mdd_dir.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|hzv7un:</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_10090" key="com.pyxis.greenhopper.jira:gh-global-rank">
                        <customfieldname>Rank (Obsolete)</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>4806</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>