diff options
author | Ronnie Sahlberg <lsahlber@redhat.com> | 2018-09-03 13:33:47 +1000 |
---|---|---|
committer | Steve French <stfrench@microsoft.com> | 2018-10-23 21:16:04 -0500 |
commit | 3764cbd179f061ddb308cd58c1e9bbf987505a18 (patch) | |
tree | e00ee3c8746cad7cab79d11fc8fa7fc6538fdbcc /fs/cifs/smb2ops.c | |
parent | dcbf91035709e9b8490bba96995998f48ce85947 (diff) | |
download | lwn-3764cbd179f061ddb308cd58c1e9bbf987505a18.tar.gz lwn-3764cbd179f061ddb308cd58c1e9bbf987505a18.zip |
cifs: remove the is_falloc argument to SMB2_set_eof
We never pass is_falloc==true here anyway and if we ever need to support
is_falloc in the future, SMB2_set_eof is such a trivial wrapper around
send_set_info() that we can/should just create a differently named wrapper
for that new functionality.
Signed-off-by: Ronnie Sahlberg <lsahlber@redhat.com>
Signed-off-by: Steve French <stfrench@microsoft.com>
Diffstat (limited to 'fs/cifs/smb2ops.c')
-rw-r--r-- | fs/cifs/smb2ops.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/cifs/smb2ops.c b/fs/cifs/smb2ops.c index 55ae6918be25..11b4f397a713 100644 --- a/fs/cifs/smb2ops.c +++ b/fs/cifs/smb2ops.c @@ -1307,7 +1307,7 @@ smb2_set_file_size(const unsigned int xid, struct cifs_tcon *tcon, } return SMB2_set_eof(xid, tcon, cfile->fid.persistent_fid, - cfile->fid.volatile_fid, cfile->pid, &eof, false); + cfile->fid.volatile_fid, cfile->pid, &eof); } static int |