]> git.baikalelectronics.ru Git - kernel.git/commit
xfs: format log items write directly into the linear CIL buffer
authorChristoph Hellwig <hch@infradead.org>
Fri, 13 Dec 2013 00:34:02 +0000 (11:34 +1100)
committerDave Chinner <david@fromorbit.com>
Fri, 13 Dec 2013 00:34:02 +0000 (11:34 +1100)
commit9c6c4e38673ca736468644987e8b782641c9668e
tree4325938342c4dece835e387e323106db53fe137d
parentb7d9238c371ae821c1b78a63ea77d1ea9f7806ab
xfs: format log items write directly into the linear CIL buffer

Instead of setting up pointers to memory locations in iop_format which then
get copied into the CIL linear buffer after return move the copy into
the individual inode items.  This avoids the need to always have a memory
block in the exact same layout that gets written into the log around, and
allow the log items to be much more flexible in their in-memory layouts.

The only caveat is that we need to properly align the data for each
iovec so that don't have structures misaligned in subsequent iovecs.

Note that all log item format routines now need to be careful to modify
the copy of the item that was placed into the CIL after calls to
xlog_copy_iovec instead of the in-memory copy.

Signed-off-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Dave Chinner <dchinner@redhat.com>
Signed-off-by: Dave Chinner <david@fromorbit.com>
fs/xfs/xfs_buf_item.c
fs/xfs/xfs_dquot_item.c
fs/xfs/xfs_extfree_item.c
fs/xfs/xfs_icreate_item.c
fs/xfs/xfs_inode_item.c
fs/xfs/xfs_log.h
fs/xfs/xfs_log_cil.c
fs/xfs/xfs_trans.h