• Alex Elder's avatar
    libceph: don't require r_num_pages for bio requests · 9cbb1d72
    Alex Elder authored
    There is a check in the completion path for osd requests that
    ensures the number of pages allocated is enough to hold the amount
    of incoming data expected.
    
    For bio requests coming from rbd the "number of pages" is not really
    meaningful (although total length would be).  So stop requiring that
    nr_pages be supplied for bio requests.  This is done by checking
    whether the pages pointer is null before checking the value of
    nr_pages.
    
    Note that this value is passed on to the messenger, but there it's
    only used for debugging--it's never used for validation.
    
    While here, change another spot that used r_pages in a debug message
    inappropriately, and also invalidate the r_con_filling_msg pointer
    after dropping a reference to it.
    
    This resolves:
        http://tracker.ceph.com/issues/3875Signed-off-by: default avatarAlex Elder <elder@inktank.com>
    Reviewed-by: default avatarJosh Durgin <josh.durgin@inktank.com>
    9cbb1d72
osd_client.c 54.8 KB