aboutsummaryrefslogtreecommitdiffstats
path: root/fs
diff options
context:
space:
mode:
authorChris Mason <chris.mason@oracle.com>2011-06-24 13:13:29 -0400
committerChris Mason <chris.mason@oracle.com>2011-06-24 13:13:29 -0400
commit1973f0faeb4a5f35597793c65d3c94d8fd386e10 (patch)
tree3e7e5c82f2cb27d679178e4787a583b05b661110 /fs
parente999376f094162aa425ae749aa1df95ab928d010 (diff)
Btrfs: make sure to record the transid in new inodes
When we create a new inode, we aren't filling in the field that records the transaction that last changed this inode. If we then go to fsync that inode, it will be skipped because the field isn't filled in. Signed-off-by: Chris Mason <chris.mason@oracle.com>
Diffstat (limited to 'fs')
-rw-r--r--fs/btrfs/inode.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/btrfs/inode.c b/fs/btrfs/inode.c
index 5813dec5101c..87f1e0cf26f8 100644
--- a/fs/btrfs/inode.c
+++ b/fs/btrfs/inode.c
@@ -4520,6 +4520,7 @@ static struct inode *btrfs_new_inode(struct btrfs_trans_handle *trans,
4520 inode_tree_add(inode); 4520 inode_tree_add(inode);
4521 4521
4522 trace_btrfs_inode_new(inode); 4522 trace_btrfs_inode_new(inode);
4523 btrfs_set_inode_last_trans(trans, inode);
4523 4524
4524 return inode; 4525 return inode;
4525fail: 4526fail: