RFC: kernel level cryptographic filesystem (summer of code project)

Gleb Kurtsou gleb.kurtsou at gmail.com
Fri Oct 2 08:43:05 UTC 2009


On (02/10/2009 10:14), Guy Brand wrote:
> Gleb Kurtsou (gleb.kurtsou at gmail.com) on 02/10/2009 at 11:10 wrote:
> 
> > My bad. Dependency on crypto module is missing. Try
> > kldload crypto
> > Please let me know if it fixes the issue for you.
> 
> Already tried, same issue.
Would you try the patch attached.

Another common reason for 'kldload: can't load pefs: Exec format error'
is running kernel and sources version mismatch (sources are newer then
kernel). 

-------------- next part --------------
diff --git a/sys/fs/pefs/pefs_vfsops.c b/sys/fs/pefs/pefs_vfsops.c
index 0fc4b85..93b2d80 100644
--- a/sys/fs/pefs/pefs_vfsops.c
+++ b/sys/fs/pefs/pefs_vfsops.c
@@ -322,3 +322,5 @@ static struct vfsops pefs_vfsops = {
 
 VFS_SET(pefs_vfsops, pefs, VFCF_LOOPBACK);
 MODULE_DEPEND(pefs, salsa20, 1, 1, 1);
+MODULE_DEPEND(pefs, crypto, 1, 1, 1);
+


More information about the freebsd-current mailing list