X-Git-Url: https://git.kernel.dk/?p=fio.git;a=blobdiff_plain;f=gfio.c;h=ebfa4b9de7dcd752926baaf00d66836d60caa334;hp=157dd667f4ed928aca615626aa93f39deb4f4a4c;hb=89e5fad91bc33f1687cca6b1bf5aa3084c424650;hpb=a52766160d7f2a937c74d4adee1819ef00467d4b diff --git a/gfio.c b/gfio.c index 157dd667..ebfa4b9d 100644 --- a/gfio.c +++ b/gfio.c @@ -154,16 +154,18 @@ static void gfio_disk_util_op(struct fio_client *client, struct fio_net_cmd *cmd fio_client_ops.disk_util(client, cmd); } -static void gfio_thread_status_op(struct fio_net_cmd *cmd) +static void gfio_thread_status_op(struct fio_client *client, + struct fio_net_cmd *cmd) { printf("gfio_thread_status_op called\n"); - fio_client_ops.thread_status(cmd); + fio_client_ops.thread_status(client, cmd); } -static void gfio_group_stats_op(struct fio_net_cmd *cmd) +static void gfio_group_stats_op(struct fio_client *client, + struct fio_net_cmd *cmd) { printf("gfio_group_stats_op called\n"); - fio_client_ops.group_stats(cmd); + fio_client_ops.group_stats(client, cmd); } static void gfio_update_eta(struct jobs_eta *je)