]> git.baikalelectronics.ru Git - kernel.git/commit
ext4: inplace xattr block update fails to deduplicate blocks
authorTahsin Erdogan <tahsin@google.com>
Sun, 6 Aug 2017 02:41:42 +0000 (22:41 -0400)
committerTheodore Ts'o <tytso@mit.edu>
Sun, 6 Aug 2017 02:41:42 +0000 (22:41 -0400)
commit4a14b02b6d43d3ce70a206d28082868909b3aa35
treee6d9d86c05a0a98e625a0f0cafb1f944f3b611ac
parent0cb5927310d83e81748f4d6f69522d4f914edd37
ext4: inplace xattr block update fails to deduplicate blocks

When an xattr block has a single reference, block is updated inplace
and it is reinserted to the cache. Later, a cache lookup is performed
to see whether an existing block has the same contents. This cache
lookup will most of the time return the just inserted entry so
deduplication is not achieved.

Running the following test script will produce two xattr blocks which
can be observed in "File ACL: " line of debugfs output:

  mke2fs -b 1024 -I 128 -F -O extent /dev/sdb 1G
  mount /dev/sdb /mnt/sdb

  touch /mnt/sdb/{x,y}

  setfattr -n user.1 -v aaa /mnt/sdb/x
  setfattr -n user.2 -v bbb /mnt/sdb/x

  setfattr -n user.1 -v aaa /mnt/sdb/y
  setfattr -n user.2 -v bbb /mnt/sdb/y

  debugfs -R 'stat x' /dev/sdb | cat
  debugfs -R 'stat y' /dev/sdb | cat

This patch defers the reinsertion to the cache so that we can locate
other blocks with the same contents.

Signed-off-by: Tahsin Erdogan <tahsin@google.com>
Signed-off-by: Theodore Ts'o <tytso@mit.edu>
Reviewed-by: Andreas Dilger <adilger@dilger.ca>
fs/ext4/xattr.c