]> git.proxmox.com Git - mirror_qemu.git/commit - hw/ppc/spapr_pci.c
spapr_pci: s/INT64_MAX/UINT64_MAX/
authorMichael S. Tsirkin <mst@redhat.com>
Wed, 6 Nov 2013 18:25:21 +0000 (20:25 +0200)
committerMichael S. Tsirkin <mst@redhat.com>
Tue, 10 Dec 2013 10:29:56 +0000 (12:29 +0200)
commit92b8e39c7f582e15f9e9423bc9fd3f186536b073
tree54b215cf31e08425860fdbe120201ca3108a4682
parent286690e34ce04fa29bf812ef2bb7b32c3e7c3b85
spapr_pci: s/INT64_MAX/UINT64_MAX/

It doesn't make sense for a region to be INT64_MAX in size:
memory core uses UINT64_MAX as a special value meaning
"all 64 bit" this is what was meant here.

While this should never affect the spapr system which at the moment always
has < 63 bit size, this makes us hit all kind of corner case bugs with
sub-pages, so users are probably better off if we just use UINT64_MAX
instead.

Signed-off-by: Michael S. Tsirkin <mst@redhat.com>
Acked-by: Alexander Graf <agraf@suse.de>
hw/ppc/spapr_pci.c