aboutsummaryrefslogtreecommitdiffstats
path: root/net/rxrpc/rxkad.c
diff options
context:
space:
mode:
authorDavid Howells <dhowells@redhat.com>2016-03-04 15:59:13 +0000
committerDavid Howells <dhowells@redhat.com>2016-03-04 15:59:13 +0000
commit2b15ef15bca689d60be27f6ffdaa2c92a59ae6e7 (patch)
tree2d602549a187c990e096f2e36b4278997237ccca /net/rxrpc/rxkad.c
parentrxrpc: rxkad: The version number in the response should be net byte order (diff)
downloadlinux-dev-2b15ef15bca689d60be27f6ffdaa2c92a59ae6e7.tar.xz
linux-dev-2b15ef15bca689d60be27f6ffdaa2c92a59ae6e7.zip
rxrpc: rxkad: Casts are needed when comparing be32 values
Forced casts are needed to avoid sparse warning when directly comparing be32 values. Signed-off-by: David Howells <dhowells@redhat.com>
Diffstat (limited to '')
-rw-r--r--net/rxrpc/rxkad.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/net/rxrpc/rxkad.c b/net/rxrpc/rxkad.c
index ca746f382517..3106a0c4960b 100644
--- a/net/rxrpc/rxkad.c
+++ b/net/rxrpc/rxkad.c
@@ -142,7 +142,7 @@ static void rxkad_prime_packet_security(struct rxrpc_connection *conn)
crypto_blkcipher_encrypt_iv(&desc, &sg[0], &sg[1], sizeof(tmpbuf));
memcpy(&conn->csum_iv, &tmpbuf.x[2], sizeof(conn->csum_iv));
- ASSERTCMP(conn->csum_iv.n[0], ==, tmpbuf.x[2]);
+ ASSERTCMP((u32 __force)conn->csum_iv.n[0], ==, (u32 __force)tmpbuf.x[2]);
_leave("");
}