• Alex Elder's avatar
    libceph: slightly defer registering osd request · dc4b870c
    Alex Elder authored
    One of the first things ceph_osdc_start_request() does is register
    the request.  It then acquires the osd client's map semaphore and
    request mutex and proceeds to map and send the request.
    
    There is no reason the request has to be registered before acquiring
    the map semaphore.  So hold off doing so until after the map
    semaphore is held.
    
    Since register_request() is nothing more than a wrapper around
    __register_request(), call the latter function instead, after
    acquiring the request mutex.
    
    That leaves register_request() unused, so get rid of it.
    
    This partially resolves:
        http://tracker.ceph.com/issues/4392Signed-off-by: default avatarAlex Elder <elder@inktank.com>
    Reviewed-off-by: default avatarSage Weil <sage@inktank.com>
    dc4b870c
osd_client.c 58 KB