mirror of
https://github.com/netbirdio/gvisor.git
synced 2026-05-22 17:12:49 -07:00
Add note about gofer link(2) limitation
PiperOrigin-RevId: 331648296
This commit is contained in:
committed by
gVisor bot
parent
2747030ec7
commit
52ffeb2d64
@@ -138,7 +138,7 @@ var AMD64 = &kernel.SyscallTable{
|
||||
83: syscalls.Supported("mkdir", Mkdir),
|
||||
84: syscalls.Supported("rmdir", Rmdir),
|
||||
85: syscalls.Supported("creat", Creat),
|
||||
86: syscalls.Supported("link", Link),
|
||||
86: syscalls.PartiallySupported("link", Link, "Limited support with Gofer. Link count and linked files may get out of sync because gVisor is not aware of external hardlinks.", nil),
|
||||
87: syscalls.Supported("unlink", Unlink),
|
||||
88: syscalls.Supported("symlink", Symlink),
|
||||
89: syscalls.Supported("readlink", Readlink),
|
||||
@@ -317,7 +317,7 @@ var AMD64 = &kernel.SyscallTable{
|
||||
262: syscalls.Supported("fstatat", Fstatat),
|
||||
263: syscalls.Supported("unlinkat", Unlinkat),
|
||||
264: syscalls.Supported("renameat", Renameat),
|
||||
265: syscalls.Supported("linkat", Linkat),
|
||||
265: syscalls.PartiallySupported("linkat", Linkat, "See link(2).", nil),
|
||||
266: syscalls.Supported("symlinkat", Symlinkat),
|
||||
267: syscalls.Supported("readlinkat", Readlinkat),
|
||||
268: syscalls.Supported("fchmodat", Fchmodat),
|
||||
|
||||
Reference in New Issue
Block a user