<!-- 
RSS generated by JIRA (9.4.14#940014-sha1:734e6822bbf0d45eff9af51f82432957f73aa32c) at Sat Feb 10 01:03:13 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-50] pdirops patch for ldiskfs</title>
                <link>https://jira.whamcloud.com/browse/LU-50</link>
                <project id="10000" key="LU">Lustre</project>
                    <description>&lt;p&gt;Changing operations of shared directory are not good even with all SMP improvements, I made some efforts to localize changing operations on a few cores to decrease contention and they can somehow help to improvement performance of pdirops (see my comment on &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-55&quot; title=&quot;Finish SMP scalability work (public tracking ticket)&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-55&quot;&gt;&lt;del&gt;LU-55&lt;/del&gt;&lt;/a&gt;).&lt;/p&gt;

&lt;p&gt;At the same time, it&apos;s worth to try to increase pdirops performance in ldiskfs level. We had a dynlock based pdirops patch for ldiskfs several years ago, but we didn&apos;t maintain it. Actually, I found it&apos;s hard to maintain it because it&apos;s a complex patch and made a lot of changes to htree code of ext3/ext4. So I&apos;m thinking about to have a more simpler implementation of pdirops patch. &lt;/p&gt;

&lt;p&gt;The idea is quite simple (just like how we implement pdirop in ldlm level): &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;design &amp;amp; implement a advanced lock with multiple modes (CR, PR, CW, PW, EX)&lt;/li&gt;
	&lt;li&gt;it&apos;s just a resource lock resides in osd-ldiskfs &amp;amp; ldiskfs, which will replace current osd_object::oo_ext_idx_sem&lt;/li&gt;
	&lt;li&gt;we can partially protect resource by locking N hash keys after holding CR &amp;amp; CW
	&lt;ul&gt;
		&lt;li&gt;for CR, sub locking is PR&lt;/li&gt;
		&lt;li&gt;for CW, sub locking is PW&lt;/li&gt;
	&lt;/ul&gt;
	&lt;/li&gt;
	&lt;li&gt;for !is_dx(dir), change operations are always holding EX lock on dir, lookup &amp;amp; readdir hold PR lock on dir&lt;/li&gt;
	&lt;li&gt;for is_dx(dir)
	&lt;ul&gt;
		&lt;li&gt;change operations take CW lock, then take two sub-locks: name-hash as the first key, block number as the second key&lt;/li&gt;
		&lt;li&gt;lookup take CR lock, then take two sub-locks: name-hash as the first key, block number as the second key&lt;/li&gt;
		&lt;li&gt;readdir take PR lock (it&apos;s not necessary to take PR lock, but we already have PR lock in ldlm level, so it doesn&apos;t matter)&lt;/li&gt;
	&lt;/ul&gt;
	&lt;/li&gt;
	&lt;li&gt;if we need to split any blocks (name entries block or indexing block) while have CW lock, we release CW lock and take EX lock and retry.&lt;/li&gt;
	&lt;li&gt;we can disable pdirops ldiskfs by turning osd-ldiskfs pdir_ldiskfs=0/1, if we disabled pdirops for osd-ldiskfs then osd_ldiskfs always EX lock dir on changing and PR lock dir on lookup/readdir.&lt;/li&gt;
&lt;/ul&gt;


&lt;p&gt;Although implementation of the lock is a little complex, but we just need very few changes to ext4/ldiskfs and osd-ldiskfs with this lock: &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;osd-ldiskfs: replace oo_ext_idx_sem with the new lock&lt;/li&gt;
	&lt;li&gt;ldiskfs: switch lock mode if we need to split/append (in ldiskfs).&lt;/li&gt;
&lt;/ul&gt;


&lt;p&gt;PS: I&apos;m thinking about rename parl_lock to htree_lock, because it&apos;s really designed for htree operations, and Eric hates confusing naming like &quot;parl_lock&quot;&lt;/p&gt;</description>
                <environment></environment>
        <key id="10289">LU-50</key>
            <summary>pdirops patch for ldiskfs</summary>
                <type id="2" iconUrl="https://jira.whamcloud.com/secure/viewavatar?size=xsmall&amp;avatarId=11311&amp;avatarType=issuetype">New Feature</type>
                                            <priority id="3" iconUrl="https://jira.whamcloud.com/images/icons/priorities/major.svg">Major</priority>
                        <status id="5" iconUrl="https://jira.whamcloud.com/images/icons/statuses/resolved.png" description="A resolution has been taken, and it is awaiting verification by reporter. From here issues are either reopened, or are closed.">Resolved</status>
                    <statusCategory id="3" key="done" colorName="success"/>
                                    <resolution id="1">Fixed</resolution>
                                        <assignee username="liang">Liang Zhen</assignee>
                                    <reporter username="liang">Liang Zhen</reporter>
                        <labels>
                    </labels>
                <created>Sun, 23 Jan 2011 22:39:13 +0000</created>
                <updated>Tue, 28 Apr 2020 05:45:35 +0000</updated>
                            <resolved>Fri, 22 Jun 2012 04:33:30 +0000</resolved>
                                    <version>Lustre 2.1.0</version>
                                    <fixVersion>Lustre 2.2.0</fixVersion>
                                        <due></due>
                            <votes>1</votes>
                                    <watches>9</watches>
                                                                            <comments>
                            <comment id="10462" author="bzzz" created="Mon, 24 Jan 2011 01:29:09 +0000"  >&lt;p&gt;&amp;gt; if we need to split any blocks (name entries block or indexing block) while have CW lock, we release CW lock and take EX lock and retry.&lt;/p&gt;

&lt;p&gt;sounds like you&apos;re going to change APIs between MDT through ldiskfs?&lt;/p&gt;</comment>
                            <comment id="10463" author="liang" created="Mon, 24 Jan 2011 01:32:20 +0000"  >&lt;p&gt;no, all changes are just inside osd-ldiskfs and ldiskfs&lt;br/&gt;
osd-ldiskfs changes are simple:&lt;br/&gt;
just replace oo_ext_idx_sem with the new lock and some small changes.&lt;/p&gt;

&lt;p&gt;ldiskfs changes are simple as well... just need to change lock mode if necessary.&lt;br/&gt;
The only complex thing in the patch is implementation of the lock, it has nothing to do with current ldlm although the idea is from ldlm. &lt;/p&gt;</comment>
                            <comment id="10464" author="liang" created="Mon, 24 Jan 2011 01:35:49 +0000"  >&lt;p&gt;the patch is here: &lt;a href=&quot;http://review.whamcloud.com/#change,210&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://review.whamcloud.com/#change,210&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="10465" author="bzzz" created="Mon, 24 Jan 2011 01:36:27 +0000"  >&lt;p&gt;then it&apos;s not clear how MDT knows when to release CW and get EX, how ldiskfs knows when to interrupt split and when do no.&lt;/p&gt;</comment>
                            <comment id="10466" author="liang" created="Mon, 24 Jan 2011 01:41:17 +0000"  >&lt;p&gt;it&apos;s a totally osd/diskfs level lock so MDT doesn&apos;t need to know anything, but ldiskfs should know when needs to split/append(we patched it), whenever ldiskfs needs to change the htree, it retry with EX lock.&lt;/p&gt;</comment>
                            <comment id="10467" author="yong.fan" created="Mon, 24 Jan 2011 03:10:20 +0000"  >&lt;p&gt;For split case, whether we can upgrade from CW lock to EX lock directly without releasing CW lock firstly?&lt;/p&gt;</comment>
                            <comment id="10473" author="liang" created="Mon, 24 Jan 2011 05:07:43 +0000"  >&lt;p&gt;In the patch, I defined function: parl_change_lock, which means we can atomically release lock and gain lock with new mode if there is no conflict, otherwise it will be blocked.&lt;/p&gt;</comment>
                            <comment id="10711" author="liang" created="Tue, 22 Feb 2011 10:49:13 +0000"  >&lt;p&gt;some interesting numbers (single node, 4-cores * 2-hyper-threading, ramdisk MDT), 16 mounts &amp;amp; 16 threads opencreate 128K files under shared directory&lt;/p&gt;

&lt;p&gt;(fname len)  200           100             40 &lt;br/&gt;
ldiskfs   :  4400          11472           11808&lt;br/&gt;
pdirop    :  6976          15994           18192&lt;br/&gt;
iam-dir   :  10496         16816           18128&lt;/p&gt;

&lt;p&gt;as we can see, both pdirop patch and iam-dir can help on performance, but pdirop patch can&apos;t help too much if filename is extremely long (200 character), it&apos;s expected because we always take exclusive lock on directory if we need to split any block.&lt;/p&gt;

&lt;p&gt;Regards&lt;br/&gt;
Liang&lt;/p&gt;</comment>
                            <comment id="10712" author="adilger" created="Tue, 22 Feb 2011 13:30:52 +0000"  >&lt;p&gt;The site &lt;a href=&quot;http://www.pdsi-scidac.org/fsstats/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://www.pdsi-scidac.org/fsstats/&lt;/a&gt; has interesting information about filesystems, including average filename lengths (though the data is getting a bit old by now).  It shows that over 99% of most filesystems have filenames are 40 characters or less, and virtually all filenames are 100 characters or less.&lt;/p&gt;

&lt;p&gt;That means I&apos;m not terribly worried about the 200-character performance difference.  That is doubly true if this test was done on a filesystem with 1024-byte blocksize, which could only have 4 filenames per block before splitting.&lt;/p&gt;</comment>
                            <comment id="10713" author="liang" created="Tue, 22 Feb 2011 19:38:59 +0000"  >&lt;p&gt;Andreas, these are tests over lustre client, so I&apos;m using 4K blocksize for all cases.&lt;br/&gt;
I actually suspect it&apos;s not about split, when I set namelen to 190+ pdirop performance is still good (13K+/sec), but if I set namelen to 200+ I saw a big drop of performance (7K/sec) and I don&apos;t know why.&lt;br/&gt;
IAM-dir doesn&apos;t have such an issue.&lt;/p&gt;

&lt;p&gt;Liang&lt;/p&gt;</comment>
                            <comment id="11560" author="liang" created="Tue, 29 Mar 2011 21:27:13 +0000"  >&lt;p&gt;I&apos;ve made a lot of changes to previous patch:&lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;of course, rename, parl_lock* are changed to htree_lock*&lt;/li&gt;
	&lt;li&gt;after some tests, I found lock-htree-on-split is not good enough for performance because:
	&lt;ul&gt;
		&lt;li&gt;split happens more frequently than I expected&lt;/li&gt;
		&lt;li&gt;split takes much longer time than a regular name entry insertion, so we exclusively lock the htree very often.&lt;/li&gt;
	&lt;/ul&gt;
	&lt;/li&gt;
	&lt;li&gt;the new locking protocol is:
	&lt;ul&gt;
		&lt;li&gt;lock the leaf block (DE block) on inserting/deleting&lt;/li&gt;
		&lt;li&gt;lock the last level index block (DX block) on splitting of leaf block (DE block)&lt;/li&gt;
		&lt;li&gt;lock the whole tree on splitting of any index block(DX block), the chance of doing this is almost likely less than 0.1%&lt;/li&gt;
	&lt;/ul&gt;
	&lt;/li&gt;
	&lt;li&gt;I&apos;ve got really good testing results with this patch&lt;/li&gt;
	&lt;li&gt;downside of these improvements:
	&lt;ul&gt;
		&lt;li&gt;patch is bigger&lt;/li&gt;
		&lt;li&gt;htree_lock is more complex&lt;/li&gt;
	&lt;/ul&gt;
	&lt;/li&gt;
	&lt;li&gt;upside of the new patch:
	&lt;ul&gt;
		&lt;li&gt;patch is still clean and easy to maintain, 70% are just new code for implementation of htree_lock&lt;/li&gt;
		&lt;li&gt;better performance than previous patch&lt;/li&gt;
	&lt;/ul&gt;
	&lt;/li&gt;
&lt;/ul&gt;


</comment>
                            <comment id="11561" author="liang" created="Tue, 29 Mar 2011 21:49:36 +0000"  >&lt;p&gt;change it to 2.1&lt;/p&gt;</comment>
                            <comment id="11562" author="hudson" created="Tue, 29 Mar 2011 22:15: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/reviews-centos5/609/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;reviews-centos5 #609&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-50&quot; title=&quot;pdirops patch for ldiskfs&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-50&quot;&gt;&lt;del&gt;LU-50&lt;/del&gt;&lt;/a&gt; pdirops patch for ldiskfs&lt;/p&gt;

&lt;p&gt;Liang Zhen : &lt;a href=&quot;http://git.whamcloud.com/gitweb/?p=fs/lustre-release.git&amp;amp;a=commit&amp;amp;h=c4ab2660caf219a125a91bb33fb5a48c384f2c36&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;c4ab2660caf219a125a91bb33fb5a48c384f2c36&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;ldiskfs/ldiskfs/autoMakefile.am&lt;/li&gt;
	&lt;li&gt;ldiskfs/kernel_patches/patches/ext4_pdirop.patch&lt;/li&gt;
	&lt;li&gt;lustre/osd-ldiskfs/osd_handler.c&lt;/li&gt;
	&lt;li&gt;ldiskfs/kernel_patches/series/ldiskfs-2.6-rhel5-ext4.series&lt;/li&gt;
	&lt;li&gt;lustre/osd-ldiskfs/osd_internal.h&lt;/li&gt;
	&lt;li&gt;ldiskfs/ldiskfs/Makefile.in&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="20628" author="simmonsja" created="Mon, 3 Oct 2011 14:41:06 +0000"  >&lt;p&gt;I have seen some other tickets implementing this feature. Now that Lustre 2.2 is in the works we can revive this work.&lt;/p&gt;</comment>
                            <comment id="24045" author="adilger" created="Fri, 9 Dec 2011 18:49:55 +0000"  >&lt;p&gt;There need to be some follow-on bugs filed and fixed for this code in order of priority:&lt;/p&gt;

&lt;ul&gt;
	&lt;li&gt;test LARGEDIR and 3-level htree for local ldiskfs in conf-sanity.sh with 1kB blocksize up to 100k entries with 255-byte names (3-level exceeded at 48k entries)&lt;/li&gt;
	&lt;li&gt;test LARGEDIR and &amp;gt;2GB directories with Lustre in parallel-scale using 255-byte names and 10M entries (2GB exceeded at 4M entries, 4GB exceeded at 8M entries)&lt;/li&gt;
	&lt;li&gt;e2fsprogs support needs to be added for 3-level htree&lt;/li&gt;
	&lt;li&gt;e2fsprogs support for directories larger than 2GB&lt;/li&gt;
	&lt;li&gt;e2fsprogs test for 3-level htree e2fsck, corruptions&lt;/li&gt;
	&lt;li&gt;e2fsprogs add LARGEDIR feature to &quot;tests/f_random_corruption&quot;&lt;/li&gt;
	&lt;li&gt;once e2fsprogs is released and available for download, a patch is needed to enable large_dir on new filesystems with mkfs.lustre (probably for 2.3 since I don&apos;t think the maximum directory size is a limit for most users today)&lt;/li&gt;
	&lt;li&gt;updates to the user manual and release notes to describe how to enable the LARGEDIR feature with tune2fs&lt;/li&gt;
	&lt;li&gt;separate the INCOMPAT_LARGEDIR features (&amp;gt;2GB, 3-level htree) patches from the htree-lock patch so that they can be submitted upstream&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="24396" author="hudson" created="Mon, 12 Dec 2011 16:38: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-master/./arch=x86_64,build_type=server,distro=el5,ib_stack=ofa/377/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,server,el5,ofa #377&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-50&quot; title=&quot;pdirops patch for ldiskfs&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-50&quot;&gt;&lt;del&gt;LU-50&lt;/del&gt;&lt;/a&gt; kernel: configurable BH LRU size (Revision 97497da3c6409988c19089aaa1afbbc212868283)&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=97497da3c6409988c19089aaa1afbbc212868283&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;97497da3c6409988c19089aaa1afbbc212868283&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;build/lbuild-rhel6&lt;/li&gt;
	&lt;li&gt;lustre/kernel_patches/kernel_configs/kernel-2.6.32-2.6-rhel6-x86_64.config&lt;/li&gt;
	&lt;li&gt;lustre/kernel_patches/kernel_configs/kernel-2.6.32-2.6-rhel6-i686.config&lt;/li&gt;
	&lt;li&gt;lustre/kernel_patches/series/2.6-rhel6.series&lt;/li&gt;
	&lt;li&gt;lustre/kernel_patches/patches/bh_lru_size_config.patch&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="24397" author="hudson" created="Mon, 12 Dec 2011 16:38: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-master/./arch=i686,build_type=client,distro=el6,ib_stack=inkernel/377/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,client,el6,inkernel #377&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-50&quot; title=&quot;pdirops patch for ldiskfs&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-50&quot;&gt;&lt;del&gt;LU-50&lt;/del&gt;&lt;/a&gt; kernel: configurable BH LRU size (Revision 97497da3c6409988c19089aaa1afbbc212868283)&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=97497da3c6409988c19089aaa1afbbc212868283&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;97497da3c6409988c19089aaa1afbbc212868283&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/kernel_patches/series/2.6-rhel6.series&lt;/li&gt;
	&lt;li&gt;lustre/kernel_patches/patches/bh_lru_size_config.patch&lt;/li&gt;
	&lt;li&gt;lustre/kernel_patches/kernel_configs/kernel-2.6.32-2.6-rhel6-x86_64.config&lt;/li&gt;
	&lt;li&gt;lustre/kernel_patches/kernel_configs/kernel-2.6.32-2.6-rhel6-i686.config&lt;/li&gt;
	&lt;li&gt;build/lbuild-rhel6&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="24398" author="hudson" created="Mon, 12 Dec 2011 16:43: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=client,distro=el5,ib_stack=inkernel/377/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,el5,inkernel #377&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-50&quot; title=&quot;pdirops patch for ldiskfs&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-50&quot;&gt;&lt;del&gt;LU-50&lt;/del&gt;&lt;/a&gt; kernel: configurable BH LRU size (Revision 97497da3c6409988c19089aaa1afbbc212868283)&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=97497da3c6409988c19089aaa1afbbc212868283&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;97497da3c6409988c19089aaa1afbbc212868283&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/kernel_patches/kernel_configs/kernel-2.6.32-2.6-rhel6-i686.config&lt;/li&gt;
	&lt;li&gt;build/lbuild-rhel6&lt;/li&gt;
	&lt;li&gt;lustre/kernel_patches/series/2.6-rhel6.series&lt;/li&gt;
	&lt;li&gt;lustre/kernel_patches/patches/bh_lru_size_config.patch&lt;/li&gt;
	&lt;li&gt;lustre/kernel_patches/kernel_configs/kernel-2.6.32-2.6-rhel6-x86_64.config&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="24399" author="hudson" created="Mon, 12 Dec 2011 16:43:53 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=x86_64,build_type=server,distro=el6,ib_stack=inkernel/377/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,server,el6,inkernel #377&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-50&quot; title=&quot;pdirops patch for ldiskfs&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-50&quot;&gt;&lt;del&gt;LU-50&lt;/del&gt;&lt;/a&gt; kernel: configurable BH LRU size (Revision 97497da3c6409988c19089aaa1afbbc212868283)&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=97497da3c6409988c19089aaa1afbbc212868283&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;97497da3c6409988c19089aaa1afbbc212868283&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;build/lbuild-rhel6&lt;/li&gt;
	&lt;li&gt;lustre/kernel_patches/series/2.6-rhel6.series&lt;/li&gt;
	&lt;li&gt;lustre/kernel_patches/patches/bh_lru_size_config.patch&lt;/li&gt;
	&lt;li&gt;lustre/kernel_patches/kernel_configs/kernel-2.6.32-2.6-rhel6-i686.config&lt;/li&gt;
	&lt;li&gt;lustre/kernel_patches/kernel_configs/kernel-2.6.32-2.6-rhel6-x86_64.config&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="24400" author="hudson" created="Mon, 12 Dec 2011 16:47: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-master/./arch=x86_64,build_type=client,distro=sles11,ib_stack=inkernel/377/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,sles11,inkernel #377&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-50&quot; title=&quot;pdirops patch for ldiskfs&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-50&quot;&gt;&lt;del&gt;LU-50&lt;/del&gt;&lt;/a&gt; kernel: configurable BH LRU size (Revision 97497da3c6409988c19089aaa1afbbc212868283)&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=97497da3c6409988c19089aaa1afbbc212868283&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;97497da3c6409988c19089aaa1afbbc212868283&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/kernel_patches/kernel_configs/kernel-2.6.32-2.6-rhel6-i686.config&lt;/li&gt;
	&lt;li&gt;lustre/kernel_patches/patches/bh_lru_size_config.patch&lt;/li&gt;
	&lt;li&gt;lustre/kernel_patches/kernel_configs/kernel-2.6.32-2.6-rhel6-x86_64.config&lt;/li&gt;
	&lt;li&gt;lustre/kernel_patches/series/2.6-rhel6.series&lt;/li&gt;
	&lt;li&gt;build/lbuild-rhel6&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="24401" author="hudson" created="Mon, 12 Dec 2011 16:48: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-master/./arch=x86_64,build_type=client,distro=el5,ib_stack=ofa/377/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,el5,ofa #377&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-50&quot; title=&quot;pdirops patch for ldiskfs&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-50&quot;&gt;&lt;del&gt;LU-50&lt;/del&gt;&lt;/a&gt; kernel: configurable BH LRU size (Revision 97497da3c6409988c19089aaa1afbbc212868283)&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=97497da3c6409988c19089aaa1afbbc212868283&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;97497da3c6409988c19089aaa1afbbc212868283&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/kernel_patches/kernel_configs/kernel-2.6.32-2.6-rhel6-i686.config&lt;/li&gt;
	&lt;li&gt;build/lbuild-rhel6&lt;/li&gt;
	&lt;li&gt;lustre/kernel_patches/kernel_configs/kernel-2.6.32-2.6-rhel6-x86_64.config&lt;/li&gt;
	&lt;li&gt;lustre/kernel_patches/patches/bh_lru_size_config.patch&lt;/li&gt;
	&lt;li&gt;lustre/kernel_patches/series/2.6-rhel6.series&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="24402" author="hudson" created="Mon, 12 Dec 2011 16:48:38 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=x86_64,build_type=client,distro=el6,ib_stack=inkernel/377/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,el6,inkernel #377&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-50&quot; title=&quot;pdirops patch for ldiskfs&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-50&quot;&gt;&lt;del&gt;LU-50&lt;/del&gt;&lt;/a&gt; kernel: configurable BH LRU size (Revision 97497da3c6409988c19089aaa1afbbc212868283)&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=97497da3c6409988c19089aaa1afbbc212868283&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;97497da3c6409988c19089aaa1afbbc212868283&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/kernel_patches/series/2.6-rhel6.series&lt;/li&gt;
	&lt;li&gt;lustre/kernel_patches/patches/bh_lru_size_config.patch&lt;/li&gt;
	&lt;li&gt;lustre/kernel_patches/kernel_configs/kernel-2.6.32-2.6-rhel6-i686.config&lt;/li&gt;
	&lt;li&gt;build/lbuild-rhel6&lt;/li&gt;
	&lt;li&gt;lustre/kernel_patches/kernel_configs/kernel-2.6.32-2.6-rhel6-x86_64.config&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="24403" author="hudson" created="Mon, 12 Dec 2011 16:50: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-master/./arch=x86_64,build_type=client,distro=ubuntu1004,ib_stack=inkernel/377/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,ubuntu1004,inkernel #377&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-50&quot; title=&quot;pdirops patch for ldiskfs&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-50&quot;&gt;&lt;del&gt;LU-50&lt;/del&gt;&lt;/a&gt; kernel: configurable BH LRU size (Revision 97497da3c6409988c19089aaa1afbbc212868283)&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=97497da3c6409988c19089aaa1afbbc212868283&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;97497da3c6409988c19089aaa1afbbc212868283&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/kernel_patches/patches/bh_lru_size_config.patch&lt;/li&gt;
	&lt;li&gt;lustre/kernel_patches/kernel_configs/kernel-2.6.32-2.6-rhel6-i686.config&lt;/li&gt;
	&lt;li&gt;lustre/kernel_patches/kernel_configs/kernel-2.6.32-2.6-rhel6-x86_64.config&lt;/li&gt;
	&lt;li&gt;build/lbuild-rhel6&lt;/li&gt;
	&lt;li&gt;lustre/kernel_patches/series/2.6-rhel6.series&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="24404" author="hudson" created="Mon, 12 Dec 2011 16:50:29 +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/377/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,server,el5,inkernel #377&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-50&quot; title=&quot;pdirops patch for ldiskfs&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-50&quot;&gt;&lt;del&gt;LU-50&lt;/del&gt;&lt;/a&gt; kernel: configurable BH LRU size (Revision 97497da3c6409988c19089aaa1afbbc212868283)&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=97497da3c6409988c19089aaa1afbbc212868283&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;97497da3c6409988c19089aaa1afbbc212868283&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/kernel_patches/kernel_configs/kernel-2.6.32-2.6-rhel6-i686.config&lt;/li&gt;
	&lt;li&gt;lustre/kernel_patches/patches/bh_lru_size_config.patch&lt;/li&gt;
	&lt;li&gt;lustre/kernel_patches/kernel_configs/kernel-2.6.32-2.6-rhel6-x86_64.config&lt;/li&gt;
	&lt;li&gt;build/lbuild-rhel6&lt;/li&gt;
	&lt;li&gt;lustre/kernel_patches/series/2.6-rhel6.series&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="24406" author="hudson" created="Mon, 12 Dec 2011 16:55:30 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=i686,build_type=server,distro=el6,ib_stack=inkernel/377/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,server,el6,inkernel #377&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-50&quot; title=&quot;pdirops patch for ldiskfs&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-50&quot;&gt;&lt;del&gt;LU-50&lt;/del&gt;&lt;/a&gt; kernel: configurable BH LRU size (Revision 97497da3c6409988c19089aaa1afbbc212868283)&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=97497da3c6409988c19089aaa1afbbc212868283&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;97497da3c6409988c19089aaa1afbbc212868283&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/kernel_patches/series/2.6-rhel6.series&lt;/li&gt;
	&lt;li&gt;lustre/kernel_patches/patches/bh_lru_size_config.patch&lt;/li&gt;
	&lt;li&gt;lustre/kernel_patches/kernel_configs/kernel-2.6.32-2.6-rhel6-x86_64.config&lt;/li&gt;
	&lt;li&gt;lustre/kernel_patches/kernel_configs/kernel-2.6.32-2.6-rhel6-i686.config&lt;/li&gt;
	&lt;li&gt;build/lbuild-rhel6&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="24415" author="hudson" created="Mon, 12 Dec 2011 17:45:20 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=i686,build_type=client,distro=el5,ib_stack=ofa/377/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,client,el5,ofa #377&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-50&quot; title=&quot;pdirops patch for ldiskfs&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-50&quot;&gt;&lt;del&gt;LU-50&lt;/del&gt;&lt;/a&gt; kernel: configurable BH LRU size (Revision 97497da3c6409988c19089aaa1afbbc212868283)&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=97497da3c6409988c19089aaa1afbbc212868283&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;97497da3c6409988c19089aaa1afbbc212868283&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;build/lbuild-rhel6&lt;/li&gt;
	&lt;li&gt;lustre/kernel_patches/kernel_configs/kernel-2.6.32-2.6-rhel6-x86_64.config&lt;/li&gt;
	&lt;li&gt;lustre/kernel_patches/kernel_configs/kernel-2.6.32-2.6-rhel6-i686.config&lt;/li&gt;
	&lt;li&gt;lustre/kernel_patches/series/2.6-rhel6.series&lt;/li&gt;
	&lt;li&gt;lustre/kernel_patches/patches/bh_lru_size_config.patch&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="24417" author="hudson" created="Mon, 12 Dec 2011 18:01:57 +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/377/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,client,el5,inkernel #377&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-50&quot; title=&quot;pdirops patch for ldiskfs&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-50&quot;&gt;&lt;del&gt;LU-50&lt;/del&gt;&lt;/a&gt; kernel: configurable BH LRU size (Revision 97497da3c6409988c19089aaa1afbbc212868283)&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=97497da3c6409988c19089aaa1afbbc212868283&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;97497da3c6409988c19089aaa1afbbc212868283&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/kernel_patches/kernel_configs/kernel-2.6.32-2.6-rhel6-i686.config&lt;/li&gt;
	&lt;li&gt;build/lbuild-rhel6&lt;/li&gt;
	&lt;li&gt;lustre/kernel_patches/kernel_configs/kernel-2.6.32-2.6-rhel6-x86_64.config&lt;/li&gt;
	&lt;li&gt;lustre/kernel_patches/series/2.6-rhel6.series&lt;/li&gt;
	&lt;li&gt;lustre/kernel_patches/patches/bh_lru_size_config.patch&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="24420" author="hudson" created="Mon, 12 Dec 2011 18:15:53 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=i686,build_type=server,distro=el5,ib_stack=inkernel/377/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,server,el5,inkernel #377&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-50&quot; title=&quot;pdirops patch for ldiskfs&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-50&quot;&gt;&lt;del&gt;LU-50&lt;/del&gt;&lt;/a&gt; kernel: configurable BH LRU size (Revision 97497da3c6409988c19089aaa1afbbc212868283)&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=97497da3c6409988c19089aaa1afbbc212868283&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;97497da3c6409988c19089aaa1afbbc212868283&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/kernel_patches/series/2.6-rhel6.series&lt;/li&gt;
	&lt;li&gt;lustre/kernel_patches/patches/bh_lru_size_config.patch&lt;/li&gt;
	&lt;li&gt;lustre/kernel_patches/kernel_configs/kernel-2.6.32-2.6-rhel6-x86_64.config&lt;/li&gt;
	&lt;li&gt;lustre/kernel_patches/kernel_configs/kernel-2.6.32-2.6-rhel6-i686.config&lt;/li&gt;
	&lt;li&gt;build/lbuild-rhel6&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="24425" author="hudson" created="Mon, 12 Dec 2011 18:21:49 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=i686,build_type=server,distro=el5,ib_stack=ofa/377/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,server,el5,ofa #377&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-50&quot; title=&quot;pdirops patch for ldiskfs&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-50&quot;&gt;&lt;del&gt;LU-50&lt;/del&gt;&lt;/a&gt; kernel: configurable BH LRU size (Revision 97497da3c6409988c19089aaa1afbbc212868283)&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=97497da3c6409988c19089aaa1afbbc212868283&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;97497da3c6409988c19089aaa1afbbc212868283&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/kernel_patches/kernel_configs/kernel-2.6.32-2.6-rhel6-i686.config&lt;/li&gt;
	&lt;li&gt;lustre/kernel_patches/series/2.6-rhel6.series&lt;/li&gt;
	&lt;li&gt;build/lbuild-rhel6&lt;/li&gt;
	&lt;li&gt;lustre/kernel_patches/patches/bh_lru_size_config.patch&lt;/li&gt;
	&lt;li&gt;lustre/kernel_patches/kernel_configs/kernel-2.6.32-2.6-rhel6-x86_64.config&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="25068" author="hudson" created="Wed, 21 Dec 2011 10:36: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/red.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=x86_64,build_type=server,distro=el5,ib_stack=ofa/386/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,server,el5,ofa #386&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-50&quot; title=&quot;pdirops patch for ldiskfs&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-50&quot;&gt;&lt;del&gt;LU-50&lt;/del&gt;&lt;/a&gt; ldiskfs: pdirops patch for ldiskfs (Revision 8e858671be59ed53fad2d340cf841b026943cc8a)&lt;/p&gt;

&lt;p&gt;     Result = FAILURE&lt;br/&gt;
Oleg Drokin : &lt;a href=&quot;http://git.whamcloud.com/gitweb?p=fs/lustre-release.git;a=shortlog;h=refs/heads/master&amp;amp;a=commit&amp;amp;h=8e858671be59ed53fad2d340cf841b026943cc8a&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;8e858671be59ed53fad2d340cf841b026943cc8a&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/osd-ldiskfs/osd_internal.h&lt;/li&gt;
	&lt;li&gt;lustre/osd-ldiskfs/osd_lproc.c&lt;/li&gt;
	&lt;li&gt;ldiskfs/ldiskfs/Makefile.in&lt;/li&gt;
	&lt;li&gt;ldiskfs/kernel_patches/patches/ext4_pdirop-rhel6.patch&lt;/li&gt;
	&lt;li&gt;lustre/osd-ldiskfs/osd_handler.c&lt;/li&gt;
	&lt;li&gt;build/autoconf/lustre-build-ldiskfs.m4&lt;/li&gt;
	&lt;li&gt;ldiskfs/kernel_patches/series/ldiskfs-2.6-rhel6.series&lt;/li&gt;
	&lt;li&gt;ldiskfs/ldiskfs/autoMakefile.am&lt;/li&gt;
	&lt;li&gt;ldiskfs/configure.ac&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="25069" author="hudson" created="Wed, 21 Dec 2011 10:37: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=el5,ib_stack=ofa/386/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,el5,ofa #386&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-50&quot; title=&quot;pdirops patch for ldiskfs&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-50&quot;&gt;&lt;del&gt;LU-50&lt;/del&gt;&lt;/a&gt; ldiskfs: pdirops patch for ldiskfs (Revision 8e858671be59ed53fad2d340cf841b026943cc8a)&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=8e858671be59ed53fad2d340cf841b026943cc8a&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;8e858671be59ed53fad2d340cf841b026943cc8a&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;ldiskfs/kernel_patches/series/ldiskfs-2.6-rhel6.series&lt;/li&gt;
	&lt;li&gt;lustre/osd-ldiskfs/osd_lproc.c&lt;/li&gt;
	&lt;li&gt;ldiskfs/ldiskfs/Makefile.in&lt;/li&gt;
	&lt;li&gt;lustre/osd-ldiskfs/osd_handler.c&lt;/li&gt;
	&lt;li&gt;build/autoconf/lustre-build-ldiskfs.m4&lt;/li&gt;
	&lt;li&gt;ldiskfs/kernel_patches/patches/ext4_pdirop-rhel6.patch&lt;/li&gt;
	&lt;li&gt;ldiskfs/configure.ac&lt;/li&gt;
	&lt;li&gt;lustre/osd-ldiskfs/osd_internal.h&lt;/li&gt;
	&lt;li&gt;ldiskfs/ldiskfs/autoMakefile.am&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="25070" author="hudson" created="Wed, 21 Dec 2011 10:44: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/386/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,server,el5,inkernel #386&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-50&quot; title=&quot;pdirops patch for ldiskfs&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-50&quot;&gt;&lt;del&gt;LU-50&lt;/del&gt;&lt;/a&gt; ldiskfs: pdirops patch for ldiskfs (Revision 8e858671be59ed53fad2d340cf841b026943cc8a)&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=8e858671be59ed53fad2d340cf841b026943cc8a&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;8e858671be59ed53fad2d340cf841b026943cc8a&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;ldiskfs/kernel_patches/series/ldiskfs-2.6-rhel6.series&lt;/li&gt;
	&lt;li&gt;ldiskfs/configure.ac&lt;/li&gt;
	&lt;li&gt;ldiskfs/kernel_patches/patches/ext4_pdirop-rhel6.patch&lt;/li&gt;
	&lt;li&gt;lustre/osd-ldiskfs/osd_lproc.c&lt;/li&gt;
	&lt;li&gt;lustre/osd-ldiskfs/osd_internal.h&lt;/li&gt;
	&lt;li&gt;lustre/osd-ldiskfs/osd_handler.c&lt;/li&gt;
	&lt;li&gt;ldiskfs/ldiskfs/autoMakefile.am&lt;/li&gt;
	&lt;li&gt;ldiskfs/ldiskfs/Makefile.in&lt;/li&gt;
	&lt;li&gt;build/autoconf/lustre-build-ldiskfs.m4&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="25071" author="hudson" created="Wed, 21 Dec 2011 10:46: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=x86_64,build_type=client,distro=sles11,ib_stack=inkernel/386/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,sles11,inkernel #386&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-50&quot; title=&quot;pdirops patch for ldiskfs&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-50&quot;&gt;&lt;del&gt;LU-50&lt;/del&gt;&lt;/a&gt; ldiskfs: pdirops patch for ldiskfs (Revision 8e858671be59ed53fad2d340cf841b026943cc8a)&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=8e858671be59ed53fad2d340cf841b026943cc8a&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;8e858671be59ed53fad2d340cf841b026943cc8a&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;ldiskfs/kernel_patches/patches/ext4_pdirop-rhel6.patch&lt;/li&gt;
	&lt;li&gt;ldiskfs/configure.ac&lt;/li&gt;
	&lt;li&gt;ldiskfs/ldiskfs/autoMakefile.am&lt;/li&gt;
	&lt;li&gt;ldiskfs/kernel_patches/series/ldiskfs-2.6-rhel6.series&lt;/li&gt;
	&lt;li&gt;lustre/osd-ldiskfs/osd_handler.c&lt;/li&gt;
	&lt;li&gt;lustre/osd-ldiskfs/osd_internal.h&lt;/li&gt;
	&lt;li&gt;build/autoconf/lustre-build-ldiskfs.m4&lt;/li&gt;
	&lt;li&gt;ldiskfs/ldiskfs/Makefile.in&lt;/li&gt;
	&lt;li&gt;lustre/osd-ldiskfs/osd_lproc.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="25072" author="hudson" created="Wed, 21 Dec 2011 10:50: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=ubuntu1004,ib_stack=inkernel/386/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,ubuntu1004,inkernel #386&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-50&quot; title=&quot;pdirops patch for ldiskfs&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-50&quot;&gt;&lt;del&gt;LU-50&lt;/del&gt;&lt;/a&gt; ldiskfs: pdirops patch for ldiskfs (Revision 8e858671be59ed53fad2d340cf841b026943cc8a)&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=8e858671be59ed53fad2d340cf841b026943cc8a&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;8e858671be59ed53fad2d340cf841b026943cc8a&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/osd-ldiskfs/osd_internal.h&lt;/li&gt;
	&lt;li&gt;ldiskfs/ldiskfs/autoMakefile.am&lt;/li&gt;
	&lt;li&gt;build/autoconf/lustre-build-ldiskfs.m4&lt;/li&gt;
	&lt;li&gt;lustre/osd-ldiskfs/osd_handler.c&lt;/li&gt;
	&lt;li&gt;lustre/osd-ldiskfs/osd_lproc.c&lt;/li&gt;
	&lt;li&gt;ldiskfs/ldiskfs/Makefile.in&lt;/li&gt;
	&lt;li&gt;ldiskfs/kernel_patches/series/ldiskfs-2.6-rhel6.series&lt;/li&gt;
	&lt;li&gt;ldiskfs/configure.ac&lt;/li&gt;
	&lt;li&gt;ldiskfs/kernel_patches/patches/ext4_pdirop-rhel6.patch&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="25073" author="hudson" created="Wed, 21 Dec 2011 10: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=el5,ib_stack=inkernel/386/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,el5,inkernel #386&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-50&quot; title=&quot;pdirops patch for ldiskfs&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-50&quot;&gt;&lt;del&gt;LU-50&lt;/del&gt;&lt;/a&gt; ldiskfs: pdirops patch for ldiskfs (Revision 8e858671be59ed53fad2d340cf841b026943cc8a)&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=8e858671be59ed53fad2d340cf841b026943cc8a&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;8e858671be59ed53fad2d340cf841b026943cc8a&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;ldiskfs/kernel_patches/patches/ext4_pdirop-rhel6.patch&lt;/li&gt;
	&lt;li&gt;ldiskfs/configure.ac&lt;/li&gt;
	&lt;li&gt;lustre/osd-ldiskfs/osd_lproc.c&lt;/li&gt;
	&lt;li&gt;lustre/osd-ldiskfs/osd_handler.c&lt;/li&gt;
	&lt;li&gt;ldiskfs/kernel_patches/series/ldiskfs-2.6-rhel6.series&lt;/li&gt;
	&lt;li&gt;build/autoconf/lustre-build-ldiskfs.m4&lt;/li&gt;
	&lt;li&gt;ldiskfs/ldiskfs/autoMakefile.am&lt;/li&gt;
	&lt;li&gt;lustre/osd-ldiskfs/osd_internal.h&lt;/li&gt;
	&lt;li&gt;ldiskfs/ldiskfs/Makefile.in&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="25074" author="hudson" created="Wed, 21 Dec 2011 10:55:49 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=i686,build_type=server,distro=el5,ib_stack=inkernel/386/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,server,el5,inkernel #386&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-50&quot; title=&quot;pdirops patch for ldiskfs&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-50&quot;&gt;&lt;del&gt;LU-50&lt;/del&gt;&lt;/a&gt; ldiskfs: pdirops patch for ldiskfs (Revision 8e858671be59ed53fad2d340cf841b026943cc8a)&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=8e858671be59ed53fad2d340cf841b026943cc8a&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;8e858671be59ed53fad2d340cf841b026943cc8a&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;ldiskfs/configure.ac&lt;/li&gt;
	&lt;li&gt;build/autoconf/lustre-build-ldiskfs.m4&lt;/li&gt;
	&lt;li&gt;ldiskfs/ldiskfs/autoMakefile.am&lt;/li&gt;
	&lt;li&gt;ldiskfs/kernel_patches/series/ldiskfs-2.6-rhel6.series&lt;/li&gt;
	&lt;li&gt;lustre/osd-ldiskfs/osd_lproc.c&lt;/li&gt;
	&lt;li&gt;lustre/osd-ldiskfs/osd_internal.h&lt;/li&gt;
	&lt;li&gt;lustre/osd-ldiskfs/osd_handler.c&lt;/li&gt;
	&lt;li&gt;ldiskfs/ldiskfs/Makefile.in&lt;/li&gt;
	&lt;li&gt;ldiskfs/kernel_patches/patches/ext4_pdirop-rhel6.patch&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="25075" author="hudson" created="Wed, 21 Dec 2011 10: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-master/./arch=i686,build_type=client,distro=el6,ib_stack=inkernel/386/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,client,el6,inkernel #386&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-50&quot; title=&quot;pdirops patch for ldiskfs&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-50&quot;&gt;&lt;del&gt;LU-50&lt;/del&gt;&lt;/a&gt; ldiskfs: pdirops patch for ldiskfs (Revision 8e858671be59ed53fad2d340cf841b026943cc8a)&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=8e858671be59ed53fad2d340cf841b026943cc8a&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;8e858671be59ed53fad2d340cf841b026943cc8a&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;ldiskfs/kernel_patches/patches/ext4_pdirop-rhel6.patch&lt;/li&gt;
	&lt;li&gt;ldiskfs/kernel_patches/series/ldiskfs-2.6-rhel6.series&lt;/li&gt;
	&lt;li&gt;build/autoconf/lustre-build-ldiskfs.m4&lt;/li&gt;
	&lt;li&gt;ldiskfs/ldiskfs/Makefile.in&lt;/li&gt;
	&lt;li&gt;lustre/osd-ldiskfs/osd_internal.h&lt;/li&gt;
	&lt;li&gt;lustre/osd-ldiskfs/osd_lproc.c&lt;/li&gt;
	&lt;li&gt;lustre/osd-ldiskfs/osd_handler.c&lt;/li&gt;
	&lt;li&gt;ldiskfs/configure.ac&lt;/li&gt;
	&lt;li&gt;ldiskfs/ldiskfs/autoMakefile.am&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="25077" author="hudson" created="Wed, 21 Dec 2011 10: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=server,distro=el6,ib_stack=inkernel/386/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,server,el6,inkernel #386&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-50&quot; title=&quot;pdirops patch for ldiskfs&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-50&quot;&gt;&lt;del&gt;LU-50&lt;/del&gt;&lt;/a&gt; ldiskfs: pdirops patch for ldiskfs (Revision 8e858671be59ed53fad2d340cf841b026943cc8a)&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=8e858671be59ed53fad2d340cf841b026943cc8a&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;8e858671be59ed53fad2d340cf841b026943cc8a&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/osd-ldiskfs/osd_internal.h&lt;/li&gt;
	&lt;li&gt;ldiskfs/kernel_patches/series/ldiskfs-2.6-rhel6.series&lt;/li&gt;
	&lt;li&gt;ldiskfs/ldiskfs/autoMakefile.am&lt;/li&gt;
	&lt;li&gt;lustre/osd-ldiskfs/osd_lproc.c&lt;/li&gt;
	&lt;li&gt;lustre/osd-ldiskfs/osd_handler.c&lt;/li&gt;
	&lt;li&gt;ldiskfs/ldiskfs/Makefile.in&lt;/li&gt;
	&lt;li&gt;ldiskfs/kernel_patches/patches/ext4_pdirop-rhel6.patch&lt;/li&gt;
	&lt;li&gt;ldiskfs/configure.ac&lt;/li&gt;
	&lt;li&gt;build/autoconf/lustre-build-ldiskfs.m4&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="25078" author="hudson" created="Wed, 21 Dec 2011 11:00: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/386/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,server,el6,inkernel #386&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-50&quot; title=&quot;pdirops patch for ldiskfs&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-50&quot;&gt;&lt;del&gt;LU-50&lt;/del&gt;&lt;/a&gt; ldiskfs: pdirops patch for ldiskfs (Revision 8e858671be59ed53fad2d340cf841b026943cc8a)&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=8e858671be59ed53fad2d340cf841b026943cc8a&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;8e858671be59ed53fad2d340cf841b026943cc8a&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;ldiskfs/kernel_patches/patches/ext4_pdirop-rhel6.patch&lt;/li&gt;
	&lt;li&gt;lustre/osd-ldiskfs/osd_lproc.c&lt;/li&gt;
	&lt;li&gt;lustre/osd-ldiskfs/osd_internal.h&lt;/li&gt;
	&lt;li&gt;build/autoconf/lustre-build-ldiskfs.m4&lt;/li&gt;
	&lt;li&gt;ldiskfs/ldiskfs/Makefile.in&lt;/li&gt;
	&lt;li&gt;ldiskfs/ldiskfs/autoMakefile.am&lt;/li&gt;
	&lt;li&gt;ldiskfs/configure.ac&lt;/li&gt;
	&lt;li&gt;lustre/osd-ldiskfs/osd_handler.c&lt;/li&gt;
	&lt;li&gt;ldiskfs/kernel_patches/series/ldiskfs-2.6-rhel6.series&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="25080" author="hudson" created="Wed, 21 Dec 2011 11:07:15 +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/386/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,el6,inkernel #386&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-50&quot; title=&quot;pdirops patch for ldiskfs&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-50&quot;&gt;&lt;del&gt;LU-50&lt;/del&gt;&lt;/a&gt; ldiskfs: pdirops patch for ldiskfs (Revision 8e858671be59ed53fad2d340cf841b026943cc8a)&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=8e858671be59ed53fad2d340cf841b026943cc8a&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;8e858671be59ed53fad2d340cf841b026943cc8a&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/osd-ldiskfs/osd_handler.c&lt;/li&gt;
	&lt;li&gt;ldiskfs/ldiskfs/autoMakefile.am&lt;/li&gt;
	&lt;li&gt;ldiskfs/kernel_patches/series/ldiskfs-2.6-rhel6.series&lt;/li&gt;
	&lt;li&gt;build/autoconf/lustre-build-ldiskfs.m4&lt;/li&gt;
	&lt;li&gt;lustre/osd-ldiskfs/osd_internal.h&lt;/li&gt;
	&lt;li&gt;ldiskfs/kernel_patches/patches/ext4_pdirop-rhel6.patch&lt;/li&gt;
	&lt;li&gt;lustre/osd-ldiskfs/osd_lproc.c&lt;/li&gt;
	&lt;li&gt;ldiskfs/configure.ac&lt;/li&gt;
	&lt;li&gt;ldiskfs/ldiskfs/Makefile.in&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="25081" author="hudson" created="Wed, 21 Dec 2011 11:10: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=i686,build_type=server,distro=el5,ib_stack=ofa/386/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,server,el5,ofa #386&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-50&quot; title=&quot;pdirops patch for ldiskfs&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-50&quot;&gt;&lt;del&gt;LU-50&lt;/del&gt;&lt;/a&gt; ldiskfs: pdirops patch for ldiskfs (Revision 8e858671be59ed53fad2d340cf841b026943cc8a)&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=8e858671be59ed53fad2d340cf841b026943cc8a&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;8e858671be59ed53fad2d340cf841b026943cc8a&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;ldiskfs/kernel_patches/patches/ext4_pdirop-rhel6.patch&lt;/li&gt;
	&lt;li&gt;ldiskfs/ldiskfs/autoMakefile.am&lt;/li&gt;
	&lt;li&gt;ldiskfs/configure.ac&lt;/li&gt;
	&lt;li&gt;ldiskfs/ldiskfs/Makefile.in&lt;/li&gt;
	&lt;li&gt;lustre/osd-ldiskfs/osd_lproc.c&lt;/li&gt;
	&lt;li&gt;lustre/osd-ldiskfs/osd_handler.c&lt;/li&gt;
	&lt;li&gt;ldiskfs/kernel_patches/series/ldiskfs-2.6-rhel6.series&lt;/li&gt;
	&lt;li&gt;build/autoconf/lustre-build-ldiskfs.m4&lt;/li&gt;
	&lt;li&gt;lustre/osd-ldiskfs/osd_internal.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="25082" author="hudson" created="Wed, 21 Dec 2011 11:16:57 +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/386/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,client,el5,inkernel #386&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-50&quot; title=&quot;pdirops patch for ldiskfs&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-50&quot;&gt;&lt;del&gt;LU-50&lt;/del&gt;&lt;/a&gt; ldiskfs: pdirops patch for ldiskfs (Revision 8e858671be59ed53fad2d340cf841b026943cc8a)&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=8e858671be59ed53fad2d340cf841b026943cc8a&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;8e858671be59ed53fad2d340cf841b026943cc8a&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;ldiskfs/kernel_patches/patches/ext4_pdirop-rhel6.patch&lt;/li&gt;
	&lt;li&gt;lustre/osd-ldiskfs/osd_handler.c&lt;/li&gt;
	&lt;li&gt;ldiskfs/ldiskfs/autoMakefile.am&lt;/li&gt;
	&lt;li&gt;lustre/osd-ldiskfs/osd_internal.h&lt;/li&gt;
	&lt;li&gt;build/autoconf/lustre-build-ldiskfs.m4&lt;/li&gt;
	&lt;li&gt;ldiskfs/configure.ac&lt;/li&gt;
	&lt;li&gt;ldiskfs/ldiskfs/Makefile.in&lt;/li&gt;
	&lt;li&gt;ldiskfs/kernel_patches/series/ldiskfs-2.6-rhel6.series&lt;/li&gt;
	&lt;li&gt;lustre/osd-ldiskfs/osd_lproc.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="25084" author="hudson" created="Wed, 21 Dec 2011 11:29: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-master/./arch=i686,build_type=client,distro=el5,ib_stack=ofa/386/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,client,el5,ofa #386&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-50&quot; title=&quot;pdirops patch for ldiskfs&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-50&quot;&gt;&lt;del&gt;LU-50&lt;/del&gt;&lt;/a&gt; ldiskfs: pdirops patch for ldiskfs (Revision 8e858671be59ed53fad2d340cf841b026943cc8a)&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=8e858671be59ed53fad2d340cf841b026943cc8a&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;8e858671be59ed53fad2d340cf841b026943cc8a&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;ldiskfs/configure.ac&lt;/li&gt;
	&lt;li&gt;build/autoconf/lustre-build-ldiskfs.m4&lt;/li&gt;
	&lt;li&gt;lustre/osd-ldiskfs/osd_handler.c&lt;/li&gt;
	&lt;li&gt;ldiskfs/kernel_patches/patches/ext4_pdirop-rhel6.patch&lt;/li&gt;
	&lt;li&gt;ldiskfs/kernel_patches/series/ldiskfs-2.6-rhel6.series&lt;/li&gt;
	&lt;li&gt;lustre/osd-ldiskfs/osd_internal.h&lt;/li&gt;
	&lt;li&gt;lustre/osd-ldiskfs/osd_lproc.c&lt;/li&gt;
	&lt;li&gt;ldiskfs/ldiskfs/autoMakefile.am&lt;/li&gt;
	&lt;li&gt;ldiskfs/ldiskfs/Makefile.in&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="26213" author="nrutman" created="Mon, 9 Jan 2012 13:58:41 +0000"  >&lt;p&gt;Fix version should be 2.2, right?&lt;/p&gt;</comment>
                            <comment id="26595" author="adilger" created="Mon, 16 Jan 2012 03:33:37 +0000"  >&lt;p&gt;Liang, did you file the bugs as discussed in my previous comment dated Dec 09/11?  Those issues still need to be addressed before the 2.2 release.&lt;/p&gt;</comment>
                            <comment id="26598" author="liang" created="Mon, 16 Jan 2012 03:38:25 +0000"  >&lt;p&gt;not yet... but I will file bugs for them and cc to you.&lt;/p&gt;</comment>
                            <comment id="27703" author="liang" created="Wed, 1 Feb 2012 07:52:25 +0000"  >&lt;p&gt;First round testing results&lt;/p&gt;</comment>
                            <comment id="27762" author="liang" created="Thu, 2 Feb 2012 08:30:32 +0000"  >&lt;p&gt;mdtest patch for mknod and 0-stripe file creation&lt;/p&gt;</comment>
                            <comment id="27779" author="adilger" created="Thu, 2 Feb 2012 13:47:50 +0000"  >&lt;p&gt;Liang, has this patch been submitted upstream to the mdtest authors?  It should be.&lt;/p&gt;</comment>
                            <comment id="28852" author="liang" created="Wed, 15 Feb 2012 23:19:49 +0000"  >&lt;p&gt;Solution architecture of PDO&lt;/p&gt;</comment>
                            <comment id="28853" author="liang" created="Wed, 15 Feb 2012 23:20:40 +0000"  >&lt;p&gt;Andreas, I would make a few more changes before I send it to the author, thanks&lt;/p&gt;</comment>
                            <comment id="40932" author="simmonsja" created="Wed, 20 Jun 2012 11:02:49 +0000"  >&lt;p&gt;Can this ticket be closed now?&lt;/p&gt;</comment>
                            <comment id="41022" author="liang" created="Fri, 22 Jun 2012 04:33:30 +0000"  >&lt;p&gt;we already have another ticket (&lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1365&quot; title=&quot;Implement ldiskfs LARGEDIR support for e2fsprogs&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1365&quot;&gt;&lt;del&gt;LU-1365&lt;/del&gt;&lt;/a&gt;) to track e2fsprogs changes&lt;/p&gt;</comment>
                    </comments>
                <issuelinks>
                            <issuelinktype id="10011">
                    <name>Related</name>
                                                                <inwardlinks description="is related to">
                                        <issuelink>
            <issuekey id="57570">LU-13054</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="14248">LU-1365</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="12593">LU-896</issuekey>
        </issuelink>
                            </inwardlinks>
                                    </issuelinktype>
                    </issuelinks>
                <attachments>
                            <attachment id="11126" name="OpenSFS_Implementation_Milestone.pdf" size="510538" author="rhenwood" created="Tue, 10 Apr 2012 14:42:06 +0000"/>
                            <attachment id="11125" name="OpenSFS_PDirOps_Demonstration_Milestone.pdf" size="824199" author="rhenwood" created="Tue, 10 Apr 2012 14:35:50 +0000"/>
                            <attachment id="11124" name="OpenSFS_PDirOps_HighLevelDesign.pdf" size="589403" author="rhenwood" created="Tue, 10 Apr 2012 13:05:48 +0000"/>
                            <attachment id="11123" name="OpenSFS_PDirOps_Scope_Statement.pdf" size="5754" author="rhenwood" created="Tue, 10 Apr 2012 13:03:53 +0000"/>
                            <attachment id="10802" name="Opensfs_PDO_performance.pdf" size="656369" author="liang" created="Wed, 1 Feb 2012 07:52:25 +0000"/>
                            <attachment id="10846" name="Parallel Directory Solution Architecture - OpenSFS - Whamcloud Community.pdf" size="296475" author="liang" created="Wed, 15 Feb 2012 23:19:49 +0000"/>
                            <attachment id="10810" name="mdtest_lustre.patch" size="5529" author="liang" created="Thu, 2 Feb 2012 08:30:32 +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|hzv7tb:</customfieldvalue>

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