Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit fba1acf9 authored by David Sterba's avatar David Sterba
Browse files

btrfs: use specialized page copying helpers in btrfs_clone_extent_buffer



The copy_page is usually optimized and can be faster than memcpy.

Signed-off-by: default avatarDavid Sterba <dsterba@suse.com>
parent d24ee97b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -4720,9 +4720,9 @@ struct extent_buffer *btrfs_clone_extent_buffer(struct extent_buffer *src)
		WARN_ON(PageDirty(p));
		SetPageUptodate(p);
		new->pages[i] = p;
		copy_page(page_address(p), page_address(src->pages[i]));
	}

	copy_extent_buffer(new, src, 0, 0, src->len);
	set_bit(EXTENT_BUFFER_UPTODATE, &new->bflags);
	set_bit(EXTENT_BUFFER_DUMMY, &new->bflags);