Skip to content
  • NeilBrown's avatar
    md/raid5: make chunk_aligned_read() split bios more cleanly. · dd7a8f5d
    NeilBrown authored
    
    
    chunk_aligned_read() currently uses fs_bio_set - which is meant for
    filesystems to use - and loops if multiple splits are needed, which is
    not best practice.
    As this is only used for READ requests, not writes, it is unlikely
    to cause a problem.  However it is best to be consistent in how
    we split bios, and to follow the pattern used in raid1/raid10.
    
    So create a private bioset, bio_split, and use it to perform a single
    split, submitting the remainder to generic_make_request() for later
    processing.
    
    Signed-off-by: default avatarNeilBrown <neilb@suse.com>
    Signed-off-by: default avatarShaohua Li <shli@fb.com>
    dd7a8f5d