diff options
author | Darrick J. Wong <darrick.wong@oracle.com> | 2019-02-14 09:33:15 -0800 |
---|---|---|
committer | Darrick J. Wong <darrick.wong@oracle.com> | 2019-02-14 22:42:57 -0800 |
commit | e1f6ca11381588e3ef138c10de60eeb34cb8466a (patch) | |
tree | 1dbe69ce83c335d973be2f7e283ed66a44bef2b2 /fs/xfs/libxfs/xfs_ag_resv.c | |
parent | 3b50086f0c0d78c144d9483fa292c1509c931b70 (diff) | |
download | linux-e1f6ca11381588e3ef138c10de60eeb34cb8466a.tar.bz2 |
xfs: rename m_inotbt_nores to m_finobt_nores
Rename this flag variable to imply more strongly that it's related to
the free inode btree (finobt) operation. No functional changes.
Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Dave Chinner <dchinner@redhat.com>
Diffstat (limited to 'fs/xfs/libxfs/xfs_ag_resv.c')
-rw-r--r-- | fs/xfs/libxfs/xfs_ag_resv.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/xfs/libxfs/xfs_ag_resv.c b/fs/xfs/libxfs/xfs_ag_resv.c index e701ebc36c06..e2ba2a3b63b2 100644 --- a/fs/xfs/libxfs/xfs_ag_resv.c +++ b/fs/xfs/libxfs/xfs_ag_resv.c @@ -281,7 +281,7 @@ xfs_ag_resv_init( */ ask = used = 0; - mp->m_inotbt_nores = true; + mp->m_finobt_nores = true; error = xfs_refcountbt_calc_reserves(mp, tp, agno, &ask, &used); |