diff options
| author | Jie Liu <jeff.liu@oracle.com> | 2010-06-11 16:29:02 +0800 |
|---|---|---|
| committer | Jim Meyering <meyering@redhat.com> | 2011-01-22 12:16:43 +0100 |
| commit | 153790eca19fcc92855420ea94893cc95e7b306c (patch) | |
| tree | e57f1721e63e93a24b8a12466cf690232e912203 | |
| parent | tests: accommodate varying filefrag -v "flags" output (diff) | |
| download | coreutils-153790eca19fcc92855420ea94893cc95e7b306c.tar.gz coreutils-153790eca19fcc92855420ea94893cc95e7b306c.zip | |
copy.c: add FIEMAP_FLAG_SYNC to fiemap ioctl
* src/copy.c (fiemap_copy): Force kernel to sync the source
file before mapping.
| -rw-r--r-- | src/copy.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/copy.c b/src/copy.c index 1d32913eb..ead15b82f 100644 --- a/src/copy.c +++ b/src/copy.c @@ -190,6 +190,7 @@ fiemap_copy (int src_fd, int dest_fd, size_t buf_size, do { fiemap->fm_length = FIEMAP_MAX_OFFSET; + fiemap->fm_flags = FIEMAP_FLAG_SYNC; fiemap->fm_extent_count = count; /* When ioctl(2) fails, fall back to the normal copy only if it |
