From: Bruce Cran Date: Wed, 10 Oct 2012 14:17:44 +0000 (-0600) Subject: Fix UDP acronym X-Git-Tag: fio-2.0.10~5 X-Git-Url: https://git.kernel.dk/?a=commitdiff_plain;h=f5cc3d0ea8acf13c8e722da6c2d485889968d132;p=fio.git Fix UDP acronym It's 'User', not 'Unreliable'. Signed-off-by: Jens Axboe --- diff --git a/HOWTO b/HOWTO index cdff07a2..aa06fd5d 100644 --- a/HOWTO +++ b/HOWTO @@ -1327,7 +1327,7 @@ that defines them is selected. [net] proto=str The network protocol to use. Accepted values are: tcp Transmission control protocol - udp Unreliable datagram protocol + udp User datagram protocol unix UNIX domain socket When the protocol is TCP or UDP, the port must also be given, diff --git a/engines/net.c b/engines/net.c index cf6025f1..7354d310 100644 --- a/engines/net.c +++ b/engines/net.c @@ -79,7 +79,7 @@ static struct fio_option options[] = { }, { .ival = "udp", .oval = FIO_TYPE_UDP, - .help = "Unreliable Datagram Protocol", + .help = "User Datagram Protocol", }, { .ival = "unix", .oval = FIO_TYPE_UNIX, diff --git a/fio.1 b/fio.1 index 145b547e..fad0ae4f 100644 --- a/fio.1 +++ b/fio.1 @@ -1073,7 +1073,7 @@ The network protocol to use. Accepted values are: Transmission control protocol .TP .B udp -Unreliable datagram protocol +User datagram protocol .TP .B unix UNIX domain socket