<!-- 
RSS generated by JIRA (9.4.14#940014-sha1:734e6822bbf0d45eff9af51f82432957f73aa32c) at Sat Feb 10 02:51:48 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-12349] print error to console when flock() is diabled</title>
                <link>https://jira.whamcloud.com/browse/LU-12349</link>
                <project id="10000" key="LU">Lustre</project>
                    <description>&lt;p&gt;1) Console message like &quot;flock disabled, mount with &apos;-o flock&apos; to enable&quot; instead of just returning -EOPNOTSUPP.&lt;/p&gt;

&lt;p&gt;2) Console message like &quot;Lustre doesn&apos;t support mandatory POSIX file lock&quot; when an application tries to lock file with S_ISGID and without S_IXGRP.&lt;/p&gt;</description>
                <environment></environment>
        <key id="55770">LU-12349</key>
            <summary>print error to console when flock() is diabled</summary>
                <type id="4" iconUrl="https://jira.whamcloud.com/secure/viewavatar?size=xsmall&amp;avatarId=11310&amp;avatarType=issuetype">Improvement</type>
                                            <priority id="4" iconUrl="https://jira.whamcloud.com/images/icons/priorities/minor.svg">Minor</priority>
                        <status id="5" iconUrl="https://jira.whamcloud.com/images/icons/statuses/resolved.png" description="A resolution has been taken, and it is awaiting verification by reporter. From here issues are either reopened, or are closed.">Resolved</status>
                    <statusCategory id="3" key="done" colorName="success"/>
                                    <resolution id="1">Fixed</resolution>
                                        <assignee username="lixi_wc">Li Xi</assignee>
                                    <reporter username="lixi_wc">Li Xi</reporter>
                        <labels>
                    </labels>
                <created>Tue, 28 May 2019 17:11:32 +0000</created>
                <updated>Fri, 28 Jun 2019 17:04:02 +0000</updated>
                            <resolved>Fri, 28 Jun 2019 17:04:02 +0000</resolved>
                                                    <fixVersion>Lustre 2.13.0</fixVersion>
                                        <due></due>
                            <votes>0</votes>
                                    <watches>2</watches>
                                                                            <comments>
                            <comment id="247900" author="gerrit" created="Wed, 29 May 2019 04:15:25 +0000"  >&lt;p&gt;Li Xi (lixi@ddn.com) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/34986&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/34986&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-12349&quot; title=&quot;print error to console when flock() is diabled&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-12349&quot;&gt;&lt;del&gt;LU-12349&lt;/del&gt;&lt;/a&gt; llite: console message for disabled flock call&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 87cbba184880b60654c61c5dbecfee931e9d2452&lt;/p&gt;</comment>
                            <comment id="247901" author="lixi_wc" created="Wed, 29 May 2019 04:17:06 +0000"  >&lt;p&gt;With the patch, error message would be able to printed to console:&lt;/p&gt;

&lt;div class=&quot;preformatted panel&quot; style=&quot;border-width: 1px;&quot;&gt;&lt;div class=&quot;preformattedContent panelContent&quot;&gt;
&lt;pre&gt;[root@server17-el7-vm4 lustre-release.git]# mount | grep global
10.0.1.148@tcp:/global on /mnt type lustre (rw,lazystatfs)
[root@server17-el7-vm4 lustre-release.git]# flock /mnt/first_file -c cat
flock disabled, mount with &apos;-o [local]flock&apos; to enable
flock: /mnt/first_file: Function not implemented
[root@server17-el7-vm4 lustre-release.git]# flock /mnt/first_file -c cat &amp;gt; /tmp/log 2&amp;gt;&amp;amp;1
flock disabled, mount with &apos;-o [local]flock&apos; to enable
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;</comment>
                            <comment id="247929" author="lixi_wc" created="Wed, 29 May 2019 11:01:31 +0000"  >&lt;p&gt;With the second version of the patch, the message rate is limited with the same mechanism of CDBUG.&lt;/p&gt;

&lt;div class=&quot;preformatted panel&quot; style=&quot;border-width: 1px;&quot;&gt;&lt;div class=&quot;preformattedContent panelContent&quot;&gt;
&lt;pre&gt;[root@server17-el7-vm4 lustre-release.git]# flock /mnt/first_file -c cat &amp;gt; /tmp/log 2&amp;gt;&amp;amp;1
flock disabled, mount with &apos;-o [local]flock&apos; to enable
[root@server17-el7-vm4 lustre-release.git]# flock /mnt/first_file -c cat &amp;gt; /tmp/log 2&amp;gt;&amp;amp;1
flock disabled, mount with &apos;-o [local]flock&apos; to enable
[root@server17-el7-vm4 lustre-release.git]# flock /mnt/first_file -c cat &amp;gt; /tmp/log 2&amp;gt;&amp;amp;1
[root@server17-el7-vm4 lustre-release.git]# flock /mnt/first_file -c cat &amp;gt; /tmp/log 2&amp;gt;&amp;amp;1
[root@server17-el7-vm4 lustre-release.git]# flock /mnt/first_file -c cat &amp;gt; /tmp/log 2&amp;gt;&amp;amp;1
[root@server17-el7-vm4 lustre-release.git]# flock /mnt/first_file -c cat &amp;gt; /tmp/log 2&amp;gt;&amp;amp;1
[root@server17-el7-vm4 lustre-release.git]# flock /mnt/first_file -c cat &amp;gt; /tmp/log 2&amp;gt;&amp;amp;1
[root@server17-el7-vm4 lustre-release.git]# flock /mnt/first_file -c cat &amp;gt; /tmp/log 2&amp;gt;&amp;amp;1
[root@server17-el7-vm4 lustre-release.git]# flock /mnt/first_file -c cat &amp;gt; /tmp/log 2&amp;gt;&amp;amp;1
flock disabled, mount with &apos;-o [local]flock&apos; to enable
Skipped 6 previous similar messages
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;</comment>
                            <comment id="250220" author="gerrit" created="Fri, 28 Jun 2019 00:01:41 +0000"  >&lt;p&gt;Oleg Drokin (green@whamcloud.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/34986/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/34986/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-12349&quot; title=&quot;print error to console when flock() is diabled&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-12349&quot;&gt;&lt;del&gt;LU-12349&lt;/del&gt;&lt;/a&gt; llite: console message for disabled flock call&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: f6497eb3503b7efff823888ed76422db4e9e078e&lt;/p&gt;</comment>
                            <comment id="250287" author="pjones" created="Fri, 28 Jun 2019 17:04:02 +0000"  >&lt;p&gt;Landed for 2.13&lt;/p&gt;</comment>
                    </comments>
                <issuelinks>
                            <issuelinktype id="10010">
                    <name>Duplicate</name>
                                            <outwardlinks description="duplicates">
                                        <issuelink>
            <issuekey id="55768">LU-12348</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|i00h3b:</customfieldvalue>

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