Displaying 5 results from an estimated 5 matches for "flist_siz".
Did you mean:
flist_size
2007 Feb 07
3
Redirect --stats to STDERR.
...,/
/+ 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 (stats.flist_buildtime) {/
/- rprintf(FINFO,/
/+...
2004 Sep 03
1
more filelist --stats
...--- 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_xfertime);
rprintf(FINFO,"Total bytes sent: %.0f\n",
(doub...
2004 Jan 13
3
Progress reporting: N more to check
...ats.current_file_index - 1;
+ stats.current_file_index = i;
stats.num_transferred_files++;
stats.total_transferred_size += file->length;
cleanup_got_literal = 0;
--- rsync.h 12 Jan 2004 03:48:43 -0000 1.170
+++ rsync.h 13 Jan 2004 06:17:50 -0000
@@ -477,6 +477,8 @@ struct stats {
int flist_size;
int num_files;
int num_transferred_files;
+ int num_untransferred_files;
+ int current_file_index;
};
--- sender.c 10 Jan 2004 20:16:18 -0000 1.32
+++ sender.c 13 Jan 2004 06:19:53 -0000
@@ -25,6 +25,7 @@ extern struct stats stats;
extern int io_error;
extern int dry_run;
extern int a...
2003 Apr 08
2
[Patch] Require extra --stats to emit heap statistics
...int send_stats;
- if (do_stats) {
+ if (do_stats > 1) {
/* These come out from every process */
show_malloc_stats();
show_flist_stats();
@@ -139,12 +139,12 @@
rprintf(FINFO,"File list size: %d\n", stats.flist_size);
rprintf(FINFO,"Total bytes written: %.0f\n",
(double)stats.total_written);
- rprintf(FINFO,"Total bytes read: %.0f\n\n",
+ rprintf(FINFO,"Total bytes read: %.0f\n",
(double)...
2001 Aug 06
1
merge rsync+ into rsync (was Re: rsync-2.4.7 NEWS file)
> Just curious: what about the rsync+ patch?
Thanks for the reminder.
I've just committed Jos's rsync+ patch onto the
"branch_mbp_rsyncplus_merge" branch. If it works OK and nobody
screams I will move it across onto the main tree tomorrow or
Wednesday.
I see the patch doesn't add documentation about the new options to the
man page, so we should fix that in the future.