rxrpc: rxkad: Casts are needed when comparing be32 values
authorDavid Howells <dhowells@redhat.com>
Fri, 4 Mar 2016 15:59:13 +0000 (15:59 +0000)
committerDavid Howells <dhowells@redhat.com>
Fri, 4 Mar 2016 15:59:13 +0000 (15:59 +0000)
Forced casts are needed to avoid sparse warning when directly comparing
be32 values.

Signed-off-by: David Howells <dhowells@redhat.com>
net/rxrpc/rxkad.c

index ca746f382517d3dc0229b79c6ef6f922d034b09d..3106a0c4960be7db6e726ab70bf1ed6b891b9c2f 100644 (file)
@@ -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("");
 }
This page took 0.024756 seconds and 5 git commands to generate.