|
@@ -2218,13 +2218,13 @@ static void handle_reply(struct ceph_mds_session *session, struct ceph_msg *msg)
|
|
|
/* dup? */
|
|
|
if ((req->r_got_unsafe && !head->safe) ||
|
|
|
(req->r_got_safe && head->safe)) {
|
|
|
- pr_warning("got a dup %s reply on %llu from mds%d\n",
|
|
|
+ pr_warn("got a dup %s reply on %llu from mds%d\n",
|
|
|
head->safe ? "safe" : "unsafe", tid, mds);
|
|
|
mutex_unlock(&mdsc->mutex);
|
|
|
goto out;
|
|
|
}
|
|
|
if (req->r_got_safe && !head->safe) {
|
|
|
- pr_warning("got unsafe after safe on %llu from mds%d\n",
|
|
|
+ pr_warn("got unsafe after safe on %llu from mds%d\n",
|
|
|
tid, mds);
|
|
|
mutex_unlock(&mdsc->mutex);
|
|
|
goto out;
|
|
@@ -3525,7 +3525,7 @@ static void peer_reset(struct ceph_connection *con)
|
|
|
struct ceph_mds_session *s = con->private;
|
|
|
struct ceph_mds_client *mdsc = s->s_mdsc;
|
|
|
|
|
|
- pr_warning("mds%d closed our session\n", s->s_mds);
|
|
|
+ pr_warn("mds%d closed our session\n", s->s_mds);
|
|
|
send_mds_reconnect(mdsc, s);
|
|
|
}
|
|
|
|