diff options
author | Greg Farnum <greg@inktank.com> | 2014-04-08 01:05:49 +0200 |
---|---|---|
committer | Greg Farnum <greg@inktank.com> | 2014-04-08 02:00:18 +0200 |
commit | e800bfa918f9ec7849fc01536d6a753f609114e5 (patch) | |
tree | ff91da94e97d70a9fee460193e0a1f573a8940ef /src/mds/Server.cc | |
parent | MDCache: fix users of active_requests for use of shared_ptr (diff) | |
download | ceph-e800bfa918f9ec7849fc01536d6a753f609114e5.tar.xz ceph-e800bfa918f9ec7849fc01536d6a753f609114e5.zip |
Locker: remove Mutation param from xlock_import
It's not used.
Signed-off-by: Greg Farnum <greg@inktank.com>
Diffstat (limited to '')
-rw-r--r-- | src/mds/Server.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mds/Server.cc b/src/mds/Server.cc index a0eda7ac999..2f45af98e81 100644 --- a/src/mds/Server.cc +++ b/src/mds/Server.cc @@ -6427,7 +6427,7 @@ void Server::_rename_apply(MDRequestRef& mdr, CDentry *srcdn, CDentry *destdn, C ++i) if ((*i)->get_parent() == destdnl->get_inode() && !(*i)->is_locallock()) - mds->locker->xlock_import(*i, mdr); + mds->locker->xlock_import(*i); // hack: fix auth bit in->state_set(CInode::STATE_AUTH); |