summaryrefslogtreecommitdiffhomepage
path: root/pkg/abi/linux/fs.go
diff options
context:
space:
mode:
authorRahat Mahmood <rahat@google.com>2019-12-12 11:19:18 -0800
committergVisor bot <gvisor-bot@google.com>2019-12-12 11:20:47 -0800
commit007707a0726602bc99fc0dccaf2994ad967b9d96 (patch)
tree0928707b0d4b4c175d90472669a6ef6126798f63 /pkg/abi/linux/fs.go
parent378d6c1f3697b8b939e6632e980562bfc8fb2781 (diff)
Implement kernfs.
PiperOrigin-RevId: 285231002
Diffstat (limited to 'pkg/abi/linux/fs.go')
-rw-r--r--pkg/abi/linux/fs.go7
1 files changed, 7 insertions, 0 deletions
diff --git a/pkg/abi/linux/fs.go b/pkg/abi/linux/fs.go
index b416e3472..2c652baa2 100644
--- a/pkg/abi/linux/fs.go
+++ b/pkg/abi/linux/fs.go
@@ -92,3 +92,10 @@ const (
SYNC_FILE_RANGE_WRITE = 2
SYNC_FILE_RANGE_WAIT_AFTER = 4
)
+
+// Flag argument to renameat2(2), from include/uapi/linux/fs.h.
+const (
+ RENAME_NOREPLACE = (1 << 0) // Don't overwrite target.
+ RENAME_EXCHANGE = (1 << 1) // Exchange src and dst.
+ RENAME_WHITEOUT = (1 << 2) // Whiteout src.
+)