File nfs-not-slow.patch of Package kf6-kio
--- a/src/core/kfileitem.cpp 2022-10-08 16:46:31.000000000 +0200
+++ b/src/core/kfileitem.cpp 2022-11-04 21:34:28.702823550 +0100
@@ -826,7 +826,7 @@
const QString path = localPath();
if (!path.isEmpty()) {
const KFileSystemType::Type fsType = KFileSystemType::fileSystemType(path);
- m_slow = (fsType == KFileSystemType::Nfs || fsType == KFileSystemType::Smb) ? Slow : Fast;
+ m_slow = (fsType == KFileSystemType::Smb) ? Slow : Fast;
} else {
m_slow = Slow;
}