Displaying 7 results from an estimated 7 matches for "matched_data".
Did you mean:
match_data
2004 Sep 03
1
more filelist --stats
...pool_destroy(flist->hlink_pool);
flist->hlink_pool = NULL;
--- rsync-2.6.3pre1/main.c 2004-08-05 14:17:44.000000000 -0400
+++ rsync-2.6.3pre1+tykhe/main.c 2004-09-03 10:18:46.869429000 -0400
@@ -178,6 +178,10 @@
rprintf(FINFO,"Matched data: %.0f bytes\n",
(double)stats.matched_data);
rprintf(FINFO,"File list size: %d\n", stats.flist_size);
+ rprintf(FINFO,"File list generation: %lu seconds\n",
+ stats.flist_buildtime);
+ rprintf(FINFO,"File list transfer time: %lu seconds\n",
+ stats.flist_xferti...
2007 Feb 07
3
Redirect --stats to STDERR.
...ats.literal_data));/
/- rprintf(FINFO,"Matched data: %s
bytes\n",/
/+ rprintf(FERROR,"Matched data: %s
bytes\n",/
/
human_num(stats.matched_data));/
/- rprintf(FINFO,"File list size:
%d\n", stats.flist_size);/
/+ rprintf(FERROR,"File list size:
%d\n", stats.flist_size);/
/ if (sta...
2010 May 03
1
3.1: bug in --stats
...184
sent 69219 bytes received 184 bytes 138806.00 bytes/sec
total size is 327945064379 speedup is 4725228.94
BTW, why aren't these fields
struct stats {
int64 total_size;
int64 total_transferred_size;
int64 total_written;
int64 total_read;
int64 literal_data;
int64 matched_data;
of type size_t?
2002 Feb 01
0
rsync Warning: unexpected read size of 0 in map_ptr
...eceiver.c Mon Jan 28 19:16:47 2002
+++ rsync-2.4.6-fixed/receiver.c Mon Jan 28 19:10:02 2002
@@ -247,7 +247,7 @@
i = -(i+1);
offset2 = i*(OFF_T)n;
len = n;
- if (i == count-1 && remainder != 0)
+ if (i == (int)(count-1) && remainder != 0)
len = remainder;
stats.matched_data += len;
@@ -263,7 +263,7 @@
sum_update(map,len);
}
- if (fd != -1 && write_file(fd,map,len) != len) {
+ if (fd != -1 && write_file(fd,map,len) != (int)len) {
rprintf(FERROR,"write failed on %s : %s\n",
fname,strerror(errno));
exit_cleanup(RERR_FIL...
2003 Mar 30
1
[RFC][patch] dynamic rolling block and sum sizes II
...269,10 @@
}
i = -(i+1);
- offset2 = i*(OFF_T)n;
- len = n;
- if (i == (int) count-1 && remainder != 0)
- len = remainder;
+ offset2 = i*(OFF_T)sum.blength;
+ len = sum.blength;
+ if (i == (int) sum.count-1 && sum.remainder != 0)
+ len = sum.remainder;
stats.matched_data += len;
--- sender.c Sat Mar 29 11:11:30 2003
+++ sender.c Sat Mar 29 12:16:32 2003
@@ -37,6 +37,19 @@
**/
+void read_sum_head(int f, struct sum_struct *sum)
+{
+ sum->count = read_int(f);
+ sum->blength = read_int(f);
+ if (remote_version < 27)
+ {
+ sum->s2length = csum_l...
2003 Mar 23
1
[RFC] dynamic checksum size
...246,10 @@
}
i = -(i+1);
- offset2 = i*(OFF_T)n;
- len = n;
- if (i == (int) count-1 && remainder != 0)
- len = remainder;
+ offset2 = i*(OFF_T)sum.blength;
+ len = sum.blength;
+ if (i == (int) sum.count-1 && sum.remainder != 0)
+ len = sum.remainder;
stats.matched_data += len;
--- sender.c Sat Mar 22 03:39:34 2003
+++ sender.c.dynsumlen Sat Mar 22 10:33:00 2003
@@ -37,6 +37,19 @@
**/
+void read_sum_head(int f, struct sum_struct *sum)
+{
+ sum->count = read_int(f);
+ sum->blength = read_int(f);
+ if (remote_version < 27)
+ {
+ sum->s2length...
2002 Aug 05
5
[patch] read-devices
....0f j=%d len=%d n=%.0f\n",
(double)offset,(double)last_match,i,s->sums[i].len,(double)n);
- send_token(f,i,buf,last_match,n,i<0?0:s->sums[i].len);
- data_transfer += n;
+ data_transfer += send_token(f,i,buf,last_match,n,i<0?0:s->sums[i].len);;
if (i >= 0) {
stats.matched_data += s->sums[i].len;
n += s->sums[i].len;
}
-
for (j=0;j<n;j+=CHUNK_SIZE) {
int n1 = MIN(CHUNK_SIZE,n-j);
- sum_update(map_ptr(buf,last_match+j,n1),n1);
+ if (verbose>2) rprintf(FINFO, "#ET#>matched() calling sum_update(buf,%.0f,%.0f)\n", (double)last_mat...