diff options
author | Enzo Matsumiya <ematsumiya@suse.de> | 2022-08-17 14:14:02 -0300 |
---|---|---|
committer | Steve French <stfrench@microsoft.com> | 2022-08-17 18:07:13 -0500 |
commit | 68ed14496b032b0c9ef21b38ee45c6c8f3a18ff1 (patch) | |
tree | bc67ee611079610c5b03e81c29911cd7abd5d758 /fs/cifs/netmisc.c | |
parent | 5dd8ce24667a70bb9f7808f5eec0354bd37290c6 (diff) |
cifs: remove unused server parameter from calc_smb_size()
This parameter is unused by the called function
Reviewed-by: Paulo Alcantara (SUSE) <pc@cjr.nz>
Signed-off-by: Enzo Matsumiya <ematsumiya@suse.de>
Signed-off-by: Steve French <stfrench@microsoft.com>
Diffstat (limited to 'fs/cifs/netmisc.c')
-rw-r--r-- | fs/cifs/netmisc.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/cifs/netmisc.c b/fs/cifs/netmisc.c index 28caae7aed1b..1b52e6ac431c 100644 --- a/fs/cifs/netmisc.c +++ b/fs/cifs/netmisc.c @@ -909,7 +909,7 @@ map_and_check_smb_error(struct mid_q_entry *mid, bool logErr) * portion, the number of word parameters and the data portion of the message */ unsigned int -smbCalcSize(void *buf, struct TCP_Server_Info *server) +smbCalcSize(void *buf) { struct smb_hdr *ptr = buf; return (sizeof(struct smb_hdr) + (2 * ptr->WordCount) + |