diff options
| author | Christoph Hellwig <[email protected]> | 2025-03-17 05:48:36 +0000 |
|---|---|---|
| committer | Carlos Maiolino <[email protected]> | 2025-03-18 13:47:45 +0000 |
| commit | b3f8f2903b8cd48b0746bf05a40b85ae4b684034 (patch) | |
| tree | bbb556184ca227edf19a0b99c9b8390423644beb /fs/xfs/xfs_rtalloc.c | |
| parent | xfs: remove the flags argument to xfs_buf_read_uncached (diff) | |
| download | kernel-b3f8f2903b8cd48b0746bf05a40b85ae4b684034.tar.gz kernel-b3f8f2903b8cd48b0746bf05a40b85ae4b684034.zip | |
xfs: remove the flags argument to xfs_buf_get_uncached
No callers passes flags to xfs_buf_get_uncached, which makes sense
given that the flags apply to behavior not used for uncached buffers.
Signed-off-by: Christoph Hellwig <[email protected]>
Reviewed-by: Carlos Maiolino <[email protected]>
Signed-off-by: Carlos Maiolino <[email protected]>
Diffstat (limited to 'fs/xfs/xfs_rtalloc.c')
| -rw-r--r-- | fs/xfs/xfs_rtalloc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/xfs/xfs_rtalloc.c b/fs/xfs/xfs_rtalloc.c index e35c728f222e..6484c596ecea 100644 --- a/fs/xfs/xfs_rtalloc.c +++ b/fs/xfs/xfs_rtalloc.c @@ -839,7 +839,7 @@ xfs_growfs_rt_init_rtsb( return 0; error = xfs_buf_get_uncached(mp->m_rtdev_targp, XFS_FSB_TO_BB(mp, 1), - 0, &rtsb_bp); + &rtsb_bp); if (error) return error; |
