[dolphin] [Bug 516127] Dolphin triggers all AUTOFS mounts on startup since last update
https://bugs.kde.org/show_bug.cgi?id=516127 TraceyC changed: What|Removed |Added CC||[email protected] --- Comment #10 from TraceyC --- *** Bug 516907 has been marked as a duplicate of this bug. *** -- You are receiving this mail because: You are watching all bug changes.
[dolphin] [Bug 516127] Dolphin triggers all AUTOFS mounts on startup since last update
https://bugs.kde.org/show_bug.cgi?id=516127 Larry changed: What|Removed |Added CC||[email protected] --- Comment #9 from Larry --- *** Bug 517605 has been marked as a duplicate of this bug. *** -- You are receiving this mail because: You are watching all bug changes.
[dolphin] [Bug 516127] Dolphin triggers all AUTOFS mounts on startup since last update
https://bugs.kde.org/show_bug.cgi?id=516127 Larry changed: What|Removed |Added Resolution|--- |FIXED Status|CONFIRMED |RESOLVED CC||[email protected] --- Comment #8 from Larry --- I confirm that this bug has been fixed in KDE Frameworks 6.24, but bug 515692 and bug 516275 still persist. -- You are receiving this mail because: You are watching all bug changes.
[dolphin] [Bug 516127] Dolphin triggers all AUTOFS mounts on startup since last update
https://bugs.kde.org/show_bug.cgi?id=516127 Mariusz Libera changed: What|Removed |Added CC||[email protected] --- Comment #7 from Mariusz Libera --- *** Bug 517343 has been marked as a duplicate of this bug. *** -- You are receiving this mail because: You are watching all bug changes.
[dolphin] [Bug 516127] Dolphin triggers all AUTOFS mounts on startup since last update
https://bugs.kde.org/show_bug.cgi?id=516127 Méven Car changed: What|Removed |Added CC||[email protected] Version||6.24 Fixed/Implemented|| In|| Latest Commit||https://invent.kde.org/fram ||eworks/kio/-/commit/089402f ||eef724812d3d842da46ac08fb1e ||173521 -- You are receiving this mail because: You are watching all bug changes.
[dolphin] [Bug 516127] Dolphin triggers all AUTOFS mounts on startup since last update
https://bugs.kde.org/show_bug.cgi?id=516127 --- Comment #6 from Delio Sampaio --- > The issue got silently fixed on the master branch by > https://invent.kde.org/frameworks/kio/-/commit/ > 089402feef724812d3d842da46ac08fb1e173521 I've recompiled kio with that patch and indeed the bug is fixed on my Arch. Thanks! -- You are receiving this mail because: You are watching all bug changes.
[dolphin] [Bug 516127] Dolphin triggers all AUTOFS mounts on startup since last update
https://bugs.kde.org/show_bug.cgi?id=516127 Tomas Trnka changed: What|Removed |Added CC||eugene.shalygin+bugzilla.kd ||[email protected] --- Comment #5 from Tomas Trnka --- *** Bug 516702 has been marked as a duplicate of this bug. *** -- You are receiving this mail because: You are watching all bug changes.
[dolphin] [Bug 516127] Dolphin triggers all AUTOFS mounts on startup since last update
https://bugs.kde.org/show_bug.cgi?id=516127 Tomas Trnka changed: What|Removed |Added Status|REPORTED|CONFIRMED Ever confirmed|0 |1 CC||[email protected] --- Comment #4 from Tomas Trnka --- This is caused by KIO commit https://invent.kde.org/frameworks/kio/-/commit/4709688aa80d7fc2cac7bce7285f6830e4cbcf21 which accidentally triggers automounting of all mountpoints on every call to KMountPoint::currentMountPoints (due to switching from stat() which never automounts to statx() which automounts by default unless AT_NO_AUTOMOUNT is passed in flags). This commit went into 6.23.0. Not just Dolphin is affected, but also Krusader and anything else calling KMountPoint::currentMountPoints. The issue got silently fixed on the master branch by https://invent.kde.org/frameworks/kio/-/commit/089402feef724812d3d842da46ac08fb1e173521 Until that change makes it into a release, the following trivial patch fixes the issue on 6.23.0: = begin patch = --- kio-6.23.0_orig/src/core/kmountpoint.cpp2026-02-06 13:15:16.0 +0100 +++ kio-6.23.0/src/core/kmountpoint.cpp 2026-02-26 14:04:23.052379920 +0100 @@ -372,7 +372,7 @@ } #endif -if (struct statx buff; statx(AT_FDCWD, mnt_fs_get_target(fs), AT_STATX_DONT_SYNC, STATX_INO, &buff) == 0) { +if (struct statx buff; statx(AT_FDCWD, mnt_fs_get_target(fs), AT_STATX_DONT_SYNC | AT_NO_AUTOMOUNT, STATX_INO, &buff) == 0) { mp->d->m_deviceId = makedev(buff.stx_dev_major, buff.stx_dev_minor); } = end patch = (For those on Fedora 43, I have a patched build in Copr: https://copr.fedorainfracloud.org/coprs/tootea/earlybird/build/10172052/ ) -- You are receiving this mail because: You are watching all bug changes.
[dolphin] [Bug 516127] Dolphin triggers all AUTOFS mounts on startup since last update
https://bugs.kde.org/show_bug.cgi?id=516127 [email protected] changed: What|Removed |Added CC||[email protected] --- Comment #3 from [email protected] --- (In reply to Delio Sampaio from comment #2) > I managed to identify what's causing the bug. When the Dolphin status bar is > set to "full width", it triggers an automount for all systems. This affects > not only autofs, but any systemd .automount or .mount units. > > When the status bar is set to "small", the bug doesn't occur, likely because > it doesn't check for free space in that mode. Finally, this drove me crazy the past days, since Dolphin becomes laggy and traversing a folder on your local filesystem takes several seconds when the mounts are being offline. I can confirm this. -- You are receiving this mail because: You are watching all bug changes.
[dolphin] [Bug 516127] Dolphin triggers all AUTOFS mounts on startup since last update
https://bugs.kde.org/show_bug.cgi?id=516127 --- Comment #2 from Delio Sampaio --- I managed to identify what's causing the bug. When the Dolphin status bar is set to "full width", it triggers an automount for all systems. This affects not only autofs, but any systemd .automount or .mount units. When the status bar is set to "small", the bug doesn't occur, likely because it doesn't check for free space in that mode. -- You are receiving this mail because: You are watching all bug changes.
[dolphin] [Bug 516127] Dolphin triggers all AUTOFS mounts on startup since last update
https://bugs.kde.org/show_bug.cgi?id=516127 --- Comment #1 from Delio Sampaio --- Update: The bug persisted with KDE 6.6.0... -- You are receiving this mail because: You are watching all bug changes.
[dolphin] [Bug 516127] Dolphin triggers all AUTOFS mounts on startup since last update
https://bugs.kde.org/show_bug.cgi?id=516127 Delio Sampaio changed: What|Removed |Added Summary|Dolphin triggers AUTOFS |Dolphin triggers all AUTOFS |auto-mounts on startup |mounts on startup since |since last update |last update -- You are receiving this mail because: You are watching all bug changes.
