message names

This commit is contained in:
Sage Weil 2008-04-15 09:20:05 -07:00
parent 9832048a05
commit 123aba629b
2 changed files with 2 additions and 2 deletions

View File

@ -210,7 +210,7 @@ class MClientReply : public Message {
}
const char *get_type_name() { return "creply"; }
void print(ostream& o) {
o << "creply(" << env.dst.name << "." << le64_to_cpu(st.tid);
o << "client_reply(" << env.dst.name << "." << le64_to_cpu(st.tid);
o << " = " << st.result;
if (st.result <= 0)
o << " " << strerror(-st.result);

View File

@ -195,7 +195,7 @@ public:
const char *get_type_name() { return "creq"; }
void print(ostream& out) {
out << "clientreq(" << get_client()
out << "client_request(" << get_client()
<< "." << get_tid()
<< " " << ceph_mds_op_name(get_op());
//if (!get_filepath().empty())