aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIlya Dryomov <idryomov@gmail.com>2016-02-17 14:04:08 -0500
committerIlya Dryomov <idryomov@gmail.com>2016-02-24 14:28:31 -0500
commite7a88e82fe380459b864e05b372638aeacb0f52d (patch)
tree5ac73053add9decef9f5ec7fc6d769e1bb6672d8
parent81f70ba233d5f660e1ea5fe23260ee323af5d53a (diff)
libceph: don't bail early from try_read() when skipping a message
The contract between try_read() and try_write() is that when called each processes as much data as possible. When instructed by osd_client to skip a message, try_read() is violating this contract by returning after receiving and discarding a single message instead of checking for more. try_write() then gets a chance to write out more requests, generating more replies/skips for try_read() to handle, forcing the messenger into a starvation loop. Cc: stable@vger.kernel.org # 3.10+ Reported-by: Varada Kari <Varada.Kari@sandisk.com> Signed-off-by: Ilya Dryomov <idryomov@gmail.com> Tested-by: Varada Kari <Varada.Kari@sandisk.com> Reviewed-by: Alex Elder <elder@linaro.org>
-rw-r--r--net/ceph/messenger.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/net/ceph/messenger.c b/net/ceph/messenger.c
index 9cfedf565f5b..fec20819a5ea 100644
--- a/net/ceph/messenger.c
+++ b/net/ceph/messenger.c
@@ -2337,7 +2337,7 @@ static int read_partial_message(struct ceph_connection *con)
2337 con->in_base_pos = -front_len - middle_len - data_len - 2337 con->in_base_pos = -front_len - middle_len - data_len -
2338 sizeof(m->footer); 2338 sizeof(m->footer);
2339 con->in_tag = CEPH_MSGR_TAG_READY; 2339 con->in_tag = CEPH_MSGR_TAG_READY;
2340 return 0; 2340 return 1;
2341 } else if ((s64)seq - (s64)con->in_seq > 1) { 2341 } else if ((s64)seq - (s64)con->in_seq > 1) {
2342 pr_err("read_partial_message bad seq %lld expected %lld\n", 2342 pr_err("read_partial_message bad seq %lld expected %lld\n",
2343 seq, con->in_seq + 1); 2343 seq, con->in_seq + 1);
@@ -2363,7 +2363,7 @@ static int read_partial_message(struct ceph_connection *con)
2363 sizeof(m->footer); 2363 sizeof(m->footer);
2364 con->in_tag = CEPH_MSGR_TAG_READY; 2364 con->in_tag = CEPH_MSGR_TAG_READY;
2365 con->in_seq++; 2365 con->in_seq++;
2366 return 0; 2366 return 1;
2367 } 2367 }
2368 2368
2369 BUG_ON(!con->in_msg); 2369 BUG_ON(!con->in_msg);