From owner-svn-src-head@FreeBSD.ORG Thu Oct 18 19:28:32 2012 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [69.147.83.52]) by hub.freebsd.org (Postfix) with ESMTP id 19D2D31B; Thu, 18 Oct 2012 19:28:32 +0000 (UTC) (envelope-from ed@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 01CCE8FC08; Thu, 18 Oct 2012 19:28:32 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q9IJSV8M007576; Thu, 18 Oct 2012 19:28:31 GMT (envelope-from ed@svn.freebsd.org) Received: (from ed@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q9IJSVhe007574; Thu, 18 Oct 2012 19:28:31 GMT (envelope-from ed@svn.freebsd.org) Message-Id: <201210181928.q9IJSVhe007574@svn.freebsd.org> From: Ed Schouten Date: Thu, 18 Oct 2012 19:28:31 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r241702 - head/sys/fs/fuse X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 18 Oct 2012 19:28:32 -0000 Author: ed Date: Thu Oct 18 19:28:31 2012 New Revision: 241702 URL: http://svn.freebsd.org/changeset/base/241702 Log: Remove unneeded D_NEEDMINOR. This is only needed when using clonelists. This got remove in r238693. Modified: head/sys/fs/fuse/fuse_device.c Modified: head/sys/fs/fuse/fuse_device.c ============================================================================== --- head/sys/fs/fuse/fuse_device.c Thu Oct 18 18:43:54 2012 (r241701) +++ head/sys/fs/fuse/fuse_device.c Thu Oct 18 19:28:31 2012 (r241702) @@ -99,7 +99,6 @@ static struct cdevsw fuse_device_cdevsw .d_read = fuse_device_read, .d_write = fuse_device_write, .d_version = D_VERSION, - .d_flags = D_NEEDMINOR, }; /****************************