New version 1.11.0

- Reduce the number of memory allocations in the ZDR layer.
 - Check both seconds and nanoseconds field when validating dir cache.
 - Invalidate the dir cache immediately if we do something that would cause
   it to become stale, such as adding/removing objects from the cache.
 - Add options to enable/disable dir caching.
 - Discard readahead cache on [p]write and truncate.
 - Android fixes
 - Windows fixes
 - Support timeouts for sync functions
 - Add an internal pagecache
 - Add nfs_rewinddir(), nfs_seekdir() and nfs_telldir()
 - Fix crash in nfs_truncate()
 - Fix segfault that can trigger if we rpc_disconnect() during the mount.
 - Add support to bind to a specific interface (linux only)

Signed-off-by: Ronnie Sahlberg <ronniesahlberg@gmail.com>
libnfs-4.0.0-vitalif
Ronnie Sahlberg 2016-10-09 10:43:46 -07:00
parent 235cb45e69
commit 2edbd14779
3 changed files with 19 additions and 4 deletions

View File

@ -1,5 +1,5 @@
AC_PREREQ(2.50)
AC_INIT([libnfs], [1.10.0], [ronniesahlberg@gmail.com])
AC_INIT([libnfs], [1.11.0], [ronniesahlberg@gmail.com])
AC_CONFIG_HEADERS([config.h])
AM_INIT_AUTOMAKE([-Wall foreign subdir-objects])
AC_CANONICAL_HOST

View File

@ -22,9 +22,9 @@ libnfs_la_SOURCES = \
socket.c \
../win32/win32_compat.c
SOCURRENT=9
SOREVISION=1
SOAGE=1
SOCURRENT=10
SOREVISION=0
SOAGE=2
libnfs_la_LDFLAGS = -version-info $(SOCURRENT):$(SOREVISION):$(SOAGE)
libnfs_la_LIBADD = \
../mount/libmount.la \

View File

@ -112,6 +112,21 @@ Utility programs for LibNFS
%{_mandir}/man1/nfs-ls.1.gz
%changelog
* Sun Oct 9 2016 : Version 1.11.0
- Reduce the number of memory allocations in the ZDR layer.
- Check both seconds and nanoseconds field when validating dir cache.
- Invalidate the dir cache immediately if we do something that would cause
it to become stale, such as adding/removing objects from the cache.
- Add options to enable/disable dir caching.
- Discard readahead cache on [p]write and truncate.
- Android fixes
- Windows fixes
- Support timeouts for sync functions
- Add an internal pagecache
- Add nfs_rewinddir(), nfs_seekdir() and nfs_telldir()
- Fix crash in nfs_truncate()
- Fix segfault that can trigger if we rpc_disconnect() during the mount.
- Add support to bind to a specific interface (linux only)
* Sun Jan 31 2016 : Version 1.10.0
- Fix a leak where we leaked one rdpe_cb_data structure on each open_dir()
- Make building the utils optional