local - local file copy question

2012-08-19 Thread Linda Walsh
In looking at source, I started at fileio and found write routines but no read routines. I found a 'WRITE_SIZE' (32K), but no 'READ_SIZE' -- is that' what the MAX_MAP_SIZE (256K)? I would like to make so that rsync can use larger I/O sizes if (maybe a command line option?) The map routine

Re: local - local file copy question

2012-08-19 Thread Justin T Pryzby
Note that --whole-file is the default when both the source and destination are specified as local paths, and implies that the file is copied without the delta transfer algorithm. Justin On Sat, Aug 18, 2012 at 11:05:47PM -0700, Linda Walsh wrote: In looking at source, I started at fileio and

Re: local - local file copy question

2012-08-19 Thread Linda Walsh
Justin T Pryzby wrote: Note that --whole-file is the default when both the source and destination are specified as local paths, and implies that the file is copied without the delta transfer algorithm. --- I am using the 'whole-file' copy, 'explicitly', as I didn't know that was the default in

Re: local - local file copy question

2012-08-19 Thread Matthias Schniedermeyer
On 19.08.2012 10:06, Linda Walsh wrote: Justin T Pryzby wrote: Note that --whole-file is the default when both the source and destination are specified as local paths, and implies that the file is copied without the delta transfer algorithm. --- I am using the 'whole-file' copy,