]> rtime.felk.cvut.cz Git - linux-imx.git/commit
Btrfs: log ram bytes properly
authorJosef Bacik <jbacik@fusionio.com>
Thu, 4 Apr 2013 18:31:27 +0000 (14:31 -0400)
committerJosef Bacik <jbacik@fusionio.com>
Mon, 6 May 2013 19:54:33 +0000 (15:54 -0400)
commitcc95bef635a649d595cf8d1cd4fcff5b6bf13023
treedbe8e6b5953648dbef4ce26e45f522ed73103238
parent98ad69cfd2ca8e27250af839bacda1639a7dc3a4
Btrfs: log ram bytes properly

When logging changed extents I was logging ram_bytes as the current length,
which isn't correct, it's supposed to be the ram bytes of the original extent.
This is for compression where even if we split the extent we need to know the
ram bytes so when we uncompress the extent we know how big it will be.  This was
still working out right with compression for some reason but I think we were
getting lucky.  It was definitely off for prealloc which is why I noticed it,
btrfsck was complaining about it.  With this patch btrfsck no longer complains
after a log replay.  Thanks,

Signed-off-by: Josef Bacik <jbacik@fusionio.com>
fs/btrfs/extent_map.h
fs/btrfs/file.c
fs/btrfs/inode.c
fs/btrfs/tree-log.c