rxrpc: Fix ASSERTCMP and ASSERTIFCMP to handle signed values
authorDavid Howells <dhowells@redhat.com>
Thu, 8 Sep 2016 10:10:11 +0000 (11:10 +0100)
committerDavid Howells <dhowells@redhat.com>
Thu, 8 Sep 2016 10:10:11 +0000 (11:10 +0100)
commitcf13258fd4cb86478dfcb7e2c93a0d844307abc6
tree6d2b363fc9413a7a65582b02fa12ad96988e3a1e
parent0f76d2564469fd3a337de088f533364cef206130
rxrpc: Fix ASSERTCMP and ASSERTIFCMP to handle signed values

Fix ASSERTCMP and ASSERTIFCMP to be able to handle signed values by casting
both parameters to the type of the first before comparing.  Without this,
both values are cast to unsigned long, which means that checks for values
less than zero don't work.

The downside of this is that the state enum values in struct rxrpc_call and
struct rxrpc_connection can't be bitfields as __typeof__ can't handle them.

Signed-off-by: David Howells <dhowells@redhat.com>
net/rxrpc/ar-internal.h