Remove unused function ntfs_rl_merge. (Thanks to Adrian Bunk for spoting it)

(Logical change 1.621)
edge.strict_endians
(none)!yura 2004-10-30 12:47:27 +00:00
parent 6e0d6ad83a
commit 415693011c
1 changed files with 0 additions and 25 deletions

View File

@ -138,31 +138,6 @@ static __inline__ void __ntfs_rl_merge(runlist_element *dst,
dst->length += src->length;
}
/**
* Internal:
*
* ntfs_rl_merge - test if two runlists can be joined together and merge them
* @dst: original, destination runlist
* @src: new runlist to merge with @dst
*
* Test if two runlists can be joined together. For this, their VCNs and LCNs
* must be adjacent. If they can be merged, perform the merge, writing into
* the destination runlist @dst.
*
* Return: TRUE Success, the runlists have been merged.
* FALSE Failure, the runlists cannot be merged and have not been
* modified.
*/
static __inline__ BOOL ntfs_rl_merge(runlist_element *dst,
runlist_element *src)
{
BOOL merge = ntfs_rl_are_mergeable(dst, src);
if (merge)
__ntfs_rl_merge(dst, src);
return merge;
}
/**
* Internal:
*