Flexible I/O Tester development
 help / color / mirror / Atom feed
* [PATCH] Fix manpage errors
@ 2012-05-07 14:18 Martin Steigerwald
  2012-05-07 14:18 ` [PATCH 1/3] Fix spelling error in manpage Martin Steigerwald
  2012-05-07 15:07 ` [PATCH] Fix manpage errors Jens Axboe
  0 siblings, 2 replies; 7+ messages in thread
From: Martin Steigerwald @ 2012-05-07 14:18 UTC (permalink / raw)
  To: fio@vger.kernel.org; +Cc: Jens Axboe

Hi Jens!

On updating Debian package to 2.0.7 lintian -IE again found some manpage
errors.

I prepared patches to fix them.

No hurry with an upstream release as I included patches into my
packaging.

This is my first time using git send-mail, so please forgive any
mistakes I may have made.

Thanks,
Martin



^ permalink raw reply	[flat|nested] 7+ messages in thread

* [PATCH 1/3] Fix spelling error in manpage.
  2012-05-07 14:18 [PATCH] Fix manpage errors Martin Steigerwald
@ 2012-05-07 14:18 ` Martin Steigerwald
  2012-05-07 14:18   ` [PATCH 2/3] Fix manpage error warning: macro `hostname'' not defined Martin Steigerwald
  2012-05-07 14:18   ` [PATCH 3/3] Fix hyphen as minus sign errors by escaping minus signs Martin Steigerwald
  2012-05-07 15:07 ` [PATCH] Fix manpage errors Jens Axboe
  1 sibling, 2 replies; 7+ messages in thread
From: Martin Steigerwald @ 2012-05-07 14:18 UTC (permalink / raw)
  To: fio@vger.kernel.org; +Cc: Jens Axboe, Martin Steigerwald

---
 fio.1 |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/fio.1 b/fio.1
index 7997526..4e626b0 100644
--- a/fio.1
+++ b/fio.1
@@ -70,7 +70,7 @@ Set the internal smalloc pool size to \fIkb\fP kilobytes.
 All fio parser warnings are fatal, causing fio to exit with an error.
 .TP
 .BI \-\-max\-jobs \fR=\fPnr
-Set the maximum allowed number of jobs (threads/processes) to suport.
+Set the maximum allowed number of jobs (threads/processes) to support.
 .TP
 .BI \-\-server \fR=\fPargs
 Start a backend server, with \fIargs\fP specifying what to listen to. See client/server section.
-- 
1.7.10



^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [PATCH 2/3] Fix manpage error warning: macro `hostname'' not defined.
  2012-05-07 14:18 ` [PATCH 1/3] Fix spelling error in manpage Martin Steigerwald
@ 2012-05-07 14:18   ` Martin Steigerwald
  2012-05-07 14:18   ` [PATCH 3/3] Fix hyphen as minus sign errors by escaping minus signs Martin Steigerwald
  1 sibling, 0 replies; 7+ messages in thread
From: Martin Steigerwald @ 2012-05-07 14:18 UTC (permalink / raw)
  To: fio@vger.kernel.org; +Cc: Jens Axboe, Martin Steigerwald

Fix manpage error warning: macro `hostname'' not defined by using
different line wrapping.
---
 fio.1 |    4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/fio.1 b/fio.1
index 4e626b0..23650ce 100644
--- a/fio.1
+++ b/fio.1
@@ -1318,8 +1318,8 @@ To start the server, you would do:
 
 on that machine, where args defines what fio listens to. The arguments
 are of the form 'type:hostname or IP:port'. 'type' is either 'ip' (or ip4)
-for TCP/IP v4, 'ip6' for TCP/IP v6, or 'sock' for a local unix domain socket.
-'hostname' is either a hostname or IP address, and 'port' is the port to
+for TCP/IP v4, 'ip6' for TCP/IP v6, or 'sock' for a local unix domain
+socket. 'hostname' is either a hostname or IP address, and 'port' is the port to
 listen to (only valid for TCP/IP, not a local socket). Some examples:
 
 1) fio --server
-- 
1.7.10



^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [PATCH 3/3] Fix hyphen as minus sign errors by escaping minus signs.
  2012-05-07 14:18 ` [PATCH 1/3] Fix spelling error in manpage Martin Steigerwald
  2012-05-07 14:18   ` [PATCH 2/3] Fix manpage error warning: macro `hostname'' not defined Martin Steigerwald
@ 2012-05-07 14:18   ` Martin Steigerwald
  1 sibling, 0 replies; 7+ messages in thread
From: Martin Steigerwald @ 2012-05-07 14:18 UTC (permalink / raw)
  To: fio@vger.kernel.org; +Cc: Jens Axboe, Martin Steigerwald

---
 fio.1 |   20 ++++++++++----------
 1 file changed, 10 insertions(+), 10 deletions(-)

diff --git a/fio.1 b/fio.1
index 23650ce..5b61e43 100644
--- a/fio.1
+++ b/fio.1
@@ -1322,42 +1322,42 @@ for TCP/IP v4, 'ip6' for TCP/IP v6, or 'sock' for a local unix domain
 socket. 'hostname' is either a hostname or IP address, and 'port' is the port to
 listen to (only valid for TCP/IP, not a local socket). Some examples:
 
-1) fio --server
+1) fio \-\-server
 
    Start a fio server, listening on all interfaces on the default port (8765).
 
-2) fio --server=ip:hostname,4444
+2) fio \-\-server=ip:hostname,4444
 
    Start a fio server, listening on IP belonging to hostname and on port 4444.
 
-3) fio --server=ip6:::1,4444
+3) fio \-\-server=ip6:::1,4444
 
    Start a fio server, listening on IPv6 localhost ::1 and on port 4444.
 
