summaryrefslogtreecommitdiffstats
path: root/fs/namespace.c
diff options
context:
space:
mode:
authorChris Mason <clm@fb.com>2018-06-20 07:56:11 -0700
committerDavid Sterba <dsterba@suse.com>2018-10-15 17:23:35 +0200
commit7703bdd8d23e6ef057af3253958a793ec6066b28 (patch)
tree7adb511b8dbb2180961ea78d64d1bf79cce8ada3 /fs/namespace.c
parent818255feece6e2a432328020d78c8a81a153ce65 (diff)
downloadlinux-7703bdd8d23e6ef057af3253958a793ec6066b28.tar.gz
linux-7703bdd8d23e6ef057af3253958a793ec6066b28.tar.bz2
linux-7703bdd8d23e6ef057af3253958a793ec6066b28.zip
Btrfs: don't clean dirty pages during buffered writes
During buffered writes, we follow this basic series of steps: again: lock all the pages wait for writeback on all the pages Take the extent range lock wait for ordered extents on the whole range clean all the pages if (copy_from_user_in_atomic() hits a fault) { drop our locks goto again; } dirty all the pages release all the locks The extra waiting, cleaning and locking are there to make sure we don't modify pages in flight to the drive, after they've been crc'd. If some of the pages in the range were already dirty when the write began, and we need to goto again, we create a window where a dirty page has been cleaned and unlocked. It may be reclaimed before we're able to lock it again, which means we'll read the old contents off the drive and lose any modifications that had been pending writeback. We don't actually need to clean the pages. All of the other locking in place makes sure we don't start IO on the pages, so we can just leave them dirty for the duration of the write. Fixes: 73d59314e6ed (the original btrfs merge) CC: stable@vger.kernel.org # v4.4+ Signed-off-by: Chris Mason <clm@fb.com> Reviewed-by: David Sterba <dsterba@suse.com> Signed-off-by: David Sterba <dsterba@suse.com>
Diffstat (limited to 'fs/namespace.c')
0 files changed, 0 insertions, 0 deletions