Signed-off-by: Michael Ellerman <michael@xxxxxxxxxxxxxx> --- tools/kvm/builtin-run.c | 5 +++++ 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/tools/kvm/builtin-run.c b/tools/kvm/builtin-run.c index 95d35a5..569246e 100644 --- a/tools/kvm/builtin-run.c +++ b/tools/kvm/builtin-run.c @@ -997,6 +997,11 @@ static int kvm_cmd_run_init(int argc, const char **argv) } kvm = kvm__init(dev, hugetlbfs_path, ram_size, guest_name); + if (IS_ERR(kvm)) { + r = PTR_ERR(kvm); + pr_err("kvm__init() failed with error %d\n", r); + goto fail; + } kvm->single_step = single_step; -- 1.7.7.3 -- To unsubscribe from this list: send the line "unsubscribe kvm" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html