diff --git a/tasks/bdev/include/bdev/bdev_tasks.h b/tasks/bdev/include/bdev/bdev_tasks.h index 34ebc841a..952b3d3d4 100644 --- a/tasks/bdev/include/bdev/bdev_tasks.h +++ b/tasks/bdev/include/bdev/bdev_tasks.h @@ -5,7 +5,7 @@ #ifndef HRUN_TASKS_BDEV_INCLUDE_BDEV_BDEV_TASKS_H_ #define HRUN_TASKS_BDEV_INCLUDE_BDEV_BDEV_TASKS_H_ -#include +// #include #include "hrun/api/hrun_client.h" #include "hrun/task_registry/task_lib.h" #include "hrun_admin/hrun_admin.h" @@ -166,7 +166,7 @@ struct WriteTask : public Task, TaskFlags { IN size_t disk_off_; /**< Offset on disk */ IN size_t size_; /**< Size in buf */ TEMP int phase_ = 0; - TEMP io_context_t ctx_ = 0; + // TEMP io_context_t ctx_ = 0; /** SHM default constructor */ HSHM_ALWAYS_INLINE explicit @@ -217,7 +217,7 @@ struct ReadTask : public Task, TaskFlags { IN size_t disk_off_; /**< Offset on disk */ IN size_t size_; /**< Size in disk buf */ TEMP int phase_ = 0; - TEMP io_context_t ctx_ = 0; + // TEMP io_context_t ctx_ = 0; /** SHM default constructor */ HSHM_ALWAYS_INLINE explicit diff --git a/tasks/posix_bdev/src/posix_bdev.cc b/tasks/posix_bdev/src/posix_bdev.cc index debd2e70a..3a73f8e02 100644 --- a/tasks/posix_bdev/src/posix_bdev.cc +++ b/tasks/posix_bdev/src/posix_bdev.cc @@ -11,7 +11,7 @@ #include #include #include -#include +// #include namespace hermes::posix_bdev {