MFD_*: swap ordering
This API is still young enough that I would expect no one to be dependant on this yet... Swap the ordering while it's young to match Linux values to potentially ease implementation of linuxolator syscall, being able to reuse existing constants.
This commit is contained in:
parent
53648039c4
commit
1ef7e3904d
|
@ -193,8 +193,8 @@
|
||||||
/*
|
/*
|
||||||
* Flags for memfd_create().
|
* Flags for memfd_create().
|
||||||
*/
|
*/
|
||||||
#define MFD_ALLOW_SEALING 0x00000001
|
#define MFD_CLOEXEC 0x00000001
|
||||||
#define MFD_CLOEXEC 0x00000002
|
#define MFD_ALLOW_SEALING 0x00000002
|
||||||
|
|
||||||
/* UNSUPPORTED */
|
/* UNSUPPORTED */
|
||||||
#define MFD_HUGETLB 0x00000004
|
#define MFD_HUGETLB 0x00000004
|
||||||
|
|
Loading…
Reference in New Issue