summaryrefslogtreecommitdiffstats
path: root/fs/ceph/mds_client.c
diff options
context:
space:
mode:
authorYan, Zheng2012-11-19 03:49:06 +0100
committerAlex Elder2012-12-13 15:13:07 +0100
commited75ec2cd19b47efcd292b6e23f58e56f4c5bc34 (patch)
tree570f74b490afdbe623785124ec3186ae5a012d53 /fs/ceph/mds_client.c
parentceph: Don't update i_max_size when handling non-auth cap (diff)
downloadkernel-qcow2-linux-ed75ec2cd19b47efcd292b6e23f58e56f4c5bc34.tar.gz
kernel-qcow2-linux-ed75ec2cd19b47efcd292b6e23f58e56f4c5bc34.tar.xz
kernel-qcow2-linux-ed75ec2cd19b47efcd292b6e23f58e56f4c5bc34.zip
ceph: Fix infinite loop in __wake_requests
__wake_requests() will enter infinite loop if we use it to wake requests in the session->s_waiting list. __wake_requests() deletes requests from the list and __do_request() adds requests back to the list. Signed-off-by: Yan, Zheng <zheng.z.yan@intel.com> Signed-off-by: Sage Weil <sage@inktank.com>
Diffstat (limited to 'fs/ceph/mds_client.c')
-rw-r--r--fs/ceph/mds_client.c9
1 files changed, 7 insertions, 2 deletions
diff --git a/fs/ceph/mds_client.c b/fs/ceph/mds_client.c
index 62d2342eb267..9165eb8309eb 100644
--- a/fs/ceph/mds_client.c
+++ b/fs/ceph/mds_client.c
@@ -1876,9 +1876,14 @@ finish:
static void __wake_requests(struct ceph_mds_client *mdsc,
struct list_head *head)
{
- struct ceph_mds_request *req, *nreq;
+ struct ceph_mds_request *req;
+ LIST_HEAD(tmp_list);
+
+ list_splice_init(head, &tmp_list);
- list_for_each_entry_safe(req, nreq, head, r_wait) {
+ while (!list_empty(&tmp_list)) {
+ req = list_entry(tmp_list.next,
+ struct ceph_mds_request, r_wait);
list_del_init(&req->r_wait);
__do_request(mdsc, req);
}