<!-- 
RSS generated by JIRA (9.4.14#940014-sha1:734e6822bbf0d45eff9af51f82432957f73aa32c) at Sat Feb 10 01:09:14 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-663] Some architectures do not have NUMA features anymore</title>
                <link>https://jira.whamcloud.com/browse/LU-663</link>
                <project id="10000" key="LU">Lustre</project>
                    <description>&lt;p&gt;Lustre makes some of its working threads (ll_ost_io and ptlrpc_hr) NUMA-aware by starting them spread over the online cpus. These portions of code use the cpu_to_node() and node_to_cpumask() kernel services.&lt;/p&gt;

&lt;p&gt;in lustre/ptlrpc/service.c, ptlrpc_main()&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;#&lt;span class=&quot;code-keyword&quot;&gt;if&lt;/span&gt; defined(HAVE_NODE_TO_CPUMASK) &amp;amp;&amp;amp; defined(CONFIG_NUMA)
        /* we need to &lt;span class=&quot;code-keyword&quot;&gt;do&lt;/span&gt; &lt;span class=&quot;code-keyword&quot;&gt;this&lt;/span&gt; before any per-thread allocation is done so that
         * we get the per-thread allocations on local node.  bug 7342 */
        &lt;span class=&quot;code-keyword&quot;&gt;if&lt;/span&gt; (svc-&amp;gt;srv_cpu_affinity) {
                &lt;span class=&quot;code-object&quot;&gt;int&lt;/span&gt; cpu, num_cpu;

                &lt;span class=&quot;code-keyword&quot;&gt;for&lt;/span&gt; (cpu = 0, num_cpu = 0; cpu &amp;lt; cfs_num_possible_cpus();
                     cpu++) {
                        &lt;span class=&quot;code-keyword&quot;&gt;if&lt;/span&gt; (!cfs_cpu_online(cpu))
                                &lt;span class=&quot;code-keyword&quot;&gt;continue&lt;/span&gt;;
                        &lt;span class=&quot;code-keyword&quot;&gt;if&lt;/span&gt; (num_cpu == thread-&amp;gt;t_id % cfs_num_online_cpus())
                                &lt;span class=&quot;code-keyword&quot;&gt;break&lt;/span&gt;;
                        num_cpu++;
                }
                cfs_set_cpus_allowed(cfs_current(),
                                     node_to_cpumask(cpu_to_node(cpu)));
        }
#endif
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;


&lt;p&gt;1. The cpu_to_node() service is defined by the kernel either with a #define, or in new kernel version (2.6.24) in some architectures with a symbol export. The symbol export case is not correctly managed by Lustre code and leads to always return 0.&lt;/p&gt;

&lt;p&gt;This is because in lustre/include/linux/lustre_compat25.h, we have:&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;#ifndef cpu_to_node
#define cpu_to_node(cpu)         0
#endif
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;2. The portions of code that uses the node_to_cpumask() service are protected by the HAVE_NODE_TO_CPUMASK #define. Unfortunately, newer kernel versions do not export this symbol (or its equivalent versions node_to_cpu_mask() and node_2_cpu_mask() ) resulting in having HAVE_NODE_TO_CPUMASK undefined.&lt;/p&gt;


&lt;p&gt;I am going to provide a patch through Gerrit for these two issues.&lt;/p&gt;</description>
                <environment>lustre 2.0, x86_64 architectures, recent kernel version</environment>
        <key id="11685">LU-663</key>
            <summary>Some architectures do not have NUMA features anymore</summary>
                <type id="4" iconUrl="https://jira.whamcloud.com/secure/viewavatar?size=xsmall&amp;avatarId=11310&amp;avatarType=issuetype">Improvement</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="pichong">Gregoire Pichon</reporter>
                        <labels>
                    </labels>
                <created>Wed, 7 Sep 2011 03:07:36 +0000</created>
                <updated>Thu, 7 Jun 2012 12:27:18 +0000</updated>
                            <resolved>Mon, 12 Dec 2011 17:38:20 +0000</resolved>
                                    <version>Lustre 2.0.0</version>
                                    <fixVersion>Lustre 2.2.0</fixVersion>
                    <fixVersion>Lustre 2.1.2</fixVersion>
                                        <due></due>
                            <votes>0</votes>
                                    <watches>4</watches>
                                                                            <comments>
                            <comment id="19983" author="pjones" created="Wed, 7 Sep 2011 08:03:44 +0000"  >&lt;p&gt;Bobi&lt;/p&gt;

&lt;p&gt;Can 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="19997" author="pichong" created="Wed, 7 Sep 2011 11:25:45 +0000"  >&lt;p&gt;I have pushed a patch in Gerrit:&lt;br/&gt;
&lt;a href=&quot;http://review.whamcloud.com/1345&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://review.whamcloud.com/1345&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="24052" author="hudson" created="Sat, 10 Dec 2011 12:06: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-master/./arch=x86_64,build_type=client,distro=el5,ib_stack=ofa/374/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,el5,ofa #374&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-663&quot; title=&quot;Some architectures do not have NUMA features anymore&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-663&quot;&gt;&lt;del&gt;LU-663&lt;/del&gt;&lt;/a&gt; kernel: Some arch do not have NUMA features anymore (Revision 49b74e8ab7c0bf76a4ff5b0b2cce15314b1ca8f8)&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=49b74e8ab7c0bf76a4ff5b0b2cce15314b1ca8f8&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;49b74e8ab7c0bf76a4ff5b0b2cce15314b1ca8f8&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/include/linux/lustre_compat25.h&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/service.c&lt;/li&gt;
	&lt;li&gt;lustre/autoconf/lustre-core.m4&lt;/li&gt;
	&lt;li&gt;libcfs/include/libcfs/linux/linux-prim.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="24053" author="hudson" created="Sat, 10 Dec 2011 12:12:02 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=x86_64,build_type=client,distro=el5,ib_stack=inkernel/374/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,el5,inkernel #374&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-663&quot; title=&quot;Some architectures do not have NUMA features anymore&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-663&quot;&gt;&lt;del&gt;LU-663&lt;/del&gt;&lt;/a&gt; kernel: Some arch do not have NUMA features anymore (Revision 49b74e8ab7c0bf76a4ff5b0b2cce15314b1ca8f8)&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=49b74e8ab7c0bf76a4ff5b0b2cce15314b1ca8f8&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;49b74e8ab7c0bf76a4ff5b0b2cce15314b1ca8f8&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/include/linux/lustre_compat25.h&lt;/li&gt;
	&lt;li&gt;lustre/autoconf/lustre-core.m4&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/service.c&lt;/li&gt;
	&lt;li&gt;libcfs/include/libcfs/linux/linux-prim.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="24054" author="hudson" created="Sat, 10 Dec 2011 12:12:35 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=i686,build_type=client,distro=el6,ib_stack=inkernel/374/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,client,el6,inkernel #374&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-663&quot; title=&quot;Some architectures do not have NUMA features anymore&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-663&quot;&gt;&lt;del&gt;LU-663&lt;/del&gt;&lt;/a&gt; kernel: Some arch do not have NUMA features anymore (Revision 49b74e8ab7c0bf76a4ff5b0b2cce15314b1ca8f8)&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=49b74e8ab7c0bf76a4ff5b0b2cce15314b1ca8f8&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;49b74e8ab7c0bf76a4ff5b0b2cce15314b1ca8f8&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/include/linux/lustre_compat25.h&lt;/li&gt;
	&lt;li&gt;libcfs/include/libcfs/linux/linux-prim.h&lt;/li&gt;
	&lt;li&gt;lustre/autoconf/lustre-core.m4&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/service.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="24055" author="hudson" created="Sat, 10 Dec 2011 12:13:50 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=x86_64,build_type=server,distro=el6,ib_stack=inkernel/374/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,server,el6,inkernel #374&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-663&quot; title=&quot;Some architectures do not have NUMA features anymore&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-663&quot;&gt;&lt;del&gt;LU-663&lt;/del&gt;&lt;/a&gt; kernel: Some arch do not have NUMA features anymore (Revision 49b74e8ab7c0bf76a4ff5b0b2cce15314b1ca8f8)&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=49b74e8ab7c0bf76a4ff5b0b2cce15314b1ca8f8&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;49b74e8ab7c0bf76a4ff5b0b2cce15314b1ca8f8&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;libcfs/include/libcfs/linux/linux-prim.h&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/service.c&lt;/li&gt;
	&lt;li&gt;lustre/autoconf/lustre-core.m4&lt;/li&gt;
	&lt;li&gt;lustre/include/linux/lustre_compat25.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="24056" author="hudson" created="Sat, 10 Dec 2011 12:17: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-master/./arch=x86_64,build_type=client,distro=sles11,ib_stack=inkernel/374/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,sles11,inkernel #374&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-663&quot; title=&quot;Some architectures do not have NUMA features anymore&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-663&quot;&gt;&lt;del&gt;LU-663&lt;/del&gt;&lt;/a&gt; kernel: Some arch do not have NUMA features anymore (Revision 49b74e8ab7c0bf76a4ff5b0b2cce15314b1ca8f8)&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=49b74e8ab7c0bf76a4ff5b0b2cce15314b1ca8f8&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;49b74e8ab7c0bf76a4ff5b0b2cce15314b1ca8f8&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;libcfs/include/libcfs/linux/linux-prim.h&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/service.c&lt;/li&gt;
	&lt;li&gt;lustre/include/linux/lustre_compat25.h&lt;/li&gt;
	&lt;li&gt;lustre/autoconf/lustre-core.m4&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="24057" author="hudson" created="Sat, 10 Dec 2011 12:18: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=server,distro=el5,ib_stack=inkernel/374/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,server,el5,inkernel #374&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-663&quot; title=&quot;Some architectures do not have NUMA features anymore&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-663&quot;&gt;&lt;del&gt;LU-663&lt;/del&gt;&lt;/a&gt; kernel: Some arch do not have NUMA features anymore (Revision 49b74e8ab7c0bf76a4ff5b0b2cce15314b1ca8f8)&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=49b74e8ab7c0bf76a4ff5b0b2cce15314b1ca8f8&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;49b74e8ab7c0bf76a4ff5b0b2cce15314b1ca8f8&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/include/linux/lustre_compat25.h&lt;/li&gt;
	&lt;li&gt;lustre/autoconf/lustre-core.m4&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/service.c&lt;/li&gt;
	&lt;li&gt;libcfs/include/libcfs/linux/linux-prim.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="24058" author="hudson" created="Sat, 10 Dec 2011 12:19:17 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=x86_64,build_type=client,distro=el6,ib_stack=inkernel/374/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,el6,inkernel #374&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-663&quot; title=&quot;Some architectures do not have NUMA features anymore&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-663&quot;&gt;&lt;del&gt;LU-663&lt;/del&gt;&lt;/a&gt; kernel: Some arch do not have NUMA features anymore (Revision 49b74e8ab7c0bf76a4ff5b0b2cce15314b1ca8f8)&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=49b74e8ab7c0bf76a4ff5b0b2cce15314b1ca8f8&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;49b74e8ab7c0bf76a4ff5b0b2cce15314b1ca8f8&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/include/linux/lustre_compat25.h&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/service.c&lt;/li&gt;
	&lt;li&gt;libcfs/include/libcfs/linux/linux-prim.h&lt;/li&gt;
	&lt;li&gt;lustre/autoconf/lustre-core.m4&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="24059" author="hudson" created="Sat, 10 Dec 2011 12:20: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=ubuntu1004,ib_stack=inkernel/374/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,ubuntu1004,inkernel #374&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-663&quot; title=&quot;Some architectures do not have NUMA features anymore&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-663&quot;&gt;&lt;del&gt;LU-663&lt;/del&gt;&lt;/a&gt; kernel: Some arch do not have NUMA features anymore (Revision 49b74e8ab7c0bf76a4ff5b0b2cce15314b1ca8f8)&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=49b74e8ab7c0bf76a4ff5b0b2cce15314b1ca8f8&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;49b74e8ab7c0bf76a4ff5b0b2cce15314b1ca8f8&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/include/linux/lustre_compat25.h&lt;/li&gt;
	&lt;li&gt;lustre/ptlrpc/service.c&lt;/li&gt;
	&lt;li&gt;libcfs/include/libcfs/linux/linux-prim.h&lt;/li&gt;
	&lt;li&gt;lustre/autoconf/lustre-core.m4&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="24060" author="hudson" created="Sat, 10 Dec 2011 12:20:35 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=x86_64,build_type=server,distro=el5,ib_stack=ofa/374/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,server,el5,ofa #374&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-663&quot; title=&quot;Some architectures do not have NUMA features anymore&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-663&quot;&gt;&lt;del&gt;LU-663&lt;/del&gt;&lt;/a&gt; kernel: Some arch do not have NUMA features anymore (Revision 49b74e8ab7c0bf76a4ff5b0b2cce15314b1ca8f8)&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=49b74e8ab7c0bf76a4ff5b0b2cce15314b1ca8f8&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;49b74e8ab7c0bf76a4ff5b0b2cce15314b1ca8f8&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/ptlrpc/service.c&lt;/li&gt;
	&lt;li&gt;lustre/autoconf/lustre-core.m4&lt;/li&gt;
	&lt;li&gt;libcfs/include/libcfs/linux/linux-prim.h&lt;/li&gt;
	&lt;li&gt;lustre/include/linux/lustre_compat25.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="24061" author="hudson" created="Sat, 10 Dec 2011 12:20:39 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=i686,build_type=client,distro=el5,ib_stack=ofa/374/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,client,el5,ofa #374&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-663&quot; title=&quot;Some architectures do not have NUMA features anymore&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-663&quot;&gt;&lt;del&gt;LU-663&lt;/del&gt;&lt;/a&gt; kernel: Some arch do not have NUMA features anymore (Revision 49b74e8ab7c0bf76a4ff5b0b2cce15314b1ca8f8)&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=49b74e8ab7c0bf76a4ff5b0b2cce15314b1ca8f8&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;49b74e8ab7c0bf76a4ff5b0b2cce15314b1ca8f8&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/ptlrpc/service.c&lt;/li&gt;
	&lt;li&gt;lustre/include/linux/lustre_compat25.h&lt;/li&gt;
	&lt;li&gt;libcfs/include/libcfs/linux/linux-prim.h&lt;/li&gt;
	&lt;li&gt;lustre/autoconf/lustre-core.m4&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="24062" author="hudson" created="Sat, 10 Dec 2011 12:21: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=el5,ib_stack=inkernel/374/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,client,el5,inkernel #374&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-663&quot; title=&quot;Some architectures do not have NUMA features anymore&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-663&quot;&gt;&lt;del&gt;LU-663&lt;/del&gt;&lt;/a&gt; kernel: Some arch do not have NUMA features anymore (Revision 49b74e8ab7c0bf76a4ff5b0b2cce15314b1ca8f8)&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=49b74e8ab7c0bf76a4ff5b0b2cce15314b1ca8f8&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;49b74e8ab7c0bf76a4ff5b0b2cce15314b1ca8f8&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/ptlrpc/service.c&lt;/li&gt;
	&lt;li&gt;libcfs/include/libcfs/linux/linux-prim.h&lt;/li&gt;
	&lt;li&gt;lustre/include/linux/lustre_compat25.h&lt;/li&gt;
	&lt;li&gt;lustre/autoconf/lustre-core.m4&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="24063" author="hudson" created="Sat, 10 Dec 2011 12:28: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=server,distro=el6,ib_stack=inkernel/374/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,server,el6,inkernel #374&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-663&quot; title=&quot;Some architectures do not have NUMA features anymore&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-663&quot;&gt;&lt;del&gt;LU-663&lt;/del&gt;&lt;/a&gt; kernel: Some arch do not have NUMA features anymore (Revision 49b74e8ab7c0bf76a4ff5b0b2cce15314b1ca8f8)&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=49b74e8ab7c0bf76a4ff5b0b2cce15314b1ca8f8&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;49b74e8ab7c0bf76a4ff5b0b2cce15314b1ca8f8&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/ptlrpc/service.c&lt;/li&gt;
	&lt;li&gt;lustre/include/linux/lustre_compat25.h&lt;/li&gt;
	&lt;li&gt;lustre/autoconf/lustre-core.m4&lt;/li&gt;
	&lt;li&gt;libcfs/include/libcfs/linux/linux-prim.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="24064" author="hudson" created="Sat, 10 Dec 2011 12:43: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-master/./arch=i686,build_type=server,distro=el5,ib_stack=inkernel/374/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,server,el5,inkernel #374&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-663&quot; title=&quot;Some architectures do not have NUMA features anymore&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-663&quot;&gt;&lt;del&gt;LU-663&lt;/del&gt;&lt;/a&gt; kernel: Some arch do not have NUMA features anymore (Revision 49b74e8ab7c0bf76a4ff5b0b2cce15314b1ca8f8)&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=49b74e8ab7c0bf76a4ff5b0b2cce15314b1ca8f8&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;49b74e8ab7c0bf76a4ff5b0b2cce15314b1ca8f8&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/ptlrpc/service.c&lt;/li&gt;
	&lt;li&gt;lustre/autoconf/lustre-core.m4&lt;/li&gt;
	&lt;li&gt;lustre/include/linux/lustre_compat25.h&lt;/li&gt;
	&lt;li&gt;libcfs/include/libcfs/linux/linux-prim.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="24065" author="hudson" created="Sat, 10 Dec 2011 12:44:52 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=i686,build_type=server,distro=el5,ib_stack=ofa/374/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,server,el5,ofa #374&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-663&quot; title=&quot;Some architectures do not have NUMA features anymore&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-663&quot;&gt;&lt;del&gt;LU-663&lt;/del&gt;&lt;/a&gt; kernel: Some arch do not have NUMA features anymore (Revision 49b74e8ab7c0bf76a4ff5b0b2cce15314b1ca8f8)&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=49b74e8ab7c0bf76a4ff5b0b2cce15314b1ca8f8&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;49b74e8ab7c0bf76a4ff5b0b2cce15314b1ca8f8&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/ptlrpc/service.c&lt;/li&gt;
	&lt;li&gt;lustre/autoconf/lustre-core.m4&lt;/li&gt;
	&lt;li&gt;lustre/include/linux/lustre_compat25.h&lt;/li&gt;
	&lt;li&gt;libcfs/include/libcfs/linux/linux-prim.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="24413" author="pjones" created="Mon, 12 Dec 2011 17:38:20 +0000"  >&lt;p&gt;Landed for 2.2&lt;/p&gt;</comment>
                            <comment id="35917" author="bogl" created="Tue, 1 May 2012 11:48:42 +0000"  >&lt;p&gt;&lt;a href=&quot;http://review.whamcloud.com/#change,2620&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://review.whamcloud.com/#change,2620&lt;/a&gt;&lt;br/&gt;
back port to b2_1&lt;/p&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_10040" key="com.atlassian.jira.plugin.system.customfieldtypes:labels">
                        <customfieldname>Epic</customfieldname>
                        <customfieldvalues>
                                        <label>NUMA</label>
            <label>performance</label>
            <label>server</label>
    
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                <customfield id="customfield_10390" key="com.pyxis.greenhopper.jira:gh-lexo-rank">
                        <customfieldname>Rank</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>1|hzv807:</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_10090" key="com.pyxis.greenhopper.jira:gh-global-rank">
                        <customfieldname>Rank (Obsolete)</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>4831</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                                                                                </customfields>
    </item>
</channel>
</rss>