]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
cifs: unbreak TCP session reuse
authorRabin Vincent <rabinv@axis.com>
Tue, 19 Jul 2016 07:25:45 +0000 (09:25 +0200)
committerSteve French <smfrench@gmail.com>
Tue, 19 Jul 2016 17:19:45 +0000 (12:19 -0500)
adfeb3e0 ("cifs: Make echo interval tunable") added a comparison of
vol->echo_interval to server->echo_interval as a criterium to
match_server(), but:

 (1) A default value is set for server->echo_interval but not for
 vol->echo_interval, meaning these can never match if the echo_interval
 option is not specified.

 (2) vol->echo_interval is in seconds but server->echo_interval is in
 jiffies, meaning these can never match even if the echo_interval option
 is specified.

This broke TCP session reuse since match_server() can never return 1.
Fix it.

Fixes: adfeb3e0 ("cifs: Make echo interval tunable")
Signed-off-by: Rabin Vincent <rabinv@axis.com>
Acked-by: Sachin Prabhu <sprabhu@redhat.com>
CC: Stable <stable@vger.kernel.org>
Signed-off-by: Steve French <smfrench@gmail.com>
fs/cifs/connect.c

index 7d2b15c060909b103e96a90a330c6f0ed7ecd2d0..eb24653612bc03fe17080a6d7de8c52660a086c5 100644 (file)
@@ -1228,6 +1228,8 @@ cifs_parse_mount_options(const char *mountdata, const char *devname,
        vol->ops = &smb1_operations;
        vol->vals = &smb1_values;
 
+       vol->echo_interval = SMB_ECHO_INTERVAL_DEFAULT;
+
        if (!mountdata)
                goto cifs_parse_mount_err;
 
@@ -2049,7 +2051,7 @@ static int match_server(struct TCP_Server_Info *server, struct smb_vol *vol)
        if (!match_security(server, vol))
                return 0;
 
-       if (server->echo_interval != vol->echo_interval)
+       if (server->echo_interval != vol->echo_interval * HZ)
                return 0;
 
        return 1;