summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBernhard Voelker <mail@bernhard-voelker.de>2013-11-29 12:18:06 +0100
committerBernhard Voelker <mail@bernhard-voelker.de>2013-11-29 13:08:44 +0100
commite11df57c3b9ccd7dff5e3953544371a6bf9b6178 (patch)
tree9b3e19b6c7e2179abcb1c25533285e55bbd3bd47
parent64520354bbd36614d8091dcf654c2e69e686bc64 (diff)
downloadcoreutils-e11df57c3b9ccd7dff5e3953544371a6bf9b6178.tar.xz
maint: remove various FIXME comments
* src/extent-scan.c (extent_need_sync): Remove the FIXME comment about removing the work around. As discussed in [1], the needed FIEMAP fix never made it into the Linux kernel. * src/realpath.c (longopts): Remove the FIXME comment about deprecating the --strip option as it's a valid alias for --no-symlinks option. Also discussed in [1]. [1] http://lists.gnu.org/archive/html/coreutils/2013-11/msg00103.html
-rw-r--r--src/extent-scan.c4
-rw-r--r--src/realpath.c2
2 files changed, 2 insertions, 4 deletions
diff --git a/src/extent-scan.c b/src/extent-scan.c
index 6d3032a72..5e524fa4d 100644
--- a/src/extent-scan.c
+++ b/src/extent-scan.c
@@ -28,9 +28,7 @@
#include "xstrtol.h"
-/* Work around Linux kernel issues on BTRFS and EXT4 before 2.6.39.
- FIXME: remove in 2013, or whenever we're pretty confident
- that the offending, unpatched kernels are no longer in use. */
+/* Work around Linux kernel issues on BTRFS and EXT4. */
static bool
extent_need_sync (void)
{
diff --git a/src/realpath.c b/src/realpath.c
index 292c8f3b7..233b98f95 100644
--- a/src/realpath.c
+++ b/src/realpath.c
@@ -51,7 +51,7 @@ static struct option const longopts[] =
{"relative-to", required_argument, NULL, RELATIVE_TO_OPTION},
{"relative-base", required_argument, NULL, RELATIVE_BASE_OPTION},
{"quiet", no_argument, NULL, 'q'},
- {"strip", no_argument, NULL, 's' /* FIXME: deprecate in 2013 or so */},
+ {"strip", no_argument, NULL, 's'},
{"no-symlinks", no_argument, NULL, 's'},
{"zero", no_argument, NULL, 'z'},
{"logical", no_argument, NULL, 'L'},