diff options
Diffstat (limited to 'xlators/performance/io-threads/src/io-threads.h')
-rw-r--r-- | xlators/performance/io-threads/src/io-threads.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/xlators/performance/io-threads/src/io-threads.h b/xlators/performance/io-threads/src/io-threads.h index 73a76fa8fe2..9798a09ed1d 100644 --- a/xlators/performance/io-threads/src/io-threads.h +++ b/xlators/performance/io-threads/src/io-threads.h @@ -56,7 +56,6 @@ struct iot_request { }; struct iot_worker { - struct iot_worker *next, *prev; struct list_head rqlist; /* List of requests assigned to me. */ struct iot_conf *conf; int64_t q,dq; @@ -77,7 +76,7 @@ struct iot_file { struct iot_conf { int32_t thread_count; int32_t misc_thread_index; /* Used to schedule the miscellaneous calls like checksum */ - struct iot_worker workers; + struct iot_worker ** workers; struct iot_file files; pthread_mutex_t files_lock; |