Wayne Davison

Results 81 comments of Wayne Davison

See work in progress: https://github.com/WayneD/rsync-patches/blob/master/clone-dest.diff Sounds like mtimes are not currently handled correctly.

Try the clone-dest patch linked above. It uses the FICLONE ioctl on Linux, which should presumably work with whatever FS supports cloning.

Yeah, that code is using an old socket read-line routine that does do single-byte reads (even if it is reading the names from a file instead of the socket). It...

Ah, I just noticed that it is an error in recv_rules, which means that an exclude overflowed the "line" buffer, which is BIGPATHBUFLEN. That should be at least 4K of...

If the remote rsync is a daemon, check its rsyncd.conf file to see if it has exclude and/or filter rules. It might be reading in a file with an overly...

This is succeeding on my local Windows/Cygwin host and on the Cygwin CI run, and I can't see any obvious reason why it would be weird for you. My only...

It is undoubtedly churning through such the huge quantity of checksum matches that it overwhelms the cpu. In the future I will probably change the sender to segment really large...

I'm closing this bug in favor of the extra info in #217.

I'm adding a warning about this to the man page for now, as suggested. In the future I will consider having the receiving side back-date an interrupted in-place file to...