The e820_sanitize() function in libxl_pci.c expects one of its arguments to
be non-zero; but since a recent changeset, it can typically expect *to be*
zero. Since the zero case is handled properly, just remove the check.
Signed-off-by: George Dunlap <george.dunlap@eu.citrix.com>
Committed-by: Ian Jackson <ian.jackson.citrix.com>
uint32_t i, idx = 0, nr;
struct e820entry e820[E820MAX];
- if (!src || !map_limitkb || !balloon_kb || !nr_entries)
+ if (!src || !map_limitkb || !nr_entries)
return ERROR_INVAL;
nr = *nr_entries;