From: Paulo Alcantara Date: Wed, 14 Nov 2018 17:38:51 +0000 (-0200) Subject: cifs: Save TTL value when parsing DFS referrals X-Git-Tag: v5.15~7265^2~20 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e7b602f43719fc6173ae86d2de8f6f07c6858ddd;p=platform%2Fkernel%2Flinux-starfive.git cifs: Save TTL value when parsing DFS referrals This will be needed by DFS cache. Signed-off-by: Paulo Alcantara Reviewed-by: Aurelien Aptel Signed-off-by: Steve French --- diff --git a/fs/cifs/cifsglob.h b/fs/cifs/cifsglob.h index 7b3b9313dcde..3b1aa12708a0 100644 --- a/fs/cifs/cifsglob.h +++ b/fs/cifs/cifsglob.h @@ -1508,6 +1508,7 @@ struct dfs_info3_param { int ref_flag; char *path_name; char *node_name; + int ttl; }; /* diff --git a/fs/cifs/misc.c b/fs/cifs/misc.c index f7c0c6fde552..5e315e4009e2 100644 --- a/fs/cifs/misc.c +++ b/fs/cifs/misc.c @@ -740,6 +740,8 @@ parse_dfs_referrals(struct get_dfs_referral_rsp *rsp, u32 rsp_size, goto parse_DFS_referrals_exit; } + node->ttl = le32_to_cpu(ref->TimeToLive); + ref++; }