The message that logs when a mount is already mounted and only the timeout will be updated on map re-read can create a lot of noise in the log for direct mount maps. But this is normal operation and is of limited value for both direct and indirect maps, so remove it. Signed-off-by: Ian Kent <raven@xxxxxxxxxx> --- CHANGELOG | 1 + lib/mounts.c | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG b/CHANGELOG index 2e4f05cb7..37a0d25c5 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -32,6 +32,7 @@ - fix lock ordering deadlock in expire_cleanup(). - fix handling of ignored offsets. - fix invalidated map entry handling in hosts module. +- quiet possibly noisy log message. 02/11/2023 autofs-5.1.9 - fix kernel mount status notification. diff --git a/lib/mounts.c b/lib/mounts.c index ab16252c7..dd295f4b3 100644 --- a/lib/mounts.c +++ b/lib/mounts.c @@ -2880,7 +2880,6 @@ static int remount_active_mount(struct autofs_point *ap, /* Re-reading the map, set timeout and return */ if (ap->state == ST_READMAP) { - debug(ap->logopt, "already mounted, update timeout"); ops->timeout(ap->logopt, fd, NULL, timeout); ops->close(ap->logopt, fd); return REMOUNT_READ_MAP; -- 2.50.1