cifs: Move and expand MAX_SERVER_SIZE definition
authorScott Lovenberg <scott.lovenberg@gmail.com>
Fri, 9 Aug 2013 12:47:19 +0000 (08:47 -0400)
committerSteve French <smfrench@gmail.com>
Sun, 8 Sep 2013 19:34:22 +0000 (14:34 -0500)
MAX_SERVER_SIZE has been moved to cifs_mount.h and renamed
CIFS_NI_MAXHOST for clarity.  It has been expanded to 1024 as the
previous value of 16 was very short.

Signed-off-by: Scott Lovenberg <scott.lovenberg@gmail.com>
Reviewed-by: Jeff Layton <jlayton@redhat.com>
Signed-off-by: Steve French <smfrench@gmail.com>
fs/cifs/cifsglob.h
include/uapi/linux/cifs/cifs_mount.h

index 633bbc5e8801d8594d7e552f7097b245590d77c2..fb186f7bae492881cc248ce55d7366c33b92936c 100644 (file)
@@ -42,8 +42,7 @@
 #define MAX_SES_INFO 2
 #define MAX_TCON_INFO 4
 
-#define MAX_TREE_SIZE (2 + MAX_SERVER_SIZE + 1 + CIFS_MAX_SHARE_LEN + 1)
-#define MAX_SERVER_SIZE 15
+#define MAX_TREE_SIZE (2 + CIFS_NI_MAXHOST + 1 + CIFS_MAX_SHARE_LEN + 1)
 
 #define CIFS_MIN_RCV_POOL 4
 
index 5ac43f04f74af2423c8584adbf7d2c55d476e3b5..d7e4c6ce61710fc61b9547ea5de4bb1dc738b7cc 100644 (file)
@@ -21,6 +21,7 @@
 #define CIFS_MAX_USERNAME_LEN   256 /* reasonable max for current servers */
 #define CIFS_MAX_PASSWORD_LEN   512 /* Windows max seems to be 256 wide chars */
 #define CIFS_MAX_SHARE_LEN      256 /* reasonable max share name length */
+#define CIFS_NI_MAXHOST        1024 /* max host name length (256 * 4 bytes) */
 
 
 #endif /* _CIFS_MOUNT_H */
This page took 0.02579 seconds and 5 git commands to generate.