diff options
author | David Gibson <david@gibson.dropbear.id.au> | 2015-03-19 15:14:18 +1100 |
---|---|---|
committer | Alexander Graf <agraf@suse.de> | 2015-06-03 23:56:50 +0200 |
commit | 421b1b27f6e9135ac8f01db219e0d8c0cefd7e71 (patch) | |
tree | c6e711f40d935eb4f8b9a8e497042925612d2389 /hw/bt | |
parent | 31ce0adb79655003465070fa90d7d20a5b8c2ff5 (diff) | |
download | qemu-421b1b27f6e9135ac8f01db219e0d8c0cefd7e71.zip qemu-421b1b27f6e9135ac8f01db219e0d8c0cefd7e71.tar.gz qemu-421b1b27f6e9135ac8f01db219e0d8c0cefd7e71.tar.bz2 |
spapr_pci: Fix unsafe signed/unsigned comparisons
spapr_pci.c contains a number of expressions of the form (uval == -1) or
(uval != -1), where 'uval' is an unsigned value.
This mostly works in practice, because as long as the width of uval is
greater or equal than that of (int), the -1 will be promoted to the
unsigned type, which is the expected outcome.
However, at least for the cases where uval is uint32_t, this would break
on platforms where sizeof(int) > 4 (and a few such do exist), because then
the uint32_t value would be promoted to the larger int type, and never be
equal to -1.
This patch fixes these errors. The fixes for the (uint32_t) cases are
necessary as described above. I've made similar fixes to (uint64_t) and
(hwaddr) cases. Those are strictly theoretical, since I don't know of any
platforms where sizeof(int) > 8, but hey, it's not that hard so we might
as well be strictly C standard compliant.
Reported-by: Markus Armbruster <armbru@redhat.com>
Signed-off-by: David Gibson <david@gibson.dropbear.id.au>
Reviewed-by: Markus Armbruster <armbru@redhat.com>
Signed-off-by: Alexander Graf <agraf@suse.de>
Diffstat (limited to 'hw/bt')
0 files changed, 0 insertions, 0 deletions