From owner-freebsd-current@FreeBSD.ORG Sun Jun 22 12:19:09 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 0B4DF106566B for ; Sun, 22 Jun 2008 12:19:09 +0000 (UTC) (envelope-from pluknet@gmail.com) Received: from wr-out-0506.google.com (wr-out-0506.google.com [64.233.184.237]) by mx1.freebsd.org (Postfix) with ESMTP id BC74E8FC14 for ; Sun, 22 Jun 2008 12:19:08 +0000 (UTC) (envelope-from pluknet@gmail.com) Received: by wr-out-0506.google.com with SMTP id c8so939340wra.27 for ; Sun, 22 Jun 2008 05:19:07 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:received:received:message-id:date:from:to :subject:cc:in-reply-to:mime-version:content-type :content-transfer-encoding:content-disposition:references; bh=0e80UBPDPVBZDyDmU7YUvc0eVml7N6CQOzAVrP/DqEg=; b=cv370RcuflFhVT1X/COg2W7+/iuOudUS5g+hJ4hLtd62DAIWC7kiuxMaOR0G1NVhjk hVP7fmptJ740soU+nmp1bbXmqaBhTNU9jBwI9hoi3vSltKFrDkuBfkjay9iP4crSsUwg d/JSaEljpJnCEEvMCnyoU/5D0n8ZknZLqGZDY= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=message-id:date:from:to:subject:cc:in-reply-to:mime-version :content-type:content-transfer-encoding:content-disposition :references; b=xUFLKY/NQVDL2OILyCQmmGnUmqkMiDy0e/GQcF7MGq+zm+FbQNy2emsOQYfxe/F99P bIUk+9dR5EKrHA0HzShsMlh9+MbEd4yONrAYs4LGJIuBK7IKBj1fTLIMEQDYOKCwm5Jx l+mFpNnRQJLfpI0Lrt9Zxb6IVMxlP783DSAcQ= Received: by 10.90.98.13 with SMTP id v13mr8108929agb.86.1214137147436; Sun, 22 Jun 2008 05:19:07 -0700 (PDT) Received: by 10.90.96.4 with HTTP; Sun, 22 Jun 2008 05:19:07 -0700 (PDT) Message-ID: Date: Sun, 22 Jun 2008 16:19:07 +0400 From: pluknet To: "Ed Schouten" In-Reply-To: <20080622114733.GV93496@hoeg.nl> MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Content-Disposition: inline References: <1213986980.3480.16.camel@localhost> <20080620202413.GS93496@hoeg.nl> <20080622114733.GV93496@hoeg.nl> 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 12:19:09 -0000 2008/6/22 Ed Schouten : > * 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 = fusedev_read, > .d_write = fusedev_write, > .d_version = D_VERSION, > +#ifndef D_NEEDMINOR > +#define D_NEEDMINOR 0 > +#endif > #if ! DO_GIANT_MANUALLY > - .d_flags = D_NEEDGIANT, > + .d_flags = D_NEEDMINOR|D_NEEDGIANT, > +#else > + .d_flags = D_NEEDMINOR, > #endif > }; > > %%% [hell, i have already prepared my own patch :)] Thanks, Ed. It does not panics for me now. Though, It always returns "remote host has disconnected" (probably not related to the topic). wbr, pluknet