xfs: remove unnecessary parameter from xfs_iext_inc_seq
This function doesn't use the @state parameter, so get rid of it. Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com> Reviewed-by: Dave Chinner <dchinner@redhat.com>
This commit is contained in:
parent
b521c89027
commit
2ca09177ab
|
@ -616,7 +616,7 @@ xfs_iext_realloc_root(
|
||||||
* sequence counter is seen before the modifications to the extent tree itself
|
* sequence counter is seen before the modifications to the extent tree itself
|
||||||
* take effect.
|
* take effect.
|
||||||
*/
|
*/
|
||||||
static inline void xfs_iext_inc_seq(struct xfs_ifork *ifp, int state)
|
static inline void xfs_iext_inc_seq(struct xfs_ifork *ifp)
|
||||||
{
|
{
|
||||||
WRITE_ONCE(ifp->if_seq, READ_ONCE(ifp->if_seq) + 1);
|
WRITE_ONCE(ifp->if_seq, READ_ONCE(ifp->if_seq) + 1);
|
||||||
}
|
}
|
||||||
|
@ -633,7 +633,7 @@ xfs_iext_insert(
|
||||||
struct xfs_iext_leaf *new = NULL;
|
struct xfs_iext_leaf *new = NULL;
|
||||||
int nr_entries, i;
|
int nr_entries, i;
|
||||||
|
|
||||||
xfs_iext_inc_seq(ifp, state);
|
xfs_iext_inc_seq(ifp);
|
||||||
|
|
||||||
if (ifp->if_height == 0)
|
if (ifp->if_height == 0)
|
||||||
xfs_iext_alloc_root(ifp, cur);
|
xfs_iext_alloc_root(ifp, cur);
|
||||||
|
@ -875,7 +875,7 @@ xfs_iext_remove(
|
||||||
ASSERT(ifp->if_u1.if_root != NULL);
|
ASSERT(ifp->if_u1.if_root != NULL);
|
||||||
ASSERT(xfs_iext_valid(ifp, cur));
|
ASSERT(xfs_iext_valid(ifp, cur));
|
||||||
|
|
||||||
xfs_iext_inc_seq(ifp, state);
|
xfs_iext_inc_seq(ifp);
|
||||||
|
|
||||||
nr_entries = xfs_iext_leaf_nr_entries(ifp, leaf, cur->pos) - 1;
|
nr_entries = xfs_iext_leaf_nr_entries(ifp, leaf, cur->pos) - 1;
|
||||||
for (i = cur->pos; i < nr_entries; i++)
|
for (i = cur->pos; i < nr_entries; i++)
|
||||||
|
@ -983,7 +983,7 @@ xfs_iext_update_extent(
|
||||||
{
|
{
|
||||||
struct xfs_ifork *ifp = xfs_iext_state_to_fork(ip, state);
|
struct xfs_ifork *ifp = xfs_iext_state_to_fork(ip, state);
|
||||||
|
|
||||||
xfs_iext_inc_seq(ifp, state);
|
xfs_iext_inc_seq(ifp);
|
||||||
|
|
||||||
if (cur->pos == 0) {
|
if (cur->pos == 0) {
|
||||||
struct xfs_bmbt_irec old;
|
struct xfs_bmbt_irec old;
|
||||||
|
|
Loading…
Reference in New Issue