autofs-5.1.9 - quiet possibly noisy log message From: Ian Kent 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 --- CHANGELOG | 1 + lib/mounts.c | 1 - 2 files changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG b/CHANGELOG index 9afc7018f..d66e1d2db 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -69,6 +69,7 @@ - fix state queue not processing state changes. - refactor mnts_get_expire_list(). - add en extra logging entry to tree_mapent_mount_offsets(). +- 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 7aae5bb01..009e11447 100644 --- a/lib/mounts.c +++ b/lib/mounts.c @@ -2900,7 +2900,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;