lkml.org 
[lkml]   [2014]   [Jan]   [6]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    From
    Subject[PATCH 3.10 002/129] ceph: cleanup aborted requests when re-sending requests.
    Date
    3.10-stable review patch.  If anyone has any objections, please let me know.

    ------------------

    From: "Yan, Zheng" <zheng.z.yan@intel.com>

    commit eb1b8af33c2e42a9a57fc0a7588f4a7b255d2e79 upstream.

    Aborted requests usually get cleared when the reply is received.
    If MDS crashes, no reply will be received. So we need to cleanup
    aborted requests when re-sending requests.

    Signed-off-by: Yan, Zheng <zheng.z.yan@intel.com>
    Reviewed-by: Greg Farnum <greg@inktank.com>
    Signed-off-by: Sage Weil <sage@inktank.com>
    Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

    ---
    fs/ceph/mds_client.c | 5 ++++-
    1 file changed, 4 insertions(+), 1 deletion(-)

    --- a/fs/ceph/mds_client.c
    +++ b/fs/ceph/mds_client.c
    @@ -1840,8 +1840,11 @@ static int __do_request(struct ceph_mds_
    int mds = -1;
    int err = -EAGAIN;

    - if (req->r_err || req->r_got_result)
    + if (req->r_err || req->r_got_result) {
    + if (req->r_aborted)
    + __unregister_request(mdsc, req);
    goto out;
    + }

    if (req->r_timeout &&
    time_after_eq(jiffies, req->r_started + req->r_timeout)) {



    \
     
     \ /
      Last update: 2014-01-07 02:01    [W:3.270 / U:0.312 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site