<!-- 
RSS generated by JIRA (9.4.14#940014-sha1:734e6822bbf0d45eff9af51f82432957f73aa32c) at Sat Feb 10 01:11:42 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-919] Multiple wrong LBUGs checking cfs_atomic_t vars/fields with inacurate poison value of 0x5a5a5a</title>
                <link>https://jira.whamcloud.com/browse/LU-919</link>
                <project id="10000" key="LU">Lustre</project>
                    <description>&lt;p&gt;At both TGCC and Tera100 we have recently experienced 3 different LBUGs of the same kind/family :&lt;/p&gt;

&lt;p&gt;      _ &quot;(genops.c:757:class_export_put()) ASSERTION(cfs_atomic_read(&amp;amp;exp-&amp;gt;exp_refcount) &amp;lt; 0x5a5a5a) failed&quot;, on a TGCC MDS.&lt;/p&gt;

&lt;p&gt;      _ &quot;(genops.c:911:class_import_get()) ASSERTION(cfs_atomic_read(&amp;amp;import-&amp;gt;imp_refcount) &amp;lt; 0x5a5a5a) failed&quot;, on a T100 Client.&lt;/p&gt;

&lt;p&gt;      _ &quot;(genops.c:925:class_import_put()) ASSERTION(cfs_atomic_read(&amp;amp;imp-&amp;gt;imp_refcount) &amp;lt; 0x5a5a5a) failed&quot;, on an other T100 Client.&lt;/p&gt;

&lt;p&gt;in each case, I have been able to confirm that the value xxx_refcount value triggering the assert was good and not poisoned, but simply reflecting a huge number of references due to high/slow activity.&lt;/p&gt;

&lt;p&gt;Having a look to the concerned sources/code, it seems that all this 3 Assert()s/LBUGs and also 2 others one :&lt;/p&gt;

&lt;p&gt;     _ lustre/include/lustre_log.h:449 LASSERT(cfs_atomic_read(&amp;amp;ctxt-&amp;gt;loc_refcount) &amp;lt; 0x5a5a5a);&lt;br/&gt;
     _ lustre/obdclass/llog_obd.c:139 LASSERT(cfs_atomic_read(&amp;amp;ctxt-&amp;gt;loc_refcount) &amp;lt; 0x5a5a5a);&lt;/p&gt;

&lt;p&gt;are wrong regarding the 4 cfs_atomic_t variables/fields they check, and must be at least coded as per the following patch/changes :&lt;br/&gt;
============================================================&lt;br/&gt;
&lt;span class=&quot;error&quot;&gt;&amp;#91;root@curie1 lustre-2.0.0.1&amp;#93;&lt;/span&gt; # diff -urN lustre/include/lustre_log.h lustre/include/lustre_log.h.bfi&lt;br/&gt;
&amp;#8212; lustre/include/lustre_log.h	2010-08-04 13:13:04.000000000 +0200&lt;br/&gt;
+++ lustre/include/lustre_log.h.bfi	2011-12-13 14:38:56.071839517 +0100&lt;br/&gt;
@@ -446,7 +446,7 @@&lt;br/&gt;
         if (ctxt == NULL)&lt;br/&gt;
                 return;&lt;br/&gt;
         LASSERT(cfs_atomic_read(&amp;amp;ctxt-&amp;gt;loc_refcount) &amp;gt; 0);&lt;/p&gt;
&lt;ul class=&quot;alternate&quot; type=&quot;square&quot;&gt;
	&lt;li&gt;LASSERT(cfs_atomic_read(&amp;amp;ctxt-&amp;gt;loc_refcount) &amp;lt; 0x5a5a5a);&lt;br/&gt;
+        LASSERT(cfs_atomic_read(&amp;amp;ctxt-&amp;gt;loc_refcount) &amp;lt; LI_POISON);&lt;br/&gt;
         CDEBUG(D_INFO, &quot;PUTting ctxt %p : new refcount %d\n&quot;, ctxt,&lt;br/&gt;
                cfs_atomic_read(&amp;amp;ctxt-&amp;gt;loc_refcount) - 1);&lt;br/&gt;
         __llog_ctxt_put(ctxt);&lt;br/&gt;
&lt;span class=&quot;error&quot;&gt;&amp;#91;root@curie1 lustre-2.0.0.1&amp;#93;&lt;/span&gt; # diff -urN lustre/obdclass/genops.c lustre/obdclass/genops.c.bfi
	&lt;ul class=&quot;alternate&quot; type=&quot;square&quot;&gt;
		&lt;li&gt;
		&lt;ul class=&quot;alternate&quot; type=&quot;square&quot;&gt;
			&lt;li&gt;lustre/obdclass/genops.c	2010-08-04 13:13:03.000000000 +0200&lt;br/&gt;
+++ lustre/obdclass/genops.c.bfi	2011-12-13 14:39:46.961868491 +0100&lt;br/&gt;
@@ -754,7 +754,7 @@&lt;br/&gt;
         CDEBUG(D_INFO, &quot;PUTting export %p : new refcount %d\n&quot;, exp,&lt;br/&gt;
                cfs_atomic_read(&amp;amp;exp-&amp;gt;exp_refcount) - 1);&lt;br/&gt;
         LASSERT(cfs_atomic_read(&amp;amp;exp-&amp;gt;exp_refcount) &amp;gt; 0);&lt;/li&gt;
		&lt;/ul&gt;
		&lt;/li&gt;
	&lt;/ul&gt;
	&lt;/li&gt;
	&lt;li&gt;LASSERT(cfs_atomic_read(&amp;amp;exp-&amp;gt;exp_refcount) &amp;lt; 0x5a5a5a);&lt;br/&gt;
+        LASSERT(cfs_atomic_read(&amp;amp;exp-&amp;gt;exp_refcount) &amp;lt; LI_POISON);&lt;/li&gt;
&lt;/ul&gt;


&lt;p&gt;         if (cfs_atomic_dec_and_test(&amp;amp;exp-&amp;gt;exp_refcount)) {&lt;br/&gt;
                 LASSERT(!cfs_list_empty(&amp;amp;exp-&amp;gt;exp_obd_chain));&lt;br/&gt;
@@ -908,7 +908,7 @@&lt;br/&gt;
 struct obd_import *class_import_get(struct obd_import *import)&lt;br/&gt;
 {&lt;br/&gt;
         LASSERT(cfs_atomic_read(&amp;amp;import-&amp;gt;imp_refcount) &amp;gt;= 0);&lt;/p&gt;
&lt;ul class=&quot;alternate&quot; type=&quot;square&quot;&gt;
	&lt;li&gt;LASSERT(cfs_atomic_read(&amp;amp;import-&amp;gt;imp_refcount) &amp;lt; 0x5a5a5a);&lt;br/&gt;
+        LASSERT(cfs_atomic_read(&amp;amp;import-&amp;gt;imp_refcount) &amp;lt; LI_POISON);&lt;br/&gt;
         cfs_atomic_inc(&amp;amp;import-&amp;gt;imp_refcount);&lt;br/&gt;
         CDEBUG(D_INFO, &quot;import %p refcount=%d obd=%s\n&quot;, import,&lt;br/&gt;
                cfs_atomic_read(&amp;amp;import-&amp;gt;imp_refcount),&lt;br/&gt;
@@ -922,7 +922,7 @@&lt;br/&gt;
         ENTRY;&lt;/li&gt;
&lt;/ul&gt;


&lt;p&gt;         LASSERT(cfs_atomic_read(&amp;amp;imp-&amp;gt;imp_refcount) &amp;gt; 0);&lt;/p&gt;
&lt;ul class=&quot;alternate&quot; type=&quot;square&quot;&gt;
	&lt;li&gt;LASSERT(cfs_atomic_read(&amp;amp;imp-&amp;gt;imp_refcount) &amp;lt; 0x5a5a5a);&lt;br/&gt;
+        LASSERT(cfs_atomic_read(&amp;amp;imp-&amp;gt;imp_refcount) &amp;lt; LI_POISON);&lt;br/&gt;
         LASSERT(cfs_list_empty(&amp;amp;imp-&amp;gt;imp_zombie_chain));&lt;/li&gt;
&lt;/ul&gt;


&lt;p&gt;         CDEBUG(D_INFO, &quot;import %p refcount=%d obd=%s\n&quot;, imp,&lt;br/&gt;
&lt;span class=&quot;error&quot;&gt;&amp;#91;root@curie1 lustre-2.0.0.1&amp;#93;&lt;/span&gt; # diff -urN lustre/obdclass/llog_obd.c lustre/obdclass/llog_obd.c.bfi&lt;br/&gt;
&amp;#8212; lustre/obdclass/llog_obd.c	2010-08-04 13:13:03.000000000 +0200&lt;br/&gt;
+++ lustre/obdclass/llog_obd.c.bfi	2011-12-13 14:40:13.921587979 +0100&lt;br/&gt;
@@ -136,7 +136,7 @@&lt;br/&gt;
         /* &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;Banlance the ctxt get when calling llog_cleanup()&lt;br/&gt;
          */&lt;/li&gt;
&lt;/ul&gt;
&lt;ul class=&quot;alternate&quot; type=&quot;square&quot;&gt;
	&lt;li&gt;LASSERT(cfs_atomic_read(&amp;amp;ctxt-&amp;gt;loc_refcount) &amp;lt; 0x5a5a5a);&lt;br/&gt;
+        LASSERT(cfs_atomic_read(&amp;amp;ctxt-&amp;gt;loc_refcount) &amp;lt; LI_POISON);&lt;br/&gt;
         LASSERT(cfs_atomic_read(&amp;amp;ctxt-&amp;gt;loc_refcount) &amp;gt; 1);&lt;br/&gt;
         llog_ctxt_put(ctxt);&lt;/li&gt;
&lt;/ul&gt;


&lt;p&gt;&lt;span class=&quot;error&quot;&gt;&amp;#91;root@curie1 lustre-2.0.0.1&amp;#93;&lt;/span&gt; # &lt;br/&gt;
============================================================&lt;/p&gt;

&lt;p&gt;and may be need to be enhanced by checking that more fields in the same struct are not poisoned ...&lt;/p&gt;</description>
                <environment></environment>
        <key id="12656">LU-919</key>
            <summary>Multiple wrong LBUGs checking cfs_atomic_t vars/fields with inacurate poison value of 0x5a5a5a</summary>
                <type id="1" iconUrl="https://jira.whamcloud.com/secure/viewavatar?size=xsmall&amp;avatarId=11303&amp;avatarType=issuetype">Bug</type>
                                            <priority id="3" iconUrl="https://jira.whamcloud.com/images/icons/priorities/major.svg">Major</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="louveta">Alexandre Louvet</reporter>
                        <labels>
                    </labels>
                <created>Tue, 13 Dec 2011 08:45:57 +0000</created>
                <updated>Fri, 22 Feb 2013 13:24:54 +0000</updated>
                            <resolved>Wed, 25 Jan 2012 09:39:34 +0000</resolved>
                                    <version>Lustre 2.0.0</version>
                                    <fixVersion>Lustre 2.2.0</fixVersion>
                    <fixVersion>Lustre 2.1.1</fixVersion>
                    <fixVersion>Lustre 1.8.9</fixVersion>
                                        <due></due>
                            <votes>0</votes>
                                    <watches>5</watches>
                                                                            <comments>
                            <comment id="24615" author="pjones" created="Tue, 13 Dec 2011 12:19:09 +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="24654" author="niu" created="Tue, 13 Dec 2011 23:11:08 +0000"  >&lt;p&gt;Yes, those hardcoded 0x5a5a5a should be replaced by LI_POISION.&lt;/p&gt;

&lt;p&gt;Hi, Bruno: Could you put the patch on gerrit for review? Thanks.&lt;/p&gt;</comment>
                            <comment id="25352" author="thomasr" created="Tue, 3 Jan 2012 12:56:05 +0000"  >&lt;p&gt;At GSI, we are seeing this on Lustre 1.8.4, on the MDS:&lt;br/&gt;
(client.c:178:ptlrpc_free_bulk()) ASSERTION(atomic_read(&amp;amp;(desc-&amp;gt;bd_export)-&amp;gt;exp_refcount) &amp;lt; 0x5a5a5a) failed&lt;br/&gt;
(ldlm_lock.c:165:ldlm_lock_put()) ASSERTION(atomic_read(&amp;amp;(lock-&amp;gt;l_export)-&amp;gt;exp_refcount) &amp;lt; 0x5a5a5a) failed&lt;br/&gt;
(service.c:869:ptlrpc_at_send_early_reply()) ASSERTION(atomic_read(&amp;amp;(reqcopy-&amp;gt;rq_export)-&amp;gt;exp_refcount) &amp;lt; 0x5a5a5a) failed&lt;br/&gt;
(ldlm_lib.c:849:target_handle_connect()) ASSERTION(atomic_read(&amp;amp;(export)-&amp;gt;exp_refcount) &amp;lt; 0x5a5a5a) failed&lt;br/&gt;
(mds_reint.c:72:mds_commit_cb()) ASSERTION(atomic_read(&amp;amp;(exp)-&amp;gt;exp_refcount) &amp;lt; 0x5a5a5a) failed&lt;/p&gt;</comment>
                            <comment id="26324" author="niu" created="Tue, 10 Jan 2012 23:13:08 +0000"  >&lt;p&gt;patch for master:  &lt;a href=&quot;http://review.whamcloud.com/1953&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://review.whamcloud.com/1953&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="26325" author="niu" created="Tue, 10 Jan 2012 23:27:28 +0000"  >&lt;p&gt;patch for b1_8: &lt;a href=&quot;http://review.whamcloud.com/1954&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://review.whamcloud.com/1954&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="27297" author="hudson" created="Wed, 25 Jan 2012 09:37:18 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=x86_64,build_type=client,distro=el5,ib_stack=ofa/445/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,el5,ofa #445&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-919&quot; title=&quot;Multiple wrong LBUGs checking cfs_atomic_t vars/fields with inacurate poison value of 0x5a5a5a&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-919&quot;&gt;&lt;del&gt;LU-919&lt;/del&gt;&lt;/a&gt; obdclass: remove hard coded 0x5a5a5a (Revision afe043c883c7b833a702dfe00d3814f0e18d3942)&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=afe043c883c7b833a702dfe00d3814f0e18d3942&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;afe043c883c7b833a702dfe00d3814f0e18d3942&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/obdclass/llog_obd.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre_log.h&lt;/li&gt;
	&lt;li&gt;lustre/obdclass/genops.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="27302" author="pjones" created="Wed, 25 Jan 2012 09:39:34 +0000"  >&lt;p&gt;Landed for 2.2&lt;/p&gt;</comment>
                            <comment id="27304" author="hudson" created="Wed, 25 Jan 2012 09:42:45 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=x86_64,build_type=client,distro=el5,ib_stack=inkernel/445/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,el5,inkernel #445&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-919&quot; title=&quot;Multiple wrong LBUGs checking cfs_atomic_t vars/fields with inacurate poison value of 0x5a5a5a&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-919&quot;&gt;&lt;del&gt;LU-919&lt;/del&gt;&lt;/a&gt; obdclass: remove hard coded 0x5a5a5a (Revision afe043c883c7b833a702dfe00d3814f0e18d3942)&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=afe043c883c7b833a702dfe00d3814f0e18d3942&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;afe043c883c7b833a702dfe00d3814f0e18d3942&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/obdclass/llog_obd.c&lt;/li&gt;
	&lt;li&gt;lustre/obdclass/genops.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre_log.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="27308" author="hudson" created="Wed, 25 Jan 2012 09:43:04 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=i686,build_type=client,distro=el6,ib_stack=inkernel/445/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,client,el6,inkernel #445&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-919&quot; title=&quot;Multiple wrong LBUGs checking cfs_atomic_t vars/fields with inacurate poison value of 0x5a5a5a&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-919&quot;&gt;&lt;del&gt;LU-919&lt;/del&gt;&lt;/a&gt; obdclass: remove hard coded 0x5a5a5a (Revision afe043c883c7b833a702dfe00d3814f0e18d3942)&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=afe043c883c7b833a702dfe00d3814f0e18d3942&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;afe043c883c7b833a702dfe00d3814f0e18d3942&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/obdclass/genops.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre_log.h&lt;/li&gt;
	&lt;li&gt;lustre/obdclass/llog_obd.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="27313" author="hudson" created="Wed, 25 Jan 2012 09:45:30 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=x86_64,build_type=server,distro=el6,ib_stack=inkernel/445/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,server,el6,inkernel #445&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-919&quot; title=&quot;Multiple wrong LBUGs checking cfs_atomic_t vars/fields with inacurate poison value of 0x5a5a5a&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-919&quot;&gt;&lt;del&gt;LU-919&lt;/del&gt;&lt;/a&gt; obdclass: remove hard coded 0x5a5a5a (Revision afe043c883c7b833a702dfe00d3814f0e18d3942)&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=afe043c883c7b833a702dfe00d3814f0e18d3942&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;afe043c883c7b833a702dfe00d3814f0e18d3942&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/include/lustre_log.h&lt;/li&gt;
	&lt;li&gt;lustre/obdclass/genops.c&lt;/li&gt;
	&lt;li&gt;lustre/obdclass/llog_obd.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="27317" author="hudson" created="Wed, 25 Jan 2012 09:48:03 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=x86_64,build_type=client,distro=sles11,ib_stack=inkernel/445/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,sles11,inkernel #445&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-919&quot; title=&quot;Multiple wrong LBUGs checking cfs_atomic_t vars/fields with inacurate poison value of 0x5a5a5a&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-919&quot;&gt;&lt;del&gt;LU-919&lt;/del&gt;&lt;/a&gt; obdclass: remove hard coded 0x5a5a5a (Revision afe043c883c7b833a702dfe00d3814f0e18d3942)&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=afe043c883c7b833a702dfe00d3814f0e18d3942&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;afe043c883c7b833a702dfe00d3814f0e18d3942&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/obdclass/llog_obd.c&lt;/li&gt;
	&lt;li&gt;lustre/obdclass/genops.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre_log.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="27321" author="hudson" created="Wed, 25 Jan 2012 09:49:31 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=x86_64,build_type=server,distro=el5,ib_stack=inkernel/445/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,server,el5,inkernel #445&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-919&quot; title=&quot;Multiple wrong LBUGs checking cfs_atomic_t vars/fields with inacurate poison value of 0x5a5a5a&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-919&quot;&gt;&lt;del&gt;LU-919&lt;/del&gt;&lt;/a&gt; obdclass: remove hard coded 0x5a5a5a (Revision afe043c883c7b833a702dfe00d3814f0e18d3942)&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=afe043c883c7b833a702dfe00d3814f0e18d3942&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;afe043c883c7b833a702dfe00d3814f0e18d3942&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/include/lustre_log.h&lt;/li&gt;
	&lt;li&gt;lustre/obdclass/genops.c&lt;/li&gt;
	&lt;li&gt;lustre/obdclass/llog_obd.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="27326" author="hudson" created="Wed, 25 Jan 2012 09:50:38 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=x86_64,build_type=server,distro=el5,ib_stack=ofa/445/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,server,el5,ofa #445&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-919&quot; title=&quot;Multiple wrong LBUGs checking cfs_atomic_t vars/fields with inacurate poison value of 0x5a5a5a&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-919&quot;&gt;&lt;del&gt;LU-919&lt;/del&gt;&lt;/a&gt; obdclass: remove hard coded 0x5a5a5a (Revision afe043c883c7b833a702dfe00d3814f0e18d3942)&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=afe043c883c7b833a702dfe00d3814f0e18d3942&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;afe043c883c7b833a702dfe00d3814f0e18d3942&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/obdclass/genops.c&lt;/li&gt;
	&lt;li&gt;lustre/obdclass/llog_obd.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre_log.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="27330" author="hudson" created="Wed, 25 Jan 2012 09:51: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=client,distro=el6,ib_stack=inkernel/445/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,el6,inkernel #445&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-919&quot; title=&quot;Multiple wrong LBUGs checking cfs_atomic_t vars/fields with inacurate poison value of 0x5a5a5a&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-919&quot;&gt;&lt;del&gt;LU-919&lt;/del&gt;&lt;/a&gt; obdclass: remove hard coded 0x5a5a5a (Revision afe043c883c7b833a702dfe00d3814f0e18d3942)&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=afe043c883c7b833a702dfe00d3814f0e18d3942&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;afe043c883c7b833a702dfe00d3814f0e18d3942&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/obdclass/genops.c&lt;/li&gt;
	&lt;li&gt;lustre/obdclass/llog_obd.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre_log.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="27334" author="hudson" created="Wed, 25 Jan 2012 09:52: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-master/./arch=x86_64,build_type=client,distro=ubuntu1004,ib_stack=inkernel/445/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,ubuntu1004,inkernel #445&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-919&quot; title=&quot;Multiple wrong LBUGs checking cfs_atomic_t vars/fields with inacurate poison value of 0x5a5a5a&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-919&quot;&gt;&lt;del&gt;LU-919&lt;/del&gt;&lt;/a&gt; obdclass: remove hard coded 0x5a5a5a (Revision afe043c883c7b833a702dfe00d3814f0e18d3942)&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=afe043c883c7b833a702dfe00d3814f0e18d3942&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;afe043c883c7b833a702dfe00d3814f0e18d3942&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/obdclass/llog_obd.c&lt;/li&gt;
	&lt;li&gt;lustre/obdclass/genops.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre_log.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="27338" author="hudson" created="Wed, 25 Jan 2012 09:54:48 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=i686,build_type=server,distro=el5,ib_stack=ofa/445/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,server,el5,ofa #445&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-919&quot; title=&quot;Multiple wrong LBUGs checking cfs_atomic_t vars/fields with inacurate poison value of 0x5a5a5a&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-919&quot;&gt;&lt;del&gt;LU-919&lt;/del&gt;&lt;/a&gt; obdclass: remove hard coded 0x5a5a5a (Revision afe043c883c7b833a702dfe00d3814f0e18d3942)&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=afe043c883c7b833a702dfe00d3814f0e18d3942&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;afe043c883c7b833a702dfe00d3814f0e18d3942&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/include/lustre_log.h&lt;/li&gt;
	&lt;li&gt;lustre/obdclass/llog_obd.c&lt;/li&gt;
	&lt;li&gt;lustre/obdclass/genops.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="27343" author="hudson" created="Wed, 25 Jan 2012 09:57: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/445/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,server,el5,inkernel #445&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-919&quot; title=&quot;Multiple wrong LBUGs checking cfs_atomic_t vars/fields with inacurate poison value of 0x5a5a5a&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-919&quot;&gt;&lt;del&gt;LU-919&lt;/del&gt;&lt;/a&gt; obdclass: remove hard coded 0x5a5a5a (Revision afe043c883c7b833a702dfe00d3814f0e18d3942)&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=afe043c883c7b833a702dfe00d3814f0e18d3942&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;afe043c883c7b833a702dfe00d3814f0e18d3942&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/obdclass/llog_obd.c&lt;/li&gt;
	&lt;li&gt;lustre/obdclass/genops.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre_log.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="27347" author="hudson" created="Wed, 25 Jan 2012 09:58:21 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=i686,build_type=server,distro=el6,ib_stack=inkernel/445/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,server,el6,inkernel #445&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-919&quot; title=&quot;Multiple wrong LBUGs checking cfs_atomic_t vars/fields with inacurate poison value of 0x5a5a5a&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-919&quot;&gt;&lt;del&gt;LU-919&lt;/del&gt;&lt;/a&gt; obdclass: remove hard coded 0x5a5a5a (Revision afe043c883c7b833a702dfe00d3814f0e18d3942)&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=afe043c883c7b833a702dfe00d3814f0e18d3942&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;afe043c883c7b833a702dfe00d3814f0e18d3942&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/obdclass/llog_obd.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre_log.h&lt;/li&gt;
	&lt;li&gt;lustre/obdclass/genops.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="27351" author="adegremont" created="Wed, 25 Jan 2012 10:00:05 +0000"  >&lt;p&gt;I think this makes sense for Lustre 2.1.1 ?&lt;/p&gt;</comment>
                            <comment id="27353" author="hudson" created="Wed, 25 Jan 2012 10:14: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-master/./arch=i686,build_type=client,distro=el5,ib_stack=inkernel/445/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,client,el5,inkernel #445&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-919&quot; title=&quot;Multiple wrong LBUGs checking cfs_atomic_t vars/fields with inacurate poison value of 0x5a5a5a&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-919&quot;&gt;&lt;del&gt;LU-919&lt;/del&gt;&lt;/a&gt; obdclass: remove hard coded 0x5a5a5a (Revision afe043c883c7b833a702dfe00d3814f0e18d3942)&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=afe043c883c7b833a702dfe00d3814f0e18d3942&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;afe043c883c7b833a702dfe00d3814f0e18d3942&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/obdclass/genops.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre_log.h&lt;/li&gt;
	&lt;li&gt;lustre/obdclass/llog_obd.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="27357" author="hudson" created="Wed, 25 Jan 2012 10:19: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=el5,ib_stack=ofa/445/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,client,el5,ofa #445&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-919&quot; title=&quot;Multiple wrong LBUGs checking cfs_atomic_t vars/fields with inacurate poison value of 0x5a5a5a&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-919&quot;&gt;&lt;del&gt;LU-919&lt;/del&gt;&lt;/a&gt; obdclass: remove hard coded 0x5a5a5a (Revision afe043c883c7b833a702dfe00d3814f0e18d3942)&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=afe043c883c7b833a702dfe00d3814f0e18d3942&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;afe043c883c7b833a702dfe00d3814f0e18d3942&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/obdclass/llog_obd.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre_log.h&lt;/li&gt;
	&lt;li&gt;lustre/obdclass/genops.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="29228" author="hudson" created="Fri, 17 Feb 2012 12:54:45 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/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-919&quot; title=&quot;Multiple wrong LBUGs checking cfs_atomic_t vars/fields with inacurate poison value of 0x5a5a5a&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-919&quot;&gt;&lt;del&gt;LU-919&lt;/del&gt;&lt;/a&gt; obdclass: remove hard coded 0x5a5a5a (Revision afe043c883c7b833a702dfe00d3814f0e18d3942)&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=afe043c883c7b833a702dfe00d3814f0e18d3942&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;afe043c883c7b833a702dfe00d3814f0e18d3942&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/obdclass/llog_obd.c&lt;/li&gt;
	&lt;li&gt;lustre/obdclass/genops.c&lt;/li&gt;
	&lt;li&gt;lustre/include/lustre_log.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="29277" author="hudson" created="Fri, 17 Feb 2012 13:12:48 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/red.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=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-919&quot; title=&quot;Multiple wrong LBUGs checking cfs_atomic_t vars/fields with inacurate poison value of 0x5a5a5a&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-919&quot;&gt;&lt;del&gt;LU-919&lt;/del&gt;&lt;/a&gt; obdclass: remove hard coded 0x5a5a5a (Revision afe043c883c7b833a702dfe00d3814f0e18d3942)&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=afe043c883c7b833a702dfe00d3814f0e18d3942&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;afe043c883c7b833a702dfe00d3814f0e18d3942&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/include/lustre_log.h&lt;/li&gt;
	&lt;li&gt;lustre/obdclass/llog_obd.c&lt;/li&gt;
	&lt;li&gt;lustre/obdclass/genops.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="29326" author="hudson" created="Fri, 17 Feb 2012 13:38:37 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/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-919&quot; title=&quot;Multiple wrong LBUGs checking cfs_atomic_t vars/fields with inacurate poison value of 0x5a5a5a&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-919&quot;&gt;&lt;del&gt;LU-919&lt;/del&gt;&lt;/a&gt; obdclass: remove hard coded 0x5a5a5a (Revision afe043c883c7b833a702dfe00d3814f0e18d3942)&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=afe043c883c7b833a702dfe00d3814f0e18d3942&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;afe043c883c7b833a702dfe00d3814f0e18d3942&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/include/lustre_log.h&lt;/li&gt;
	&lt;li&gt;lustre/obdclass/genops.c&lt;/li&gt;
	&lt;li&gt;lustre/obdclass/llog_obd.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="44100" author="wjt27" created="Mon, 3 Sep 2012 09:21:40 +0000"  >&lt;p&gt;This still seem to be broken in 1.8.8 client &lt;/p&gt;

&lt;p&gt;LustreError: 31122:0:(genops.c:803:class_import_get()) ASSERTION(atomic_read(&amp;amp;import-&amp;gt;imp_refcount) &amp;lt; 0x5a5a5a) failed&lt;br/&gt;
LustreError: 31122:0:(genops.c:803:class_import_get()) LBUG&lt;br/&gt;
Sep  3 13:44:01 Pid: 31122, comm: rsync&lt;br/&gt;
sand-1-3 kernel:&lt;br/&gt;
 LustreError: 31Call Trace:&lt;br/&gt;
122:0:(genops.c:BUG: unable to handle kernel 803:class_impNortULL pointer dereference_get()) ASSERTIO at (null)&lt;br/&gt;
N(atomic_read(&amp;amp;iIP: &lt;span class=&quot;error&quot;&gt;&amp;#91;&amp;lt;(null)&amp;gt;&amp;#93;&lt;/span&gt; (null)&lt;br/&gt;
mport-&amp;gt;imp_refcoPGD 1a68aa067 PUD 449eea067 unt) &amp;lt; 0x5a5a5a)PMD 0 &lt;br/&gt;
 failed&lt;br/&gt;
Sep  3 1Oops: 0010 &lt;a href=&quot;#1&quot; target=&quot;_blank&quot; rel=&quot;noopener&quot;&gt;1&lt;/a&gt; SMP &lt;br/&gt;
3:44:01 sand-1-3last sysfs file: /sys/devices/pci0000:00/0000:00:02.0/0000:03:00.0/infiniband/mlx4_0/ports/1/link_layer&lt;br/&gt;
 kernel: LustreECPU 4 &lt;br/&gt;
rror: 31122:0:(gModules linked in:enops.c:803:c lasmgc(U)s_import_get())  lustre(U)LBUG&lt;br/&gt;
Sep  3 13:4 lov(U)4:01 sand-1-3  kemdc(U)rnel: Pid: 31122 lquota(U), comm: rsync&lt;br/&gt;
Se osc(U) ko2iblndp  3 13:44:01 sa(U) ptlrpcnd-1-3 kernel: &lt;br/&gt;
(U) obdclassSep  3 13:44:01 (U) lnetsand-1-3 kernel:(U) lvfs Call Trace:&lt;br/&gt;
(U) libcfs(U) nfsd exportfs acpi_cpufreq freq_table mperf rdma_ucm(U) rdma_cm(U) iw_cm(U) ib_addr(U) ib_ipoib(U) ib_cm(U) ib_sa(U) ib_uverbs(U) ib_umad(U) mlx4_ib(U) ib_mad(U) ib_core(U) mlx4_core(U) ext4&lt;br/&gt;
 mbcache jbd2 dm_mirror dm_region_hash dm_log dm_mod vhost_net macvtap macvlan tun kvm wmi microcode dcdbas sg sb_edac edac_core i2c_i801 i2c_core iTCO_wdt iTCO_vendor_support shpchp ioatdma ipv6 sd_mod c&lt;br/&gt;
rc_t10dif ahci igb dca nfs lockd fscache nfs_acl auth_rpcgss sunrpc &lt;span class=&quot;error&quot;&gt;&amp;#91;last unloaded: scsi_wait_scan&amp;#93;&lt;/span&gt;&lt;/p&gt;

&lt;p&gt;Pid: 31122, comm: rsync Not tainted 2.6.32-220.23.1.el6.x86_64 #1 Dell Inc. PowerEdge C6220/0WTH3T&lt;br/&gt;
RIP: 0010:&lt;span class=&quot;error&quot;&gt;&amp;#91;&amp;lt;0000000000000000&amp;gt;&amp;#93;&lt;/span&gt;  &lt;span class=&quot;error&quot;&gt;&amp;#91;&amp;lt;(null)&amp;gt;&amp;#93;&lt;/span&gt; (null)&lt;br/&gt;
RSP: 0018:ffff8804d52b5440  EFLAGS: 00010246&lt;br/&gt;
RAX: ffff8804d52b54a4 RBX: ffff8804d52b5498 RCX: ffffffffa045c320&lt;br/&gt;
RDX: ffff8804d52b54d8 RSI: ffff8804d52b5498 RDI: ffff8804d52b4000&lt;br/&gt;
RBP: ffff8804d52b54d8 R08: 0000000000000000 R09: 0000000000000000&lt;br/&gt;
R10: 0000000000000001 R11: 0000000000000000 R12: 000000000000cbe0&lt;br/&gt;
R13: ffffffffa045c320 R14: 0000000000000000 R15: ffff880048683fc0&lt;br/&gt;
FS:  00007f030976a700(0000) GS:ffff880048680000(0000) knlGS:0000000000000000&lt;br/&gt;
CS:  0010 DS: 0000 ES: 0000 CR0: 0000000080050033&lt;br/&gt;
CR2: 0000000000000000 CR3: 00000008a1a22000 CR4: 00000000000406e0&lt;br/&gt;
DR0: 0000000000000000 DR1: 0000000000000000 DR2: 0000000000000000&lt;br/&gt;
DR3: 0000000000000000 DR6: 00000000ffff0ff0 DR7: 0000000000000400&lt;br/&gt;
Process rsync (pid: 31122, threadinfo ffff8804d52b4000, task ffff8806bac29580)&lt;br/&gt;
Stack:&lt;br/&gt;
 ffffffff8100e520 ffff8804d52b54a4 ffff8806bac29580 ffffffffa0545210&lt;br/&gt;
&amp;lt;0&amp;gt; 00000000a05491e8 ffff8804d52b4000 ffff8804d52b5fd8 ffff8804d52b4000&lt;br/&gt;
&amp;lt;0&amp;gt; 0000000000000004 ffff880048680000 ffff8804d52b54d8 ffff8804d52b54a8&lt;br/&gt;
Call Trace:&lt;br/&gt;
 &lt;span class=&quot;error&quot;&gt;&amp;#91;&amp;lt;ffffffff8100e520&amp;gt;&amp;#93;&lt;/span&gt; ? dump_trace+0x190/0x3b0&lt;br/&gt;
 &lt;span class=&quot;error&quot;&gt;&amp;#91;&amp;lt;ffffffffa04508f5&amp;gt;&amp;#93;&lt;/span&gt; libcfs_debug_dumpstack+0x55/0x80 &lt;span class=&quot;error&quot;&gt;&amp;#91;libcfs&amp;#93;&lt;/span&gt;&lt;/p&gt;</comment>
                            <comment id="44215" author="wjt27" created="Wed, 5 Sep 2012 14:05:42 +0000"  >&lt;p&gt;I can reproduce this by running rsync of a directory containing a few TBs of unpacked kernel trees. Some time it takes longer and some times it takes shorter to hit the bug but eventually it will, very annoying.&lt;/p&gt;</comment>
                    </comments>
                <issuelinks>
                            <issuelinktype id="10010">
                    <name>Duplicate</name>
                                                                <inwardlinks description="is duplicated by">
                                        <issuelink>
            <issuekey id="15521">LU-1765</issuekey>
        </issuelink>
                            </inwardlinks>
                                    </issuelinktype>
                    </issuelinks>
                <attachments>
                    </attachments>
                <subtasks>
                    </subtasks>
                <customfields>
                                                                                                                                                                                            <customfield id="customfield_10890" key="com.atlassian.jira.plugins.jira-development-integration-plugin:devsummary">
                        <customfieldname>Development</customfieldname>
                        <customfieldvalues>
                            
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                        <customfield id="customfield_10390" key="com.pyxis.greenhopper.jira:gh-lexo-rank">
                        <customfieldname>Rank</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>1|hzv7jj:</customfieldvalue>

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