diff options
Diffstat (limited to 'fs/xfs/xfs_qm.c')
-rw-r--r-- | fs/xfs/xfs_qm.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/fs/xfs/xfs_qm.c b/fs/xfs/xfs_qm.c index 882440ff964f..a97d94d69a1e 100644 --- a/fs/xfs/xfs_qm.c +++ b/fs/xfs/xfs_qm.c | |||
@@ -1226,7 +1226,7 @@ xfs_qm_dqusage_adjust( | |||
1226 | */ | 1226 | */ |
1227 | if (xfs_is_quota_inode(&mp->m_sb, ino)) { | 1227 | if (xfs_is_quota_inode(&mp->m_sb, ino)) { |
1228 | *res = BULKSTAT_RV_NOTHING; | 1228 | *res = BULKSTAT_RV_NOTHING; |
1229 | return XFS_ERROR(EINVAL); | 1229 | return EINVAL; |
1230 | } | 1230 | } |
1231 | 1231 | ||
1232 | /* | 1232 | /* |
@@ -1493,7 +1493,7 @@ xfs_qm_init_quotainos( | |||
1493 | error = xfs_iget(mp, NULL, mp->m_sb.sb_uquotino, | 1493 | error = xfs_iget(mp, NULL, mp->m_sb.sb_uquotino, |
1494 | 0, 0, &uip); | 1494 | 0, 0, &uip); |
1495 | if (error) | 1495 | if (error) |
1496 | return XFS_ERROR(error); | 1496 | return error; |
1497 | } | 1497 | } |
1498 | if (XFS_IS_GQUOTA_ON(mp) && | 1498 | if (XFS_IS_GQUOTA_ON(mp) && |
1499 | mp->m_sb.sb_gquotino != NULLFSINO) { | 1499 | mp->m_sb.sb_gquotino != NULLFSINO) { |
@@ -1563,7 +1563,7 @@ error_rele: | |||
1563 | IRELE(gip); | 1563 | IRELE(gip); |
1564 | if (pip) | 1564 | if (pip) |
1565 | IRELE(pip); | 1565 | IRELE(pip); |
1566 | return XFS_ERROR(error); | 1566 | return error; |
1567 | } | 1567 | } |
1568 | 1568 | ||
1569 | STATIC void | 1569 | STATIC void |