https://bugzilla.kernel.org/show_bug.cgi?id=202897 --- Comment #4 from phoonchiang (389387252@xxxxxx) --- The following patch can fix this bug, but i'm not sure it is the best way to fix it. diff --git a/fs/ext4/xattr.c b/fs/ext4/xattr.c index 86ed9c6..fd2ebba 100644 --- a/fs/ext4/xattr.c +++ b/fs/ext4/xattr.c @@ -1695,7 +1695,7 @@ static int ext4_xattr_set_entry(struct ext4_xattr_info *i, /* No failures allowed past this point. */ - if (!s->not_found && here->e_value_size && here->e_value_offs) { + if (!s->not_found && here->e_value_size && here->e_value_offs && !here->e_value_inum) { /* Remove the old value. */ void *first_val = s->base + min_offs; size_t offs = le16_to_cpu(here->e_value_offs); -- You are receiving this mail because: You are watching the assignee of the bug.