From owner-freebsd-current@FreeBSD.ORG Fri Oct 2 08:43:05 2009 Return-Path: Delivered-To: freebsd-current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1F4B2106566B for ; Fri, 2 Oct 2009 08:43:05 +0000 (UTC) (envelope-from gleb.kurtsou@gmail.com) Received: from fg-out-1718.google.com (fg-out-1718.google.com [72.14.220.154]) by mx1.freebsd.org (Postfix) with ESMTP id 9FBEC8FC24 for ; Fri, 2 Oct 2009 08:43:04 +0000 (UTC) Received: by fg-out-1718.google.com with SMTP id e21so1888392fga.13 for ; Fri, 02 Oct 2009 01:43:03 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:date:from:to:cc:subject :message-id:references:mime-version:content-type:content-disposition :in-reply-to:user-agent; bh=FgFiOGkil2IGmZzVJb+s5+lClUxLegJRQNu4PjRjkxo=; b=nx1w5M8b48/ok/5gYI+EpT22pubB42Z+JFiPwE3ynp3/B46ceHv8ym0awwVrDJ+w4s 21F0GbYgviuTrypgQUj9mfHBxt3BzMTcwEVYtM9Nyo3zZQLQl3Ah+TZ+OaOYDTK0wl/K 6wy5j2/CpqAv+JnwH6vipoa7yaXDzJYALnTUs= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=date:from:to:cc:subject:message-id:references:mime-version :content-type:content-disposition:in-reply-to:user-agent; b=Vb9s2dBBS8MBVXVhw1QYc7Tjm0kK6VOtlvVXsHIQ9bh7Hj+TbWK+S81fSQ6aIO1YkY jYgJSc2ExwAUygZx608J8GmRZAyFIi8LntehMJ5wqFZMUWHEVlVwh5ICJ99T5o7ZTx5A 3egogTvitxkRrCg3LbYZehH7S2KaQMv6f3Hbk= Received: by 10.86.174.2 with SMTP id w2mr2096297fge.0.1254472983702; Fri, 02 Oct 2009 01:43:03 -0700 (PDT) Received: from localhost ([78.157.90.54]) by mx.google.com with ESMTPS id 4sm1053527fge.6.2009.10.02.01.43.02 (version=TLSv1/SSLv3 cipher=RC4-MD5); Fri, 02 Oct 2009 01:43:03 -0700 (PDT) Date: Fri, 2 Oct 2009 11:42:44 +0300 From: Gleb Kurtsou To: Guy Brand Message-ID: <20091002084244.GA1802@tops> References: <20091001212342.GA1417@tops> <20091002071718.GD69862@unistra.fr> <20091002081022.GA1585@tops> <20091002081442.GF69862@unistra.fr> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="jRHKVT23PllUwdXP" Content-Disposition: inline In-Reply-To: <20091002081442.GF69862@unistra.fr> User-Agent: Mutt/1.5.20 (2009-06-14) Cc: freebsd-current@freebsd.org Subject: Re: RFC: kernel level cryptographic filesystem (summer of code project) X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 02 Oct 2009 08:43:05 -0000 --jRHKVT23PllUwdXP Content-Type: text/plain; charset=utf-8 Content-Disposition: inline On (02/10/2009 10:14), Guy Brand wrote: > Gleb Kurtsou (gleb.kurtsou@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). --jRHKVT23PllUwdXP Content-Type: text/plain; charset=utf-8 Content-Disposition: attachment; filename="pefs-depends.patch.txt" 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); + --jRHKVT23PllUwdXP--