From 7589a41dc9e5b1f8b9f622be0c2970b3c697ed83 Mon Sep 17 00:00:00 2001 From: Michael Vrable Date: Wed, 16 Mar 2011 11:56:55 -0700 Subject: [PATCH] More work on the synthetic read benchmark --- nfs3/parse-synread.py | 33 +++++++++++++++++++++++++++++++++ nfs3/synreadbench.c | 24 ++++++++++++++++++++---- 2 files changed, 53 insertions(+), 4 deletions(-) create mode 100755 nfs3/parse-synread.py diff --git a/nfs3/parse-synread.py b/nfs3/parse-synread.py new file mode 100755 index 0000000..be718b8 --- /dev/null +++ b/nfs3/parse-synread.py @@ -0,0 +1,33 @@ +#!/usr/bin/python + +import struct, sys + +DATAPOINT = 'end = now_hires(); - printf("XID %d: Time = %"PRIi64"\n", xid, info->end - info->start); + d.timestamp = info->end / 1000000000; + d.latency = (info->end - info->start + 500) / 1000; /* Round off */ + //printf("XID %d: Time = %"PRIi64"\n", xid, info->end - info->start); if (info->callback != NULL) info->callback(nfs, info->user_data, msg->str + sizeof(*reply), msg->len - sizeof(*reply)); g_hash_table_remove(nfs->xid_table, key); g_free(info); + if (logfile != NULL) { + fwrite(&d, sizeof(d), 1, logfile); + fflush(logfile); + } completed++; + /* if (completed == 128 * threads) { g_main_loop_quit(main_loop); - } + } */ } static gboolean read_handler(GIOChannel *channel, @@ -298,8 +313,6 @@ static void submit_random_read(NFSConnection *nfs) static void finish_read_request(NFSConnection *nfs, gpointer user_data, const char *reply, size_t len) { - printf("Done reading inode %d\n", GPOINTER_TO_INT(user_data)); - submit_random_read(nfs); } @@ -427,12 +440,15 @@ int main(int argc, char *argv[]) bf.size = i2; g_array_append_val(bench_files, bf); } + fclose(inodes); threads = 8; if (argc > 2) threads = atoi(argv[2]); if (argc > 3) read_size = atoi(argv[3]); + if (argc > 4) + logfile = fopen(argv[4], "wb"); main_loop = g_main_loop_new(NULL, FALSE); nfs_connect("niniel.sysnet.ucsd.edu"); -- 2.20.1