Skip to content

Commit

Permalink
qxl: switch to constants within BUILD_BUG_ON
Browse files Browse the repository at this point in the history
We are switching BUILD_BUG_ON to verify that it's parameter is a
compile-time constant, and it turns out that some gcc versions
(specifically gcc (Ubuntu 5.4.0-6ubuntu1~16.04.4) 5.4.0 20160609) are
not smart enough to figure it out for expressions involving local
variables. This is harmless but means that the check is ineffective for
these platforms.  To fix, replace variables with macros.

Reported-by: Peter Maydell <[email protected]>
Signed-off-by: Michael S. Tsirkin <[email protected]>
Reviewed-by: Eric Blake <[email protected]>
  • Loading branch information
mstsirkin committed Jan 31, 2017
1 parent f298318 commit df45892
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions hw/display/qxl.c
Original file line number Diff line number Diff line change
Expand Up @@ -306,12 +306,11 @@ void qxl_spice_reset_cursor(PCIQXLDevice *qxl)

static ram_addr_t qxl_rom_size(void)
{
uint32_t required_rom_size = sizeof(QXLRom) + sizeof(QXLModes) +
sizeof(qxl_modes);
uint32_t rom_size = 8192; /* two pages */
#define QXL_REQUIRED_SZ (sizeof(QXLRom) + sizeof(QXLModes) + sizeof(qxl_modes))
#define QXL_ROM_SZ 8192

QEMU_BUILD_BUG_ON(required_rom_size > rom_size);
return rom_size;
QEMU_BUILD_BUG_ON(QXL_REQUIRED_SZ > QXL_ROM_SZ);
return QXL_ROM_SZ;
}

static void init_qxl_rom(PCIQXLDevice *d)
Expand Down

0 comments on commit df45892

Please sign in to comment.