diff options
author | David Chinner <dgc@sgi.com> | 2008-04-10 12:20:10 +1000 |
---|---|---|
committer | Lachlan McIlroy <lachlan@redback.melbourne.sgi.com> | 2008-04-18 11:54:06 +1000 |
commit | 5b1397385bf536cbdb60f3362f44079d15d5f5ee (patch) | |
tree | 44ced2daad34684d65744d787425eef364c3660c /fs/xfs | |
parent | 714082bc12b6c305f825411df02177efcb0085f1 (diff) | |
download | linux-3.10-5b1397385bf536cbdb60f3362f44079d15d5f5ee.tar.gz linux-3.10-5b1397385bf536cbdb60f3362f44079d15d5f5ee.tar.bz2 linux-3.10-5b1397385bf536cbdb60f3362f44079d15d5f5ee.zip |
[XFS] xfs_qm_reset_dqcounts() does not return errors.
Declare it void.
SGI-PV: 980084
SGI-Modid: xfs-linux-melb:xfs-kern:30785a
Signed-off-by: David Chinner <dgc@sgi.com>
Signed-off-by: Niv Sardi <xaiki@sgi.com>
Signed-off-by: Lachlan McIlroy <lachlan@sgi.com>
Diffstat (limited to 'fs/xfs')
-rw-r--r-- | fs/xfs/quota/xfs_qm.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/fs/xfs/quota/xfs_qm.c b/fs/xfs/quota/xfs_qm.c index adbc7bb9fba..dec5f95e847 100644 --- a/fs/xfs/quota/xfs_qm.c +++ b/fs/xfs/quota/xfs_qm.c @@ -1438,7 +1438,7 @@ xfs_qm_qino_alloc( } -STATIC int +STATIC void xfs_qm_reset_dqcounts( xfs_mount_t *mp, xfs_buf_t *bp, @@ -1478,8 +1478,6 @@ xfs_qm_reset_dqcounts( ddq->d_rtbwarns = 0; ddq = (xfs_disk_dquot_t *) ((xfs_dqblk_t *)ddq + 1); } - - return 0; } STATIC int @@ -1520,7 +1518,7 @@ xfs_qm_dqiter_bufs( if (error) break; - (void) xfs_qm_reset_dqcounts(mp, bp, firstid, type); + xfs_qm_reset_dqcounts(mp, bp, firstid, type); xfs_bdwrite(mp, bp); /* * goto the next block. |