aboutsummaryrefslogtreecommitdiff
path: root/ChangeLog
diff options
context:
space:
mode:
authorMiklos Szeredi <mszeredi@suse.cz>2011-11-16 14:54:37 +0100
committerBenjamin Fleischer <fleiben@gmail.com>2012-01-22 10:45:50 +0100
commitfa9bfc6d08fc01d3ac6ec91bec7cdc102aec2df1 (patch)
treef62cbc1239cb4e3141086a1a35f091911122c6a6 /ChangeLog
parent90619fe249050e3a8145aac526e7eed552464731 (diff)
downloadsshfs-fa9bfc6d08fc01d3ac6ec91bec7cdc102aec2df1.tar
sshfs-fa9bfc6d08fc01d3ac6ec91bec7cdc102aec2df1.tar.gz
sshfs-fa9bfc6d08fc01d3ac6ec91bec7cdc102aec2df1.tar.bz2
sshfs-fa9bfc6d08fc01d3ac6ec91bec7cdc102aec2df1.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.