Diff for /xfs-linux/quota/xfs_qm.c between versions 1.47 and 1.48

version 1.47, 2007/03/02 02:59:33 version 1.48, 2007/03/09 05:12:28
Line 388  xfs_qm_mount_quotas( Line 388  xfs_qm_mount_quotas(
                         return XFS_ERROR(error);                          return XFS_ERROR(error);
                 }                  }
         }          }
           /* 
            * If one type of quotas is off, then it will lose its
            * quotachecked status, since we won't be doing accounting for
            * that type anymore.
            */
           if (!XFS_IS_UQUOTA_ON(mp)) {
                   mp->m_qflags &= ~XFS_UQUOTA_CHKD;
           }
           if (!(XFS_IS_GQUOTA_ON(mp) || XFS_IS_PQUOTA_ON(mp))) {
                   mp->m_qflags &= ~XFS_OQUOTA_CHKD;
           }
   
  write_changes:   write_changes:
         /*          /*

Removed from v.1.47  
changed lines
  Added in v.1.48


FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>