9
0
Fork 0

fs/nfs.c: use uint16_t for port numbers

Signed-off-by: Antony Pavlov <antonynpavlov@gmail.com>
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
This commit is contained in:
Antony Pavlov 2015-07-19 23:07:10 +03:00 committed by Sascha Hauer
parent afda803ffa
commit 357c3f1067
1 changed files with 2 additions and 2 deletions

View File

@ -132,8 +132,8 @@ struct nfs_priv {
struct net_connection *con;
IPaddr_t server;
char *path;
unsigned short mount_port;
unsigned short nfs_port;
uint16_t mount_port;
uint16_t nfs_port;
uint32_t rpc_id;
uint32_t rootfh_len;
char rootfh[NFS3_FHSIZE];