diff options
author | Jiaxun Yang <jiaxun.yang@flygoat.com> | 2021-01-18 14:38:04 +0800 |
---|---|---|
committer | Thomas Huth <thuth@redhat.com> | 2021-01-20 10:46:54 +0100 |
commit | 2d0fc797faaa73fbc1d30f5f9e90407bf3dd93f0 (patch) | |
tree | 313e29b9646e6e324be3b280dab8ef9a767ea422 /contrib/elf2dmp/addrspace.h | |
parent | 9c57272507a95cde3c9c2c90af2312f92cb55422 (diff) |
elf2dmp: Rename PAGE_SIZE to ELF2DMP_PAGE_SIZE
As per POSIX specification of limits.h [1], OS libc may define
PAGE_SIZE in limits.h.
To prevent collosion of definition, we rename PAGE_SIZE here.
[1]: https://pubs.opengroup.org/onlinepubs/7908799/xsh/limits.h.html
Signed-off-by: Jiaxun Yang <jiaxun.yang@flygoat.com>
Reviewed-by: Thomas Huth <thuth@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Message-Id: <20210118063808.12471-6-jiaxun.yang@flygoat.com>
Signed-off-by: Thomas Huth <thuth@redhat.com>
Diffstat (limited to 'contrib/elf2dmp/addrspace.h')
-rw-r--r-- | contrib/elf2dmp/addrspace.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/contrib/elf2dmp/addrspace.h b/contrib/elf2dmp/addrspace.h index d87f6a18c6..00b44c1218 100644 --- a/contrib/elf2dmp/addrspace.h +++ b/contrib/elf2dmp/addrspace.h @@ -10,9 +10,9 @@ #include "qemu_elf.h" -#define PAGE_BITS 12 -#define PAGE_SIZE (1ULL << PAGE_BITS) -#define PFN_MASK (~(PAGE_SIZE - 1)) +#define ELF2DMP_PAGE_BITS 12 +#define ELF2DMP_PAGE_SIZE (1ULL << ELF2DMP_PAGE_BITS) +#define ELF2DMP_PFN_MASK (~(ELF2DMP_PAGE_SIZE - 1)) #define INVALID_PA UINT64_MAX |