diff options
author | Kevin Krakauer <krakauer@google.com> | 2019-10-04 14:19:08 -0700 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2019-10-04 14:20:32 -0700 |
commit | 7ef1c44a7fe027d60c92b44515655a612d40d034 (patch) | |
tree | 515dadc1ba254e525a4e7fc02238bd7ba449429d /pkg/abi | |
parent | 48745251611b5c152b1a2b66a0f2f30dd4dc1ed9 (diff) |
Change linux.FileMode from uint to uint16, and update VFS to use FileMode.
In Linux (include/linux/types.h), mode_t is an unsigned short.
PiperOrigin-RevId: 272956350
Diffstat (limited to 'pkg/abi')
-rw-r--r-- | pkg/abi/linux/file.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pkg/abi/linux/file.go b/pkg/abi/linux/file.go index 7d742871a..257f67222 100644 --- a/pkg/abi/linux/file.go +++ b/pkg/abi/linux/file.go @@ -271,7 +271,7 @@ type Statx struct { } // FileMode represents a mode_t. -type FileMode uint +type FileMode uint16 // Permissions returns just the permission bits. func (m FileMode) Permissions() FileMode { |