<!-- 
RSS generated by JIRA (9.4.14#940014-sha1:734e6822bbf0d45eff9af51f82432957f73aa32c) at Sat Feb 10 01:13: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-1055] recovery-mds osd_handler.c:1966:osd_declare_object_destroy()) ASSERTION(!lu_object_is_dying(dt-&gt;do_lu.lo_header)) failed</title>
                <link>https://jira.whamcloud.com/browse/LU-1055</link>
                <project id="10000" key="LU">Lustre</project>
                    <description>&lt;p&gt;Running recovery-scale flavor MDS on Hyperion, MDS failed after 3 failovers - MDT shows as mounted via df, but unmounted in /proc/mounts. mount -f appears to have cleared the mount. &lt;br/&gt;
Syslog and lustre log attached&lt;/p&gt;</description>
                <environment>Hyperion - Chaos5 clients and servers</environment>
        <key id="13026">LU-1055</key>
            <summary>recovery-mds osd_handler.c:1966:osd_declare_object_destroy()) ASSERTION(!lu_object_is_dying(dt-&gt;do_lu.lo_header)) failed</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="niu">Niu Yawei</assignee>
                                    <reporter username="cliffw">Cliff White</reporter>
                        <labels>
                    </labels>
                <created>Mon, 30 Jan 2012 15:53:18 +0000</created>
                <updated>Tue, 27 Mar 2012 17:06:01 +0000</updated>
                            <resolved>Tue, 14 Feb 2012 13:01:45 +0000</resolved>
                                    <version>Lustre 2.2.0</version>
                                    <fixVersion>Lustre 2.2.0</fixVersion>
                                        <due></due>
                            <votes>0</votes>
                                    <watches>3</watches>
                                                                            <comments>
                            <comment id="27623" author="green" created="Mon, 30 Jan 2012 16:07:31 +0000"  >&lt;p&gt;Alex, I think this is another one of the problems surfaced after adding object destroy prototyping in osd api, similar in nature to &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1017&quot; title=&quot;MDS oops when running racer test&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1017&quot;&gt;&lt;del&gt;LU-1017&lt;/del&gt;&lt;/a&gt; ?&lt;/p&gt;</comment>
                            <comment id="27643" author="bzzz" created="Tue, 31 Jan 2012 01:40:53 +0000"  >&lt;p&gt;at the moment the theory is the following: once recovery is completed, MDS starts to scan PENDING/ to cleanup orphans; at the same time some clients unlink/close a file. so, orph_index_iterate() races with mdd_close().&lt;/p&gt;

&lt;p&gt;can somebody confirm this race is possible?&lt;/p&gt;</comment>
                            <comment id="27644" author="bzzz" created="Tue, 31 Jan 2012 02:12:56 +0000"  >&lt;p&gt;if the theory is right, then original design relies on a result of direntry removal from PENDING/&lt;/p&gt;

&lt;p&gt;then the following patch should be enough:&lt;/p&gt;


