diff options
author | J. Bruce Fields <bfields@redhat.com> | 2011-02-14 14:52:03 -0500 |
---|---|---|
committer | J. Bruce Fields <bfields@redhat.com> | 2011-04-07 14:36:40 -0400 |
commit | 48e6555c7b3bf0d92f8167d8b8b8ecf4a3fdab84 (patch) | |
tree | 7f66e9a7cc801b0759d49e18eec5741d617692de /net | |
parent | 5ee78d483c5812228e971e145b912e0a7e35e571 (diff) |
svcrpc: note network-order types in svc_process_calldir
Signed-off-by: J. Bruce Fields <bfields@redhat.com>
Diffstat (limited to 'net')
-rw-r--r-- | net/sunrpc/svcsock.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/net/sunrpc/svcsock.c b/net/sunrpc/svcsock.c index 733c2f6a1858..1955e1a1e390 100644 --- a/net/sunrpc/svcsock.c +++ b/net/sunrpc/svcsock.c | |||
@@ -982,9 +982,9 @@ static int svc_process_calldir(struct svc_sock *svsk, struct svc_rqst *rqstp, | |||
982 | struct rpc_rqst **reqpp, struct kvec *vec) | 982 | struct rpc_rqst **reqpp, struct kvec *vec) |
983 | { | 983 | { |
984 | struct rpc_rqst *req = NULL; | 984 | struct rpc_rqst *req = NULL; |
985 | u32 *p; | 985 | __be32 *p; |
986 | u32 xid; | 986 | __be32 xid; |
987 | u32 calldir; | 987 | __be32 calldir; |
988 | int len; | 988 | int len; |
989 | 989 | ||
990 | len = svc_recvfrom(rqstp, vec, 1, 8); | 990 | len = svc_recvfrom(rqstp, vec, 1, 8); |