]> git.baikalelectronics.ru Git - kernel.git/commit
cifs: remove unnecessary copies of tcon->crfid.fid
authorMuhammad Usama Anjum <musamaanjum@gmail.com>
Thu, 15 Apr 2021 15:24:09 +0000 (20:24 +0500)
committerSteve French <stfrench@microsoft.com>
Sun, 25 Apr 2021 21:28:24 +0000 (16:28 -0500)
commitd8ba1bc517356aff02ddac42f88685dbf868b47c
tree351068401d470806f507a0e77b66fe23f18c9712
parent1e6068e122f7b8581c083ab031b7c44fdfad37f5
cifs: remove unnecessary copies of tcon->crfid.fid

pfid is being set to tcon->crfid.fid and they are copied in each other
multiple times. Remove the memcopy between same pointers - memory
locations.

Addresses-Coverity: ("Overlapped copy")
Fixes: 3fbcf6df0412 ("cifs: return cached_fid from open_shroot")
Signed-off-by: Muhammad Usama Anjum <musamaanjum@gmail.com>
Reviewed-by: Aurelien Aptel <aaptel@suse.com>
Signed-off-by: Steve French <stfrench@microsoft.com>
fs/cifs/smb2ops.c