mirror of
https://github.com/matrix-construct/construct
synced 2024-12-26 15:33:54 +01:00
ircd::db: Disable AIO for fsync related for now.
This commit is contained in:
parent
58d80ddc53
commit
731c154b19
1 changed files with 24 additions and 6 deletions
30
ircd/db.cc
30
ircd/db.cc
|
@ -4432,7 +4432,10 @@ noexcept try
|
|||
};
|
||||
#endif
|
||||
|
||||
fs::fdsync(fd);
|
||||
//TODO: AIO fdsync() throwing -EINVAL.
|
||||
fs::fsync_opts opts;
|
||||
opts.use_aio = false;
|
||||
fs::fdsync(fd, opts);
|
||||
return Status::OK();
|
||||
}
|
||||
catch(const fs::error &e)
|
||||
|
@ -4478,7 +4481,10 @@ noexcept try
|
|||
};
|
||||
#endif
|
||||
|
||||
fs::fdsync(fd);
|
||||
//TODO: AIO fdsync() throwing -EINVAL.
|
||||
fs::fsync_opts opts;
|
||||
opts.use_aio = false;
|
||||
fs::fdsync(fd, opts);
|
||||
return Status::OK();
|
||||
}
|
||||
catch(const fs::error &e)
|
||||
|
@ -4522,7 +4528,10 @@ noexcept try
|
|||
};
|
||||
#endif
|
||||
|
||||
fs::fsync(fd);
|
||||
//TODO: AIO fdsync() throwing -EINVAL.
|
||||
fs::fsync_opts opts;
|
||||
opts.use_aio = false;
|
||||
fs::fsync(fd, opts);
|
||||
return Status::OK();
|
||||
}
|
||||
catch(const fs::error &e)
|
||||
|
@ -6595,7 +6604,10 @@ noexcept try
|
|||
};
|
||||
#endif
|
||||
|
||||
fs::fsync(fd);
|
||||
//TODO: AIO fdsync() throwing -EINVAL.
|
||||
fs::fsync_opts opts;
|
||||
opts.use_aio = false;
|
||||
fs::fsync(fd, opts);
|
||||
return Status::OK();
|
||||
}
|
||||
catch(const fs::error &e)
|
||||
|
@ -6641,7 +6653,10 @@ noexcept try
|
|||
};
|
||||
#endif
|
||||
|
||||
fs::fdsync(fd);
|
||||
//TODO: AIO fdsync() throwing -EINVAL.
|
||||
fs::fsync_opts opts;
|
||||
opts.use_aio = false;
|
||||
fs::fdsync(fd, opts);
|
||||
return Status::OK();
|
||||
}
|
||||
catch(const fs::error &e)
|
||||
|
@ -6687,7 +6702,10 @@ noexcept try
|
|||
};
|
||||
#endif
|
||||
|
||||
fs::fdsync(fd);
|
||||
//TODO: AIO fdsync() throwing -EINVAL.
|
||||
fs::fsync_opts opts;
|
||||
opts.use_aio = false;
|
||||
fs::fdsync(fd, opts);
|
||||
return Status::OK();
|
||||
}
|
||||
catch(const fs::error &e)
|
||||
|
|
Loading…
Reference in a new issue