From: Chuck Lever Date: Fri, 14 Mar 2008 18:10:15 +0000 (-0400) Subject: NFS: Fix up data types of fields in nfs_parsed_mount_options X-Git-Tag: upstream/snapshot3+hdmi~26247^2^2~49 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=78fa701f341564e60461de91cd08ff5f7fb09b31;p=platform%2Fadaptation%2Frenesas_rcar%2Frenesas_kernel.git NFS: Fix up data types of fields in nfs_parsed_mount_options Clean up: make data types of fields in nfs_parsed_mount_options more consistent with other uses. Signed-off-by: Chuck Lever Signed-off-by: Trond Myklebust --- diff --git a/fs/nfs/internal.h b/fs/nfs/internal.h index 4c1122a..e89688a 100644 --- a/fs/nfs/internal.h +++ b/fs/nfs/internal.h @@ -46,9 +46,9 @@ struct nfs_parsed_mount_data { struct sockaddr_storage address; size_t addrlen; char *hostname; - unsigned int version; + u32 version; unsigned short port; - int protocol; + unsigned short protocol; } mount_server; struct { @@ -56,7 +56,7 @@ struct nfs_parsed_mount_data { size_t addrlen; char *hostname; char *export_path; - int protocol; + unsigned short protocol; } nfs_server; struct security_mnt_opts lsm_opts;