-4) fio --server=,4444
+4) fio \-\-server=,4444
 
    Start a fio server, listening on all interfaces on port 4444.
 
-5) fio --server=1.2.3.4
+5) fio \-\-server=1.2.3.4
 
    Start a fio server, listening on IP 1.2.3.4 on the default port.
 
-6) fio --server=sock:/tmp/fio.sock
+6) fio \-\-server=sock:/tmp/fio.sock
 
    Start a fio server, listening on the local socket /tmp/fio.sock.
 
 When a server is running, you can connect to it from a client. The client
 is run with:
 
-fio --local-args --client=server --remote-args <job file(s)>
+fio \-\-local-args \-\-client=server \-\-remote-args <job file(s)>
 
-where --local-args are arguments that are local to the client where it is
-running, 'server' is the connect string, and --remote-args and <job file(s)>
+where \-\-local-args are arguments that are local to the client where it is
+running, 'server' is the connect string, and \-\-remote-args and <job file(s)>
 are sent to the server. The 'server' string follows the same format as it
 does on the server side, to allow IP/hostname/socket and port strings.
 You can connect to multiple clients as well, to do that you could run:
 
-fio --client=server2 --client=server2 <job file(s)>
+fio \-\-client=server2 \-\-client=server2 <job file(s)>
 .SH AUTHORS
 
 .B fio
-- 
1.7.10



^ permalink raw reply related	[flat|nested] 7+ messages in thread

* Re: [PATCH] Fix manpage errors
  2012-05-07 14:18 [PATCH] Fix manpage errors Martin Steigerwald
  2012-05-07 14:18 ` [PATCH 1/3] Fix spelling error in manpage Martin Steigerwald
@ 2012-05-07 15:07 ` Jens Axboe
  2012-05-09 11:40   ` Martin Steigerwald
  1 sibling, 1 reply; 7+ messages in thread
From: Jens Axboe @ 2012-05-07 15:07 UTC (permalink / raw)
  To: Martin Steigerwald; +Cc: fio@vger.kernel.org

On 05/07/2012 04:18 PM, Martin Steigerwald wrote:
> Hi Jens!
> 
> On updating Debian package to 2.0.7 lintian -IE again found some manpage
> errors.
> 
> I prepared patches to fix them.
> 
> No hurry with an upstream release as I included patches into my
> packaging.
> 
> This is my first time using git send-mail, so please forgive any
> mistakes I may have made.

Thanks, applied 1-3!

-- 
Jens Axboe


^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH] Fix manpage errors
  2012-05-07 15:07 ` [PATCH] Fix manpage errors Jens Axboe
@ 2012-05-09 11:40   ` Martin Steigerwald
  2012-05-09 11:43     ` Jens Axboe
  0 siblings, 1 reply; 7+ messages in thread
From: Martin Steigerwald @ 2012-05-09 11:40 UTC (permalink / raw)
  To: Jens Axboe; +Cc: fio@vger.kernel.org

Am Montag, 7. Mai 2012 schrieb Jens Axboe:
> On 05/07/2012 04:18 PM, Martin Steigerwald wrote:
> > Hi Jens!
> > 
> > On updating Debian package to 2.0.7 lintian -IE again found some manpage
> > errors.
> > 
> > I prepared patches to fix them.
> > 
> > No hurry with an upstream release as I included patches into my
> > packaging.
> > 
> > This is my first time using git send-mail, so please forgive any
> > mistakes I may have made.
> 
> Thanks, applied 1-3!

Thanks, dunno, why the patch mails send via git-send-email didn´t appear on 
the list as well.

Lets see whether this mail does.

-- 
Martin Steigerwald - teamix GmbH - http://www.teamix.de
gpg: 19E3 8D42 896F D004 08AC A0CA 1E10 C593 0399 AE90


^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [PATCH] Fix manpage errors
  2012-05-09 11:40   ` Martin Steigerwald
@ 2012-05-09 11:43     ` Jens Axboe
  0 siblings, 0 replies; 7+ messages in thread
From: Jens Axboe @ 2012-05-09 11:43 UTC (permalink / raw)
  To: Martin Steigerwald; +Cc: fio@vger.kernel.org

On 2012-05-09 13:40, Martin Steigerwald wrote:
> Am Montag, 7. Mai 2012 schrieb Jens Axboe:
>> On 05/07/2012 04:18 PM, Martin Steigerwald wrote:
>>> Hi Jens!
>>>
>>> On updating Debian package to 2.0.7 lintian -IE again found some manpage
>>> errors.
>>>
>>> I prepared patches to fix them.
>>>
>>> No hurry with an upstream release as I included patches into my
>>> packaging.
>>>
>>> This is my first time using git send-mail, so please forgive any
>>> mistakes I may have made.
>>
>> Thanks, applied 1-3!
> 
> Thanks, dunno, why the patch mails send via git-send-email didn�t appear on 
> the list as well.
> 
> Lets see whether this mail does.

Looks like it doesn't like you for some reason. Let me check with the
postmaster.

-- 
Jens Axboe


^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2012-05-09 11:43 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-05-07 14:18 [PATCH] Fix manpage errors Martin Steigerwald
2012-05-07 14:18 ` [PATCH 1/3] Fix spelling error in manpage Martin Steigerwald
2012-05-07 14:18   ` [PATCH 2/3] Fix manpage error warning: macro `hostname'' not defined Martin Steigerwald
2012-05-07 14:18   ` [PATCH 3/3] Fix hyphen as minus sign errors by escaping minus signs Martin Steigerwald
2012-05-07 15:07 ` [PATCH] Fix manpage errors Jens Axboe
2012-05-09 11:40   ` Martin Steigerwald
2012-05-09 11:43     ` Jens Axboe

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox