Merge pull request #3875 from MichaelEischer/fix-fuse-context-cancel

mount: Fix input/output errors for canceled syscalls
This commit is contained in:
Michael Eischer
2022-09-10 23:20:29 +02:00
committed by GitHub
7 changed files with 41 additions and 19 deletions

View File

@@ -0,0 +1,11 @@
Bugfix: Improve handling of interrupted syscalls in `mount` command
Accessing restic's fuse mount could result in "input / output" errors when
using programs in which syscalls can be interrupted. This is for example the
case for go programs.
We have corrected the error handling for interrupted syscalls.
https://github.com/restic/restic/issues/3567
https://github.com/restic/restic/issues/3694
https://github.com/restic/restic/pull/3875