@@ -5098,6 +5098,7 @@ void ceph_mdsc_pre_umount(struct ceph_mds_client *mdsc)
static void wait_unsafe_requests(struct ceph_mds_client *mdsc, u64 want_tid)
{
struct ceph_mds_request *req = NULL, *nextreq;
+ struct ceph_mds_session *last_session = NULL;
struct rb_node *n;
mutex_lock(&mdsc->mutex);
@@ -5117,6 +5118,14 @@ static void wait_unsafe_requests(struct ceph_mds_client *mdsc, u64 want_tid)
ceph_mdsc_get_request(req);
if (nextreq)
ceph_mdsc_get_request(nextreq);
+
+ /* send flush mdlog request to MDS */
+ if (last_session != req->r_session) {
+ send_flush_mdlog(req->r_session);
+ ceph_put_mds_session(last_session);
+ last_session = ceph_get_mds_session(req->r_session);
+ }
+
mutex_unlock(&mdsc->mutex);
dout("wait_unsafe_requests wait on %llu (want %llu)\n",
req->r_tid, want_tid);
@@ -5135,6 +5144,7 @@ static void wait_unsafe_requests(struct ceph_mds_client *mdsc, u64 want_tid)
req = nextreq;
}
mutex_unlock(&mdsc->mutex);
+ ceph_put_mds_session(last_session);
dout("wait_unsafe_requests done\n");
}
Before waiting for a request's safe reply, we will send the mdlog flush request to the relevant MDS. And this will also flush the mdlog for all the other unsafe requests in the same session, so we can record the last session and no need to flush mdlog again in the next loop. But there still have cases that it may send the mdlog flush requst twice or more, but that should be not often. URL: https://tracker.ceph.com/issues/55284 Signed-off-by: Xiubo Li <xiubli@redhat.com> --- fs/ceph/mds_client.c | 10 ++++++++++ 1 file changed, 10 insertions(+)