dect
/
linux-2.6
Archived
13
0
Fork 0

svcrpc: note network-order types in svc_process_calldir

Signed-off-by: J. Bruce Fields <bfields@redhat.com>
This commit is contained in:
J. Bruce Fields 2011-02-14 14:52:03 -05:00
parent 5ee78d483c
commit 48e6555c7b
1 changed files with 3 additions and 3 deletions

View File

@ -982,9 +982,9 @@ static int svc_process_calldir(struct svc_sock *svsk, struct svc_rqst *rqstp,
struct rpc_rqst **reqpp, struct kvec *vec)
{
struct rpc_rqst *req = NULL;
u32 *p;
u32 xid;
u32 calldir;
__be32 *p;
__be32 xid;
__be32 calldir;
int len;
len = svc_recvfrom(rqstp, vec, 1, 8);