patch-2.1.36 linux/fs/nfs/nfs2xdr.c
Next file: linux/fs/nfsd/nfsctl.c
Previous file: linux/fs/nfs/mount_clnt.c
Back to the patch index
Back to the overall index
- Lines: 46
- Date:
Wed Apr 16 14:20:12 1997
- Orig file:
v2.1.35/linux/fs/nfs/nfs2xdr.c
- Orig date:
Mon Apr 14 16:28:17 1997
diff -u --recursive --new-file v2.1.35/linux/fs/nfs/nfs2xdr.c linux/fs/nfs/nfs2xdr.c
@@ -222,7 +222,7 @@
struct iovec *iov = req->rq_rvec;
int status, count, recvd, hdrlen;
- dprintk("RPC: readres OK status %lx\n", ntohl(*p));
+ dprintk("RPC: readres OK status %lx\n", (long)ntohl(*p));
if ((status = ntohl(*p++)))
return -nfs_stat_to_errno(status);
p = xdr_decode_fattr(p, res->fattr);
@@ -414,9 +414,16 @@
}
string -= len;
if ((void *) (entry+1) > (void *) string) {
+ /* This may actually happen because an nfs_entry
+ * will take up more space than the XDR data. On
+ * 32bit machines that's due to 8byte alignment,
+ * on 64bit machines that's because the char * takes
+ * up 2 longs.
+ *
+ * THIS IS BAD!
+ */
printk(KERN_NOTICE "NFS: should not happen in %s!\n",
- __FUNCTION__);
- printk(KERN_NOTICE "NFS: len = %d, entry+1=%p, string=%p\n", len, entry+1, string);
+ __FUNCTION__);
break;
}
@@ -464,7 +471,7 @@
{
int status;
- dprintk("RPC: attrstat status %lx\n", ntohl(*p));
+ dprintk("RPC: attrstat status %lx\n", (long)ntohl(*p));
if ((status = ntohl(*p++)))
return -nfs_stat_to_errno(status);
xdr_decode_fattr(p, fattr);
@@ -482,7 +489,7 @@
{
int status;
- dprintk("RPC: diropres status %lx\n", ntohl(*p));
+ dprintk("RPC: diropres status %lx\n", (long)ntohl(*p));
if ((status = ntohl(*p++)))
return -nfs_stat_to_errno(status);
p = xdr_decode_fhandle(p, res->fh);
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen, slshen@lbl.gov