SHA256
1
0
forked from pool/fuse3

Accepting request 694955 from home:polslinux:branches:filesystems

- Update to 3.5.0:
  * Changed ioctl commands to "unsigned int" in order to support
    commands which do not fit into a signed int. Commands issued
    by applications are still truncated to 32 bits.
  * Added SMB2 to whitelist (so users can now mount FUSE
    filesystems on mountpoints within SMB 2.0 filesystems).
  * Added a new cache_readdir flag to fuse_file_info to enable
    caching of readdir results. Supported by kernels 4.20 and newer.
  * Add support and documentation for FUSE_CAP_NO_OPENDIR_SUPPORT.

OBS-URL: https://build.opensuse.org/request/show/694955
OBS-URL: https://build.opensuse.org/package/show/filesystems/fuse3?expand=0&rev=20
This commit is contained in:
2019-04-21 09:18:53 +00:00
committed by Git OBS Bridge
parent 1a8f330acf
commit 9002a1a97c
6 changed files with 37 additions and 24 deletions

View File

@@ -1,3 +1,16 @@
-------------------------------------------------------------------
Wed Apr 17 07:48:52 UTC 2019 - Paolo Stivanin <info@paolostivanin.com>
- Update to 3.5.0:
* Changed ioctl commands to "unsigned int" in order to support
commands which do not fit into a signed int. Commands issued
by applications are still truncated to 32 bits.
* Added SMB2 to whitelist (so users can now mount FUSE
filesystems on mountpoints within SMB 2.0 filesystems).
* Added a new cache_readdir flag to fuse_file_info to enable
caching of readdir results. Supported by kernels 4.20 and newer.
* Add support and documentation for FUSE_CAP_NO_OPENDIR_SUPPORT.
-------------------------------------------------------------------
Tue Mar 19 14:35:22 UTC 2019 - Jan Engelhardt <jengelh@inai.de>