* Re: [patch 1/2] add -h option to queuelat
[not found] ` <20180904115700.461458689@redhat.com>
@ 2018-09-19 14:39 ` John Kacur
0 siblings, 0 replies; 2+ messages in thread
From: John Kacur @ 2018-09-19 14:39 UTC (permalink / raw)
To: Marcelo Tosatti; +Cc: Linux RT Users
On Tue, 4 Sep 2018, Marcelo Tosatti wrote:
> Add -h (help) option to queuelat, which lists all
> options.
>
> Signed-off-by: Marcelo Tosatti <mtosatti@redhat.com>
>
> ---
> src/queuelat/README | 1 +
> src/queuelat/queuelat.c | 17 ++++++++++++++++-
> 2 files changed, 17 insertions(+), 1 deletion(-)
>
> Index: rt-tests/src/queuelat/README
> ===================================================================
> --- rt-tests.orig/src/queuelat/README 2018-09-03 16:31:38.578945651 -0300
> +++ rt-tests/src/queuelat/README 2018-09-03 16:31:56.083000015 -0300
> @@ -51,6 +51,7 @@
> mpps(million-packet-per-sec): million packets per second (float).
> tsc_freq_mhz: TSC frequency in MHz, as measured by TSC PIT calibration
> (search for "Detected XXX MHz processor" in dmesg, and use the integer part).
> +timeout: timeout (in seconds).
>
> How it works
> ============
> Index: rt-tests/src/queuelat/queuelat.c
> ===================================================================
> --- rt-tests.orig/src/queuelat/queuelat.c 2018-09-03 16:31:38.578945651 -0300
> +++ rt-tests/src/queuelat/queuelat.c 2018-09-03 16:31:56.084000018 -0300
> @@ -532,6 +532,18 @@
> return nr_packets_drain_per_block;
> }
>
> +
> +void print_help(void)
> +{
> + printf("usage: queuelat [options]\n");
> + printf("-h show this help menu\n");
> + printf("-m max-queue-len (maximum latency allowed, in nanoseconds) (int)\n");
> + printf("-c cycles-per-packet (number of cycles to process one packet (int)\n");
> + printf("-p million-packet-per-sec (million packets per second) (float)\n");
> + printf("-f tsc-freq-mhz (TSC frequency in MHz) (float)\n");
> + printf("-t timeout (timeout, in seconds) (int)\n");
> +}
> +
> int main(int argc, char **argv)
> {
> double tsc_freq_mhz;
> @@ -549,7 +561,7 @@
>
> opterr = 0;
>
> - while ((c = getopt (argc, argv, "m:c:p:f:t:q:")) != -1)
> + while ((c = getopt (argc, argv, "m:c:p:f:t:q:h")) != -1)
> switch (c)
> {
> case 'm':
> @@ -570,6 +582,9 @@
> case 'q':
> qvalue = optarg;
> break;
> + case 'h':
> + print_help();
> + return 0;
> case '?':
> if (optopt == 'm' || optopt == 'c' || optopt == 'p' ||
> optopt == 'f' || optopt == 't' || optopt == 'q')
>
>
>
Signed-off-by: John Kacur <jkacur@redhat.com
^ permalink raw reply [flat|nested] 2+ messages in thread
* Re: [patch 2/2] Add queuelat manpage
[not found] ` <20180904115701.634017140@redhat.com>
@ 2018-09-19 14:41 ` John Kacur
0 siblings, 0 replies; 2+ messages in thread
From: John Kacur @ 2018-09-19 14:41 UTC (permalink / raw)
To: Marcelo Tosatti; +Cc: Linux RT Users
On Tue, 4 Sep 2018, Marcelo Tosatti wrote:
> Add a man page for queuelat, with a short introduction
> and description for each option.
>
> Signed-off-by: Marcelo Tosatti <mtosatti@redhat.com>
>
> ---
> src/queuelat/queuelat.8 | 59 ++++++++++++++++++++++++++++++++++++++++++++++++
> 1 file changed, 59 insertions(+)
>
> Index: rt-tests/src/queuelat/queuelat.8
> ===================================================================
> --- /dev/null 1970-01-01 00:00:00.000000000 +0000
> +++ rt-tests/src/queuelat/queuelat.8 2018-09-03 17:55:39.956071513 -0300
> @@ -0,0 +1,59 @@
> +.\" Hey, EMACS: -*- nroff -*-
> +.TH QUEUELAT 8 "Sept 3, 2018"
> +.\" Please adjust this date whenever revising the manpage.
> +.\"
> +.\" Some roff macros, for reference:
> +.\" .nh disable hyphenation
> +.\" .hy enable hyphenation
> +.\" .ad l left justify
> +.\" .ad b justify to both left and right margins
> +.\" .nf disable filling
> +.\" .fi enable filling
> +.\" .br insert line break
> +.\" .sp <n> insert n+1 empty lines
> +.\" for manpage-specific macros, see man(7)
> +.SH NAME
> +queuelat \- Queue latency test program
> +.SH SYNOPSIS
> +.B queuelat
> +.RI "[\-h] [\-m " max-queue-len "] [\-c " cycles-per-packet "] [\-p " mpps "] [\-f " tsc-freq "] [\-t " timeout "] \
> +
> +.SH DESCRIPTION
> +queuelat simulates a network queue checking for latency
> +violations in packet processing.
> +
> +.SH OPTIONS
> +A summary of options is included below.
> +.TP
> +.B \-h
> +Show help
> +.br
> +.TP
> +.B \-m max-queue-len
> +Maximum allowed latency, in nanoseconds. If latency to process
> +.br
> +any packet exceeds this value, the program quits,
> +writing
> +.br
> +a message to the trace buffer.
> +.TP
> +.B \-c cycles-per-packet
> +Estimated number of cycles it takes to process one packet.
> +.br
> +This value should come from the envisioned packet
> +.br
> +forwarding application being simulated.
> +.TP
> +.B \-p mpps
> +Million packets per second that arrive for processing.
> +.TP
> +.B \-f tsc-freq-mhz
> +TSC frequency in MHz.
> +.TP
> +.B \-t timeout
> +Timeout in seconds to quit the program.
> +
> +
> +.SH AUTHOR
> +queuelat was written by Marcelo Tosatti <mtosatti@redhat.com>
> +.br
>
>
>
Signed-off-by: John Kacur <jkacur@redhat.com>
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2018-09-19 20:19 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <20180904115633.410153367@redhat.com>
[not found] ` <20180904115700.461458689@redhat.com>
2018-09-19 14:39 ` [patch 1/2] add -h option to queuelat John Kacur
[not found] ` <20180904115701.634017140@redhat.com>
2018-09-19 14:41 ` [patch 2/2] Add queuelat manpage John Kacur
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).