summaryrefslogtreecommitdiffstats
path: root/fs/xfs/xfs_iomap.c
diff options
context:
space:
mode:
authorChristoph Hellwig <hch@lst.de>2024-04-30 14:58:22 +0200
committerChandan Babu R <chandanbabu@kernel.org>2024-05-03 11:15:03 +0530
commitcc3c92e7e79eb5f7f3ec4d5790ade384b7d294f7 (patch)
tree6f14dcd434649cfd773a00d02235ce41652bbd9a /fs/xfs/xfs_iomap.c
parentf7b9ee784511920545558db85da24d022fb2805f (diff)
downloadlinux-cc3c92e7e79eb5f7f3ec4d5790ade384b7d294f7.tar.gz
linux-cc3c92e7e79eb5f7f3ec4d5790ade384b7d294f7.tar.bz2
linux-cc3c92e7e79eb5f7f3ec4d5790ade384b7d294f7.zip
xfs: xfs_quota_unreserve_blkres can't fail
Unreserving quotas can't fail due to quota limits, and we'll notice a shut down file system a bit later in all the callers anyway. Return void and remove the error checking and propagation in the callers. Signed-off-by: Christoph Hellwig <hch@lst.de> Reviewed-by: "Darrick J. Wong" <djwong@kernel.org> Signed-off-by: Chandan Babu R <chandanbabu@kernel.org>
Diffstat (limited to 'fs/xfs/xfs_iomap.c')
-rw-r--r--fs/xfs/xfs_iomap.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/xfs/xfs_iomap.c b/fs/xfs/xfs_iomap.c
index f5d0ed45721b..3db93b876de3 100644
--- a/fs/xfs/xfs_iomap.c
+++ b/fs/xfs/xfs_iomap.c
@@ -1232,8 +1232,8 @@ xfs_buffered_write_delalloc_punch(
loff_t offset,
loff_t length)
{
- return xfs_bmap_punch_delalloc_range(XFS_I(inode), offset,
- offset + length);
+ xfs_bmap_punch_delalloc_range(XFS_I(inode), offset, offset + length);
+ return 0;
}
static int