]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
tail: no longer warn about unrecognized file systems
authorPádraig Brady <P@draigBrady.com>
Mon, 12 Oct 2015 00:37:44 +0000 (01:37 +0100)
committerPádraig Brady <P@draigBrady.com>
Mon, 12 Oct 2015 00:40:27 +0000 (01:40 +0100)
* src/tail.c (fremote): No longer prompt the user to email
with the unrecognized file system constant, since we have
process in place to sync periodically with the latest Linux
constants, and the fall back polling mode is still fully functional.

src/tail.c

index 2fa0ae0480536274ffdba3eeab30a0ae5c913d59..dfa7e30dfffbe24dc7e9e37cc12927ecc6e0bd49 100644 (file)
@@ -900,13 +900,9 @@ fremote (int fd, const char *name)
         case 0:
           break;
         case -1:
-          {
-            unsigned long int fs_type = buf.f_type;
-            error (0, 0, _("unrecognized file system type 0x%08lx for %s. "
-                           "please report this to %s. reverting to polling"),
-                   fs_type, quote (name), PACKAGE_BUGREPORT);
-            /* Treat as "remote", so caller polls.  */
-          }
+          /* Treat unrecognized file systems as "remote", so caller polls.
+             Note README-release has instructions for syncing the internal
+             list with the latest Linux kernel file system constants.  */
           break;
         case 1:
           remote = false;