&lt;p&gt;diff --git a/lustre/osd-ldiskfs/osd_handler.c b/lustre/osd-ldiskfs/osd_handler.&lt;br/&gt;
index 72bfd42..feb106f 100644&lt;br/&gt;
&amp;#8212; a/lustre/osd-ldiskfs/osd_handler.c&lt;br/&gt;
+++ b/lustre/osd-ldiskfs/osd_handler.c&lt;br/&gt;
@@ -1963,7 +1963,6 @@ static int osd_declare_object_destroy(const struct lu_env&lt;br/&gt;
         oh = container_of0(th, struct osd_thandle, ot_super);&lt;br/&gt;
         LASSERT(oh-&amp;gt;ot_handle == NULL);&lt;br/&gt;
         LASSERT(inode);&lt;/p&gt;
&lt;ul class=&quot;alternate&quot; type=&quot;square&quot;&gt;
	&lt;li&gt;LASSERT(!lu_object_is_dying(dt-&amp;gt;do_lu.lo_header));&lt;/li&gt;
&lt;/ul&gt;


&lt;p&gt;         OSD_DECLARE_OP(oh, destroy);&lt;br/&gt;
         OSD_DECLARE_OP(oh, delete);&lt;br/&gt;
@@ -1989,6 +1988,7 @@ static int osd_object_destroy(const struct lu_env *env,&lt;br/&gt;
         LASSERT(oh-&amp;gt;ot_handle);&lt;br/&gt;
         LASSERT(inode);&lt;br/&gt;
         LASSERT(osd_inode_unlinked(inode));&lt;br/&gt;
+        LASSERT(!lu_object_is_dying(dt-&amp;gt;do_lu.lo_header));&lt;/p&gt;

&lt;p&gt;         OSD_EXEC_OP(th, destroy);&lt;/p&gt;</comment>
                            <comment id="27808" author="pjones" created="Thu, 2 Feb 2012 18:40:52 +0000"  >&lt;p&gt;Niu&lt;/p&gt;

&lt;p&gt;Could you please take care of this one?&lt;/p&gt;

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

&lt;p&gt;Peter&lt;/p&gt;</comment>
                            <comment id="27869" author="niu" created="Fri, 3 Feb 2012 02:53:14 +0000"  >&lt;p&gt;&lt;a href=&quot;http://review.whamcloud.com/2083&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://review.whamcloud.com/2083&lt;/a&gt;&lt;/p&gt;

&lt;p&gt;I agree with Alex, the orphan cleanup after recovery could race with the client close, move the LASSERT into real destroy function which protected by lock should be fine.&lt;/p&gt;</comment>
                            <comment id="28648" author="hudson" created="Tue, 14 Feb 2012 12:56:26 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=x86_64,build_type=client,distro=el5,ib_stack=ofa/471/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,el5,ofa #471&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1055&quot; title=&quot;recovery-mds osd_handler.c:1966:osd_declare_object_destroy()) ASSERTION(!lu_object_is_dying(dt-&amp;gt;do_lu.lo_header)) failed&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1055&quot;&gt;&lt;del&gt;LU-1055&lt;/del&gt;&lt;/a&gt; remove improper assert in osd_declare_object_destroy (Revision 0117cbc7b085404af72978b0361b33966ac379cb)&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=0117cbc7b085404af72978b0361b33966ac379cb&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;0117cbc7b085404af72978b0361b33966ac379cb&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/osd-ldiskfs/osd_handler.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="28651" author="pjones" created="Tue, 14 Feb 2012 13:01:45 +0000"  >&lt;p&gt;Landed for 2.2&lt;/p&gt;</comment>
                            <comment id="28652" author="hudson" created="Tue, 14 Feb 2012 13:01:49 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=x86_64,build_type=client,distro=el5,ib_stack=inkernel/471/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,el5,inkernel #471&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1055&quot; title=&quot;recovery-mds osd_handler.c:1966:osd_declare_object_destroy()) ASSERTION(!lu_object_is_dying(dt-&amp;gt;do_lu.lo_header)) failed&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1055&quot;&gt;&lt;del&gt;LU-1055&lt;/del&gt;&lt;/a&gt; remove improper assert in osd_declare_object_destroy (Revision 0117cbc7b085404af72978b0361b33966ac379cb)&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=0117cbc7b085404af72978b0361b33966ac379cb&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;0117cbc7b085404af72978b0361b33966ac379cb&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/osd-ldiskfs/osd_handler.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="28654" author="hudson" created="Tue, 14 Feb 2012 13:05:50 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=x86_64,build_type=server,distro=el5,ib_stack=ofa/471/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,server,el5,ofa #471&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1055&quot; title=&quot;recovery-mds osd_handler.c:1966:osd_declare_object_destroy()) ASSERTION(!lu_object_is_dying(dt-&amp;gt;do_lu.lo_header)) failed&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1055&quot;&gt;&lt;del&gt;LU-1055&lt;/del&gt;&lt;/a&gt; remove improper assert in osd_declare_object_destroy (Revision 0117cbc7b085404af72978b0361b33966ac379cb)&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=0117cbc7b085404af72978b0361b33966ac379cb&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;0117cbc7b085404af72978b0361b33966ac379cb&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/osd-ldiskfs/osd_handler.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="28656" author="hudson" created="Tue, 14 Feb 2012 13:08:36 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=x86_64,build_type=server,distro=el5,ib_stack=inkernel/471/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,server,el5,inkernel #471&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1055&quot; title=&quot;recovery-mds osd_handler.c:1966:osd_declare_object_destroy()) ASSERTION(!lu_object_is_dying(dt-&amp;gt;do_lu.lo_header)) failed&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1055&quot;&gt;&lt;del&gt;LU-1055&lt;/del&gt;&lt;/a&gt; remove improper assert in osd_declare_object_destroy (Revision 0117cbc7b085404af72978b0361b33966ac379cb)&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=0117cbc7b085404af72978b0361b33966ac379cb&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;0117cbc7b085404af72978b0361b33966ac379cb&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/osd-ldiskfs/osd_handler.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="28658" author="hudson" created="Tue, 14 Feb 2012 13:08:50 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=x86_64,build_type=client,distro=sles11,ib_stack=inkernel/471/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,sles11,inkernel #471&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1055&quot; title=&quot;recovery-mds osd_handler.c:1966:osd_declare_object_destroy()) ASSERTION(!lu_object_is_dying(dt-&amp;gt;do_lu.lo_header)) failed&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1055&quot;&gt;&lt;del&gt;LU-1055&lt;/del&gt;&lt;/a&gt; remove improper assert in osd_declare_object_destroy (Revision 0117cbc7b085404af72978b0361b33966ac379cb)&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=0117cbc7b085404af72978b0361b33966ac379cb&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;0117cbc7b085404af72978b0361b33966ac379cb&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/osd-ldiskfs/osd_handler.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="28661" author="hudson" created="Tue, 14 Feb 2012 13:09: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/471/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,ubuntu1004,inkernel #471&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1055&quot; title=&quot;recovery-mds osd_handler.c:1966:osd_declare_object_destroy()) ASSERTION(!lu_object_is_dying(dt-&amp;gt;do_lu.lo_header)) failed&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1055&quot;&gt;&lt;del&gt;LU-1055&lt;/del&gt;&lt;/a&gt; remove improper assert in osd_declare_object_destroy (Revision 0117cbc7b085404af72978b0361b33966ac379cb)&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=0117cbc7b085404af72978b0361b33966ac379cb&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;0117cbc7b085404af72978b0361b33966ac379cb&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/osd-ldiskfs/osd_handler.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="28663" author="hudson" created="Tue, 14 Feb 2012 13:09:43 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=i686,build_type=client,distro=el5,ib_stack=inkernel/471/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,client,el5,inkernel #471&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1055&quot; title=&quot;recovery-mds osd_handler.c:1966:osd_declare_object_destroy()) ASSERTION(!lu_object_is_dying(dt-&amp;gt;do_lu.lo_header)) failed&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1055&quot;&gt;&lt;del&gt;LU-1055&lt;/del&gt;&lt;/a&gt; remove improper assert in osd_declare_object_destroy (Revision 0117cbc7b085404af72978b0361b33966ac379cb)&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=0117cbc7b085404af72978b0361b33966ac379cb&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;0117cbc7b085404af72978b0361b33966ac379cb&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/osd-ldiskfs/osd_handler.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="28665" author="hudson" created="Tue, 14 Feb 2012 13:11:17 +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/471/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,client,el6,inkernel #471&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1055&quot; title=&quot;recovery-mds osd_handler.c:1966:osd_declare_object_destroy()) ASSERTION(!lu_object_is_dying(dt-&amp;gt;do_lu.lo_header)) failed&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1055&quot;&gt;&lt;del&gt;LU-1055&lt;/del&gt;&lt;/a&gt; remove improper assert in osd_declare_object_destroy (Revision 0117cbc7b085404af72978b0361b33966ac379cb)&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=0117cbc7b085404af72978b0361b33966ac379cb&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;0117cbc7b085404af72978b0361b33966ac379cb&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/osd-ldiskfs/osd_handler.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="28667" author="hudson" created="Tue, 14 Feb 2012 13:11:20 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=x86_64,build_type=client,distro=el6,ib_stack=inkernel/471/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,el6,inkernel #471&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1055&quot; title=&quot;recovery-mds osd_handler.c:1966:osd_declare_object_destroy()) ASSERTION(!lu_object_is_dying(dt-&amp;gt;do_lu.lo_header)) failed&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1055&quot;&gt;&lt;del&gt;LU-1055&lt;/del&gt;&lt;/a&gt; remove improper assert in osd_declare_object_destroy (Revision 0117cbc7b085404af72978b0361b33966ac379cb)&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=0117cbc7b085404af72978b0361b33966ac379cb&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;0117cbc7b085404af72978b0361b33966ac379cb&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/osd-ldiskfs/osd_handler.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="28669" author="hudson" created="Tue, 14 Feb 2012 13:14:53 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=i686,build_type=server,distro=el6,ib_stack=inkernel/471/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,server,el6,inkernel #471&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1055&quot; title=&quot;recovery-mds osd_handler.c:1966:osd_declare_object_destroy()) ASSERTION(!lu_object_is_dying(dt-&amp;gt;do_lu.lo_header)) failed&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1055&quot;&gt;&lt;del&gt;LU-1055&lt;/del&gt;&lt;/a&gt; remove improper assert in osd_declare_object_destroy (Revision 0117cbc7b085404af72978b0361b33966ac379cb)&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=0117cbc7b085404af72978b0361b33966ac379cb&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;0117cbc7b085404af72978b0361b33966ac379cb&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/osd-ldiskfs/osd_handler.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="28671" author="hudson" created="Tue, 14 Feb 2012 13:15:25 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=x86_64,build_type=server,distro=el6,ib_stack=inkernel/471/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,server,el6,inkernel #471&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1055&quot; title=&quot;recovery-mds osd_handler.c:1966:osd_declare_object_destroy()) ASSERTION(!lu_object_is_dying(dt-&amp;gt;do_lu.lo_header)) failed&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1055&quot;&gt;&lt;del&gt;LU-1055&lt;/del&gt;&lt;/a&gt; remove improper assert in osd_declare_object_destroy (Revision 0117cbc7b085404af72978b0361b33966ac379cb)&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=0117cbc7b085404af72978b0361b33966ac379cb&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;0117cbc7b085404af72978b0361b33966ac379cb&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/osd-ldiskfs/osd_handler.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="28673" author="hudson" created="Tue, 14 Feb 2012 13:27:11 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=i686,build_type=server,distro=el5,ib_stack=inkernel/471/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,server,el5,inkernel #471&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1055&quot; title=&quot;recovery-mds osd_handler.c:1966:osd_declare_object_destroy()) ASSERTION(!lu_object_is_dying(dt-&amp;gt;do_lu.lo_header)) failed&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1055&quot;&gt;&lt;del&gt;LU-1055&lt;/del&gt;&lt;/a&gt; remove improper assert in osd_declare_object_destroy (Revision 0117cbc7b085404af72978b0361b33966ac379cb)&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=0117cbc7b085404af72978b0361b33966ac379cb&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;0117cbc7b085404af72978b0361b33966ac379cb&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/osd-ldiskfs/osd_handler.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="28675" author="hudson" created="Tue, 14 Feb 2012 13:44:07 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=i686,build_type=server,distro=el5,ib_stack=ofa/471/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,server,el5,ofa #471&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1055&quot; title=&quot;recovery-mds osd_handler.c:1966:osd_declare_object_destroy()) ASSERTION(!lu_object_is_dying(dt-&amp;gt;do_lu.lo_header)) failed&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1055&quot;&gt;&lt;del&gt;LU-1055&lt;/del&gt;&lt;/a&gt; remove improper assert in osd_declare_object_destroy (Revision 0117cbc7b085404af72978b0361b33966ac379cb)&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=0117cbc7b085404af72978b0361b33966ac379cb&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;0117cbc7b085404af72978b0361b33966ac379cb&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/osd-ldiskfs/osd_handler.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="28677" author="hudson" created="Tue, 14 Feb 2012 13:56:35 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=i686,build_type=client,distro=el5,ib_stack=ofa/471/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,client,el5,ofa #471&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1055&quot; title=&quot;recovery-mds osd_handler.c:1966:osd_declare_object_destroy()) ASSERTION(!lu_object_is_dying(dt-&amp;gt;do_lu.lo_header)) failed&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1055&quot;&gt;&lt;del&gt;LU-1055&lt;/del&gt;&lt;/a&gt; remove improper assert in osd_declare_object_destroy (Revision 0117cbc7b085404af72978b0361b33966ac379cb)&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=0117cbc7b085404af72978b0361b33966ac379cb&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;0117cbc7b085404af72978b0361b33966ac379cb&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/osd-ldiskfs/osd_handler.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="29232" author="hudson" created="Fri, 17 Feb 2012 12:55:00 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/red.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=x86_64,build_type=server,distro=el6,ib_stack=ofa/480/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,server,el6,ofa #480&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1055&quot; title=&quot;recovery-mds osd_handler.c:1966:osd_declare_object_destroy()) ASSERTION(!lu_object_is_dying(dt-&amp;gt;do_lu.lo_header)) failed&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1055&quot;&gt;&lt;del&gt;LU-1055&lt;/del&gt;&lt;/a&gt; remove improper assert in osd_declare_object_destroy (Revision 0117cbc7b085404af72978b0361b33966ac379cb)&lt;/p&gt;

&lt;p&gt;     Result = FAILURE&lt;br/&gt;
Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=0117cbc7b085404af72978b0361b33966ac379cb&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;0117cbc7b085404af72978b0361b33966ac379cb&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/osd-ldiskfs/osd_handler.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="29281" author="hudson" created="Fri, 17 Feb 2012 13:12:54 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/red.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=x86_64,build_type=client,distro=el6,ib_stack=ofa/480/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,el6,ofa #480&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1055&quot; title=&quot;recovery-mds osd_handler.c:1966:osd_declare_object_destroy()) ASSERTION(!lu_object_is_dying(dt-&amp;gt;do_lu.lo_header)) failed&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1055&quot;&gt;&lt;del&gt;LU-1055&lt;/del&gt;&lt;/a&gt; remove improper assert in osd_declare_object_destroy (Revision 0117cbc7b085404af72978b0361b33966ac379cb)&lt;/p&gt;

&lt;p&gt;     Result = FAILURE&lt;br/&gt;
Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=0117cbc7b085404af72978b0361b33966ac379cb&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;0117cbc7b085404af72978b0361b33966ac379cb&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/osd-ldiskfs/osd_handler.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="29330" author="hudson" created="Fri, 17 Feb 2012 13:38: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/grey.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=i686,build_type=client,distro=el6,ib_stack=ofa/480/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,client,el6,ofa #480&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1055&quot; title=&quot;recovery-mds osd_handler.c:1966:osd_declare_object_destroy()) ASSERTION(!lu_object_is_dying(dt-&amp;gt;do_lu.lo_header)) failed&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1055&quot;&gt;&lt;del&gt;LU-1055&lt;/del&gt;&lt;/a&gt; remove improper assert in osd_declare_object_destroy (Revision 0117cbc7b085404af72978b0361b33966ac379cb)&lt;/p&gt;

&lt;p&gt;     Result = ABORTED&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=0117cbc7b085404af72978b0361b33966ac379cb&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;0117cbc7b085404af72978b0361b33966ac379cb&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/osd-ldiskfs/osd_handler.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                    </comments>
                    <attachments>
                            <attachment id="10791" name="crash.txt" size="8502" author="cliffw" created="Mon, 30 Jan 2012 15:53:18 +0000"/>
                            <attachment id="10792" name="osd_obj_des.txt.gz" size="978692" author="cliffw" created="Mon, 30 Jan 2012 15:53:18 +0000"/>
                    </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|hzv7f3:</customfieldvalue>

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