diff options
author | Pali Rohár <pali@kernel.org> | 2024-10-06 19:44:50 +0200 |
---|---|---|
committer | Steve French <stfrench@microsoft.com> | 2025-01-29 17:11:56 -0600 |
commit | 24cf72976acee4b731c7c3ef2080e8535441fa3b (patch) | |
tree | 2a57557d490a3d35135f27f22dc234c780fc8b05 /fs/smb/client/smb1ops.c | |
parent | 8b19dfb34d17e77a0809d433cc128b779282131b (diff) |
cifs: Remove unicode parameter from parse_reparse_point() function
This parameter is always true, so remove it and also remove dead code which
is never called (for all false code paths).
Signed-off-by: Pali Rohár <pali@kernel.org>
Signed-off-by: Steve French <stfrench@microsoft.com>
Diffstat (limited to 'fs/smb/client/smb1ops.c')
-rw-r--r-- | fs/smb/client/smb1ops.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/smb/client/smb1ops.c b/fs/smb/client/smb1ops.c index 749a83cd0deb..55014c22f082 100644 --- a/fs/smb/client/smb1ops.c +++ b/fs/smb/client/smb1ops.c @@ -1010,7 +1010,7 @@ static int cifs_parse_reparse_point(struct cifs_sb_info *cifs_sb, buf = (struct reparse_data_buffer *)((__u8 *)&io->hdr.Protocol + le32_to_cpu(io->DataOffset)); - return parse_reparse_point(buf, plen, cifs_sb, full_path, true, data); + return parse_reparse_point(buf, plen, cifs_sb, full_path, data); } static bool |