From owner-svn-src-all@freebsd.org Wed Aug 7 16:42:35 2019 Return-Path: Delivered-To: svn-src-all@mailman.nyi.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2610:1c1:1:606c::19:1]) by mailman.nyi.freebsd.org (Postfix) with ESMTP id 75B11AFFAF; Wed, 7 Aug 2019 16:42:35 +0000 (UTC) (envelope-from asomers@FreeBSD.org) Received: from mxrelay.nyi.freebsd.org (mxrelay.nyi.freebsd.org [IPv6:2610:1c1:1:606c::19:3]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) server-signature RSA-PSS (4096 bits) client-signature RSA-PSS (4096 bits) client-digest SHA256) (Client CN "mxrelay.nyi.freebsd.org", Issuer "Let's Encrypt Authority X3" (verified OK)) by mx1.freebsd.org (Postfix) with ESMTPS id 463ck32cPvz3xB2; Wed, 7 Aug 2019 16:42:35 +0000 (UTC) (envelope-from asomers@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mxrelay.nyi.freebsd.org (Postfix) with ESMTPS id 3393BF95F; Wed, 7 Aug 2019 16:42:35 +0000 (UTC) (envelope-from asomers@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id x77GgZul086331; Wed, 7 Aug 2019 16:42:35 GMT (envelope-from asomers@FreeBSD.org) Received: (from asomers@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id x77GgZOE086330; Wed, 7 Aug 2019 16:42:35 GMT (envelope-from asomers@FreeBSD.org) Message-Id: <201908071642.x77GgZOE086330@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: asomers set sender to asomers@FreeBSD.org using -f From: Alan Somers Date: Wed, 7 Aug 2019 16:42:35 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r350681 - head X-SVN-Group: head X-SVN-Commit-Author: asomers X-SVN-Commit-Paths: head X-SVN-Commit-Revision: 350681 X-SVN-Commit-Repository: base MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 07 Aug 2019 16:42:35 -0000 Author: asomers Date: Wed Aug 7 16:42:34 2019 New Revision: 350681 URL: https://svnweb.freebsd.org/changeset/base/350681 Log: Update RELNOTES for the fusefs rewrite MFC after: Never Sponsored by: The FreeBSD Foundation Modified: head/RELNOTES Modified: head/RELNOTES ============================================================================== --- head/RELNOTES Wed Aug 7 16:24:08 2019 (r350680) +++ head/RELNOTES Wed Aug 7 16:42:34 2019 (r350681) @@ -10,6 +10,26 @@ newline. Entries should be separated by a newline. Changes to this file should not be MFCed. +r350665: + The fuse driver has been renamed to fusefs(5) and been substantially + rewritten. The new driver includes many bug fixes and performance + enhancements, as well as the following user-visible features: + * Optional kernel-side permissions checks (-o default_permissions) + * mknod(2), socket(2), and pipe(2) support + * server side locking with fcntl(2) + * FUSE operations are now interruptible when mounted with -o intr + * server side handling of UTIME_NOW during utimensat(2) + * mount options may be updated with "mount -u" + * fusefs file system may now be exported over NFS + * RLIMIT_FSIZE support + * support for fuse file systems using protocols as old as 7.4 + + FUSE file system developers should also take note of the following new + features: + * The protocol level has been raised from 7.8 to 7.23 + * kqueue support on /dev/fuse + * server-initiated cache invalidation via FUSE_NOTIFY_REPLY + r350471: gnop(8) can now configure a delay to be applied to read and write request delays. See the -d, -q and -x parameters.