mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-10-28 23:24:50 +00:00
9c45101e88
Currently all quota flags were defined just in kernel-private headers. Export flags readable / writeable from userspace to userspace via include/uapi/linux/quota.h. Signed-off-by: Jan Kara <jack@suse.cz>
14 lines
288 B
C
14 lines
288 B
C
/*
|
|
* File with in-memory structures of old quota format
|
|
*/
|
|
|
|
#ifndef _LINUX_DQBLK_V1_H
|
|
#define _LINUX_DQBLK_V1_H
|
|
|
|
/* Numbers of blocks needed for updates */
|
|
#define V1_INIT_ALLOC 1
|
|
#define V1_INIT_REWRITE 1
|
|
#define V1_DEL_ALLOC 0
|
|
#define V1_DEL_REWRITE 2
|
|
|
|
#endif /* _LINUX_DQBLK_V1_H */
|