From 57535f416523be18a928069903fae47c916a5a33 Mon Sep 17 00:00:00 2001 From: Jens Axboe Date: Wed, 9 Dec 2015 11:23:15 -0700 Subject: [PATCH] thread_options: kill converted cpu masks We can't currently convert them in cconv.c, so let's just disable them as they eat a lot of space in the thread options. Signed-off-by: Jens Axboe --- thread_options.h | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/thread_options.h b/thread_options.h index f9c15620..02c867f3 100644 --- a/thread_options.h +++ b/thread_options.h @@ -414,9 +414,14 @@ struct thread_options_pack { uint32_t stonewall; uint32_t new_group; uint32_t numjobs; + /* + * We currently can't convert these, so don't enable them + */ +#if 0 uint8_t cpumask[FIO_TOP_STR_MAX]; uint8_t verify_cpumask[FIO_TOP_STR_MAX]; uint8_t log_gz_cpumask[FIO_TOP_STR_MAX]; +#endif uint32_t cpus_allowed_policy; uint32_t iolog; uint32_t rwmixcycle; -- 2.25.1