diff --git a/devicemodel/core/main.c b/devicemodel/core/main.c index 5d1babf18..5c6e9dc2d 100644 --- a/devicemodel/core/main.c +++ b/devicemodel/core/main.c @@ -38,7 +38,6 @@ #include #include #include -#include #include "vmmapi.h" #include "sw_load.h" @@ -696,20 +695,10 @@ vm_loop(struct vmctx *ctx) static int num_vcpus_allowed(struct vmctx *ctx) { - int err; - uint16_t max_cpu; - struct platform_info info; - - err = ioctl(ctx->fd, IC_GET_PLATFORM_INFO, &info); - if (err != 0) { - /* Use VM_MAXCPU as default */ - max_cpu = VM_MAXCPU; - printf("Failed to get max vcpu from HV, use default: %d. errno(%d)\n", max_cpu, err); - } else { - max_cpu = info.max_vcpus_per_vm; - } - - return max_cpu; + /* TODO: add ioctl to get gerneric information including + * virtual cpus, now hardcode + */ + return VM_MAXCPU; } static void