Whamcloud - gitweb
Branch b1_6
authorjohann <johann>
Fri, 23 Nov 2007 08:42:57 +0000 (08:42 +0000)
committerjohann <johann>
Fri, 23 Nov 2007 08:42:57 +0000 (08:42 +0000)
b=14022
i=tianzy
i=andrew

By default, enable/disable quotas for both user & group.

lustre/utils/lfs.c

index 2c0d8fa..fa0f9e6 100644 (file)
@@ -1188,6 +1188,8 @@ static int lfs_quotaon(int argc, char **argv)
 
         if (qctl.qc_type)
                 qctl.qc_type--;
+        else /* by default, enable quota for both user & group */
+                qctl.qc_type = 0x02;
 
         if (argc == optind)
                 return CMD_HELP;
@@ -1235,6 +1237,8 @@ static int lfs_quotaoff(int argc, char **argv)
 
         if (qctl.qc_type)
                 qctl.qc_type--;
+        else /* by default, disable quota for both user & group */
+                qctl.qc_type = 0x02;
 
         if (argc == optind)
                 return CMD_HELP;