]> git.ipfire.org Git - thirdparty/systemd.git/commitdiff
mountpoint-util: clarify that EOVERFLOW is visible on nfs4/autofs mounts
authorLennart Poettering <lennart@poettering.net>
Tue, 25 Jun 2024 10:46:19 +0000 (12:46 +0200)
committerLennart Poettering <lennart@poettering.net>
Mon, 1 Jul 2024 13:45:15 +0000 (15:45 +0200)
src/basic/mountpoint-util.c

index c9cf1bcdac3e7739363dffa0e1e808ca714b5f31..2b05abfbfe49895567e2bbfb53293c8af4dbe986 100644 (file)
@@ -106,9 +106,9 @@ int name_to_handle_at_loop(
                         return 0;
                 }
 
-                /* If name_to_handle_at() didn't increase the byte size, then this EOVERFLOW is caused by something
-                 * else (apparently EOVERFLOW is returned for untriggered nfs4 mounts sometimes), not by the too small
-                 * buffer. In that case propagate EOVERFLOW */
+                /* If name_to_handle_at() didn't increase the byte size, then this EOVERFLOW is caused by
+                 * something else (apparently EOVERFLOW is returned for untriggered nfs4 autofs mounts
+                 * sometimes), not by the too small buffer. In that case propagate EOVERFLOW */
                 if (h->handle_bytes <= n)
                         return -EOVERFLOW;