Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit cdf1246f authored by Scott Lovenberg's avatar Scott Lovenberg Committed by Steve French
Browse files

cifs: Move and expand MAX_SERVER_SIZE definition



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: default avatarScott Lovenberg <scott.lovenberg@gmail.com>
Reviewed-by: default avatarJeff Layton <jlayton@redhat.com>
Signed-off-by: default avatarSteve French <smfrench@gmail.com>
parent 54fcf270
Loading
Loading
Loading
Loading
+1 −2
Original line number Original line Diff line number Diff line
@@ -42,8 +42,7 @@
#define MAX_SES_INFO 2
#define MAX_SES_INFO 2
#define MAX_TCON_INFO 4
#define MAX_TCON_INFO 4


#define MAX_TREE_SIZE (2 + MAX_SERVER_SIZE + 1 + CIFS_MAX_SHARE_LEN + 1)
#define MAX_TREE_SIZE (2 + CIFS_NI_MAXHOST + 1 + CIFS_MAX_SHARE_LEN + 1)
#define MAX_SERVER_SIZE 15


#define CIFS_MIN_RCV_POOL 4
#define CIFS_MIN_RCV_POOL 4


+1 −0
Original line number Original line Diff line number Diff line
@@ -21,6 +21,7 @@
#define CIFS_MAX_USERNAME_LEN   256 /* reasonable max for current servers */
#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_PASSWORD_LEN   512 /* Windows max seems to be 256 wide chars */
#define CIFS_MAX_SHARE_LEN      256 /* reasonable max share name length */
#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 */
#endif /* _CIFS_MOUNT_H */