diff --git a/en/projects/ideas/ideas.xml b/en/projects/ideas/ideas.xml
index 80f5a9061f..117b04ef27 100644
--- a/en/projects/ideas/ideas.xml
+++ b/en/projects/ideas/ideas.xml
@@ -15,7 +15,7 @@ Ideas//EN"
Technical contact: Kris Kennaway
+Technical contact: Konstantin Belousov
-Take a filesystem and MPSAFE it. e.g. ext2fs, ntfs, coda, etc.
+FreeBSD 6.0 introduced an multi-processor scalable Virtual File + System (VFS) Framework, allowing file systems to operate without the + Giant lock. Many of the most commonly used file systems have been + adapted to be MPSAFE (i.e., not reliant on Giant), such as UFS, the + NFS client and server, UDF, cd9660, ZFS, and most recently the + msdosfs (FAT) file system. However, in order to remove the + compatibility shims permitting a file system to declare itself + non-MPSAFE, all file systems must be converted. The list of + remaining file systems includes ntfs, hpfs, coda, smbfs, and ncpfs. + This project idea is to take one or more file systems and convert + them to use their own locking, rather than relying on the Giant + lock. In some cases, this requires also adapting underlying + infrastructure: for example, smbfs relies on the netsmb RPC + framework, and ncpfs on the netcp RPC framework, both of which will + also require conversion.