<!-- 
RSS generated by JIRA (9.4.14#940014-sha1:734e6822bbf0d45eff9af51f82432957f73aa32c) at Sat Feb 10 01:49:08 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-5170] lfs usability</title>
                <link>https://jira.whamcloud.com/browse/LU-5170</link>
                <project id="10000" key="LU">Lustre</project>
                    <description>&lt;p&gt;lfs usability needs attention.&lt;/p&gt;
&lt;h1&gt;&lt;a name=&quot;Commandoutput&quot;&gt;&lt;/a&gt;Command output&lt;/h1&gt;
&lt;ol&gt;
	&lt;li&gt;Structured command output should be clear, unambiguous, minimalist, and easily parsed (by awk).&lt;/li&gt;
&lt;/ol&gt;


&lt;h1&gt;&lt;a name=&quot;ErrorsandErrorMessages&quot;&gt;&lt;/a&gt;Errors and Error Messages&lt;/h1&gt;
&lt;ol&gt;
	&lt;li&gt;Except for unrecognized/bad command/option usage, error messages must be one line only and prefixed by &apos;lfs COMMAND: &apos;. Text that follows &apos;lfs COMMAND: &apos; should start with a lowercase word like cannot. A period should not be used at the end of an error message.&lt;/li&gt;
	&lt;li&gt;There must be a strong reason not to use an error message of the form
&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;lfs COMMAND: cannot VERB &apos;ARG&apos;: STRERROR





&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;&lt;/li&gt;
&lt;/ol&gt;


&lt;ol&gt;
	&lt;li&gt;Commands that take multiple (file) arguments should continue on error but report the error. Note that using touch the second file is not created but the third is. This is unix convention and should be followed by lfs.&#160; &lt;b&gt;A patch has been submitted at &lt;a href=&quot;https://review.whamcloud.com/#/c/30663/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/#/c/30663/&lt;/a&gt;.&lt;/b&gt;&lt;/li&gt;
&lt;/ol&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;# cd /mnt/lustre
# ls
# touch f0 d1/f1 f2
touch: cannot touch `d1/f1&apos;: No such file or directory
# echo $?
1
# ls
f0  f2
#
# rm f0 f2
# lfs setstripe -c4 f0 d1/f1 f2
unable to open &apos;d1/f1&apos;: No such file or directory (2)
error: setstripe: create stripe file &apos;d1/f1&apos; failed
# echo $?
2
# ls
f0





&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;
&lt;h1&gt;&lt;a name=&quot;CommandsandOptions&quot;&gt;&lt;/a&gt;Commands and Options&lt;/h1&gt;
&lt;ol&gt;
	&lt;li&gt;Passing unrecognized commands and options should generate a two line error message. We shouldn&apos;t &quot;spam the console&quot; since these are usually just simple typos and printing a long error message may scroll away something the user cared about.
&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;# lfs setstrip
Try interactive use without arguments or use one of:
&quot;setstripe&quot;
&quot;getstripe&quot;
&quot;setdirstripe&quot;
&quot;getdirstripe&quot;
&quot;mkdir&quot;
&quot;rm_entry&quot;
&quot;pool_list&quot;
&quot;find&quot;
&quot;check&quot;
&quot;join&quot;
&quot;osts&quot;
&quot;mdts&quot;
&quot;df&quot;
&quot;getname&quot;
&quot;quotacheck&quot;
&quot;quotaon&quot;
&quot;quotaoff&quot;
&quot;setquota&quot;
&quot;quota&quot;
&quot;flushctx&quot;
&quot;lsetfacl&quot;
&quot;lgetfacl&quot;
&quot;rsetfacl&quot;
&quot;rgetfacl&quot;
&quot;cp&quot;
&quot;ls&quot;
&quot;changelog&quot;
&quot;changelog_clear&quot;
&quot;fid2path&quot;
&quot;path2fid&quot;
&quot;data_version&quot;
&quot;hsm_state&quot;
&quot;hsm_set&quot;
&quot;hsm_clear&quot;
&quot;hsm_action&quot;
&quot;hsm_archive&quot;
&quot;hsm_restore&quot;
&quot;hsm_release&quot;
&quot;hsm_remove&quot;
&quot;hsm_cancel&quot;
&quot;swap_layouts&quot;
&quot;migrate&quot;
&quot;mv&quot;
&quot;help&quot;
&quot;exit&quot;
&quot;quit&quot;
as argument.

&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;
&lt;p&gt;Should be:&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;# lfs setstrip
lfs: unrecognized command &apos;setstrip&apos;
Try &apos;lfs --help&apos; for more information

&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;
&lt;p&gt;&lt;b&gt;A patch has been submitted at &lt;a href=&quot;https://review.whamcloud.com/#/c/28569/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/#/c/28569/&lt;/a&gt;.&lt;/b&gt;&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;


&lt;ol&gt;
	&lt;li&gt;&apos;lfs --help&apos; should generate a short help message, not a list of subcommands.
&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;# lfs --help
Try interactive use without arguments or use one of:
&quot;setstripe&quot;
&quot;getstripe&quot;
&quot;setdirstripe&quot;
&quot;getdirstripe&quot;
&quot;mkdir&quot;
&quot;rm_entry&quot;
&quot;pool_list&quot;
...





&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;
&lt;p&gt;Should be:&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;usage: lfs COMMAND [OPTIONS]... ARGS
...





&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;
&lt;p&gt;Note also that &apos;lfs setstrip -c11 xyzzy&apos; prints &lt;b&gt;nothing&lt;/b&gt; to stderr.&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;


&lt;ol&gt;
	&lt;li&gt;&apos;lfs help COMMAND&apos; should print help to stdout and not to stderr.&lt;br/&gt;
 Wrong:
&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;# lfs help setstripe &amp;gt; /dev/null
setstripe: Create a new file with a specific striping pattern or
set the default striping pattern on an existing directory or
delete the default striping pattern from an existing directory
usage: setstripe -d &amp;lt;directory&amp;gt;   (to delete default striping)
 or
usage: setstripe [--stripe-count|-c &amp;lt;stripe_count&amp;gt;]
                 [--stripe-index|-i &amp;lt;start_ost_idx&amp;gt;]
                 [--stripe-size|-S &amp;lt;stripe_size&amp;gt;]
                 [--pool|-p &amp;lt;pool_name&amp;gt;]
                 [--block|-b] &amp;lt;directory|filename&amp;gt;
...





&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;
&lt;p&gt;&lt;b&gt;A patch has been submitted at &lt;a href=&quot;https://review.whamcloud.com/#/c/28569/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/#/c/28569/&lt;/a&gt;.&lt;/b&gt;&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;


&lt;ol&gt;
	&lt;li&gt;&apos;lfs help COMMAND&apos; should be equivalent to &apos;lfs COMMAND --help&apos;&lt;br/&gt;
 Wrong:
&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;# lfs setdirstripe --help
setdirstripe: unrecognized option &apos;--help&apos;
error: setdirstripe: option &apos;--help&apos; unrecognized
To create a remote directory on a specified MDT.
usage: setdirstripe &amp;lt;--count|-c stripe_count&amp;gt;
[--index|-i mdt_index] [--hash-type|-t hash_type]
[--default_stripe|-D ] &amp;lt;dir&amp;gt;
	stripe_count: stripe count of the striped directory
	mdt_index:	MDT index of first stripe
	hash_type:	hash type of the striped directory. Hash types:
	-t fnv_1a_64 FNV-1a hash algorithm(default)
	-t all_char  sum of characters % MDT_COUNT. (not recommended)
	default_stripe: set default dirstripe of the directory





&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;&lt;/li&gt;
&lt;/ol&gt;


&lt;ol&gt;
	&lt;li&gt;Options must use dashes (instead of underscores) to separate words.
&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;Wrong: --stripecount
Wrong: --stripe_count
Right: --stripe-count





&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;
&lt;p&gt;Existing options that use underscores should be accepted in future versions of lfs. But s/_/-/ equivalents should be added and help messages and manpages should be updated to use these forms.&lt;/p&gt;&lt;/li&gt;
&lt;/ol&gt;


&lt;ol&gt;
	&lt;li&gt;Paths (and other string argumenst) used in error messages must be enclosed in single quotes.&lt;/li&gt;
	&lt;li&gt;Help messages should look more unixy.
&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;# lfs help setstripe
setstripe: Create a new file with a specific striping pattern or
set the default striping pattern on an existing directory or
delete the default striping pattern from an existing directory
usage: setstripe -d &amp;lt;directory&amp;gt;   (to delete default striping)
 or
usage: setstripe [--stripe-count|-c &amp;lt;stripe_count&amp;gt;]
                 [--stripe-index|-i &amp;lt;start_ost_idx&amp;gt;]
                 [--stripe-size|-S &amp;lt;stripe_size&amp;gt;]
                 [--pool|-p &amp;lt;pool_name&amp;gt;]
                 [--block|-b] &amp;lt;directory|filename&amp;gt;
	stripe_size:  Number of bytes on each OST (0 filesystem default)
	              Can be specified with k, m or g (in KB, MB and GB
	              respectively)
	start_ost_idx: OST index of first stripe (-1 default)
	stripe_count: Number of OSTs to stripe over (0 default, -1 all)
	pool_name:    Name of OST pool to use (default none)
	block:	 Block file access during data migration





&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;&lt;/li&gt;
&lt;/ol&gt;


&lt;ol&gt;
	&lt;li&gt;Error messages should be groomed.
&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;Wrong:
unable to open &apos;d1/f1&apos;: No such file or directory (2)
error: setstripe: create stripe file &apos;d1/f1&apos; failed
Right:
lfs setstripe: cannot open &apos;d1/f1&apos;: No such file or directory





&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;&lt;/li&gt;
&lt;/ol&gt;


&lt;ol&gt;
	&lt;li&gt;Help messages (and manpages) should be checked for correctness and completeness.&lt;/li&gt;
	&lt;li&gt;Help messages should use conventional unix style. DIR, FILE, --mode=MODE instead of &amp;lt;dir&amp;gt;, &amp;lt;file&amp;gt;, --mode=&amp;lt;mode&amp;gt;.&lt;/li&gt;
	&lt;li&gt;Commands that accept multiple files should advertise this by using FILE... in help messages.&lt;/li&gt;
	&lt;li&gt;&apos;lfs --usage&apos; and &apos;lfs --version&apos; should be supported.&lt;/li&gt;
	&lt;li&gt;&apos;lfs --list-commands&apos; should be supported.&lt;br/&gt;
&lt;b&gt;A patch has already landed.&lt;/b&gt;&lt;/li&gt;
&lt;/ol&gt;


&lt;p&gt;These and other standards for usability should be expanded, refined, made available to the development community, and used to validate additions/changes to lfs and other command line utilities.&lt;/p&gt;</description>
                <environment></environment>
        <key id="25084">LU-5170</key>
            <summary>lfs usability</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="1" iconUrl="https://jira.whamcloud.com/images/icons/statuses/open.png" description="The issue is open and ready for the assignee to start work on it.">Open</status>
                    <statusCategory id="2" key="new" colorName="default"/>
                                    <resolution id="-1">Unresolved</resolution>
                                        <assignee username="wc-triage">WC Triage</assignee>
                                    <reporter username="jhammond">John Hammond</reporter>
                        <labels>
                            <label>lfs</label>
                            <label>llnl</label>
                            <label>medium</label>
                            <label>utils</label>
                    </labels>
                <created>Tue, 10 Jun 2014 15:53:18 +0000</created>
                <updated>Fri, 15 Dec 2023 20:01:53 +0000</updated>
                                            <version>Lustre 2.6.0</version>
                                                        <due></due>
                            <votes>0</votes>
                                    <watches>7</watches>
                                                                            <comments>
                            <comment id="86221" author="ezell" created="Tue, 10 Jun 2014 16:09:03 +0000"  >&lt;p&gt;Please be aware of &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-4824&quot; title=&quot;lfs find should continue after errors&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-4824&quot;&gt;&lt;del&gt;LU-4824&lt;/del&gt;&lt;/a&gt; (&lt;a href=&quot;http://review.whamcloud.com/9794&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://review.whamcloud.com/9794&lt;/a&gt;) as patches are developed for this.&lt;/p&gt;</comment>
                            <comment id="177289" author="adilger" created="Fri, 9 Dec 2016 19:22:57 +0000"  >&lt;p&gt;Patch &lt;a href=&quot;http://review.whamcloud.com/11014&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;http://review.whamcloud.com/11014&lt;/a&gt; &quot;&lt;a href=&quot;https://jira.whamcloud.com/browse/LU-2740&quot; title=&quot;lustre utils should support &amp;#39;--version&amp;#39;&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-2740&quot;&gt;&lt;del&gt;LU-2740&lt;/del&gt;&lt;/a&gt; utils: Add support for &amp;#45;&amp;#45;version option&quot; added the &quot;&amp;#45;&amp;#45;version&quot; argument.&lt;/p&gt;</comment>
                            <comment id="179764" author="gerrit" created="Thu, 5 Jan 2017 19:16:00 +0000"  >&lt;p&gt;Steve Guminski (stephenx.guminski@intel.com) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/24723&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/24723&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-5170&quot; title=&quot;lfs usability&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-5170&quot;&gt;LU-5170&lt;/a&gt; lfs: Standardize error messages in lfs utility&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 7ecf2f9dc7d0a6edb90efb3905abc863da9e9283&lt;/p&gt;</comment>
                            <comment id="179940" author="adilger" created="Fri, 6 Jan 2017 22:49:16 +0000"  >&lt;p&gt;John, I just noticed here that you seem to advocate against prefixing error messages with &lt;tt&gt;error:&lt;/tt&gt; or &lt;tt&gt;warning:&lt;/tt&gt;?  I&apos;d prefer to keep those, as it makes it more clear to the user what is a fatal error, what is a significant warning, and what are just progress or normal output messages.  I&apos;m not dead set on this, but wanted to understand your motivation, as I typically add these prefixes into my error messages.&lt;/p&gt;</comment>
                            <comment id="180080" author="jhammond" created="Mon, 9 Jan 2017 16:58:31 +0000"  >&lt;p&gt;(I don&apos;t feel so strongly on this point.) Usually anything pointed to stderr should be an error. Perhaps warnings could be labeled as such. But we should really try not to have an warnings. If something is deprecated then &apos;lfs: warning ... is deprecated&apos; is fine. But in general I think that the message itself should make the severity clear.&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;x:~# ls history.out BARF c4038ab2.diff 
ls: cannot access BARF: No such file or directory
c4038ab2.diff  history.out
&lt;/pre&gt;
&lt;/div&gt;&lt;/div&gt;</comment>
                            <comment id="180897" author="gerrit" created="Mon, 16 Jan 2017 12:49:37 +0000"  >&lt;p&gt;Steve Guminski (stephenx.guminski@intel.com) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/24902&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/24902&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-5170&quot; title=&quot;lfs usability&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-5170&quot;&gt;LU-5170&lt;/a&gt; utils: Add support for --list-commands option&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 906be553276e1dc4f924bf016a99616a4f2a9c15&lt;/p&gt;</comment>
                            <comment id="184900" author="gerrit" created="Wed, 15 Feb 2017 01:03:25 +0000"  >&lt;p&gt;Oleg Drokin (oleg.drokin@intel.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/24902/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/24902/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-5170&quot; title=&quot;lfs usability&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-5170&quot;&gt;LU-5170&lt;/a&gt; utils: Add support for --list-commands option&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 723f40030aa289f0b44d9394cc2e15a4d1772600&lt;/p&gt;</comment>
                            <comment id="202168" author="gerrit" created="Fri, 14 Jul 2017 16:28:24 +0000"  >&lt;p&gt;Steve Guminski (stephenx.guminski@intel.com) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/28049&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/28049&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-5170&quot; title=&quot;lfs usability&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-5170&quot;&gt;LU-5170&lt;/a&gt; lfs: Standardize error messages in lfs_setstripe()&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 40559b037933a9b5780fdf4661e58b9b6ab89f7a&lt;/p&gt;</comment>
                            <comment id="202359" author="gerrit" created="Mon, 17 Jul 2017 16:26:30 +0000"  >&lt;p&gt;Steve Guminski (stephenx.guminski@intel.com) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/28062&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/28062&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-5170&quot; title=&quot;lfs usability&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-5170&quot;&gt;LU-5170&lt;/a&gt; lfs: Standardize error messages in lfs_find()&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 4b716da54971ab599009e833cc52d7262d22a676&lt;/p&gt;</comment>
                            <comment id="202521" author="gerrit" created="Tue, 18 Jul 2017 17:47:38 +0000"  >&lt;p&gt;Steve Guminski (stephenx.guminski@intel.com) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/28086&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/28086&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-5170&quot; title=&quot;lfs usability&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-5170&quot;&gt;LU-5170&lt;/a&gt; lfs: Standardize error messages in lfs_setdirstripe()&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 4490400ab50415477a38b11ac7e362fd09bdfc05&lt;/p&gt;</comment>
                            <comment id="203616" author="gerrit" created="Wed, 26 Jul 2017 18:12:39 +0000"  >&lt;p&gt;Steve Guminski (stephenx.guminski@intel.com) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/28226&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/28226&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-5170&quot; title=&quot;lfs usability&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-5170&quot;&gt;LU-5170&lt;/a&gt; lfs: Standardize error messages in lfs_ladvise()&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: d317969e985f6a812b840d44eb74e40303d1eb08&lt;/p&gt;</comment>
                            <comment id="203628" author="gerrit" created="Wed, 26 Jul 2017 18:43:56 +0000"  >&lt;p&gt;Steve Guminski (stephenx.guminski@intel.com) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/28234&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/28234&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-5170&quot; title=&quot;lfs usability&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-5170&quot;&gt;LU-5170&lt;/a&gt; lfs: Standardize error messages in set_time()&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 05f1b87991a21687630d3f44aa9c69788b11f067&lt;/p&gt;</comment>
                            <comment id="203635" author="gerrit" created="Wed, 26 Jul 2017 19:10:40 +0000"  >&lt;p&gt;Steve Guminski (stephenx.guminski@intel.com) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/28239&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/28239&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-5170&quot; title=&quot;lfs usability&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-5170&quot;&gt;LU-5170&lt;/a&gt; lfs: Standardize error messages in lfs_mv()&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 7b4781e5c83bc7970c48acef8c18cbb5a81e9f46&lt;/p&gt;</comment>
                            <comment id="203680" author="gerrit" created="Thu, 27 Jul 2017 11:10:22 +0000"  >&lt;p&gt;Steve Guminski (stephenx.guminski@intel.com) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/28250&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/28250&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-5170&quot; title=&quot;lfs usability&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-5170&quot;&gt;LU-5170&lt;/a&gt; lfs: Standardize error messages in macros&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 099415f4bb581c994e0e7b74fae629d330156c75&lt;/p&gt;</comment>
                            <comment id="203697" author="gerrit" created="Thu, 27 Jul 2017 14:35:43 +0000"  >&lt;p&gt;Steve Guminski (stephenx.guminski@intel.com) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/28253&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/28253&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-5170&quot; title=&quot;lfs usability&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-5170&quot;&gt;LU-5170&lt;/a&gt; lfs: Standardize error messages in lfs_quota()&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 887731949f9358760d5826cb749e637ab9ade12d&lt;/p&gt;</comment>
                            <comment id="203711" author="gerrit" created="Thu, 27 Jul 2017 16:26:36 +0000"  >&lt;p&gt;Steve Guminski (stephenx.guminski@intel.com) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/28255&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/28255&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-5170&quot; title=&quot;lfs usability&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-5170&quot;&gt;LU-5170&lt;/a&gt; lfs: Standardize error messages in lfs_component_del()&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 81e97ba0f5559ff9ef2c0366ccfb66c2af7611a2&lt;/p&gt;</comment>
                            <comment id="203966" author="gerrit" created="Mon, 31 Jul 2017 19:37:34 +0000"  >&lt;p&gt;Steve Guminski (stephenx.guminski@intel.com) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/28286&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/28286&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-5170&quot; title=&quot;lfs usability&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-5170&quot;&gt;LU-5170&lt;/a&gt; lfs: Standardize error messages in lfs_setquota()&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 6c94f66d5fb2663141e18e647df39c782fe9ed83&lt;/p&gt;</comment>
                            <comment id="204108" author="gerrit" created="Tue, 1 Aug 2017 18:11:41 +0000"  >&lt;p&gt;Steve Guminski (stephenx.guminski@intel.com) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/28304&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/28304&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-5170&quot; title=&quot;lfs usability&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-5170&quot;&gt;LU-5170&lt;/a&gt; lfs: Standardize error messages in adjust_first_extent&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 7013dd35293f4bebffdd63343c9e18f4e19824de&lt;/p&gt;</comment>
                            <comment id="205513" author="gerrit" created="Wed, 16 Aug 2017 15:36:02 +0000"  >&lt;p&gt;Steve Guminski (stephenx.guminski@intel.com) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/28569&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/28569&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-5170&quot; title=&quot;lfs usability&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-5170&quot;&gt;LU-5170&lt;/a&gt; lfs: Standardize error messages in command parser&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 683f88a692a19443e6f933f773274d3eb5293b29&lt;/p&gt;</comment>
                            <comment id="205527" author="gerrit" created="Wed, 16 Aug 2017 17:11:10 +0000"  >&lt;p&gt;Steve Guminski (stephenx.guminski@intel.com) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/28571&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/28571&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-5170&quot; title=&quot;lfs usability&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-5170&quot;&gt;LU-5170&lt;/a&gt; utils: Add utility and command name to llapi messages&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 89692ef5772fcab9eef140da8f0dc4e97ac46eb5&lt;/p&gt;</comment>
                            <comment id="207115" author="gerrit" created="Thu, 31 Aug 2017 19:16:49 +0000"  >&lt;p&gt;Oleg Drokin (oleg.drokin@intel.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/28086/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/28086/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-5170&quot; title=&quot;lfs usability&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-5170&quot;&gt;LU-5170&lt;/a&gt; lfs: Standardize error messages in lfs_setdirstripe()&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 5eef95fee06f712694daba942f8e90a7df96e5e1&lt;/p&gt;</comment>
                            <comment id="207920" author="gerrit" created="Fri, 8 Sep 2017 16:43:04 +0000"  >&lt;p&gt;Steve Guminski (stephenx.guminski@intel.com) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/28911&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/28911&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-5170&quot; title=&quot;lfs usability&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-5170&quot;&gt;LU-5170&lt;/a&gt; lfs: Standardize llapi messages used by lfs_setstripe&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: c2921cd875c307c4fe7a8d1ef0cd34e240e8803e&lt;/p&gt;</comment>
                            <comment id="208347" author="gerrit" created="Thu, 14 Sep 2017 12:21:07 +0000"  >&lt;p&gt;Steve Guminski (stephenx.guminski@intel.com) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/28997&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/28997&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-5170&quot; title=&quot;lfs usability&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-5170&quot;&gt;LU-5170&lt;/a&gt; lfs: Standardize llapi messages for lfs_find()&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 9b7bcf03f0f2227fea024ef2d92693010e675ceb&lt;/p&gt;</comment>
                            <comment id="211143" author="gerrit" created="Mon, 16 Oct 2017 03:22:51 +0000"  >&lt;p&gt;Oleg Drokin (oleg.drokin@intel.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/28049/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/28049/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-5170&quot; title=&quot;lfs usability&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-5170&quot;&gt;LU-5170&lt;/a&gt; lfs: Standardize error messages in lfs_setstripe()&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: d94de5c04ee231f1820ae11ead86f0efc3c1fd02&lt;/p&gt;</comment>
                            <comment id="214395" author="gerrit" created="Wed, 22 Nov 2017 03:55:06 +0000"  >&lt;p&gt;Oleg Drokin (oleg.drokin@intel.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/28255/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/28255/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-5170&quot; title=&quot;lfs usability&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-5170&quot;&gt;LU-5170&lt;/a&gt; lfs: Standardize error messages in lfs_component_del()&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: f0f8d0c121ee3258bf444d9a3d3b83ace594340f&lt;/p&gt;</comment>
                            <comment id="214396" author="gerrit" created="Wed, 22 Nov 2017 03:55:10 +0000"  >&lt;p&gt;Oleg Drokin (oleg.drokin@intel.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/28304/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/28304/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-5170&quot; title=&quot;lfs usability&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-5170&quot;&gt;LU-5170&lt;/a&gt; lfs: Standardize error messages in adjust_first_extent&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: db831c666c24d23058021ca7e4a4cbaa63997fd9&lt;/p&gt;</comment>
                            <comment id="215099" author="gerrit" created="Fri, 1 Dec 2017 05:15:55 +0000"  >&lt;p&gt;Oleg Drokin (oleg.drokin@intel.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/28250/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/28250/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-5170&quot; title=&quot;lfs usability&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-5170&quot;&gt;LU-5170&lt;/a&gt; lfs: Standardize error messages in macros&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: ebb01c9421a8007a34b69eb972aab45369446b23&lt;/p&gt;</comment>
                            <comment id="217224" author="gerrit" created="Thu, 28 Dec 2017 18:04:34 +0000"  >&lt;p&gt;Steve Guminski (stephenx.guminski@intel.com) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/30663&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/30663&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-5170&quot; title=&quot;lfs usability&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-5170&quot;&gt;LU-5170&lt;/a&gt; utils: Continue on error when multiple files requested&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 202f988f480a0b5aad09b1b4303ce5dcd924361d&lt;/p&gt;</comment>
                            <comment id="217245" author="gerrit" created="Fri, 29 Dec 2017 11:44:12 +0000"  >&lt;p&gt;Steve Guminski (stephenx.guminski@intel.com) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/30664&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/30664&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-5170&quot; title=&quot;lfs usability&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-5170&quot;&gt;LU-5170&lt;/a&gt; lfs: Standardize llapi messages from lfs_setdirstripe&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: b8432851b9da636f38d930c45c32e80e7ae71c92&lt;/p&gt;</comment>
                            <comment id="217246" author="gerrit" created="Fri, 29 Dec 2017 13:04:00 +0000"  >&lt;p&gt;Steve Guminski (stephenx.guminski@intel.com) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/30665&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/30665&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-5170&quot; title=&quot;lfs usability&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-5170&quot;&gt;LU-5170&lt;/a&gt; lfs: Standardize error messages in lfs_changelog()&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 88bc561da72ad814a25102345a89bc881064e411&lt;/p&gt;</comment>
                            <comment id="217247" author="gerrit" created="Fri, 29 Dec 2017 14:01:24 +0000"  >&lt;p&gt;Steve Guminski (stephenx.guminski@intel.com) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/30666&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/30666&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-5170&quot; title=&quot;lfs usability&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-5170&quot;&gt;LU-5170&lt;/a&gt; lfs: Standardize error messages in lfs_check()&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 5822180560b90ba6dadc3edcc181d8ccce4ee470&lt;/p&gt;</comment>
                            <comment id="217248" author="gerrit" created="Fri, 29 Dec 2017 15:00:08 +0000"  >&lt;p&gt;Steve Guminski (stephenx.guminski@intel.com) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/30667&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/30667&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-5170&quot; title=&quot;lfs usability&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-5170&quot;&gt;LU-5170&lt;/a&gt; lfs: Standardize error messages in lfs_data_version()&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 33fce299189f7390a8994a9c97379aecb8cf34e1&lt;/p&gt;</comment>
                            <comment id="217265" author="gerrit" created="Fri, 29 Dec 2017 19:11:18 +0000"  >&lt;p&gt;Steve Guminski (stephenx.guminski@intel.com) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/30668&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/30668&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-5170&quot; title=&quot;lfs usability&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-5170&quot;&gt;LU-5170&lt;/a&gt; lfs: Standardize error messages in lfs_fid2path()&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 801daa7fb8022f2b341236a9e91e78957d80537e&lt;/p&gt;</comment>
                            <comment id="217269" author="gerrit" created="Fri, 29 Dec 2017 19:41:27 +0000"  >&lt;p&gt;Steve Guminski (stephenx.guminski@intel.com) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/30670&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/30670&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-5170&quot; title=&quot;lfs usability&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-5170&quot;&gt;LU-5170&lt;/a&gt; lfs: Standardize error messages in lfs_path2fid()&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 1775a9aec1900f4a1a3775c3a933b59470f48c2d&lt;/p&gt;</comment>
                            <comment id="217767" author="gerrit" created="Tue, 9 Jan 2018 05:35:43 +0000"  >&lt;p&gt;Oleg Drokin (oleg.drokin@intel.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/28253/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/28253/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-5170&quot; title=&quot;lfs usability&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-5170&quot;&gt;LU-5170&lt;/a&gt; lfs: Standardize error messages in lfs_quota()&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: eea612b68943ec3f5bb8db40d00be1bdc4320c58&lt;/p&gt;</comment>
                            <comment id="217768" author="gerrit" created="Tue, 9 Jan 2018 05:35:47 +0000"  >&lt;p&gt;Oleg Drokin (oleg.drokin@intel.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/28286/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/28286/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-5170&quot; title=&quot;lfs usability&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-5170&quot;&gt;LU-5170&lt;/a&gt; lfs: Standardize error messages in lfs_setquota()&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 10cf4dabc82f54cb7cf9dfc915d477bd6a9e42a7&lt;/p&gt;</comment>
                            <comment id="217769" author="gerrit" created="Tue, 9 Jan 2018 05:35:51 +0000"  >&lt;p&gt;Oleg Drokin (oleg.drokin@intel.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/28571/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/28571/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-5170&quot; title=&quot;lfs usability&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-5170&quot;&gt;LU-5170&lt;/a&gt; utils: Add utility and command name to llapi messages&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 7a16f18ae1ef5d21812c916470022280617c4e91&lt;/p&gt;</comment>
                            <comment id="217775" author="gerrit" created="Tue, 9 Jan 2018 05:36:30 +0000"  >&lt;p&gt;Oleg Drokin (oleg.drokin@intel.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/30666/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/30666/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-5170&quot; title=&quot;lfs usability&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-5170&quot;&gt;LU-5170&lt;/a&gt; lfs: Standardize error messages in lfs_check()&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: bdc2923743f5541c2a72b5730c76bd96c45c9b18&lt;/p&gt;</comment>
                            <comment id="226325" author="gerrit" created="Thu, 19 Apr 2018 04:38:23 +0000"  >&lt;p&gt;Oleg Drokin (oleg.drokin@intel.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/30665/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/30665/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-5170&quot; title=&quot;lfs usability&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-5170&quot;&gt;LU-5170&lt;/a&gt; lfs: Standardize error messages in lfs_changelog()&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: b7ac21b9c241b4aa291fd194d1b819e4f5172a4e&lt;/p&gt;</comment>
                            <comment id="227032" author="gerrit" created="Wed, 2 May 2018 02:22:19 +0000"  >&lt;p&gt;Oleg Drokin (oleg.drokin@intel.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/28234/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/28234/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-5170&quot; title=&quot;lfs usability&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-5170&quot;&gt;LU-5170&lt;/a&gt; lfs: Standardize error messages in set_time()&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: b1870a11d2050d192921af34ac3b0eeac66bd215&lt;/p&gt;</comment>
                            <comment id="227033" author="gerrit" created="Wed, 2 May 2018 02:22:24 +0000"  >&lt;p&gt;Oleg Drokin (oleg.drokin@intel.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/28239/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/28239/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-5170&quot; title=&quot;lfs usability&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-5170&quot;&gt;LU-5170&lt;/a&gt; lfs: Standardize error messages in lfs_mv()&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 58a4c595a6cce22f39899e0ae7b55b9e2d07f3b2&lt;/p&gt;</comment>
                            <comment id="227034" author="gerrit" created="Wed, 2 May 2018 02:22:30 +0000"  >&lt;p&gt;Oleg Drokin (oleg.drokin@intel.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/28997/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/28997/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-5170&quot; title=&quot;lfs usability&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-5170&quot;&gt;LU-5170&lt;/a&gt; lfs: Standardize llapi messages for lfs_find()&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 9514d54b6a968e7e126a5bd0cb33fe06eac3b00b&lt;/p&gt;</comment>
                            <comment id="227039" author="gerrit" created="Wed, 2 May 2018 02:22:58 +0000"  >&lt;p&gt;Oleg Drokin (oleg.drokin@intel.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/30667/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/30667/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-5170&quot; title=&quot;lfs usability&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-5170&quot;&gt;LU-5170&lt;/a&gt; lfs: Standardize error messages in lfs_data_version()&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: a92ac522b8af879851124180f4b81db2514cffaf&lt;/p&gt;</comment>
                            <comment id="227040" author="gerrit" created="Wed, 2 May 2018 02:23:05 +0000"  >&lt;p&gt;Oleg Drokin (oleg.drokin@intel.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/30668/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/30668/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-5170&quot; title=&quot;lfs usability&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-5170&quot;&gt;LU-5170&lt;/a&gt; lfs: Standardize error messages in lfs_fid2path()&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: eb489300b5fafbcb5ec699098c32defe61008ed8&lt;/p&gt;</comment>
                            <comment id="227041" author="gerrit" created="Wed, 2 May 2018 02:23:13 +0000"  >&lt;p&gt;Oleg Drokin (oleg.drokin@intel.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/30670/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/30670/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-5170&quot; title=&quot;lfs usability&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-5170&quot;&gt;LU-5170&lt;/a&gt; lfs: Standardize error messages in lfs_path2fid()&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 9724df2ec5db5afbb6d60a52d930270fb13b673f&lt;/p&gt;</comment>
                            <comment id="289880" author="gerrit" created="Wed, 20 Jan 2021 00:53:04 +0000"  >&lt;p&gt;Andreas Dilger (adilger@whamcloud.com) uploaded a new patch: &lt;a href=&quot;https://review.whamcloud.com/41271&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/41271&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-5170&quot; title=&quot;lfs usability&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-5170&quot;&gt;LU-5170&lt;/a&gt; utils: add lfs df -H for decimal units&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: 1&lt;br/&gt;
Commit: 87411ba48e2889d3f248f3ce8a7cdd6c6dd75c0c&lt;/p&gt;</comment>
                            <comment id="294481" author="gerrit" created="Wed, 10 Mar 2021 08:03:15 +0000"  >&lt;p&gt;Oleg Drokin (green@whamcloud.com) merged in patch &lt;a href=&quot;https://review.whamcloud.com/41271/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/41271/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-5170&quot; title=&quot;lfs usability&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-5170&quot;&gt;LU-5170&lt;/a&gt; utils: add lfs df -H for decimal units&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 7b720df1fbd4136cd1ab8f3fefefd3971b2f7031&lt;/p&gt;</comment>
                            <comment id="365656" author="gerrit" created="Mon, 13 Mar 2023 06:06:03 +0000"  >&lt;p&gt;&quot;Oleg Drokin &amp;lt;green@whamcloud.com&amp;gt;&quot; merged in patch &lt;a href=&quot;https://review.whamcloud.com/c/fs/lustre-release/+/30663/&quot; class=&quot;external-link&quot; target=&quot;_blank&quot; rel=&quot;nofollow noopener&quot;&gt;https://review.whamcloud.com/c/fs/lustre-release/+/30663/&lt;/a&gt;&lt;br/&gt;
Subject: &lt;a href=&quot;https://jira.whamcloud.com/browse/LU-5170&quot; title=&quot;lfs usability&quot; class=&quot;issue-link&quot; data-issue-key=&quot;LU-5170&quot;&gt;LU-5170&lt;/a&gt; utils: Continue on error when multiple files requested&lt;br/&gt;
Project: fs/lustre-release&lt;br/&gt;
Branch: master&lt;br/&gt;
Current Patch Set: &lt;br/&gt;
Commit: 4affa48f676b9ecb47b9827e82f76a09587ceea1&lt;/p&gt;</comment>
                    </comments>
                <issuelinks>
                            <issuelinktype id="10011">
                    <name>Related</name>
                                            <outwardlinks description="is related to ">
                                        <issuelink>
            <issuekey id="18184">LUDOC-134</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="58561">LU-13403</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="58693">LU-13435</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="68737">LU-15565</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="23906">LU-4824</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="17411">LU-2740</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="23278">LU-4665</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="24394">LU-4959</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="22243">LU-4315</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="38291">LU-8417</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="63521">LU-14554</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="59748">LU-13720</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="70299">LU-15856</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="73037">LU-16284</issuekey>
        </issuelink>
                            </outwardlinks>
                                                                <inwardlinks description="is related to">
                                        <issuelink>
            <issuekey id="54608">LU-11875</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="74700">LU-16560</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="73612">LU-16392</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="78697">LU-17245</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="70232">LU-15837</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="50360">LU-10552</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="59999">LU-13793</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="60185">LU-13831</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="67329">LU-15276</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="68412">LU-15504</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="69732">LU-15743</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="73859">LU-16446</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="74966">LU-16622</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="33365">LU-7495</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="37216">LU-8207</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="49376">LU-10258</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="49717">LU-10378</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="50123">LU-10482</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="52846">LU-11188</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="54286">LU-11776</issuekey>
        </issuelink>
            <issuelink>
            <issuekey id="79615">LU-17370</issuekey>
        </issuelink>
                            </inwardlinks>
                                    </issuelinktype>
                    </issuelinks>
                <attachments>
                    </attachments>
                <subtasks>
                    </subtasks>
                <customfields>
                                                                                                                                                                                            <customfield id="customfield_10890" key="com.atlassian.jira.plugins.jira-development-integration-plugin:devsummary">
                        <customfieldname>Development</customfieldname>
                        <customfieldvalues>
                            
                        </customfieldvalues>
                    </customfield>
                                                                                                                                                                                                                                                                                                                                                        <customfield id="customfield_10390" key="com.pyxis.greenhopper.jira:gh-lexo-rank">
                        <customfieldname>Rank</customfieldname>
                        <customfieldvalues>
                            <customfieldvalue>1|hzwo1r:</customfieldvalue>

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