<!-- 
RSS generated by JIRA (9.4.14#940014-sha1:734e6822bbf0d45eff9af51f82432957f73aa32c) at Sat Feb 10 01:03:11 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-45] building e2fsprogs should not require lustre to be installed or a built source tree</title>
                <link>https://jira.whamcloud.com/browse/LU-45</link>
                <project id="10000" key="LU">Lustre</project>
                    <description>&lt;p&gt;In order to complete the build of e2fsprogs, the liblustreapi library needs to be accessible.  Currently this is only possible if a built lustre source tree is available on the system building e2fsprogs.  It should be available via an installable lustre-devel package.&lt;/p&gt;

&lt;p&gt;It is also available in the rpm installed in /usr/lib&lt;span class=&quot;error&quot;&gt;&amp;#91;64&amp;#93;&lt;/span&gt; but I&apos;m not convinced that e2fsprogs&apos; configure will actually find that.&lt;/p&gt;</description>
                <environment></environment>
        <key id="10269">LU-45</key>
            <summary>building e2fsprogs should not require lustre to be installed or a built source tree</summary>
                <type id="4" iconUrl="https://jira.whamcloud.com/secure/viewavatar?size=xsmall&amp;avatarId=11310&amp;avatarType=issuetype">Improvement</type>
                                            <priority id="4" iconUrl="https://jira.whamcloud.com/images/icons/priorities/minor.svg">Minor</priority>
                        <status id="5" iconUrl="https://jira.whamcloud.com/images/icons/statuses/resolved.png" description="A resolution has been taken, and it is awaiting verification by reporter. From here issues are either reopened, or are closed.">Resolved</status>
                    <statusCategory id="3" key="done" colorName="success"/>
                                    <resolution id="1">Fixed</resolution>
                                        <assignee username="bruce">Bruce Cassidy</assignee>
                                    <reporter username="brian">Brian Murrell</reporter>
                        <labels>
                    </labels>
                <created>Wed, 19 Jan 2011 10:25:30 +0000</created>
                <updated>Thu, 24 Apr 2014 17:07:06 +0000</updated>
                            <resolved>Thu, 24 Apr 2014 17:07:06 +0000</resolved>
                                                    <fixVersion>Lustre 2.0.0</fixVersion>
                                        <due></due>
                            <votes>0</votes>
                                    <watches>0</watches>
                                                                            <comments>
                            <comment id="10451" author="adilger" created="Thu, 20 Jan 2011 13:01:33 +0000"  >&lt;p&gt;The e2fsprogs build &lt;em&gt;should&lt;/em&gt; be able to get liblustreapi.h and liblustreapi.a from the installed lustre RPM, but it has been a long time since I checked whether this worked.&lt;/p&gt;</comment>
                            <comment id="10454" author="brian" created="Thu, 20 Jan 2011 13:40:01 +0000"  >&lt;p&gt;I have not actually tried a build that way but I&apos;m not convinced.  Looking at the patch we can see the link command line is:&lt;/p&gt;

&lt;p&gt;$(LD) -pthread $(ALL_LDFLAGS) $(LUSTRE_INC) $(LFSCK_OBJS) -o lfsck $(LUSTRE_LIB) -llustreapi $(DEPLIBS)&lt;/p&gt;

&lt;p&gt;and $LUSTRE_INC and $LUSTRE_LIB are defined as:&lt;/p&gt;

&lt;p&gt;LUSTRE_INC=-I @LUSTRE@/lustre/include -Wall&lt;br/&gt;
LUSTRE_LIB=-L @LUSTRE@/lustre/utils&lt;/p&gt;

&lt;p&gt;and LUSTRE is defined in configure as:&lt;/p&gt;


&lt;ol&gt;
	&lt;li&gt;Check whether --with-lustre was given.&lt;br/&gt;
if test &quot;${with_lustre+set}&quot; = set; then :&lt;br/&gt;
  withval=$with_lustre; { $as_echo &quot;$as_me:${as_lineno-$LINENO}: result: Lustre is in $withval&quot; &amp;gt;&amp;amp;5&lt;br/&gt;
$as_echo &quot;Lustre is in $withval&quot; &amp;gt;&amp;amp;6; }&lt;br/&gt;
LUSTRE=&quot;$withval&quot;&lt;br/&gt;
else&lt;br/&gt;
  LUSTRE=&quot;/usr/src/lustre&quot;&lt;br/&gt;
fi&lt;/li&gt;
&lt;/ol&gt;


&lt;p&gt;So it&apos;s possible that a --with-lustre=/usr/include &lt;b&gt;might&lt;/b&gt; work where the liblustreapi.a library is just found in the regular search path.&lt;/p&gt;

&lt;p&gt;it&apos;s ugly at best though.  That macro to find LUSTRE could certainly do some more exhaustive checking for an installed lustre rpm.  But even still, a build machine should not need the lustre RPM installed but should be able to work with a lustre-devel RPM that has the includes and libraries in it.  The macro above would still need to be made better, to search for the locations that the lustre-devel RPM will drop the includes and libraries.&lt;/p&gt;</comment>
                            <comment id="11016" author="adilger" created="Fri, 11 Mar 2011 02:26:17 +0000"  >&lt;p&gt;In change 315 in Gerrit, I&apos;ve attached a patchset for e2fsprogs-1.42 which, among many other things, can build against the installed Lustre RPM files.  In order to do this, run:&lt;/p&gt;

&lt;p&gt;  configure --with-lustre=/usr&lt;/p&gt;

&lt;p&gt;and it will find the include files under @LUSTRE@/include, and the libraries under @LUSTRE@/lib&lt;/p&gt;
{64}
&lt;p&gt;.  It is a bit clunky because it adds both &quot;-L @LUSTRE@/lib64 -L @LUSTRE/lib&quot; to LDFLAGS, but ld should do the right thing.  If there was an easier way to know in the configure.in file which one was correct it could be fixed.&lt;/p&gt;</comment>
                            <comment id="11029" author="hudson" created="Fri, 11 Mar 2011 14:07: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/reviews-e2fsprogs/25/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;reviews-e2fsprogs #25&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-45&quot; title=&quot;building e2fsprogs should not require lustre to be installed or a built source tree&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-45&quot;&gt;&lt;del&gt;LU-45&lt;/del&gt;&lt;/a&gt; update e2fsprogs for pre-1.42 build&lt;/p&gt;

&lt;p&gt;Andreas Dilger : &lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;patches/e2fsprogs-tests-f_extents_ee_len.patch&lt;/li&gt;
	&lt;li&gt;patches/sles/e2fsprogs-SLES10--m-support.patch&lt;/li&gt;
	&lt;li&gt;patches/series&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-tests-f_data_in_dirent.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-tests-f_uninit_disable.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-tests-f_extents_res_blk.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-config-before-cmdline.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-tests-f_ibadness_bad_extents.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-tests-f_jchksum_blast_trans.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-extended_ops.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-version.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-tests-f_large_ea.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-extents.patch&lt;/li&gt;
	&lt;li&gt;patches/libcom_err-unidiff.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-add-io_channel_readahead.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-dblist.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-tests-f_jchksum_remount.patch&lt;/li&gt;
	&lt;li&gt;patches/README&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-tests-f_extents_unsorted.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-large-ea.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-rpm_support.patch&lt;/li&gt;
	&lt;li&gt;patches/sles/11/rpm/e2fsprogs-1.41.4.de.po&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-add-trusted-fid.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-tests-f_extents_ei_block.patch&lt;/li&gt;
	&lt;li&gt;patches/sles/11/system-blkid.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-tests-f_ibadness.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-tests-f_uninit_blk-uninit-set_inode-uninit-not-set.patch&lt;/li&gt;
	&lt;li&gt;patches/sles/11/rpm/libcom_err-compile_et_permissions.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-uninit-fixes.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-misc.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-tests-f_many_subdirs.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-bad-ininode-ea.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-tests-f_jchksum_bblk.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-lustre_ismounted.patch&lt;/li&gt;
	&lt;li&gt;patches/sles/11/rpm/README.SUSE&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-tests-f_extents_shrd_blk.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-mmp.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-tests-f_extents_eh_entries.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-tests-f_uninit_enable.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-expand-extra-isize.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-attr_cleanup.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-tests-f_extents_inrlevel-incons.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-blkid-zfs.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-tests-f_uninit_incorrect_free_inodes_count.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-tests-f_random_corruption.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-new-opt-shrdblks.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-tests-f_uninit_checksum_invalid.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-count_wrong_valid.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-i_size-corruption.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-osx.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-tests-f_extents_ee_start.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-tests-f_bad_ea_value.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-size_high.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-lazy_journal_init.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-ibadness-counter.patch&lt;/li&gt;
	&lt;li&gt;patches/ChangeLog&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-tests-f_extents_eh_depth.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-data_in_dirent.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-tests-f_extents_ei_leaf.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-tests-f_extents_split.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-e2scan.patch&lt;/li&gt;
	&lt;li&gt;patches/sles/libcom_err-no-static-buffer.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-skip-extent-tests.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-tests-f_mmp.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-tunefs-dirty.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-tests-f_uninit_restart_fsck.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-e2fsck_exclusive.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-tests-f_extents_eh_magic.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-tests-f_extents_overlap.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-tests-f_expisize.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-fiemap-lustre.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-tests-s_basic_scan.patch&lt;/li&gt;
	&lt;li&gt;patches/sles/libcom_err-no-init_error_table.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-tests-f_uninit_blks-used_blk-uninit-not-set.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-lfsck.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-tests-f_extents_eh_max.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-bigjournal.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-specdotin.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-tests-f_uninit_ino-ref_beyond_bg-itable-unused.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-tests-f_extents_imbalanced_tree.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-tests-f_extents_bad_blk.patch&lt;/li&gt;
	&lt;li&gt;patches/sles/11/rpm/e2fsprogs-1.41.1-splash_support.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-tests-f_expisize_ea_del.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-tests-f_extents_ee_block.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-tests-f_extents_orphan_blks.patch&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="11030" author="hudson" created="Fri, 11 Mar 2011 14:47: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/red.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/reviews-e2fsprogs/26/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;reviews-e2fsprogs #26&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-45&quot; title=&quot;building e2fsprogs should not require lustre to be installed or a built source tree&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-45&quot;&gt;&lt;del&gt;LU-45&lt;/del&gt;&lt;/a&gt; update e2fsprogs for pre-1.42 build&lt;/p&gt;

&lt;p&gt;Andreas Dilger : &lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;patches/e2fsprogs-tests-f_ibadness_bad_extents.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-tests-f_uninit_checksum_invalid.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-bad-ininode-ea.patch&lt;/li&gt;
	&lt;li&gt;patches/sles/libcom_err-no-static-buffer.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-tests-f_extents_eh_magic.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-tests-f_extents_orphan_blks.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-tests-f_extents_res_blk.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-osx.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-tests-f_extents_unsorted.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-tests-f_extents_ee_len.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-tests-f_uninit_restart_fsck.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-tests-f_extents_eh_entries.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-ibadness-counter.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-version.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-config-before-cmdline.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-tests-f_extents_ei_block.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-tests-f_extents_split.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-fiemap-lustre.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-lfsck.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-extents.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-blkid-zfs.patch&lt;/li&gt;
	&lt;li&gt;patches/series&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-expand-extra-isize.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-tests-f_jchksum_bblk.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-tests-f_extents_ee_start.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-tests-f_uninit_ino-ref_beyond_bg-itable-unused.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-tests-f_large_ea.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-tests-f_extents_inrlevel-incons.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-tests-f_expisize_ea_del.patch&lt;/li&gt;
	&lt;li&gt;patches/README&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-tests-f_extents_imbalanced_tree.patch&lt;/li&gt;
	&lt;li&gt;patches/sles/11/system-blkid.patch&lt;/li&gt;
	&lt;li&gt;patches/sles/11/rpm/e2fsprogs-1.41.1-splash_support.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-e2scan.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-count_wrong_valid.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-tests-f_jchksum_remount.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-large-ea.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-bigjournal.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-tests-f_extents_eh_max.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-uninit-fixes.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-tests-f_uninit_blk-uninit-set_inode-uninit-not-set.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-size_high.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-e2fsck_exclusive.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-rpm_support.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-tests-f_mmp.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-tests-f_extents_overlap.patch&lt;/li&gt;
	&lt;li&gt;patches/sles/11/rpm/e2fsprogs-1.41.4.de.po&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-tests-f_ibadness.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-tests-f_uninit_incorrect_free_inodes_count.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-tests-f_expisize.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-tests-f_extents_ee_block.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-lazy_journal_init.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-extended_ops.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-tests-f_uninit_disable.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-tests-f_random_corruption.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-tests-f_uninit_blks-used_blk-uninit-not-set.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-tests-f_extents_bad_blk.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-tunefs-dirty.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-add-io_channel_readahead.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-attr_cleanup.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-mmp.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-skip-extent-tests.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-tests-f_jchksum_blast_trans.patch&lt;/li&gt;
	&lt;li&gt;patches/sles/e2fsprogs-SLES10--m-support.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-i_size-corruption.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-tests-f_uninit_enable.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-new-opt-shrdblks.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-tests-f_extents_eh_depth.patch&lt;/li&gt;
	&lt;li&gt;patches/sles/libcom_err-no-init_error_table.patch&lt;/li&gt;
	&lt;li&gt;patches/libcom_err-unidiff.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-data_in_dirent.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-dblist.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-tests-f_extents_shrd_blk.patch&lt;/li&gt;
	&lt;li&gt;patches/ChangeLog&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-tests-f_extents_ei_leaf.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-specdotin.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-tests-f_bad_ea_value.patch&lt;/li&gt;
	&lt;li&gt;patches/sles/11/rpm/README.SUSE&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-add-trusted-fid.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-misc.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-tests-f_data_in_dirent.patch&lt;/li&gt;
	&lt;li&gt;patches/sles/11/rpm/libcom_err-compile_et_permissions.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-tests-s_basic_scan.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-lustre_ismounted.patch&lt;/li&gt;
	&lt;li&gt;patches/e2fsprogs-tests-f_many_subdirs.patch&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="11172" author="adilger" created="Wed, 16 Mar 2011 14:19:59 +0000"  >&lt;p&gt;This is addressed by the e2fsprogs-1.42/master-lustre patchset that is in Gerrit right now.&lt;/p&gt;

&lt;p&gt;Bruce should close it when that is committed.&lt;/p&gt;</comment>
                            <comment id="11305" author="bruce" created="Wed, 23 Mar 2011 10:11:15 +0000"  >&lt;p&gt;Test: Set up a cleanToro machine. yum install:&lt;br/&gt;
autoconf&lt;br/&gt;
make&lt;br/&gt;
db4&amp;#42;&lt;br/&gt;
gcc&lt;br/&gt;
get lustre-client rpm from lustre build-200 and rpm -i.&lt;br/&gt;
get lustre-client-modules from lustre build-200 and rpm -i.&lt;br/&gt;
get e2fsprogs-1.41.90.wc1 source code from gerrit.&lt;br/&gt;
Insource directory:&lt;br/&gt;
autoconf&lt;br/&gt;
./configure --with-lustre=/usr&lt;br/&gt;
make&lt;br/&gt;
make check&lt;/p&gt;

&lt;p&gt;Output:&lt;br/&gt;
149 tests succeeded     0 tests failed&lt;/p&gt;</comment>
                            <comment id="11306" author="bruce" created="Wed, 23 Mar 2011 10:11:23 +0000"  >&lt;p&gt;Test: Set up a cleanToro machine. yum install:&lt;br/&gt;
autoconf&lt;br/&gt;
make&lt;br/&gt;
db4&amp;#42;&lt;br/&gt;
gcc&lt;br/&gt;
get lustre-client rpm from lustre build-200 and rpm -i.&lt;br/&gt;
get lustre-client-modules from lustre build-200 and rpm -i.&lt;br/&gt;
get e2fsprogs-1.41.90.wc1 source code from gerrit.&lt;br/&gt;
Insource directory:&lt;br/&gt;
autoconf&lt;br/&gt;
./configure --with-lustre=/usr&lt;br/&gt;
make&lt;br/&gt;
make check&lt;/p&gt;

&lt;p&gt;Output:&lt;br/&gt;
149 tests succeeded     0 tests failed&lt;/p&gt;</comment>
                            <comment id="11307" author="bruce" created="Wed, 23 Mar 2011 10:11:27 +0000"  >&lt;p&gt;Test: Set up a cleanToro machine. yum install:&lt;br/&gt;
autoconf&lt;br/&gt;
make&lt;br/&gt;
db4&amp;#42;&lt;br/&gt;
gcc&lt;br/&gt;
get lustre-client rpm from lustre build-200 and rpm -i.&lt;br/&gt;
get lustre-client-modules from lustre build-200 and rpm -i.&lt;br/&gt;
get e2fsprogs-1.41.90.wc1 source code from gerrit.&lt;br/&gt;
Insource directory:&lt;br/&gt;
autoconf&lt;br/&gt;
./configure --with-lustre=/usr&lt;br/&gt;
make&lt;br/&gt;
make check&lt;/p&gt;

&lt;p&gt;Output:&lt;br/&gt;
149 tests succeeded     0 tests failed&lt;/p&gt;</comment>
                            <comment id="11308" author="bruce" created="Wed, 23 Mar 2011 10:16:39 +0000"  >&lt;p&gt;Andreas checked in code to fix this issue. That code is included in e2fsprogs-1.41.90.wc1. I tested the code for building in a machine that just had lustre client code installed via rpm.  The build succeeded.&lt;/p&gt;</comment>
                    </comments>
                    <attachments>
                    </attachments>
                <subtasks>
                    </subtasks>
                <customfields>
                                                                                                                                                                                            <customfield id="customfield_10890" key="com.atlassian.jira.plugins.jira-development-integration-plugin:devsummary">
                        <customfieldname>Development</customfieldname>
                        <customfieldvalues>
                            
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                        <customfield id="customfield_10390" key="com.pyxis.greenhopper.jira:gh-lexo-rank">
                        <customfieldname>Rank</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>1|hzw1vr:</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_10090" key="com.pyxis.greenhopper.jira:gh-global-rank">
                        <customfieldname>Rank (Obsolete)</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>10386</customfieldvalue>
                        </customfieldvalues>
                    </customfield>
                                                                                            <customfield id="customfield_10060" key="com.atlassian.jira.plugin.system.customfieldtypes:select">
                        <customfieldname>Severity</customfieldname>
                        <customfieldvalues>
                                <customfieldvalue key="10022"><![CDATA[3]]></customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                        </customfields>
    </item>
</channel>
</rss>