aboutsummaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authorMiklos Szeredi <mszeredi@suse.cz>2011-11-16 14:54:37 +0100
committerMiklos Szeredi <mszeredi@suse.cz>2011-11-16 14:54:37 +0100
commit97228b866ab9a37a55244463a6b9fc3fdc6d0419 (patch)
tree3c6cff730acdf78adf835ba1ad5986e5e3410f8c /ChangeLog
parentf3286cdf8682bff65c73663f55dc67bd316d2de8 (diff)
downloadsshfs-97228b866ab9a37a55244463a6b9fc3fdc6d0419.tar
sshfs-97228b866ab9a37a55244463a6b9fc3fdc6d0419.tar.gz
sshfs-97228b866ab9a37a55244463a6b9fc3fdc6d0419.tar.bz2
sshfs-97228b866ab9a37a55244463a6b9fc3fdc6d0419.zip
Submit max 32k reads and writes to the sftp server
Also don't limit the kernel to 64k reads and writes, rather split into 32k sized chunks and send them to the server all at once. This is more efficient and less demanding from the server. Reported by Ludovic Courtès. Fix suggested by Niels Möller
Diffstat (limited to 'ChangeLog')
-rw-r--r--ChangeLog8
1 files changed, 8 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 4c6ba2d..8f11917 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,11 @@
+2011-11-16 Miklos Szeredi <miklos@szeredi.hu>
+
+ * Submit max 32k reads and writes to the sftp server. Also don't
+ limit the kernel to 64k reads and writes, rather split into 32k
+ sized chunks and send them to the server all at once. This is
+ more efficient and less demanding from the server. Reported by
+ Ludovic Courtès. Fix suggested by Niels Möller
+
2011-11-14 Miklos Szeredi <miklos@szeredi.hu>
* Fix double free if reconnection races with request sending.