Skip to content
Snippets Groups Projects
Commit e4ead4a2 authored by Ralf Hubert's avatar Ralf Hubert Committed by Joe Hershberger
Browse files

net: Fix incorrect RPC packets on 64-bit systems


This patch fixes incorrect RPC packet layout caused by
'long' type size difference on 64 and 32-bit architectures.

Signed-off-by: default avatarRalf Hubert <r.hubert@technisat.de>
Acked-by: default avatarJoe Hershberger <joe.hershberger@ni.com>
parent 19c9ddaa
No related branches found
No related tags found
No related merge requests found
......@@ -132,7 +132,7 @@ static char *dirname(char *path)
/**************************************************************************
RPC_ADD_CREDENTIALS - Add RPC authentication/verifier entries
**************************************************************************/
static long *rpc_add_credentials(long *p)
static uint32_t *rpc_add_credentials(uint32_t *p)
{
int hl;
int hostnamelen;
......@@ -241,7 +241,7 @@ static void nfs_mount_req(char *path)
pathlen = strlen(path);
p = &(data[0]);
p = (uint32_t *)rpc_add_credentials((long *)p);
p = rpc_add_credentials(p);
*p++ = htonl(pathlen);
if (pathlen & 3)
......@@ -268,7 +268,7 @@ static void nfs_umountall_req(void)
return;
p = &(data[0]);
p = (uint32_t *)rpc_add_credentials((long *)p);
p = rpc_add_credentials(p);
len = (uint32_t *)p - (uint32_t *)&(data[0]);
......@@ -289,7 +289,7 @@ static void nfs_readlink_req(void)
int len;
p = &(data[0]);
p = (uint32_t *)rpc_add_credentials((long *)p);
p = rpc_add_credentials(p);
memcpy(p, filefh, NFS_FHSIZE);
p += (NFS_FHSIZE / 4);
......@@ -312,7 +312,7 @@ static void nfs_lookup_req(char *fname)
fnamelen = strlen(fname);
p = &(data[0]);
p = (uint32_t *)rpc_add_credentials((long *)p);
p = rpc_add_credentials(p);
memcpy(p, dirfh, NFS_FHSIZE);
p += (NFS_FHSIZE / 4);
......@@ -337,7 +337,7 @@ static void nfs_read_req(int offset, int readlen)
int len;
p = &(data[0]);
p = (uint32_t *)rpc_add_credentials((long *)p);
p = rpc_add_credentials(p);
memcpy(p, filefh, NFS_FHSIZE);
p += (NFS_FHSIZE / 4);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment