aboutsummaryrefslogtreecommitdiffstats
path: root/sysutils
diff options
context:
space:
mode:
authoramdmi3 <amdmi3@FreeBSD.org>2015-08-06 03:41:08 +0800
committeramdmi3 <amdmi3@FreeBSD.org>2015-08-06 03:41:08 +0800
commit82b4e588149a1d54e680a0c81db553c798bc1101 (patch)
treef25bec17309dbf72300568c0c92aefb677edfd1b /sysutils
parent31a323d8415d5001a53b70010ca373fc7d0b4539 (diff)
downloadfreebsd-ports-gnome-82b4e588149a1d54e680a0c81db553c798bc1101.tar.gz
freebsd-ports-gnome-82b4e588149a1d54e680a0c81db553c798bc1101.tar.zst
freebsd-ports-gnome-82b4e588149a1d54e680a0c81db553c798bc1101.zip
- 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.
Diffstat (limited to 'sysutils')
-rw-r--r--sysutils/fusefs-ntfs/files/README.FreeBSD11
1 files changed, 9 insertions, 2 deletions
diff --git a/sysutils/fusefs-ntfs/files/README.FreeBSD b/sysutils/fusefs-ntfs/files/README.FreeBSD
index f1c101be8952..0c9905d230f7 100644
--- a/sysutils/fusefs-ntfs/files/README.FreeBSD
+++ b/sysutils/fusefs-ntfs/files/README.FreeBSD
@@ -105,9 +105,16 @@ useful for testing purposes and in practice has no use.
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