ext4: use raw i_version value for ea_inode
authorEryu Guan <guaneryu@gmail.com>
Thu, 10 May 2018 15:55:31 +0000 (11:55 -0400)
committerTheodore Ts'o <tytso@mit.edu>
Thu, 10 May 2018 15:55:31 +0000 (11:55 -0400)
commite254d1afac83fd441e4051771b3d8f5eaf49fd3a
tree9ce1d6959d6131b2efc922192f08e4134bd240a8
parent3f706c8c9257e0a90d95e8a1650139aba33d0906
ext4: use raw i_version value for ea_inode

Currently, creating large xattr (e.g. 2k) in ea_inode would cause
ea_inode refcount corruption, e.g.

  Pass 4: Checking reference counts
  Extended attribute inode 13 ref count is 0, should be 1. Fix? no

This is because that we save the lower 32bit of refcount in
inode->i_version and store it in raw_inode->i_disk_version on disk.
But since commit ee73f9a52a34 ("ext4: convert to new i_version
API"), we load/store modified i_disk_version from/to disk instead of
raw value, which causes on-disk ea_inode refcount corruption.

Fix it by loading/storing raw i_version/i_disk_version, because it's
a self-managed value in this case.

Fixes: ee73f9a52a34 ("ext4: convert to new i_version API")
Cc: Tahsin Erdogan <tahsin@google.com>
Signed-off-by: Eryu Guan <guaneryu@gmail.com>
Signed-off-by: Theodore Ts'o <tytso@mit.edu>
fs/ext4/inode.c