Merge tag 'for-4.19-rc2-tag' of git://git.kernel.org/pub/scm/linux/kernel/git/kdave...
[linux-2.6/btrfs-unstable.git] / fs / quota / quota_tree.h
blob31cf27e0e9e0f8c89f32270379fee37c6007c3ed
1 /* SPDX-License-Identifier: GPL-2.0 */
2 /*
3 * Definitions of structures for vfsv0 quota format
4 */
6 #ifndef _LINUX_QUOTA_TREE_H
7 #define _LINUX_QUOTA_TREE_H
9 #include <linux/types.h>
10 #include <linux/quota.h>
13 * Structure of header of block with quota structures. It is padded to 16 bytes so
14 * there will be space for exactly 21 quota-entries in a block
16 struct qt_disk_dqdbheader {
17 __le32 dqdh_next_free; /* Number of next block with free entry */
18 __le32 dqdh_prev_free; /* Number of previous block with free entry */
19 __le16 dqdh_entries; /* Number of valid entries in block */
20 __le16 dqdh_pad1;
21 __le32 dqdh_pad2;
24 #define QT_TREEOFF 1 /* Offset of tree in file in blocks */
26 #endif /* _LINUX_QUOTAIO_TREE_H */