<!-- 
RSS generated by JIRA (9.4.14#940014-sha1:734e6822bbf0d45eff9af51f82432957f73aa32c) at Sat Feb 10 01:14:54 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-1245] general protection fault in lprocfs_fops_read</title>
                <link>https://jira.whamcloud.com/browse/LU-1245</link>
                <project id="10000" key="LU">Lustre</project>
                    <description>&lt;p&gt;Our slurm epilog runs a script that cats the files&lt;/p&gt;

&lt;p&gt;    /proc/fs/lustre/ldlm/namespaces/*/lock_count&lt;br/&gt;
    /proc/fs/lustre/ldlm/namespaces/*/lock_unused&lt;br/&gt;
    /proc/fs/lustre/ldlm/namespaces/*/resource_count&lt;/p&gt;

&lt;p&gt;One such cat process on a Lustre 2.1 client hit a GPF with the backtrace below.&lt;/p&gt;

&lt;p&gt;machine_kexec&lt;br/&gt;
crash_kexec&lt;br/&gt;
oops_end&lt;br/&gt;
die&lt;br/&gt;
do_general_protection&lt;br/&gt;
general_protection&lt;br/&gt;
&lt;span class=&quot;error&quot;&gt;&amp;#91;exception RIP:lprocfs_rd_ns_locks+88&amp;#93;&lt;/span&gt;&lt;br/&gt;
lprocfs_fops_read&lt;br/&gt;
proc_reg_read&lt;br/&gt;
vfs_read&lt;br/&gt;
sys_read&lt;br/&gt;
system_call_fastpath&lt;/p&gt;

&lt;p&gt;We have a crash dump for analysis on our classified network, so please let us know if there&apos;s any data structures you want to see.&lt;/p&gt;</description>
                <environment>&lt;a href=&quot;https://github.com/chaos/lustre/tree/2.1.0-llnl&quot;&gt;https://github.com/chaos/lustre/tree/2.1.0-llnl&lt;/a&gt;</environment>
        <key id="13636">LU-1245</key>
            <summary>general protection fault in lprocfs_fops_read</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="bobijam">Zhenyu Xu</assignee>
                                    <reporter username="nedbass">Ned Bass</reporter>
                        <labels>
                            <label>paj</label>
                    </labels>
                <created>Tue, 20 Mar 2012 20:47:51 +0000</created>
                <updated>Wed, 2 May 2012 15:37:32 +0000</updated>
                            <resolved>Mon, 30 Apr 2012 12:02:21 +0000</resolved>
                                    <version>Lustre 2.1.0</version>
                    <version>Lustre 2.1.2</version>
                                    <fixVersion>Lustre 2.3.0</fixVersion>
                    <fixVersion>Lustre 2.1.2</fixVersion>
                                        <due></due>
                            <votes>0</votes>
                                    <watches>4</watches>
                                                                            <comments>
                            <comment id="31767" author="pjones" created="Wed, 21 Mar 2012 13:45:34 +0000"  >&lt;p&gt;Bobi&lt;/p&gt;

&lt;p&gt;Could you please help out with this one?&lt;/p&gt;

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

&lt;p&gt;Peter&lt;/p&gt;</comment>
                            <comment id="32118" author="bobijam" created="Mon, 26 Mar 2012 09:48:48 +0000"  >&lt;p&gt;Ned Bass,&lt;/p&gt;

&lt;p&gt;Can you list where lprocfs_rd_ns_locks+88 locates in the code? Thanks.&lt;/p&gt;</comment>
                            <comment id="32125" author="nedbass" created="Mon, 26 Mar 2012 12:28:55 +0000"  >&lt;p&gt;lustre-2.1.0/lustre/include/lprocfs_status.h:421&lt;/p&gt;

&lt;div class=&quot;code panel&quot; style=&quot;border-width: 1px;&quot;&gt;&lt;div class=&quot;codeContent panelContent&quot;&gt;
&lt;pre class=&quot;code-java&quot;&gt;412 &lt;span class=&quot;code-keyword&quot;&gt;static&lt;/span&gt; inline __u64 lprocfs_stats_collector(struct lprocfs_stats *stats,
413                                             &lt;span class=&quot;code-object&quot;&gt;int&lt;/span&gt; idx,
414                                             &lt;span class=&quot;code-keyword&quot;&gt;enum&lt;/span&gt; lprocfs_fields_flags field)
415 {
416         __u64 ret = 0;
417         &lt;span class=&quot;code-object&quot;&gt;int&lt;/span&gt; i;
418 
419         LASSERT(stats != NULL);
420         &lt;span class=&quot;code-keyword&quot;&gt;for&lt;/span&gt; (i = 0; i &amp;lt; cfs_num_possible_cpus(); i++)
421                 ret += lprocfs_read_helper(&amp;amp;(stats-&amp;gt;ls_percpu[i]-&amp;gt;lp_cntr[idx]),
422                                            field);
423         &lt;span class=&quot;code-keyword&quot;&gt;return&lt;/span&gt; ret;
424 }
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;</comment>
                            <comment id="32156" author="bobijam" created="Mon, 26 Mar 2012 22:55:49 +0000"  >&lt;p&gt;patch tracking at &lt;a href=&quot;http://review.whamcloud.com/2384&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://review.whamcloud.com/2384&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="33706" author="hudson" created="Fri, 6 Apr 2012 04: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-master/./arch=x86_64,build_type=client,distro=sles11,ib_stack=inkernel/477/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,sles11,inkernel #477&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1245&quot; title=&quot;general protection fault in lprocfs_fops_read&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1245&quot;&gt;&lt;del&gt;LU-1245&lt;/del&gt;&lt;/a&gt; lprocfs: use correct cpu number (Revision debb9042dbe9f004d58e9dd89bcb259e55490b17)&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=debb9042dbe9f004d58e9dd89bcb259e55490b17&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;debb9042dbe9f004d58e9dd89bcb259e55490b17&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/include/lprocfs_status.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="33710" author="hudson" created="Fri, 6 Apr 2012 04:24:59 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=x86_64,build_type=server,distro=el5,ib_stack=ofa/477/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,server,el5,ofa #477&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1245&quot; title=&quot;general protection fault in lprocfs_fops_read&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1245&quot;&gt;&lt;del&gt;LU-1245&lt;/del&gt;&lt;/a&gt; lprocfs: use correct cpu number (Revision debb9042dbe9f004d58e9dd89bcb259e55490b17)&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=debb9042dbe9f004d58e9dd89bcb259e55490b17&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;debb9042dbe9f004d58e9dd89bcb259e55490b17&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/include/lprocfs_status.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="33714" author="hudson" created="Fri, 6 Apr 2012 04:26: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=i686,build_type=server,distro=el5,ib_stack=ofa/477/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,server,el5,ofa #477&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1245&quot; title=&quot;general protection fault in lprocfs_fops_read&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1245&quot;&gt;&lt;del&gt;LU-1245&lt;/del&gt;&lt;/a&gt; lprocfs: use correct cpu number (Revision debb9042dbe9f004d58e9dd89bcb259e55490b17)&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=debb9042dbe9f004d58e9dd89bcb259e55490b17&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;debb9042dbe9f004d58e9dd89bcb259e55490b17&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/include/lprocfs_status.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="33718" author="hudson" created="Fri, 6 Apr 2012 04:29: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=x86_64,build_type=server,distro=el6,ib_stack=ofa/477/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,server,el6,ofa #477&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1245&quot; title=&quot;general protection fault in lprocfs_fops_read&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1245&quot;&gt;&lt;del&gt;LU-1245&lt;/del&gt;&lt;/a&gt; lprocfs: use correct cpu number (Revision debb9042dbe9f004d58e9dd89bcb259e55490b17)&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=debb9042dbe9f004d58e9dd89bcb259e55490b17&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;debb9042dbe9f004d58e9dd89bcb259e55490b17&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/include/lprocfs_status.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="33723" author="hudson" created="Fri, 6 Apr 2012 04:35: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=x86_64,build_type=client,distro=el5,ib_stack=ofa/477/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,el5,ofa #477&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1245&quot; title=&quot;general protection fault in lprocfs_fops_read&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1245&quot;&gt;&lt;del&gt;LU-1245&lt;/del&gt;&lt;/a&gt; lprocfs: use correct cpu number (Revision debb9042dbe9f004d58e9dd89bcb259e55490b17)&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=debb9042dbe9f004d58e9dd89bcb259e55490b17&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;debb9042dbe9f004d58e9dd89bcb259e55490b17&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/include/lprocfs_status.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="33727" author="hudson" created="Fri, 6 Apr 2012 04:37:56 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=i686,build_type=client,distro=el5,ib_stack=inkernel/477/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,client,el5,inkernel #477&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1245&quot; title=&quot;general protection fault in lprocfs_fops_read&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1245&quot;&gt;&lt;del&gt;LU-1245&lt;/del&gt;&lt;/a&gt; lprocfs: use correct cpu number (Revision debb9042dbe9f004d58e9dd89bcb259e55490b17)&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=debb9042dbe9f004d58e9dd89bcb259e55490b17&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;debb9042dbe9f004d58e9dd89bcb259e55490b17&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/include/lprocfs_status.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="33731" author="hudson" created="Fri, 6 Apr 2012 04:40: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=client,distro=el6,ib_stack=ofa/477/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,el6,ofa #477&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1245&quot; title=&quot;general protection fault in lprocfs_fops_read&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1245&quot;&gt;&lt;del&gt;LU-1245&lt;/del&gt;&lt;/a&gt; lprocfs: use correct cpu number (Revision debb9042dbe9f004d58e9dd89bcb259e55490b17)&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=debb9042dbe9f004d58e9dd89bcb259e55490b17&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;debb9042dbe9f004d58e9dd89bcb259e55490b17&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/include/lprocfs_status.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="33735" author="hudson" created="Fri, 6 Apr 2012 04:49: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=i686,build_type=client,distro=el5,ib_stack=ofa/477/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,client,el5,ofa #477&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1245&quot; title=&quot;general protection fault in lprocfs_fops_read&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1245&quot;&gt;&lt;del&gt;LU-1245&lt;/del&gt;&lt;/a&gt; lprocfs: use correct cpu number (Revision debb9042dbe9f004d58e9dd89bcb259e55490b17)&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=debb9042dbe9f004d58e9dd89bcb259e55490b17&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;debb9042dbe9f004d58e9dd89bcb259e55490b17&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/include/lprocfs_status.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="33739" author="hudson" created="Fri, 6 Apr 2012 04:49: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=x86_64,build_type=server,distro=el5,ib_stack=inkernel/477/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,server,el5,inkernel #477&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1245&quot; title=&quot;general protection fault in lprocfs_fops_read&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1245&quot;&gt;&lt;del&gt;LU-1245&lt;/del&gt;&lt;/a&gt; lprocfs: use correct cpu number (Revision debb9042dbe9f004d58e9dd89bcb259e55490b17)&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=debb9042dbe9f004d58e9dd89bcb259e55490b17&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;debb9042dbe9f004d58e9dd89bcb259e55490b17&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/include/lprocfs_status.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="33743" author="hudson" created="Fri, 6 Apr 2012 04:50: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=x86_64,build_type=client,distro=el6,ib_stack=inkernel/477/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,el6,inkernel #477&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1245&quot; title=&quot;general protection fault in lprocfs_fops_read&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1245&quot;&gt;&lt;del&gt;LU-1245&lt;/del&gt;&lt;/a&gt; lprocfs: use correct cpu number (Revision debb9042dbe9f004d58e9dd89bcb259e55490b17)&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=debb9042dbe9f004d58e9dd89bcb259e55490b17&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;debb9042dbe9f004d58e9dd89bcb259e55490b17&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/include/lprocfs_status.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="33747" author="hudson" created="Fri, 6 Apr 2012 04:56:47 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=i686,build_type=server,distro=el6,ib_stack=inkernel/477/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,server,el6,inkernel #477&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1245&quot; title=&quot;general protection fault in lprocfs_fops_read&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1245&quot;&gt;&lt;del&gt;LU-1245&lt;/del&gt;&lt;/a&gt; lprocfs: use correct cpu number (Revision debb9042dbe9f004d58e9dd89bcb259e55490b17)&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=debb9042dbe9f004d58e9dd89bcb259e55490b17&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;debb9042dbe9f004d58e9dd89bcb259e55490b17&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/include/lprocfs_status.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="33751" author="hudson" created="Fri, 6 Apr 2012 04:59:34 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/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/477/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,el5,inkernel #477&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1245&quot; title=&quot;general protection fault in lprocfs_fops_read&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1245&quot;&gt;&lt;del&gt;LU-1245&lt;/del&gt;&lt;/a&gt; lprocfs: use correct cpu number (Revision debb9042dbe9f004d58e9dd89bcb259e55490b17)&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=debb9042dbe9f004d58e9dd89bcb259e55490b17&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;debb9042dbe9f004d58e9dd89bcb259e55490b17&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/include/lprocfs_status.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="33755" author="hudson" created="Fri, 6 Apr 2012 05:01: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=x86_64,build_type=server,distro=el6,ib_stack=inkernel/477/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,server,el6,inkernel #477&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1245&quot; title=&quot;general protection fault in lprocfs_fops_read&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1245&quot;&gt;&lt;del&gt;LU-1245&lt;/del&gt;&lt;/a&gt; lprocfs: use correct cpu number (Revision debb9042dbe9f004d58e9dd89bcb259e55490b17)&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=debb9042dbe9f004d58e9dd89bcb259e55490b17&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;debb9042dbe9f004d58e9dd89bcb259e55490b17&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/include/lprocfs_status.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="33759" author="hudson" created="Fri, 6 Apr 2012 05:02: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=i686,build_type=server,distro=el5,ib_stack=inkernel/477/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,server,el5,inkernel #477&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1245&quot; title=&quot;general protection fault in lprocfs_fops_read&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1245&quot;&gt;&lt;del&gt;LU-1245&lt;/del&gt;&lt;/a&gt; lprocfs: use correct cpu number (Revision debb9042dbe9f004d58e9dd89bcb259e55490b17)&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=debb9042dbe9f004d58e9dd89bcb259e55490b17&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;debb9042dbe9f004d58e9dd89bcb259e55490b17&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/include/lprocfs_status.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="33764" author="hudson" created="Fri, 6 Apr 2012 05:09: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=el6,ib_stack=ofa/477/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,server,el6,ofa #477&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1245&quot; title=&quot;general protection fault in lprocfs_fops_read&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1245&quot;&gt;&lt;del&gt;LU-1245&lt;/del&gt;&lt;/a&gt; lprocfs: use correct cpu number (Revision debb9042dbe9f004d58e9dd89bcb259e55490b17)&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=debb9042dbe9f004d58e9dd89bcb259e55490b17&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;debb9042dbe9f004d58e9dd89bcb259e55490b17&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/include/lprocfs_status.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="33768" author="hudson" created="Fri, 6 Apr 2012 05:19:06 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=i686,build_type=client,distro=el6,ib_stack=ofa/477/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,client,el6,ofa #477&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1245&quot; title=&quot;general protection fault in lprocfs_fops_read&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1245&quot;&gt;&lt;del&gt;LU-1245&lt;/del&gt;&lt;/a&gt; lprocfs: use correct cpu number (Revision debb9042dbe9f004d58e9dd89bcb259e55490b17)&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=debb9042dbe9f004d58e9dd89bcb259e55490b17&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;debb9042dbe9f004d58e9dd89bcb259e55490b17&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/include/lprocfs_status.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="33773" author="hudson" created="Fri, 6 Apr 2012 05:31:14 +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/477/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,client,el6,inkernel #477&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1245&quot; title=&quot;general protection fault in lprocfs_fops_read&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1245&quot;&gt;&lt;del&gt;LU-1245&lt;/del&gt;&lt;/a&gt; lprocfs: use correct cpu number (Revision debb9042dbe9f004d58e9dd89bcb259e55490b17)&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=debb9042dbe9f004d58e9dd89bcb259e55490b17&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;debb9042dbe9f004d58e9dd89bcb259e55490b17&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/include/lprocfs_status.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="34947" author="morrone" created="Tue, 17 Apr 2012 13:29:13 +0000"  >&lt;p&gt;This is required on 2.1 as well, which is where we reported the problem.  We really need some visibility into the status of things like this.  It seems like the ticket should not be marked resolved until it is resolved in all necessary branches.&lt;/p&gt;</comment>
                            <comment id="34976" author="bobijam" created="Tue, 17 Apr 2012 21:05:44 +0000"  >&lt;p&gt;still need port for Lustre 2.1.2&lt;/p&gt;</comment>
                            <comment id="34977" author="bobijam" created="Tue, 17 Apr 2012 21:28:21 +0000"  >&lt;p&gt;port for b2_1 at &lt;a href=&quot;http://review.whamcloud.com/2566&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://review.whamcloud.com/2566&lt;/a&gt;&lt;br/&gt;
port for b2_2 at &lt;a href=&quot;http://review.whamcloud.com/2567&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://review.whamcloud.com/2567&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="35265" author="hudson" created="Fri, 20 Apr 2012 16:25: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-b2_1/./arch=x86_64,build_type=client,distro=sles11,ib_stack=inkernel/47/&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 #47&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1245&quot; title=&quot;general protection fault in lprocfs_fops_read&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1245&quot;&gt;&lt;del&gt;LU-1245&lt;/del&gt;&lt;/a&gt; lprocfs: use correct cpu number (Revision ef51cfe1a5a85d3f66c73282dfb073acc2c64450)&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=ef51cfe1a5a85d3f66c73282dfb073acc2c64450&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;ef51cfe1a5a85d3f66c73282dfb073acc2c64450&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/include/lprocfs_status.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="35266" author="hudson" created="Fri, 20 Apr 2012 16:27:37 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-b2_1/./arch=x86_64,build_type=client,distro=el6,ib_stack=inkernel/47/&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 #47&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1245&quot; title=&quot;general protection fault in lprocfs_fops_read&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1245&quot;&gt;&lt;del&gt;LU-1245&lt;/del&gt;&lt;/a&gt; lprocfs: use correct cpu number (Revision ef51cfe1a5a85d3f66c73282dfb073acc2c64450)&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=ef51cfe1a5a85d3f66c73282dfb073acc2c64450&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;ef51cfe1a5a85d3f66c73282dfb073acc2c64450&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/include/lprocfs_status.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="35267" author="hudson" created="Fri, 20 Apr 2012 16:30:19 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-b2_1/./arch=x86_64,build_type=server,distro=el5,ib_stack=inkernel/47/&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 #47&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1245&quot; title=&quot;general protection fault in lprocfs_fops_read&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1245&quot;&gt;&lt;del&gt;LU-1245&lt;/del&gt;&lt;/a&gt; lprocfs: use correct cpu number (Revision ef51cfe1a5a85d3f66c73282dfb073acc2c64450)&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=ef51cfe1a5a85d3f66c73282dfb073acc2c64450&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;ef51cfe1a5a85d3f66c73282dfb073acc2c64450&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/include/lprocfs_status.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="35269" author="hudson" created="Fri, 20 Apr 2012 16:33: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=i686,build_type=server,distro=el5,ib_stack=inkernel/47/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-b2_1 &#187; i686,server,el5,inkernel #47&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1245&quot; title=&quot;general protection fault in lprocfs_fops_read&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1245&quot;&gt;&lt;del&gt;LU-1245&lt;/del&gt;&lt;/a&gt; lprocfs: use correct cpu number (Revision ef51cfe1a5a85d3f66c73282dfb073acc2c64450)&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=ef51cfe1a5a85d3f66c73282dfb073acc2c64450&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;ef51cfe1a5a85d3f66c73282dfb073acc2c64450&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/include/lprocfs_status.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="35270" author="hudson" created="Fri, 20 Apr 2012 16:42: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=server,distro=el6,ib_stack=inkernel/47/&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 #47&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1245&quot; title=&quot;general protection fault in lprocfs_fops_read&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1245&quot;&gt;&lt;del&gt;LU-1245&lt;/del&gt;&lt;/a&gt; lprocfs: use correct cpu number (Revision ef51cfe1a5a85d3f66c73282dfb073acc2c64450)&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=ef51cfe1a5a85d3f66c73282dfb073acc2c64450&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;ef51cfe1a5a85d3f66c73282dfb073acc2c64450&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/include/lprocfs_status.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="35271" author="hudson" created="Fri, 20 Apr 2012 16:43:47 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-b2_1/./arch=x86_64,build_type=server,distro=el5,ib_stack=ofa/47/&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 #47&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1245&quot; title=&quot;general protection fault in lprocfs_fops_read&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1245&quot;&gt;&lt;del&gt;LU-1245&lt;/del&gt;&lt;/a&gt; lprocfs: use correct cpu number (Revision ef51cfe1a5a85d3f66c73282dfb073acc2c64450)&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=ef51cfe1a5a85d3f66c73282dfb073acc2c64450&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;ef51cfe1a5a85d3f66c73282dfb073acc2c64450&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/include/lprocfs_status.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="35273" author="hudson" created="Fri, 20 Apr 2012 16:49:22 +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/47/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-b2_1 &#187; i686,server,el5,ofa #47&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1245&quot; title=&quot;general protection fault in lprocfs_fops_read&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1245&quot;&gt;&lt;del&gt;LU-1245&lt;/del&gt;&lt;/a&gt; lprocfs: use correct cpu number (Revision ef51cfe1a5a85d3f66c73282dfb073acc2c64450)&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=ef51cfe1a5a85d3f66c73282dfb073acc2c64450&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;ef51cfe1a5a85d3f66c73282dfb073acc2c64450&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/include/lprocfs_status.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="35275" author="hudson" created="Fri, 20 Apr 2012 16:54:44 +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/47/&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 #47&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1245&quot; title=&quot;general protection fault in lprocfs_fops_read&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1245&quot;&gt;&lt;del&gt;LU-1245&lt;/del&gt;&lt;/a&gt; lprocfs: use correct cpu number (Revision ef51cfe1a5a85d3f66c73282dfb073acc2c64450)&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=ef51cfe1a5a85d3f66c73282dfb073acc2c64450&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;ef51cfe1a5a85d3f66c73282dfb073acc2c64450&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/include/lprocfs_status.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="35276" author="hudson" created="Fri, 20 Apr 2012 16:59: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/47/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-b2_1 &#187; i686,server,el6,inkernel #47&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1245&quot; title=&quot;general protection fault in lprocfs_fops_read&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1245&quot;&gt;&lt;del&gt;LU-1245&lt;/del&gt;&lt;/a&gt; lprocfs: use correct cpu number (Revision ef51cfe1a5a85d3f66c73282dfb073acc2c64450)&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=ef51cfe1a5a85d3f66c73282dfb073acc2c64450&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;ef51cfe1a5a85d3f66c73282dfb073acc2c64450&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/include/lprocfs_status.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="35277" author="hudson" created="Fri, 20 Apr 2012 17:02:38 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-b2_1/./arch=i686,build_type=client,distro=el5,ib_stack=ofa/47/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-b2_1 &#187; i686,client,el5,ofa #47&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1245&quot; title=&quot;general protection fault in lprocfs_fops_read&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1245&quot;&gt;&lt;del&gt;LU-1245&lt;/del&gt;&lt;/a&gt; lprocfs: use correct cpu number (Revision ef51cfe1a5a85d3f66c73282dfb073acc2c64450)&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=ef51cfe1a5a85d3f66c73282dfb073acc2c64450&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;ef51cfe1a5a85d3f66c73282dfb073acc2c64450&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/include/lprocfs_status.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="35278" author="hudson" created="Fri, 20 Apr 2012 17:06:05 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-b2_1/./arch=x86_64,build_type=client,distro=el5,ib_stack=ofa/47/&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 #47&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1245&quot; title=&quot;general protection fault in lprocfs_fops_read&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1245&quot;&gt;&lt;del&gt;LU-1245&lt;/del&gt;&lt;/a&gt; lprocfs: use correct cpu number (Revision ef51cfe1a5a85d3f66c73282dfb073acc2c64450)&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=ef51cfe1a5a85d3f66c73282dfb073acc2c64450&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;ef51cfe1a5a85d3f66c73282dfb073acc2c64450&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/include/lprocfs_status.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="35279" author="hudson" created="Fri, 20 Apr 2012 17:13:00 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-b2_1/./arch=i686,build_type=client,distro=el5,ib_stack=inkernel/47/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-b2_1 &#187; i686,client,el5,inkernel #47&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1245&quot; title=&quot;general protection fault in lprocfs_fops_read&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1245&quot;&gt;&lt;del&gt;LU-1245&lt;/del&gt;&lt;/a&gt; lprocfs: use correct cpu number (Revision ef51cfe1a5a85d3f66c73282dfb073acc2c64450)&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=ef51cfe1a5a85d3f66c73282dfb073acc2c64450&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;ef51cfe1a5a85d3f66c73282dfb073acc2c64450&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/include/lprocfs_status.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="35281" author="hudson" created="Fri, 20 Apr 2012 17:15: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=i686,build_type=client,distro=el6,ib_stack=inkernel/47/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-b2_1 &#187; i686,client,el6,inkernel #47&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1245&quot; title=&quot;general protection fault in lprocfs_fops_read&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1245&quot;&gt;&lt;del&gt;LU-1245&lt;/del&gt;&lt;/a&gt; lprocfs: use correct cpu number (Revision ef51cfe1a5a85d3f66c73282dfb073acc2c64450)&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=ef51cfe1a5a85d3f66c73282dfb073acc2c64450&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;ef51cfe1a5a85d3f66c73282dfb073acc2c64450&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/include/lprocfs_status.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="36233" author="hudson" created="Wed, 2 May 2012 14:53:08 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-dev/./arch=x86_64,build_type=client,distro=el5,ib_stack=inkernel/340/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-dev &#187; x86_64,client,el5,inkernel #340&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1245&quot; title=&quot;general protection fault in lprocfs_fops_read&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1245&quot;&gt;&lt;del&gt;LU-1245&lt;/del&gt;&lt;/a&gt; lprocfs: use correct cpu number (Revision debb9042dbe9f004d58e9dd89bcb259e55490b17)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&gt;
Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-dev.git;a=shortlog;h=refs/heads/$GIT_BRANCH&amp;amp;a=commit&amp;amp;h=debb9042dbe9f004d58e9dd89bcb259e55490b17&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;debb9042dbe9f004d58e9dd89bcb259e55490b17&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/include/lprocfs_status.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="36530" author="hudson" created="Wed, 2 May 2012 14:55: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-dev/./arch=i686,build_type=client,distro=el6,ib_stack=inkernel/340/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-dev &#187; i686,client,el6,inkernel #340&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1245&quot; title=&quot;general protection fault in lprocfs_fops_read&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1245&quot;&gt;&lt;del&gt;LU-1245&lt;/del&gt;&lt;/a&gt; lprocfs: use correct cpu number (Revision debb9042dbe9f004d58e9dd89bcb259e55490b17)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&gt;
Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-dev.git;a=shortlog;h=refs/heads/$GIT_BRANCH&amp;amp;a=commit&amp;amp;h=debb9042dbe9f004d58e9dd89bcb259e55490b17&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;debb9042dbe9f004d58e9dd89bcb259e55490b17&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/include/lprocfs_status.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="36827" author="hudson" created="Wed, 2 May 2012 14:58:19 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-dev/./arch=i686,build_type=server,distro=el5,ib_stack=inkernel/340/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-dev &#187; i686,server,el5,inkernel #340&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1245&quot; title=&quot;general protection fault in lprocfs_fops_read&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1245&quot;&gt;&lt;del&gt;LU-1245&lt;/del&gt;&lt;/a&gt; lprocfs: use correct cpu number (Revision debb9042dbe9f004d58e9dd89bcb259e55490b17)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&gt;
Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-dev.git;a=shortlog;h=refs/heads/$GIT_BRANCH&amp;amp;a=commit&amp;amp;h=debb9042dbe9f004d58e9dd89bcb259e55490b17&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;debb9042dbe9f004d58e9dd89bcb259e55490b17&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/include/lprocfs_status.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="37125" author="hudson" created="Wed, 2 May 2012 15:13: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-dev/./arch=x86_64,build_type=server,distro=el6,ib_stack=inkernel/340/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-dev &#187; x86_64,server,el6,inkernel #340&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1245&quot; title=&quot;general protection fault in lprocfs_fops_read&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1245&quot;&gt;&lt;del&gt;LU-1245&lt;/del&gt;&lt;/a&gt; lprocfs: use correct cpu number (Revision debb9042dbe9f004d58e9dd89bcb259e55490b17)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&gt;
Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-dev.git;a=shortlog;h=refs/heads/$GIT_BRANCH&amp;amp;a=commit&amp;amp;h=debb9042dbe9f004d58e9dd89bcb259e55490b17&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;debb9042dbe9f004d58e9dd89bcb259e55490b17&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/include/lprocfs_status.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="37422" author="hudson" created="Wed, 2 May 2012 15:14: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-dev/./arch=i686,build_type=client,distro=el5,ib_stack=inkernel/340/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-dev &#187; i686,client,el5,inkernel #340&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1245&quot; title=&quot;general protection fault in lprocfs_fops_read&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1245&quot;&gt;&lt;del&gt;LU-1245&lt;/del&gt;&lt;/a&gt; lprocfs: use correct cpu number (Revision debb9042dbe9f004d58e9dd89bcb259e55490b17)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&gt;
Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-dev.git;a=shortlog;h=refs/heads/$GIT_BRANCH&amp;amp;a=commit&amp;amp;h=debb9042dbe9f004d58e9dd89bcb259e55490b17&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;debb9042dbe9f004d58e9dd89bcb259e55490b17&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/include/lprocfs_status.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="37720" author="hudson" created="Wed, 2 May 2012 15:19: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-dev/./arch=x86_64,build_type=server,distro=el5,ib_stack=inkernel/340/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-dev &#187; x86_64,server,el5,inkernel #340&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1245&quot; title=&quot;general protection fault in lprocfs_fops_read&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1245&quot;&gt;&lt;del&gt;LU-1245&lt;/del&gt;&lt;/a&gt; lprocfs: use correct cpu number (Revision debb9042dbe9f004d58e9dd89bcb259e55490b17)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&gt;
Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-dev.git;a=shortlog;h=refs/heads/$GIT_BRANCH&amp;amp;a=commit&amp;amp;h=debb9042dbe9f004d58e9dd89bcb259e55490b17&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;debb9042dbe9f004d58e9dd89bcb259e55490b17&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/include/lprocfs_status.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="38017" author="hudson" created="Wed, 2 May 2012 15:37: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-dev/./arch=x86_64,build_type=client,distro=el6,ib_stack=inkernel/340/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-dev &#187; x86_64,client,el6,inkernel #340&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1245&quot; title=&quot;general protection fault in lprocfs_fops_read&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1245&quot;&gt;&lt;del&gt;LU-1245&lt;/del&gt;&lt;/a&gt; lprocfs: use correct cpu number (Revision debb9042dbe9f004d58e9dd89bcb259e55490b17)&lt;/p&gt;

&lt;p&gt;     Result = SUCCESS&lt;br/&gt;
Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-dev.git;a=shortlog;h=refs/heads/$GIT_BRANCH&amp;amp;a=commit&amp;amp;h=debb9042dbe9f004d58e9dd89bcb259e55490b17&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;debb9042dbe9f004d58e9dd89bcb259e55490b17&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/include/lprocfs_status.h&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|hzv6xb:</customfieldvalue>

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