- Added Matt's changes to lookup directory-default ACLs.
[rsync/rsync-patches.git] / fsync.diff
CommitLineData
edd5f785
WD
1This patch from Sami Farin lets you specify --fsync if you want fsync()
2to be called on every file we write.
3
91f798a7 4--- orig/options.c 2005-11-12 20:13:05
489b0a72 5+++ options.c 2005-08-27 21:21:34
91f798a7 6@@ -42,6 +42,7 @@ int whole_file = -1;
489b0a72 7 int append_mode = 0;
125d7fca 8 int keep_dirlinks = 0;
edd5f785 9 int copy_links = 0;
994f69cd
WD
10+int do_fsync = 0;
11 int preserve_links = 0;
12 int preserve_hard_links = 0;
13 int preserve_perms = 0;
91f798a7 14@@ -320,6 +321,7 @@ void usage(enum logcode F)
a7219d20
WD
15 rprintf(F," --partial keep partially transferred files\n");
16 rprintf(F," --partial-dir=DIR put a partially transferred file into DIR\n");
17 rprintf(F," --delay-updates put all updated files into place at transfer's end\n");
edd5f785 18+ rprintf(F," --fsync fsync every written file\n");
a7219d20
WD
19 rprintf(F," --numeric-ids don't map uid/gid values by user/group name\n");
20 rprintf(F," --timeout=TIME set I/O timeout in seconds\n");
21 rprintf(F," -I, --ignore-times don't skip files that match in size and mod-time\n");
91f798a7 22@@ -485,6 +487,7 @@ static struct poptOption long_options[]
489b0a72
WD
23 {"only-write-batch", 0, POPT_ARG_STRING, &batch_name, OPT_ONLY_WRITE_BATCH, 0, 0 },
24 {"files-from", 0, POPT_ARG_STRING, &files_from, 0, 0, 0 },
25 {"from0", '0', POPT_ARG_NONE, &eol_nulls, 0, 0, 0},
edd5f785 26+ {"fsync", 0, POPT_ARG_NONE, &do_fsync, 0, 0, 0 },
489b0a72
WD
27 {"numeric-ids", 0, POPT_ARG_NONE, &numeric_ids, 0, 0, 0 },
28 {"timeout", 0, POPT_ARG_INT, &io_timeout, 0, 0, 0 },
29 {"rsh", 'e', POPT_ARG_STRING, &shell_cmd, 0, 0, 0 },
91f798a7 30@@ -1602,6 +1605,9 @@ void server_options(char **args,int *arg
edd5f785
WD
31 args[ac++] = tmpdir;
32 }
7b675ff5 33
edd5f785
WD
34+ if (do_fsync && am_sender)
35+ args[ac++] = "--fsync";
7b675ff5 36+
0808daa5 37 if (basis_dir[0] && am_sender) {
edd5f785 38 /* the server only needs this option if it is not the sender,
7b675ff5 39 * and it may be an older version that doesn't know this
91f798a7 40--- orig/receiver.c 2005-11-10 16:58:36
1d15f8d9 41+++ receiver.c 2005-02-20 00:17:37
388bf7cc 42@@ -38,6 +38,7 @@ extern int keep_dirlinks;
b76d92e6 43 extern int preserve_hard_links;
f6c3b300 44 extern int preserve_perms;
f6c3b300 45 extern int io_error;
edd5f785 46+extern int do_fsync;
1d15f8d9
WD
47 extern int basis_dir_cnt;
48 extern int make_backups;
49 extern int cleanup_got_literal;
56208f7b 50@@ -319,6 +320,12 @@ static int receive_data(int f_in, char *
7b675ff5
WD
51 exit_cleanup(RERR_FILEIO);
52 }
edd5f785 53
67c08134 54+ if (do_fsync && fd != -1 && fsync(fd) != 0) {
7b675ff5 55+ rsyserr(FERROR, errno, "fsync failed on %s",
fe6407b5 56+ full_fname(fname));
edd5f785
WD
57+ exit_cleanup(RERR_FILEIO);
58+ }
59+
7b675ff5 60 sum_end(file_sum1);
edd5f785 61
dc3ae351 62 if (mapbuf)
91f798a7
WD
63--- orig/t_stub.c 2005-11-12 20:13:05
64+++ t_stub.c 2005-11-12 20:13:29
65@@ -30,6 +30,7 @@ int modify_window = 0;
01c39596 66 int module_id = -1;
56208f7b 67 int relative_paths = 0;
91f798a7 68 int human_readable = 0;
01c39596
WD
69+int do_fsync;
70 char *partial_dir;
4f9b6a01 71 struct filter_list_struct server_filter_list;
01c39596 72
91f798a7
WD
73--- orig/util.c 2005-11-12 20:13:05
74+++ util.c 2005-11-12 20:13:44
75@@ -30,6 +30,7 @@
76 extern int verbose;
77 extern int dry_run;
56208f7b 78 extern int module_id;
91f798a7 79+extern int do_fsync;
7b675ff5 80 extern int modify_window;
56208f7b 81 extern int relative_paths;
91f798a7
WD
82 extern int human_readable;
83@@ -312,6 +313,12 @@ int copy_file(char *source, char *dest,
7b675ff5
WD
84 return -1;
85 }
edd5f785 86
7b675ff5
WD
87+ if (do_fsync && fsync(ofd) < 0) {
88+ rsyserr(FERROR, errno, "fsync failed on %s",
fe6407b5 89+ full_fname(dest));
edd5f785
WD
90+ return -1;
91+ }
92+
7b675ff5
WD
93 return 0;
94 }
95