From: majianpeng <majianpeng@gmail.com>
To: sage <sage@inktank.com>
Cc: ceph-devel <ceph-devel@vger.kernel.org>
Subject: [PATCH 2/2] libceph: Remap notarget requests in handle_timeout.
Date: Tue, 16 Jul 2013 15:45:52 +0800 [thread overview]
Message-ID: <2013071615454946640410@gmail.com> (raw)
If __map_request failed ,the request can't send and in list req_notarget.
For those, they only remaped in func ceph_osdc_handle_map which update
the epoch of osdmap.There are some reasons like ENOMEM which can't cause
update epoch of osdmap.So the notarget requested can't remap for ever.
Add a chance in handle_timeout to remap those.
Signed-off-by: Jianpeng Ma <majianpeng@gmail.com>
---
net/ceph/osd_client.c | 36 ++++++++++++++++++++++++++++++++++++
1 file changed, 36 insertions(+)
diff --git a/net/ceph/osd_client.c b/net/ceph/osd_client.c
index 7d40a61..f0deed0 100644
--- a/net/ceph/osd_client.c
+++ b/net/ceph/osd_client.c
@@ -1355,6 +1355,41 @@ static void __send_queued(struct ceph_osd_client *osdc)
}
/*
+ * Resend any requests in the queue(req_notarget)
+ * After this function,it should call __send_queued to do
+ * real send operation
+ */
+static void __send_notarget(struct ceph_osd_client *osdc)
+{
+ struct ceph_osd_request *req, *tmp;
+ int rc, needmap = 0;
+
+ dout("__send_notarget\n");
+ list_for_each_entry_safe(req, tmp, &osdc->req_notarget,
+ r_req_lru_item) {
+ rc = __map_request(osdc, req, 0);
+ if (rc < 0)
+ dout("__send_notarget failed map, "
+ " will retry %lld\n", req->r_tid);
+ if (req->r_osd == NULL) {
+ dout("__send_notarget %p no up osds in pg\n", req);
+ needmap++;
+ } else if (rc > 0) {
+ if (!req->r_linger) {
+ dout("%p tid %llu requeued on osd%d\n", req,
+ req->r_tid,
+ req->r_osd ? req->r_osd->o_osd : -1);
+ req->r_flags |= CEPH_OSD_FLAG_RETRY;
+ }
+ }
+
+ }
+
+ if (needmap)
+ ceph_monc_request_next_osdmap(&osdc->client->monc);
+}
+
+/*
* Timeout callback, called every N seconds when 1 or more osd
* requests has been active for more than N seconds. When this
* happens, we ping all OSDs with requests who have timed out to
@@ -1403,6 +1438,7 @@ static void handle_timeout(struct work_struct *work)
}
__schedule_osd_timeout(osdc);
+ __send_notarget(osdc);
__send_queued(osdc);
mutex_unlock(&osdc->request_mutex);
up_read(&osdc->map_sem);
--
1.8.1.2
next reply other threads:[~2013-07-16 7:45 UTC|newest]
Thread overview: 3+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-07-16 7:45 majianpeng [this message]
2013-07-17 0:47 ` [PATCH 2/2] libceph: Remap notarget requests in handle_timeout Sage Weil
2013-07-17 1:30 ` majianpeng
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=2013071615454946640410@gmail.com \
--to=majianpeng@gmail.com \
--cc=ceph-devel@vger.kernel.org \
--cc=sage@inktank.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox