Lines Matching defs:old_rl
711 * @old_rl: optional runlist in which to insert @attr's runlist
713 * It is up to the caller to serialize access to the runlist @old_rl.
718 * If @old_rl is not NULL, decompressed runlist is inserted into the
719 * appropriate place in @old_rl and the resultant, combined runlist is
720 * returned. The original @old_rl is deallocated.
722 * On error, return -errno. @old_rl is left unmodified in that case.
736 const ATTR_RECORD *attr, runlist_element *old_rl)
770 return old_rl;
790 if (((rlpos + 3) * sizeof(*old_rl)) > rlsize) {
947 if (!old_rl) {
953 old_rl = ntfs_runlists_merge(old_rl, rl);
954 if (!IS_ERR(old_rl))
955 return old_rl;
958 return old_rl;