From 910de176f92450e0e598d28010e33c8d8b81883a Mon Sep 17 00:00:00 2001 From: Alex Markuze Date: Mon, 7 Apr 2025 15:35:41 +0000 Subject: [PATCH] more rm redundancy --- net/ceph/messenger_v2.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/net/ceph/messenger_v2.c b/net/ceph/messenger_v2.c index b255a76446659..e6c055747a36d 100644 --- a/net/ceph/messenger_v2.c +++ b/net/ceph/messenger_v2.c @@ -1998,8 +1998,8 @@ static int prepare_sparse_read_cont(struct ceph_connection *con) } if (ret > cursor->total_resid) { - pr_warn("%s: ret 0x%x total_resid 0x%zx resid 0x%zx\n", - __func__, ret, cursor->total_resid, cursor->resid); + pr_warn("ret 0x%x total_resid 0x%zx resid 0x%zx\n", + ret, cursor->total_resid, cursor->resid); return -EIO; } get_bvec_at(cursor, &bv); @@ -2026,7 +2026,7 @@ static int prepare_sparse_read_data(struct ceph_connection *con) { struct ceph_msg *msg = con->in_msg; - dout("%s: starting sparse read\n", __func__); + dout("starting sparse read\n"); if (WARN_ON_ONCE(!con->ops->sparse_read)) return -EOPNOTSUPP; @@ -2078,7 +2078,7 @@ static void prepare_read_enc_page(struct ceph_connection *con) { struct bio_vec bv; - dout("%s con %p i %d resid %d\n", __func__, con, con->v2.in_enc_i, + dout("con %p i %d resid %d\n", con, con->v2.in_enc_i, con->v2.in_enc_resid); WARN_ON(!con->v2.in_enc_resid); -- 2.39.5