Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 61869
b: refs/heads/master
c: f9d888f
h: refs/heads/master
i:
  61867: 7d81ca4
v: v3
  • Loading branch information
Benny Halevy authored and Trond Myklebust committed Jul 19, 2007
1 parent fb847eb commit 58e086f
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: e4eff1a622edd6ab7b73acd5d8763aa2fa3fee49
refs/heads/master: f9d888fcd9665b863fa042212a3ee7b4c51399f6
10 changes: 5 additions & 5 deletions trunk/fs/nfs/callback_xdr.c
Original file line number Diff line number Diff line change
Expand Up @@ -179,7 +179,7 @@ static __be32 decode_getattr_args(struct svc_rqst *rqstp, struct xdr_stream *xdr
args->addr = svc_addr_in(rqstp);
status = decode_bitmap(xdr, args->bitmap);
out:
dprintk("%s: exit with status = %d\n", __FUNCTION__, status);
dprintk("%s: exit with status = %d\n", __FUNCTION__, ntohl(status));
return status;
}

Expand All @@ -200,7 +200,7 @@ static __be32 decode_recall_args(struct svc_rqst *rqstp, struct xdr_stream *xdr,
args->truncate = ntohl(*p);
status = decode_fh(xdr, &args->fh);
out:
dprintk("%s: exit with status = %d\n", __FUNCTION__, status);
dprintk("%s: exit with status = %d\n", __FUNCTION__, ntohl(status));
return status;
}

Expand Down Expand Up @@ -349,7 +349,7 @@ static __be32 encode_getattr_res(struct svc_rqst *rqstp, struct xdr_stream *xdr,
status = encode_attr_mtime(xdr, res->bitmap, &res->mtime);
*savep = htonl((unsigned int)((char *)xdr->p - (char *)(savep+1)));
out:
dprintk("%s: exit with status = %d\n", __FUNCTION__, status);
dprintk("%s: exit with status = %d\n", __FUNCTION__, ntohl(status));
return status;
}

Expand Down Expand Up @@ -392,7 +392,7 @@ static __be32 process_op(struct svc_rqst *rqstp,
status = res;
if (op->encode_res != NULL && status == 0)
status = op->encode_res(rqstp, xdr_out, resp);
dprintk("%s: done, status = %d\n", __FUNCTION__, status);
dprintk("%s: done, status = %d\n", __FUNCTION__, ntohl(status));
return status;
}

Expand Down Expand Up @@ -431,7 +431,7 @@ static __be32 nfs4_callback_compound(struct svc_rqst *rqstp, void *argp, void *r
}
*hdr_res.status = status;
*hdr_res.nops = htonl(nops);
dprintk("%s: done, status = %u\n", __FUNCTION__, status);
dprintk("%s: done, status = %u\n", __FUNCTION__, ntohl(status));
return rpc_success;
}

Expand Down

0 comments on commit 58e086f

Please sign in to comment.