We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When writing a sparse file to a device, rsync calls ftruncate() on the device file, which is invalid.
# rsync -vSI --write-devices --copy-devices /usr/bin/rsync /dev/null rsync rsync: [receiver] write failed on "/dev/null": Invalid argument (22) rsync error: error in file IO (code 11) at receiver.c(380) [receiver=3.3.0]
strace reveals:
[pid 1870] ftruncate(3, 1048576) = -1 EINVAL (Invalid argument)
I believe this may be from here: https://github.com/RsyncProject/rsync/blob/master/fileio.c#L43
This is with rsync-3.3.0-4.fc42.x86_64
The text was updated successfully, but these errors were encountered:
No branches or pull requests
When writing a sparse file to a device, rsync calls ftruncate() on the device file, which is invalid.
strace reveals:
I believe this may be from here: https://github.com/RsyncProject/rsync/blob/master/fileio.c#L43
This is with rsync-3.3.0-4.fc42.x86_64
The text was updated successfully, but these errors were encountered: