aboutsummaryrefslogtreecommitdiffstats
path: root/fs/ceph/mds_client.c
diff options
context:
space:
mode:
authorFabian Frederick <fabf@skynet.be>2014-06-06 17:35:37 -0400
committerLinus Torvalds <torvalds@linux-foundation.org>2014-06-06 19:08:06 -0400
commitf3ae1b97be14ff10da8f02309ba04bed2ba035bc (patch)
tree8044e6737a76291589693d0cc465b8e1515d306b /fs/ceph/mds_client.c
parent844e4d66f4ec3b6b6d3bcfcfba3ade2b962771e2 (diff)
fs/ceph: replace pr_warning by pr_warn
Update the last pr_warning callsites in fs branch Signed-off-by: Fabian Frederick <fabf@skynet.be> Cc: Sage Weil <sage@inktank.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'fs/ceph/mds_client.c')
-rw-r--r--fs/ceph/mds_client.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/fs/ceph/mds_client.c b/fs/ceph/mds_client.c
index 2b4d093d0563..9a33b98cb000 100644
--- a/fs/ceph/mds_client.c
+++ b/fs/ceph/mds_client.c
@@ -2218,13 +2218,13 @@ static void handle_reply(struct ceph_mds_session *session, struct ceph_msg *msg)
2218 /* dup? */ 2218 /* dup? */
2219 if ((req->r_got_unsafe && !head->safe) || 2219 if ((req->r_got_unsafe && !head->safe) ||
2220 (req->r_got_safe && head->safe)) { 2220 (req->r_got_safe && head->safe)) {
2221 pr_warning("got a dup %s reply on %llu from mds%d\n", 2221 pr_warn("got a dup %s reply on %llu from mds%d\n",
2222 head->safe ? "safe" : "unsafe", tid, mds); 2222 head->safe ? "safe" : "unsafe", tid, mds);
2223 mutex_unlock(&mdsc->mutex); 2223 mutex_unlock(&mdsc->mutex);
2224 goto out; 2224 goto out;
2225 } 2225 }
2226 if (req->r_got_safe && !head->safe) { 2226 if (req->r_got_safe && !head->safe) {
2227 pr_warning("got unsafe after safe on %llu from mds%d\n", 2227 pr_warn("got unsafe after safe on %llu from mds%d\n",
2228 tid, mds); 2228 tid, mds);
2229 mutex_unlock(&mdsc->mutex); 2229 mutex_unlock(&mdsc->mutex);
2230 goto out; 2230 goto out;
@@ -3525,7 +3525,7 @@ static void peer_reset(struct ceph_connection *con)
3525 struct ceph_mds_session *s = con->private; 3525 struct ceph_mds_session *s = con->private;
3526 struct ceph_mds_client *mdsc = s->s_mdsc; 3526 struct ceph_mds_client *mdsc = s->s_mdsc;
3527 3527
3528 pr_warning("mds%d closed our session\n", s->s_mds); 3528 pr_warn("mds%d closed our session\n", s->s_mds);
3529 send_mds_reconnect(mdsc, s); 3529 send_mds_reconnect(mdsc, s);
3530} 3530}
3531 3531