ubifs: Fix synced_i_size calculation for xattr inodes
authorRichard Weinberger <richard@nod.at>
Mon, 11 Jun 2018 22:52:28 +0000 (00:52 +0200)
committerRichard Weinberger <richard@nod.at>
Tue, 14 Aug 2018 22:06:15 +0000 (00:06 +0200)
In ubifs_jnl_update() we sync parent and child inodes to the flash,
in case of xattrs, the parent inode (AKA host inode) has a non-zero
data_len. Therefore we need to adjust synced_i_size too.

This issue was reported by ubifs self tests unter a xattr related work
load.
UBIFS error (ubi0:0 pid 1896): dbg_check_synced_i_size: ui_size is 4, synced_i_size is 0, but inode is clean
UBIFS error (ubi0:0 pid 1896): dbg_check_synced_i_size: i_ino 65, i_mode 0x81a4, i_size 4

Cc: <stable@vger.kernel.org>
Fixes: 1e51764a3c2a ("UBIFS: add new flash file system")
Signed-off-by: Richard Weinberger <richard@nod.at>
fs/ubifs/journal.c

index 07b4956e042522e684e3dec9b36909fd46c83f83..c83041891cefa5dcdeb8ca326df49a55a21d94cc 100644 (file)
@@ -664,6 +664,11 @@ int ubifs_jnl_update(struct ubifs_info *c, const struct inode *dir,
        spin_lock(&ui->ui_lock);
        ui->synced_i_size = ui->ui_size;
        spin_unlock(&ui->ui_lock);
+       if (xent) {
+               spin_lock(&host_ui->ui_lock);
+               host_ui->synced_i_size = host_ui->ui_size;
+               spin_unlock(&host_ui->ui_lock);
+       }
        mark_inode_clean(c, ui);
        mark_inode_clean(c, host_ui);
        return 0;