<!-- 
RSS generated by JIRA (9.4.14#940014-sha1:734e6822bbf0d45eff9af51f82432957f73aa32c) at Sat Feb 10 01:12:43 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-1019] general ptlrpcd pool support to process kinds of async RPC efficiently on SMP client</title>
                <link>https://jira.whamcloud.com/browse/LU-1019</link>
                <project id="10000" key="LU">Lustre</project>
                    <description>&lt;p&gt;We want to implement general ptlrpcd pool, the ptlrpcd threads in such pool are shared by all the async RPCs on the client, like BRW request, data checksum, async glimpse lock, statahead, and so on.&lt;/p&gt;

&lt;p&gt;Current idea is one ptlrpcd thread per CPU-core (or partition), and bind ptlrpcd thread on the CPU-core.&lt;/p&gt;</description>
                <environment></environment>
        <key id="12956">LU-1019</key>
            <summary>general ptlrpcd pool support to process kinds of async RPC efficiently on SMP client</summary>
                <type id="2" iconUrl="https://jira.whamcloud.com/secure/viewavatar?size=xsmall&amp;avatarId=11311&amp;avatarType=issuetype">New Feature</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="3">Duplicate</resolution>
                                        <assignee username="yong.fan">nasf</assignee>
                                    <reporter username="adilger">Andreas Dilger</reporter>
                        <labels>
                    </labels>
                <created>Fri, 20 Jan 2012 16:50:56 +0000</created>
                <updated>Wed, 2 May 2012 15:37:28 +0000</updated>
                            <resolved>Fri, 20 Jan 2012 16:56:43 +0000</resolved>
                                    <version>Lustre 2.2.0</version>
                                    <fixVersion>Lustre 2.2.0</fixVersion>
                                        <due></due>
                            <votes>0</votes>
                                    <watches>0</watches>
                                                                            <comments>
                            <comment id="27153" author="adilger" created="Fri, 20 Jan 2012 16:56:02 +0000"  >&lt;p&gt;From ORNL-22:&lt;/p&gt;

&lt;p&gt;We want multiple CPU cores to share the async RPC load. So we&lt;br/&gt;
start many ptlrpcd threads. We also want to reduce the ptlrpcd&lt;br/&gt;
overhead caused by data transfer cross-CPU cores. So we bind&lt;br/&gt;
ptlrpcd thread to specified CPU core. But binding all ptlrpcd&lt;br/&gt;
threads maybe cause response delay because of some CPU core(s)&lt;br/&gt;
busy with other loads.&lt;/p&gt;

&lt;p&gt;For example: &quot;ls -l&quot;, some async RPCs for statahead are assigned&lt;br/&gt;
to ptlrpcd_0, and ptlrpcd_0 is bound to CPU_0, but CPU_0 may be&lt;br/&gt;
quite busy with other non-ptlrpcd, like &quot;ls -l&quot; itself (we want&lt;br/&gt;
to the &quot;ls -l&quot; thread, statahead thread, and ptlrpcd thread can&lt;br/&gt;
run in parallel), under such case, the statahead async RPCs can&lt;br/&gt;
not be processed in time, it is unexpected. If ptlrpcd_0 can be&lt;br/&gt;
re-scheduled on other CPU core, it may be better. But it breaks&lt;br/&gt;
former data transfer policy.&lt;/p&gt;

&lt;p&gt;So we shouldn&apos;t be blind for avoiding the data transfer. We make&lt;br/&gt;
some compromise: divide the ptlrpcd threds pool into two parts.&lt;br/&gt;
One part is for bound mode, each ptlrpcd thread in this part is&lt;br/&gt;
bound to some CPU core. The other part is for free mode, all the&lt;br/&gt;
ptlrpcd threads in the part can be scheduled on any CPU core.&lt;br/&gt;
We specify some partnership between bound mode ptlrpcd thread(s)&lt;br/&gt;
and free mode ptlrpcd thread(s), and the async RPC load within&lt;br/&gt;
the partners are shared.&lt;/p&gt;

&lt;p&gt;It can partly avoid data transfer corss-CPU (if the bound mode&lt;br/&gt;
ptlrpcd thread can be scheduled in time), and try to guarantee&lt;br/&gt;
the async RPC processed ASAP (as long as the free mode ptlrpcd&lt;br/&gt;
thread can be scheduled on any CPU core).&lt;/p&gt;

&lt;p&gt;As for how to specify the partnership between bound mode ptlrpcd&lt;br/&gt;
thread(s) and free mode ptlrpcd thread(s), the simplest way is&lt;br/&gt;
&amp;lt;free bound&amp;gt; pair. In future, we can specify some more complex&lt;br/&gt;
partnership based on the patches for CPU partition. But before&lt;br/&gt;
such patches are available, we prefer to use the simplest one.&lt;/p&gt;</comment>
                            <comment id="27154" author="adilger" created="Fri, 20 Jan 2012 16:56:22 +0000"  >&lt;p&gt;Test Results for the patch (&lt;a href=&quot;http://review.whamcloud.com/#change,1184&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://review.whamcloud.com/#change,1184&lt;/a&gt;) from Cliff White:&lt;/p&gt;

&lt;p&gt;Before:&lt;/p&gt;

&lt;p&gt;2 clients, 8 threads/client&lt;/p&gt;

&lt;p&gt;Operation Max (MiB) Min (MiB) Mean (MiB) Std Dev Max (OPs) Min (OPs) Mean (OPs) Std Dev Mean (s) Op grep #Tasks tPN reps fPP reord reordoff reordrand seed segcnt blksiz xsize aggsize&lt;/p&gt;

&lt;p&gt;-------- ------- ------- -------- ----- ------- ------- -------- ----- -------&lt;/p&gt;

&lt;p&gt;write 1064.69 1045.74 1054.41 7.82 1064.69 1045.74 1054.41 7.82 3.88486 16 8 3 1 1 1 0 0 1 268435456 1048576 4294967296 -1 POSIX EXCEL&lt;/p&gt;

&lt;p&gt;read 1114.51 1050.80 1088.79 27.42 1114.51 1050.80 1088.79 27.42 3.76440 16 8 3 1 1 1 0 0 1 268435456 1048576 4294967296 -1 POSIX EXCEL&lt;/p&gt;

&lt;p&gt;2 clients, 1 thread/client&lt;/p&gt;

&lt;p&gt;0: write 433.76 425.31 428.35 3.84 433.76 425.31 428.35 3.84 1.19537 2 1 3 1 1 1 0 0 1 268435456 1048576 536870912 -1 POSIX EXCEL&lt;/p&gt;

&lt;p&gt;0: read 507.27 501.03 503.50 2.71 507.27 501.03 503.50 2.71 1.01691 2 1 3 1 1 1 0 0 1 268435456 1048576 536870912 -1 POSIX EXCEL&lt;/p&gt;

&lt;p&gt;After:&lt;/p&gt;

&lt;p&gt;2 clients, 8 threads/client&lt;/p&gt;

&lt;p&gt;00: write 1110.32 1087.60 1096.13 10.10 1110.32 1087.60 1096.13 10.10 3.73709 16 8 3 1 1 1 0 0 1 268435456 1048576 4294967296 -1 POSIX EXCEL&lt;/p&gt;

&lt;p&gt;00: read 1170.60 1115.15 1137.76 23.77 1170.60 1115.15 1137.76 23.77 3.60162 16 8 3 1 1 1 0 0 1 268435456 1048576 4294967296 -1 POSIX EXCEL&lt;/p&gt;

&lt;p&gt;2 clients, 1 thread/client&lt;/p&gt;

&lt;p&gt;write 591.19 571.50 579.51 8.45 591.19 571.50 579.51 8.45 0.88370 2 1 3 1 1 1 0 0 1 268435456 1048576 536870912 -1 POSIX EXCEL&lt;/p&gt;

&lt;p&gt;0: read 594.26 584.95 588.27 4.24 594.26 584.95 588.27 4.24 0.87039 2 1 3 1 1 1 0 0 1 268435456 1048576 536870912 -1 POSIX EXCEL&lt;/p&gt;

&lt;p&gt;Test summary for 8 threads&lt;/p&gt;

&lt;p&gt;0: Summary:&lt;/p&gt;

&lt;p&gt;00: api = POSIX&lt;/p&gt;

&lt;p&gt;00: test filename = /p/l_wham/white215/hyperion.18942/ior/iorData&lt;/p&gt;

&lt;p&gt;00: access = file-per-process&lt;/p&gt;

&lt;p&gt;00: pattern = segmented (1 segment)&lt;/p&gt;

&lt;p&gt;00: ordering in a file = sequential offsets&lt;/p&gt;

&lt;p&gt;00: ordering inter file=constant task offsets = 1&lt;/p&gt;

&lt;p&gt;00: clients = 16 (8 per node)&lt;/p&gt;

&lt;p&gt;00: repetitions = 3&lt;/p&gt;

&lt;p&gt;00: xfersize = 1 MiB&lt;/p&gt;

&lt;p&gt;00: blocksize = 256 MiB&lt;/p&gt;

&lt;p&gt;00: aggregate filesize = 4 GiB&lt;/p&gt;

&lt;p&gt;one note: before test was done on idle cluster, after test on idle cluster immediately after client reboot.&lt;/p&gt;</comment>
                            <comment id="30225" author="hudson" created="Thu, 1 Mar 2012 17:54:51 +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/495/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,server,el5,ofa #495&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1019&quot; title=&quot;general ptlrpcd pool support to process kinds of async RPC efficiently on SMP client&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1019&quot;&gt;&lt;del&gt;LU-1019&lt;/del&gt;&lt;/a&gt; ptlrpc: fix ptlrpcd transfer message (Revision 3e39a4218f3f69e67f5c8ef85a92f55a9e351fd0)&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=3e39a4218f3f69e67f5c8ef85a92f55a9e351fd0&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;3e39a4218f3f69e67f5c8ef85a92f55a9e351fd0&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/ptlrpc/ptlrpcd.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="30227" author="hudson" created="Thu, 1 Mar 2012 18:01: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=inkernel/495/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,server,el5,inkernel #495&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1019&quot; title=&quot;general ptlrpcd pool support to process kinds of async RPC efficiently on SMP client&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1019&quot;&gt;&lt;del&gt;LU-1019&lt;/del&gt;&lt;/a&gt; ptlrpc: fix ptlrpcd transfer message (Revision 3e39a4218f3f69e67f5c8ef85a92f55a9e351fd0)&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=3e39a4218f3f69e67f5c8ef85a92f55a9e351fd0&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;3e39a4218f3f69e67f5c8ef85a92f55a9e351fd0&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/ptlrpc/ptlrpcd.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="30231" author="hudson" created="Thu, 1 Mar 2012 18:04: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=x86_64,build_type=client,distro=ubuntu1004,ib_stack=inkernel/495/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,ubuntu1004,inkernel #495&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1019&quot; title=&quot;general ptlrpcd pool support to process kinds of async RPC efficiently on SMP client&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1019&quot;&gt;&lt;del&gt;LU-1019&lt;/del&gt;&lt;/a&gt; ptlrpc: fix ptlrpcd transfer message (Revision 3e39a4218f3f69e67f5c8ef85a92f55a9e351fd0)&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=3e39a4218f3f69e67f5c8ef85a92f55a9e351fd0&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;3e39a4218f3f69e67f5c8ef85a92f55a9e351fd0&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/ptlrpc/ptlrpcd.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="30233" author="hudson" created="Thu, 1 Mar 2012 18:07:27 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=x86_64,build_type=client,distro=el5,ib_stack=ofa/495/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,el5,ofa #495&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1019&quot; title=&quot;general ptlrpcd pool support to process kinds of async RPC efficiently on SMP client&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1019&quot;&gt;&lt;del&gt;LU-1019&lt;/del&gt;&lt;/a&gt; ptlrpc: fix ptlrpcd transfer message (Revision 3e39a4218f3f69e67f5c8ef85a92f55a9e351fd0)&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=3e39a4218f3f69e67f5c8ef85a92f55a9e351fd0&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;3e39a4218f3f69e67f5c8ef85a92f55a9e351fd0&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/ptlrpc/ptlrpcd.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="30238" author="hudson" created="Thu, 1 Mar 2012 18:13:03 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=x86_64,build_type=client,distro=sles11,ib_stack=inkernel/495/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,sles11,inkernel #495&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1019&quot; title=&quot;general ptlrpcd pool support to process kinds of async RPC efficiently on SMP client&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1019&quot;&gt;&lt;del&gt;LU-1019&lt;/del&gt;&lt;/a&gt; ptlrpc: fix ptlrpcd transfer message (Revision 3e39a4218f3f69e67f5c8ef85a92f55a9e351fd0)&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=3e39a4218f3f69e67f5c8ef85a92f55a9e351fd0&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;3e39a4218f3f69e67f5c8ef85a92f55a9e351fd0&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/ptlrpc/ptlrpcd.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="30240" author="hudson" created="Thu, 1 Mar 2012 18:16: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=ofa/495/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,client,el5,ofa #495&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1019&quot; title=&quot;general ptlrpcd pool support to process kinds of async RPC efficiently on SMP client&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1019&quot;&gt;&lt;del&gt;LU-1019&lt;/del&gt;&lt;/a&gt; ptlrpc: fix ptlrpcd transfer message (Revision 3e39a4218f3f69e67f5c8ef85a92f55a9e351fd0)&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=3e39a4218f3f69e67f5c8ef85a92f55a9e351fd0&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;3e39a4218f3f69e67f5c8ef85a92f55a9e351fd0&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/ptlrpc/ptlrpcd.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="30242" author="hudson" created="Thu, 1 Mar 2012 18:18:07 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=i686,build_type=server,distro=el5,ib_stack=ofa/495/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,server,el5,ofa #495&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1019&quot; title=&quot;general ptlrpcd pool support to process kinds of async RPC efficiently on SMP client&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1019&quot;&gt;&lt;del&gt;LU-1019&lt;/del&gt;&lt;/a&gt; ptlrpc: fix ptlrpcd transfer message (Revision 3e39a4218f3f69e67f5c8ef85a92f55a9e351fd0)&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=3e39a4218f3f69e67f5c8ef85a92f55a9e351fd0&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;3e39a4218f3f69e67f5c8ef85a92f55a9e351fd0&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/ptlrpc/ptlrpcd.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="30244" author="hudson" created="Thu, 1 Mar 2012 18:21: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=x86_64,build_type=client,distro=el5,ib_stack=inkernel/495/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,el5,inkernel #495&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1019&quot; title=&quot;general ptlrpcd pool support to process kinds of async RPC efficiently on SMP client&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1019&quot;&gt;&lt;del&gt;LU-1019&lt;/del&gt;&lt;/a&gt; ptlrpc: fix ptlrpcd transfer message (Revision 3e39a4218f3f69e67f5c8ef85a92f55a9e351fd0)&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=3e39a4218f3f69e67f5c8ef85a92f55a9e351fd0&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;3e39a4218f3f69e67f5c8ef85a92f55a9e351fd0&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/ptlrpc/ptlrpcd.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="30246" author="hudson" created="Thu, 1 Mar 2012 18:24:03 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=x86_64,build_type=client,distro=el6,ib_stack=ofa/495/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,el6,ofa #495&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1019&quot; title=&quot;general ptlrpcd pool support to process kinds of async RPC efficiently on SMP client&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1019&quot;&gt;&lt;del&gt;LU-1019&lt;/del&gt;&lt;/a&gt; ptlrpc: fix ptlrpcd transfer message (Revision 3e39a4218f3f69e67f5c8ef85a92f55a9e351fd0)&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=3e39a4218f3f69e67f5c8ef85a92f55a9e351fd0&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;3e39a4218f3f69e67f5c8ef85a92f55a9e351fd0&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/ptlrpc/ptlrpcd.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="30248" author="hudson" created="Thu, 1 Mar 2012 18:27:07 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=x86_64,build_type=server,distro=el6,ib_stack=ofa/495/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,server,el6,ofa #495&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1019&quot; title=&quot;general ptlrpcd pool support to process kinds of async RPC efficiently on SMP client&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1019&quot;&gt;&lt;del&gt;LU-1019&lt;/del&gt;&lt;/a&gt; ptlrpc: fix ptlrpcd transfer message (Revision 3e39a4218f3f69e67f5c8ef85a92f55a9e351fd0)&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=3e39a4218f3f69e67f5c8ef85a92f55a9e351fd0&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;3e39a4218f3f69e67f5c8ef85a92f55a9e351fd0&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/ptlrpc/ptlrpcd.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="30251" author="hudson" created="Thu, 1 Mar 2012 18:40: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=i686,build_type=client,distro=el5,ib_stack=inkernel/495/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,client,el5,inkernel #495&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1019&quot; title=&quot;general ptlrpcd pool support to process kinds of async RPC efficiently on SMP client&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1019&quot;&gt;&lt;del&gt;LU-1019&lt;/del&gt;&lt;/a&gt; ptlrpc: fix ptlrpcd transfer message (Revision 3e39a4218f3f69e67f5c8ef85a92f55a9e351fd0)&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=3e39a4218f3f69e67f5c8ef85a92f55a9e351fd0&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;3e39a4218f3f69e67f5c8ef85a92f55a9e351fd0&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/ptlrpc/ptlrpcd.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="30253" author="hudson" created="Thu, 1 Mar 2012 18:43:04 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=i686,build_type=server,distro=el5,ib_stack=inkernel/495/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,server,el5,inkernel #495&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1019&quot; title=&quot;general ptlrpcd pool support to process kinds of async RPC efficiently on SMP client&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1019&quot;&gt;&lt;del&gt;LU-1019&lt;/del&gt;&lt;/a&gt; ptlrpc: fix ptlrpcd transfer message (Revision 3e39a4218f3f69e67f5c8ef85a92f55a9e351fd0)&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=3e39a4218f3f69e67f5c8ef85a92f55a9e351fd0&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;3e39a4218f3f69e67f5c8ef85a92f55a9e351fd0&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/ptlrpc/ptlrpcd.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="30255" author="hudson" created="Thu, 1 Mar 2012 18:50:36 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=x86_64,build_type=client,distro=el6,ib_stack=inkernel/495/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,el6,inkernel #495&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1019&quot; title=&quot;general ptlrpcd pool support to process kinds of async RPC efficiently on SMP client&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1019&quot;&gt;&lt;del&gt;LU-1019&lt;/del&gt;&lt;/a&gt; ptlrpc: fix ptlrpcd transfer message (Revision 3e39a4218f3f69e67f5c8ef85a92f55a9e351fd0)&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=3e39a4218f3f69e67f5c8ef85a92f55a9e351fd0&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;3e39a4218f3f69e67f5c8ef85a92f55a9e351fd0&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/ptlrpc/ptlrpcd.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="30257" author="hudson" created="Thu, 1 Mar 2012 18:54:24 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=x86_64,build_type=server,distro=el6,ib_stack=inkernel/495/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,server,el6,inkernel #495&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1019&quot; title=&quot;general ptlrpcd pool support to process kinds of async RPC efficiently on SMP client&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1019&quot;&gt;&lt;del&gt;LU-1019&lt;/del&gt;&lt;/a&gt; ptlrpc: fix ptlrpcd transfer message (Revision 3e39a4218f3f69e67f5c8ef85a92f55a9e351fd0)&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=3e39a4218f3f69e67f5c8ef85a92f55a9e351fd0&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;3e39a4218f3f69e67f5c8ef85a92f55a9e351fd0&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/ptlrpc/ptlrpcd.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="30259" author="hudson" created="Thu, 1 Mar 2012 18:59:21 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=i686,build_type=client,distro=el6,ib_stack=inkernel/495/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,client,el6,inkernel #495&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1019&quot; title=&quot;general ptlrpcd pool support to process kinds of async RPC efficiently on SMP client&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1019&quot;&gt;&lt;del&gt;LU-1019&lt;/del&gt;&lt;/a&gt; ptlrpc: fix ptlrpcd transfer message (Revision 3e39a4218f3f69e67f5c8ef85a92f55a9e351fd0)&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=3e39a4218f3f69e67f5c8ef85a92f55a9e351fd0&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;3e39a4218f3f69e67f5c8ef85a92f55a9e351fd0&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/ptlrpc/ptlrpcd.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="30261" author="hudson" created="Thu, 1 Mar 2012 19:04:26 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=i686,build_type=server,distro=el6,ib_stack=inkernel/495/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,server,el6,inkernel #495&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1019&quot; title=&quot;general ptlrpcd pool support to process kinds of async RPC efficiently on SMP client&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1019&quot;&gt;&lt;del&gt;LU-1019&lt;/del&gt;&lt;/a&gt; ptlrpc: fix ptlrpcd transfer message (Revision 3e39a4218f3f69e67f5c8ef85a92f55a9e351fd0)&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=3e39a4218f3f69e67f5c8ef85a92f55a9e351fd0&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;3e39a4218f3f69e67f5c8ef85a92f55a9e351fd0&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/ptlrpc/ptlrpcd.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="30264" author="hudson" created="Thu, 1 Mar 2012 19:34: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=i686,build_type=client,distro=el6,ib_stack=ofa/495/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,client,el6,ofa #495&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1019&quot; title=&quot;general ptlrpcd pool support to process kinds of async RPC efficiently on SMP client&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1019&quot;&gt;&lt;del&gt;LU-1019&lt;/del&gt;&lt;/a&gt; ptlrpc: fix ptlrpcd transfer message (Revision 3e39a4218f3f69e67f5c8ef85a92f55a9e351fd0)&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=3e39a4218f3f69e67f5c8ef85a92f55a9e351fd0&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;3e39a4218f3f69e67f5c8ef85a92f55a9e351fd0&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/ptlrpc/ptlrpcd.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="30266" author="hudson" created="Thu, 1 Mar 2012 19:41: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=server,distro=el6,ib_stack=ofa/495/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,server,el6,ofa #495&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1019&quot; title=&quot;general ptlrpcd pool support to process kinds of async RPC efficiently on SMP client&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1019&quot;&gt;&lt;del&gt;LU-1019&lt;/del&gt;&lt;/a&gt; ptlrpc: fix ptlrpcd transfer message (Revision 3e39a4218f3f69e67f5c8ef85a92f55a9e351fd0)&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=3e39a4218f3f69e67f5c8ef85a92f55a9e351fd0&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;3e39a4218f3f69e67f5c8ef85a92f55a9e351fd0&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/ptlrpc/ptlrpcd.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="36158" author="hudson" created="Wed, 2 May 2012 14:53: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-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-1019&quot; title=&quot;general ptlrpcd pool support to process kinds of async RPC efficiently on SMP client&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1019&quot;&gt;&lt;del&gt;LU-1019&lt;/del&gt;&lt;/a&gt; ptlrpc: fix ptlrpcd transfer message (Revision 3e39a4218f3f69e67f5c8ef85a92f55a9e351fd0)&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=3e39a4218f3f69e67f5c8ef85a92f55a9e351fd0&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;3e39a4218f3f69e67f5c8ef85a92f55a9e351fd0&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/ptlrpc/ptlrpcd.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="36455" author="hudson" created="Wed, 2 May 2012 14:55: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-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-1019&quot; title=&quot;general ptlrpcd pool support to process kinds of async RPC efficiently on SMP client&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1019&quot;&gt;&lt;del&gt;LU-1019&lt;/del&gt;&lt;/a&gt; ptlrpc: fix ptlrpcd transfer message (Revision 3e39a4218f3f69e67f5c8ef85a92f55a9e351fd0)&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=3e39a4218f3f69e67f5c8ef85a92f55a9e351fd0&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;3e39a4218f3f69e67f5c8ef85a92f55a9e351fd0&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/ptlrpc/ptlrpcd.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="36752" author="hudson" created="Wed, 2 May 2012 14:58:16 +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-1019&quot; title=&quot;general ptlrpcd pool support to process kinds of async RPC efficiently on SMP client&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1019&quot;&gt;&lt;del&gt;LU-1019&lt;/del&gt;&lt;/a&gt; ptlrpc: fix ptlrpcd transfer message (Revision 3e39a4218f3f69e67f5c8ef85a92f55a9e351fd0)&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=3e39a4218f3f69e67f5c8ef85a92f55a9e351fd0&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;3e39a4218f3f69e67f5c8ef85a92f55a9e351fd0&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/ptlrpc/ptlrpcd.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="37050" author="hudson" created="Wed, 2 May 2012 15:13:55 +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-1019&quot; title=&quot;general ptlrpcd pool support to process kinds of async RPC efficiently on SMP client&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1019&quot;&gt;&lt;del&gt;LU-1019&lt;/del&gt;&lt;/a&gt; ptlrpc: fix ptlrpcd transfer message (Revision 3e39a4218f3f69e67f5c8ef85a92f55a9e351fd0)&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=3e39a4218f3f69e67f5c8ef85a92f55a9e351fd0&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;3e39a4218f3f69e67f5c8ef85a92f55a9e351fd0&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/ptlrpc/ptlrpcd.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="37347" author="hudson" created="Wed, 2 May 2012 15:14: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-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-1019&quot; title=&quot;general ptlrpcd pool support to process kinds of async RPC efficiently on SMP client&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1019&quot;&gt;&lt;del&gt;LU-1019&lt;/del&gt;&lt;/a&gt; ptlrpc: fix ptlrpcd transfer message (Revision 3e39a4218f3f69e67f5c8ef85a92f55a9e351fd0)&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=3e39a4218f3f69e67f5c8ef85a92f55a9e351fd0&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;3e39a4218f3f69e67f5c8ef85a92f55a9e351fd0&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/ptlrpc/ptlrpcd.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="37645" author="hudson" created="Wed, 2 May 2012 15:19:41 +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-1019&quot; title=&quot;general ptlrpcd pool support to process kinds of async RPC efficiently on SMP client&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1019&quot;&gt;&lt;del&gt;LU-1019&lt;/del&gt;&lt;/a&gt; ptlrpc: fix ptlrpcd transfer message (Revision 3e39a4218f3f69e67f5c8ef85a92f55a9e351fd0)&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=3e39a4218f3f69e67f5c8ef85a92f55a9e351fd0&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;3e39a4218f3f69e67f5c8ef85a92f55a9e351fd0&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/ptlrpc/ptlrpcd.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="37942" author="hudson" created="Wed, 2 May 2012 15:37:28 +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-1019&quot; title=&quot;general ptlrpcd pool support to process kinds of async RPC efficiently on SMP client&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1019&quot;&gt;&lt;del&gt;LU-1019&lt;/del&gt;&lt;/a&gt; ptlrpc: fix ptlrpcd transfer message (Revision 3e39a4218f3f69e67f5c8ef85a92f55a9e351fd0)&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=3e39a4218f3f69e67f5c8ef85a92f55a9e351fd0&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;3e39a4218f3f69e67f5c8ef85a92f55a9e351fd0&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/ptlrpc/ptlrpcd.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                    </comments>
                <issuelinks>
                            <issuelinktype id="10010">
                    <name>Duplicate</name>
                                            <outwardlinks description="duplicates">
                                                        </outwardlinks>
                                                        </issuelinktype>
                    </issuelinks>
                <attachments>
                            <attachment id="10809" name="Multi-threaded_ptlrpcd.pdf" size="61753" author="yong.fan" created="Wed, 1 Feb 2012 22:02:44 +0000"/>
                    </attachments>
                <subtasks>
                    </subtasks>
                <customfields>
                                                                                                                                                                <customfield id="customfield_10890" key="com.atlassian.jira.plugins.jira-development-integration-plugin:devsummary">
                        <customfieldname>Development</customfieldname>
                        <customfieldvalues>
                            
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                        <customfield id="customfield_10390" key="com.pyxis.greenhopper.jira:gh-lexo-rank">
                        <customfieldname>Rank</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>1|hzv787:</customfieldvalue>

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