Skip to content

Commit

Permalink
Merge pull request #7707 from xiexingguo/xxg-wip-14815
Browse files Browse the repository at this point in the history
osd: filestore: fix wrong scope of result code for error cases during mount

Reviewed-by: Sage Weil <sage@redhat.com>
  • Loading branch information
liewegas committed Mar 11, 2016
2 parents 4adeb41 + 7be19c2 commit 56fe749
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions src/os/filestore/FileStore.cc
Original file line number Diff line number Diff line change
Expand Up @@ -1466,6 +1466,7 @@ int FileStore::mount()

op_fd = read_op_seq(&initial_op_seq);
if (op_fd < 0) {
ret = op_fd;
derr << "FileStore::mount: read_op_seq failed" << dendl;
goto close_current_fd;
}
Expand All @@ -1482,6 +1483,7 @@ int FileStore::mount()
// from it.
int r = ::creat(nosnapfn, 0644);
if (r < 0) {
ret = -errno;
derr << "FileStore::mount: failed to create current/nosnap" << dendl;
goto close_current_fd;
}
Expand Down

0 comments on commit 56fe749

Please sign in to comment.