diff options
| author | Linus Torvalds <torvalds@linux-foundation.org> | 2013-09-12 10:41:12 -0400 |
|---|---|---|
| committer | Linus Torvalds <torvalds@linux-foundation.org> | 2013-09-12 10:41:12 -0400 |
| commit | 7b7a2f0a31c6c1ff53a3c87c0bca4f8d01471391 (patch) | |
| tree | 17b0e72c8e996e581974bbbc0e7f68f07d87ab1e /include/uapi/linux | |
| parent | c3567f8a359b7917dcffa442301f88ed0a75211f (diff) | |
| parent | 42873b0a282ac84a56e0e48c408beb62d0ad2917 (diff) | |
Merge branch 'for-next' of git://git.samba.org/sfrench/cifs-2.6
Pull CIFS fixes from Steve French:
"CIFS update including case insensitive file name matching improvements
for UTF-8 to Unicode, various small cifs fixes, SMB2/SMB3 leasing
improvements, support for following SMB2 symlinks, SMB3 packet signing
improvements"
* 'for-next' of git://git.samba.org/sfrench/cifs-2.6: (25 commits)
CIFS: Respect epoch value from create lease context v2
CIFS: Add create lease v2 context for SMB3
CIFS: Move parsing lease buffer to ops struct
CIFS: Move creating lease buffer to ops struct
CIFS: Store lease state itself rather than a mapped oplock value
CIFS: Replace clientCanCache* bools with an integer
[CIFS] quiet sparse compile warning
cifs: Start using per session key for smb2/3 for signature generation
cifs: Add a variable specific to NTLMSSP for key exchange.
cifs: Process post session setup code in respective dialect functions.
CIFS: convert to use le32_add_cpu()
CIFS: Fix missing lease break
CIFS: Fix a memory leak when a lease break comes
cifs: add winucase_convert.pl to Documentation/ directory
cifs: convert case-insensitive dentry ops to use new case conversion routines
cifs: add new case-insensitive conversion routines that are based on wchar_t's
[CIFS] Add Scott to list of cifs contributors
cifs: Move and expand MAX_SERVER_SIZE definition
cifs: Expand max share name length to 256
cifs: Move string length definitions to uapi
...
Diffstat (limited to 'include/uapi/linux')
| -rw-r--r-- | include/uapi/linux/cifs/cifs_mount.h | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/include/uapi/linux/cifs/cifs_mount.h b/include/uapi/linux/cifs/cifs_mount.h new file mode 100644 index 000000000000..d7e4c6ce6171 --- /dev/null +++ b/include/uapi/linux/cifs/cifs_mount.h | |||
| @@ -0,0 +1,27 @@ | |||
| 1 | /* | ||
| 2 | * include/uapi/linux/cifs/cifs_mount.h | ||
| 3 | * | ||
| 4 | * Author(s): Scott Lovenberg (scott.lovenberg@gmail.com) | ||
| 5 | * | ||
| 6 | * This library is free software; you can redistribute it and/or modify | ||
| 7 | * it under the terms of the GNU Lesser General Public License as published | ||
| 8 | * by the Free Software Foundation; either version 2.1 of the License, or | ||
| 9 | * (at your option) any later version. | ||
| 10 | * | ||
| 11 | * This library is distributed in the hope that it will be useful, | ||
| 12 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
| 13 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See | ||
| 14 | * the GNU Lesser General Public License for more details. | ||
| 15 | */ | ||
| 16 | #ifndef _CIFS_MOUNT_H | ||
| 17 | #define _CIFS_MOUNT_H | ||
| 18 | |||
| 19 | /* Max string lengths for cifs mounting options. */ | ||
| 20 | #define CIFS_MAX_DOMAINNAME_LEN 256 /* max fully qualified domain name */ | ||
| 21 | #define CIFS_MAX_USERNAME_LEN 256 /* reasonable max for current servers */ | ||
| 22 | #define CIFS_MAX_PASSWORD_LEN 512 /* Windows max seems to be 256 wide chars */ | ||
| 23 | #define CIFS_MAX_SHARE_LEN 256 /* reasonable max share name length */ | ||
| 24 | #define CIFS_NI_MAXHOST 1024 /* max host name length (256 * 4 bytes) */ | ||
| 25 | |||
| 26 | |||
| 27 | #endif /* _CIFS_MOUNT_H */ | ||
