diff options
author | Darrick J. Wong <darrick.wong@oracle.com> | 2020-05-21 13:08:47 -0700 |
---|---|---|
committer | Darrick J. Wong <darrick.wong@oracle.com> | 2020-05-27 08:49:26 -0700 |
commit | fc96be95e6c612eb77c0c0306cef2da1b8a243f9 (patch) | |
tree | 86b4fc3747ff1d3083da4e13a633c576b0cd79b8 /fs/xfs | |
parent | 3737bb2c67770afea6362aeaf4f48a969d119777 (diff) | |
download | linux-fc96be95e6c612eb77c0c0306cef2da1b8a243f9.tar.gz linux-fc96be95e6c612eb77c0c0306cef2da1b8a243f9.tar.bz2 linux-fc96be95e6c612eb77c0c0306cef2da1b8a243f9.zip |
xfs: replace open-coded XFS_ICI_NO_TAG
Use XFS_ICI_NO_TAG instead of -1 when appropriate.
Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Brian Foster <bfoster@redhat.com>
Diffstat (limited to 'fs/xfs')
-rw-r--r-- | fs/xfs/xfs_icache.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/fs/xfs/xfs_icache.c b/fs/xfs/xfs_icache.c index d806d3bfa893..83a3f2c8167f 100644 --- a/fs/xfs/xfs_icache.c +++ b/fs/xfs/xfs_icache.c @@ -835,7 +835,7 @@ restart: rcu_read_lock(); - if (tag == -1) + if (tag == XFS_ICI_NO_TAG) nr_found = radix_tree_gang_lookup(&pag->pag_ici_root, (void **)batch, first_index, XFS_LOOKUP_BATCH); @@ -993,8 +993,8 @@ xfs_inode_ag_iterator_flags( ag = 0; while ((pag = xfs_perag_get(mp, ag))) { ag = pag->pag_agno + 1; - error = xfs_inode_ag_walk(mp, pag, execute, flags, args, -1, - iter_flags); + error = xfs_inode_ag_walk(mp, pag, execute, flags, args, + XFS_ICI_NO_TAG, iter_flags); xfs_perag_put(pag); if (error) { last_error = error; |