X-Git-Url: http://git.vrable.net/?p=bluesky.git;a=blobdiff_plain;f=nfs3%2Fsynreadbench.c;h=908363fde0b99c0cbd0c215ed30de995b1f26a12;hp=762bb643869bbff07f384814332d223d36ec4b10;hb=4ad919582a62923b80e9ac9ea3159938f628016e;hpb=7589a41dc9e5b1f8b9f622be0c2970b3c697ed83 diff --git a/nfs3/synreadbench.c b/nfs3/synreadbench.c index 762bb64..908363f 100644 --- a/nfs3/synreadbench.c +++ b/nfs3/synreadbench.c @@ -37,6 +37,7 @@ FILE *logfile = NULL; +int warmup_mode = 0; int threads; int completed = 0; int read_size = 32768; @@ -211,10 +212,14 @@ static void process_reply(NFSConnection *nfs, GString *msg) } completed++; - /* - if (completed == 128 * threads) { - g_main_loop_quit(main_loop); - } */ + if (warmup_mode) { + printf("Done warming up %d\n", completed); + int scale = 1; + if (read_size > (1 << 20)) + scale = read_size / (1 << 20); + if (completed == bench_files->len * scale) + g_main_loop_quit(main_loop); + } } static gboolean read_handler(GIOChannel *channel, @@ -299,7 +304,26 @@ static void send_read_request(NFSConnection *nfs, uint64_t inum, uint64_t offset, uint64_t len); static void submit_random_read(NFSConnection *nfs) { + static int warmup_counter = 0; struct bench_file *bf; + + if (warmup_mode) { + int scale = 1; + if (read_size > (1 << 20)) { + scale = read_size / (1 << 20); + } + int filecount = bench_files->len; + printf("Warming up file %d\n", warmup_counter); + if (warmup_counter >= filecount * scale) + return; + bf = &g_array_index(bench_files, struct bench_file, + warmup_counter % filecount); + send_read_request(nfs, bf->inum, (warmup_counter / filecount) << 20, + read_size > (1 << 20) ? (1 << 20) : read_size); + warmup_counter++; + return; + } + bf = &g_array_index(bench_files, struct bench_file, g_random_int_range(0, bench_files->len)); int blocks = bf->size / read_size; @@ -420,7 +444,6 @@ int main(int argc, char *argv[]) { g_thread_init(NULL); g_set_prgname("synclient"); - g_print("Launching synthetic NFS RPC client...\n"); bench_files = g_array_new(FALSE, TRUE, sizeof(struct bench_file)); @@ -447,11 +470,16 @@ int main(int argc, char *argv[]) threads = atoi(argv[2]); if (argc > 3) read_size = atoi(argv[3]); - if (argc > 4) - logfile = fopen(argv[4], "wb"); + if (argc > 4) { + if (strcmp(argv[4], "WARMUP") == 0) { + warmup_mode = 1; + } else { + logfile = fopen(argv[4], "wb"); + } + } main_loop = g_main_loop_new(NULL, FALSE); - nfs_connect("niniel.sysnet.ucsd.edu"); + nfs_connect("vrable2.sysnet.ucsd.edu"); g_main_loop_run(main_loop);