Commit d1de8021 authored by Peter Leckie's avatar Peter Leckie Committed by Lachlan McIlroy

[XFS] Fix build brakage from patch "Clean up dquot pincount code"

This is a fix for patch " Clean up dquot pincount code" which introduced a
build breakage due to a missing & in xfs_qm_dquot_logitem_pin.

SGI-PV: 986789

SGI-Modid: xfs-linux-melb:xfs-kern:32221a
Signed-off-by: default avatarPeter Leckie <pleckie@sgi.com>
Signed-off-by: default avatarDonald Douwsma <donaldd@sgi.com>
Signed-off-by: default avatarLachlan McIlroy <lachlan@sgi.com>
parent bc3048e3
...@@ -96,7 +96,7 @@ xfs_qm_dquot_logitem_pin( ...@@ -96,7 +96,7 @@ xfs_qm_dquot_logitem_pin(
xfs_dquot_t *dqp = logitem->qli_dquot; xfs_dquot_t *dqp = logitem->qli_dquot;
ASSERT(XFS_DQ_IS_LOCKED(dqp)); ASSERT(XFS_DQ_IS_LOCKED(dqp));
atomic_inc(dqp->q_pincount); atomic_inc(&dqp->q_pincount);
} }
/* /*
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment