Skip to content

Commit

Permalink
Merge pull request #12401 from kylinstorage/wip-typos
Browse files Browse the repository at this point in the history
client: fix mutex name typos

Reviewed-by: Greg Farnum <gfarnum@redhat.com>
  • Loading branch information
John Spray committed Dec 14, 2016
2 parents 8d4a95d + c5f0658 commit e25f060
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/client/Client.cc
Original file line number Diff line number Diff line change
Expand Up @@ -8396,7 +8396,7 @@ int Client::_read(Fh *f, int64_t offset, uint64_t size, bufferlist *bl)
if (f->flags & O_DIRECT)
have &= ~CEPH_CAP_FILE_CACHE;

Mutex uninline_flock("Clinet::_read_uninline_data flock");
Mutex uninline_flock("Client::_read_uninline_data flock");
Cond uninline_cond;
bool uninline_done = false;
int uninline_ret = 0;
Expand Down Expand Up @@ -8839,7 +8839,7 @@ int Client::_write(Fh *f, int64_t offset, uint64_t size, const char *buf,

ldout(cct, 10) << " snaprealm " << *in->snaprealm << dendl;

Mutex uninline_flock("Clinet::_write_uninline_data flock");
Mutex uninline_flock("Client::_write_uninline_data flock");
Cond uninline_cond;
bool uninline_done = false;
int uninline_ret = 0;
Expand Down Expand Up @@ -12218,7 +12218,7 @@ int Client::_fallocate(Fh *fh, int mode, int64_t offset, int64_t length)
if (r < 0)
return r;

Mutex uninline_flock("Clinet::_fallocate_uninline_data flock");
Mutex uninline_flock("Client::_fallocate_uninline_data flock");
Cond uninline_cond;
bool uninline_done = false;
int uninline_ret = 0;
Expand Down

0 comments on commit e25f060

Please sign in to comment.