summaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authorPaul Eggert <eggert@cs.ucla.edu>2007-02-22 19:09:35 +0100
committerJim Meyering <jim@meyering.net>2007-02-22 19:09:35 +0100
commit4e73fea3e3b6fb721b91bb81e5357fb805eb590d (patch)
tree9bd24b61c9e42d7f2053e34711373e29309b866a /ChangeLog
parentc450b625b4351aa5ab87a4334f95b6a24f3a0022 (diff)
downloadcoreutils-4e73fea3e3b6fb721b91bb81e5357fb805eb590d.tar.xz
Honor dd's noatime flag if possible, even if not supported on build fs
* doc/coreutils.texi (dd invocation): Warn that noatime might not be reliable. * src/dd.c (flags, usage): Look at O_NOATIME, not HAVE_WORKING_O_NOATIME, to decide whether to support the noatime flag, so that dd attempts O_NOATIME even if the build file system does not support it. Problem reported by Jim Meyering today in bug-coreutils. * tests/dd/misc: Generate a warning, not a failure, if noatime exists but fails.
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog13
1 files changed, 13 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index fabf1a33f..938ffb22c 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -12,6 +12,19 @@
This avoids a harmless (but distracting) case of memory being
used-uninitialized.
+2007-02-21 Paul Eggert <eggert@cs.ucla.edu>
+
+ Honor dd's noatime flag if possible, even if not supported on build fs
+ * doc/coreutils.texi (dd invocation): Warn that noatime might not be
+ reliable.
+ * src/dd.c (flags, usage): Look at O_NOATIME, not
+ HAVE_WORKING_O_NOATIME, to decide whether to support the noatime
+ flag, so that dd attempts O_NOATIME even if the build file system
+ does not support it. Problem reported by Jim Meyering today in
+ bug-coreutils.
+ * tests/dd/misc: Generate a warning, not a failure, if noatime
+ exists but fails.
+
2007-02-21 Jim Meyering <jim@meyering.net>
* tests/misc/date: Remove vestigial use of Data::Dumper.