diff options
author | Andrew Tridgell <tridge@samba.org> | 2007-05-22 04:53:05 +0000 |
---|---|---|
committer | Gerald (Jerry) Carter <jerry@samba.org> | 2007-10-10 14:52:46 -0500 |
commit | 9e1c88897c78fc04e80e463e3e85cd997fdf0772 (patch) | |
tree | 381c48a34feaa0e233839b813abe8f5f26393ea2 /source4/torture/raw | |
parent | 1a55a364012c80cb1b15b4adecdb228dc29f3a18 (diff) | |
download | samba-9e1c88897c78fc04e80e463e3e85cd997fdf0772.tar.gz samba-9e1c88897c78fc04e80e463e3e85cd997fdf0772.tar.bz2 samba-9e1c88897c78fc04e80e463e3e85cd997fdf0772.zip |
r23061: keep the RAW-BENCH-OPEN test balanced
(This used to be commit 453d6f5c58ef60599894749a513d45f1bf5f1c4e)
Diffstat (limited to 'source4/torture/raw')
-rw-r--r-- | source4/torture/raw/openbench.c | 53 |
1 files changed, 34 insertions, 19 deletions
diff --git a/source4/torture/raw/openbench.c b/source4/torture/raw/openbench.c index 908903e983..d1c2bb0aa7 100644 --- a/source4/torture/raw/openbench.c +++ b/source4/torture/raw/openbench.c @@ -40,17 +40,20 @@ static int open_retries; static char **fnames; static int num_connected; +enum open_stage {OPEN_INITIAL, OPEN_OPEN, OPEN_CLOSE}; + struct benchopen_state { TALLOC_CTX *mem_ctx; struct event_context *ev; struct smbcli_state *cli; struct smbcli_tree *tree; + enum open_stage stage; int client_num; + int old_fnum; int fnum; int file_num; int count; int lastcount; - BOOL waiting_open, waiting_close; union smb_open open_parms; union smb_close close_parms; struct smbcli_request *req_open; @@ -65,6 +68,7 @@ struct benchopen_state { }; static void next_open(struct benchopen_state *state); +static void next_operation(struct benchopen_state *state); static void reopen_connection(struct event_context *ev, struct timed_event *te, struct timeval t, void *private_data); @@ -93,7 +97,9 @@ static void reopen_connection_complete(struct composite_context *ctx) DEBUG(0,("reconnect to %s finished (%u connected)\n", state->dest_host, num_connected)); - next_open(state); + state->stage = OPEN_INITIAL; + state->fnum = -1; + next_operation(state); } @@ -127,8 +133,6 @@ static void reopen_connection(struct event_context *ev, struct timed_event *te, talloc_free(state->tree); state->tree = NULL; state->fnum = -1; - state->waiting_open = False; - state->waiting_close = False; ctx = smb_composite_connect_send(io, state->mem_ctx, state->ev); if (ctx == NULL) { @@ -165,20 +169,18 @@ static void next_open(struct benchopen_state *state) state->req_open = smb_raw_open_send(state->tree, &state->open_parms); state->req_open->async.fn = open_completed; state->req_open->async.private = state; - state->waiting_open = True; +} - if (state->fnum == -1) { - return; - } +static void next_close(struct benchopen_state *state) +{ state->close_parms.close.level = RAW_CLOSE_CLOSE; - state->close_parms.close.in.file.fnum = state->fnum; + state->close_parms.close.in.file.fnum = state->old_fnum; state->close_parms.close.in.write_time = 0; state->req_close = smb_raw_close_send(state->tree, &state->close_parms); state->req_close->async.fn = close_completed; state->req_close->async.private = state; - state->waiting_close = True; } /* @@ -190,6 +192,8 @@ static void open_completed(struct smbcli_request *req) TALLOC_CTX *tmp_ctx = talloc_new(state->mem_ctx); NTSTATUS status; + state->old_fnum = state->fnum; + status = smb_raw_open_recv(req, tmp_ctx, &state->open_parms); talloc_free(tmp_ctx); @@ -225,11 +229,8 @@ static void open_completed(struct smbcli_request *req) } state->fnum = state->open_parms.ntcreatex.out.file.fnum; - state->waiting_open = False; - if (!state->waiting_close) { - next_open(state); - } + next_operation(state); } /* @@ -262,13 +263,26 @@ static void close_completed(struct smbcli_request *req) return; } - state->waiting_close = False; + next_operation(state); +} - if (!state->waiting_open) { +static void next_operation(struct benchopen_state *state) +{ + switch (state->stage) { + case OPEN_INITIAL: + next_open(state); + state->stage = OPEN_OPEN; + break; + case OPEN_OPEN: next_open(state); + state->stage = OPEN_CLOSE; + break; + case OPEN_CLOSE: + next_close(state); + state->stage = OPEN_OPEN; + break; } -} - +} static void report_rate(struct event_context *ev, struct timed_event *te, struct timeval t, void *private_data) @@ -311,6 +325,7 @@ BOOL torture_bench_open(struct torture_context *torture) state[i].mem_ctx = talloc_new(state); state[i].client_num = i; state[i].ev = ev; + state[i].stage = OPEN_INITIAL; if (!torture_open_connection_ev(&state[i].cli, i, ev)) { return False; } @@ -339,7 +354,7 @@ BOOL torture_bench_open(struct torture_context *torture) for (i=0;i<nprocs;i++) { state[i].fnum = -1; state[i].file_num = i; - next_open(&state[i]); + next_operation(&state[i]); } tv = timeval_current(); |