mirror of
https://github.com/torvalds/linux.git
synced 2024-11-11 06:31:49 +00:00
ringtest: support test specific parameters
Add a new flag for passing test-specific parameters. Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
This commit is contained in:
parent
fb9de97047
commit
a49795054a
@ -20,6 +20,7 @@
|
||||
int runcycles = 10000000;
|
||||
int max_outstanding = INT_MAX;
|
||||
int batch = 1;
|
||||
int param = 0;
|
||||
|
||||
bool do_sleep = false;
|
||||
bool do_relax = false;
|
||||
@ -246,6 +247,11 @@ static const struct option longopts[] = {
|
||||
.has_arg = required_argument,
|
||||
.val = 'b',
|
||||
},
|
||||
{
|
||||
.name = "param",
|
||||
.has_arg = required_argument,
|
||||
.val = 'p',
|
||||
},
|
||||
{
|
||||
.name = "sleep",
|
||||
.has_arg = no_argument,
|
||||
@ -274,6 +280,7 @@ static void help(void)
|
||||
" [--run-cycles C (default: %d)]"
|
||||
" [--batch b]"
|
||||
" [--outstanding o]"
|
||||
" [--param p]"
|
||||
" [--sleep]"
|
||||
" [--relax]"
|
||||
" [--exit]"
|
||||
@ -328,6 +335,12 @@ int main(int argc, char **argv)
|
||||
assert(c > 0 && c < INT_MAX);
|
||||
max_outstanding = c;
|
||||
break;
|
||||
case 'p':
|
||||
c = strtol(optarg, &endptr, 0);
|
||||
assert(!*endptr);
|
||||
assert(c > 0 && c < INT_MAX);
|
||||
param = c;
|
||||
break;
|
||||
case 'b':
|
||||
c = strtol(optarg, &endptr, 0);
|
||||
assert(!*endptr);
|
||||
|
@ -10,6 +10,8 @@
|
||||
|
||||
#include <stdbool.h>
|
||||
|
||||
extern int param;
|
||||
|
||||
extern bool do_exit;
|
||||
|
||||
#if defined(__x86_64__) || defined(__i386__)
|
||||
|
Loading…
Reference in New Issue
Block a user