| To: | xfs@xxxxxxxxxxx, xfs-dev <xfs-dev@xxxxxxx> |
|---|---|
| Subject: | Re: [PATCH] Clean up dquot pincount code |
| From: | Peter Leckie <pleckie@xxxxxxx> |
| Date: | Mon, 29 Sep 2008 11:24:13 +1000 |
| In-reply-to: | <48DC6102.2040602@sgi.com> |
| References: | <48DC6102.2040602@sgi.com> |
| Sender: | xfs-bounce@xxxxxxxxxxx |
| User-agent: | Thunderbird 2.0.0.16 (X11/20080707) |
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.
Index: 2.6.x-xfs/fs/xfs/quota/xfs_dquot_item.c
===================================================================
--- 2.6.x-xfs.orig/fs/xfs/quota/xfs_dquot_item.c
+++ 2.6.x-xfs/fs/xfs/quota/xfs_dquot_item.c
@@ -96,7 +96,7 @@ xfs_qm_dquot_logitem_pin(
xfs_dquot_t *dqp = logitem->qli_dquot;ASSERT(XFS_DQ_IS_LOCKED(dqp)); - atomic_inc(dqp->q_pincount); + atomic_inc(&dqp->q_pincount); } /* |
| <Prev in Thread] | Current Thread | [Next in Thread> |
|---|---|---|
| ||
| Previous by Date: | Re: Speed of rm compared to reiserfs (slow) - and switching logdevices, Török Edwin |
|---|---|
| Next by Date: | Re: [PATCH] Clean up dquot pincount code, Donald Douwsma |
| Previous by Thread: | Re: [PATCH] Clean up dquot pincount code, Christoph Hellwig |
| Next by Thread: | Re: [PATCH] Clean up dquot pincount code, Donald Douwsma |
| Indexes: | [Date] [Thread] [Top] [All Lists] |