X-Git-Url: https://mattmccutchen.net/rsync/rsync-patches.git/blobdiff_plain/03019e41fc3299020c8acdda06cf57a1e2c57a25..3829f6bbbc5d3f38d7e26180e83f9bbf3e66e5e7:/slow-down.diff diff --git a/slow-down.diff b/slow-down.diff index e3109fa..075c97b 100644 --- a/slow-down.diff +++ b/slow-down.diff @@ -16,18 +16,18 @@ To use this patch, run these commands for a successful build: --- old/flist.c +++ new/flist.c -@@ -53,6 +53,7 @@ extern int copy_links; +@@ -58,6 +58,7 @@ extern int copy_links; extern int copy_unsafe_links; extern int protocol_version; extern int sanitize_paths; +extern unsigned long sleep_asec; extern struct stats stats; - extern struct file_list *the_file_list; -@@ -1036,6 +1037,9 @@ static void send_directory(int f, struct + extern char curr_dir[MAXPATHLEN]; +@@ -1246,6 +1247,9 @@ static void send_directory(int f, struct } - send_file_name(f, flist, fbuf, NULL, 0); + send_file_name(f, flist, fbuf, NULL, flags, filter_flags); + /* Sleep for a bit, to avoid hammering the disk. */ + if (sleep_asec) + usleep(sleep_asec); @@ -44,15 +44,15 @@ To use this patch, run these commands for a successful build: size_t bwlimit_writemax = 0; int ignore_existing = 0; int ignore_non_existing = 0; -@@ -377,6 +378,7 @@ void usage(enum logcode F) - rprintf(F," --password-file=FILE read password from FILE\n"); +@@ -374,6 +375,7 @@ void usage(enum logcode F) + rprintf(F," --password-file=FILE read daemon-access password from FILE\n"); rprintf(F," --list-only list the files instead of copying them\n"); rprintf(F," --bwlimit=KBPS limit I/O bandwidth; KBytes per second\n"); + rprintf(F," --slow-down=USECs sleep N usec while creating the filelist\n"); rprintf(F," --write-batch=FILE write a batched update to FILE\n"); rprintf(F," --only-write-batch=FILE like --write-batch but w/o updating destination\n"); rprintf(F," --read-batch=FILE read a batched update from FILE\n"); -@@ -516,6 +518,7 @@ static struct poptOption long_options[] +@@ -514,6 +516,7 @@ static struct poptOption long_options[] {"log-format", 0, POPT_ARG_STRING, &stdout_format, 0, 0, 0 }, /* DEPRECATED */ {"itemize-changes", 'i', POPT_ARG_NONE, 0, 'i', 0, 0 }, {"bwlimit", 0, POPT_ARG_INT, &bwlimit, 0, 0, 0 },