mirror of
https://github.com/torvalds/linux.git
synced 2025-12-07 20:06:24 +00:00
xfs: Support atomic write for statx
Support providing info on atomic write unit min and max for an inode. For simplicity, currently we limit the min at the FS block size. As for max, we limit also at FS block size, as there is no current method to guarantee extent alignment or granularity for regular files. Reviewed-by: "Darrick J. Wong" <djwong@kernel.org> Reviewed-by: Christoph Hellwig <hch@lst.de> Signed-off-by: John Garry <john.g.garry@oracle.com> Signed-off-by: Darrick J. Wong <djwong@kernel.org>
This commit is contained in:
committed by
Darrick J. Wong
parent
9e0933c21c
commit
6432c6e723
@@ -2115,6 +2115,13 @@ xfs_alloc_buftarg(
|
||||
btp->bt_daxdev = fs_dax_get_by_bdev(btp->bt_bdev, &btp->bt_dax_part_off,
|
||||
mp, ops);
|
||||
|
||||
if (bdev_can_atomic_write(btp->bt_bdev)) {
|
||||
btp->bt_bdev_awu_min = bdev_atomic_write_unit_min_bytes(
|
||||
btp->bt_bdev);
|
||||
btp->bt_bdev_awu_max = bdev_atomic_write_unit_max_bytes(
|
||||
btp->bt_bdev);
|
||||
}
|
||||
|
||||
/*
|
||||
* When allocating the buftargs we have not yet read the super block and
|
||||
* thus don't know the file system sector size yet.
|
||||
|
||||
Reference in New Issue
Block a user