client/server: convert ss_data to use an offset instead of fixed position
[fio.git] / stat.h
diff --git a/stat.h b/stat.h
index 3ce821a701a11f8c8149e3de0b889252cb8e7735..5fa20f7441010d0d6f9c8d0862ad0583c4357b0c 100644 (file)
--- a/stat.h
+++ b/stat.h
@@ -262,11 +262,21 @@ struct thread_stat {
 
        union {
                uint64_t *ss_iops_data;
+               /*
+                * For FIO_NET_CMD_TS, the pointed to data will temporarily
+                * be stored at this offset from the start of the payload.
+                */
+               uint64_t ss_iops_data_offset;
                uint64_t pad4;
        };
 
        union {
                uint64_t *ss_bw_data;
+               /*
+                * For FIO_NET_CMD_TS, the pointed to data will temporarily
+                * be stored at this offset from the start of the payload.
+                */
+               uint64_t ss_bw_data_offset;
                uint64_t pad5;
        };