<!-- 
RSS generated by JIRA (9.4.14#940014-sha1:734e6822bbf0d45eff9af51f82432957f73aa32c) at Sat Feb 10 01:12:46 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-1025] Lustre crc32c implementation not use final bit inversion</title>
                <link>https://jira.whamcloud.com/browse/LU-1025</link>
                <project id="10000" key="LU">Lustre</project>
                    <description>&lt;p&gt;&lt;a href=&quot;https://jira.whamcloud.com/browse/LU-241&quot; title=&quot;support crc32c with hardware accelerated instruction as one of lustre checksums&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-241&quot;&gt;&lt;del&gt;LU-241&lt;/del&gt;&lt;/a&gt; add crc32c crypto hash algorithm to ost(osc) checksum. But this implementation differ from base crc32c at linux kernel(intel implementation on crc32 instruction and table crc32c implementation) at final bit inversion.&lt;/p&gt;</description>
                <environment></environment>
        <key id="12972">LU-1025</key>
            <summary>Lustre crc32c implementation not use final bit inversion</summary>
                <type id="4" iconUrl="https://jira.whamcloud.com/secure/viewavatar?size=xsmall&amp;avatarId=11310&amp;avatarType=issuetype">Improvement</type>
                                            <priority id="1" iconUrl="https://jira.whamcloud.com/images/icons/priorities/blocker.svg">Blocker</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="adilger">Andreas Dilger</assignee>
                                    <reporter username="aboyko">Alexander Boyko</reporter>
                        <labels>
                    </labels>
                <created>Tue, 24 Jan 2012 03:25:22 +0000</created>
                <updated>Tue, 27 Mar 2012 17:12:53 +0000</updated>
                            <resolved>Wed, 8 Feb 2012 11:34:16 +0000</resolved>
                                    <version>Lustre 2.2.0</version>
                                    <fixVersion>Lustre 2.2.0</fixVersion>
                                        <due></due>
                            <votes>0</votes>
                                    <watches>3</watches>
                                                                            <comments>
                            <comment id="27256" author="adilger" created="Tue, 24 Jan 2012 13:19:28 +0000"  >&lt;p&gt;Alexander,&lt;br/&gt;
thanks for the bug report.  Fortunately, since the CRC32C feature was landed after the 2.1.0 release, there is still time to fix this before 2.2.0 is released.&lt;/p&gt;

&lt;p&gt;Can you please describe the difference in the implementation in more detail.  Are you planning to submit a patch?  &lt;/p&gt;</comment>
                            <comment id="27279" author="aboyko" created="Wed, 25 Jan 2012 02:04:18 +0000"  >&lt;p&gt;Sure, the kernel implementation example is below.&lt;/p&gt;
&lt;div class=&quot;preformatted panel&quot; style=&quot;border-width: 1px;&quot;&gt;&lt;div class=&quot;preformattedContent panelContent&quot;&gt;
&lt;pre&gt;crc = crc32c(~0, part1, len1);
crc = crc32c(crc, part2, len2);
crc = crc32c(crc, part3, len3);
crc = ~crc;
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;

&lt;p&gt;Lustre implementation doesn`t do crc = ~crc. Simple fix is to add fini_cksum(cksum, cksum_type) at obd_cksum.h and call it after cksum calculation loop at osc_request.c and ost_handler.c.&lt;/p&gt;
&lt;div class=&quot;preformatted panel&quot; style=&quot;border-width: 1px;&quot;&gt;&lt;div class=&quot;preformattedContent panelContent&quot;&gt;
&lt;pre&gt;u32 fini_cksum(cksum, cksum_type)
{
   if (cksum_type == OBD_CKSUM_CRC32C)
         return ~cksum;
   return cksum;
}
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;</comment>
                            <comment id="27352" author="pjones" created="Wed, 25 Jan 2012 10:08:44 +0000"  >&lt;p&gt;Alexander&lt;/p&gt;

&lt;p&gt;I appreciate that this is a simple tweak to the existing code, but it would still expedite us reviewing and landing the correction if you could upload it into gerrit.&lt;/p&gt;

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

&lt;p&gt;Peter&lt;/p&gt;</comment>
                            <comment id="27395" author="aboyko" created="Thu, 26 Jan 2012 02:27:56 +0000"  >&lt;p&gt;patch submitted to &lt;a href=&quot;http://review.whamcloud.com/2018&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://review.whamcloud.com/2018&lt;/a&gt;&lt;/p&gt;</comment>
                            <comment id="27401" author="pjones" created="Thu, 26 Jan 2012 06:52:19 +0000"  >&lt;p&gt;Thanks!&lt;/p&gt;</comment>
                            <comment id="27818" author="pjones" created="Thu, 2 Feb 2012 20:48:05 +0000"  >&lt;p&gt;Alex&lt;/p&gt;

&lt;p&gt;Could you please rebase your patch on the tip of master? The landing of the fix for LU1048 should have now addressed the reason behind the autotest failure.&lt;/p&gt;

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

&lt;p&gt;Peter&lt;/p&gt;</comment>
                            <comment id="27870" author="aboyko" created="Fri, 3 Feb 2012 03:16:00 +0000"  >&lt;p&gt;done&lt;/p&gt;</comment>
                            <comment id="27873" author="pjones" created="Fri, 3 Feb 2012 09:07:49 +0000"  >&lt;p&gt;Thanks Alex!&lt;/p&gt;</comment>
                            <comment id="28159" author="pjones" created="Wed, 8 Feb 2012 11:34:16 +0000"  >&lt;p&gt;Landed for 2.2&lt;/p&gt;</comment>
                            <comment id="28160" author="hudson" created="Wed, 8 Feb 2012 11:37:10 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=x86_64,build_type=client,distro=el5,ib_stack=ofa/459/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,el5,ofa #459&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1025&quot; title=&quot;Lustre crc32c implementation not use final bit inversion&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1025&quot;&gt;&lt;del&gt;LU-1025&lt;/del&gt;&lt;/a&gt; checksum: add final bit inversion for crc32c (Revision 864516e29129cb209435b4cc3ba513a9f453d383)&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=864516e29129cb209435b4cc3ba513a9f453d383&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;864516e29129cb209435b4cc3ba513a9f453d383&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/ost/ost_handler.c&lt;/li&gt;
	&lt;li&gt;lustre/include/obd_cksum.h&lt;/li&gt;
	&lt;li&gt;lustre/osc/osc_request.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="28162" author="hudson" created="Wed, 8 Feb 2012 11:42:34 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=x86_64,build_type=client,distro=el5,ib_stack=inkernel/459/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,el5,inkernel #459&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1025&quot; title=&quot;Lustre crc32c implementation not use final bit inversion&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1025&quot;&gt;&lt;del&gt;LU-1025&lt;/del&gt;&lt;/a&gt; checksum: add final bit inversion for crc32c (Revision 864516e29129cb209435b4cc3ba513a9f453d383)&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=864516e29129cb209435b4cc3ba513a9f453d383&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;864516e29129cb209435b4cc3ba513a9f453d383&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/include/obd_cksum.h&lt;/li&gt;
	&lt;li&gt;lustre/osc/osc_request.c&lt;/li&gt;
	&lt;li&gt;lustre/ost/ost_handler.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="28163" author="hudson" created="Wed, 8 Feb 2012 11:43: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=client,distro=el6,ib_stack=inkernel/459/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,client,el6,inkernel #459&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1025&quot; title=&quot;Lustre crc32c implementation not use final bit inversion&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1025&quot;&gt;&lt;del&gt;LU-1025&lt;/del&gt;&lt;/a&gt; checksum: add final bit inversion for crc32c (Revision 864516e29129cb209435b4cc3ba513a9f453d383)&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=864516e29129cb209435b4cc3ba513a9f453d383&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;864516e29129cb209435b4cc3ba513a9f453d383&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/ost/ost_handler.c&lt;/li&gt;
	&lt;li&gt;lustre/include/obd_cksum.h&lt;/li&gt;
	&lt;li&gt;lustre/osc/osc_request.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="28164" author="hudson" created="Wed, 8 Feb 2012 11:44: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=x86_64,build_type=server,distro=el6,ib_stack=inkernel/459/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,server,el6,inkernel #459&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1025&quot; title=&quot;Lustre crc32c implementation not use final bit inversion&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1025&quot;&gt;&lt;del&gt;LU-1025&lt;/del&gt;&lt;/a&gt; checksum: add final bit inversion for crc32c (Revision 864516e29129cb209435b4cc3ba513a9f453d383)&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=864516e29129cb209435b4cc3ba513a9f453d383&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;864516e29129cb209435b4cc3ba513a9f453d383&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/ost/ost_handler.c&lt;/li&gt;
	&lt;li&gt;lustre/include/obd_cksum.h&lt;/li&gt;
	&lt;li&gt;lustre/osc/osc_request.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="28166" author="hudson" created="Wed, 8 Feb 2012 11:49:27 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=x86_64,build_type=server,distro=el5,ib_stack=inkernel/459/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,server,el5,inkernel #459&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1025&quot; title=&quot;Lustre crc32c implementation not use final bit inversion&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1025&quot;&gt;&lt;del&gt;LU-1025&lt;/del&gt;&lt;/a&gt; checksum: add final bit inversion for crc32c (Revision 864516e29129cb209435b4cc3ba513a9f453d383)&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=864516e29129cb209435b4cc3ba513a9f453d383&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;864516e29129cb209435b4cc3ba513a9f453d383&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/include/obd_cksum.h&lt;/li&gt;
	&lt;li&gt;lustre/osc/osc_request.c&lt;/li&gt;
	&lt;li&gt;lustre/ost/ost_handler.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="28167" author="hudson" created="Wed, 8 Feb 2012 11:50:18 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=x86_64,build_type=client,distro=el6,ib_stack=inkernel/459/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,el6,inkernel #459&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1025&quot; title=&quot;Lustre crc32c implementation not use final bit inversion&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1025&quot;&gt;&lt;del&gt;LU-1025&lt;/del&gt;&lt;/a&gt; checksum: add final bit inversion for crc32c (Revision 864516e29129cb209435b4cc3ba513a9f453d383)&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=864516e29129cb209435b4cc3ba513a9f453d383&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;864516e29129cb209435b4cc3ba513a9f453d383&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/ost/ost_handler.c&lt;/li&gt;
	&lt;li&gt;lustre/include/obd_cksum.h&lt;/li&gt;
	&lt;li&gt;lustre/osc/osc_request.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="28168" author="hudson" created="Wed, 8 Feb 2012 11:50: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=x86_64,build_type=client,distro=ubuntu1004,ib_stack=inkernel/459/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,ubuntu1004,inkernel #459&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1025&quot; title=&quot;Lustre crc32c implementation not use final bit inversion&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1025&quot;&gt;&lt;del&gt;LU-1025&lt;/del&gt;&lt;/a&gt; checksum: add final bit inversion for crc32c (Revision 864516e29129cb209435b4cc3ba513a9f453d383)&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=864516e29129cb209435b4cc3ba513a9f453d383&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;864516e29129cb209435b4cc3ba513a9f453d383&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/osc/osc_request.c&lt;/li&gt;
	&lt;li&gt;lustre/include/obd_cksum.h&lt;/li&gt;
	&lt;li&gt;lustre/ost/ost_handler.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="28169" author="hudson" created="Wed, 8 Feb 2012 11:55:17 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=x86_64,build_type=server,distro=el5,ib_stack=ofa/459/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,server,el5,ofa #459&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1025&quot; title=&quot;Lustre crc32c implementation not use final bit inversion&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1025&quot;&gt;&lt;del&gt;LU-1025&lt;/del&gt;&lt;/a&gt; checksum: add final bit inversion for crc32c (Revision 864516e29129cb209435b4cc3ba513a9f453d383)&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=864516e29129cb209435b4cc3ba513a9f453d383&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;864516e29129cb209435b4cc3ba513a9f453d383&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/ost/ost_handler.c&lt;/li&gt;
	&lt;li&gt;lustre/include/obd_cksum.h&lt;/li&gt;
	&lt;li&gt;lustre/osc/osc_request.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="28170" author="hudson" created="Wed, 8 Feb 2012 11:58:06 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=i686,build_type=server,distro=el5,ib_stack=inkernel/459/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,server,el5,inkernel #459&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1025&quot; title=&quot;Lustre crc32c implementation not use final bit inversion&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1025&quot;&gt;&lt;del&gt;LU-1025&lt;/del&gt;&lt;/a&gt; checksum: add final bit inversion for crc32c (Revision 864516e29129cb209435b4cc3ba513a9f453d383)&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=864516e29129cb209435b4cc3ba513a9f453d383&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;864516e29129cb209435b4cc3ba513a9f453d383&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/ost/ost_handler.c&lt;/li&gt;
	&lt;li&gt;lustre/osc/osc_request.c&lt;/li&gt;
	&lt;li&gt;lustre/include/obd_cksum.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="28171" author="hudson" created="Wed, 8 Feb 2012 12:01:03 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=i686,build_type=server,distro=el6,ib_stack=inkernel/459/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,server,el6,inkernel #459&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1025&quot; title=&quot;Lustre crc32c implementation not use final bit inversion&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1025&quot;&gt;&lt;del&gt;LU-1025&lt;/del&gt;&lt;/a&gt; checksum: add final bit inversion for crc32c (Revision 864516e29129cb209435b4cc3ba513a9f453d383)&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=864516e29129cb209435b4cc3ba513a9f453d383&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;864516e29129cb209435b4cc3ba513a9f453d383&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/include/obd_cksum.h&lt;/li&gt;
	&lt;li&gt;lustre/ost/ost_handler.c&lt;/li&gt;
	&lt;li&gt;lustre/osc/osc_request.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="28172" author="hudson" created="Wed, 8 Feb 2012 12:03:01 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=i686,build_type=server,distro=el5,ib_stack=ofa/459/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,server,el5,ofa #459&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1025&quot; title=&quot;Lustre crc32c implementation not use final bit inversion&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1025&quot;&gt;&lt;del&gt;LU-1025&lt;/del&gt;&lt;/a&gt; checksum: add final bit inversion for crc32c (Revision 864516e29129cb209435b4cc3ba513a9f453d383)&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=864516e29129cb209435b4cc3ba513a9f453d383&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;864516e29129cb209435b4cc3ba513a9f453d383&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/ost/ost_handler.c&lt;/li&gt;
	&lt;li&gt;lustre/osc/osc_request.c&lt;/li&gt;
	&lt;li&gt;lustre/include/obd_cksum.h&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="28174" author="hudson" created="Wed, 8 Feb 2012 12:09: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=sles11,ib_stack=inkernel/459/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,sles11,inkernel #459&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1025&quot; title=&quot;Lustre crc32c implementation not use final bit inversion&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1025&quot;&gt;&lt;del&gt;LU-1025&lt;/del&gt;&lt;/a&gt; checksum: add final bit inversion for crc32c (Revision 864516e29129cb209435b4cc3ba513a9f453d383)&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=864516e29129cb209435b4cc3ba513a9f453d383&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;864516e29129cb209435b4cc3ba513a9f453d383&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/include/obd_cksum.h&lt;/li&gt;
	&lt;li&gt;lustre/ost/ost_handler.c&lt;/li&gt;
	&lt;li&gt;lustre/osc/osc_request.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="28175" author="hudson" created="Wed, 8 Feb 2012 12:13:48 +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/459/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,client,el5,inkernel #459&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1025&quot; title=&quot;Lustre crc32c implementation not use final bit inversion&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1025&quot;&gt;&lt;del&gt;LU-1025&lt;/del&gt;&lt;/a&gt; checksum: add final bit inversion for crc32c (Revision 864516e29129cb209435b4cc3ba513a9f453d383)&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=864516e29129cb209435b4cc3ba513a9f453d383&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;864516e29129cb209435b4cc3ba513a9f453d383&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/osc/osc_request.c&lt;/li&gt;
	&lt;li&gt;lustre/include/obd_cksum.h&lt;/li&gt;
	&lt;li&gt;lustre/ost/ost_handler.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="28177" author="hudson" created="Wed, 8 Feb 2012 12:21: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/459/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,client,el5,ofa #459&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1025&quot; title=&quot;Lustre crc32c implementation not use final bit inversion&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1025&quot;&gt;&lt;del&gt;LU-1025&lt;/del&gt;&lt;/a&gt; checksum: add final bit inversion for crc32c (Revision 864516e29129cb209435b4cc3ba513a9f453d383)&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=864516e29129cb209435b4cc3ba513a9f453d383&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;864516e29129cb209435b4cc3ba513a9f453d383&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/include/obd_cksum.h&lt;/li&gt;
	&lt;li&gt;lustre/ost/ost_handler.c&lt;/li&gt;
	&lt;li&gt;lustre/osc/osc_request.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="29226" author="hudson" created="Fri, 17 Feb 2012 12:54:42 +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=el6,ib_stack=ofa/480/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,server,el6,ofa #480&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1025&quot; title=&quot;Lustre crc32c implementation not use final bit inversion&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1025&quot;&gt;&lt;del&gt;LU-1025&lt;/del&gt;&lt;/a&gt; checksum: add final bit inversion for crc32c (Revision 864516e29129cb209435b4cc3ba513a9f453d383)&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=864516e29129cb209435b4cc3ba513a9f453d383&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;864516e29129cb209435b4cc3ba513a9f453d383&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/include/obd_cksum.h&lt;/li&gt;
	&lt;li&gt;lustre/osc/osc_request.c&lt;/li&gt;
	&lt;li&gt;lustre/ost/ost_handler.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="29275" author="hudson" created="Fri, 17 Feb 2012 13:12:47 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/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=client,distro=el6,ib_stack=ofa/480/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,el6,ofa #480&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1025&quot; title=&quot;Lustre crc32c implementation not use final bit inversion&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1025&quot;&gt;&lt;del&gt;LU-1025&lt;/del&gt;&lt;/a&gt; checksum: add final bit inversion for crc32c (Revision 864516e29129cb209435b4cc3ba513a9f453d383)&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=864516e29129cb209435b4cc3ba513a9f453d383&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;864516e29129cb209435b4cc3ba513a9f453d383&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/ost/ost_handler.c&lt;/li&gt;
	&lt;li&gt;lustre/include/obd_cksum.h&lt;/li&gt;
	&lt;li&gt;lustre/osc/osc_request.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="29324" author="hudson" created="Fri, 17 Feb 2012 13:38:35 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/grey.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-master/./arch=i686,build_type=client,distro=el6,ib_stack=ofa/480/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,client,el6,ofa #480&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-1025&quot; title=&quot;Lustre crc32c implementation not use final bit inversion&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-1025&quot;&gt;&lt;del&gt;LU-1025&lt;/del&gt;&lt;/a&gt; checksum: add final bit inversion for crc32c (Revision 864516e29129cb209435b4cc3ba513a9f453d383)&lt;/p&gt;

&lt;p&gt;     Result = ABORTED&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=864516e29129cb209435b4cc3ba513a9f453d383&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;864516e29129cb209435b4cc3ba513a9f453d383&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/ost/ost_handler.c&lt;/li&gt;
	&lt;li&gt;lustre/include/obd_cksum.h&lt;/li&gt;
	&lt;li&gt;lustre/osc/osc_request.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                    </comments>
                <issuelinks>
                            <issuelinktype id="10011">
                    <name>Related</name>
                                                                <inwardlinks description="is related to">
                                        <issuelink>
            <issuekey id="10650">LU-241</issuekey>
        </issuelink>
                            </inwardlinks>
                                    </issuelinktype>
                    </issuelinks>
                <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|hzv7hj:</customfieldvalue>

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