mirror of
https://github.com/Qortal/Brooklyn.git
synced 2025-02-22 15:15:53 +00:00
* 0day explit mitigation * Memory corruption prevention * Privilege escalation prevention * Buffer over flow prevention * File System corruption defense * Thread escape prevention This may very well be the most intensive inclusion to BrooklynR. This will not be part of an x86 suite nor it will be released as tool kit. The security core toolkit will remain part of kernel base.
17 lines
367 B
C
17 lines
367 B
C
/*
|
|
* Definitions for vfsv0 quota format
|
|
*/
|
|
|
|
#ifndef _LINUX_DQBLK_V2_H
|
|
#define _LINUX_DQBLK_V2_H
|
|
|
|
#include <linux/dqblk_qtree.h>
|
|
|
|
/* Numbers of blocks needed for updates */
|
|
#define V2_INIT_ALLOC QTREE_INIT_ALLOC
|
|
#define V2_INIT_REWRITE QTREE_INIT_REWRITE
|
|
#define V2_DEL_ALLOC QTREE_DEL_ALLOC
|
|
#define V2_DEL_REWRITE QTREE_DEL_REWRITE
|
|
|
|
#endif /* _LINUX_DQBLK_V2_H */
|