From owner-freebsd-current@FreeBSD.ORG Sun Jun 22 11:47:34 2008 Return-Path: Delivered-To: current@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 33D521065671 for ; Sun, 22 Jun 2008 11:47:34 +0000 (UTC) (envelope-from ed@hoeg.nl) Received: from palm.hoeg.nl (mx0.hoeg.nl [IPv6:2001:610:652::211]) by mx1.freebsd.org (Postfix) with ESMTP id F158B8FC19 for ; Sun, 22 Jun 2008 11:47:33 +0000 (UTC) (envelope-from ed@hoeg.nl) Received: by palm.hoeg.nl (Postfix, from userid 1000) id 4EBAF1CCA9; Sun, 22 Jun 2008 13:47:33 +0200 (CEST) Date: Sun, 22 Jun 2008 13:47:33 +0200 From: Ed Schouten To: pluknet Message-ID: <20080622114733.GV93496@hoeg.nl> References: <1213986980.3480.16.camel@localhost> <20080620202413.GS93496@hoeg.nl> MIME-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="c1qHkdEbEbCG94PZ" Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.18 (2008-05-17) Cc: vova@parallels.com, amistry@am-productions.biz, current@freebsd.org Subject: Re: fusefs on FreeBSD-8 after recent upgrade - do not work any more 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: Sun, 22 Jun 2008 11:47:34 -0000 --c1qHkdEbEbCG94PZ Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable * pluknet wrote: > I don't see any attached patches :/ It looks like Mailman ate my attachment. Please apply this patch: %%% --- fuse_module/fuse_dev.c +++ fuse_module/fuse_dev.c @@ -52,8 +52,13 @@ .d_read =3D fusedev_read, .d_write =3D fusedev_write, .d_version =3D D_VERSION, +#ifndef D_NEEDMINOR +#define D_NEEDMINOR 0 +#endif #if ! DO_GIANT_MANUALLY - .d_flags =3D D_NEEDGIANT, + .d_flags =3D D_NEEDMINOR|D_NEEDGIANT, +#else + .d_flags =3D D_NEEDMINOR, #endif }; =20 %%% --=20 Ed Schouten WWW: http://80386.nl/ --c1qHkdEbEbCG94PZ Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.9 (FreeBSD) iEYEARECAAYFAkheO9UACgkQ52SDGA2eCwWD9ACeM9OuRLMjO6JeLWnZGzQ9cHlq LAwAn2Lja0M06e9yQ9S22Z6fkaDo6oRX =aiWJ -----END PGP SIGNATURE----- --c1qHkdEbEbCG94PZ--