Commit b8165118 authored by David Hildenbrand's avatar David Hildenbrand Committed by David Gibson
Browse files

spapr: support memory unplug for qtest



Fake availability of OV5_HP_EVT, so we can test memory unplug in qtest.

Reviewed-by: default avatarMichael S. Tsirkin <mst@redhat.com>
Reviewed-by: default avatarGreg Kurz <groug@kaod.org>
Acked-by: default avatarDavid Gibson <david@gibson.dropbear.id.au>
Signed-off-by: default avatarDavid Hildenbrand <david@redhat.com>
Message-Id: <20190218092202.26683-3-david@redhat.com>
Signed-off-by: default avatarDavid Gibson <david@gibson.dropbear.id.au>
parent d40bfcbb
Loading
Loading
Loading
Loading
+6 −0
Original line number Diff line number Diff line
@@ -16,6 +16,7 @@
#include "qemu/bitmap.h"
#include "exec/address-spaces.h"
#include "qemu/error-report.h"
#include "sysemu/qtest.h"
#include "trace.h"
#include <libfdt.h>

@@ -131,6 +132,11 @@ bool spapr_ovec_test(sPAPROptionVector *ov, long bitnr)
    g_assert(ov);
    g_assert(bitnr < OV_MAXBITS);

    /* support memory unplug for qtest */
    if (qtest_enabled() && bitnr == OV5_HP_EVT) {
        return true;
    }

    return test_bit(bitnr, ov->bitmap) ? true : false;
}