From d132b92ae2e62ac642fb91e93e7cc3ae11696ef3 Mon Sep 17 00:00:00 2001 From: Ralf Corsepius Date: Thu, 27 May 2010 09:44:43 +0000 Subject: [PATCH] =?UTF-8?q?2010-05-27=09Ralf=20Cors=C3=A9pius=20?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * libfs/src/nfsclient/src/rpcio.c: Cast pointers to uintptr_t instead of long. xids are uint32_t not u_long. --- cpukit/ChangeLog | 3 +++ cpukit/libfs/src/nfsclient/src/rpcio.c | 6 +++--- 2 files changed, 6 insertions(+), 3 deletions(-) diff --git a/cpukit/ChangeLog b/cpukit/ChangeLog index 86989f1835..93d0402f8b 100644 --- a/cpukit/ChangeLog +++ b/cpukit/ChangeLog @@ -1,5 +1,8 @@ 2010-05-27 Ralf Corsépius + * libfs/src/nfsclient/src/rpcio.c: + Cast pointers to uintptr_t instead of long. + xids are uint32_t not u_long. * libfs/src/nfsclient/src/nfs.c (NFS_MAKE_DEV_T_INO_HACK, NFS_MAKE_DEV_T): Cast "id"'s to rtems_device_minor_number. diff --git a/cpukit/libfs/src/nfsclient/src/rpcio.c b/cpukit/libfs/src/nfsclient/src/rpcio.c index c8b0189c71..cf51a8bf3e 100644 --- a/cpukit/libfs/src/nfsclient/src/rpcio.c +++ b/cpukit/libfs/src/nfsclient/src/rpcio.c @@ -288,7 +288,7 @@ typedef struct RpcUdpServerRec_ { } RpcUdpServerRec; typedef union RpcBufU_ { - u_long xid; + uint32_t xid; char buf[1]; } RpcBufU, *RpcBuf; @@ -687,9 +687,9 @@ register int i,j; return 0; } /* pick a free table slot and initialize the XID */ - rval->obuf.xid = time(0) ^ (unsigned long)rval; + rval->obuf.xid = time(0) ^ (uintptr_t)rval; MU_LOCK(hlock); - rval->obuf.xid = (xidHashSeed++ ^ ((unsigned long)rval>>10)) & XACT_HASH_MSK; + rval->obuf.xid = (xidHashSeed++ ^ ((uintptr_t)rval>>10)) & XACT_HASH_MSK; i=j=(rval->obuf.xid & XACT_HASH_MSK); if (msgQ) { /* if there's no message queue, refuse to