Displaying 3 results from an estimated 3 matches for "thedavison".
Did you mean:
thedavisons
2005 Sep 30
2
question about librsync : patch function
Hello everybody,
About librsync, does anyone know how to patch the delta without creating
a new file ?
I used the librsync and it always generates a new file, which is
embarrassing if the file is over 1Gb.
I tried to store the new file in RAM, but it saturates the machine.
Is there a possibility to write in the current file to be synchronized,
although this file is currently being
2016 Jan 25
0
[Bug 11521] rsync does not use high-resolution timestamps to determine file differences
> Date: Sun, 24 Jan 2016 15:43:20 -0800
> From: Wayne Davison <wayne at thedavisons.net>
A couple questions below; please bear with me.
> No, if you do a ext4 -> ext4 copy, rsync has set the matching ns info for
> transferred files since 3.1.0. There was a case prior to rsync 3.1.2 where
> a brand-new file transferred in the same second it was created...
2014 Dec 25
8
[PATCH] Consider nanoseconds when quick-checking for unchanged files
On systems using nanoseconds differences should be taken into consideration.
--- a/generator.c 2014-06-14 01:05:08.000000000 +0200
+++ b/generator.c 2014-12-25 11:19:54.000000000 +0100
@@ -588,7 +588,13 @@
if (ignore_times)
return 0;
- return cmp_time(st->st_mtime, file->modtime) == 0;
+ return cmp_time(st->st_mtime, file->modtime) == 0
+#ifdef ST_MTIME_NSEC
+ ?