search for: dqi_flag

Displaying 9 results from an estimated 9 matches for "dqi_flag".

Did you mean: dqi_flags
2002 May 07
0
Re: SAMBA compile errors at XFS kernel.. (fwd)
...number identifying file */ __u32 dqh_version; /* File version */ }; /* Header with type and version specific information */ struct disk_dqinfo { __u32 dqi_bgrace; /* Time before block soft limit becomes hard limit */ __u32 dqi_igrace; /* Time before inode soft limit becomes hard limit */ __u32 dqi_flags; /* Flags for quotafile (DQF_*) */ __u32 dqi_blocks; /* Number of blocks in file */ __u32 dqi_free_blk; /* Number of first free block in the list */ __u32 dqi_free_entry; /* Number of block with at least one free entry */ }; /* Inmemory copy of version specific information */ struct mem_dqinfo...
2008 Oct 20
0
[PATCH] quota: Move quotaio_v[12].h from include/linux/ to fs/
...ing file */ + __le32 dqh_version; /* File version */ +}; + +/* Header with type and version specific information */ +struct v2_disk_dqinfo { + __le32 dqi_bgrace; /* Time before block soft limit becomes hard limit */ + __le32 dqi_igrace; /* Time before inode soft limit becomes hard limit */ + __le32 dqi_flags; /* Flags for quotafile (DQF_*) */ + __le32 dqi_blocks; /* Number of blocks in file */ + __le32 dqi_free_blk; /* Number of first free block in the list */ + __le32 dqi_free_entry; /* Number of block with at least one free entry */ +}; + +/* + * Structure of header of block with quota structures....
2017 Jun 21
2
Dovecot >=2.2.29 + Filesystem quota = incorrect storage information
...se /* Flags that indicate which fields in dqinfo structure are valid. */ # define IIF_BGRACE 1 # define IIF_IGRACE 2 # define IIF_FLAGS 4 # define IIF_ALL (IIF_BGRACE | IIF_IGRACE | IIF_FLAGS) struct dqinfo { u_int64_t dqi_bgrace; u_int64_t dqi_igrace; u_int32_t dqi_flags; u_int32_t dqi_valid; }; #endif __BEGIN_DECLS extern int quotactl (int __cmd, const char *__special, int __id, caddr_t __addr) __THROW; __END_DECLS #endif /* sys/quota.h */ */usr/include/sys/quota.h (from glibc-headers-2.25-2.x86_64) - 5170 bytes* ================...
2017 Oct 17
0
Dovecot >=2.2.29 + Filesystem quota = incorrect storage information
...structure are valid.? */ > # define IIF_BGRACE???? 1 > # define IIF_IGRACE???? 2 > # define IIF_FLAGS????? 4 > # define IIF_ALL??????? (IIF_BGRACE | IIF_IGRACE | IIF_FLAGS) > > struct dqinfo > ? { > ??? u_int64_t dqi_bgrace; > ??? u_int64_t dqi_igrace; > ??? u_int32_t dqi_flags; > ??? u_int32_t dqi_valid; > ? }; > #endif > > __BEGIN_DECLS > > extern int quotactl (int __cmd, const char *__special, int __id, > ???????????????????? caddr_t __addr) __THROW; > > __END_DECLS > > #endif /* sys/quota.h */ > > > > */usr/include/sys/...
2017 Jun 20
2
Dovecot >=2.2.29 + Filesystem quota = incorrect storage information
Hi, I have problem with quota storage information in dovecot-2.2.29 (and newer versions, too - 2.2.30.2). I use FS quota backend. ............................ # 2.2.29.1 (e0b76e3): /etc/dovecot/dovecot.conf # OS: Linux 4.4.68-1 x86_64 mail_plugins = quota plugin { quota = fs:User quota:mount=/poczta:user quota2 = fs:Group quota:mount=/poczta:group } protocol imap {
2008 Dec 22
56
[git patches] Ocfs2 patches for merge window, batch 2/3
Hi, This is the second batch of Ocfs2 patches intended for the merge window. The 1st batch were sent out previously: http://lkml.org/lkml/2008/12/19/280 The bulk of this set is comprised of Jan Kara's patches to add quota support to Ocfs2. Many of the quota patches are to generic code, which I carried to make merging of the Ocfs2 support easier. All of the non-ocfs2 patches should have
2009 Aug 03
9
[PATCH 0/9] Quota support for ocfs2-tools (version 3)
Hi, below comes a new version of the series of patches implementing quota support for ocfs2-tools. I've fixed the calls of ocfs2_malloc_blocks() which were given number of bytes instead of number of blocks. Besides that the series should be the same. Honza
2009 Jul 27
11
[PATCH 0/8] Quota support for ocfs2-tools
Hi, I'm sending a series of patches implementing quota support into ocfs2-tools. It's the same as the original huge patch I've sent but now it's split as Joel asked. I've also realized that when disabling SPARSE feature, we should update quota information. That piece of code is missing, I'll implement it soon. Comments welcome. Honza
2009 Jul 30
11
[PATCH 0/9] Quota support for ocfs2-tools (version 2)
Hi, this is the next version of quota support for quota tools. I've addressed all the comments of Tao, Joel and others. Sparse feature disabling also correctly updates quota information now and the patch is merged into the tunefs support patch. Honza