From: Xavier Roche Date: Sat, 14 Feb 2015 11:02:50 +0000 (+0100) Subject: Minor: added owner to debugging output in ceph_flock() X-Git-Tag: v9.0.0~187^2~2 X-Git-Url: http://git-server-git.apps.pok.os.sepia.ceph.com/?a=commitdiff_plain;h=d231e8b8cc6d17148977332d56aecfe816cbd0d3;p=ceph.git Minor: added owner to debugging output in ceph_flock() --- diff --git a/src/client/Client.cc b/src/client/Client.cc index ca3186a40861..9118dc2c9865 100644 --- a/src/client/Client.cc +++ b/src/client/Client.cc @@ -5734,6 +5734,7 @@ int Client::flock(int fd, int operation, uint64_t owner) tout(cct) << "flock" << std::endl; tout(cct) << fd << std::endl; tout(cct) << operation << std::endl; + tout(cct) << owner << std::endl; Fh *f = get_filehandle(fd); if (!f) return -EBADF;