diff options
author | gVisor bot <gvisor-bot@google.com> | 2020-09-16 02:04:56 +0000 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2020-09-16 02:04:56 +0000 |
commit | 4418422e3d26132a1997d41e01af2340226dc086 (patch) | |
tree | 637c78d4855969c9d8215d2ded6dfb25381e4c4a /pkg/abi/linux/ioctl.go | |
parent | a682447838b5705d2e026e4aa43167b91c694f7e (diff) | |
parent | cb2e3c946a376097f695118384cf3a147905aa18 (diff) |
Merge release-20200907.0-54-gcb2e3c946 (automated)
Diffstat (limited to 'pkg/abi/linux/ioctl.go')
-rw-r--r-- | pkg/abi/linux/ioctl.go | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/pkg/abi/linux/ioctl.go b/pkg/abi/linux/ioctl.go index a4fe7501d..3356a2b4a 100644 --- a/pkg/abi/linux/ioctl.go +++ b/pkg/abi/linux/ioctl.go @@ -113,6 +113,12 @@ const ( _IOC_DIRSHIFT = _IOC_SIZESHIFT + _IOC_SIZEBITS ) +// Constants from uapi/linux/fs.h. +const ( + FS_IOC_GETFLAGS = 2147771905 + FS_VERITY_FL = 1048576 +) + // Constants from uapi/linux/fsverity.h. const ( FS_IOC_ENABLE_VERITY = 1082156677 |