diff options
author | Nikolaus Rath <Nikolaus@rath.org> | 2016-10-15 19:07:57 -0700 |
---|---|---|
committer | Nikolaus Rath <Nikolaus@rath.org> | 2016-10-15 19:09:45 -0700 |
commit | b46250c40e29a23d37fe8fdadd6ef0d4cfe8b897 (patch) | |
tree | 1129c1466b04adfde9b31252a489c6ad4f118373 /ChangeLog.rst | |
parent | 0bef21e8543dda7f02b5f4cb3008a7292d249842 (diff) | |
download | libfuse-b46250c40e29a23d37fe8fdadd6ef0d4cfe8b897.tar.gz |
Removed -o nopath - it never did anything
We are overriding this setting with the flag in struct fuse_operations:
$ example/hello -f -d ~/tmp/mnt
FUSE library version: 3.0.0pre0
nopath: 0
unique: 1, opcode: INIT (26), nodeid: 0, insize: 56, pid: 0
INIT: 7.25
flags=0x0007fffb
max_readahead=0x00020000
INIT: 7.23
flags=0x00006031
max_readahead=0x00020000
max_write=0x00020000
max_background=0
congestion_threshold=0
time_gran=0
unique: 1, success, outsize: 80
$ example/hello -f -d ~/tmp/mnt -o nopath
FUSE library version: 3.0.0pre0
nopath: 0
unique: 1, opcode: INIT (26), nodeid: 0, insize: 56, pid: 0
INIT: 7.25
flags=0x0007fffb
max_readahead=0x00020000
INIT: 7.23
flags=0x00006031
max_readahead=0x00020000
max_write=0x00020000
max_background=0
congestion_threshold=0
time_gran=0
unique: 1, success, outsize: 80
Diffstat (limited to 'ChangeLog.rst')
-rw-r--r-- | ChangeLog.rst | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/ChangeLog.rst b/ChangeLog.rst index e3ebb89..1748855 100644 --- a/ChangeLog.rst +++ b/ChangeLog.rst @@ -1,6 +1,10 @@ Unreleased Changes ================== +* The ``-o nopath`` option has been dropped - it never actually did + anything (since it is unconditionally overwritten with the value of + the `nopath` flag in `struct fuse_operations). + * The ``-o large_read`` mount option has been dropped. Hopefully no one uses a Linux 2.4 kernel anymore. |