From owner-svn-ports-head@freebsd.org Wed Aug 5 19:41:09 2015 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id B0CD99B42A3; Wed, 5 Aug 2015 19:41:09 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 8570D10C3; Wed, 5 Aug 2015 19:41:09 +0000 (UTC) (envelope-from amdmi3@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.70]) by repo.freebsd.org (8.14.9/8.14.9) with ESMTP id t75Jf9gB003443; Wed, 5 Aug 2015 19:41:09 GMT (envelope-from amdmi3@FreeBSD.org) Received: (from amdmi3@localhost) by repo.freebsd.org (8.14.9/8.14.9/Submit) id t75Jf938003442; Wed, 5 Aug 2015 19:41:09 GMT (envelope-from amdmi3@FreeBSD.org) Message-Id: <201508051941.t75Jf938003442@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: amdmi3 set sender to amdmi3@FreeBSD.org using -f From: Dmitry Marakasov Date: Wed, 5 Aug 2015 19:41:09 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r393612 - head/sysutils/fusefs-ntfs/files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.20 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 05 Aug 2015 19:41:09 -0000 Author: amdmi3 Date: Wed Aug 5 19:41:08 2015 New Revision: 393612 URL: https://svnweb.freebsd.org/changeset/ports/393612 Log: - Mentione another ublio bug: Current implementation does not properly work with partitions of size which is not a multiply of UBLIO_BLOCKSIZE (cannot read/write last cluster). For instance, you may not be able to create ntfs filesystem because of this with Initializing device with zeroes: 99%Failed to complete writing to /dev/ada0s1 after three retries. Modified: head/sysutils/fusefs-ntfs/files/README.FreeBSD Modified: head/sysutils/fusefs-ntfs/files/README.FreeBSD ============================================================================== --- head/sysutils/fusefs-ntfs/files/README.FreeBSD Wed Aug 5 19:29:19 2015 (r393611) +++ head/sysutils/fusefs-ntfs/files/README.FreeBSD Wed Aug 5 19:41:08 2015 (r393612) @@ -105,9 +105,16 @@ useful for testing purposes and in pract 5. Known issues ============================================================================== -For mkntfs(8) -F must be used to allow non-block device to be processed. +- For mkntfs(8) -F must be used to allow non-block device to be processed. -When reading/writting the same file repeatedly while doing many simultaneous +- Current implementation does not properly work with partitions of size which +is not a multiply of UBLIO_BLOCKSIZE (cannot read/write last cluster). For +instance, you may not be able to create ntfs filesystem because of this with + + Initializing device with zeroes: 99%Failed to complete writing to + /dev/ada0s1 after three retries. + +- When reading/writting the same file repeatedly while doing many simultaneous operations on different files sometimes the former one fails: read(2) returns -1 and sets errno to EAGAIN. This is because of a difference between the FUSE kernel implementation in Linux and FreeBSD, and is being worked on. An example