summaryrefslogtreecommitdiff
path: root/quota.h
diff options
context:
space:
mode:
authorjkar8572 <jkar8572>2008-12-17 12:40:07 +0000
committerjkar8572 <jkar8572>2008-12-17 12:40:07 +0000
commit830ca0318fc60c8566d76b3961bf9c40e2276569 (patch)
treefd6ac9448e36d836041b0aea7394931bc750e015 /quota.h
parent1069b78a6ff95399a5f0ed2b9116f6ab94fb67a1 (diff)
* fix reference to rpc manpage (anonymous reporter)
* add EXT4 (not only EXT4DEV) to the list of supported filesystems (Mingming Cao) * fix setting of more than 31-bit block and inode limits (Gui Xiaohua) * fixed bug in error reporting when quota reading fails (Jan Kara) * added support for quota formats with hidden quota files (Jan Kara)
Diffstat (limited to 'quota.h')
-rw-r--r--quota.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/quota.h b/quota.h
index e512677..76b12b2 100644
--- a/quota.h
+++ b/quota.h
@@ -4,7 +4,7 @@
#include <sys/types.h>
typedef u_int32_t qid_t; /* Type in which we store ids in memory */
-typedef u_int64_t qsize_t; /* Type in which we store size limitations */
+typedef int64_t qsize_t; /* Type in which we store size limitations */
#define MAXQUOTAS 2
#define USRQUOTA 0 /* element used for user quotas */
@@ -139,6 +139,7 @@ enum {
/* Quota format identifiers */
#define QFMT_VFS_OLD 1
#define QFMT_VFS_V0 2
+#define QFMT_OCFS2 3
/* Flags supported by kernel */
#define V1_DQF_RSQUASH 1