-
Notifications
You must be signed in to change notification settings - Fork 18.3k
Closed
Labels
FrozenDueToAgeNeedsInvestigationSomeone must examine and confirm this is a valid issue and not a duplicate of an existing one.Someone must examine and confirm this is a valid issue and not a duplicate of an existing one.
Milestone
Description
The os.Remove
function ignores EINTR when calling syscall.Unlink
, as of cl/249178 (August 2020).
The os.RemoveAll
function does not when calling unix.Unlinkat
but should, to be consistent.
As the cl/249178 commit message says:
When using a FUSE file system, any system call that touches the file system can return EINTR.
and we are indeed observing os.RemoveAll
returning EINTR on a FUSE file system.
Metadata
Metadata
Assignees
Labels
FrozenDueToAgeNeedsInvestigationSomeone must examine and confirm this is a valid issue and not a duplicate of an existing one.Someone must examine and confirm this is a valid issue and not a duplicate of an existing one.