diff options
author | David Howells <dhowells@redhat.com> | 2016-10-13 09:27:10 +0200 |
---|---|---|
committer | David Howells <dhowells@redhat.com> | 2016-10-13 18:03:52 +0200 |
commit | 50a2c95381a7d0e453d7bdfde81d0c5f8351ba54 (patch) | |
tree | 7fd5d1c0e3f4e7232a2f55d69f20e95a493ef050 /fs/afs/internal.h | |
parent | rxrpc: Fix checking of error from ip6_route_output() (diff) | |
download | linux-50a2c95381a7d0e453d7bdfde81d0c5f8351ba54.tar.xz linux-50a2c95381a7d0e453d7bdfde81d0c5f8351ba54.zip |
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/internal.h')
-rw-r--r-- | fs/afs/internal.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/afs/internal.h b/fs/afs/internal.h index 5497c8496055..535a38d2c1d0 100644 --- a/fs/afs/internal.h +++ b/fs/afs/internal.h @@ -112,7 +112,7 @@ struct afs_call { bool need_attention; /* T if RxRPC poked us */ u16 service_id; /* RxRPC service ID to call */ __be16 port; /* target UDP port */ - __be32 operation_ID; /* operation ID for an incoming call */ + u32 operation_ID; /* operation ID for an incoming call */ u32 count; /* count for use in unmarshalling */ __be32 tmp; /* place to extract temporary data */ afs_dataversion_t store_version; /* updated version expected from store */ |