diff options
author | Steve French <stfrench@microsoft.com> | 2018-06-13 18:05:58 -0400 |
---|---|---|
committer | Steve French <stfrench@microsoft.com> | 2018-06-15 03:38:08 -0400 |
commit | d409014e4feeab486fb36b350abfc4c94de8be37 (patch) | |
tree | 23aba1406c21e7dc0d6afa7aa4769236e9829b40 | |
parent | 290c3982f66ab750e85863efcb1fdd736985e5d2 (diff) |
smb3: increase initial number of credits requested to allow write
Compared to other clients the Linux smb3 client ramps up
credits very slowly, taking more than 128 operations before a
maximum size write could be sent (since the number of credits
requested is only 2 per small operation, causing the credit
limit to grow very slowly).
This lack of credits initially would impact large i/o performance,
when large i/o is tried early before enough credits are built up.
Signed-off-by: Steve French <stfrench@gmail.com>
Reviewed-by: Ronnie Sahlberg <lsahlber@redhat.com>
-rw-r--r-- | fs/cifs/smb2pdu.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/fs/cifs/smb2pdu.c b/fs/cifs/smb2pdu.c index af032e1a3eac..328e23abd241 100644 --- a/fs/cifs/smb2pdu.c +++ b/fs/cifs/smb2pdu.c | |||
@@ -990,8 +990,9 @@ SMB2_sess_alloc_buffer(struct SMB2_sess_data *sess_data) | |||
990 | req->PreviousSessionId = sess_data->previous_session; | 990 | req->PreviousSessionId = sess_data->previous_session; |
991 | 991 | ||
992 | req->Flags = 0; /* MBZ */ | 992 | req->Flags = 0; /* MBZ */ |
993 | /* to enable echos and oplocks */ | 993 | |
994 | req->sync_hdr.CreditRequest = cpu_to_le16(3); | 994 | /* enough to enable echos and oplocks and one max size write */ |
995 | req->sync_hdr.CreditRequest = cpu_to_le16(130); | ||
995 | 996 | ||
996 | /* only one of SMB2 signing flags may be set in SMB2 request */ | 997 | /* only one of SMB2 signing flags may be set in SMB2 request */ |
997 | if (server->sign) | 998 | if (server->sign) |