<!-- 
RSS generated by JIRA (9.4.14#940014-sha1:734e6822bbf0d45eff9af51f82432957f73aa32c) at Sat Feb 10 01:04:29 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-175] mdt_lproc.c:255: error: the frame size of 1040 bytes is larger than 1024 bytes</title>
                <link>https://jira.whamcloud.com/browse/LU-175</link>
                <project id="10000" key="LU">Lustre</project>
                    <description>&lt;p&gt;&lt;a href=&quot;http://build.whamcloud.com/job/lustre-reviews/build_type=server,distro=el6/10/consoleFull:&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://build.whamcloud.com/job/lustre-reviews/build_type=server,distro=el6/10/consoleFull:&lt;/a&gt;&lt;/p&gt;

&lt;div class=&quot;code panel&quot; style=&quot;border-width: 1px;&quot;&gt;&lt;div class=&quot;codeContent panelContent&quot;&gt;
&lt;pre class=&quot;code-java&quot;&gt;/&lt;span class=&quot;code-keyword&quot;&gt;var&lt;/span&gt;/lib/jenkins/workspace/lustre-reviews/build_type/server/distro/el6/BUILD/BUILD/lustre-2.0.59/lustre/mdt/mdt_lproc.c: In function &lt;span class=&quot;code-quote&quot;&gt;&apos;lprocfs_wr_identity_upcall&apos;&lt;/span&gt;:
/&lt;span class=&quot;code-keyword&quot;&gt;var&lt;/span&gt;/lib/jenkins/workspace/lustre-reviews/build_type/server/distro/el6/BUILD/BUILD/lustre-2.0.59/lustre/mdt/mdt_lproc.c:255: error: the frame size of 1040 bytes is larger than 1024 bytes
make[6]: *** [/&lt;span class=&quot;code-keyword&quot;&gt;var&lt;/span&gt;/lib/jenkins/workspace/lustre-reviews/build_type/server/distro/el6/BUILD/BUILD/lustre-2.0.59/lustre/mdt/mdt_lproc.o] Error 1
make[5]: *** [/&lt;span class=&quot;code-keyword&quot;&gt;var&lt;/span&gt;/lib/jenkins/workspace/lustre-reviews/build_type/server/distro/el6/BUILD/BUILD/lustre-2.0.59/lustre/mdt] Error 2
make[4]: *** [/&lt;span class=&quot;code-keyword&quot;&gt;var&lt;/span&gt;/lib/jenkins/workspace/lustre-reviews/build_type/server/distro/el6/BUILD/BUILD/lustre-2.0.59/lustre] Error 2
make[3]: *** [_module_/&lt;span class=&quot;code-keyword&quot;&gt;var&lt;/span&gt;/lib/jenkins/workspace/lustre-reviews/build_type/server/distro/el6/BUILD/BUILD/lustre-2.0.59] Error 2
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;</description>
                <environment>i686 server build</environment>
        <key id="10522">LU-175</key>
            <summary>mdt_lproc.c:255: error: the frame size of 1040 bytes is larger than 1024 bytes</summary>
                <type id="1" iconUrl="https://jira.whamcloud.com/secure/viewavatar?size=xsmall&amp;avatarId=11303&amp;avatarType=issuetype">Bug</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="brian">Brian Murrell</assignee>
                                    <reporter username="brian">Brian Murrell</reporter>
                        <labels>
                    </labels>
                <created>Mon, 28 Mar 2011 19:28:57 +0000</created>
                <updated>Mon, 25 Apr 2011 07:46:30 +0000</updated>
                            <resolved>Mon, 25 Apr 2011 07:46:30 +0000</resolved>
                                    <version>Lustre 2.1.0</version>
                                    <fixVersion>Lustre 2.1.0</fixVersion>
                                        <due></due>
                            <votes>0</votes>
                                    <watches>1</watches>
                                                                            <comments>
                            <comment id="11599" author="johann" created="Wed, 30 Mar 2011 15:42:57 +0000"  >&lt;p&gt;It seems that we allocate too much on the stack:&lt;/p&gt;

&lt;p&gt;static int lprocfs_wr_identity_upcall(struct file *file, const char *buffer,&lt;br/&gt;
                                      unsigned long count, void *data)&lt;br/&gt;
{&lt;br/&gt;
        struct obd_device *obd = data;&lt;br/&gt;
        struct mdt_device *mdt = mdt_dev(obd-&amp;gt;obd_lu_dev);&lt;br/&gt;
        struct upcall_cache *hash = mdt-&amp;gt;mdt_identity_cache;&lt;br/&gt;
        char kernbuf&lt;span class=&quot;error&quot;&gt;&amp;#91;UC_CACHE_UPCALL_MAXPATH&amp;#93;&lt;/span&gt; = &lt;/p&gt;
{ &apos;\0&apos; }
&lt;p&gt;;&lt;br/&gt;
...&lt;/p&gt;

&lt;p&gt;with #define UC_CACHE_UPCALL_MAXPATH   (1024UL)&lt;/p&gt;

&lt;p&gt;One way to address the problem would be to allocate kernbuf with OBD_ALLOC() (as done in lprocfs_wr_nosquash_nids() for instance).&lt;/p&gt;</comment>
                            <comment id="12134" author="hudson" created="Mon, 4 Apr 2011 22:30: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/grey.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-reviews/./build_type=client,platform=el5-x86_64/66/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-reviews &#187; client,el5-x86_64 #66&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-175&quot; title=&quot;mdt_lproc.c:255: error: the frame size of 1040 bytes is larger than 1024 bytes&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-175&quot;&gt;&lt;del&gt;LU-175&lt;/del&gt;&lt;/a&gt; don&apos;t allocate kernbuf on the stack&lt;/p&gt;

&lt;p&gt;Brian J. Murrell : &lt;a href=&quot;http://git.whamcloud.com/gitweb/?p=fs/lustre-release.git&amp;amp;a=commit&amp;amp;h=51b5c124fbc213427a530f51c62dad573396dd0b&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;51b5c124fbc213427a530f51c62dad573396dd0b&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mdt/mdt_lproc.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="12136" author="hudson" created="Mon, 4 Apr 2011 22:30:51 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/grey.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-reviews/./build_type=client,platform=el6-x86_64/66/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-reviews &#187; client,el6-x86_64 #66&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-175&quot; title=&quot;mdt_lproc.c:255: error: the frame size of 1040 bytes is larger than 1024 bytes&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-175&quot;&gt;&lt;del&gt;LU-175&lt;/del&gt;&lt;/a&gt; don&apos;t allocate kernbuf on the stack&lt;/p&gt;

&lt;p&gt;Brian J. Murrell : &lt;a href=&quot;http://git.whamcloud.com/gitweb/?p=fs/lustre-release.git&amp;amp;a=commit&amp;amp;h=51b5c124fbc213427a530f51c62dad573396dd0b&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;51b5c124fbc213427a530f51c62dad573396dd0b&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mdt/mdt_lproc.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="12137" author="hudson" created="Mon, 4 Apr 2011 22:30:56 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/grey.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-reviews/./build_type=client,platform=ubuntu-x86_64/66/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-reviews &#187; client,ubuntu-x86_64 #66&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-175&quot; title=&quot;mdt_lproc.c:255: error: the frame size of 1040 bytes is larger than 1024 bytes&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-175&quot;&gt;&lt;del&gt;LU-175&lt;/del&gt;&lt;/a&gt; don&apos;t allocate kernbuf on the stack&lt;/p&gt;

&lt;p&gt;Brian J. Murrell : &lt;a href=&quot;http://git.whamcloud.com/gitweb/?p=fs/lustre-release.git&amp;amp;a=commit&amp;amp;h=51b5c124fbc213427a530f51c62dad573396dd0b&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;51b5c124fbc213427a530f51c62dad573396dd0b&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mdt/mdt_lproc.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="12138" author="hudson" created="Mon, 4 Apr 2011 22:31: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/grey.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-reviews/./build_type=server,platform=el5-i686/66/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-reviews &#187; server,el5-i686 #66&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-175&quot; title=&quot;mdt_lproc.c:255: error: the frame size of 1040 bytes is larger than 1024 bytes&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-175&quot;&gt;&lt;del&gt;LU-175&lt;/del&gt;&lt;/a&gt; don&apos;t allocate kernbuf on the stack&lt;/p&gt;

&lt;p&gt;Brian J. Murrell : &lt;a href=&quot;http://git.whamcloud.com/gitweb/?p=fs/lustre-release.git&amp;amp;a=commit&amp;amp;h=51b5c124fbc213427a530f51c62dad573396dd0b&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;51b5c124fbc213427a530f51c62dad573396dd0b&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mdt/mdt_lproc.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="12149" author="hudson" created="Tue, 5 Apr 2011 00:53: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/red.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-reviews/./build_type=server,platform=el5-i686/68/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-reviews &#187; server,el5-i686 #68&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-175&quot; title=&quot;mdt_lproc.c:255: error: the frame size of 1040 bytes is larger than 1024 bytes&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-175&quot;&gt;&lt;del&gt;LU-175&lt;/del&gt;&lt;/a&gt; don&apos;t allocate kernbuf on the stack&lt;/p&gt;

&lt;p&gt;Brian J. Murrell : &lt;a href=&quot;http://git.whamcloud.com/gitweb/?p=fs/lustre-release.git&amp;amp;a=commit&amp;amp;h=51b5c124fbc213427a530f51c62dad573396dd0b&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;51b5c124fbc213427a530f51c62dad573396dd0b&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mdt/mdt_lproc.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="12150" author="hudson" created="Tue, 5 Apr 2011 00:55: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-reviews/./build_type=client,platform=el5-x86_64/68/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-reviews &#187; client,el5-x86_64 #68&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-175&quot; title=&quot;mdt_lproc.c:255: error: the frame size of 1040 bytes is larger than 1024 bytes&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-175&quot;&gt;&lt;del&gt;LU-175&lt;/del&gt;&lt;/a&gt; don&apos;t allocate kernbuf on the stack&lt;/p&gt;

&lt;p&gt;Brian J. Murrell : &lt;a href=&quot;http://git.whamcloud.com/gitweb/?p=fs/lustre-release.git&amp;amp;a=commit&amp;amp;h=51b5c124fbc213427a530f51c62dad573396dd0b&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;51b5c124fbc213427a530f51c62dad573396dd0b&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mdt/mdt_lproc.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="12151" author="hudson" created="Tue, 5 Apr 2011 00:56: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/red.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-reviews/./build_type=server,platform=el6-i686/68/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-reviews &#187; server,el6-i686 #68&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-175&quot; title=&quot;mdt_lproc.c:255: error: the frame size of 1040 bytes is larger than 1024 bytes&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-175&quot;&gt;&lt;del&gt;LU-175&lt;/del&gt;&lt;/a&gt; don&apos;t allocate kernbuf on the stack&lt;/p&gt;

&lt;p&gt;Brian J. Murrell : &lt;a href=&quot;http://git.whamcloud.com/gitweb/?p=fs/lustre-release.git&amp;amp;a=commit&amp;amp;h=51b5c124fbc213427a530f51c62dad573396dd0b&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;51b5c124fbc213427a530f51c62dad573396dd0b&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mdt/mdt_lproc.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="12152" author="hudson" created="Tue, 5 Apr 2011 00:58: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-reviews/./build_type=client,platform=el6-x86_64/68/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-reviews &#187; client,el6-x86_64 #68&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-175&quot; title=&quot;mdt_lproc.c:255: error: the frame size of 1040 bytes is larger than 1024 bytes&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-175&quot;&gt;&lt;del&gt;LU-175&lt;/del&gt;&lt;/a&gt; don&apos;t allocate kernbuf on the stack&lt;/p&gt;

&lt;p&gt;Brian J. Murrell : &lt;a href=&quot;http://git.whamcloud.com/gitweb/?p=fs/lustre-release.git&amp;amp;a=commit&amp;amp;h=51b5c124fbc213427a530f51c62dad573396dd0b&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;51b5c124fbc213427a530f51c62dad573396dd0b&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mdt/mdt_lproc.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="12153" author="hudson" created="Tue, 5 Apr 2011 01:01: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/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-reviews/./build_type=client,platform=ubuntu-x86_64/68/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-reviews &#187; client,ubuntu-x86_64 #68&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-175&quot; title=&quot;mdt_lproc.c:255: error: the frame size of 1040 bytes is larger than 1024 bytes&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-175&quot;&gt;&lt;del&gt;LU-175&lt;/del&gt;&lt;/a&gt; don&apos;t allocate kernbuf on the stack&lt;/p&gt;

&lt;p&gt;Brian J. Murrell : &lt;a href=&quot;http://git.whamcloud.com/gitweb/?p=fs/lustre-release.git&amp;amp;a=commit&amp;amp;h=51b5c124fbc213427a530f51c62dad573396dd0b&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;51b5c124fbc213427a530f51c62dad573396dd0b&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mdt/mdt_lproc.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="12154" author="hudson" created="Tue, 5 Apr 2011 01:02: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/red.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-reviews/./build_type=server,platform=el5-x86_64/68/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-reviews &#187; server,el5-x86_64 #68&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-175&quot; title=&quot;mdt_lproc.c:255: error: the frame size of 1040 bytes is larger than 1024 bytes&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-175&quot;&gt;&lt;del&gt;LU-175&lt;/del&gt;&lt;/a&gt; don&apos;t allocate kernbuf on the stack&lt;/p&gt;

&lt;p&gt;Brian J. Murrell : &lt;a href=&quot;http://git.whamcloud.com/gitweb/?p=fs/lustre-release.git&amp;amp;a=commit&amp;amp;h=51b5c124fbc213427a530f51c62dad573396dd0b&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;51b5c124fbc213427a530f51c62dad573396dd0b&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mdt/mdt_lproc.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="12155" author="hudson" created="Tue, 5 Apr 2011 01:08: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-reviews/./build_type=client,platform=el5-i686/68/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-reviews &#187; client,el5-i686 #68&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-175&quot; title=&quot;mdt_lproc.c:255: error: the frame size of 1040 bytes is larger than 1024 bytes&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-175&quot;&gt;&lt;del&gt;LU-175&lt;/del&gt;&lt;/a&gt; don&apos;t allocate kernbuf on the stack&lt;/p&gt;

&lt;p&gt;Brian J. Murrell : &lt;a href=&quot;http://git.whamcloud.com/gitweb/?p=fs/lustre-release.git&amp;amp;a=commit&amp;amp;h=51b5c124fbc213427a530f51c62dad573396dd0b&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;51b5c124fbc213427a530f51c62dad573396dd0b&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mdt/mdt_lproc.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="12156" author="hudson" created="Tue, 5 Apr 2011 01:14: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-reviews/./build_type=client,platform=el6-i686/68/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-reviews &#187; client,el6-i686 #68&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-175&quot; title=&quot;mdt_lproc.c:255: error: the frame size of 1040 bytes is larger than 1024 bytes&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-175&quot;&gt;&lt;del&gt;LU-175&lt;/del&gt;&lt;/a&gt; don&apos;t allocate kernbuf on the stack&lt;/p&gt;

&lt;p&gt;Brian J. Murrell : &lt;a href=&quot;http://git.whamcloud.com/gitweb/?p=fs/lustre-release.git&amp;amp;a=commit&amp;amp;h=51b5c124fbc213427a530f51c62dad573396dd0b&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;51b5c124fbc213427a530f51c62dad573396dd0b&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mdt/mdt_lproc.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="12165" author="hudson" created="Tue, 5 Apr 2011 04:33: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/red.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-reviews/./build_type=server,platform=el6-i686/70/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-reviews &#187; server,el6-i686 #70&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-175&quot; title=&quot;mdt_lproc.c:255: error: the frame size of 1040 bytes is larger than 1024 bytes&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-175&quot;&gt;&lt;del&gt;LU-175&lt;/del&gt;&lt;/a&gt; don&apos;t allocate kernbuf on the stack&lt;/p&gt;

&lt;p&gt;Brian J. Murrell : &lt;a href=&quot;http://git.whamcloud.com/gitweb/?p=fs/lustre-release.git&amp;amp;a=commit&amp;amp;h=1e761724c0971dc1b3e3b3bd4b4cf06e24f1a431&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;1e761724c0971dc1b3e3b3bd4b4cf06e24f1a431&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mdt/mdt_lproc.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="12166" author="hudson" created="Tue, 5 Apr 2011 04:33: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/red.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-reviews/./build_type=client,platform=el6-x86_64/70/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-reviews &#187; client,el6-x86_64 #70&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-175&quot; title=&quot;mdt_lproc.c:255: error: the frame size of 1040 bytes is larger than 1024 bytes&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-175&quot;&gt;&lt;del&gt;LU-175&lt;/del&gt;&lt;/a&gt; don&apos;t allocate kernbuf on the stack&lt;/p&gt;

&lt;p&gt;Brian J. Murrell : &lt;a href=&quot;http://git.whamcloud.com/gitweb/?p=fs/lustre-release.git&amp;amp;a=commit&amp;amp;h=1e761724c0971dc1b3e3b3bd4b4cf06e24f1a431&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;1e761724c0971dc1b3e3b3bd4b4cf06e24f1a431&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mdt/mdt_lproc.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="12167" author="hudson" created="Tue, 5 Apr 2011 04:33: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/red.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-reviews/./build_type=client,platform=ubuntu-x86_64/70/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-reviews &#187; client,ubuntu-x86_64 #70&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-175&quot; title=&quot;mdt_lproc.c:255: error: the frame size of 1040 bytes is larger than 1024 bytes&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-175&quot;&gt;&lt;del&gt;LU-175&lt;/del&gt;&lt;/a&gt; don&apos;t allocate kernbuf on the stack&lt;/p&gt;

&lt;p&gt;Brian J. Murrell : &lt;a href=&quot;http://git.whamcloud.com/gitweb/?p=fs/lustre-release.git&amp;amp;a=commit&amp;amp;h=1e761724c0971dc1b3e3b3bd4b4cf06e24f1a431&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;1e761724c0971dc1b3e3b3bd4b4cf06e24f1a431&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mdt/mdt_lproc.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="12168" author="hudson" created="Tue, 5 Apr 2011 04:33: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/red.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-reviews/./build_type=client,platform=el5-x86_64/70/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-reviews &#187; client,el5-x86_64 #70&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-175&quot; title=&quot;mdt_lproc.c:255: error: the frame size of 1040 bytes is larger than 1024 bytes&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-175&quot;&gt;&lt;del&gt;LU-175&lt;/del&gt;&lt;/a&gt; don&apos;t allocate kernbuf on the stack&lt;/p&gt;

&lt;p&gt;Brian J. Murrell : &lt;a href=&quot;http://git.whamcloud.com/gitweb/?p=fs/lustre-release.git&amp;amp;a=commit&amp;amp;h=1e761724c0971dc1b3e3b3bd4b4cf06e24f1a431&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;1e761724c0971dc1b3e3b3bd4b4cf06e24f1a431&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mdt/mdt_lproc.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="12169" author="hudson" created="Tue, 5 Apr 2011 04:33: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-reviews/./build_type=client,platform=el6-i686/70/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-reviews &#187; client,el6-i686 #70&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-175&quot; title=&quot;mdt_lproc.c:255: error: the frame size of 1040 bytes is larger than 1024 bytes&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-175&quot;&gt;&lt;del&gt;LU-175&lt;/del&gt;&lt;/a&gt; don&apos;t allocate kernbuf on the stack&lt;/p&gt;

&lt;p&gt;Brian J. Murrell : &lt;a href=&quot;http://git.whamcloud.com/gitweb/?p=fs/lustre-release.git&amp;amp;a=commit&amp;amp;h=1e761724c0971dc1b3e3b3bd4b4cf06e24f1a431&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;1e761724c0971dc1b3e3b3bd4b4cf06e24f1a431&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mdt/mdt_lproc.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="12170" author="hudson" created="Tue, 5 Apr 2011 04:34:24 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/red.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-reviews/./build_type=server,platform=el5-x86_64/70/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-reviews &#187; server,el5-x86_64 #70&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-175&quot; title=&quot;mdt_lproc.c:255: error: the frame size of 1040 bytes is larger than 1024 bytes&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-175&quot;&gt;&lt;del&gt;LU-175&lt;/del&gt;&lt;/a&gt; don&apos;t allocate kernbuf on the stack&lt;/p&gt;

&lt;p&gt;Brian J. Murrell : &lt;a href=&quot;http://git.whamcloud.com/gitweb/?p=fs/lustre-release.git&amp;amp;a=commit&amp;amp;h=1e761724c0971dc1b3e3b3bd4b4cf06e24f1a431&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;1e761724c0971dc1b3e3b3bd4b4cf06e24f1a431&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mdt/mdt_lproc.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="12171" author="hudson" created="Tue, 5 Apr 2011 04:34:28 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/red.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-reviews/./build_type=server,platform=el5-i686/70/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-reviews &#187; server,el5-i686 #70&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-175&quot; title=&quot;mdt_lproc.c:255: error: the frame size of 1040 bytes is larger than 1024 bytes&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-175&quot;&gt;&lt;del&gt;LU-175&lt;/del&gt;&lt;/a&gt; don&apos;t allocate kernbuf on the stack&lt;/p&gt;

&lt;p&gt;Brian J. Murrell : &lt;a href=&quot;http://git.whamcloud.com/gitweb/?p=fs/lustre-release.git&amp;amp;a=commit&amp;amp;h=1e761724c0971dc1b3e3b3bd4b4cf06e24f1a431&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;1e761724c0971dc1b3e3b3bd4b4cf06e24f1a431&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mdt/mdt_lproc.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="12172" author="hudson" created="Tue, 5 Apr 2011 04:34: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/red.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-reviews/./build_type=client,platform=el5-i686/70/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-reviews &#187; client,el5-i686 #70&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-175&quot; title=&quot;mdt_lproc.c:255: error: the frame size of 1040 bytes is larger than 1024 bytes&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-175&quot;&gt;&lt;del&gt;LU-175&lt;/del&gt;&lt;/a&gt; don&apos;t allocate kernbuf on the stack&lt;/p&gt;

&lt;p&gt;Brian J. Murrell : &lt;a href=&quot;http://git.whamcloud.com/gitweb/?p=fs/lustre-release.git&amp;amp;a=commit&amp;amp;h=1e761724c0971dc1b3e3b3bd4b4cf06e24f1a431&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;1e761724c0971dc1b3e3b3bd4b4cf06e24f1a431&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mdt/mdt_lproc.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="12173" author="hudson" created="Tue, 5 Apr 2011 04:37: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-reviews/./build_type=server,platform=el6-i686/71/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-reviews &#187; server,el6-i686 #71&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-175&quot; title=&quot;mdt_lproc.c:255: error: the frame size of 1040 bytes is larger than 1024 bytes&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-175&quot;&gt;&lt;del&gt;LU-175&lt;/del&gt;&lt;/a&gt; don&apos;t allocate kernbuf on the stack&lt;/p&gt;

&lt;p&gt;Brian J. Murrell : &lt;a href=&quot;http://git.whamcloud.com/gitweb/?p=fs/lustre-release.git&amp;amp;a=commit&amp;amp;h=1e761724c0971dc1b3e3b3bd4b4cf06e24f1a431&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;1e761724c0971dc1b3e3b3bd4b4cf06e24f1a431&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mdt/mdt_lproc.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="12174" author="hudson" created="Tue, 5 Apr 2011 04:40:12 +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-reviews/./build_type=client,platform=ubuntu-x86_64/71/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-reviews &#187; client,ubuntu-x86_64 #71&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-175&quot; title=&quot;mdt_lproc.c:255: error: the frame size of 1040 bytes is larger than 1024 bytes&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-175&quot;&gt;&lt;del&gt;LU-175&lt;/del&gt;&lt;/a&gt; don&apos;t allocate kernbuf on the stack&lt;/p&gt;

&lt;p&gt;Brian J. Murrell : &lt;a href=&quot;http://git.whamcloud.com/gitweb/?p=fs/lustre-release.git&amp;amp;a=commit&amp;amp;h=1e761724c0971dc1b3e3b3bd4b4cf06e24f1a431&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;1e761724c0971dc1b3e3b3bd4b4cf06e24f1a431&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mdt/mdt_lproc.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="12175" author="hudson" created="Tue, 5 Apr 2011 04:40: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/grey.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-reviews/./build_type=client,platform=el6-x86_64/71/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-reviews &#187; client,el6-x86_64 #71&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-175&quot; title=&quot;mdt_lproc.c:255: error: the frame size of 1040 bytes is larger than 1024 bytes&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-175&quot;&gt;&lt;del&gt;LU-175&lt;/del&gt;&lt;/a&gt; don&apos;t allocate kernbuf on the stack&lt;/p&gt;

&lt;p&gt;Brian J. Murrell : &lt;a href=&quot;http://git.whamcloud.com/gitweb/?p=fs/lustre-release.git&amp;amp;a=commit&amp;amp;h=1e761724c0971dc1b3e3b3bd4b4cf06e24f1a431&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;1e761724c0971dc1b3e3b3bd4b4cf06e24f1a431&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mdt/mdt_lproc.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="12176" author="hudson" created="Tue, 5 Apr 2011 04:40: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/grey.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-reviews/./build_type=client,platform=el6-i686/71/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-reviews &#187; client,el6-i686 #71&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-175&quot; title=&quot;mdt_lproc.c:255: error: the frame size of 1040 bytes is larger than 1024 bytes&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-175&quot;&gt;&lt;del&gt;LU-175&lt;/del&gt;&lt;/a&gt; don&apos;t allocate kernbuf on the stack&lt;/p&gt;

&lt;p&gt;Brian J. Murrell : &lt;a href=&quot;http://git.whamcloud.com/gitweb/?p=fs/lustre-release.git&amp;amp;a=commit&amp;amp;h=1e761724c0971dc1b3e3b3bd4b4cf06e24f1a431&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;1e761724c0971dc1b3e3b3bd4b4cf06e24f1a431&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mdt/mdt_lproc.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="12177" author="hudson" created="Tue, 5 Apr 2011 04:40: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/grey.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-reviews/./build_type=client,platform=el5-x86_64/71/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-reviews &#187; client,el5-x86_64 #71&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-175&quot; title=&quot;mdt_lproc.c:255: error: the frame size of 1040 bytes is larger than 1024 bytes&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-175&quot;&gt;&lt;del&gt;LU-175&lt;/del&gt;&lt;/a&gt; don&apos;t allocate kernbuf on the stack&lt;/p&gt;

&lt;p&gt;Brian J. Murrell : &lt;a href=&quot;http://git.whamcloud.com/gitweb/?p=fs/lustre-release.git&amp;amp;a=commit&amp;amp;h=1e761724c0971dc1b3e3b3bd4b4cf06e24f1a431&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;1e761724c0971dc1b3e3b3bd4b4cf06e24f1a431&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mdt/mdt_lproc.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="12178" author="hudson" created="Tue, 5 Apr 2011 04:40:23 +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-reviews/./build_type=server,platform=el5-i686/71/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-reviews &#187; server,el5-i686 #71&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-175&quot; title=&quot;mdt_lproc.c:255: error: the frame size of 1040 bytes is larger than 1024 bytes&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-175&quot;&gt;&lt;del&gt;LU-175&lt;/del&gt;&lt;/a&gt; don&apos;t allocate kernbuf on the stack&lt;/p&gt;

&lt;p&gt;Brian J. Murrell : &lt;a href=&quot;http://git.whamcloud.com/gitweb/?p=fs/lustre-release.git&amp;amp;a=commit&amp;amp;h=1e761724c0971dc1b3e3b3bd4b4cf06e24f1a431&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;1e761724c0971dc1b3e3b3bd4b4cf06e24f1a431&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mdt/mdt_lproc.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="12179" author="hudson" created="Tue, 5 Apr 2011 04:40:33 +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-reviews/./build_type=server,platform=el5-x86_64/71/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-reviews &#187; server,el5-x86_64 #71&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-175&quot; title=&quot;mdt_lproc.c:255: error: the frame size of 1040 bytes is larger than 1024 bytes&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-175&quot;&gt;&lt;del&gt;LU-175&lt;/del&gt;&lt;/a&gt; don&apos;t allocate kernbuf on the stack&lt;/p&gt;

&lt;p&gt;Brian J. Murrell : &lt;a href=&quot;http://git.whamcloud.com/gitweb/?p=fs/lustre-release.git&amp;amp;a=commit&amp;amp;h=1e761724c0971dc1b3e3b3bd4b4cf06e24f1a431&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;1e761724c0971dc1b3e3b3bd4b4cf06e24f1a431&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mdt/mdt_lproc.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="12180" author="hudson" created="Tue, 5 Apr 2011 04:40:33 +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-reviews/./build_type=client,platform=el5-i686/71/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-reviews &#187; client,el5-i686 #71&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-175&quot; title=&quot;mdt_lproc.c:255: error: the frame size of 1040 bytes is larger than 1024 bytes&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-175&quot;&gt;&lt;del&gt;LU-175&lt;/del&gt;&lt;/a&gt; don&apos;t allocate kernbuf on the stack&lt;/p&gt;

&lt;p&gt;Brian J. Murrell : &lt;a href=&quot;http://git.whamcloud.com/gitweb/?p=fs/lustre-release.git&amp;amp;a=commit&amp;amp;h=1e761724c0971dc1b3e3b3bd4b4cf06e24f1a431&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;1e761724c0971dc1b3e3b3bd4b4cf06e24f1a431&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mdt/mdt_lproc.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="12182" author="hudson" created="Tue, 5 Apr 2011 04:54: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-reviews/./build_type=client,platform=el5-x86_64/72/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-reviews &#187; client,el5-x86_64 #72&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-175&quot; title=&quot;mdt_lproc.c:255: error: the frame size of 1040 bytes is larger than 1024 bytes&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-175&quot;&gt;&lt;del&gt;LU-175&lt;/del&gt;&lt;/a&gt; don&apos;t allocate kernbuf on the stack&lt;/p&gt;

&lt;p&gt;Brian J. Murrell : &lt;a href=&quot;http://git.whamcloud.com/gitweb/?p=fs/lustre-release.git&amp;amp;a=commit&amp;amp;h=1e761724c0971dc1b3e3b3bd4b4cf06e24f1a431&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;1e761724c0971dc1b3e3b3bd4b4cf06e24f1a431&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mdt/mdt_lproc.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="12183" author="hudson" created="Tue, 5 Apr 2011 04:56: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-reviews/./build_type=client,platform=el6-x86_64/72/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-reviews &#187; client,el6-x86_64 #72&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-175&quot; title=&quot;mdt_lproc.c:255: error: the frame size of 1040 bytes is larger than 1024 bytes&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-175&quot;&gt;&lt;del&gt;LU-175&lt;/del&gt;&lt;/a&gt; don&apos;t allocate kernbuf on the stack&lt;/p&gt;

&lt;p&gt;Brian J. Murrell : &lt;a href=&quot;http://git.whamcloud.com/gitweb/?p=fs/lustre-release.git&amp;amp;a=commit&amp;amp;h=1e761724c0971dc1b3e3b3bd4b4cf06e24f1a431&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;1e761724c0971dc1b3e3b3bd4b4cf06e24f1a431&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mdt/mdt_lproc.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="12184" author="hudson" created="Tue, 5 Apr 2011 05:00: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-reviews/./build_type=client,platform=ubuntu-x86_64/72/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-reviews &#187; client,ubuntu-x86_64 #72&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-175&quot; title=&quot;mdt_lproc.c:255: error: the frame size of 1040 bytes is larger than 1024 bytes&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-175&quot;&gt;&lt;del&gt;LU-175&lt;/del&gt;&lt;/a&gt; don&apos;t allocate kernbuf on the stack&lt;/p&gt;

&lt;p&gt;Brian J. Murrell : &lt;a href=&quot;http://git.whamcloud.com/gitweb/?p=fs/lustre-release.git&amp;amp;a=commit&amp;amp;h=1e761724c0971dc1b3e3b3bd4b4cf06e24f1a431&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;1e761724c0971dc1b3e3b3bd4b4cf06e24f1a431&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mdt/mdt_lproc.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="12185" author="hudson" created="Tue, 5 Apr 2011 05:02: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-reviews/./build_type=server,platform=el5-i686/72/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-reviews &#187; server,el5-i686 #72&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-175&quot; title=&quot;mdt_lproc.c:255: error: the frame size of 1040 bytes is larger than 1024 bytes&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-175&quot;&gt;&lt;del&gt;LU-175&lt;/del&gt;&lt;/a&gt; don&apos;t allocate kernbuf on the stack&lt;/p&gt;

&lt;p&gt;Brian J. Murrell : &lt;a href=&quot;http://git.whamcloud.com/gitweb/?p=fs/lustre-release.git&amp;amp;a=commit&amp;amp;h=1e761724c0971dc1b3e3b3bd4b4cf06e24f1a431&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;1e761724c0971dc1b3e3b3bd4b4cf06e24f1a431&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mdt/mdt_lproc.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="12186" author="hudson" created="Tue, 5 Apr 2011 05:06: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-reviews/./build_type=server,platform=el6-i686/72/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-reviews &#187; server,el6-i686 #72&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-175&quot; title=&quot;mdt_lproc.c:255: error: the frame size of 1040 bytes is larger than 1024 bytes&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-175&quot;&gt;&lt;del&gt;LU-175&lt;/del&gt;&lt;/a&gt; don&apos;t allocate kernbuf on the stack&lt;/p&gt;

&lt;p&gt;Brian J. Murrell : &lt;a href=&quot;http://git.whamcloud.com/gitweb/?p=fs/lustre-release.git&amp;amp;a=commit&amp;amp;h=1e761724c0971dc1b3e3b3bd4b4cf06e24f1a431&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;1e761724c0971dc1b3e3b3bd4b4cf06e24f1a431&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mdt/mdt_lproc.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="12187" author="hudson" created="Tue, 5 Apr 2011 05:10:11 +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-reviews/./build_type=server,platform=el5-x86_64/72/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-reviews &#187; server,el5-x86_64 #72&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-175&quot; title=&quot;mdt_lproc.c:255: error: the frame size of 1040 bytes is larger than 1024 bytes&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-175&quot;&gt;&lt;del&gt;LU-175&lt;/del&gt;&lt;/a&gt; don&apos;t allocate kernbuf on the stack&lt;/p&gt;

&lt;p&gt;Brian J. Murrell : &lt;a href=&quot;http://git.whamcloud.com/gitweb/?p=fs/lustre-release.git&amp;amp;a=commit&amp;amp;h=1e761724c0971dc1b3e3b3bd4b4cf06e24f1a431&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;1e761724c0971dc1b3e3b3bd4b4cf06e24f1a431&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mdt/mdt_lproc.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="12188" author="hudson" created="Tue, 5 Apr 2011 05:17:47 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-reviews/./build_type=client,platform=el5-i686/72/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-reviews &#187; client,el5-i686 #72&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-175&quot; title=&quot;mdt_lproc.c:255: error: the frame size of 1040 bytes is larger than 1024 bytes&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-175&quot;&gt;&lt;del&gt;LU-175&lt;/del&gt;&lt;/a&gt; don&apos;t allocate kernbuf on the stack&lt;/p&gt;

&lt;p&gt;Brian J. Murrell : &lt;a href=&quot;http://git.whamcloud.com/gitweb/?p=fs/lustre-release.git&amp;amp;a=commit&amp;amp;h=1e761724c0971dc1b3e3b3bd4b4cf06e24f1a431&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;1e761724c0971dc1b3e3b3bd4b4cf06e24f1a431&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mdt/mdt_lproc.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="12189" author="hudson" created="Tue, 5 Apr 2011 05:23: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-reviews/./build_type=client,platform=el6-i686/72/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-reviews &#187; client,el6-i686 #72&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-175&quot; title=&quot;mdt_lproc.c:255: error: the frame size of 1040 bytes is larger than 1024 bytes&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-175&quot;&gt;&lt;del&gt;LU-175&lt;/del&gt;&lt;/a&gt; don&apos;t allocate kernbuf on the stack&lt;/p&gt;

&lt;p&gt;Brian J. Murrell : &lt;a href=&quot;http://git.whamcloud.com/gitweb/?p=fs/lustre-release.git&amp;amp;a=commit&amp;amp;h=1e761724c0971dc1b3e3b3bd4b4cf06e24f1a431&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;1e761724c0971dc1b3e3b3bd4b4cf06e24f1a431&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mdt/mdt_lproc.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="12272" author="hudson" created="Tue, 5 Apr 2011 14:53: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-reviews/./build_type=client,platform=el5-x86_64/84/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-reviews &#187; client,el5-x86_64 #84&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-175&quot; title=&quot;mdt_lproc.c:255: error: the frame size of 1040 bytes is larger than 1024 bytes&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-175&quot;&gt;&lt;del&gt;LU-175&lt;/del&gt;&lt;/a&gt; don&apos;t allocate kernbuf on the stack&lt;/p&gt;

&lt;p&gt;Brian J. Murrell : &lt;a href=&quot;http://git.whamcloud.com/gitweb/?p=fs/lustre-release.git&amp;amp;a=commit&amp;amp;h=b73ec4b1332f1a03cf322f49dfc10e978480ea70&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;b73ec4b1332f1a03cf322f49dfc10e978480ea70&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mdt/mdt_lproc.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="12273" author="hudson" created="Tue, 5 Apr 2011 14:55: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-reviews/./build_type=client,platform=el6-x86_64/84/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-reviews &#187; client,el6-x86_64 #84&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-175&quot; title=&quot;mdt_lproc.c:255: error: the frame size of 1040 bytes is larger than 1024 bytes&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-175&quot;&gt;&lt;del&gt;LU-175&lt;/del&gt;&lt;/a&gt; don&apos;t allocate kernbuf on the stack&lt;/p&gt;

&lt;p&gt;Brian J. Murrell : &lt;a href=&quot;http://git.whamcloud.com/gitweb/?p=fs/lustre-release.git&amp;amp;a=commit&amp;amp;h=b73ec4b1332f1a03cf322f49dfc10e978480ea70&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;b73ec4b1332f1a03cf322f49dfc10e978480ea70&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mdt/mdt_lproc.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="12274" author="hudson" created="Tue, 5 Apr 2011 14:58: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-reviews/./build_type=client,platform=ubuntu-x86_64/84/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-reviews &#187; client,ubuntu-x86_64 #84&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-175&quot; title=&quot;mdt_lproc.c:255: error: the frame size of 1040 bytes is larger than 1024 bytes&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-175&quot;&gt;&lt;del&gt;LU-175&lt;/del&gt;&lt;/a&gt; don&apos;t allocate kernbuf on the stack&lt;/p&gt;

&lt;p&gt;Brian J. Murrell : &lt;a href=&quot;http://git.whamcloud.com/gitweb/?p=fs/lustre-release.git&amp;amp;a=commit&amp;amp;h=b73ec4b1332f1a03cf322f49dfc10e978480ea70&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;b73ec4b1332f1a03cf322f49dfc10e978480ea70&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mdt/mdt_lproc.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="12275" author="hudson" created="Tue, 5 Apr 2011 14:59: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-reviews/./build_type=client,platform=el6-i686/84/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-reviews &#187; client,el6-i686 #84&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-175&quot; title=&quot;mdt_lproc.c:255: error: the frame size of 1040 bytes is larger than 1024 bytes&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-175&quot;&gt;&lt;del&gt;LU-175&lt;/del&gt;&lt;/a&gt; don&apos;t allocate kernbuf on the stack&lt;/p&gt;

&lt;p&gt;Brian J. Murrell : &lt;a href=&quot;http://git.whamcloud.com/gitweb/?p=fs/lustre-release.git&amp;amp;a=commit&amp;amp;h=b73ec4b1332f1a03cf322f49dfc10e978480ea70&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;b73ec4b1332f1a03cf322f49dfc10e978480ea70&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mdt/mdt_lproc.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="12277" author="hudson" created="Tue, 5 Apr 2011 16:02:56 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-reviews/./build_type=server,platform=el5-i686/84/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-reviews &#187; server,el5-i686 #84&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-175&quot; title=&quot;mdt_lproc.c:255: error: the frame size of 1040 bytes is larger than 1024 bytes&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-175&quot;&gt;&lt;del&gt;LU-175&lt;/del&gt;&lt;/a&gt; don&apos;t allocate kernbuf on the stack&lt;/p&gt;

&lt;p&gt;Brian J. Murrell : &lt;a href=&quot;http://git.whamcloud.com/gitweb/?p=fs/lustre-release.git&amp;amp;a=commit&amp;amp;h=b73ec4b1332f1a03cf322f49dfc10e978480ea70&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;b73ec4b1332f1a03cf322f49dfc10e978480ea70&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mdt/mdt_lproc.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="12278" author="hudson" created="Tue, 5 Apr 2011 16:05: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-reviews/./build_type=server,platform=el5-x86_64/84/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-reviews &#187; server,el5-x86_64 #84&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-175&quot; title=&quot;mdt_lproc.c:255: error: the frame size of 1040 bytes is larger than 1024 bytes&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-175&quot;&gt;&lt;del&gt;LU-175&lt;/del&gt;&lt;/a&gt; don&apos;t allocate kernbuf on the stack&lt;/p&gt;

&lt;p&gt;Brian J. Murrell : &lt;a href=&quot;http://git.whamcloud.com/gitweb/?p=fs/lustre-release.git&amp;amp;a=commit&amp;amp;h=b73ec4b1332f1a03cf322f49dfc10e978480ea70&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;b73ec4b1332f1a03cf322f49dfc10e978480ea70&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mdt/mdt_lproc.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="12279" author="hudson" created="Tue, 5 Apr 2011 16:05: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/grey.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-reviews/./build_type=client,platform=el5-i686/84/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-reviews &#187; client,el5-i686 #84&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-175&quot; title=&quot;mdt_lproc.c:255: error: the frame size of 1040 bytes is larger than 1024 bytes&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-175&quot;&gt;&lt;del&gt;LU-175&lt;/del&gt;&lt;/a&gt; don&apos;t allocate kernbuf on the stack&lt;/p&gt;

&lt;p&gt;Brian J. Murrell : &lt;a href=&quot;http://git.whamcloud.com/gitweb/?p=fs/lustre-release.git&amp;amp;a=commit&amp;amp;h=b73ec4b1332f1a03cf322f49dfc10e978480ea70&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;b73ec4b1332f1a03cf322f49dfc10e978480ea70&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mdt/mdt_lproc.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="12280" author="hudson" created="Tue, 5 Apr 2011 16:05: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/grey.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-reviews/./build_type=server,platform=el6-i686/84/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-reviews &#187; server,el6-i686 #84&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-175&quot; title=&quot;mdt_lproc.c:255: error: the frame size of 1040 bytes is larger than 1024 bytes&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-175&quot;&gt;&lt;del&gt;LU-175&lt;/del&gt;&lt;/a&gt; don&apos;t allocate kernbuf on the stack&lt;/p&gt;

&lt;p&gt;Brian J. Murrell : &lt;a href=&quot;http://git.whamcloud.com/gitweb/?p=fs/lustre-release.git&amp;amp;a=commit&amp;amp;h=b73ec4b1332f1a03cf322f49dfc10e978480ea70&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;b73ec4b1332f1a03cf322f49dfc10e978480ea70&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mdt/mdt_lproc.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="12297" author="hudson" created="Tue, 5 Apr 2011 17:19:56 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-reviews/./build_type=client,platform=el6-x86_64/87/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-reviews &#187; client,el6-x86_64 #87&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-175&quot; title=&quot;mdt_lproc.c:255: error: the frame size of 1040 bytes is larger than 1024 bytes&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-175&quot;&gt;&lt;del&gt;LU-175&lt;/del&gt;&lt;/a&gt; don&apos;t allocate kernbuf on the stack&lt;/p&gt;

&lt;p&gt;Brian J. Murrell : &lt;a href=&quot;http://git.whamcloud.com/gitweb/?p=fs/lustre-release.git&amp;amp;a=commit&amp;amp;h=b73ec4b1332f1a03cf322f49dfc10e978480ea70&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;b73ec4b1332f1a03cf322f49dfc10e978480ea70&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mdt/mdt_lproc.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="12298" author="hudson" created="Tue, 5 Apr 2011 17:19:56 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-reviews/./build_type=client,platform=el5-x86_64/87/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-reviews &#187; client,el5-x86_64 #87&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-175&quot; title=&quot;mdt_lproc.c:255: error: the frame size of 1040 bytes is larger than 1024 bytes&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-175&quot;&gt;&lt;del&gt;LU-175&lt;/del&gt;&lt;/a&gt; don&apos;t allocate kernbuf on the stack&lt;/p&gt;

&lt;p&gt;Brian J. Murrell : &lt;a href=&quot;http://git.whamcloud.com/gitweb/?p=fs/lustre-release.git&amp;amp;a=commit&amp;amp;h=b73ec4b1332f1a03cf322f49dfc10e978480ea70&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;b73ec4b1332f1a03cf322f49dfc10e978480ea70&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mdt/mdt_lproc.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="12299" author="hudson" created="Tue, 5 Apr 2011 17:20: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-reviews/./build_type=client,platform=el5-i686/87/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-reviews &#187; client,el5-i686 #87&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-175&quot; title=&quot;mdt_lproc.c:255: error: the frame size of 1040 bytes is larger than 1024 bytes&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-175&quot;&gt;&lt;del&gt;LU-175&lt;/del&gt;&lt;/a&gt; don&apos;t allocate kernbuf on the stack&lt;/p&gt;

&lt;p&gt;Brian J. Murrell : &lt;a href=&quot;http://git.whamcloud.com/gitweb/?p=fs/lustre-release.git&amp;amp;a=commit&amp;amp;h=b73ec4b1332f1a03cf322f49dfc10e978480ea70&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;b73ec4b1332f1a03cf322f49dfc10e978480ea70&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mdt/mdt_lproc.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="12300" author="hudson" created="Tue, 5 Apr 2011 17:22:40 +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-reviews/./build_type=client,platform=ubuntu-x86_64/87/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-reviews &#187; client,ubuntu-x86_64 #87&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-175&quot; title=&quot;mdt_lproc.c:255: error: the frame size of 1040 bytes is larger than 1024 bytes&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-175&quot;&gt;&lt;del&gt;LU-175&lt;/del&gt;&lt;/a&gt; don&apos;t allocate kernbuf on the stack&lt;/p&gt;

&lt;p&gt;Brian J. Murrell : &lt;a href=&quot;http://git.whamcloud.com/gitweb/?p=fs/lustre-release.git&amp;amp;a=commit&amp;amp;h=b73ec4b1332f1a03cf322f49dfc10e978480ea70&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;b73ec4b1332f1a03cf322f49dfc10e978480ea70&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mdt/mdt_lproc.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="12302" author="hudson" created="Tue, 5 Apr 2011 17:35: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-reviews/./build_type=server,platform=el5-x86_64/87/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-reviews &#187; server,el5-x86_64 #87&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-175&quot; title=&quot;mdt_lproc.c:255: error: the frame size of 1040 bytes is larger than 1024 bytes&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-175&quot;&gt;&lt;del&gt;LU-175&lt;/del&gt;&lt;/a&gt; don&apos;t allocate kernbuf on the stack&lt;/p&gt;

&lt;p&gt;Brian J. Murrell : &lt;a href=&quot;http://git.whamcloud.com/gitweb/?p=fs/lustre-release.git&amp;amp;a=commit&amp;amp;h=b73ec4b1332f1a03cf322f49dfc10e978480ea70&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;b73ec4b1332f1a03cf322f49dfc10e978480ea70&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mdt/mdt_lproc.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="12303" author="hudson" created="Tue, 5 Apr 2011 17:40:26 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://build.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://build.whamcloud.com/job/lustre-reviews/./build_type=server,platform=el5-i686/87/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-reviews &#187; server,el5-i686 #87&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-175&quot; title=&quot;mdt_lproc.c:255: error: the frame size of 1040 bytes is larger than 1024 bytes&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-175&quot;&gt;&lt;del&gt;LU-175&lt;/del&gt;&lt;/a&gt; don&apos;t allocate kernbuf on the stack&lt;/p&gt;

&lt;p&gt;Brian J. Murrell : &lt;a href=&quot;http://git.whamcloud.com/gitweb/?p=fs/lustre-release.git&amp;amp;a=commit&amp;amp;h=b73ec4b1332f1a03cf322f49dfc10e978480ea70&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;b73ec4b1332f1a03cf322f49dfc10e978480ea70&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mdt/mdt_lproc.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="12304" author="hudson" created="Tue, 5 Apr 2011 19:09: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-reviews/./build_type=server,platform=el6-i686/87/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-reviews &#187; server,el6-i686 #87&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-175&quot; title=&quot;mdt_lproc.c:255: error: the frame size of 1040 bytes is larger than 1024 bytes&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-175&quot;&gt;&lt;del&gt;LU-175&lt;/del&gt;&lt;/a&gt; don&apos;t allocate kernbuf on the stack&lt;/p&gt;

&lt;p&gt;Brian J. Murrell : &lt;a href=&quot;http://git.whamcloud.com/gitweb/?p=fs/lustre-release.git&amp;amp;a=commit&amp;amp;h=b73ec4b1332f1a03cf322f49dfc10e978480ea70&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;b73ec4b1332f1a03cf322f49dfc10e978480ea70&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mdt/mdt_lproc.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="12305" author="hudson" created="Tue, 5 Apr 2011 19:24: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/lustre-reviews/./build_type=client,platform=el6-i686/87/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-reviews &#187; client,el6-i686 #87&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-175&quot; title=&quot;mdt_lproc.c:255: error: the frame size of 1040 bytes is larger than 1024 bytes&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-175&quot;&gt;&lt;del&gt;LU-175&lt;/del&gt;&lt;/a&gt; don&apos;t allocate kernbuf on the stack&lt;/p&gt;

&lt;p&gt;Brian J. Murrell : &lt;a href=&quot;http://git.whamcloud.com/gitweb/?p=fs/lustre-release.git&amp;amp;a=commit&amp;amp;h=b73ec4b1332f1a03cf322f49dfc10e978480ea70&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;b73ec4b1332f1a03cf322f49dfc10e978480ea70&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mdt/mdt_lproc.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="12619" author="hudson" created="Thu, 7 Apr 2011 16:49:04 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://newbuild.whamcloud.com/images/16x16/red.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://newbuild.whamcloud.com/job/lustre-reviews/./build_type=server,platform=el6-i686/116/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-reviews &#187; server,el6-i686 #116&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-175&quot; title=&quot;mdt_lproc.c:255: error: the frame size of 1040 bytes is larger than 1024 bytes&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-175&quot;&gt;&lt;del&gt;LU-175&lt;/del&gt;&lt;/a&gt; don&apos;t allocate kernbuf on the stack&lt;/p&gt;

&lt;p&gt;Brian J. Murrell : &lt;a href=&quot;http://git.whamcloud.com/gitweb/?p=fs/lustre-release.git&amp;amp;a=commit&amp;amp;h=1552c1c6902c8b983b8d843ff75f828f0ca91a43&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;1552c1c6902c8b983b8d843ff75f828f0ca91a43&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mdt/mdt_lproc.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="12620" author="hudson" created="Thu, 7 Apr 2011 16:59:45 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://newbuild.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://newbuild.whamcloud.com/job/lustre-reviews/./build_type=client,platform=el5-x86_64/116/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-reviews &#187; client,el5-x86_64 #116&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-175&quot; title=&quot;mdt_lproc.c:255: error: the frame size of 1040 bytes is larger than 1024 bytes&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-175&quot;&gt;&lt;del&gt;LU-175&lt;/del&gt;&lt;/a&gt; don&apos;t allocate kernbuf on the stack&lt;/p&gt;

&lt;p&gt;Brian J. Murrell : &lt;a href=&quot;http://git.whamcloud.com/gitweb/?p=fs/lustre-release.git&amp;amp;a=commit&amp;amp;h=1552c1c6902c8b983b8d843ff75f828f0ca91a43&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;1552c1c6902c8b983b8d843ff75f828f0ca91a43&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mdt/mdt_lproc.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="12621" author="hudson" created="Thu, 7 Apr 2011 17:01:57 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://newbuild.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://newbuild.whamcloud.com/job/lustre-reviews/./build_type=client,platform=el6-x86_64/116/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-reviews &#187; client,el6-x86_64 #116&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-175&quot; title=&quot;mdt_lproc.c:255: error: the frame size of 1040 bytes is larger than 1024 bytes&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-175&quot;&gt;&lt;del&gt;LU-175&lt;/del&gt;&lt;/a&gt; don&apos;t allocate kernbuf on the stack&lt;/p&gt;

&lt;p&gt;Brian J. Murrell : &lt;a href=&quot;http://git.whamcloud.com/gitweb/?p=fs/lustre-release.git&amp;amp;a=commit&amp;amp;h=1552c1c6902c8b983b8d843ff75f828f0ca91a43&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;1552c1c6902c8b983b8d843ff75f828f0ca91a43&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mdt/mdt_lproc.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="12622" author="hudson" created="Thu, 7 Apr 2011 17:05:22 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://newbuild.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://newbuild.whamcloud.com/job/lustre-reviews/./build_type=client,platform=ubuntu-x86_64/116/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-reviews &#187; client,ubuntu-x86_64 #116&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-175&quot; title=&quot;mdt_lproc.c:255: error: the frame size of 1040 bytes is larger than 1024 bytes&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-175&quot;&gt;&lt;del&gt;LU-175&lt;/del&gt;&lt;/a&gt; don&apos;t allocate kernbuf on the stack&lt;/p&gt;

&lt;p&gt;Brian J. Murrell : &lt;a href=&quot;http://git.whamcloud.com/gitweb/?p=fs/lustre-release.git&amp;amp;a=commit&amp;amp;h=1552c1c6902c8b983b8d843ff75f828f0ca91a43&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;1552c1c6902c8b983b8d843ff75f828f0ca91a43&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mdt/mdt_lproc.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="12623" author="hudson" created="Thu, 7 Apr 2011 17:07:19 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://newbuild.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://newbuild.whamcloud.com/job/lustre-reviews/./build_type=server,platform=el5-i686/116/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-reviews &#187; server,el5-i686 #116&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-175&quot; title=&quot;mdt_lproc.c:255: error: the frame size of 1040 bytes is larger than 1024 bytes&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-175&quot;&gt;&lt;del&gt;LU-175&lt;/del&gt;&lt;/a&gt; don&apos;t allocate kernbuf on the stack&lt;/p&gt;

&lt;p&gt;Brian J. Murrell : &lt;a href=&quot;http://git.whamcloud.com/gitweb/?p=fs/lustre-release.git&amp;amp;a=commit&amp;amp;h=1552c1c6902c8b983b8d843ff75f828f0ca91a43&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;1552c1c6902c8b983b8d843ff75f828f0ca91a43&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mdt/mdt_lproc.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="12624" author="hudson" created="Thu, 7 Apr 2011 17:07:54 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://newbuild.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://newbuild.whamcloud.com/job/lustre-reviews/./build_type=client,platform=el6-i686/116/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-reviews &#187; client,el6-i686 #116&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-175&quot; title=&quot;mdt_lproc.c:255: error: the frame size of 1040 bytes is larger than 1024 bytes&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-175&quot;&gt;&lt;del&gt;LU-175&lt;/del&gt;&lt;/a&gt; don&apos;t allocate kernbuf on the stack&lt;/p&gt;

&lt;p&gt;Brian J. Murrell : &lt;a href=&quot;http://git.whamcloud.com/gitweb/?p=fs/lustre-release.git&amp;amp;a=commit&amp;amp;h=1552c1c6902c8b983b8d843ff75f828f0ca91a43&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;1552c1c6902c8b983b8d843ff75f828f0ca91a43&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mdt/mdt_lproc.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="12625" author="hudson" created="Thu, 7 Apr 2011 17:15:11 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://newbuild.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://newbuild.whamcloud.com/job/lustre-reviews/./build_type=server,platform=el5-x86_64/116/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-reviews &#187; server,el5-x86_64 #116&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-175&quot; title=&quot;mdt_lproc.c:255: error: the frame size of 1040 bytes is larger than 1024 bytes&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-175&quot;&gt;&lt;del&gt;LU-175&lt;/del&gt;&lt;/a&gt; don&apos;t allocate kernbuf on the stack&lt;/p&gt;

&lt;p&gt;Brian J. Murrell : &lt;a href=&quot;http://git.whamcloud.com/gitweb/?p=fs/lustre-release.git&amp;amp;a=commit&amp;amp;h=1552c1c6902c8b983b8d843ff75f828f0ca91a43&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;1552c1c6902c8b983b8d843ff75f828f0ca91a43&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mdt/mdt_lproc.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="12626" author="hudson" created="Thu, 7 Apr 2011 17:19:54 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://newbuild.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://newbuild.whamcloud.com/job/lustre-reviews/./build_type=server,platform=el6-x86_64/116/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-reviews &#187; server,el6-x86_64 #116&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-175&quot; title=&quot;mdt_lproc.c:255: error: the frame size of 1040 bytes is larger than 1024 bytes&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-175&quot;&gt;&lt;del&gt;LU-175&lt;/del&gt;&lt;/a&gt; don&apos;t allocate kernbuf on the stack&lt;/p&gt;

&lt;p&gt;Brian J. Murrell : &lt;a href=&quot;http://git.whamcloud.com/gitweb/?p=fs/lustre-release.git&amp;amp;a=commit&amp;amp;h=1552c1c6902c8b983b8d843ff75f828f0ca91a43&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;1552c1c6902c8b983b8d843ff75f828f0ca91a43&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mdt/mdt_lproc.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="12627" author="hudson" created="Thu, 7 Apr 2011 17:22:50 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://newbuild.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://newbuild.whamcloud.com/job/lustre-reviews/./build_type=client,platform=el5-i686/116/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-reviews &#187; client,el5-i686 #116&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-175&quot; title=&quot;mdt_lproc.c:255: error: the frame size of 1040 bytes is larger than 1024 bytes&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-175&quot;&gt;&lt;del&gt;LU-175&lt;/del&gt;&lt;/a&gt; don&apos;t allocate kernbuf on the stack&lt;/p&gt;

&lt;p&gt;Brian J. Murrell : &lt;a href=&quot;http://git.whamcloud.com/gitweb/?p=fs/lustre-release.git&amp;amp;a=commit&amp;amp;h=1552c1c6902c8b983b8d843ff75f828f0ca91a43&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;1552c1c6902c8b983b8d843ff75f828f0ca91a43&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mdt/mdt_lproc.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="13215" author="hudson" created="Fri, 22 Apr 2011 11:17:12 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://newbuild.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://newbuild.whamcloud.com/job/lustre-master/./arch=x86_64,build_type=server,distro=el5,ib_stack=inkernel/41/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,server,el5,inkernel #41&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-175&quot; title=&quot;mdt_lproc.c:255: error: the frame size of 1040 bytes is larger than 1024 bytes&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-175&quot;&gt;&lt;del&gt;LU-175&lt;/del&gt;&lt;/a&gt; don&apos;t allocate kernbuf on the stack&lt;/p&gt;

&lt;p&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=e10c44e8a2a53f2dfb979d3ebc8549a509bdfef1&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;e10c44e8a2a53f2dfb979d3ebc8549a509bdfef1&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mdt/mdt_lproc.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="13216" author="hudson" created="Fri, 22 Apr 2011 11:18:49 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://newbuild.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://newbuild.whamcloud.com/job/lustre-master/./arch=x86_64,build_type=client,distro=ubuntu1004,ib_stack=inkernel/41/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,ubuntu1004,inkernel #41&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-175&quot; title=&quot;mdt_lproc.c:255: error: the frame size of 1040 bytes is larger than 1024 bytes&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-175&quot;&gt;&lt;del&gt;LU-175&lt;/del&gt;&lt;/a&gt; don&apos;t allocate kernbuf on the stack&lt;/p&gt;

&lt;p&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=e10c44e8a2a53f2dfb979d3ebc8549a509bdfef1&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;e10c44e8a2a53f2dfb979d3ebc8549a509bdfef1&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mdt/mdt_lproc.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="13217" author="hudson" created="Fri, 22 Apr 2011 11:19:30 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://newbuild.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://newbuild.whamcloud.com/job/lustre-master/./arch=x86_64,build_type=client,distro=el5,ib_stack=inkernel/41/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,el5,inkernel #41&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-175&quot; title=&quot;mdt_lproc.c:255: error: the frame size of 1040 bytes is larger than 1024 bytes&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-175&quot;&gt;&lt;del&gt;LU-175&lt;/del&gt;&lt;/a&gt; don&apos;t allocate kernbuf on the stack&lt;/p&gt;

&lt;p&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=e10c44e8a2a53f2dfb979d3ebc8549a509bdfef1&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;e10c44e8a2a53f2dfb979d3ebc8549a509bdfef1&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mdt/mdt_lproc.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="13218" author="hudson" created="Fri, 22 Apr 2011 11:19:57 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://newbuild.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://newbuild.whamcloud.com/job/lustre-master/./arch=x86_64,build_type=server,distro=el6,ib_stack=inkernel/41/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,server,el6,inkernel #41&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-175&quot; title=&quot;mdt_lproc.c:255: error: the frame size of 1040 bytes is larger than 1024 bytes&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-175&quot;&gt;&lt;del&gt;LU-175&lt;/del&gt;&lt;/a&gt; don&apos;t allocate kernbuf on the stack&lt;/p&gt;

&lt;p&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=e10c44e8a2a53f2dfb979d3ebc8549a509bdfef1&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;e10c44e8a2a53f2dfb979d3ebc8549a509bdfef1&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mdt/mdt_lproc.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="13219" author="hudson" created="Fri, 22 Apr 2011 11:20:18 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://newbuild.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://newbuild.whamcloud.com/job/lustre-master/./arch=i686,build_type=client,distro=el6,ib_stack=inkernel/41/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,client,el6,inkernel #41&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-175&quot; title=&quot;mdt_lproc.c:255: error: the frame size of 1040 bytes is larger than 1024 bytes&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-175&quot;&gt;&lt;del&gt;LU-175&lt;/del&gt;&lt;/a&gt; don&apos;t allocate kernbuf on the stack&lt;/p&gt;

&lt;p&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=e10c44e8a2a53f2dfb979d3ebc8549a509bdfef1&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;e10c44e8a2a53f2dfb979d3ebc8549a509bdfef1&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mdt/mdt_lproc.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="13220" author="hudson" created="Fri, 22 Apr 2011 11:22:06 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://newbuild.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://newbuild.whamcloud.com/job/lustre-master/./arch=i686,build_type=server,distro=el5,ib_stack=inkernel/41/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,server,el5,inkernel #41&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-175&quot; title=&quot;mdt_lproc.c:255: error: the frame size of 1040 bytes is larger than 1024 bytes&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-175&quot;&gt;&lt;del&gt;LU-175&lt;/del&gt;&lt;/a&gt; don&apos;t allocate kernbuf on the stack&lt;/p&gt;

&lt;p&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=e10c44e8a2a53f2dfb979d3ebc8549a509bdfef1&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;e10c44e8a2a53f2dfb979d3ebc8549a509bdfef1&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mdt/mdt_lproc.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="13221" author="hudson" created="Fri, 22 Apr 2011 11:33:03 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://newbuild.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://newbuild.whamcloud.com/job/lustre-master/./arch=x86_64,build_type=server,distro=el5,ib_stack=ofa/41/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,server,el5,ofa #41&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-175&quot; title=&quot;mdt_lproc.c:255: error: the frame size of 1040 bytes is larger than 1024 bytes&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-175&quot;&gt;&lt;del&gt;LU-175&lt;/del&gt;&lt;/a&gt; don&apos;t allocate kernbuf on the stack&lt;/p&gt;

&lt;p&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=e10c44e8a2a53f2dfb979d3ebc8549a509bdfef1&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;e10c44e8a2a53f2dfb979d3ebc8549a509bdfef1&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mdt/mdt_lproc.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="13222" author="hudson" created="Fri, 22 Apr 2011 11:34:37 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://newbuild.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://newbuild.whamcloud.com/job/lustre-master/./arch=x86_64,build_type=client,distro=el6,ib_stack=inkernel/41/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,el6,inkernel #41&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-175&quot; title=&quot;mdt_lproc.c:255: error: the frame size of 1040 bytes is larger than 1024 bytes&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-175&quot;&gt;&lt;del&gt;LU-175&lt;/del&gt;&lt;/a&gt; don&apos;t allocate kernbuf on the stack&lt;/p&gt;

&lt;p&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=e10c44e8a2a53f2dfb979d3ebc8549a509bdfef1&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;e10c44e8a2a53f2dfb979d3ebc8549a509bdfef1&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mdt/mdt_lproc.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="13223" author="hudson" created="Fri, 22 Apr 2011 11:36:27 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://newbuild.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://newbuild.whamcloud.com/job/lustre-master/./arch=x86_64,build_type=client,distro=ubuntu1004,ib_stack=ofa/41/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,ubuntu1004,ofa #41&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-175&quot; title=&quot;mdt_lproc.c:255: error: the frame size of 1040 bytes is larger than 1024 bytes&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-175&quot;&gt;&lt;del&gt;LU-175&lt;/del&gt;&lt;/a&gt; don&apos;t allocate kernbuf on the stack&lt;/p&gt;

&lt;p&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=e10c44e8a2a53f2dfb979d3ebc8549a509bdfef1&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;e10c44e8a2a53f2dfb979d3ebc8549a509bdfef1&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mdt/mdt_lproc.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="13224" author="hudson" created="Fri, 22 Apr 2011 11:38:11 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://newbuild.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://newbuild.whamcloud.com/job/lustre-master/./arch=i686,build_type=client,distro=el5,ib_stack=ofa/41/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,client,el5,ofa #41&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-175&quot; title=&quot;mdt_lproc.c:255: error: the frame size of 1040 bytes is larger than 1024 bytes&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-175&quot;&gt;&lt;del&gt;LU-175&lt;/del&gt;&lt;/a&gt; don&apos;t allocate kernbuf on the stack&lt;/p&gt;

&lt;p&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=e10c44e8a2a53f2dfb979d3ebc8549a509bdfef1&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;e10c44e8a2a53f2dfb979d3ebc8549a509bdfef1&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mdt/mdt_lproc.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="13225" author="hudson" created="Fri, 22 Apr 2011 11:40:09 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://newbuild.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://newbuild.whamcloud.com/job/lustre-master/./arch=x86_64,build_type=client,distro=el5,ib_stack=ofa/41/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; x86_64,client,el5,ofa #41&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-175&quot; title=&quot;mdt_lproc.c:255: error: the frame size of 1040 bytes is larger than 1024 bytes&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-175&quot;&gt;&lt;del&gt;LU-175&lt;/del&gt;&lt;/a&gt; don&apos;t allocate kernbuf on the stack&lt;/p&gt;

&lt;p&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=e10c44e8a2a53f2dfb979d3ebc8549a509bdfef1&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;e10c44e8a2a53f2dfb979d3ebc8549a509bdfef1&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mdt/mdt_lproc.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="13226" author="hudson" created="Fri, 22 Apr 2011 11:58:34 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://newbuild.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://newbuild.whamcloud.com/job/lustre-master/./arch=i686,build_type=server,distro=el5,ib_stack=ofa/41/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,server,el5,ofa #41&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-175&quot; title=&quot;mdt_lproc.c:255: error: the frame size of 1040 bytes is larger than 1024 bytes&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-175&quot;&gt;&lt;del&gt;LU-175&lt;/del&gt;&lt;/a&gt; don&apos;t allocate kernbuf on the stack&lt;/p&gt;

&lt;p&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=e10c44e8a2a53f2dfb979d3ebc8549a509bdfef1&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;e10c44e8a2a53f2dfb979d3ebc8549a509bdfef1&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mdt/mdt_lproc.c&lt;/li&gt;
&lt;/ul&gt;
</comment>
                            <comment id="13228" author="hudson" created="Fri, 22 Apr 2011 12:14:09 +0000"  >&lt;p&gt;Integrated in &lt;span class=&quot;image-wrap&quot; style=&quot;&quot;&gt;&lt;img src=&quot;http://newbuild.whamcloud.com/images/16x16/blue.png&quot; style=&quot;border: 0px solid black&quot; /&gt;&lt;/span&gt; &lt;a href=&quot;http://newbuild.whamcloud.com/job/lustre-master/./arch=i686,build_type=client,distro=el5,ib_stack=inkernel/41/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;lustre-master &#187; i686,client,el5,inkernel #41&lt;/a&gt;&lt;br/&gt;
     &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-175&quot; title=&quot;mdt_lproc.c:255: error: the frame size of 1040 bytes is larger than 1024 bytes&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-175&quot;&gt;&lt;del&gt;LU-175&lt;/del&gt;&lt;/a&gt; don&apos;t allocate kernbuf on the stack&lt;/p&gt;

&lt;p&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=e10c44e8a2a53f2dfb979d3ebc8549a509bdfef1&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;e10c44e8a2a53f2dfb979d3ebc8549a509bdfef1&lt;/a&gt;&lt;br/&gt;
Files : &lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;lustre/mdt/mdt_lproc.c&lt;/li&gt;
&lt;/ul&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|hzv9fb:</customfieldvalue>

                        </customfieldvalues>
                    </customfield>
                                                                <customfield id="customfield_10090" key="com.pyxis.greenhopper.jira:gh-global-rank">
                        <customfieldname>Rank (Obsolete)</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>5061</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>