commit | a8b3a89074f8677533cdb3843da121d697c1938c | [log] [tgz] |
---|---|---|
author | David Sterba <dsterba@suse.com> | Fri May 29 15:26:07 2020 +0200 |
committer | David Sterba <dsterba@suse.com> | Mon Jul 27 12:55:22 2020 +0200 |
tree | b211cdd6cdff7c3af52f7e0ef739b69131375514 | |
parent | 74ef00185eb864252156022ff129b01549504175 [diff] |
btrfs: scrub: remove kmap/kunmap of pages All pages that scrub uses in the scrub_block::pagev array are allocated with GFP_KERNEL and never part of any mapping, so kmap is not necessary, we only need to know the page address. In scrub_write_page_to_dev_replace we don't even need to call flush_dcache_page because of the same reason as above. Signed-off-by: David Sterba <dsterba@suse.com>