diff options
author | Steve French <smfrench@gmail.com> | 2013-11-15 17:26:24 (GMT) |
---|---|---|
committer | Steve French <smfrench@gmail.com> | 2013-11-15 21:27:22 (GMT) |
commit | de9f68df675e9d8b0b6a533818a79dca6546a7ba (patch) | |
tree | e9e17a68a2b2c47d357f4945432adfa83634d707 /fs/cifs/cifsglob.h | |
parent | 41c1358e9181ab1ebd773905b3fa8039b61aa0e9 (diff) | |
download | linux-fsl-qoriq-de9f68df675e9d8b0b6a533818a79dca6546a7ba.tar.xz |
[CIFS] Set copychunk defaults
Patch 2 of the copy chunk series (the final patch will
use these to handle copies of files larger than the chunk size.
We set the same defaults that Windows and Samba expect for
CopyChunk.
Signed-off-by: Steve French <smfrench@gmail.com>
Reviewed-by: David Disseldorp <ddiss@samba.org>
Diffstat (limited to 'fs/cifs/cifsglob.h')
-rw-r--r-- | fs/cifs/cifsglob.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/fs/cifs/cifsglob.h b/fs/cifs/cifsglob.h index 50a6ca1..d9ea7ad 100644 --- a/fs/cifs/cifsglob.h +++ b/fs/cifs/cifsglob.h @@ -858,6 +858,9 @@ struct cifs_tcon { __le64 vol_create_time; __u32 ss_flags; /* sector size flags */ __u32 perf_sector_size; /* best sector size for perf */ + __u32 max_chunks; + __u32 max_bytes_chunk; + __u32 max_bytes_copy; #endif /* CONFIG_CIFS_SMB2 */ #ifdef CONFIG_CIFS_FSCACHE u64 resource_id; /* server resource id */ |