<!-- 
RSS generated by JIRA (9.4.14#940014-sha1:734e6822bbf0d45eff9af51f82432957f73aa32c) at Sat Feb 10 01:24:07 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-2308] class_process_config() prints confusing warnings, is confusing</title>
                <link>https://jira.whamcloud.com/browse/LU-2308</link>
                <project id="10000" key="LU">Lustre</project>
                    <description>&lt;p&gt;If class_process_config() does not recognize a configuration parameter it warns about &quot;ignoring&quot; an unknown parameter then causes mount to fail.  However, if something is causing mount to fail then it&apos;s not really being ignored.&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;class_process_config()
        &lt;span class=&quot;code-keyword&quot;&gt;case&lt;/span&gt; LCFG_PARAM: {
        	&lt;span class=&quot;code-object&quot;&gt;char&lt;/span&gt; *tmp;
        	&lt;span class=&quot;code-comment&quot;&gt;/* llite has no obd */&lt;/span&gt;
                &lt;span class=&quot;code-keyword&quot;&gt;if&lt;/span&gt; ((class_match_param(lustre_cfg_string(lcfg, 1),
                                       PARAM_LLITE, 0) == 0) &amp;amp;&amp;amp;
                    client_process_config) {
                        err = (*client_process_config)(lcfg);
                        GOTO(out, err);
                } &lt;span class=&quot;code-keyword&quot;&gt;else&lt;/span&gt; &lt;span class=&quot;code-keyword&quot;&gt;if&lt;/span&gt; ((class_match_param(lustre_cfg_string(lcfg, 1),
                                              PARAM_SYS, &amp;amp;tmp) == 0)) {
                        &lt;span class=&quot;code-comment&quot;&gt;/* Global param settings */&lt;/span&gt;
                        err = class_set_global(tmp, lcfg-&amp;gt;lcfg_num, lcfg);
                        /* Note that since LCFG_PARAM is LCFG_REQUIRED, &lt;span class=&quot;code-keyword&quot;&gt;new&lt;/span&gt;                                            \

                           unknown globals would cause config to fail */
                        &lt;span class=&quot;code-keyword&quot;&gt;if&lt;/span&gt; (err)
                                CWARN(&lt;span class=&quot;code-quote&quot;&gt;&quot;Ignoring unknown param %s\n&quot;&lt;/span&gt;, tmp);
                        GOTO(out, 0);
                } &lt;span class=&quot;code-keyword&quot;&gt;else&lt;/span&gt; &lt;span class=&quot;code-keyword&quot;&gt;if&lt;/span&gt; ((class_match_param(lustre_cfg_string(lcfg, 1),
                                              PARAM_QUOTA, &amp;amp;tmp) == 0) &amp;amp;&amp;amp;
                           quota_process_config) {
                        err = (*quota_process_config)(lcfg);
                        GOTO(out, err);
                }
                &lt;span class=&quot;code-comment&quot;&gt;/* Fall through */&lt;/span&gt;
                &lt;span class=&quot;code-keyword&quot;&gt;break&lt;/span&gt;;
        }
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;
&lt;p&gt;I like how the &quot;GOTO(out, 0);&quot; makes me think, well maybe it /is/ ignoring the unknown param.  But it&apos;s not.&lt;/p&gt;</description>
                <environment></environment>
        <key id="16647">LU-2308</key>
            <summary>class_process_config() prints confusing warnings, is confusing</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="3">Duplicate</resolution>
                                        <assignee username="jhammond">John Hammond</assignee>
                                    <reporter username="jhammond">John Hammond</reporter>
                        <labels>
                    </labels>
                <created>Fri, 9 Nov 2012 17:34:22 +0000</created>
                <updated>Fri, 25 Apr 2014 16:17:12 +0000</updated>
                            <resolved>Mon, 28 Oct 2013 13:27:45 +0000</resolved>
                                    <version>Lustre 2.2.0</version>
                    <version>Lustre 2.3.0</version>
                    <version>Lustre 2.4.0</version>
                    <version>Lustre 2.1.3</version>
                                                        <due></due>
                            <votes>0</votes>
                                    <watches>2</watches>
                                                                            <comments>
                            <comment id="47663" author="adilger" created="Sat, 10 Nov 2012 00:12:56 +0000"  >&lt;p&gt;I agree that this is a problem. There are a couple of other bugs related to this problem as well. &lt;/p&gt;

&lt;p&gt;I think it makes sense to ignore unknown configuration parameters. &lt;/p&gt;</comment>
                            <comment id="47754" author="jhammond" created="Tue, 13 Nov 2012 16:54:25 +0000"  >&lt;p&gt;Patch tracking at &lt;a href=&quot;http://review.whamcloud.com/#change,4504&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://review.whamcloud.com/#change,4504&lt;/a&gt;.&lt;/p&gt;</comment>
                            <comment id="70003" author="pjones" created="Mon, 28 Oct 2013 13:27:45 +0000"  >&lt;p&gt;Fix tracked under &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-2309&quot; title=&quot;Uninteroperable conf_params not documented&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-2309&quot;&gt;&lt;del&gt;LU-2309&lt;/del&gt;&lt;/a&gt;&lt;/p&gt;</comment>
                    </comments>
                <issuelinks>
                            <issuelinktype id="10011">
                    <name>Related</name>
                                            <outwardlinks description="is related to ">
                                        <issuelink>
            <issuekey id="16340">LU-2157</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="13520">LU-1203</issuekey>
        </issuelink>
                            </outwardlinks>
                                                        </issuelinktype>
                    </issuelinks>
                <attachments>
                    </attachments>
                <subtasks>
                    </subtasks>
                <customfields>
                                                                                                                                                                                            <customfield id="customfield_10890" key="com.atlassian.jira.plugins.jira-development-integration-plugin:devsummary">
                        <customfieldname>Development</customfieldname>
                        <customfieldvalues>
                            
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                        <customfield id="customfield_10390" key="com.pyxis.greenhopper.jira:gh-lexo-rank">
                        <customfieldname>Rank</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>1|hzvc1z:</customfieldvalue>

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