diff options
author | David Howells <dhowells@redhat.com> | 2016-10-13 10:27:10 +0300 |
---|---|---|
committer | David Howells <dhowells@redhat.com> | 2016-10-13 19:03:52 +0300 |
commit | 50a2c95381a7d0e453d7bdfde81d0c5f8351ba54 (patch) | |
tree | 7fd5d1c0e3f4e7232a2f55d69f20e95a493ef050 /fs/afs/rxrpc.c | |
parent | 07096f612fdf2bb5578cd1fecb2884bdbb1cde42 (diff) | |
download | linux-50a2c95381a7d0e453d7bdfde81d0c5f8351ba54.tar.xz |
afs: call->operation_ID sometimes used as __be32 sometimes as u32
call->operation_ID is sometimes being used as __be32 sometimes is being
used as u32. Be consistent and settle on using as u32.
Signed-off-by: David Howells <dhowells@redhat.com.
Diffstat (limited to 'fs/afs/rxrpc.c')
-rw-r--r-- | fs/afs/rxrpc.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/fs/afs/rxrpc.c b/fs/afs/rxrpc.c index 477928b25940..25f05a8d21b1 100644 --- a/fs/afs/rxrpc.c +++ b/fs/afs/rxrpc.c @@ -676,10 +676,11 @@ static int afs_deliver_cm_op_id(struct afs_call *call) ASSERTCMP(call->offset, <, 4); /* the operation ID forms the first four bytes of the request data */ - ret = afs_extract_data(call, &call->operation_ID, 4, true); + ret = afs_extract_data(call, &call->tmp, 4, true); if (ret < 0) return ret; + call->operation_ID = ntohl(call->tmp); call->state = AFS_CALL_AWAIT_REQUEST; call->offset = 0; |