Skip to content

Commit

Permalink
Add missing lock in TestFSWritableFile & a comment
Browse files Browse the repository at this point in the history
  • Loading branch information
hx235 committed Aug 22, 2022
1 parent b0048b6 commit 7c5a4d6
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions utilities/fault_injection_fs.cc
Original file line number Diff line number Diff line change
Expand Up @@ -240,6 +240,7 @@ IOStatus TestFSWritableFile::PositionedAppend(

IOStatus TestFSWritableFile::Close(const IOOptions& options,
IODebugContext* dbg) {
MutexLock l(&mutex_);
if (!fs_->IsFilesystemActive()) {
return fs_->GetError();
}
Expand Down Expand Up @@ -271,6 +272,7 @@ IOStatus TestFSWritableFile::Close(const IOOptions& options,
}

IOStatus TestFSWritableFile::Flush(const IOOptions&, IODebugContext*) {
MutexLock l(&mutex_);
if (!fs_->IsFilesystemActive()) {
return fs_->GetError();
}
Expand All @@ -282,6 +284,7 @@ IOStatus TestFSWritableFile::Flush(const IOOptions&, IODebugContext*) {

IOStatus TestFSWritableFile::Sync(const IOOptions& options,
IODebugContext* dbg) {
MutexLock l(&mutex_);
if (!fs_->IsFilesystemActive()) {
return fs_->GetError();
}
Expand All @@ -302,6 +305,7 @@ IOStatus TestFSWritableFile::Sync(const IOOptions& options,
IOStatus TestFSWritableFile::RangeSync(uint64_t offset, uint64_t nbytes,
const IOOptions& options,
IODebugContext* dbg) {
MutexLock l(&mutex_);
if (!fs_->IsFilesystemActive()) {
return fs_->GetError();
}
Expand Down
2 changes: 1 addition & 1 deletion utilities/fault_injection_fs.h
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ class TestFSWritableFile : public FSWritableFile {
};

private:
FSFileState state_;
FSFileState state_; // Need protection by mutex_
FileOptions file_opts_;
std::unique_ptr<FSWritableFile> target_;
bool writable_file_opened_;
Expand Down

0 comments on commit 7c5a4d6

Please sign in to comment.